diff --git a/.gitignore b/.gitignore index e7a4c799299..640bd34b00a 100644 --- a/.gitignore +++ b/.gitignore @@ -153,4 +153,4 @@ tags .idea cmake-build-debug cmake-build-release -/.metadata/ +/.metadata/ \ No newline at end of file diff --git a/doc/src/api/vprinternals/index.rst b/doc/src/api/vprinternals/index.rst index b22aaa85ebc..fb301320d7c 100644 --- a/doc/src/api/vprinternals/index.rst +++ b/doc/src/api/vprinternals/index.rst @@ -10,3 +10,4 @@ VPR INTERNALS vpr_ui draw_files vpr_noc + vpr_router diff --git a/doc/src/api/vprinternals/router_heap.rst b/doc/src/api/vprinternals/router_heap.rst new file mode 100644 index 00000000000..cb652811e6c --- /dev/null +++ b/doc/src/api/vprinternals/router_heap.rst @@ -0,0 +1,31 @@ +============== +Router Heap +============== + +t_heap +---------- +.. doxygenstruct:: t_heap + :project: vpr + :members: + +HeapInterface +---------- +.. doxygenclass:: HeapInterface + :project: vpr + :members: + +HeapStorage +---------- +.. doxygenclass:: HeapStorage + :project: vpr + :members: + +KAryHeap +---------- +.. doxygenclass:: KAryHeap + :project: vpr + +FourAryHeap +---------- +.. doxygenclass:: FourAryHeap + :project: vpr \ No newline at end of file diff --git a/doc/src/api/vprinternals/vpr_router.rst b/doc/src/api/vprinternals/vpr_router.rst new file mode 100644 index 00000000000..a164604c300 --- /dev/null +++ b/doc/src/api/vprinternals/vpr_router.rst @@ -0,0 +1,10 @@ +.. _router: + +======= +VPR Router +======= + +.. toctree:: + :maxdepth: 1 + + router_heap \ No newline at end of file diff --git a/libs/libarchfpga/src/arch_util.cpp b/libs/libarchfpga/src/arch_util.cpp index 3f2ad3413a6..e77c70f5ed6 100644 --- a/libs/libarchfpga/src/arch_util.cpp +++ b/libs/libarchfpga/src/arch_util.cpp @@ -35,7 +35,7 @@ const char* get_arch_file_name() { return arch_file_name; } -InstPort::InstPort(std::string str) { +InstPort::InstPort(const std::string& str) { std::vector inst_port = vtr::split(str, "."); if (inst_port.size() == 1) { diff --git a/libs/libarchfpga/src/arch_util.h b/libs/libarchfpga/src/arch_util.h index 7d882450a5a..f502d6c783a 100644 --- a/libs/libarchfpga/src/arch_util.h +++ b/libs/libarchfpga/src/arch_util.h @@ -22,7 +22,7 @@ class InstPort { static constexpr int UNSPECIFIED = -1; InstPort() = default; - InstPort(std::string str); + InstPort(const std::string& str); std::string instance_name() const { return instance_.name; } std::string port_name() const { return port_.name; } diff --git a/libs/libarchfpga/src/read_xml_arch_file.cpp b/libs/libarchfpga/src/read_xml_arch_file.cpp index 97efaad1cc1..f9fd157ed94 100644 --- a/libs/libarchfpga/src/read_xml_arch_file.cpp +++ b/libs/libarchfpga/src/read_xml_arch_file.cpp @@ -168,7 +168,7 @@ static void ProcessEquivalentSiteCustomConnection(pugi::xml_node Parent, t_sub_tile* SubTile, t_physical_tile_type* PhysicalTileType, t_logical_block_type* LogicalBlockType, - std::string site_name, + const std::string& site_name, const pugiutil::loc_data& loc_data); static void ProcessPinLocations(pugi::xml_node Locations, t_physical_tile_type* PhysicalTileType, @@ -374,7 +374,7 @@ static bool attribute_to_bool(const pugi::xml_node node, static int find_switch_by_name(const t_arch& arch, const std::string& switch_name); -e_side string_to_side(const std::string& side_str); +static e_side string_to_side(const std::string& side_str); template static T* get_type_by_name(const char* type_name, std::vector& types); @@ -1668,10 +1668,10 @@ static void ProcessPb_TypePort_Power(pugi::xml_node Parent, t_port* port, e_powe static void ProcessPb_TypePort(pugi::xml_node Parent, t_port* port, e_power_estimation_method power_method, const bool is_root_pb_type, const pugiutil::loc_data& loc_data) { std::vector expected_attributes = {"name", "num_pins", "port_class"}; if (is_root_pb_type) { - expected_attributes.push_back("equivalent"); + expected_attributes.emplace_back("equivalent"); if (Parent.name() == "input"s || Parent.name() == "clock"s) { - expected_attributes.push_back("is_non_clock_global"); + expected_attributes.emplace_back("is_non_clock_global"); } } @@ -2939,7 +2939,7 @@ static void ProcessDevice(pugi::xml_node Node, t_arch* arch, t_default_fc_spec& // tag Cur = get_single_child(Node, "connection_block", loc_data); expect_only_attributes(Cur, {"input_switch_name", "input_inter_die_switch_name"}, loc_data); - arch->ipin_cblock_switch_name.push_back(get_attribute(Cur, "input_switch_name", loc_data).as_string()); + arch->ipin_cblock_switch_name.emplace_back(get_attribute(Cur, "input_switch_name", loc_data).as_string()); std::string inter_die_conn = get_attribute(Cur, "input_inter_die_switch_name", loc_data, ReqOpt::OPTIONAL).as_string(""); if (inter_die_conn != "") { arch->ipin_cblock_switch_name.push_back(inter_die_conn); @@ -3359,7 +3359,7 @@ static void ProcessEquivalentSiteCustomConnection(pugi::xml_node Parent, t_sub_tile* SubTile, t_physical_tile_type* PhysicalTileType, t_logical_block_type* LogicalBlockType, - std::string site_name, + const std::string& site_name, const pugiutil::loc_data& loc_data) { pugi::xml_node CurDirect; @@ -3542,7 +3542,7 @@ static void ProcessPinLocations(pugi::xml_node Locations, for (int h = 0; h < PhysicalTileType->height; ++h) { for (e_side side : {TOP, RIGHT, BOTTOM, LEFT}) { for (const auto& token : pin_locs->assignments[sub_tile_index][w][h][l][side]) { - InstPort inst_port(token.c_str()); + InstPort inst_port(token); //A pin specification should contain only the block name, and not any instance count information //A pin specification may contain instance count, but should be in the range of capacity @@ -3909,8 +3909,8 @@ static void ProcessSegments(pugi::xml_node Parent, if (!Segs[i].longline) { //Long line doesn't accpet or since it assumes full population - expected_subtags.push_back("sb"); - expected_subtags.push_back("cb"); + expected_subtags.emplace_back("sb"); + expected_subtags.emplace_back("cb"); } /* Get the type */ @@ -3919,16 +3919,16 @@ static void ProcessSegments(pugi::xml_node Parent, Segs[i].directionality = BI_DIRECTIONAL; //Bidir requires the following tags - expected_subtags.push_back("wire_switch"); - expected_subtags.push_back("opin_switch"); + expected_subtags.emplace_back("wire_switch"); + expected_subtags.emplace_back("opin_switch"); } else if (0 == strcmp(tmp, "unidir")) { Segs[i].directionality = UNI_DIRECTIONAL; //Unidir requires the following tags - expected_subtags.push_back("mux"); - expected_subtags.push_back("mux_inter_die"); + expected_subtags.emplace_back("mux"); + expected_subtags.emplace_back("mux_inter_die"); } else { @@ -4114,8 +4114,6 @@ static void ProcessSwitchblocks(pugi::xml_node Parent, t_arch* arch, const pugiu Node = Node.next_sibling(Node.name()); } - - return; } static void ProcessCB_SB(pugi::xml_node Node, std::vector& list, const pugiutil::loc_data& loc_data) { @@ -4876,7 +4874,7 @@ static int find_switch_by_name(const t_arch& arch, const std::string& switch_nam return OPEN; } -e_side string_to_side(const std::string& side_str) { +static e_side string_to_side(const std::string& side_str) { e_side side = NUM_SIDES; if (side_str.empty()) { side = NUM_SIDES; diff --git a/utils/route_diag/src/main.cpp b/utils/route_diag/src/main.cpp index d322890e8ec..47637885363 100644 --- a/utils/route_diag/src/main.cpp +++ b/utils/route_diag/src/main.cpp @@ -103,9 +103,9 @@ static void do_one_route(const Netlist<>& net_list, segment_inf, is_flat); - ConnectionRouter router( - device_ctx.grid, - *router_lookahead, + ConnectionRouter router( + device_ctx.grid, + *router_lookahead, device_ctx.rr_graph.rr_nodes(), &device_ctx.rr_graph, device_ctx.rr_rc_data, diff --git a/vpr/src/base/ShowSetup.cpp b/vpr/src/base/ShowSetup.cpp index c33e6dcfd40..2c6fe0a66b9 100644 --- a/vpr/src/base/ShowSetup.cpp +++ b/vpr/src/base/ShowSetup.cpp @@ -21,7 +21,6 @@ static void ShowPlacerOpts(const t_placer_opts& PlacerOpts, static void ShowRouterOpts(const t_router_opts& RouterOpts); static void ShowAnalysisOpts(const t_analysis_opts& AnalysisOpts); static void ShowNocOpts(const t_noc_opts& NocOpts); - static void ShowAnnealSched(const t_annealing_sched& AnnealSched); /******** Function Implementations ********/ @@ -257,56 +256,99 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { VTR_LOG("false\n"); } - if (DETAILED == RouterOpts.route_type) { - VTR_LOG("RouterOpts.router_algorithm: "); - switch (RouterOpts.router_algorithm) { - case PARALLEL: - VTR_LOG("PARALLEL\n"); - break; - case PARALLEL_DECOMP: - VTR_LOG("PARALLEL_DECOMP\n"); - break; - case TIMING_DRIVEN: - VTR_LOG("TIMING_DRIVEN\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "\n"); - } + VTR_ASSERT(GLOBAL == RouterOpts.route_type || DETAILED == RouterOpts.route_type); - VTR_LOG("RouterOpts.base_cost_type: "); - switch (RouterOpts.base_cost_type) { - case DELAY_NORMALIZED: - VTR_LOG("DELAY_NORMALIZED\n"); - break; - case DELAY_NORMALIZED_LENGTH: - VTR_LOG("DELAY_NORMALIZED_LENGTH\n"); - break; - case DELAY_NORMALIZED_LENGTH_BOUNDED: - VTR_LOG("DELAY_NORMALIZED_LENGTH_BOUNDED\n"); + VTR_LOG("RouterOpts.router_algorithm: "); + switch (RouterOpts.router_algorithm) { + case PARALLEL: + VTR_LOG("PARALLEL\n"); + break; + case PARALLEL_DECOMP: + VTR_LOG("PARALLEL_DECOMP\n"); + break; + case TIMING_DRIVEN: + VTR_LOG("TIMING_DRIVEN\n"); + break; + default: + switch (RouterOpts.route_type) { + case DETAILED: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "\n"); + case GLOBAL: + VTR_LOG_ERROR("Unknown router algorithm\n"); + break; + default: + break; + } + } + + VTR_LOG("RouterOpts.base_cost_type: "); + switch (RouterOpts.base_cost_type) { + case DELAY_NORMALIZED: + VTR_LOG("DELAY_NORMALIZED\n"); + break; + case DELAY_NORMALIZED_LENGTH: + if (GLOBAL == RouterOpts.route_type) { + VTR_LOG_ERROR("Unknown router base cost type\n"); break; - case DELAY_NORMALIZED_FREQUENCY: - VTR_LOG("DELAY_NORMALIZED_FREQUENCY\n"); + } + + VTR_LOG("DELAY_NORMALIZED_LENGTH\n"); + break; + case DELAY_NORMALIZED_LENGTH_BOUNDED: + if (GLOBAL == RouterOpts.route_type) { + VTR_LOG_ERROR("Unknown router base cost type\n"); break; - case DELAY_NORMALIZED_LENGTH_FREQUENCY: - VTR_LOG("DELAY_NORMALIZED_LENGTH_FREQUENCY\n"); + } + + VTR_LOG("DELAY_NORMALIZED_LENGTH_BOUNDED\n"); + break; + case DELAY_NORMALIZED_FREQUENCY: + if (GLOBAL == RouterOpts.route_type) { + VTR_LOG_ERROR("Unknown router base cost type\n"); break; - case DEMAND_ONLY: - VTR_LOG("DEMAND_ONLY\n"); + } + + VTR_LOG("DELAY_NORMALIZED_FREQUENCY\n"); + break; + case DELAY_NORMALIZED_LENGTH_FREQUENCY: + if (GLOBAL == RouterOpts.route_type) { + VTR_LOG_ERROR("Unknown router base cost type\n"); break; - case DEMAND_ONLY_NORMALIZED_LENGTH: - VTR_LOG("DEMAND_ONLY_NORMALIZED_LENGTH\n"); + } + + VTR_LOG("DELAY_NORMALIZED_LENGTH_FREQUENCY\n"); + break; + case DEMAND_ONLY: + VTR_LOG("DEMAND_ONLY\n"); + break; + case DEMAND_ONLY_NORMALIZED_LENGTH: + if (GLOBAL == RouterOpts.route_type) { + VTR_LOG_ERROR("Unknown router base cost type\n"); break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown base_cost_type\n"); - } + } - VTR_LOG("RouterOpts.fixed_channel_width: "); - if (NO_FIXED_CHANNEL_WIDTH == RouterOpts.fixed_channel_width) { - VTR_LOG("NO_FIXED_CHANNEL_WIDTH\n"); - } else { - VTR_LOG("%d\n", RouterOpts.fixed_channel_width); - } + VTR_LOG("DEMAND_ONLY_NORMALIZED_LENGTH\n"); + break; + default: + switch (RouterOpts.route_type) { + case DETAILED: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown base_cost_type\n"); + case GLOBAL: + VTR_LOG_ERROR("Unknown router base cost type\n"); + break; + default: + break; + } + } + VTR_LOG("RouterOpts.fixed_channel_width: "); + if (NO_FIXED_CHANNEL_WIDTH == RouterOpts.fixed_channel_width) { + VTR_LOG("NO_FIXED_CHANNEL_WIDTH\n"); + } else { + VTR_LOG("%d\n", RouterOpts.fixed_channel_width); + } + + if (DETAILED == RouterOpts.route_type) { VTR_LOG("RouterOpts.check_route: "); switch (RouterOpts.check_route) { case e_check_route_option::OFF: @@ -321,104 +363,113 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { default: VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown check_route value\n"); } + } - VTR_LOG("RouterOpts.trim_empty_chan: %s\n", (RouterOpts.trim_empty_channels ? "true" : "false")); - VTR_LOG("RouterOpts.trim_obs_chan: %s\n", (RouterOpts.trim_obs_channels ? "true" : "false")); - VTR_LOG("RouterOpts.acc_fac: %f\n", RouterOpts.acc_fac); - VTR_LOG("RouterOpts.bb_factor: %d\n", RouterOpts.bb_factor); - VTR_LOG("RouterOpts.bend_cost: %f\n", RouterOpts.bend_cost); - VTR_LOG("RouterOpts.first_iter_pres_fac: %f\n", RouterOpts.first_iter_pres_fac); - VTR_LOG("RouterOpts.initial_pres_fac: %f\n", RouterOpts.initial_pres_fac); - VTR_LOG("RouterOpts.pres_fac_mult: %f\n", RouterOpts.pres_fac_mult); - VTR_LOG("RouterOpts.max_pres_fac: %f\n", RouterOpts.max_pres_fac); - VTR_LOG("RouterOpts.max_router_iterations: %d\n", RouterOpts.max_router_iterations); - VTR_LOG("RouterOpts.min_incremental_reroute_fanout: %d\n", RouterOpts.min_incremental_reroute_fanout); - VTR_LOG("RouterOpts.do_check_rr_graph: %s\n", RouterOpts.do_check_rr_graph ? "true" : "false"); - VTR_LOG("RouterOpts.verify_binary_search: %s\n", RouterOpts.verify_binary_search ? "true" : "false"); - VTR_LOG("RouterOpts.min_channel_width_hint: %d\n", RouterOpts.min_channel_width_hint); - VTR_LOG("RouterOpts.read_rr_edge_metadata: %s\n", RouterOpts.read_rr_edge_metadata ? "true" : "false"); - VTR_LOG("RouterOpts.exit_after_first_routing_iteration: %s\n", RouterOpts.exit_after_first_routing_iteration ? "true" : "false"); - - if (TIMING_DRIVEN == RouterOpts.router_algorithm) { - VTR_LOG("RouterOpts.astar_fac: %f\n", RouterOpts.astar_fac); - VTR_LOG("RouterOpts.router_profiler_astar_fac: %f\n", RouterOpts.router_profiler_astar_fac); - VTR_LOG("RouterOpts.criticality_exp: %f\n", RouterOpts.criticality_exp); - VTR_LOG("RouterOpts.max_criticality: %f\n", RouterOpts.max_criticality); - VTR_LOG("RouterOpts.init_wirelength_abort_threshold: %f\n", RouterOpts.init_wirelength_abort_threshold); - VTR_LOG("RouterOpts.save_routing_per_iteration: %s\n", RouterOpts.save_routing_per_iteration ? "true" : "false"); - VTR_LOG("RouterOpts.congested_routing_iteration_threshold_frac: %f\n", RouterOpts.congested_routing_iteration_threshold_frac); - VTR_LOG("RouterOpts.high_fanout_threshold: %d\n", RouterOpts.high_fanout_threshold); - VTR_LOG("RouterOpts.router_debug_net: %d\n", RouterOpts.router_debug_net); - VTR_LOG("RouterOpts.router_debug_sink_rr: %d\n", RouterOpts.router_debug_sink_rr); - VTR_LOG("RouterOpts.router_debug_iteration: %d\n", RouterOpts.router_debug_iteration); - VTR_LOG("RouterOpts.max_convergence_count: %d\n", RouterOpts.max_convergence_count); - VTR_LOG("RouterOpts.reconvergence_cpd_threshold: %f\n", RouterOpts.reconvergence_cpd_threshold); - VTR_LOG("RouterOpts.update_lower_bound_delays: %s\n", RouterOpts.update_lower_bound_delays ? "true" : "false"); - VTR_LOG("RouterOpts.first_iteration_timing_report_file: %s\n", RouterOpts.first_iteration_timing_report_file.c_str()); - + VTR_LOG("RouterOpts.acc_fac: %f\n", RouterOpts.acc_fac); + VTR_LOG("RouterOpts.bb_factor: %d\n", RouterOpts.bb_factor); + VTR_LOG("RouterOpts.bend_cost: %f\n", RouterOpts.bend_cost); + VTR_LOG("RouterOpts.first_iter_pres_fac: %f\n", RouterOpts.first_iter_pres_fac); + VTR_LOG("RouterOpts.initial_pres_fac: %f\n", RouterOpts.initial_pres_fac); + VTR_LOG("RouterOpts.pres_fac_mult: %f\n", RouterOpts.pres_fac_mult); + VTR_LOG("RouterOpts.max_pres_fac: %f\n", RouterOpts.max_pres_fac); + VTR_LOG("RouterOpts.max_router_iterations: %d\n", RouterOpts.max_router_iterations); + VTR_LOG("RouterOpts.min_incremental_reroute_fanout: %d\n", RouterOpts.min_incremental_reroute_fanout); + VTR_LOG("RouterOpts.do_check_rr_graph: %s\n", RouterOpts.do_check_rr_graph ? "true" : "false"); + VTR_LOG("RouterOpts.verify_binary_search: %s\n", RouterOpts.verify_binary_search ? "true" : "false"); + VTR_LOG("RouterOpts.min_channel_width_hint: %d\n", RouterOpts.min_channel_width_hint); + VTR_LOG("RouterOpts.read_rr_edge_metadata: %s\n", RouterOpts.read_rr_edge_metadata ? "true" : "false"); + VTR_LOG("RouterOpts.exit_after_first_routing_iteration: %s\n", RouterOpts.exit_after_first_routing_iteration ? "true" : "false"); + + if (TIMING_DRIVEN == RouterOpts.router_algorithm) { + VTR_LOG("RouterOpts.astar_fac: %f\n", RouterOpts.astar_fac); + VTR_LOG("RouterOpts.router_profiler_astar_fac: %f\n", RouterOpts.router_profiler_astar_fac); + VTR_LOG("RouterOpts.criticality_exp: %f\n", RouterOpts.criticality_exp); + VTR_LOG("RouterOpts.max_criticality: %f\n", RouterOpts.max_criticality); + VTR_LOG("RouterOpts.init_wirelength_abort_threshold: %f\n", RouterOpts.init_wirelength_abort_threshold); + + if (GLOBAL == RouterOpts.route_type) + VTR_LOG("RouterOpts.incr_reroute_delay_ripup: %f\n", RouterOpts.incr_reroute_delay_ripup); + else { std::string incr_delay_ripup_opts[3] = {"ON", "OFF", "AUTO"}; VTR_LOG("RouterOpts.incr_reroute_delay_ripup: %s\n", incr_delay_ripup_opts[(size_t)RouterOpts.incr_reroute_delay_ripup].c_str()); + } - VTR_LOG("RouterOpts.route_bb_update: "); - switch (RouterOpts.route_bb_update) { - case e_route_bb_update::STATIC: - VTR_LOG("STATIC\n"); - break; - case e_route_bb_update::DYNAMIC: - VTR_LOG("DYNAMIC\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown route_bb_update\n"); - } + VTR_LOG("RouterOpts.save_routing_per_iteration: %s\n", RouterOpts.save_routing_per_iteration ? "true" : "false"); + VTR_LOG("RouterOpts.congested_routing_iteration_threshold_frac: %f\n", RouterOpts.congested_routing_iteration_threshold_frac); + VTR_LOG("RouterOpts.high_fanout_threshold: %d\n", RouterOpts.high_fanout_threshold); + VTR_LOG("RouterOpts.router_debug_net: %d\n", RouterOpts.router_debug_net); + VTR_LOG("RouterOpts.router_debug_sink_rr: %d\n", RouterOpts.router_debug_sink_rr); + VTR_LOG("RouterOpts.router_debug_iteration: %d\n", RouterOpts.router_debug_iteration); + VTR_LOG("RouterOpts.max_convergence_count: %d\n", RouterOpts.max_convergence_count); + VTR_LOG("RouterOpts.reconvergence_cpd_threshold: %f\n", RouterOpts.reconvergence_cpd_threshold); + VTR_LOG("RouterOpts.update_lower_bound_delays: %s\n", RouterOpts.update_lower_bound_delays ? "true" : "false"); + VTR_LOG("RouterOpts.first_iteration_timing_report_file: %s\n", RouterOpts.first_iteration_timing_report_file.c_str()); + + VTR_LOG("RouterOpts.route_bb_update: "); + switch (RouterOpts.route_bb_update) { + case e_route_bb_update::STATIC: + VTR_LOG("STATIC\n"); + break; + case e_route_bb_update::DYNAMIC: + VTR_LOG("DYNAMIC\n"); + break; + default: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown route_bb_update\n"); + } - VTR_LOG("RouterOpts.lookahead_type: "); - switch (RouterOpts.lookahead_type) { - case e_router_lookahead::CLASSIC: - VTR_LOG("CLASSIC\n"); - break; - case e_router_lookahead::MAP: - VTR_LOG("MAP\n"); - break; - case e_router_lookahead::COMPRESSED_MAP: - VTR_LOG("COMPRESSED_MAP\n"); - break; - case e_router_lookahead::EXTENDED_MAP: - VTR_LOG("EXTENDED_MAP\n"); - break; - case e_router_lookahead::NO_OP: - VTR_LOG("NO_OP\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown lookahead_type\n"); - } + VTR_LOG("RouterOpts.lookahead_type: "); + switch (RouterOpts.lookahead_type) { + case e_router_lookahead::CLASSIC: + VTR_LOG("CLASSIC\n"); + break; + case e_router_lookahead::MAP: + VTR_LOG("MAP\n"); + break; + case e_router_lookahead::COMPRESSED_MAP: + VTR_LOG("COMPRESSED_MAP\n"); + break; + case e_router_lookahead::EXTENDED_MAP: + VTR_LOG("EXTENDED_MAP\n"); + break; + case e_router_lookahead::NO_OP: + VTR_LOG("NO_OP\n"); + break; + default: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown lookahead_type\n"); + } - VTR_LOG("RouterOpts.initial_timing: "); - switch (RouterOpts.initial_timing) { - case e_router_initial_timing::ALL_CRITICAL: - VTR_LOG("ALL_CRITICAL\n"); - break; - case e_router_initial_timing::LOOKAHEAD: - VTR_LOG("LOOKAHEAD\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown initial_timing\n"); - } + VTR_LOG("RouterOpts.initial_timing: "); + switch (RouterOpts.initial_timing) { + case e_router_initial_timing::ALL_CRITICAL: + VTR_LOG("ALL_CRITICAL\n"); + break; + case e_router_initial_timing::LOOKAHEAD: + VTR_LOG("LOOKAHEAD\n"); + break; + default: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown initial_timing\n"); + } - VTR_LOG("RouterOpts.router_heap: "); - switch (RouterOpts.router_heap) { - case e_heap_type::INVALID_HEAP: - VTR_LOG("INVALID_HEAP\n"); - break; - case e_heap_type::BINARY_HEAP: - VTR_LOG("BINARY_HEAP\n"); - break; - case e_heap_type::BUCKET_HEAP_APPROXIMATION: - VTR_LOG("BUCKET_HEAP_APPROXIMATION\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown router_heap\n"); - } + VTR_LOG("RouterOpts.router_heap: "); + switch (RouterOpts.router_heap) { + case e_heap_type::INVALID_HEAP: + VTR_LOG("INVALID_HEAP\n"); + break; + case e_heap_type::BINARY_HEAP: + VTR_LOG("BINARY_HEAP\n"); + break; + case e_heap_type::FOUR_ARY_HEAP: + VTR_LOG("FOUR_ARY_HEAP\n"); + break; + case e_heap_type::BUCKET_HEAP_APPROXIMATION: + VTR_LOG("BUCKET_HEAP_APPROXIMATION\n"); + break; + default: + VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown router_heap\n"); } + } + + if (DETAILED == RouterOpts.route_type) { if (RouterOpts.routing_failure_predictor == SAFE) VTR_LOG("RouterOpts.routing_failure_predictor = SAFE\n"); else if (RouterOpts.routing_failure_predictor == AGGRESSIVE) @@ -435,134 +486,8 @@ static void ShowRouterOpts(const t_router_opts& RouterOpts) { } else if (RouterOpts.routing_budgets_algorithm == SCALE_DELAY) { VTR_LOG("RouterOpts.routing_budgets_algorithm = SCALE_DELAY\n"); } - - } else { - VTR_ASSERT(GLOBAL == RouterOpts.route_type); - - VTR_LOG("RouterOpts.router_algorithm: "); - switch (RouterOpts.router_algorithm) { - case PARALLEL: - VTR_LOG("PARALLEL\n"); - break; - case TIMING_DRIVEN: - VTR_LOG("TIMING_DRIVEN\n"); - break; - default: - VTR_LOG_ERROR("Unknown router algorithm\n"); - } - - VTR_LOG("RouterOpts.base_cost_type: "); - switch (RouterOpts.base_cost_type) { - case DELAY_NORMALIZED: - VTR_LOG("DELAY_NORMALIZED\n"); - break; - case DEMAND_ONLY: - VTR_LOG("DEMAND_ONLY\n"); - break; - default: - VTR_LOG_ERROR("Unknown router base cost type\n"); - } - - VTR_LOG("RouterOpts.fixed_channel_width: "); - if (NO_FIXED_CHANNEL_WIDTH == RouterOpts.fixed_channel_width) { - VTR_LOG("NO_FIXED_CHANNEL_WIDTH\n"); - } else { - VTR_LOG("%d\n", RouterOpts.fixed_channel_width); - } - - VTR_LOG("RouterOpts.acc_fac: %f\n", RouterOpts.acc_fac); - VTR_LOG("RouterOpts.bb_factor: %d\n", RouterOpts.bb_factor); - VTR_LOG("RouterOpts.bend_cost: %f\n", RouterOpts.bend_cost); - VTR_LOG("RouterOpts.first_iter_pres_fac: %f\n", RouterOpts.first_iter_pres_fac); - VTR_LOG("RouterOpts.initial_pres_fac: %f\n", RouterOpts.initial_pres_fac); - VTR_LOG("RouterOpts.pres_fac_mult: %f\n", RouterOpts.pres_fac_mult); - VTR_LOG("RouterOpts.max_pres_fac: %f\n", RouterOpts.max_pres_fac); - VTR_LOG("RouterOpts.max_router_iterations: %d\n", RouterOpts.max_router_iterations); - VTR_LOG("RouterOpts.min_incremental_reroute_fanout: %d\n", RouterOpts.min_incremental_reroute_fanout); - VTR_LOG("RouterOpts.do_check_rr_graph: %s\n", RouterOpts.do_check_rr_graph ? "true" : "false"); - VTR_LOG("RouterOpts.verify_binary_search: %s\n", RouterOpts.verify_binary_search ? "true" : "false"); - VTR_LOG("RouterOpts.min_channel_width_hint: %d\n", RouterOpts.min_channel_width_hint); - VTR_LOG("RouterOpts.read_rr_edge_metadata: %s\n", RouterOpts.read_rr_edge_metadata ? "true" : "false"); - VTR_LOG("RouterOpts.exit_after_first_routing_iteration: %s\n", RouterOpts.exit_after_first_routing_iteration ? "true" : "false"); - if (TIMING_DRIVEN == RouterOpts.router_algorithm) { - VTR_LOG("RouterOpts.astar_fac: %f\n", RouterOpts.astar_fac); - VTR_LOG("RouterOpts.router_profiler_astar_fac: %f\n", RouterOpts.router_profiler_astar_fac); - VTR_LOG("RouterOpts.criticality_exp: %f\n", RouterOpts.criticality_exp); - VTR_LOG("RouterOpts.max_criticality: %f\n", RouterOpts.max_criticality); - VTR_LOG("RouterOpts.init_wirelength_abort_threshold: %f\n", RouterOpts.init_wirelength_abort_threshold); - VTR_LOG("RouterOpts.incr_reroute_delay_ripup: %f\n", RouterOpts.incr_reroute_delay_ripup); - VTR_LOG("RouterOpts.save_routing_per_iteration: %s\n", RouterOpts.save_routing_per_iteration ? "true" : "false"); - VTR_LOG("RouterOpts.congested_routing_iteration_threshold_frac: %f\n", RouterOpts.congested_routing_iteration_threshold_frac); - VTR_LOG("RouterOpts.high_fanout_threshold: %d\n", RouterOpts.high_fanout_threshold); - VTR_LOG("RouterOpts.router_debug_net: %d\n", RouterOpts.router_debug_net); - VTR_LOG("RouterOpts.router_debug_sink_rr: %d\n", RouterOpts.router_debug_sink_rr); - VTR_LOG("RouterOpts.router_debug_iteration: %d\n", RouterOpts.router_debug_iteration); - VTR_LOG("RouterOpts.max_convergence_count: %d\n", RouterOpts.max_convergence_count); - VTR_LOG("RouterOpts.reconvergence_cpd_threshold: %f\n", RouterOpts.reconvergence_cpd_threshold); - VTR_LOG("RouterOpts.update_lower_bound_delays: %s\n", RouterOpts.update_lower_bound_delays ? "true" : "false"); - VTR_LOG("RouterOpts.first_iteration_timing_report_file: %s\n", RouterOpts.first_iteration_timing_report_file.c_str()); - - VTR_LOG("RouterOpts.route_bb_update: "); - switch (RouterOpts.route_bb_update) { - case e_route_bb_update::STATIC: - VTR_LOG("STATIC\n"); - break; - case e_route_bb_update::DYNAMIC: - VTR_LOG("DYNAMIC\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown route_bb_update\n"); - } - - VTR_LOG("RouterOpts.lookahead_type: "); - switch (RouterOpts.lookahead_type) { - case e_router_lookahead::CLASSIC: - VTR_LOG("CLASSIC\n"); - break; - case e_router_lookahead::MAP: - VTR_LOG("MAP\n"); - break; - case e_router_lookahead::COMPRESSED_MAP: - VTR_LOG("COMPRESSED_MAP\n"); - break; - case e_router_lookahead::EXTENDED_MAP: - VTR_LOG("EXTENDED_MAP\n"); - break; - case e_router_lookahead::NO_OP: - VTR_LOG("NO_OP\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown lookahead_type\n"); - } - - VTR_LOG("RouterOpts.initial_timing: "); - switch (RouterOpts.initial_timing) { - case e_router_initial_timing::ALL_CRITICAL: - VTR_LOG("ALL_CRITICAL\n"); - break; - case e_router_initial_timing::LOOKAHEAD: - VTR_LOG("LOOKAHEAD\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown initial_timing\n"); - } - - VTR_LOG("RouterOpts.router_heap: "); - switch (RouterOpts.router_heap) { - case e_heap_type::INVALID_HEAP: - VTR_LOG("INVALID_HEAP\n"); - break; - case e_heap_type::BINARY_HEAP: - VTR_LOG("BINARY_HEAP\n"); - break; - case e_heap_type::BUCKET_HEAP_APPROXIMATION: - VTR_LOG("BUCKET_HEAP_APPROXIMATION\n"); - break; - default: - VPR_FATAL_ERROR(VPR_ERROR_UNKNOWN, "Unknown router_heap\n"); - } - } } + VTR_LOG("\n"); } @@ -810,4 +735,4 @@ static void ShowNocOpts(const t_noc_opts& NocOpts) { VTR_LOG("NocOpts.noc_sat_routing_num_workers: %d\n", NocOpts.noc_sat_routing_num_workers); VTR_LOG("NocOpts.noc_routing_algorithm: %s\n", NocOpts.noc_placement_file_name.c_str()); VTR_LOG("\n"); -} \ No newline at end of file +} diff --git a/vpr/src/base/clustered_netlist.cpp b/vpr/src/base/clustered_netlist.cpp index c446c44a94b..180b60e35bd 100644 --- a/vpr/src/base/clustered_netlist.cpp +++ b/vpr/src/base/clustered_netlist.cpp @@ -30,19 +30,6 @@ t_logical_block_type_ptr ClusteredNetlist::block_type(const ClusterBlockId id) c return block_types_[id]; } -const std::vector& ClusteredNetlist::blocks_per_type(const t_logical_block_type& blk_type) const { - // empty vector is declared static to avoid re-allocation every time the function is called - static std::vector empty_vector; - if (blocks_per_type_.count(blk_type.index) == 0) { - return empty_vector; - } - - // the vector is returned as const reference to avoid unnecessary copies, - // especially that returned vectors may be very large as they contain - // all clustered blocks with a specific block type - return blocks_per_type_.at(blk_type.index); -} - ClusterNetId ClusteredNetlist::block_net(const ClusterBlockId blk_id, const int logical_pin_index) const { auto pin_id = block_pin(blk_id, logical_pin_index); @@ -123,8 +110,6 @@ ClusterBlockId ClusteredNetlist::create_block(const char* name, t_pb* pb, t_logi block_pbs_.insert(blk_id, pb); block_types_.insert(blk_id, type); - blocks_per_type_[type->index].push_back(blk_id); - //Allocate and initialize every potential pin of the block block_logical_pins_.insert(blk_id, std::vector(get_max_num_pins(type), ClusterPinId::INVALID())); } @@ -185,14 +170,11 @@ ClusterNetId ClusteredNetlist::create_net(const std::string& name) { } void ClusteredNetlist::remove_block_impl(const ClusterBlockId blk_id) { - //find the block type, so we can remove it from blocks_per_type_ data structure - auto blk_type = block_type(blk_id); //Remove & invalidate pointers free_pb(block_pbs_[blk_id]); delete block_pbs_[blk_id]; block_pbs_.insert(blk_id, NULL); block_types_.insert(blk_id, NULL); - std::remove(blocks_per_type_[blk_type->index].begin(), blocks_per_type_[blk_type->index].end(), blk_id); block_logical_pins_.insert(blk_id, std::vector()); } diff --git a/vpr/src/base/clustered_netlist.h b/vpr/src/base/clustered_netlist.h index 7a1bd15f28b..43a31cd8267 100644 --- a/vpr/src/base/clustered_netlist.h +++ b/vpr/src/base/clustered_netlist.h @@ -134,9 +134,6 @@ class ClusteredNetlist : public Netlist& blocks_per_type(const t_logical_block_type& blk_type) const; - ///@brief Returns the net of the block attached to the specific pin index ClusterNetId block_net(const ClusterBlockId blk_id, const int pin_index) const; diff --git a/vpr/src/base/read_circuit.cpp b/vpr/src/base/read_circuit.cpp index ac46b3857ac..dd2be16f7cd 100644 --- a/vpr/src/base/read_circuit.cpp +++ b/vpr/src/base/read_circuit.cpp @@ -191,22 +191,22 @@ static void show_circuit_stats(const AtomNetlist& netlist) { //Determine the maximum length of a type name for nice formatting size_t max_block_type_len = 0; - for (auto kv : block_type_counts) { + for (const auto& kv : block_type_counts) { max_block_type_len = std::max(max_block_type_len, kv.first.size()); } size_t max_net_type_len = 0; - for (auto kv : net_stats) { + for (const auto& kv : net_stats) { max_net_type_len = std::max(max_net_type_len, kv.first.size()); } //Print the statistics VTR_LOG("Circuit Statistics:\n"); VTR_LOG(" Blocks: %zu\n", netlist.blocks().size()); - for (auto kv : block_type_counts) { + for (const auto& kv : block_type_counts) { VTR_LOG(" %-*s: %7zu\n", max_block_type_len, kv.first.c_str(), kv.second); } VTR_LOG(" Nets : %zu\n", netlist.nets().size()); - for (auto kv : net_stats) { + for (const auto& kv : net_stats) { VTR_LOG(" %-*s: %7.1f\n", max_net_type_len, kv.first.c_str(), kv.second); } VTR_LOG(" Netlist Clocks: %zu\n", find_netlist_logical_clock_drivers(netlist).size()); diff --git a/vpr/src/base/read_options.cpp b/vpr/src/base/read_options.cpp index 2e5bf4110e2..f17bffe9fab 100644 --- a/vpr/src/base/read_options.cpp +++ b/vpr/src/base/read_options.cpp @@ -1061,6 +1061,8 @@ struct ParseRouterHeap { ConvertedValue conv_value; if (str == "binary") conv_value.set_value(e_heap_type::BINARY_HEAP); + else if (str == "four_ary") + conv_value.set_value(e_heap_type::FOUR_ARY_HEAP); else if (str == "bucket") conv_value.set_value(e_heap_type::BUCKET_HEAP_APPROXIMATION); else { @@ -1075,6 +1077,8 @@ struct ParseRouterHeap { ConvertedValue conv_value; if (val == e_heap_type::BINARY_HEAP) conv_value.set_value("binary"); + else if (val == e_heap_type::FOUR_ARY_HEAP) + conv_value.set_value("four_ary"); else { VTR_ASSERT(val == e_heap_type::BUCKET_HEAP_APPROXIMATION); conv_value.set_value("bucket"); @@ -1083,7 +1087,7 @@ struct ParseRouterHeap { } std::vector default_choices() { - return {"binary", "bucket"}; + return {"binary", "four_ary", "bucket"}; } }; @@ -2648,11 +2652,12 @@ argparse::ArgumentParser create_arg_parser(const std::string& prog_name, t_optio .help( "Controls what type of heap to use for timing driven router.\n" " * binary: A binary heap is used.\n" + " * four_ary: A four_ary heap is used.\n" " * bucket: A bucket heap approximation is used. The bucket heap\n" " * is faster because it is only a heap approximation.\n" " * Testing has shown the approximation results in\n" - " * similiar QoR with less CPU work.\n") - .default_value("binary") + " * similar QoR with less CPU work.\n") + .default_value("four_ary") .show_in(argparse::ShowIn::HELP_ONLY); route_timing_grp.add_argument(args.router_first_iteration_timing_report_file, "--router_first_iter_timing_report") diff --git a/vpr/src/base/read_place.cpp b/vpr/src/base/read_place.cpp index 130ec5469e7..f3374e89824 100644 --- a/vpr/src/base/read_place.cpp +++ b/vpr/src/base/read_place.cpp @@ -92,8 +92,12 @@ void read_place_header(std::ifstream& placement_file, bool seen_netlist_id = false; bool seen_grid_dimensions = false; + // store the current position in file + // if an invalid line is read, we might need to return to the beginning of that line + std::streampos file_pos = placement_file.tellg(); + while (std::getline(placement_file, line) && (!seen_netlist_id || !seen_grid_dimensions)) { //Parse line-by-line - ++lineno; + ++lineno; std::vector tokens = vtr::split(line); @@ -103,9 +107,9 @@ void read_place_header(std::ifstream& placement_file, } else if (tokens[0][0] == '#') { continue; //Skip commented lines - } else if (tokens.size() == 4 - && tokens[0] == "Netlist_File:" - && tokens[2] == "Netlist_ID:") { + } else if (tokens.size() == 4 && + tokens[0] == "Netlist_File:" && + tokens[2] == "Netlist_ID:") { //Check that the netlist used to generate this placement matches the one loaded // //NOTE: this is an optional check which causes no errors if this line is missing. @@ -120,45 +124,76 @@ void read_place_header(std::ifstream& placement_file, std::string place_netlist_id = tokens[3]; std::string place_netlist_file = tokens[1]; - if (place_netlist_id != cluster_ctx.clb_nlist.netlist_id().c_str()) { + if (place_netlist_id != cluster_ctx.clb_nlist.netlist_id()) { auto msg = vtr::string_fmt( "The packed netlist file that generated placement (File: '%s' ID: '%s')" " does not match current netlist (File: '%s' ID: '%s')", place_netlist_file.c_str(), place_netlist_id.c_str(), net_file, cluster_ctx.clb_nlist.netlist_id().c_str()); if (verify_file_digests) { + msg += " To ignore the packed netlist mismatch, use '--verify_file_digests off' command line option."; vpr_throw(VPR_ERROR_PLACE_F, place_file, lineno, msg.c_str()); } else { VTR_LOGF_WARN(place_file, lineno, "%s\n", msg.c_str()); + VTR_LOG_WARN("The packed netlist mismatch is ignored because" + "--verify_file_digests command line option is off."); } } seen_netlist_id = true; - } else if (tokens.size() == 7 - && tokens[0] == "Array" - && tokens[1] == "size:" - && tokens[3] == "x" - && tokens[5] == "logic" - && tokens[6] == "blocks") { + } else if (tokens.size() == 7 && + tokens[0] == "Array" && + tokens[1] == "size:" && + tokens[3] == "x" && + tokens[5] == "logic" && + tokens[6] == "blocks") { //Load the device grid dimensions size_t place_file_width = vtr::atou(tokens[2]); size_t place_file_height = vtr::atou(tokens[4]); if (grid.width() != place_file_width || grid.height() != place_file_height) { - vpr_throw(VPR_ERROR_PLACE_F, place_file, lineno, - "Current FPGA size (%d x %d) is different from size when placement generated (%d x %d)", - grid.width(), grid.height(), place_file_width, place_file_height); + auto msg = vtr::string_fmt( + "Current FPGA size (%d x %d) is different from size when placement generated (%d x %d)", + grid.width(), grid.height(), place_file_width, place_file_height); + if (verify_file_digests) { + msg += " To ignore this size mismatch, use '--verify_file_digests off' command line option."; + vpr_throw(VPR_ERROR_PLACE_F, place_file, lineno, msg.c_str()); + } else { + VTR_LOGF_WARN(place_file, lineno, "%s\n", msg.c_str()); + VTR_LOG_WARN("The FPGA size mismatch is ignored because" + "--verify_file_digests command line option is off."); + } } seen_grid_dimensions = true; } else { //Unrecognized - vpr_throw(VPR_ERROR_PLACE_F, place_file, lineno, - "Invalid line '%s' in placement file header", - line.c_str()); + auto msg = vtr::string_fmt( + "Invalid line '%s' in placement file header. " + "Expected to see netlist filename and device size first.", + line.c_str()); + + if (verify_file_digests) { + msg += " To ignore this unexpected line, use '--verify_file_digests off' command line option."; + vpr_throw(VPR_ERROR_PLACE_F, place_file, lineno, msg.c_str()); + } else { + VTR_LOGF_WARN(place_file, lineno, "%s\n", msg.c_str()); + VTR_LOG_WARN("Unexpected line in the placement file header is ignored because" + "--verify_file_digests command line option is off."); + } + + if ((tokens.size() == 4 || (tokens.size() > 4 && tokens[4][0] == '#')) || + (tokens.size() == 5 || (tokens.size() > 5 && tokens[5][0] == '#'))) { + placement_file.seekg(file_pos); + break; + } } + + // store the current position in the file before reading the next line + // we might need to return to this position + file_pos = placement_file.tellg(); } } @@ -200,7 +235,8 @@ void read_place_body(std::ifstream& placement_file, } else if (tokens[0][0] == '#') { continue; //Skip commented lines - } else if ((tokens.size() == 4 || (tokens.size() > 4 && tokens[4][0] == '#')) || (tokens.size() == 5 || (tokens.size() > 5 && tokens[5][0] == '#'))) { + } else if ((tokens.size() == 4 || (tokens.size() > 4 && tokens[4][0] == '#')) || + (tokens.size() == 5 || (tokens.size() > 5 && tokens[5][0] == '#'))) { //Load the block location // // If the place file corresponds to a 3D architecture, it should contain 5 tokens of actual data, with an optional 6th (commented) token indicating VPR's internal block number. @@ -250,7 +286,10 @@ void read_place_body(std::ifstream& placement_file, //Check if block is listed multiple times with conflicting locations in constraints file if (seen_blocks[blk_id] > 0) { - if (block_x != place_ctx.block_locs[blk_id].loc.x || block_y != place_ctx.block_locs[blk_id].loc.y || sub_tile_index != place_ctx.block_locs[blk_id].loc.sub_tile || block_layer != place_ctx.block_locs[blk_id].loc.layer) { + if (block_x != place_ctx.block_locs[blk_id].loc.x || + block_y != place_ctx.block_locs[blk_id].loc.y || + sub_tile_index != place_ctx.block_locs[blk_id].loc.sub_tile || + block_layer != place_ctx.block_locs[blk_id].loc.layer) { std::string cluster_name = cluster_ctx.clb_nlist.block_name(blk_id); VPR_THROW(VPR_ERROR_PLACE, "The location of cluster %s (#%d) is specified %d times in the constraints file with conflicting locations. \n" diff --git a/vpr/src/base/read_route.cpp b/vpr/src/base/read_route.cpp index 495350dc761..777ca226710 100644 --- a/vpr/src/base/read_route.cpp +++ b/vpr/src/base/read_route.cpp @@ -46,7 +46,7 @@ #include "route_common.h" #include "route_tree.h" #include "read_route.h" -#include "binary_heap.h" +#include "four_ary_heap.h" #include "old_traceback.h" @@ -129,7 +129,7 @@ bool read_route(const char* route_file, const t_router_opts& router_opts, bool v fp.close(); /*Correctly set up the clb opins*/ - BinaryHeap small_heap; + FourAryHeap small_heap; small_heap.init_heap(device_ctx.grid); if (!flat_router) { reserve_locally_used_opins(&small_heap, router_opts.initial_pres_fac, diff --git a/vpr/src/base/vpr_api.cpp b/vpr/src/base/vpr_api.cpp index e1613fdc27d..bf393a98d88 100644 --- a/vpr/src/base/vpr_api.cpp +++ b/vpr/src/base/vpr_api.cpp @@ -13,17 +13,13 @@ #include #include -#include -#include #include -#include #include "vtr_assert.h" #include "vtr_math.h" #include "vtr_log.h" #include "vtr_version.h" #include "vtr_time.h" -#include "vtr_path.h" #include "vpr_types.h" #include "vpr_utils.h" @@ -44,15 +40,12 @@ #include "stats.h" #include "read_options.h" #include "echo_files.h" -#include "read_xml_arch_file.h" #include "SetupVPR.h" #include "ShowSetup.h" #include "CheckArch.h" #include "CheckSetup.h" #include "rr_graph.h" #include "pb_type_graph.h" -#include "route_common.h" -#include "timing_place_lookup.h" #include "route.h" #include "route_export.h" #include "vpr_api.h" @@ -65,7 +58,6 @@ #include "concrete_timing_info.h" #include "netlist_writer.h" #include "AnalysisDelayCalculator.h" -#include "RoutingDelayCalculator.h" #include "check_route.h" #include "constant_nets.h" #include "atom_netlist_utils.h" @@ -86,15 +78,12 @@ #include "tatum/echo_writer.hpp" #include "read_route.h" -#include "read_blif.h" #include "read_place.h" #include "arch_util.h" #include "post_routing_pb_pin_fixup.h" -#include "log.h" -#include "iostream" #include "load_flat_place.h" @@ -410,7 +399,6 @@ bool vpr_flow(t_vpr_setup& vpr_setup, t_arch& arch) { bool place_success = vpr_place_flow(placement_net_list, vpr_setup, arch); if (!place_success) { - std::cout << "failed placement" << std::endl; return false; //Unimplementable } } @@ -1471,7 +1459,7 @@ bool vpr_analysis_flow(const Netlist<>& net_list, VTR_LOG_WARN("Sychronization between packing and routing results is not applied due to users select to skip it\n"); } } else { - VTR_LOG_WARN("Sychronization between packing and routing results is not applied due to illegal circuit implementation\n"); + VTR_LOG_WARN("Synchronization between packing and routing results is not applied due to illegal circuit implementation\n"); } VTR_LOG("\n"); } diff --git a/vpr/src/base/vpr_constraints_writer.cpp b/vpr/src/base/vpr_constraints_writer.cpp index b1e50917ae1..188fa803f8c 100644 --- a/vpr/src/base/vpr_constraints_writer.cpp +++ b/vpr/src/base/vpr_constraints_writer.cpp @@ -80,9 +80,9 @@ void setup_vpr_floorplan_constraints_one_loc(VprConstraints& constraints, int ex part.set_part_region(pr); constraints.mutable_place_constraints().add_partition(part); - std::unordered_set* atoms = cluster_to_atoms(blk_id); + const std::unordered_set& atoms = cluster_to_atoms(blk_id); - for (auto atom_id : *atoms) { + for (AtomBlockId atom_id : atoms) { constraints.mutable_place_constraints().add_constrained_atom(atom_id, partid); } part_id++; @@ -156,7 +156,7 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int * appropriate region accordingly */ for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { - std::unordered_set* atoms = cluster_to_atoms(blk_id); + const std::unordered_set& atoms = cluster_to_atoms(blk_id); int x = place_ctx.block_locs[blk_id].loc.x; int y = place_ctx.block_locs[blk_id].loc.y; int width = device_ctx.grid.width(); @@ -189,7 +189,7 @@ void setup_vpr_floorplan_constraints_cutpoints(VprConstraints& constraints, int VTR_ASSERT(got != region_atoms.end()); - for (auto atom_id : *atoms) { + for (AtomBlockId atom_id : atoms) { got->second.push_back(atom_id); } } diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index f33afd6c8ad..a9ff0c29ea6 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -354,7 +354,7 @@ struct ClusteringHelperContext : public Context { t_ext_pin_util_targets target_external_pin_util; // During clustering, a block is related to un-clustered primitives with nets. - // This relation has three types: low fanout, high fanout, and trasitive + // This relation has three types: low fanout, high fanout, and transitive // high_fanout_thresholds stores the threshold for nets to a block type to be considered high fanout t_pack_high_fanout_thresholds high_fanout_thresholds; @@ -401,6 +401,12 @@ struct PlacementContext : public Context { ///@brief The pl_macros array stores all the placement macros (usually carry chains). std::vector pl_macros; + ///@brief Stores ClusterBlockId of all movable clustered blocks (blocks that are not locked down to a single location) + std::vector movable_blocks; + + ///@brief Stores ClusterBlockId of all movable clustered of each block type + std::vector> movable_blocks_per_type; + /** * @brief Compressed grid space for each block type * @@ -526,6 +532,17 @@ struct FloorplanningContext : public Context { */ vtr::vector cluster_constraints; + /** + * @brief Floorplanning constraints in the compressed grid coordinate system. + * + * Each clustered block has a logical type with a corresponding compressed grid. + * Compressed floorplanning constraints are calculated by translating the grid locations + * of floorplanning regions to compressed grid locations. To ensure regions do not enlarge: + * - The bottom left corner is rounded up to the nearest compressed location. + * - The top right corner is rounded down to the nearest compressed location. + */ + vtr::vector compressed_cluster_constraints; + std::vector overfull_regions; }; diff --git a/vpr/src/pack/re_cluster.cpp b/vpr/src/pack/re_cluster.cpp index 875ba98b2e9..f4df575453c 100644 --- a/vpr/src/pack/re_cluster.cpp +++ b/vpr/src/pack/re_cluster.cpp @@ -37,8 +37,8 @@ bool move_mol_to_new_cluster(t_pack_molecule* molecule, } //remove the molecule from its current cluster - std::unordered_set* old_clb_atoms = cluster_to_atoms(old_clb); - if (old_clb_atoms->size() == 1) { + std::unordered_set& old_clb_atoms = cluster_to_mutable_atoms(old_clb); + if (old_clb_atoms.size() == 1) { VTR_LOGV(verbosity > 4, "Atom: %zu move failed. This is the last atom in its cluster.\n"); return false; } @@ -101,17 +101,17 @@ bool move_mol_to_existing_cluster(t_pack_molecule* molecule, AtomBlockId root_atom_id = molecule->atom_block_ids[molecule->root]; int molecule_size = get_array_size_of_molecule(molecule); t_lb_router_data* old_router_data = nullptr; - std::unordered_set* new_clb_atoms = cluster_to_atoms(new_clb); + std::unordered_set& new_clb_atoms = cluster_to_mutable_atoms(new_clb); ClusterBlockId old_clb = atom_to_cluster(root_atom_id); - //check old and new clusters compitability - bool is_compitable = check_type_and_mode_compitability(old_clb, new_clb, verbosity); - if (!is_compitable) + //check old and new clusters compatibility + bool is_compatible = check_type_and_mode_compatibility(old_clb, new_clb, verbosity); + if (!is_compatible) return false; //remove the molecule from its current cluster - std::unordered_set* old_clb_atoms = cluster_to_atoms(old_clb); - if (old_clb_atoms->size() == 1) { + std::unordered_set& old_clb_atoms = cluster_to_mutable_atoms(old_clb); + if (old_clb_atoms.size() == 1) { VTR_LOGV(verbosity > 4, "Atom: %zu move failed. This is the last atom in its cluster.\n"); return false; } @@ -181,7 +181,7 @@ bool swap_two_molecules(t_pack_molecule* molecule_1, return false; } //Check that the old and new clusters are of the same type - bool is_compitable = check_type_and_mode_compitability(clb_1, clb_2, verbosity); + bool is_compitable = check_type_and_mode_compatibility(clb_1, clb_2, verbosity); if (!is_compitable) return false; @@ -189,11 +189,13 @@ bool swap_two_molecules(t_pack_molecule* molecule_1, t_lb_router_data* old_2_router_data = nullptr; //save the atoms of the 2 clusters - std::unordered_set* clb_1_atoms = cluster_to_atoms(clb_1); - std::unordered_set* clb_2_atoms = cluster_to_atoms(clb_2); + std::unordered_set& clb_1_atoms = cluster_to_mutable_atoms(clb_1); + std::unordered_set& clb_2_atoms = cluster_to_mutable_atoms(clb_2); - if (clb_1_atoms->size() == 1 || clb_2_atoms->size() == 1) { - VTR_LOGV(verbosity > 4, "Atom: %zu, %zu swap failed. This is the last atom in its cluster.\n", molecule_1->atom_block_ids[molecule_1->root], molecule_2->atom_block_ids[molecule_2->root]); + if (clb_1_atoms.size() == 1 || clb_2_atoms.size() == 1) { + VTR_LOGV(verbosity > 4, "Atom: %zu, %zu swap failed. This is the last atom in its cluster.\n", + molecule_1->atom_block_ids[molecule_1->root], + molecule_2->atom_block_ids[molecule_2->root]); return false; } diff --git a/vpr/src/pack/re_cluster_util.cpp b/vpr/src/pack/re_cluster_util.cpp index 98ceffd7b71..287dabbe78c 100644 --- a/vpr/src/pack/re_cluster_util.cpp +++ b/vpr/src/pack/re_cluster_util.cpp @@ -10,7 +10,7 @@ // The name suffix of the new block (if exists) -// This suffex is useful in preventing duplicate high-level cluster block names +// This suffix is useful in preventing duplicate high-level cluster block names const char* name_suffix = "_m"; /******************* Static Functions ********************/ @@ -19,22 +19,21 @@ static void load_internal_to_block_net_nums(const t_logical_block_type_ptr type, static void fix_atom_pin_mapping(const AtomBlockId blk); static void fix_cluster_pins_after_moving(const ClusterBlockId clb_index); -static void check_net_absorbtion(const AtomNetId atom_net_id, - const ClusterBlockId new_clb, - const ClusterBlockId old_clb, - ClusterPinId& cluster_pin_id, - bool& previously_absorbed, - bool& now_abosrbed); + +static std::pair check_net_absorption(AtomNetId atom_net_id, + ClusterBlockId new_clb, + ClusterBlockId old_clb, + ClusterPinId& cluster_pin_id); static void fix_cluster_port_after_moving(const ClusterBlockId clb_index); static void fix_cluster_net_after_moving(const t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb); + ClusterBlockId old_clb, + ClusterBlockId new_clb); -static void rebuild_cluster_placement_stats(const ClusterBlockId& clb_index, - const std::unordered_set* clb_atoms); +static void rebuild_cluster_placement_stats(ClusterBlockId clb_index, + const std::unordered_set& clb_atoms); static void update_cluster_pb_stats(const t_pack_molecule* molecule, int molecule_size, @@ -42,34 +41,30 @@ static void update_cluster_pb_stats(const t_pack_molecule* molecule, bool is_added); /***************** API functions ***********************/ -ClusterBlockId atom_to_cluster(const AtomBlockId& atom) { +ClusterBlockId atom_to_cluster(AtomBlockId atom) { auto& atom_ctx = g_vpr_ctx.atom(); return (atom_ctx.lookup.atom_clb(atom)); } -std::unordered_set* cluster_to_atoms(const ClusterBlockId& cluster) { - auto& helper_ctx = g_vpr_ctx.mutable_cl_helper(); - - //If the lookup is not built yet, build it first - if (helper_ctx.atoms_lookup.empty()) - init_clb_atoms_lookup(helper_ctx.atoms_lookup); +const std::unordered_set& cluster_to_atoms(ClusterBlockId cluster) { + const auto& atoms = cluster_to_mutable_atoms(cluster); - return &(helper_ctx.atoms_lookup[cluster]); + return atoms; } void remove_mol_from_cluster(const t_pack_molecule* molecule, int molecule_size, ClusterBlockId& old_clb, - std::unordered_set* old_clb_atoms, + std::unordered_set& old_clb_atoms, bool router_data_ready, t_lb_router_data*& router_data) { auto& helper_ctx = g_vpr_ctx.mutable_cl_helper(); for (int i_atom = 0; i_atom < molecule_size; i_atom++) { if (molecule->atom_block_ids[i_atom]) { - auto it = old_clb_atoms->find(molecule->atom_block_ids[i_atom]); - if (it != old_clb_atoms->end()) - old_clb_atoms->erase(molecule->atom_block_ids[i_atom]); + auto it = old_clb_atoms.find(molecule->atom_block_ids[i_atom]); + if (it != old_clb_atoms.end()) + old_clb_atoms.erase(molecule->atom_block_ids[i_atom]); } } @@ -80,8 +75,8 @@ void remove_mol_from_cluster(const t_pack_molecule* molecule, update_cluster_pb_stats(molecule, molecule_size, old_clb, false); } -void commit_mol_move(const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb, +void commit_mol_move(ClusterBlockId old_clb, + ClusterBlockId new_clb, bool during_packing, bool new_clb_created) { auto& device_ctx = g_vpr_ctx.device(); @@ -96,18 +91,16 @@ void commit_mol_move(const ClusterBlockId& old_clb, } } -t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr_graphs, const ClusterBlockId& clb_index, const std::unordered_set* clb_atoms) { +t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr_graphs, + ClusterBlockId clb_index, + const std::unordered_set& clb_atoms) { //build data structures used by intra-logic block router auto& cluster_ctx = g_vpr_ctx.clustering(); auto& atom_ctx = g_vpr_ctx.atom(); auto block_type = cluster_ctx.clb_nlist.block_type(clb_index); t_lb_router_data* router_data = alloc_and_load_router_data(&lb_type_rr_graphs[block_type->index], block_type); - //iterate over atoms of the current cluster and add them to router data - if (!clb_atoms) - return router_data; - - for (auto atom_id : *clb_atoms) { + for (auto atom_id : clb_atoms) { add_atom_as_target(router_data, atom_id); const t_pb* pb = atom_ctx.lookup.atom_pb(atom_id); while (pb) { @@ -119,9 +112,9 @@ t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr } bool start_new_cluster_for_mol(t_pack_molecule* molecule, - const t_logical_block_type_ptr& type, - const int& mode, - const int& feasible_block_array_size, + const t_logical_block_type_ptr type, + const int mode, + const int feasible_block_array_size, bool enable_pin_feasibility_filter, ClusterBlockId clb_index, bool during_packing, @@ -219,8 +212,8 @@ bool start_new_cluster_for_mol(t_pack_molecule* molecule, bool pack_mol_in_existing_cluster(t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& new_clb, - std::unordered_set* new_clb_atoms, + ClusterBlockId new_clb, + std::unordered_set& new_clb_atoms, bool during_packing, t_clustering_data& clustering_data, t_lb_router_data*& router_data, @@ -278,7 +271,7 @@ bool pack_mol_in_existing_cluster(t_pack_molecule* molecule, for (int i_atom = 0; i_atom < molecule_size; i_atom++) { if (molecule->atom_block_ids[i_atom]) { - new_clb_atoms->insert(molecule->atom_block_ids[i_atom]); + new_clb_atoms.insert(molecule->atom_block_ids[i_atom]); } } update_cluster_pb_stats(molecule, molecule_size, new_clb, true); @@ -293,13 +286,13 @@ bool pack_mol_in_existing_cluster(t_pack_molecule* molecule, void fix_clustered_netlist(t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb) { + ClusterBlockId old_clb, + ClusterBlockId new_clb) { fix_cluster_port_after_moving(new_clb); fix_cluster_net_after_moving(molecule, molecule_size, old_clb, new_clb); } -void revert_mol_move(const ClusterBlockId& old_clb, +void revert_mol_move(ClusterBlockId old_clb, t_pack_molecule* molecule, t_lb_router_data*& old_router_data, bool during_packing, @@ -345,14 +338,13 @@ void revert_mol_move(const ClusterBlockId& old_clb, static void fix_cluster_net_after_moving(const t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb) { + ClusterBlockId old_clb, + ClusterBlockId new_clb) { auto& cluster_ctx = g_vpr_ctx.mutable_clustering(); auto& atom_ctx = g_vpr_ctx.mutable_atom(); AtomNetId atom_net_id; ClusterPinId cluster_pin; - bool previously_absorbed, now_abosrbed; //remove all old cluster pin from their nets ClusterNetId cur_clb_net; @@ -366,9 +358,9 @@ static void fix_cluster_net_after_moving(const t_pack_molecule* molecule, if (molecule->atom_block_ids[i_atom]) { for (auto atom_pin : atom_ctx.nlist.block_pins(molecule->atom_block_ids[i_atom])) { atom_net_id = atom_ctx.nlist.pin_net(atom_pin); - check_net_absorbtion(atom_net_id, new_clb, old_clb, cluster_pin, previously_absorbed, now_abosrbed); + auto [previously_absorbed, now_absorbed] = check_net_absorption(atom_net_id, new_clb, old_clb, cluster_pin); - if (!previously_absorbed && now_abosrbed) { + if (!previously_absorbed && now_absorbed) { cur_clb_net = cluster_ctx.clb_nlist.pin_net(cluster_pin); cluster_ctx.clb_nlist.remove_net(cur_clb_net); } @@ -380,10 +372,10 @@ static void fix_cluster_net_after_moving(const t_pack_molecule* molecule, fix_cluster_pins_after_moving(old_clb); fix_cluster_pins_after_moving(new_clb); - for (auto& atom_blk : *(cluster_to_atoms(old_clb))) + for (AtomBlockId atom_blk : cluster_to_atoms(old_clb)) fix_atom_pin_mapping(atom_blk); - for (auto& atom_blk : *(cluster_to_atoms(new_clb))) + for (AtomBlockId atom_blk : cluster_to_atoms(new_clb)) fix_atom_pin_mapping(atom_blk); cluster_ctx.clb_nlist.remove_and_compress(); @@ -518,12 +510,10 @@ static void fix_cluster_pins_after_moving(const ClusterBlockId clb_index) { } } -static void check_net_absorbtion(const AtomNetId atom_net_id, - const ClusterBlockId new_clb, - const ClusterBlockId old_clb, - ClusterPinId& cluster_pin_id, - bool& previously_absorbed, - bool& now_abosrbed) { +static std::pair check_net_absorption(const AtomNetId atom_net_id, + const ClusterBlockId new_clb, + const ClusterBlockId old_clb, + ClusterPinId& cluster_pin_id) { auto& atom_ctx = g_vpr_ctx.atom(); auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -532,6 +522,7 @@ static void check_net_absorbtion(const AtomNetId atom_net_id, ClusterNetId clb_net_id = atom_ctx.lookup.clb_net(atom_net_id); + bool previously_absorbed; if (clb_net_id == ClusterNetId::INVALID()) previously_absorbed = true; else { @@ -545,16 +536,18 @@ static void check_net_absorbtion(const AtomNetId atom_net_id, } //iterate over net pins and check their cluster - now_abosrbed = true; + bool now_absorbed = true; for (auto& net_pin : atom_ctx.nlist.net_pins(atom_net_id)) { atom_block_id = atom_ctx.nlist.pin_block(net_pin); clb_index = atom_ctx.lookup.atom_clb(atom_block_id); if (clb_index != new_clb) { - now_abosrbed = false; + now_absorbed = false; break; } } + + return {previously_absorbed, now_absorbed}; } static void fix_atom_pin_mapping(const AtomBlockId blk) { @@ -656,8 +649,8 @@ static bool count_children_pbs(const t_pb* pb) { } #endif -static void rebuild_cluster_placement_stats(const ClusterBlockId& clb_index, - const std::unordered_set* clb_atoms) { +static void rebuild_cluster_placement_stats(ClusterBlockId clb_index, + const std::unordered_set& clb_atoms) { auto& helper_ctx = g_vpr_ctx.mutable_cl_helper(); auto& cluster_ctx = g_vpr_ctx.clustering(); auto& atom_ctx = g_vpr_ctx.atom(); @@ -666,7 +659,7 @@ static void rebuild_cluster_placement_stats(const ClusterBlockId& clb_index, reset_cluster_placement_stats(cluster_placement_stats); set_mode_cluster_placement_stats(cluster_ctx.clb_nlist.block_pb(clb_index)->pb_graph_node, cluster_ctx.clb_nlist.block_pb(clb_index)->mode); - for (auto& atom : *clb_atoms) { + for (AtomBlockId atom : clb_atoms) { const t_pb* atom_pb = atom_ctx.lookup.atom_pb(atom); commit_primitive(cluster_placement_stats, atom_pb->pb_graph_node); } @@ -677,8 +670,8 @@ bool is_cluster_legal(t_lb_router_data*& router_data) { } void commit_mol_removal(const t_pack_molecule* molecule, - const int& molecule_size, - const ClusterBlockId& old_clb, + int molecule_size, + ClusterBlockId old_clb, bool during_packing, t_lb_router_data*& router_data, t_clustering_data& clustering_data) { @@ -699,12 +692,13 @@ void commit_mol_removal(const t_pack_molecule* molecule, router_data->saved_lb_nets = nullptr; } else { cluster_ctx.clb_nlist.block_pb(old_clb)->pb_route.clear(); - cluster_ctx.clb_nlist.block_pb(old_clb)->pb_route = alloc_and_load_pb_route(router_data->saved_lb_nets, cluster_ctx.clb_nlist.block_pb(old_clb)->pb_graph_node); + cluster_ctx.clb_nlist.block_pb(old_clb)->pb_route = alloc_and_load_pb_route(router_data->saved_lb_nets, + cluster_ctx.clb_nlist.block_pb(old_clb)->pb_graph_node); } } -bool check_type_and_mode_compitability(const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb, +bool check_type_and_mode_compatibility(ClusterBlockId old_clb, + ClusterBlockId new_clb, int verbosity) { auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -760,3 +754,13 @@ static void update_cluster_pb_stats(const t_pack_molecule* molecule, } } } + +std::unordered_set& cluster_to_mutable_atoms(ClusterBlockId cluster) { + auto& helper_ctx = g_vpr_ctx.mutable_cl_helper(); + + //If the lookup is not built yet, build it first + if (helper_ctx.atoms_lookup.empty()) + init_clb_atoms_lookup(helper_ctx.atoms_lookup); + + return helper_ctx.atoms_lookup[cluster]; +} \ No newline at end of file diff --git a/vpr/src/pack/re_cluster_util.h b/vpr/src/pack/re_cluster_util.h index a2a73e5a970..bc940dca881 100644 --- a/vpr/src/pack/re_cluster_util.h +++ b/vpr/src/pack/re_cluster_util.h @@ -16,28 +16,36 @@ * It can also be used during placement to allow fine-grained moves that can move a BLE or a single FF/LUT. * * Note: Some of the helper functions defined here might be useful in different places in VPR. - * */ /** * @brief A function that returns the block ID in the clustered netlist * from its ID in the atom netlist. */ -ClusterBlockId atom_to_cluster(const AtomBlockId& atom); +ClusterBlockId atom_to_cluster(AtomBlockId atom); + +/** + * @brief A function that return a list of atoms in a cluster + * @note This function can be called only after cluster/packing is done or + * the clustered netlist is created. + * @return Atoms in the given cluster. The returned set is immutable. + */ +const std::unordered_set& cluster_to_atoms(ClusterBlockId cluster); /** * @brief A function that return a list of atoms in a cluster - * @note This finction can be called only after cluster/packing is done or - * the clustered netlist is created + * @note This function can be called only after cluster/packing is done or + * the clustered netlist is created. + * @return Atoms in the given cluster. The returned set is mutable. */ +std::unordered_set& cluster_to_mutable_atoms(ClusterBlockId cluster); -std::unordered_set* cluster_to_atoms(const ClusterBlockId& cluster); /** * @brief A function that loads the intra-cluster router data of one cluster */ t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr_graphs, - const ClusterBlockId& clb_index, - const std::unordered_set* clb_atoms); + ClusterBlockId clb_index, + const std::unordered_set& clb_atoms); /** * @brief A function that removes a molecule from a cluster and checks legality of @@ -48,7 +56,7 @@ t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr * illegal. * * This function updates the intra-logic block router data structure (router_data) and - * remove all the atoms of the moecule from old_clb_atoms vector. + * remove all the atoms of the molecule from old_clb_atoms vector. * * @param old_clb: The original cluster of this molecule * @param old_clb_atoms: A vector containing the list of atoms in the old cluster of the molecule. @@ -58,7 +66,7 @@ t_lb_router_data* lb_load_router_data(std::vector* lb_type_rr void remove_mol_from_cluster(const t_pack_molecule* molecule, int molecule_size, ClusterBlockId& old_clb, - std::unordered_set* old_clb_atoms, + std::unordered_set& old_clb_atoms, bool router_data_ready, t_lb_router_data*& router_data); @@ -90,9 +98,9 @@ void remove_mol_from_cluster(const t_pack_molecule* molecule, * If the force_site argument is set to its default value (-1), vpr selects an available site. */ bool start_new_cluster_for_mol(t_pack_molecule* molecule, - const t_logical_block_type_ptr& type, - const int& mode, - const int& feasible_block_array_size, + t_logical_block_type_ptr type, + int mode, + int feasible_block_array_size, bool enable_pin_feasibility_filter, ClusterBlockId clb_index, bool during_packing, @@ -130,8 +138,8 @@ bool start_new_cluster_for_mol(t_pack_molecule* molecule, */ bool pack_mol_in_existing_cluster(t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& new_clb, - std::unordered_set* new_clb_atoms, + ClusterBlockId new_clb, + std::unordered_set& new_clb_atoms, bool during_packing, t_clustering_data& clustering_data, t_lb_router_data*& router_data, @@ -149,8 +157,8 @@ bool pack_mol_in_existing_cluster(t_pack_molecule* molecule, */ void fix_clustered_netlist(t_pack_molecule* molecule, int molecule_size, - const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb); + ClusterBlockId old_clb, + ClusterBlockId new_clb); /** * @brief A function that commits the molecule move if it is legal @@ -158,8 +166,8 @@ void fix_clustered_netlist(t_pack_molecule* molecule, * @params during_packing: true if this function is called during packing, false if it is called during placement * @params new_clb_created: true if the move is creating a new cluster (e.g. move_mol_to_new_cluster) */ -void commit_mol_move(const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb, +void commit_mol_move(ClusterBlockId old_clb, + ClusterBlockId new_clb, bool during_packing, bool new_clb_created); @@ -170,14 +178,13 @@ void commit_mol_move(const ClusterBlockId& old_clb, * @params new_clb_created: true if the move is creating a new cluster (e.g. move_mol_to_new_cluster) * @params */ -void revert_mol_move(const ClusterBlockId& old_clb, +void revert_mol_move(ClusterBlockId old_clb, t_pack_molecule* molecule, t_lb_router_data*& old_router_data, bool during_packing, t_clustering_data& clustering_data); /** - * * @brief A function that checks the legality of a cluster by running the intra-cluster routing */ bool is_cluster_legal(t_lb_router_data*& router_data); @@ -189,19 +196,17 @@ bool is_cluster_legal(t_lb_router_data*& router_data); * @params new_clb_created: true if the move is creating a new cluster (e.g. move_mol_to_new_cluster) */ void commit_mol_removal(const t_pack_molecule* molecule, - const int& molecule_size, - const ClusterBlockId& old_clb, + int molecule_size, + ClusterBlockId old_clb, bool during_packing, t_lb_router_data*& router_data, t_clustering_data& clustering_data); /** - * * @brief A function that check that two clusters are of the same type and in the same mode of operation - * */ -bool check_type_and_mode_compitability(const ClusterBlockId& old_clb, - const ClusterBlockId& new_clb, +bool check_type_and_mode_compatibility(ClusterBlockId old_clb, + ClusterBlockId new_clb, int verbosity); #endif diff --git a/vpr/src/place/compressed_grid.h b/vpr/src/place/compressed_grid.h index ff942cba8b2..c9030a39376 100644 --- a/vpr/src/place/compressed_grid.h +++ b/vpr/src/place/compressed_grid.h @@ -55,6 +55,57 @@ struct t_compressed_block_grid { return {cx, cy, layer_num}; } + /** + * @brief Converts a grid location to its corresponding compressed location, rounding up where necessary. + * + * This function takes a physical tile location in the grid and converts it to the corresponding + * compressed location. The conversion approximates by rounding up to the nearest valid compressed location. + * + * @param grid_loc The physical tile location in the grid. + * @return The corresponding compressed location with the same layer number. + */ + inline t_physical_tile_loc grid_loc_to_compressed_loc_approx_round_up(t_physical_tile_loc grid_loc) const { + auto find_compressed_index = [](const std::vector& compressed, int value) -> int { + auto itr = std::upper_bound(compressed.begin(), compressed.end(), value); + if (itr == compressed.begin()) + return 0; + if (itr == compressed.end() || *(itr - 1) == value) + return (int)std::distance(compressed.begin(), itr - 1); + return (int)std::distance(compressed.begin(), itr); + }; + + int layer_num = grid_loc.layer_num; + int cx = find_compressed_index(compressed_to_grid_x[layer_num], grid_loc.x); + int cy = find_compressed_index(compressed_to_grid_y[layer_num], grid_loc.y); + + return {cx, cy, layer_num}; + } + + /** + * @brief Converts a grid location to its corresponding compressed location, rounding down where necessary. + * + * This function takes a physical tile location in the grid and converts it to the corresponding + * compressed location. The conversion approximates by rounding down to the nearest valid compressed location. + * + * @param grid_loc The physical tile location in the grid. + * @return The corresponding compressed location with the same layer number. + */ + inline t_physical_tile_loc grid_loc_to_compressed_loc_approx_round_down(t_physical_tile_loc grid_loc) const { + auto find_compressed_index = [](const std::vector& compressed, int value) -> int { + auto itr = std::lower_bound(compressed.begin(), compressed.end(), value); + if (itr == compressed.end()) { + return (int)std::distance(compressed.begin(), itr - 1); + } + return (int)std::distance(compressed.begin(), itr); + }; + + int layer_num = grid_loc.layer_num; + int cx = find_compressed_index(compressed_to_grid_x[layer_num], grid_loc.x); + int cy = find_compressed_index(compressed_to_grid_y[layer_num], grid_loc.y); + + return {cx, cy, layer_num}; + } + /** * @brief find the nearest location in the compressed grid. * diff --git a/vpr/src/place/grid_tile_lookup.cpp b/vpr/src/place/grid_tile_lookup.cpp index 92504b6cc55..acef24ade63 100644 --- a/vpr/src/place/grid_tile_lookup.cpp +++ b/vpr/src/place/grid_tile_lookup.cpp @@ -1,5 +1,19 @@ #include "grid_tile_lookup.h" +GridTileLookup::GridTileLookup() { + const auto& device_ctx = g_vpr_ctx.device(); + const int num_layers = device_ctx.grid.get_num_layers(); + + //Will store the max number of tile locations for each logical block type + max_placement_locations.resize(device_ctx.logical_block_types.size()); + + for (const auto& type : device_ctx.logical_block_types) { + vtr::NdMatrix type_count({static_cast(num_layers), device_ctx.grid.width(), device_ctx.grid.height()}); + fill_type_matrix(&type, type_count); + block_type_matrices.push_back(type_count); + } +} + void GridTileLookup::fill_type_matrix(t_logical_block_type_ptr block_type, vtr::NdMatrix& type_count) { auto& device_ctx = g_vpr_ctx.device(); @@ -54,18 +68,11 @@ void GridTileLookup::fill_type_matrix(t_logical_block_type_ptr block_type, vtr:: max_placement_locations[block_type->index] = type_count[0][0][0]; } -int GridTileLookup::total_type_tiles(t_logical_block_type_ptr block_type) { +int GridTileLookup::total_type_tiles(t_logical_block_type_ptr block_type) const { return max_placement_locations[block_type->index]; } -/* - * This routine uses pre-computed values from the grids for each block type to get the number of grid tiles - * covered by a region. - * For a region with no subtiles specified, the number of grid tiles can be calculated by adding - * and subtracting four values from within/at the edge of the region. - * The region with subtile case is taken care of by a helper routine, region_with_subtile_count(). - */ -int GridTileLookup::region_tile_count(const Region& reg, t_logical_block_type_ptr block_type) { +int GridTileLookup::region_tile_count(const Region& reg, t_logical_block_type_ptr block_type) const { auto& device_ctx = g_vpr_ctx.device(); int subtile = reg.get_sub_tile(); int layer_num = reg.get_layer_num(); @@ -116,11 +123,7 @@ int GridTileLookup::region_tile_count(const Region& reg, t_logical_block_type_pt return num_tiles; } -/* - * This routine is for the subtile specified case; an O(region_size) scan needs to be done to check whether each grid - * location in the region is compatible for the block at the subtile specified. - */ -int GridTileLookup::region_with_subtile_count(const Region& reg, t_logical_block_type_ptr block_type) { +int GridTileLookup::region_with_subtile_count(const Region& reg, t_logical_block_type_ptr block_type) const{ auto& device_ctx = g_vpr_ctx.device(); int num_sub_tiles = 0; @@ -134,8 +137,8 @@ int GridTileLookup::region_with_subtile_count(const Region& reg, t_logical_block for (int i = xmax; i >= xmin; i--) { for (int j = ymax; j >= ymin; j--) { - const auto& tile = device_ctx.grid.get_physical_type({i, j, reg_coord.layer_num}); - if (is_sub_tile_compatible(tile, block_type, subtile)) { + const t_physical_tile_type_ptr tile_type = device_ctx.grid.get_physical_type({i, j, reg_coord.layer_num}); + if (is_sub_tile_compatible(tile_type, block_type, subtile)) { num_sub_tiles++; } } diff --git a/vpr/src/place/grid_tile_lookup.h b/vpr/src/place/grid_tile_lookup.h index 3f79e847856..63b99fb55a6 100644 --- a/vpr/src/place/grid_tile_lookup.h +++ b/vpr/src/place/grid_tile_lookup.h @@ -1,57 +1,89 @@ -/* - * This class is used to store a grid for each logical block type that stores the cumulative number of subtiles - * for that type available at each location in the grid. The cumulative number of subtiles is the subtiles at the - * location plus the subtiles available at the grid locations above and to the right of the locations. - * Having these grids allows for O(1) lookups about the number of subtiles available for a given type of block - * in a rectangular region. - * This lookup class is used during initial placement when sorting blocks by the size of their floorplan constraint - * regions. - */ #ifndef VPR_SRC_PLACE_GRID_TILE_LOOKUP_H_ #define VPR_SRC_PLACE_GRID_TILE_LOOKUP_H_ #include "place_util.h" #include "globals.h" +/** +* @class GridTileLookup +* @brief This class is used to store a grid for each logical block type that stores the cumulative number of subtiles +* for that type available at each location in the grid. +* +* The cumulative number of subtiles is the subtiles at the location plus the subtiles available at the grid locations +* above and to the right of the locations. Having these grids allows for O(1) lookups about the number of subtiles +* available for a given type of block in a rectangular region. +* This lookup class is used during initial placement when sorting blocks by the size of their floorplan constraint regions. +*/ class GridTileLookup { - public: - GridTileLookup() { - auto& device_ctx = g_vpr_ctx.device(); - - //Will store the max number of tile locations for each logical block type - max_placement_locations.resize(device_ctx.logical_block_types.size()); - - for (const auto& type : device_ctx.logical_block_types) { - int num_layers = device_ctx.grid.get_num_layers(); - vtr::NdMatrix type_count({static_cast(num_layers), device_ctx.grid.width(), device_ctx.grid.height()}); - fill_type_matrix(&type, type_count); - block_type_matrices.push_back(type_count); - } - } - - void fill_type_matrix(t_logical_block_type_ptr block_type, vtr::NdMatrix& type_count); - - int region_tile_count(const Region& reg, t_logical_block_type_ptr block_type); - - int region_with_subtile_count(const Region& reg, t_logical_block_type_ptr block_type); - - int total_type_tiles(t_logical_block_type_ptr block_type); - - private: - /* - * Stores the cumulative total of subtiles available at each location in the grid for each block type. - * Therefore, the length of the vector will be the number of logical block types. To access the cumulative - * number of subtiles at a location, you would use block_type_matrices[iblock_type][x][y] - this would - * give the number of placement locations that are at, or above and to the right of the given [x,y] for - * the given block type. - */ - std::vector> block_type_matrices; - - /* - * Stores the total number of placement locations (i.e. compatible subtiles) for each block type. - * To access the max_placement locations for a particular block type, use max_placement_locations[block_type->index] - */ - std::vector max_placement_locations; + public: + /** + * @brief Constructs a new GridTileLookup object. + * + * Creates a grid for each logical type and fills it with the cumulative number + * of subtiles of that type. + */ + GridTileLookup(); + + /** + * @brief Returns the number of subtiles available in the specified region for the given block type. + * + * This routine uses pre-computed values from the grids for each block type to get the number of grid tiles + * covered by a region. + * For a region with no subtiles specified, the number of grid tiles can be calculated by adding + * and subtracting four values from within/at the edge of the region. + * The region with subtile case is taken care of by a helper routine, region_with_subtile_count(). + * + * @param reg The region to be queried. + * @param block_type The type of logical block. + * @return int The number of available subtiles. + */ + int region_tile_count(const Region& reg, t_logical_block_type_ptr block_type) const; + + /** + * @brief Returns the number of subtiles that can be placed in the specified region for the given block type. + * + * This routine is for the subtile specified case; an O(region_size) scan needs to be done to check whether each grid + * location in the region is compatible for the block at the subtile specified. + * + * @param reg The region to be queried. + * @param block_type The type of logical block. + * @return int The number of subtiles with placement. + */ + int region_with_subtile_count(const Region& reg, t_logical_block_type_ptr block_type) const; + + /** + * @brief Returns the total number of tiles available for the specified block type. + * + * @param block_type The type of logical block. + * @return int The total number of available tiles. + */ + int total_type_tiles(t_logical_block_type_ptr block_type) const; + + private: + /** + * @brief Fills the type matrix with cumulative subtiles count for the given block type. + * + * @param block_type The type of logical block. + * @param type_count The matrix to be filled with cumulative subtiles count. + */ + void fill_type_matrix(t_logical_block_type_ptr block_type, vtr::NdMatrix& type_count); + + /** + * @brief Stores the cumulative total of subtiles available at each location in the grid for each block type. + * + * Therefore, the length of the vector will be the number of logical block types. To access the cumulative + * number of subtiles at a location, you would use block_type_matrices[iblock_type][x][y] - this would + * give the number of placement locations that are at, or above and to the right of the given [x,y] for + * the given block type. + */ + std::vector> block_type_matrices; + + /** + * @brief Stores the total number of placement locations (i.e. compatible subtiles) for each block type. + * + * To access the max_placement locations for a particular block type, use max_placement_locations[block_type->index] + */ + std::vector max_placement_locations; }; -#endif /* VPR_SRC_PLACE_GRID_TILE_LOOKUP_H_ */ +#endif /* VPR_SRC_PLACE_GRID_TILE_LOOKUP_H_ */ \ No newline at end of file diff --git a/vpr/src/place/initial_placement.cpp b/vpr/src/place/initial_placement.cpp index 109dd16013c..3781d89febc 100644 --- a/vpr/src/place/initial_placement.cpp +++ b/vpr/src/place/initial_placement.cpp @@ -52,7 +52,7 @@ static void clear_all_grid_locs(); * 1) try_centroid_placement : tries to find a location based on the macro's logical connections. * 2) try_place_macro_randomly : if no smart location found in the centroid placement, the function tries * to place it randomly for the max number of tries. - * 3) try_place_macro_exhaustively : if neither placement alogrithms work, the function will find a location + * 3) try_place_macro_exhaustively : if neither placement algorithms work, the function will find a location * for the macro by exhaustively searching all available locations. * If first iteration failed, next iteration calls dense placement for specific block types. * @@ -89,13 +89,13 @@ static vtr::vector assign_block_scores(); static int get_y_loc_based_on_macro_direction(t_grid_empty_locs_block_type first_macro_loc, const t_pl_macro& pl_macro); /** - * @brief Tries to get the first available location of a specific block type that can accomodate macro blocks + * @brief Tries to get the first available location of a specific block type that can accommodate macro blocks * * @param loc The first available location that can place the macro blocks. * @param pl_macro The macro to be placed. * @param blk_types_empty_locs_in_grid first location (lowest y) and number of remaining blocks in each column for the blk_id type * - * @return index to a column of blk_types_empty_locs_in_grid that can accomodate pl_macro and location of first available location returned by reference + * @return index to a column of blk_types_empty_locs_in_grid that can accommodate pl_macro and location of first available location returned by reference */ static int get_blk_type_first_loc(t_pl_loc& loc, const t_pl_macro& pl_macro, std::vector* blk_types_empty_locs_in_grid); @@ -141,7 +141,9 @@ static inline void fix_IO_block_types(const t_pl_macro& pl_macro, t_pl_loc loc, * * @return True if the location is legal for the macro head member, false otherwise. */ -static bool is_loc_legal(t_pl_loc& loc, PartitionRegion& pr, t_logical_block_type_ptr block_type); +static bool is_loc_legal(const t_pl_loc& loc, + const PartitionRegion& pr, + t_logical_block_type_ptr block_type); /** * @brief Calculates a centroid location for a block based on its placed connections. @@ -177,7 +179,7 @@ static bool find_centroid_neighbor(t_pl_loc& centroid_loc, t_logical_block_type_ * @return true if the macro gets placed, false if not. */ static bool try_centroid_placement(const t_pl_macro& pl_macro, - PartitionRegion& pr, + const PartitionRegion& pr, t_logical_block_type_ptr block_type, enum e_pad_loc_type pad_loc_type, vtr::vector& block_scores); @@ -196,7 +198,7 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, * @return true if the macro gets placed, false if not. */ static bool try_dense_placement(const t_pl_macro& pl_macro, - PartitionRegion& pr, + const PartitionRegion& pr, t_logical_block_type_ptr block_type, enum e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid); @@ -219,9 +221,15 @@ static void place_all_blocks(const t_placer_opts& placer_opts, */ static void check_initial_placement_legality(); +/** + * @brief Fills movable_blocks in global PlacementContext + */ +static void alloc_and_load_movable_blocks(); + static void check_initial_placement_legality() { auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.placement(); + auto& device_ctx = g_vpr_ctx.device(); int unplaced_blocks = 0; @@ -242,6 +250,28 @@ static void check_initial_placement_legality() { "If VPR was run with floorplan constraints, the constraints may be too tight.\n", unplaced_blocks); } + + for (auto movable_blk_id : place_ctx.movable_blocks) { + if (place_ctx.block_locs[movable_blk_id].is_fixed) { + VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Fixed block was mistakenly marked as movable during initial placement.\n"); + } + } + + for (const auto& logical_block_type : device_ctx.logical_block_types) { + const auto& movable_blocks_of_type = place_ctx.movable_blocks_per_type[logical_block_type.index]; + for (const auto& movable_blk_id : movable_blocks_of_type) { + if (place_ctx.block_locs[movable_blk_id].is_fixed) { + VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Fixed block %d of logical type %s was mistakenly marked as movable during initial placement.\n", + (size_t)movable_blk_id, logical_block_type.name); + } + if (cluster_ctx.clb_nlist.block_type(movable_blk_id)->index != logical_block_type.index) { + VPR_FATAL_ERROR(VPR_ERROR_PLACE, "Clustered block %d of logical type %s was mistakenly marked as logical type %s.\n", + (size_t)movable_blk_id, + cluster_ctx.clb_nlist.block_type(movable_blk_id)->name, + logical_block_type.name); + } + } + } } bool is_block_placed(ClusterBlockId blk_id) { @@ -250,7 +280,9 @@ bool is_block_placed(ClusterBlockId blk_id) { return (place_ctx.block_locs[blk_id].loc.x != INVALID_X); } -static bool is_loc_legal(t_pl_loc& loc, PartitionRegion& pr, t_logical_block_type_ptr block_type) { +static bool is_loc_legal(const t_pl_loc& loc, + const PartitionRegion& pr, + t_logical_block_type_ptr block_type) { const auto& grid = g_vpr_ctx.device().grid; bool legal = false; @@ -421,7 +453,11 @@ static std::vector find_centroid_loc(const t_pl_macro& pl_macro, return connected_blocks_to_update; } -static bool try_centroid_placement(const t_pl_macro& pl_macro, PartitionRegion& pr, t_logical_block_type_ptr block_type, enum e_pad_loc_type pad_loc_type, vtr::vector& block_scores) { +static bool try_centroid_placement(const t_pl_macro& pl_macro, + const PartitionRegion& pr, + t_logical_block_type_ptr block_type, + enum e_pad_loc_type pad_loc_type, + vtr::vector& block_scores) { t_pl_loc centroid_loc(OPEN, OPEN, OPEN, OPEN); std::vector unplaced_blocks_to_update_their_score; @@ -450,7 +486,7 @@ static bool try_centroid_placement(const t_pl_macro& pl_macro, PartitionRegion& auto& device_ctx = g_vpr_ctx.device(); //choose the location's subtile if the centroid location is legal. //if the location is found within the "find_centroid_neighbor", it already has a subtile - //we don't need to find one agian + //we don't need to find one again if (!neighbor_legal_loc) { const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[block_type->index]; const auto& type = device_ctx.grid.get_physical_type({centroid_loc.x, centroid_loc.y, centroid_loc.layer}); @@ -512,7 +548,7 @@ static void update_blk_type_first_loc(int blk_type_column_index, static int get_blk_type_first_loc(t_pl_loc& loc, const t_pl_macro& pl_macro, std::vector* blk_types_empty_locs_in_grid) { - //loop over all empty locations and choose first column that can accomodate macro blocks + //loop over all empty locations and choose first column that can accommodate macro blocks for (unsigned int empty_loc_index = 0; empty_loc_index < blk_types_empty_locs_in_grid->size(); empty_loc_index++) { auto first_empty_loc = blk_types_empty_locs_in_grid->at(empty_loc_index); @@ -740,7 +776,7 @@ bool try_place_macro_exhaustively(const t_pl_macro& pl_macro, const PartitionReg } static bool try_dense_placement(const t_pl_macro& pl_macro, - PartitionRegion& pr, + const PartitionRegion& pr, t_logical_block_type_ptr block_type, enum e_pad_loc_type pad_loc_type, std::vector* blk_types_empty_locs_in_grid) { @@ -908,7 +944,7 @@ static vtr::vector assign_block_scores() { for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { block_scores[blk_id].number_of_placed_connections = 0; if (is_cluster_constrained(blk_id)) { - PartitionRegion pr = floorplan_ctx.cluster_constraints[blk_id]; + const PartitionRegion& pr = floorplan_ctx.cluster_constraints[blk_id]; auto block_type = cluster_ctx.clb_nlist.block_type(blk_id); double floorplan_score = get_floorplan_score(blk_id, pr, block_type, grid_tiles); block_scores[blk_id].tiles_outside_of_floorplan_constraints = floorplan_score; @@ -940,7 +976,7 @@ static void place_all_blocks([[maybe_unused]] const t_placer_opts& placer_opts, //keep tracks of which block types can not be placed in each iteration std::unordered_set unplaced_blk_type_in_curr_itr; - auto criteria = [&block_scores, &cluster_ctx](const ClusterBlockId& lhs, const ClusterBlockId& rhs) { + auto criteria = [&block_scores, &cluster_ctx](ClusterBlockId lhs, ClusterBlockId rhs) { int lhs_score = block_scores[lhs].macro_size + block_scores[lhs].number_of_placed_connections + SORT_WEIGHT_PER_TILES_OUTSIDE_OF_PR * block_scores[lhs].tiles_outside_of_floorplan_constraints + SORT_WEIGHT_PER_FAILED_BLOCK * block_scores[lhs].failed_to_place_in_prev_attempts; int rhs_score = block_scores[rhs].macro_size + block_scores[rhs].number_of_placed_connections + SORT_WEIGHT_PER_TILES_OUTSIDE_OF_PR * block_scores[rhs].tiles_outside_of_floorplan_constraints + SORT_WEIGHT_PER_FAILED_BLOCK * block_scores[rhs].failed_to_place_in_prev_attempts; @@ -1124,6 +1160,30 @@ bool place_one_block(const ClusterBlockId& blk_id, return placed_macro; } +static void alloc_and_load_movable_blocks() { + auto& place_ctx = g_vpr_ctx.mutable_placement(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); + + place_ctx.movable_blocks.clear(); + place_ctx.movable_blocks_per_type.clear(); + + size_t n_logical_blocks = device_ctx.logical_block_types.size(); + place_ctx.movable_blocks_per_type.resize(n_logical_blocks); + + + // iterate over all clustered blocks and store block ids of movable ones + for (auto blk_id : cluster_ctx.clb_nlist.blocks()) { + const auto& loc = place_ctx.block_locs[blk_id]; + if (!loc.is_fixed) { + place_ctx.movable_blocks.push_back(blk_id); + + const t_logical_block_type_ptr block_type = cluster_ctx.clb_nlist.block_type(blk_id); + place_ctx.movable_blocks_per_type[block_type->index].push_back(blk_id); + } + } +} + void initial_placement(const t_placer_opts& placer_opts, const char* constraints_file, const t_noc_opts& noc_opts) { @@ -1140,9 +1200,12 @@ void initial_placement(const t_placer_opts& placer_opts, propagate_place_constraints(); /*Mark the blocks that have already been locked to one spot via floorplan constraints - * as fixed so they do not get moved during initial placement or later during the simulated annealing stage of placement*/ + * as fixed, so they do not get moved during initial placement or later during the simulated annealing stage of placement*/ mark_fixed_blocks(); + // Compute and store compressed floorplanning constraints + alloc_and_load_compressed_cluster_constraints(); + // read the constraint file and place fixed blocks if (strlen(constraints_file) != 0) { @@ -1161,6 +1224,8 @@ void initial_placement(const t_placer_opts& placer_opts, //Place all blocks place_all_blocks(placer_opts, block_scores, placer_opts.pad_loc_type, constraints_file); + alloc_and_load_movable_blocks(); + // ensure all blocks are placed and that NoC routing has no cycles check_initial_placement_legality(); diff --git a/vpr/src/place/move_utils.cpp b/vpr/src/place/move_utils.cpp index 3ec00c26970..727de2e6100 100644 --- a/vpr/src/place/move_utils.cpp +++ b/vpr/src/place/move_utils.cpp @@ -226,7 +226,7 @@ e_block_move_result record_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, //to a new position offset from its current position by swap_offset. The new location must be where //blk_to is located and blk_to must be part of imacro_to. e_block_move_result record_macro_macro_swaps(t_pl_blocks_to_be_moved& blocks_affected, const int imacro_from, int& imember_from, const int imacro_to, ClusterBlockId blk_to, t_pl_offset swap_offset) { - //Adds the macro imacro_to to the set of affected block caused by swapping 'blk_to' to it's + //Adds the macro imacro_to to the set of affected block caused by swapping 'blk_to' to its //new position. // //This function is only called when both the main swap's from/to blocks are placement macros. @@ -489,7 +489,7 @@ std::set determine_locations_emptied_by_move(t_pl_blocks_to_be_moved& std::set moved_to; for (int iblk = 0; iblk < blocks_affected.num_moved_blocks; ++iblk) { - //When a block is moved it's old location becomes free + //When a block is moved its old location becomes free moved_from.emplace(blocks_affected.moved_blocks[iblk].old_loc); //But any block later moved to a position fills it @@ -595,81 +595,47 @@ ClusterBlockId propose_block_to_move(const t_placer_opts& /* placer_opts */, return b_from; } -//Pick a random block to be swapped with another random block. +const std::vector& movable_blocks_per_type(const t_logical_block_type& blk_type) { + const auto& place_ctx = g_vpr_ctx.placement(); + + // the vector is returned as const reference to avoid unnecessary copies, + // especially that returned vectors may be very large as they contain + // all clustered blocks with a specific block type + return place_ctx.movable_blocks_per_type[blk_type.index]; +} + +//Pick a random movable block to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() ClusterBlockId pick_from_block() { - /* Some blocks may be fixed, and should never be moved from their * - * initial positions. If we randomly selected such a block try * - * another random block. * - * * - * We need to track the blocks we have tried to avoid an infinite * - * loop if all blocks are fixed. */ - auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - std::unordered_set tried_from_blocks; + // get the number of movable clustered blocks + const size_t n_movable_blocks = place_ctx.movable_blocks.size(); - //Keep selecting random blocks as long as there are any untried blocks - //Can get slow if there are many blocks but only a few (or none) can move - while (tried_from_blocks.size() < cluster_ctx.clb_nlist.blocks().size()) { - //Pick a block at random - ClusterBlockId b_from = ClusterBlockId(vtr::irand((int)cluster_ctx.clb_nlist.blocks().size() - 1)); - - //Record it as tried - tried_from_blocks.insert(b_from); - - if (place_ctx.block_locs[b_from].is_fixed) { - continue; //Fixed location, try again - } - - //Found a movable block + if (n_movable_blocks > 0) { + //Pick a movable block at random and return it + auto b_from = ClusterBlockId(vtr::irand((int)n_movable_blocks - 1)); return b_from; + } else { + //No movable blocks found + return ClusterBlockId::INVALID(); } - - //No movable blocks found - return ClusterBlockId::INVALID(); } -//Pick a random block with a specific blk_type to be swapped with another random block. +//Pick a random movable block with a specific blk_type to be swapped with another random block. //If none is found return ClusterBlockId::INVALID() ClusterBlockId pick_from_block(const int logical_blk_type_index) { - /* Some blocks may be fixed, and should never be moved from their * - * initial positions. If we randomly selected such a block try * - * another random block. * - * * - * We need to track the blocks we have tried to avoid an infinite * - * loop if all blocks are fixed. */ - auto& cluster_ctx = g_vpr_ctx.clustering(); auto& place_ctx = g_vpr_ctx.mutable_placement(); - t_logical_block_type blk_type_temp; - blk_type_temp.index = logical_blk_type_index; - const auto& blocks_per_type = cluster_ctx.clb_nlist.blocks_per_type(blk_type_temp); - //no blocks with this type is available - if (blocks_per_type.empty()) { + const auto& movable_blocks_of_type = place_ctx.movable_blocks_per_type[logical_blk_type_index]; + + if (movable_blocks_of_type.empty()) { return ClusterBlockId::INVALID(); } - std::unordered_set tried_from_blocks; - - //Keep selecting random blocks as long as there are any untried blocks with type "blk_type" - //Can get slow if there are many blocks but only a few (or none) can move - while (tried_from_blocks.size() < blocks_per_type.size()) { - //Pick a block at random - ClusterBlockId b_from = ClusterBlockId(blocks_per_type[vtr::irand((int)blocks_per_type.size() - 1)]); - //Record it as tried - tried_from_blocks.insert(b_from); + auto b_from = ClusterBlockId(movable_blocks_of_type[vtr::irand((int)movable_blocks_of_type.size() - 1)]); - if (place_ctx.block_locs[b_from].is_fixed) { - continue; //Fixed location, try again - } - //Found a movable block - return b_from; - } - - //No movable blocks found - //Unreachable statement - return ClusterBlockId::INVALID(); + return b_from; } //Pick a random highly critical block to be swapped with another random block. @@ -779,8 +745,7 @@ bool find_to_loc_uniform(t_logical_block_type_ptr type, //TODO: constraints should be adapted to 3D architecture if (is_cluster_constrained(b_from)) { - bool intersect = intersect_range_limit_with_floorplan_constraints(type, - b_from, + bool intersect = intersect_range_limit_with_floorplan_constraints(b_from, search_range, delta_cx, to_layer_num); @@ -877,8 +842,7 @@ bool find_to_loc_median(t_logical_block_type_ptr blk_type, bool legal = false; if (is_cluster_constrained(b_from)) { - bool intersect = intersect_range_limit_with_floorplan_constraints(blk_type, - b_from, + bool intersect = intersect_range_limit_with_floorplan_constraints(b_from, search_range, delta_cx, to_layer_num); @@ -963,8 +927,7 @@ bool find_to_loc_centroid(t_logical_block_type_ptr blk_type, bool legal = false; if (is_cluster_constrained(b_from)) { - bool intersect = intersect_range_limit_with_floorplan_constraints(blk_type, - b_from, + bool intersect = intersect_range_limit_with_floorplan_constraints(b_from, search_range, delta_cx, to_layer_num); @@ -1084,9 +1047,9 @@ bool find_compatible_compressed_loc_in_range(t_logical_block_type_ptr type, else possibilities = delta_cx; - while (!legal && (int)tried_cx_to.size() < possibilities) { //Until legal or all possibilities exhaused + while (!legal && (int)tried_cx_to.size() < possibilities) { //Until legal or all possibilities exhausted //Pick a random x-location within [min_cx, max_cx], - //until we find a legal swap, or have exhuasted all possiblites + //until we find a legal swap, or have exhausted all possibilities to_loc.x = search_range.xmin + vtr::irand(delta_cx); VTR_ASSERT(to_loc.x >= search_range.xmin); @@ -1260,34 +1223,15 @@ t_bb get_compressed_grid_bounded_search_range(const t_compressed_block_grid& com return search_range; } -bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr type, - ClusterBlockId b_from, +bool intersect_range_limit_with_floorplan_constraints(ClusterBlockId b_from, t_bb& search_range, int& delta_cx, int layer_num) { - //Retrieve the compressed block grid for this block type - const auto& compressed_block_grid = g_vpr_ctx.placement().compressed_block_grids[type->index]; - - auto min_grid_loc = compressed_block_grid.compressed_loc_to_grid_loc({search_range.xmin, - search_range.ymin, - layer_num}); - - auto max_grid_loc = compressed_block_grid.compressed_loc_to_grid_loc({search_range.xmax, - search_range.ymax, - layer_num}); - - Region range_reg; - range_reg.set_region_rect({min_grid_loc.x, - min_grid_loc.y, - max_grid_loc.x, - max_grid_loc.y, - layer_num}); - const auto& floorplanning_ctx = g_vpr_ctx.floorplanning(); - const PartitionRegion& pr = floorplanning_ctx.cluster_constraints[b_from]; - const std::vector& regions = pr.get_regions(); - Region intersect_reg; + // get the block floorplanning constraints specified in the compressed grid + const PartitionRegion& compressed_pr = floorplanning_ctx.compressed_cluster_constraints[b_from]; + const std::vector& compressed_regions = compressed_pr.get_regions(); /* * If region size is greater than 1, the block is constrained to more than one rectangular region. * In this case, we return true (i.e. the range limit intersects with @@ -1295,23 +1239,28 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t * this routine is done for cpu time optimization, so we do not have to necessarily check each * complicated case to get correct functionality during place moves. */ - if (regions.size() == 1) { - intersect_reg = intersection(regions[0], range_reg); + if (compressed_regions.size() == 1) { + Region range_reg; + range_reg.set_region_rect({search_range.xmin, search_range.ymin, + search_range.xmax, search_range.ymax, + layer_num}); - if (intersect_reg.empty()) { - VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\tCouldn't find an intersection between floorplan constraints and search region\n"); + Region compressed_intersect_reg = intersection(compressed_regions[0], range_reg); + + if (compressed_intersect_reg.empty()) { + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, + "\tCouldn't find an intersection between floorplan constraints and search region\n"); return false; } else { - const auto intersect_coord = intersect_reg.get_region_rect(); + const auto intersect_coord = compressed_intersect_reg.get_region_rect(); VTR_ASSERT(intersect_coord.layer_num == layer_num); - auto min_compressed_loc = compressed_block_grid.grid_loc_to_compressed_loc_approx({intersect_coord.xmin, - intersect_coord.ymin, - layer_num}); - - auto max_compressed_loc = compressed_block_grid.grid_loc_to_compressed_loc_approx({intersect_coord.xmax, - intersect_coord.ymax, - layer_num}); - delta_cx = max_compressed_loc.x - min_compressed_loc.x; + + delta_cx = intersect_coord.xmax - intersect_coord.xmin; + search_range.xmin = intersect_coord.xmin; + search_range.ymin = intersect_coord.ymin; + search_range.xmax = intersect_coord.xmax; + search_range.ymax = intersect_coord.ymax; + search_range.layer_max = search_range.layer_min = layer_num; } } diff --git a/vpr/src/place/move_utils.h b/vpr/src/place/move_utils.h index 24bdfcb7ebc..80b274b40a3 100644 --- a/vpr/src/place/move_utils.h +++ b/vpr/src/place/move_utils.h @@ -7,7 +7,7 @@ /* Cut off for incremental bounding box updates. * * 4 is fastest -- I checked. */ /* To turn off incremental bounding box updates, set this to a huge value */ -#define SMALL_NET 4 +constexpr size_t SMALL_NET = 4; /* This is for the placement swap routines. A swap attempt could be * * rejected, accepted or aborted (due to the limitations placed on the * @@ -129,6 +129,13 @@ ClusterBlockId propose_block_to_move(const t_placer_opts& placer_opts, ClusterNetId* net_from, int* pin_from); +/** + * Returns all movable clustered blocks with a specified logical block type. + * @param blk_type Specifies the logical block block type. + * @return A const reference to a vector containing all movable blocks with the specified logical block type. + */ +const std::vector& movable_blocks_per_type(const t_logical_block_type& blk_type); + /** * @brief Select a random block to be swapped with another block * @@ -336,8 +343,7 @@ t_bb get_compressed_grid_bounded_search_range(const t_compressed_block_grid& com * The intersection takes place in the layer (die) specified by layer_num. * */ -bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr type, - ClusterBlockId b_from, +bool intersect_range_limit_with_floorplan_constraints(ClusterBlockId b_from, t_bb& search_range, int& delta_cx, int layer_num); @@ -345,7 +351,7 @@ bool intersect_range_limit_with_floorplan_constraints(t_logical_block_type_ptr t std::string e_move_result_to_string(e_move_result move_outcome); /** - * @brif Iterate over all layers that have a physical tile at the x-y location specified by "loc" that can accomodate "logical_block". + * @brif Iterate over all layers that have a physical tile at the x-y location specified by "loc" that can accommodate "logical_block". * If the location in the layer specified by "layer_num" is empty, return that layer. Otherwise, * return a layer that is not occupied at that location. If there isn't any, again, return the layer of loc. * diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 357b8532016..a38d5f442d9 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -647,9 +647,6 @@ void try_place(const Netlist<>& net_list, move_lim = (int)(annealing_sched.inner_num * pow(net_list.blocks().size(), 1.3333)); - //create the move generator based on the chosen strategy - create_move_generators(move_generator, move_generator2, placer_opts, move_lim, noc_opts.noc_centroid_weight); - alloc_and_load_placement_structs(placer_opts.place_cost_exp, placer_opts, noc_opts, directs, num_directs); vtr::ScopedStartFinishTimer timer("Placement"); @@ -662,6 +659,9 @@ void try_place(const Netlist<>& net_list, placer_opts.constraints_file.c_str(), noc_opts); + //create the move generator based on the chosen strategy + create_move_generators(move_generator, move_generator2, placer_opts, move_lim, noc_opts.noc_centroid_weight); + if (!placer_opts.write_initial_place_file.empty()) { print_place(nullptr, nullptr, @@ -4411,14 +4411,13 @@ static void print_placement_move_types_stats(const MoveTypeStat& move_type_stat) auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); int count = 0; int num_of_avail_moves = move_type_stat.blk_type_moves.size() / device_ctx.logical_block_types.size(); //Print placement information for each block type for (const auto& itype : device_ctx.logical_block_types) { //Skip non-existing block types in the netlist - if (itype.index == 0 || cluster_ctx.clb_nlist.blocks_per_type(itype).empty()) { + if (itype.index == 0 || movable_blocks_per_type(itype).empty()) { continue; } diff --git a/vpr/src/place/place_constraints.cpp b/vpr/src/place/place_constraints.cpp index 72f7925ff28..3d85bf9d284 100644 --- a/vpr/src/place/place_constraints.cpp +++ b/vpr/src/place/place_constraints.cpp @@ -13,7 +13,6 @@ #include "place_util.h" #include "re_cluster_util.h" -/*checks that each block's location is compatible with its floorplanning constraints if it has any*/ int check_placement_floorplanning() { int error = 0; auto& cluster_ctx = g_vpr_ctx.clustering(); @@ -30,7 +29,6 @@ int check_placement_floorplanning() { return error; } -/*returns true if cluster has floorplanning constraints, false if it doesn't*/ bool is_cluster_constrained(ClusterBlockId blk_id) { auto& floorplanning_ctx = g_vpr_ctx.floorplanning(); const PartitionRegion& pr = floorplanning_ctx.cluster_constraints[blk_id]; @@ -114,7 +112,10 @@ PartitionRegion update_macro_head_pr(const t_pl_macro& pl_macro, const Partition return macro_head_pr; } -PartitionRegion update_macro_member_pr(PartitionRegion& head_pr, const t_pl_offset& offset, const PartitionRegion& grid_pr, const t_pl_macro& pl_macro) { +PartitionRegion update_macro_member_pr(const PartitionRegion& head_pr, + const t_pl_offset& offset, + const PartitionRegion& grid_pr, + const t_pl_macro& pl_macro) { const std::vector& block_regions = head_pr.get_regions(); PartitionRegion macro_pr; @@ -245,13 +246,13 @@ void load_cluster_constraints() { floorplanning_ctx.cluster_constraints.resize(cluster_ctx.clb_nlist.blocks().size()); for (auto cluster_id : cluster_ctx.clb_nlist.blocks()) { - std::unordered_set* atoms = cluster_to_atoms(cluster_id); + const std::unordered_set& atoms = cluster_to_atoms(cluster_id); PartitionRegion empty_pr; floorplanning_ctx.cluster_constraints[cluster_id] = empty_pr; //if there are any constrained atoms in the cluster, //we update the cluster's PartitionRegion - for (auto atom : *atoms) { + for (AtomBlockId atom : atoms) { PartitionId partid = floorplanning_ctx.constraints.get_atom_partition(atom); if (partid != PartitionId::INVALID()) { @@ -297,6 +298,49 @@ void mark_fixed_blocks() { } } +void alloc_and_load_compressed_cluster_constraints() { + auto& floorplanning_ctx = g_vpr_ctx.mutable_floorplanning(); + const auto& cluster_ctx = g_vpr_ctx.clustering(); + // used to access the compressed grid + const auto& place_ctx = g_vpr_ctx.placement(); + + floorplanning_ctx.compressed_cluster_constraints.resize(cluster_ctx.clb_nlist.blocks().size()); + + for (ClusterBlockId blk_id : cluster_ctx.clb_nlist.blocks()) { + if (!is_cluster_constrained(blk_id)) { + continue; + } + + const PartitionRegion& pr = floorplanning_ctx.cluster_constraints[blk_id]; + auto block_type = cluster_ctx.clb_nlist.block_type(blk_id); + // Get the compressed grid for NoC + const auto& compressed_grid = place_ctx.compressed_block_grids[block_type->index]; + + PartitionRegion compressed_pr; + + for (const Region& region : pr.get_regions()) { + RegionRectCoord rect = region.get_region_rect(); + t_physical_tile_loc min_loc{rect.xmin, rect.ymin, rect.layer_num}; + t_physical_tile_loc max_loc{rect.xmax, rect.ymax, rect.layer_num}; + t_physical_tile_loc compressed_min_loc = compressed_grid.grid_loc_to_compressed_loc_approx_round_up(min_loc); + t_physical_tile_loc compressed_max_loc = compressed_grid.grid_loc_to_compressed_loc_approx_round_down(max_loc); + + RegionRectCoord compressed_rect{compressed_min_loc.x, compressed_min_loc.y, + compressed_max_loc.x, compressed_max_loc.y, + rect.layer_num}; + + Region compressed_region; + compressed_region.set_region_rect(compressed_rect); + compressed_region.set_sub_tile(region.get_sub_tile()); + + compressed_pr.add_to_part_region(compressed_region); + } + + floorplanning_ctx.compressed_cluster_constraints[blk_id] = compressed_pr; + } + +} + /* * Returns 0, 1, or 2 depending on the number of tiles covered. * Will not return a value above 2 because as soon as num_tiles is above 1, @@ -377,7 +421,7 @@ int region_tile_cover(const Region& reg, t_logical_block_type_ptr block_type, t_ * PartitionRegion covers more than one tile, there is no need to check further regions * and the routine will return false. */ -bool is_pr_size_one(PartitionRegion& pr, t_logical_block_type_ptr block_type, t_pl_loc& loc) { +bool is_pr_size_one(const PartitionRegion& pr, t_logical_block_type_ptr block_type, t_pl_loc& loc) { auto& device_ctx = g_vpr_ctx.device(); const std::vector& regions = pr.get_regions(); bool pr_size_one; @@ -437,7 +481,9 @@ bool is_pr_size_one(PartitionRegion& pr, t_logical_block_type_ptr block_type, t_ return pr_size_one; } -int get_part_reg_size(PartitionRegion& pr, t_logical_block_type_ptr block_type, GridTileLookup& grid_tiles) { +int get_part_reg_size(const PartitionRegion& pr, + t_logical_block_type_ptr block_type, + const GridTileLookup& grid_tiles) { const std::vector& regions = pr.get_regions(); int num_tiles = 0; @@ -448,7 +494,10 @@ int get_part_reg_size(PartitionRegion& pr, t_logical_block_type_ptr block_type, return num_tiles; } -double get_floorplan_score(ClusterBlockId blk_id, PartitionRegion& pr, t_logical_block_type_ptr block_type, GridTileLookup& grid_tiles) { +double get_floorplan_score(ClusterBlockId blk_id, + const PartitionRegion& pr, + t_logical_block_type_ptr block_type, + const GridTileLookup& grid_tiles) { auto& cluster_ctx = g_vpr_ctx.clustering(); int num_pr_tiles = get_part_reg_size(pr, block_type, grid_tiles); diff --git a/vpr/src/place/place_constraints.h b/vpr/src/place/place_constraints.h index 8863427aaef..4469235cc04 100644 --- a/vpr/src/place/place_constraints.h +++ b/vpr/src/place/place_constraints.h @@ -1,3 +1,6 @@ +#ifndef VPR_SRC_PLACE_PLACE_CONSTRAINTS_H_ +#define VPR_SRC_PLACE_PLACE_CONSTRAINTS_H_ + /* * place_constraints.h * @@ -12,54 +15,84 @@ #include "place_macro.h" #include "grid_tile_lookup.h" -#ifndef VPR_SRC_PLACE_PLACE_CONSTRAINTS_H_ -# define VPR_SRC_PLACE_PLACE_CONSTRAINTS_H_ - -/* - * Check that placement of each block is within the floorplan constraint region of that block (if the block has any constraints). - * Returns the number of errors (inconsistencies in adherence to floorplanning constraints). +/** + * @brief Check that placement of each block is within the floorplan constraint region + * of that block (if the block has any constraints). + * + * @return int The number of errors (inconsistencies in adherence to floorplanning constraints). */ int check_placement_floorplanning(); -/* - * Check if the block has floorplanning constraints + +/** + * @brief Check if the block has floorplanning constraints. + * + * @param blk_id The ID of the clustered block to be checked. + * @return bool True if the block has floorplanning constraints, false otherwise. */ bool is_cluster_constrained(ClusterBlockId blk_id); -/* - * Check if the placement location would respect floorplan constraints of the block, if it has any +/** + * @brief Check if the placement location would respect floorplan constraints of the block, if it has any. + * + * This function determines whether placing a block at a specified location adheres to its floorplan constraints. + * + * @param blk_id The ID of the clustered block to be checked. + * @param loc The location where the block is to be placed. + * @return bool True if the placement location respects the block's floorplan constraints, false otherwise. */ bool cluster_floorplanning_legal(ClusterBlockId blk_id, const t_pl_loc& loc); -/* - * Check whether any member of the macro has floorplan constraints + +/** + * @brief Check whether any member of the macro has floorplan constraints. + * + * @param pl_macro The macro to be checked. + * @return bool True if any member of the macro has floorplan constraints, false otherwise. */ bool is_macro_constrained(const t_pl_macro& pl_macro); -/* - * Returns PartitionRegion for the head of the macro based on the floorplan constraints - * of all blocks in the macro. For example, if there was a macro of length two and each block has - * a constraint, this routine will shift and intersect the two constraint regions to calculate - * the tightest region constraint for the head macro. +/** + * @brief Returns PartitionRegion for the head of the macro based on the floorplan constraints + * of all blocks in the macro. + * + * This function calculates the PartitionRegion for the head of a macro by considering the + * floorplan constraints of all blocks in the macro. For example, if a macro has two blocks + * and each block has a constraint, this routine will shift and intersect the two constraint + * regions to determine the tightest region constraint for the macro's head. + * + * @param pl_macro The macro whose head's PartitionRegion is to be calculated. + * @param grid_pr The PartitionRegion of the grid to be considered. + * @return PartitionRegion The calculated PartitionRegion for the head of the macro. */ PartitionRegion update_macro_head_pr(const t_pl_macro& pl_macro, const PartitionRegion& grid_pr); -/* - * Update the PartitionRegions of non-head members of a macro, +/** + * @brief Update the PartitionRegions of non-head members of a macro, * based on the constraint that was calculated for the head region, head_pr. - * The constraint on the head region must be the tightest possible (i.e. implied by the - * entire macro) before this routine is called. - * For each macro member, the updated constraint is essentially the head constraint - * with the member's offset applied. + * + * The constraint on the head region must be the tightest possible (i.e., implied by the + * entire macro) before this routine is called. For each macro member, the updated constraint + * is essentially the head constraint with the member's offset applied. + * + * @param head_pr The PartitionRegion constraint of the macro's head. + * @param offset The offset of the macro member from the head. + * @param grid_pr A PartitionRegion covering the entire grid. + * @param pl_macro The placement macro whose members' PartitionRegions are to be updated. + * @return PartitionRegion The updated PartitionRegion for the macro member. */ -PartitionRegion update_macro_member_pr(PartitionRegion& head_pr, const t_pl_offset& offset, const PartitionRegion& grid_pr, const t_pl_macro& pl_macro); +PartitionRegion update_macro_member_pr(const PartitionRegion& head_pr, + const t_pl_offset& offset, + const PartitionRegion& grid_pr, + const t_pl_macro& pl_macro); -/* - * Updates the floorplan constraints information for all constrained macros. +/** + * @brief Updates the floorplan constraints information for all constrained macros. + * * Updates the constraints to be the tightest constraints possible while adhering - * to the floorplan constraints of each macro member. - * This is done at the start of initial placement to ease floorplan legality checking - * while placing macros during initial placement. + * to the floorplan constraints of each macro member. This is done at the start of + * initial placement to ease floorplan legality checking while placing macros during + * initial placement. */ void propagate_place_constraints(); @@ -71,63 +104,111 @@ inline bool floorplan_legal(const t_pl_blocks_to_be_moved& blocks_affected) { for (int i = 0; i < blocks_affected.num_moved_blocks; i++) { floorplan_legal = cluster_floorplanning_legal(blocks_affected.moved_blocks[i].block_num, blocks_affected.moved_blocks[i].new_loc); if (!floorplan_legal) { - VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\tMove aborted for block %zu, location tried was x: %d, y: %d, subtile: %d \n", size_t(blocks_affected.moved_blocks[i].block_num), blocks_affected.moved_blocks[i].new_loc.x, blocks_affected.moved_blocks[i].new_loc.y, blocks_affected.moved_blocks[i].new_loc.sub_tile); + VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, + "\tMove aborted for block %zu, location tried was x: %d, y: %d, subtile: %d \n", + size_t(blocks_affected.moved_blocks[i].block_num), + blocks_affected.moved_blocks[i].new_loc.x, + blocks_affected.moved_blocks[i].new_loc.y, + blocks_affected.moved_blocks[i].new_loc.sub_tile); return false; } } return true; } -/* - * Load cluster_constraints if the pack stage of VPR is skipped. The cluster_constraints - * data structure is normally loaded during packing, so this routine is called when the packing stage is not performed. - * If no constraints file is specified, every cluster is assigned - * an empty PartitionRegion. If a constraints file is specified, cluster_constraints is loaded according to + +/** + * @brief Load cluster_constraints if the pack stage of VPR is skipped. + * + * The cluster_constraints data structure is normally loaded during packing, + * so this routine is called when the packing stage is not performed. + * If no constraints file is specified, every cluster is assigned an empty PartitionRegion. + * If a constraints file is specified, cluster_constraints is loaded according to * the floorplan constraints specified in the file. - * Load cluster_constraints according to the floorplan constraints specified in - * the constraints XML file. + * + * @note Load cluster_constraints according to the floorplan constraints specified in the constraints XML file. */ void load_cluster_constraints(); -/* - * Marks blocks as fixed if they have a constraint region that specifies exactly one x, y, - * subtile location as legal. - * Marking them as fixed indicates that they cannot be moved during initial placement and simulated annealing +/** + * @brief Marks blocks as fixed if they have a constraint region that + * specifies exactly one x, y, subtile location as legal. + * + * Marking them as fixed indicates that they cannot be moved + * during initial placement and simulated annealing. */ void mark_fixed_blocks(); -/* - * Returns the number of tiles covered by a floorplan region. +/** + * @brief Converts the floorplanning constraints from grid location to + * compressed grid locations and store them in FloorplanningContext. + */ +void alloc_and_load_compressed_cluster_constraints(); + +/** + * @brief Returns the number of tiles covered by a floorplan region. + * * The return value of this routine will either be 0, 1, or 2. This * is because this routine is used to check whether the region covers no tile, * one tile, or more than one tile, and so as soon as it is seen that the number of tiles * covered is 2, no further information is needed. + * + * @param reg The region to be checked. + * @param block_type The type of logical block. + * @param loc The location of the tile, if only one tile is covered. + * @return int The number of tiles covered by the region. */ int region_tile_cover(const Region& reg, t_logical_block_type_ptr block_type, t_pl_loc& loc); -/* - * Returns a bool that indicates if the PartitionRegion covers exactly one compatible location. - * Used to decide whether to mark a block with the .is_fixed flag based on its floorplan - * region. +/** + * @brief Returns a bool that indicates if the PartitionRegion covers exactly one compatible location. + * + * Used to decide whether to mark a block with the .is_fixed flag based on its floorplan region. * block_type is used to determine whether the PartitionRegion is compatible with the cluster block type - * and loc is updated with the location covered by the PartitionRegion + * and loc is updated with the location covered by the PartitionRegion. + * + * @param pr The PartitionRegion to be checked. + * @param block_type The type of logical block. + * @param loc The location covered by the PartitionRegion, if it covers exactly one compatible location. + * @return bool True if the PartitionRegion covers exactly one compatible location, false otherwise. */ -bool is_pr_size_one(PartitionRegion& pr, t_logical_block_type_ptr block_type, t_pl_loc& loc); +bool is_pr_size_one(const PartitionRegion& pr, t_logical_block_type_ptr block_type, t_pl_loc& loc); -/* - * Returns the number of grid tiles that are covered by the partition region and - * compatible with the cluster's block type. - * Used prior to initial placement to help sort blocks based on how difficult they - * are to place. +/** + * @brief Returns the number of grid tiles that are covered by the partition region + * and compatible with the cluster's block type. + * + * Used prior to initial placement to help sort blocks based on how difficult they are to place. + * + * @param pr The PartitionRegion to be checked. + * @param block_type The type of logical block. + * @param grid_tiles The GridTileLookup containing information about the number of available subtiles + * compatible the given block_type. + * @return int The number of compatible grid tiles covered by the PartitionRegion. */ -int get_part_reg_size(PartitionRegion& pr, t_logical_block_type_ptr block_type, GridTileLookup& grid_tiles); +int get_part_reg_size(const PartitionRegion& pr, + t_logical_block_type_ptr block_type, + const GridTileLookup& grid_tiles); -/* - * Return the floorplan score that will be used for sorting blocks during initial placement. This score is the - * total number of subtiles for the block type in the grid, minus the number of subtiles in the block's floorplan PartitionRegion. - * The resulting number is the number of tiles outside the block's floorplan region, meaning the higher - * it is, the more difficult the block is to place. + +/** + * @brief Return the floorplan score that will be used for sorting blocks during initial placement. + * + * This score is the total number of subtiles for the block type in the grid, minus the number of subtiles + * in the block's floorplan PartitionRegion. The resulting number is the number of tiles outside the block's + * floorplan region, meaning the higher it is, the more difficult the block is to place. + * + * @param blk_id The ID of the cluster block. + * @param pr The PartitionRegion representing the floorplan region of the block. + * @param block_type The type of logical block. + * @param grid_tiles The GridTileLookup containing information about the number of available subtiles + * compatible the given block_type. + * @return double The floorplan score for the block. */ -double get_floorplan_score(ClusterBlockId blk_id, PartitionRegion& pr, t_logical_block_type_ptr block_type, GridTileLookup& grid_tiles); +double get_floorplan_score(ClusterBlockId blk_id, + const PartitionRegion& pr, + t_logical_block_type_ptr block_type, + const GridTileLookup& grid_tiles); + #endif /* VPR_SRC_PLACE_PLACE_CONSTRAINTS_H_ */ diff --git a/vpr/src/place/simpleRL_move_generator.cpp b/vpr/src/place/simpleRL_move_generator.cpp index 172178f49ce..45e43e05762 100644 --- a/vpr/src/place/simpleRL_move_generator.cpp +++ b/vpr/src/place/simpleRL_move_generator.cpp @@ -85,8 +85,7 @@ int KArmedBanditAgent::action_to_blk_type_(const size_t action_idx) { } std::vector KArmedBanditAgent::get_available_logical_blk_types_() { - auto& device_ctx = g_vpr_ctx.device(); - auto& cluster_ctx = g_vpr_ctx.clustering(); + const auto& device_ctx = g_vpr_ctx.device(); std::vector available_blk_types; @@ -95,13 +94,19 @@ std::vector KArmedBanditAgent::get_available_logical_blk_types_() { continue; } - const auto& blk_per_type = cluster_ctx.clb_nlist.blocks_per_type(logical_blk_type); + const auto& blk_per_type = movable_blocks_per_type(logical_blk_type); if (!blk_per_type.empty()) { available_blk_types.push_back(logical_blk_type.index); } } + // when there is no movable blocks, RL agent always selects the empty logical block + // since there are no empty blocks in the netlist, the move is always aborted + if (available_blk_types.empty()) { + available_blk_types.push_back(device_ctx.EMPTY_LOGICAL_BLOCK_TYPE->index); + } + return available_blk_types; } @@ -311,8 +316,10 @@ t_propose_action SoftmaxAgent::propose_action() { } void SoftmaxAgent::set_block_ratio_() { - auto& cluster_ctx = g_vpr_ctx.clustering(); - size_t num_total_blocks = cluster_ctx.clb_nlist.blocks().size(); + const auto& place_ctx = g_vpr_ctx.placement(); + size_t num_movable_total_blocks = place_ctx.movable_blocks.size(); + + num_movable_total_blocks = std::max(num_movable_total_blocks, 1); // allocate enough space for available block types in the netlist block_type_ratio_.resize(num_available_types_); @@ -324,8 +331,8 @@ void SoftmaxAgent::set_block_ratio_() { for (size_t itype = 0; itype < num_available_types_; itype++) { t_logical_block_type blk_type; blk_type.index = agent_to_phy_blk_type(itype); - auto num_blocks = cluster_ctx.clb_nlist.blocks_per_type(blk_type).size(); - block_type_ratio_[itype] = (float)num_blocks / num_total_blocks; + auto num_blocks = movable_blocks_per_type(blk_type).size(); + block_type_ratio_[itype] = (float)num_blocks / num_movable_total_blocks; block_type_ratio_[itype] /= available_moves_.size(); } } diff --git a/vpr/src/route/binary_heap.cpp b/vpr/src/route/binary_heap.cpp index 30ad19a02c7..8053960d955 100644 --- a/vpr/src/route/binary_heap.cpp +++ b/vpr/src/route/binary_heap.cpp @@ -1,57 +1,23 @@ #include "binary_heap.h" -#include "rr_graph_fwd.h" #include "vtr_log.h" -static size_t parent(size_t i) { return i >> 1; } // child indices of a heap -static size_t left(size_t i) { return i << 1; } -static size_t right(size_t i) { return (i << 1) + 1; } - -BinaryHeap::BinaryHeap() - : heap_() - , heap_size_(0) - , heap_tail_(0) - , max_index_(std::numeric_limits::max()) - , prune_limit_(std::numeric_limits::max()) {} - -BinaryHeap::~BinaryHeap() { - free_all_memory(); -} +static inline size_t left(size_t i) { return i << 1; } +static inline size_t right(size_t i) { return (i << 1) + 1; } -t_heap* BinaryHeap::alloc() { - return storage_.alloc(); -} -void BinaryHeap::free(t_heap* hptr) { - storage_.free(hptr); -} +inline size_t BinaryHeap::parent(size_t i) const { return i >> 1; } -void BinaryHeap::init_heap(const DeviceGrid& grid) { - size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); - if (heap_.empty() || heap_size_ < target_heap_size) { - if (!heap_.empty()) { - // coverity[offset_free : Intentional] - heap_.clear(); - } - heap_size_ = (grid.width() - 1) * (grid.height() - 1); - heap_.resize(heap_size_ + 1); /* heap_size_ + 1 because heap stores from [1..heap_size] */ +bool BinaryHeap::is_valid() const { + if (heap_.empty()) { + return false; } - heap_tail_ = 1; -} - -void BinaryHeap::add_to_heap(t_heap* hptr) { - expand_heap_if_full(); - // start with undefined hole - ++heap_tail_; - sift_up(heap_tail_ - 1, hptr); - // If we have pruned, rebuild the heap now. - if (check_prune_limit()) { - build_heap(); + for (size_t i = 1; i <= heap_tail_ >> 1; ++i) { + if (left(i) < heap_tail_ && heap_[left(i)].cost < heap_[i].cost) return false; + if (right(i) < heap_tail_ && heap_[right(i)].cost < heap_[i].cost) return false; } -} -bool BinaryHeap::is_empty_heap() const { - return (bool)(heap_tail_ == 1); + return true; } t_heap* BinaryHeap::get_heap_head() { @@ -68,173 +34,44 @@ t_heap* BinaryHeap::get_heap_head() { return (nullptr); } - cheapest = heap_[1]; + cheapest = heap_[1].elem_ptr; hole = 1; child = 2; + --heap_tail_; + while (child < heap_tail_) { - if (heap_[child + 1]->cost < heap_[child]->cost) + if (heap_[child + 1].cost < heap_[child].cost) ++child; // become right child + heap_[hole] = heap_[child]; hole = child; child = left(child); } - sift_up(hole, heap_[heap_tail_]); + sift_up(hole, heap_[heap_tail_]); } while (!cheapest->index.is_valid()); /* Get another one if invalid entry. */ return (cheapest); } -void BinaryHeap::empty_heap() { - for (size_t i = 1; i < heap_tail_; i++) - free(heap_[i]); - - heap_tail_ = 1; -} - -size_t BinaryHeap::size() const { return heap_tail_ - 1; } // heap[0] is not valid element - // make a heap rooted at index hole by **sifting down** in O(lgn) time void BinaryHeap::sift_down(size_t hole) { - t_heap* head{heap_[hole]}; + heap_elem head{heap_[hole]}; size_t child{left(hole)}; + while (child < heap_tail_) { - if (child + 1 < heap_tail_ && heap_[child + 1]->cost < heap_[child]->cost) + if (child + 1 < heap_tail_ && heap_[child + 1].cost < heap_[child].cost) ++child; - if (heap_[child]->cost < head->cost) { + + if (heap_[child].cost < head.cost) { heap_[hole] = heap_[child]; hole = child; child = left(child); } else break; } - heap_[hole] = head; -} - -// runs in O(n) time by sifting down; the least work is done on the most elements: 1 swap for bottom layer, 2 swap for 2nd, ... lgn swap for top -// 1*(n/2) + 2*(n/4) + 3*(n/8) + ... + lgn*1 = 2n (sum of i/2^i) -void BinaryHeap::build_heap() { - // second half of heap are leaves - for (size_t i = heap_tail_ >> 1; i != 0; --i) - sift_down(i); -} - -void BinaryHeap::set_prune_limit(size_t max_index, size_t prune_limit) { - if (prune_limit != std::numeric_limits::max()) { - VTR_ASSERT(max_index < prune_limit); - } - max_index_ = max_index; - prune_limit_ = prune_limit; -} - -// O(lgn) sifting up to maintain heap property after insertion (should sift down when building heap) -void BinaryHeap::sift_up(size_t leaf, t_heap* const node) { - while ((leaf > 1) && (node->cost < heap_[parent(leaf)]->cost)) { - // sift hole up - heap_[leaf] = heap_[parent(leaf)]; - leaf = parent(leaf); - } - heap_[leaf] = node; -} - -//expands heap by "realloc" -void BinaryHeap::expand_heap_if_full() { - if (heap_tail_ > heap_size_) { /* Heap is full */ - heap_size_ *= 2; - heap_.resize(heap_size_ + 1); - } -} -// adds an element to the back of heap and expand if necessary, but does not maintain heap property -void BinaryHeap::push_back(t_heap* const hptr) { - expand_heap_if_full(); - heap_[heap_tail_] = hptr; - ++heap_tail_; - - check_prune_limit(); -} - -bool BinaryHeap::is_valid() const { - if (heap_.empty()) { - return false; - } - - for (size_t i = 1; i <= heap_tail_ >> 1; ++i) { - if (left(i) < heap_tail_ && heap_[left(i)]->cost < heap_[i]->cost) return false; - if (right(i) < heap_tail_ && heap_[right(i)]->cost < heap_[i]->cost) return false; - } - return true; -} - -void BinaryHeap::free_all_memory() { - if (!heap_.empty()) { - empty_heap(); - - // coverity[offset_free : Intentional] - heap_.clear(); - } - - // heap_ = nullptr; /* Defensive coding: crash hard if I use these. */ - - storage_.free_all_memory(); -} - -bool BinaryHeap::check_prune_limit() { - if (heap_tail_ > prune_limit_) { - prune_heap(); - return true; - } - - return false; -} - -void BinaryHeap::prune_heap() { - VTR_ASSERT(max_index_ < prune_limit_); - - std::vector best_heap_item(max_index_, nullptr); - - // Find the cheapest instance of each index and store it. - for (size_t i = 1; i < heap_tail_; i++) { - if (heap_[i] == nullptr) { - continue; - } - - if (!heap_[i]->index.is_valid()) { - free(heap_[i]); - heap_[i] = nullptr; - continue; - } - - auto idx = size_t(heap_[i]->index); - - VTR_ASSERT(idx < max_index_); - - if (best_heap_item[idx] == nullptr || best_heap_item[idx]->cost > heap_[i]->cost) { - best_heap_item[idx] = heap_[i]; - } - } - - // Free unused nodes. - for (size_t i = 1; i < heap_tail_; i++) { - if (heap_[i] == nullptr) { - continue; - } - - auto idx = size_t(heap_[i]->index); - - if (best_heap_item[idx] != heap_[i]) { - free(heap_[i]); - heap_[i] = nullptr; - } - } - - heap_tail_ = 1; - - for (size_t i = 0; i < max_index_; ++i) { - if (best_heap_item[i] != nullptr) { - heap_[heap_tail_++] = best_heap_item[i]; - } - } -} + heap_[hole] = head; +} \ No newline at end of file diff --git a/vpr/src/route/binary_heap.h b/vpr/src/route/binary_heap.h index f1d017051d7..2857200c0a3 100644 --- a/vpr/src/route/binary_heap.h +++ b/vpr/src/route/binary_heap.h @@ -1,44 +1,17 @@ -#ifndef _BINARY_HEAP_H -#define _BINARY_HEAP_H +#ifndef VTR_BINARY_HEAP_H +#define VTR_BINARY_HEAP_H -#include "heap_type.h" +#include "k_ary_heap.h" #include -class BinaryHeap : public HeapInterface { +class BinaryHeap : public KAryHeap { public: - BinaryHeap(); - ~BinaryHeap(); - - t_heap* alloc() final; - void free(t_heap* hptr) final; - - void init_heap(const DeviceGrid& grid) final; - void add_to_heap(t_heap* hptr) final; - void push_back(t_heap* const hptr) final; - bool is_empty_heap() const final; bool is_valid() const final; - void empty_heap() final; t_heap* get_heap_head() final; - void build_heap() final; - void set_prune_limit(size_t max_index, size_t prune_limit) final; - - void free_all_memory() final; private: - size_t size() const; - void sift_up(size_t leaf, t_heap* const node); - void sift_down(size_t hole); - void expand_heap_if_full(); - bool check_prune_limit(); - void prune_heap(); - - HeapStorage storage_; - std::vector heap_; /* Indexed from [1..heap_size] */ - size_t heap_size_; /* Number of slots in the heap array */ - size_t heap_tail_; /* Index of first unused slot in the heap array */ - - size_t max_index_; - size_t prune_limit_; + void sift_down(size_t hole) final; + size_t parent(size_t i) const final; }; -#endif /* _BINARY_HEAP_H */ +#endif //VTR_BINARY_HEAP_H diff --git a/vpr/src/route/connection_router.cpp b/vpr/src/route/connection_router.cpp index 2af58298fa3..70ebfa0f357 100644 --- a/vpr/src/route/connection_router.cpp +++ b/vpr/src/route/connection_router.cpp @@ -2,25 +2,10 @@ #include "rr_graph.h" #include "binary_heap.h" +#include "four_ary_heap.h" #include "bucket.h" #include "rr_graph_fwd.h" -/** - * @brief This function is relevant when the architecture is 3D. If inter-layer connections are only from OPINs (determine by is_inter_layer_opin_connection), - * then nodes (other that OPINs) which are on the other layer than sink's layer, don't need to be pushed back to the heap. - * @param rr_nodes - * @param rr_graph - * @param from_node - * @param sink_node - * @param is_inter_layer_opin_connection It is true if the architecture is 3D and inter-layer connections are only from OPINs. - * @return - */ -static bool has_path_to_sink(const t_rr_graph_view& rr_nodes, - const RRGraphView* rr_graph, - RRNodeId from_node, - RRNodeId sink_node, - bool is_inter_layer_opin_connection); - static bool relevant_node_to_target(const RRGraphView* rr_graph, RRNodeId node_to_add, RRNodeId target_node); @@ -851,9 +836,6 @@ void ConnectionRouter::add_route_tree_to_heap( /* Pre-order depth-first traversal */ // IPINs and SINKS are not re_expanded if (rt_node.re_expand) { - if (target_node.is_valid() && !has_path_to_sink(rr_nodes_, rr_graph_, RRNodeId(rt_node.inode), RRNodeId(target_node), only_opin_inter_layer)) { - return; - } add_route_tree_node_to_heap(rt_node, target_node, cost_params, @@ -981,7 +963,6 @@ t_bb ConnectionRouter::add_high_fanout_route_tree_to_heap( int target_bin_x = grid_to_bin_x(rr_graph_->node_xlow(target_node), spatial_rt_lookup); int target_bin_y = grid_to_bin_y(rr_graph_->node_ylow(target_node), spatial_rt_lookup); - int nodes_added = 0; int chan_nodes_added = 0; t_bb highfanout_bb; @@ -1020,23 +1001,15 @@ t_bb ConnectionRouter::add_high_fanout_route_tree_to_heap( if (!inside_bb(rr_node_to_add, net_bounding_box)) continue; - if (!has_path_to_sink(rr_nodes_, rr_graph_, RRNodeId(rt_node.inode), target_node, only_opin_inter_layer)) { - continue; - } // Put the node onto the heap add_route_tree_node_to_heap(rt_node, target_node, cost_params, net_bounding_box); // Expand HF BB to include the node (clip by original BB) expand_highfanout_bounding_box(highfanout_bb, net_bounding_box, rr_node_to_add, rr_graph_); - if (is_flat_) { - if (rr_graph_->node_type(rr_node_to_add) == CHANY || rr_graph_->node_type(rr_node_to_add) == CHANX) { - chan_nodes_added++; - } - } else { + if (rr_graph_->node_type(rr_node_to_add) == CHANY || rr_graph_->node_type(rr_node_to_add) == CHANX) { chan_nodes_added++; } - nodes_added++; } constexpr int SINGLE_BIN_MIN_NODES = 2; @@ -1054,7 +1027,7 @@ t_bb ConnectionRouter::add_high_fanout_route_tree_to_heap( if (done) break; } - if (nodes_added == 0) { //If the target bin, and it's surrounding bins were empty, just add the full route tree + if (chan_nodes_added == 0) { //If the target bin, and it's surrounding bins were empty, just add the full route tree add_route_tree_to_heap(rt_root, target_node, cost_params, net_bounding_box); return net_bounding_box; } else { @@ -1064,31 +1037,6 @@ t_bb ConnectionRouter::add_high_fanout_route_tree_to_heap( } } -static inline bool has_path_to_sink(const t_rr_graph_view& rr_nodes, - const RRGraphView* rr_graph, - RRNodeId from_node, - RRNodeId sink_node, - bool is_inter_layer_opin_connection) { - int sink_layer = rr_graph->node_layer(sink_node); - - if (rr_graph->node_layer(from_node) == sink_layer || rr_graph->node_type(from_node) == SOURCE || !is_inter_layer_opin_connection) { - return true; - } else if (rr_graph->node_type(from_node) == CHANX || rr_graph->node_type(from_node) == CHANY || rr_graph->node_type(from_node) == IPIN) { - return false; - } else { - VTR_ASSERT(rr_graph->node_type(from_node) == OPIN && is_inter_layer_opin_connection); - auto edges = rr_nodes.edge_range(from_node); - - for (RREdgeId from_edge : edges) { - RRNodeId to_node = rr_nodes.edge_sink_node(from_edge); - if (rr_graph->node_layer(to_node) == sink_layer) { - return true; - } - } - return false; - } -} - static inline bool relevant_node_to_target(const RRGraphView* rr_graph, RRNodeId node_to_add, RRNodeId target_node) { @@ -1164,6 +1112,16 @@ std::unique_ptr make_connection_router(e_heap_type he rr_switch_inf, rr_node_route_inf, is_flat); + case e_heap_type::FOUR_ARY_HEAP: + return std::make_unique>( + grid, + router_lookahead, + rr_nodes, + rr_graph, + rr_rc_data, + rr_switch_inf, + rr_node_route_inf, + is_flat); case e_heap_type::BUCKET_HEAP_APPROXIMATION: return std::make_unique>( grid, diff --git a/vpr/src/route/four_ary_heap.cpp b/vpr/src/route/four_ary_heap.cpp new file mode 100644 index 00000000000..e70ed389e9a --- /dev/null +++ b/vpr/src/route/four_ary_heap.cpp @@ -0,0 +1,107 @@ +#include "four_ary_heap.h" +#include "vtr_log.h" + +// The leftmost/smallest-index child of node i +static inline size_t first_child(size_t i) { return (i << 2) - 2; } + +inline size_t FourAryHeap::parent(size_t i) const { return (i + 2) >> 2; } + +inline size_t FourAryHeap::smallest_child(size_t i) const { + // This function could be a simple loop to find the min cost child. However, + // using switch-case is 3% faster, which is worthwhile as this function is + // called very frequently. + + const size_t child_1 = first_child(i); + const size_t child_2 = child_1 + 1; + const size_t child_3 = child_1 + 2; + const size_t child_4 = child_1 + 3; + + size_t num_children = std::max(std::min(4, (int)heap_tail_ - (int)child_1), 0); + + switch (num_children) { + case 4: { + size_t minA = (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; + size_t minB = (heap_[child_3].cost < heap_[child_4].cost) ? child_3 : child_4; + return (heap_[minA].cost < heap_[minB].cost) ? minA : minB; + } + case 3: { + size_t minA = (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; + return (heap_[minA].cost < heap_[child_3].cost) ? minA : child_3; + } + case 2: + return (heap_[child_1].cost < heap_[child_2].cost) ? child_1 : child_2; + default: + return child_1; + } +} + +bool FourAryHeap::is_valid() const { + if (heap_.empty()) { + return false; + } + + for (size_t i = 1; i <= parent(heap_tail_); ++i) { + size_t leftmost_child = first_child(i); + + for (size_t j = 0; j < 4; ++j) { + if (leftmost_child + j >= heap_tail_) + break; + else if (heap_[leftmost_child + j].cost < heap_[i].cost) + return false; + } + } + + return true; +} + +t_heap* FourAryHeap::get_heap_head() { + /* Returns a pointer to the smallest element on the heap, or NULL if the * + * heap is empty. Invalid (index == OPEN) entries on the heap are never * + * returned -- they are just skipped over. */ + + t_heap* cheapest; + size_t hole, child; + + do { + if (heap_tail_ == 1) { /* Empty heap. */ + VTR_LOG_WARN("Empty heap occurred in get_heap_head.\n"); + return (nullptr); + } + + cheapest = heap_[1].elem_ptr; + + hole = 1; + child = smallest_child(hole); + + --heap_tail_; + + while (child < heap_tail_) { + child = smallest_child(hole); + + heap_[hole] = heap_[child]; + hole = child; + child = first_child(hole); + } + + sift_up(hole, heap_[heap_tail_]); + } while (!cheapest->index.is_valid()); /* Get another one if invalid entry. */ + + return (cheapest); +} + +// make a heap rooted at index hole by **sifting down** in O(lgn) time +void FourAryHeap::sift_down(size_t hole) { + heap_elem head{heap_[hole]}; + size_t child{smallest_child(hole)}; + + while (child < heap_tail_) { + if (heap_[child].cost < head.cost) { + heap_[hole] = heap_[child]; + hole = child; + child = smallest_child(hole); + } else + break; + } + + heap_[hole] = head; +} \ No newline at end of file diff --git a/vpr/src/route/four_ary_heap.h b/vpr/src/route/four_ary_heap.h new file mode 100644 index 00000000000..8dcb1d01b7d --- /dev/null +++ b/vpr/src/route/four_ary_heap.h @@ -0,0 +1,35 @@ +#ifndef VTR_FOUR_ARY_HEAP_H +#define VTR_FOUR_ARY_HEAP_H + +#include "k_ary_heap.h" +#include + +/** + * @brief Minheap with 4 child nodes per parent. + * + * @note + * Currently, KAryHeap's two children are BinaryHeap and FourAryHeap. On small circuits, these + * heaps have negligible differences in runtime, but on larger heaps, runtime is lower when + * using FourAryHeap. On titan benchmarks, the runtime is ~1.8% better on FourAryHeap compared + * to BinaryHeap. This is likely because FourAryHeap is more cache friendly, as we can fit 5 + * heap_elem on a cache line. +*/ +class FourAryHeap : public KAryHeap { + public: + bool is_valid() const final; + t_heap* get_heap_head() final; + + private: + void sift_down(size_t hole) final; + size_t parent(size_t i) const final; + + /** + * @param i The parent node. + * + * @return The child node of i with the smallest cost. Returns the first (smallest index) child of i + * if i has no children. + */ + size_t smallest_child(size_t i) const; +}; + +#endif //VTR_FOUR_ARY_HEAP_H diff --git a/vpr/src/route/heap_type.cpp b/vpr/src/route/heap_type.cpp index 3b160d3fb84..f9ee97dd657 100644 --- a/vpr/src/route/heap_type.cpp +++ b/vpr/src/route/heap_type.cpp @@ -1,6 +1,7 @@ #include "heap_type.h" #include "binary_heap.h" +#include "four_ary_heap.h" #include "bucket.h" #include "rr_graph_fwd.h" #include "vpr_error.h" @@ -62,6 +63,8 @@ std::unique_ptr make_heap(e_heap_type heap_type) { switch (heap_type) { case e_heap_type::BINARY_HEAP: return std::make_unique(); + case e_heap_type::FOUR_ARY_HEAP: + return std::make_unique(); case e_heap_type::BUCKET_HEAP_APPROXIMATION: return std::make_unique(); default: diff --git a/vpr/src/route/heap_type.h b/vpr/src/route/heap_type.h index 3f4ff7ecb48..e3dcb071c7d 100644 --- a/vpr/src/route/heap_type.h +++ b/vpr/src/route/heap_type.h @@ -8,58 +8,52 @@ #include "rr_graph_fwd.h" #include "route_path_manager.h" -/* Used by the heap as its fundamental data structure. - * Each heap element represents a partial route. - * - * cost: The cost used to sort heap. - * For the timing-driven router this is the backward_path_cost + - * expected cost to the target. - * - * backward_path_cost: Used only by the timing-driven router. The "known" - * cost of the path up to and including this node. - * In this case, the .cost member contains not only - * the known backward cost but also an expected cost - * to the target. - * - * R_upstream: Used only by the timing-driven router. Stores the upstream - * resistance to ground from this node, including the - * resistance of the node itself (device_ctx.rr_nodes[index].R). - * - * index: The RR node index associated with the costs/R_upstream values - * - * u.prev.node: The previous node used to reach the current 'index' node - * u.prev.next: The edge from u.prev.node used to reach the current 'index' node - * - * u.next: pointer to the next s_heap structure in the free - * linked list. Not used when on the heap. - * +/** + * @brief Used by the heap as its fundamental data structure. Each heap + * element represents a partial route. */ struct t_heap { + ///@brief The cost used to sort heap. For the timing-driven router this is the backward_path_cost + expected cost to the target. float cost = 0.; + ///@brief The "known" cost of the path up to and including this node. Used only by the timing-driven router. In this case, the + ///.cost member contains not only the known backward cost but also an expected cost to the target. float backward_path_cost = 0.; + ///@brief Used only by the timing-driven router. Stores the upstream resistance to ground from this node, including the resistance + /// of the node itself (device_ctx.rr_nodes[index].R). float R_upstream = 0.; - + ///@brief The RR node index associated with the costs/R_upstream values. RRNodeId index = RRNodeId::INVALID(); - - // Structure to handle extra RCV structures - // Managed by PathManager class + ///@brief Structure to handle extra RCV structures. Managed by PathManager class. t_heap_path* path_data; + /** + * @brief Get the next t_heap item in the linked list. + */ t_heap* next_heap_item() const { return u.next; } + /** + * @brief Set the next t_heap item in the linked list. + */ void set_next_heap_item(t_heap* next) { u.next = next; } - /** Get prev_edge. - * Be careful: will return 0 (a valid id!) if uninitialized. */ + /** + * @brief Get the edge from the previous node used to reach the current node. + * + * @note + * Be careful: will return 0 (a valid id!) if uninitialized. + */ constexpr RREdgeId prev_edge() const { static_assert(sizeof(uint32_t) == sizeof(RREdgeId)); return RREdgeId(u.prev_edge); } + /** + * @brief Set the edge from the previous node used to reach the current node.. + */ inline void set_prev_edge(RREdgeId edge) { static_assert(sizeof(uint32_t) == sizeof(RREdgeId)); u.prev_edge = size_t(edge); @@ -67,25 +61,44 @@ struct t_heap { private: union { + ///@brief Pointer to the next t_heap structure in the free linked list. t_heap* next = nullptr; - // The previous edge is not a StrongId for performance & brevity - // reasons: StrongIds can't be trivially placed into an anonymous - // union. + + /** + * @brief The edge from the previous node used to reach the current. Not used when on the heap. + * + * @note + * The previous edge is not a StrongId for performance & brevity + * reasons: StrongIds can't be trivially placed into an anonymous + * union. + */ uint32_t prev_edge; } u; }; -// t_heap object pool, useful for implementing heaps that conform to -// HeapInterface. +/** + * @brief t_heap object pool, useful for implementing heaps that conform to + * HeapInterface. + */ class HeapStorage { public: HeapStorage(); - // Allocate a heap item. + /** + * @brief Allocate a heap item. + * + * @return The allocated item. + */ t_heap* alloc(); - // Free a heap item. + /** + * @brief Free a heap item. + */ void free(t_heap* hptr); + + /** + * @brief Free all heap items. + */ void free_all_memory(); private: @@ -96,126 +109,169 @@ class HeapStorage { size_t num_heap_allocated_; }; -// Interface to heap used for router optimization. -// -// Note: Objects used in instances of HeapInterface must always be allocated -// and free'd using the HeapInterface::alloc and HeapInterface::free methods -// of that instance. Object pools are likely in use. -// -// As a general rule, any t_heap objects returned from this interface, -// **must** be HeapInterface::free'd before destroying the HeapInterface -// instance. This ensure that no leaks are present in the users of the heap. -// Violating this assumption may result in a assertion violation. +/** + * @brief Interface to heap used for router optimization. + * + * @note + * Objects used in instances of HeapInterface must always be allocated + * and free'd using the HeapInterface::alloc and HeapInterface::free methods + * of that instance. Object pools are likely in use. + * + * @details + * As a general rule, any t_heap objects returned from this interface, + * **must** be HeapInterface::free'd before destroying the HeapInterface + * instance. This ensure that no leaks are present in the users of the heap. + * Violating this assumption may result in an assertion violation. + */ class HeapInterface { public: virtual ~HeapInterface() {} - // Allocate a heap item. - // - // This transfers ownership of the t_heap object from HeapInterface to the - // caller. + /** + * @brief Allocate a heap item. + * + * @details + * This transfers ownership of the t_heap object from HeapInterface to the + * caller. + */ virtual t_heap* alloc() = 0; - // Free a heap item. - // - // HeapInterface::free can be called on objects returned from either - // HeapInterface::alloc or HeapInterface::get_heap_head. + /** + * @brief Free a heap item. + * + * @details + * HeapInterface::free can be called on objects returned from either + * HeapInterface::alloc or HeapInterface::get_heap_head. + * + * @param hptr The element to free. + */ virtual void free(t_heap* hptr) = 0; - // Initializes heap storage based on the size of the device. - // - // Note: this method **must** be invoked at least once prior to the - // following methods being called: - // - add_to_heap - // - push_back - // - get_heap_head - // - is_empty_heap - // - empty_heap - // - build_heap + /** + * @brief Initializes heap storage based on the size of the device. + * + * @note + * This method **must** be invoked at least once prior to the + * following methods being called:
+ * - add_to_heap
+ * - push_back
+ * - get_heap_head
+ * - is_empty_heap
+ * - empty_heap
+ * - build_heap
+ * + * @param grid The FPGA device grid + */ virtual void init_heap(const DeviceGrid& grid) = 0; - // Add t_heap to heap, preserving heap property. - // - // This transfers ownership of the t_heap object to HeapInterface from the - // called. + /** + * @brief Add t_heap to heap, preserving heap property. + * + * @details + * This transfers ownership of the t_heap object to HeapInterface from the + * called. + * + * @param hptr The element to add. + */ virtual void add_to_heap(t_heap* hptr) = 0; - // Add t_heap to heap, however does not preserve heap property. - // - // This is useful if multiple t_heap's are being added in bulk. Once - // all t_heap's have been added, HeapInterface::build_heap can be invoked - // to restore the heap property in an efficient way. - // - // This transfers ownership of the t_heap object to HeapInterface from the - // called. + /** + * @brief Add t_heap to heap, however does not preserve heap property. + * + * @details + * This is useful if multiple t_heap's are being added in bulk. Once + * all t_heap's have been added, HeapInterface::build_heap can be invoked + * to restore the heap property in an efficient way.

+ * This transfers ownership of the t_heap object to HeapInterface from the + * called. + * + * @param hptr The element to insert. + */ virtual void push_back(t_heap* const hptr) = 0; - // Restore the heap property. - // - // This is useful in conjunction with HeapInterface::push_back when adding - // multiple heap elements. + /** + * @brief Restore the heap property. + * + * @details + * This is useful in conjunction with HeapInterface::push_back when adding + * multiple heap elements. + */ virtual void build_heap() = 0; - // Pop the head (smallest element) of the heap, and return it. - // - // This transfers ownership of the t_heap object from HeapInterface to the - // caller. + /** + * @brief Pop the head (smallest element) of the heap, and return it. + * + * @details + * This transfers ownership of the t_heap object from HeapInterface to the + * caller. + */ virtual t_heap* get_heap_head() = 0; - // Is the heap empty? + /** + * @brief Is the heap empty? + */ virtual bool is_empty_heap() const = 0; - // Is the heap valid? + /** + * @brief Is the heap valid? + */ virtual bool is_valid() const = 0; - // Empty all items from the heap. + /** + * @brief Empty all items from the heap. + */ virtual void empty_heap() = 0; - // Free all storage used by the heap. - // - // This returns all memory allocated by the HeapInterface instance. Only - // call this if the heap is no longer being used. - // - // Note: Only invoke this method if all objects returned from this - // HeapInterface instace have been free'd. + /** + * @brief Free all storage used by the heap. + * + * @details + * This returns all memory allocated by the HeapInterface instance. Only + * call this if the heap is no longer being used. + * + * @note + * Only invoke this method if all objects returned from this + * HeapInterface instance have been free'd. + */ virtual void free_all_memory() = 0; - // Set maximum number of elements that the heap should contain - // (the prune_limit). If the prune limit is hit, then the heap should - // kick out duplicate index entries. - // - // The prune limit exists to provide a maximum bound on memory usage in - // the heap. In some pathological cases, the router may explore - // incrementally better paths, resulting in many duplicate entries for - // RR nodes. To handle this edge case, if the number of heap items - // exceeds the prune_limit, then the heap will compacts itself. - // - // The heap compaction process simply means taking the lowest cost entry - // for each index (e.g. RR node). All nodes with higher costs can safely - // be dropped. - // - // The pruning process is intended to bound the memory usage the heap can - // consume based on the prune_limit, which is expected to be a function of - // the graph size. - // - // max_index should be the highest index possible in the heap. - // prune_limit is the maximuming number of heap entries before pruning - // should take place. - // - // The prune_limit should always be higher than max_index, likely by a - // significant amount. The pruning process has some overhead, so - // prune_limit should be ~2-4x the max_index to prevent excess pruning - // when not required. + /** + * @brief Set maximum number of elements that the heap should contain + * (the prune_limit). If the prune limit is hit, then the heap should + * kick out duplicate index entries. + * + * @details + * The prune limit exists to provide a maximum bound on memory usage in + * the heap. In some pathological cases, the router may explore + * incrementally better paths, resulting in many duplicate entries for + * RR nodes. To handle this edge case, if the number of heap items + * exceeds the prune_limit, then the heap will compacts itself.

+ * The heap compaction process simply means taking the lowest cost entry + * for each index (e.g. RR node). All nodes with higher costs can safely + * be dropped.

+ * The pruning process is intended to bound the memory usage the heap can + * consume based on the prune_limit, which is expected to be a function of + * the graph size. + * + * @param max_index The highest index possible in the heap. + * @param prune_limit The maximum number of heap entries before pruning should + * take place. This should always be higher than max_index, likely by a + * significant amount. The pruning process has some overhead, so prune_limit + * should be ~2-4x the max_index to prevent excess pruning when not required. + */ virtual void set_prune_limit(size_t max_index, size_t prune_limit) = 0; }; enum class e_heap_type { INVALID_HEAP = 0, BINARY_HEAP, + FOUR_ARY_HEAP, BUCKET_HEAP_APPROXIMATION, }; -// Heap factory. +/** + * @brief Heap factory. + */ std::unique_ptr make_heap(e_heap_type); #endif /* _HEAP_TYPE_H */ diff --git a/vpr/src/route/k_ary_heap.cpp b/vpr/src/route/k_ary_heap.cpp new file mode 100644 index 00000000000..f7dc7b8093c --- /dev/null +++ b/vpr/src/route/k_ary_heap.cpp @@ -0,0 +1,173 @@ +#include "k_ary_heap.h" +#include "rr_graph_fwd.h" +#include "vtr_log.h" + +KAryHeap::KAryHeap() + : heap_() + , heap_size_(0) + , heap_tail_(0) + , max_index_(std::numeric_limits::max()) + , prune_limit_(std::numeric_limits::max()) {} + +KAryHeap::~KAryHeap() { + free_all_memory(); +} + +t_heap* KAryHeap::alloc() { + return storage_.alloc(); +} +void KAryHeap::free(t_heap* hptr) { + storage_.free(hptr); +} + +void KAryHeap::init_heap(const DeviceGrid& grid) { + size_t target_heap_size = (grid.width() - 1) * (grid.height() - 1); + if (heap_.empty() || heap_size_ < target_heap_size) { + if (!heap_.empty()) { + // coverity[offset_free : Intentional] + heap_.clear(); + } + heap_size_ = (grid.width() - 1) * (grid.height() - 1); + heap_.resize(heap_size_ + 1); /* heap_size_ + 1 because heap stores from [1..heap_size] */ + } + heap_tail_ = 1; +} + +void KAryHeap::add_to_heap(t_heap* hptr) { + expand_heap_if_full(); + // start with undefined hole + ++heap_tail_; + heap_elem new_elem = {hptr, hptr->cost}; + sift_up(heap_tail_ - 1, new_elem); + + // If we have pruned, rebuild the heap now. + if (check_prune_limit()) { + build_heap(); + } +} + +bool KAryHeap::is_empty_heap() const { + return (bool)(heap_tail_ == 1); +} + +void KAryHeap::empty_heap() { + for (size_t i = 1; i < heap_tail_; i++) + free(heap_[i].elem_ptr); + + heap_tail_ = 1; +} + +size_t KAryHeap::size() const { return heap_tail_ - 1; } // heap[0] is not valid element + +// runs in O(n) time by sifting down; the least work is done on the most elements: 1 swap for bottom layer, 2 swap for 2nd, ... lgn swap for top +// 1*(n/k^1) + 2*(n/k^2) + 3*(n/k^3) + ... + lgn*1 = k*n (sum of i/k^i) +void KAryHeap::build_heap() { + for (size_t i = parent(heap_tail_); i != 0; --i) + sift_down(i); +} + +void KAryHeap::set_prune_limit(size_t max_index, size_t prune_limit) { + if (prune_limit != std::numeric_limits::max()) { + VTR_ASSERT(max_index < prune_limit); + } + max_index_ = max_index; + prune_limit_ = prune_limit; +} + +void KAryHeap::sift_up(size_t leaf, heap_elem const& node) { + while ((leaf > 1) && (node.cost < heap_[parent(leaf)].cost)) { + // sift hole up + heap_[leaf] = heap_[parent(leaf)]; + leaf = parent(leaf); + } + + heap_[leaf] = node; +} + +void KAryHeap::expand_heap_if_full() { + if (heap_tail_ >= heap_size_) { /* Heap is full */ + heap_size_ *= 2; + heap_.resize(heap_size_ + 1); + } +} + +// adds an element to the back of heap and expand if necessary, but does not maintain heap property +void KAryHeap::push_back(t_heap* const hptr) { + expand_heap_if_full(); + + heap_elem new_elem = {hptr, hptr->cost}; + heap_[heap_tail_] = new_elem; + ++heap_tail_; + + check_prune_limit(); +} + +void KAryHeap::free_all_memory() { + if (!heap_.empty()) { + empty_heap(); + // coverity[offset_free : Intentional] + heap_.clear(); + } + + // heap_ = nullptr; /* Defensive coding: crash hard if I use these. */ + storage_.free_all_memory(); +} + +bool KAryHeap::check_prune_limit() { + if (heap_tail_ > prune_limit_) { + prune_heap(); + return true; + } + + return false; +} + +void KAryHeap::prune_heap() { + VTR_ASSERT(max_index_ < prune_limit_); + + heap_elem blank_elem = {nullptr, 0.0}; + std::vector best_heap_item(max_index_, blank_elem); + + // Find the cheapest instance of each index and store it. + for (size_t i = 1; i < heap_tail_; i++) { + if (heap_[i].elem_ptr == nullptr) { + continue; + } + + if (!heap_[i].elem_ptr->index.is_valid()) { + free(heap_[i].elem_ptr); + heap_[i].elem_ptr = nullptr; + continue; + } + + auto idx = size_t(heap_[i].elem_ptr->index); + + VTR_ASSERT(idx < max_index_); + + if (best_heap_item[idx].elem_ptr == nullptr || best_heap_item[idx].cost > heap_[i].cost) { + best_heap_item[idx] = heap_[i]; + } + } + + // Free unused nodes. + for (size_t i = 1; i < heap_tail_; i++) { + if (heap_[i].elem_ptr == nullptr) { + continue; + } + + auto idx = size_t(heap_[i].elem_ptr->index); + + if (best_heap_item[idx].elem_ptr != heap_[i].elem_ptr) { + free(heap_[i].elem_ptr); + heap_[i].elem_ptr = nullptr; + } + } + + heap_tail_ = 1; + + for (size_t i = 0; i < max_index_; ++i) { + if (best_heap_item[i].elem_ptr != nullptr) { + heap_[heap_tail_++] = best_heap_item[i]; + } + } +} diff --git a/vpr/src/route/k_ary_heap.h b/vpr/src/route/k_ary_heap.h new file mode 100644 index 00000000000..fb0e8763fdf --- /dev/null +++ b/vpr/src/route/k_ary_heap.h @@ -0,0 +1,125 @@ +#ifndef VTR_K_ARY_HEAP_H +#define VTR_K_ARY_HEAP_H + +#include "heap_type.h" +#include + +/** + * @brief Abstract class whose children are HeapInterface implementations of a k-ary minheap. + */ +class KAryHeap : public HeapInterface { + public: + KAryHeap(); + ~KAryHeap(); + + t_heap* alloc() final; + void free(t_heap* hptr) final; + + void init_heap(const DeviceGrid& grid) final; + void add_to_heap(t_heap* hptr) final; + void push_back(t_heap* const hptr) final; + bool is_empty_heap() const final; + void empty_heap() final; + void build_heap() final; + void set_prune_limit(size_t max_index, size_t prune_limit) final; + void free_all_memory() final; + + virtual bool is_valid() const = 0; + virtual t_heap* get_heap_head() = 0; + + protected: + /** + * @brief The struct which the heap_ vector contains. + * + * @details + * Previously, heap_ was made of only t_heap pointers. This meant that + * all comparisons required dereferencing to attain the element's cost. + * Now, the cost is attained by dereferencing only once in add_to_heap(). + * This resulted in a slightly larger memory footprint but a ~1.4% runtime + * improvement. + * + * @param elem_ptr A pointer to the t_heap struct which contains all + * the node's information. + * @param cost The cost of the node. + * + * @todo + * We are currently storing the node cost in two places (in elem_ptr->cost and cost). This might be fixed in two ways:
+ * 1. Don't store the cost in t_heap.
+ * 2. Instead of using pointers, use a 32-bit ID. If we do this, we can create a new 8-ary heap, which is likely to be even + * faster as we can fit more heap_elem on one cache line (currently, we can fit 5 as heap_elem is 12 bytes), even with more + * comparisons. + */ + struct heap_elem { + t_heap* elem_ptr; + float cost; + }; + + /** + * @return The number of elements in the heap. + */ + size_t size() const; + + /** + * @brief Sift node up until it satisfies minheap property. + * + * @details + * O(lgn) sifting up to maintain heap property after insertion (should sift + * own when building heap) + * + * @param leaf The heap leaf where node currently resides. + * @param node The node to be sifted up. + */ + void sift_up(size_t leaf, heap_elem const& node); + + /** + * @brief Expands heap by 2 times if it is full. + */ + void expand_heap_if_full(); + + /** + * @brief If the size of the heap is greater than the prune limit, prune the heap. + * + * @return Whether the heap was pruned. + */ + bool check_prune_limit(); + + /** + * @brief Prune the heap. + */ + void prune_heap(); + + /** + * @brief Make a heap rooted at index hole by **sifting down** in O(lgn) time + * + * @param hole + */ + virtual void sift_down(size_t hole) = 0; + + /** + * @param i Heap child node. + * + * @return Heap parent node. + */ + virtual size_t parent(size_t i) const = 0; + + HeapStorage storage_; + + /** + * @details + * heap_ is indexed from [1..heap_size]; the 0th element is unused. For BinaryHeap, this simplifies + * arithmetic in left() and parent() functions. Using a heap beginning at index 0 would simplify + * first_child() and parent() functions in FourAryHeap, but this does not improve runtime. + * + * @todo + * If an 8-ary heap is implemented, experiment with starting at index 0 + */ + std::vector heap_; + + size_t heap_size_; /* Number of slots in the heap array */ + size_t heap_tail_; /* Index of first unused slot in the heap array */ + + size_t max_index_; + size_t prune_limit_; +}; + +#endif // VTR_K_ARY_HEAP_H diff --git a/vpr/src/route/netlist_routers.h b/vpr/src/route/netlist_routers.h index f380e5b6795..448e4f7f76c 100644 --- a/vpr/src/route/netlist_routers.h +++ b/vpr/src/route/netlist_routers.h @@ -17,6 +17,7 @@ #include "NetPinTimingInvalidator.h" #include "binary_heap.h" +#include "four_ary_heap.h" #include "bucket.h" #include "clustered_netlist_utils.h" #include "connection_based_routing_fwd.h" @@ -167,6 +168,20 @@ inline std::unique_ptr make_netlist_router( routing_predictor, choking_spots, is_flat); + } else if (router_opts.router_heap == e_heap_type::FOUR_ARY_HEAP) { + return make_netlist_router_with_heap( + net_list, + router_lookahead, + router_opts, + connections_inf, + net_delay, + netlist_pin_lookup, + timing_info, + pin_timing_invalidator, + budgeting_inf, + routing_predictor, + choking_spots, + is_flat); } else if (router_opts.router_heap == e_heap_type::BUCKET_HEAP_APPROXIMATION) { return make_netlist_router_with_heap( net_list, diff --git a/vpr/src/route/route.cpp b/vpr/src/route/route.cpp index 5a690b1dc55..4ed3ba1c4bc 100644 --- a/vpr/src/route/route.cpp +++ b/vpr/src/route/route.cpp @@ -232,7 +232,7 @@ bool route(const Netlist<>& net_list, int itry_since_last_convergence = -1; // This heap is used for reserve_locally_used_opins. - BinaryHeap small_heap; + FourAryHeap small_heap; small_heap.init_heap(device_ctx.grid); // When RCV is enabled the router will not stop unless negative hold slack is 0 diff --git a/vpr/src/route/router_delay_profiling.cpp b/vpr/src/route/router_delay_profiling.cpp index 96ec2be914a..225efdd413d 100644 --- a/vpr/src/route/router_delay_profiling.cpp +++ b/vpr/src/route/router_delay_profiling.cpp @@ -175,7 +175,7 @@ vtr::vector calculate_all_path_delays_from_rr_node(RRNodeId src /*segment_inf=*/{}, is_flat); - ConnectionRouter router( + ConnectionRouter router( device_ctx.grid, *router_lookahead, device_ctx.rr_graph.rr_nodes(), diff --git a/vpr/src/route/router_delay_profiling.h b/vpr/src/route/router_delay_profiling.h index 542d4e90de4..71753a4cb91 100644 --- a/vpr/src/route/router_delay_profiling.h +++ b/vpr/src/route/router_delay_profiling.h @@ -3,6 +3,7 @@ #include "vpr_types.h" #include "binary_heap.h" +#include "four_ary_heap.h" #include "connection_router.h" #include @@ -45,7 +46,7 @@ class RouterDelayProfiler { private: const Netlist<>& net_list_; RouterStats router_stats_; - ConnectionRouter router_; + ConnectionRouter router_; vtr::NdMatrix min_delays_; // [physical_type_idx][from_layer][to_layer][dx][dy] bool is_flat_; }; diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 9caba404c57..e238accf734 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -1131,7 +1131,7 @@ static void build_rr_graph(const t_graph_type graph_type, "seg = %d (%s), Fc_out = %d, Fc_in = %d.\n", type.name, j, - block_type_pin_index_to_name(&type, j).c_str(), + block_type_pin_index_to_name(&type, j, is_flat).c_str(), k, segment_inf[k].name.c_str(), Fc_out[i][j][k], diff --git a/vpr/src/route/rr_graph2.cpp b/vpr/src/route/rr_graph2.cpp index 48cc553f44b..f77839736a4 100644 --- a/vpr/src/route/rr_graph2.cpp +++ b/vpr/src/route/rr_graph2.cpp @@ -836,7 +836,7 @@ int get_unidir_opin_connections(RRGraphBuilder& rr_graph_builder, rr_edges_to_create.emplace_back(from_rr_node, inc_inode_index, to_switch, false); ++num_edges; - to_switch = (opin_layer == track_layer) ? seg_details[inc_track].arch_opin_switch() : seg_details[dec_track].arch_opin_between_dice_switch(); + to_switch = (opin_layer == track_layer) ? seg_details[dec_track].arch_opin_switch() : seg_details[dec_track].arch_opin_between_dice_switch(); rr_edges_to_create.emplace_back(from_rr_node, dec_inode_index, to_switch, false); ++num_edges; } diff --git a/vpr/src/util/vpr_utils.cpp b/vpr/src/util/vpr_utils.cpp index cd2e9a4c5a4..f2bb42eb6d5 100644 --- a/vpr/src/util/vpr_utils.cpp +++ b/vpr/src/util/vpr_utils.cpp @@ -1369,8 +1369,8 @@ std::vector get_cluster_internal_class_pairs(const AtomLookup& atom_lookup, std::tie(physical_tile, sub_tile, rel_cap, logical_block) = get_cluster_blk_physical_spec(cluster_block_id); class_num_vec.reserve(physical_tile->primitive_class_inf.size()); - const auto& cluster_atoms = *cluster_to_atoms(cluster_block_id); - for (auto atom_blk_id : cluster_atoms) { + const auto& cluster_atoms = cluster_to_atoms(cluster_block_id); + for (AtomBlockId atom_blk_id : cluster_atoms) { auto atom_pb_graph_node = atom_lookup.atom_pb_graph_node(atom_blk_id); auto class_range = get_pb_graph_node_class_physical_range(physical_tile, sub_tile, diff --git a/vpr/test/test_compressed_grid.cpp b/vpr/test/test_compressed_grid.cpp index e1a5a2ba9fc..86c2d1f6600 100644 --- a/vpr/test/test_compressed_grid.cpp +++ b/vpr/test/test_compressed_grid.cpp @@ -228,7 +228,7 @@ TEST_CASE("test_compressed_grid", "[vpr_compressed_grid]") { REQUIRE(grid_loc == t_physical_tile_loc{17, 3, 0}); } - SECTION("Closest mapped location in the compressed grids") { + SECTION("Round to the nearest mapped location in the compressed grid") { t_physical_tile_loc comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx({25, 33, 0}); t_physical_tile_loc grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); REQUIRE(grid_loc == t_physical_tile_loc{25, 33, 0}); @@ -262,6 +262,74 @@ TEST_CASE("test_compressed_grid", "[vpr_compressed_grid]") { REQUIRE(grid_loc == t_physical_tile_loc{98, 98, 0}); } + SECTION("Round down to the closest mapped location in the compressed grid") { + t_physical_tile_loc comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({25, 33, 0}); + t_physical_tile_loc grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{25, 33, 0}); + + comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({99, 10, 0}); + grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{76, 7, 0}); + + comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({51, 79, 0}); + grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{42, 72, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({1, 6, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{7, 5, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({81, 38, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{77, 35, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({34, 83, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{27, 80, 0}); + + comp_loc = compressed_grids[small_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({0, 0, 0}); + grid_loc = compressed_grids[small_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{1, 1, 0}); + + comp_loc = compressed_grids[small_logical_type.index].grid_loc_to_compressed_loc_approx_round_down({99, 99, 0}); + grid_loc = compressed_grids[small_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{98, 98, 0}); + } + + SECTION("Round up to the closest mapped location in the compressed grid") { + t_physical_tile_loc comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({25, 33, 0}); + t_physical_tile_loc grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{25, 33, 0}); + + comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({99, 10, 0}); + grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{76, 20, 0}); + + comp_loc = compressed_grids[large_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({51, 79, 0}); + grid_loc = compressed_grids[large_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{59, 85, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({1, 6, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{7, 10, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({81, 38, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{87, 40, 0}); + + comp_loc = compressed_grids[tall_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({34, 83, 0}); + grid_loc = compressed_grids[tall_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{37, 85, 0}); + + comp_loc = compressed_grids[small_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({0, 0, 0}); + grid_loc = compressed_grids[small_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{1, 1, 0}); + + comp_loc = compressed_grids[small_logical_type.index].grid_loc_to_compressed_loc_approx_round_up({99, 99, 0}); + grid_loc = compressed_grids[small_logical_type.index].compressed_loc_to_grid_loc(comp_loc); + REQUIRE(grid_loc == t_physical_tile_loc{98, 98, 0}); + } + } } // namespace \ No newline at end of file diff --git a/vpr/test/test_connection_router.cpp b/vpr/test/test_connection_router.cpp index 1b0c236a29a..9ac8dbdc6ef 100644 --- a/vpr/test/test_connection_router.cpp +++ b/vpr/test/test_connection_router.cpp @@ -54,7 +54,7 @@ static float do_one_route(RRNodeId source_node, segment_inf, is_flat); - ConnectionRouter router( + ConnectionRouter router( device_ctx.grid, *router_lookahead, device_ctx.rr_graph.rr_nodes(), 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 8929f37c221..345703b6226 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 8.75 vpr 64.40 MiB -1 -1 0.23 20820 14 0.32 -1 -1 36636 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 25.9 MiB 0.50 1305 9475 2289 6457 729 64.4 MiB 0.08 0.00 6.52936 -137.86 -6.52936 6.52936 0.95 0.000654721 0.000591261 0.0338329 0.0306193 36 3243 30 6.55708e+06 325485 612192. 2118.31 4.56 0.252899 0.222039 22750 144809 -1 2825 19 1250 3824 208242 47961 6.8823 6.8823 -156.428 -6.8823 0 0 782063. 2706.10 0.34 0.09 0.15 -1 -1 0.34 0.0342584 0.0309298 183 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.75 vpr 64.78 MiB -1 -1 0.25 21092 14 0.36 -1 -1 36388 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 26.2 MiB 0.62 1351 11223 2638 7227 1358 64.8 MiB 0.10 0.00 6.73056 -133.153 -6.73056 6.73056 0.99 0.000705225 0.000643428 0.0391215 0.035697 28 4036 50 6.55708e+06 373705 500653. 1732.36 3.06 0.18859 0.168208 21310 115450 -1 3000 51 2454 7991 1075572 565248 7.01276 7.01276 -153.063 -7.01276 0 0 612192. 2118.31 0.28 0.45 0.11 -1 -1 0.28 0.0828925 0.0743964 184 181 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.26 vpr 64.69 MiB -1 -1 0.21 20404 11 0.28 -1 -1 36492 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 26.1 MiB 0.41 1367 5919 1179 4458 282 64.7 MiB 0.06 0.00 5.78058 -118.397 -5.78058 5.78058 0.99 0.000651119 0.000584191 0.0229667 0.0208258 34 3428 24 6.55708e+06 313430 585099. 2024.56 2.21 0.155841 0.137742 22462 138074 -1 2978 20 1374 4580 249627 58201 6.06278 6.06278 -137.308 -6.06278 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0332583 0.029629 186 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 9.35 vpr 64.84 MiB -1 -1 0.21 20680 12 0.41 -1 -1 36444 -1 -1 30 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 26.5 MiB 0.68 1323 6415 1209 4650 556 64.8 MiB 0.07 0.00 6.54924 -122.486 -6.54924 6.54924 1.02 0.00073744 0.00067424 0.0272449 0.0249881 36 3265 32 6.55708e+06 361650 612192. 2118.31 4.81 0.300258 0.26676 22750 144809 -1 2867 17 1322 4230 234793 53224 6.7993 6.7993 -139.791 -6.7993 0 0 782063. 2706.10 0.34 0.09 0.14 -1 -1 0.34 0.0337031 0.0305619 190 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.65 vpr 64.88 MiB -1 -1 0.24 21064 13 0.35 -1 -1 36788 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 26.4 MiB 0.54 1489 7655 1694 5620 341 64.9 MiB 0.07 0.00 6.4779 -140.597 -6.4779 6.4779 0.99 0.000717777 0.000639794 0.0286069 0.0259501 30 4049 42 6.55708e+06 373705 526063. 1820.29 2.37 0.166593 0.147441 21886 126133 -1 3311 20 1537 4485 236854 54342 6.58844 6.58844 -158.245 -6.58844 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0362586 0.0326286 210 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 9.06 vpr 64.91 MiB -1 -1 0.23 20764 13 0.31 -1 -1 36324 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 26.5 MiB 0.42 1424 11703 2763 7064 1876 64.9 MiB 0.10 0.00 6.4387 -131.425 -6.4387 6.4387 0.98 0.000663526 0.000589847 0.039998 0.0362178 34 3695 34 6.55708e+06 385760 585099. 2024.56 4.89 0.314178 0.275693 22462 138074 -1 3145 17 1257 3910 230145 52712 6.7209 6.7209 -151.13 -6.7209 0 0 742403. 2568.87 0.32 0.09 0.14 -1 -1 0.32 0.031793 0.0288372 198 197 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.41 vpr 64.27 MiB -1 -1 0.19 20076 12 0.24 -1 -1 36504 -1 -1 27 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65808 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 25.7 MiB 0.34 1034 9536 2779 5894 863 64.3 MiB 0.08 0.00 5.83004 -108.556 -5.83004 5.83004 0.98 0.000548333 0.000493933 0.0306204 0.0279009 30 2468 41 6.55708e+06 325485 526063. 1820.29 1.58 0.129366 0.114137 21886 126133 -1 2111 17 1028 2693 127842 30974 6.10964 6.10964 -121.434 -6.10964 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0238501 0.0213349 152 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 15.95 vpr 64.34 MiB -1 -1 0.21 20620 12 0.24 -1 -1 36416 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65884 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1177 9757 2244 6204 1309 64.3 MiB 0.08 0.00 5.19746 -113.682 -5.19746 5.19746 0.94 0.000542445 0.000482651 0.0309448 0.0280347 28 3506 45 6.55708e+06 265210 500653. 1732.36 12.23 0.229221 0.200253 21310 115450 -1 2962 19 1226 3596 265281 61585 5.43986 5.43986 -132.124 -5.43986 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0274696 0.0246789 140 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.95 vpr 64.31 MiB -1 -1 0.21 20320 12 0.20 -1 -1 36636 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 25.9 MiB 0.30 1138 9593 2290 6107 1196 64.3 MiB 0.08 0.00 5.31766 -112.822 -5.31766 5.31766 1.02 0.000580781 0.000530867 0.0310229 0.0284041 34 2743 28 6.55708e+06 313430 585099. 2024.56 2.05 0.152788 0.136443 22462 138074 -1 2436 19 1083 2734 158421 37250 5.99966 5.99966 -135.069 -5.99966 0 0 742403. 2568.87 0.32 0.07 0.14 -1 -1 0.32 0.0266747 0.0239768 150 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 7.84 vpr 64.57 MiB -1 -1 0.20 20492 13 0.24 -1 -1 36372 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 26.1 MiB 0.37 1181 13949 3717 7911 2321 64.6 MiB 0.11 0.00 6.22784 -135.737 -6.22784 6.22784 0.98 0.00054735 0.000496465 0.0436165 0.039558 36 2872 16 6.55708e+06 301375 612192. 2118.31 3.85 0.270247 0.237058 22750 144809 -1 2460 15 1077 2926 166986 38973 6.34804 6.34804 -149.343 -6.34804 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0250947 0.0227805 157 155 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 5.31 vpr 63.90 MiB -1 -1 0.21 20704 12 0.23 -1 -1 36480 -1 -1 24 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65432 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 25.4 MiB 0.32 1042 7835 1833 5075 927 63.9 MiB 0.06 0.00 5.67264 -114.771 -5.67264 5.67264 0.98 0.000512262 0.000465629 0.0242893 0.0221044 28 2903 36 6.55708e+06 289320 500653. 1732.36 1.55 0.119644 0.10582 21310 115450 -1 2455 18 1014 2703 167196 39105 6.18298 6.18298 -136.468 -6.18298 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0234548 0.0209856 132 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.48 vpr 64.12 MiB -1 -1 0.19 20532 12 0.18 -1 -1 36324 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 25.5 MiB 0.31 1159 7268 1564 5252 452 64.1 MiB 0.06 0.00 5.70018 -128.605 -5.70018 5.70018 0.97 0.00056285 0.000513961 0.0237747 0.0216354 34 2865 28 6.55708e+06 265210 585099. 2024.56 3.73 0.200243 0.176874 22462 138074 -1 2502 14 946 2598 152673 35456 6.06078 6.06078 -146.692 -6.06078 0 0 742403. 2568.87 0.32 0.06 0.14 -1 -1 0.32 0.0242532 0.0220475 146 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.57 vpr 64.70 MiB -1 -1 0.24 20968 13 0.32 -1 -1 36016 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1412 13939 3510 8947 1482 64.7 MiB 0.11 0.00 6.60776 -140.256 -6.60776 6.60776 0.96 0.000637552 0.000577901 0.0456211 0.0413292 28 3995 46 6.55708e+06 361650 500653. 1732.36 2.60 0.174303 0.154146 21310 115450 -1 3276 17 1378 3989 274205 61420 7.28976 7.28976 -163.306 -7.28976 0 0 612192. 2118.31 0.29 0.10 0.12 -1 -1 0.29 0.0327449 0.029635 191 188 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 8.25 vpr 64.98 MiB -1 -1 0.24 20612 14 0.38 -1 -1 36536 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 26.4 MiB 0.52 1563 13087 3312 8425 1350 65.0 MiB 0.11 0.00 7.44976 -155.952 -7.44976 7.44976 0.96 0.000660455 0.000584734 0.0460462 0.041489 28 4776 39 6.55708e+06 361650 500653. 1732.36 3.97 0.179064 0.158463 21310 115450 -1 3757 19 1713 4748 299308 68763 7.88875 7.88875 -179.789 -7.88875 0 0 612192. 2118.31 0.27 0.11 0.11 -1 -1 0.27 0.0362698 0.0327498 210 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 10.23 vpr 64.24 MiB -1 -1 0.20 20100 11 0.22 -1 -1 36304 -1 -1 27 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 25.7 MiB 0.29 1027 13933 4563 7052 2318 64.2 MiB 0.10 0.00 5.53818 -107.413 -5.53818 5.53818 0.99 0.000568968 0.000503615 0.0410701 0.0371831 28 3089 50 6.55708e+06 325485 500653. 1732.36 6.48 0.221974 0.194647 21310 115450 -1 2565 23 1224 3396 295318 89153 6.01898 6.01898 -127.013 -6.01898 0 0 612192. 2118.31 0.27 0.11 0.11 -1 -1 0.27 0.0310815 0.0278827 147 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.65 vpr 64.77 MiB -1 -1 0.23 20628 12 0.35 -1 -1 36644 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 26.4 MiB 0.45 1403 8533 2108 5372 1053 64.8 MiB 0.09 0.00 6.03124 -123.067 -6.03124 6.03124 0.98 0.000713277 0.000647501 0.0319667 0.0290109 46 3431 23 6.55708e+06 397815 782063. 2706.10 3.32 0.206126 0.181892 24766 183262 -1 2832 19 1384 4641 217792 52223 6.31084 6.31084 -139.767 -6.31084 0 0 958460. 3316.47 0.41 0.09 0.18 -1 -1 0.41 0.0358249 0.0324141 209 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 9.53 vpr 64.76 MiB -1 -1 0.23 20680 14 0.31 -1 -1 36428 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 26.2 MiB 0.37 1487 13743 3679 8586 1478 64.8 MiB 0.12 0.00 6.22784 -133.565 -6.22784 6.22784 0.96 0.000632464 0.000574422 0.0462363 0.0419461 40 3151 18 6.55708e+06 349595 666494. 2306.21 4.97 0.291474 0.257483 23614 160646 -1 3009 47 2002 7150 1128163 640229 6.54924 6.54924 -149.734 -6.54924 0 0 872365. 3018.56 0.38 0.46 0.16 -1 -1 0.38 0.0750844 0.0673129 184 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.17 vpr 64.25 MiB -1 -1 0.21 20460 12 0.20 -1 -1 36252 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.41 1168 9687 2742 6169 776 64.2 MiB 0.08 0.00 5.8423 -132.957 -5.8423 5.8423 0.98 0.0005575 0.0005073 0.0309814 0.0281091 32 2998 27 6.55708e+06 277265 554710. 1919.41 1.25 0.125873 0.111941 22174 131602 -1 2621 14 957 2613 166231 38344 6.3231 6.3231 -154.703 -6.3231 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0232133 0.0211229 140 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.35 vpr 63.67 MiB -1 -1 0.17 20376 10 0.12 -1 -1 36560 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65200 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 25.2 MiB 0.19 771 9042 2031 6495 516 63.7 MiB 0.06 0.00 4.52206 -103.266 -4.52206 4.52206 0.98 0.0003911 0.000356137 0.0241625 0.0220297 28 2021 16 6.55708e+06 192880 500653. 1732.36 0.94 0.0804745 0.0713135 21310 115450 -1 1699 13 675 1629 90463 22606 4.88266 4.88266 -122.258 -4.88266 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0156038 0.0140883 91 84 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.95 vpr 64.26 MiB -1 -1 0.21 20452 13 0.22 -1 -1 36228 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 25.9 MiB 0.47 1051 8727 2150 5652 925 64.3 MiB 0.07 0.00 6.05818 -124.146 -6.05818 6.05818 0.98 0.000528196 0.000474392 0.0282802 0.0257104 30 2717 21 6.55708e+06 289320 526063. 1820.29 4.01 0.194257 0.169861 21886 126133 -1 2266 16 1146 3025 146539 35221 6.17838 6.17838 -139.951 -6.17838 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0252689 0.0228313 144 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 8.05 vpr 64.97 MiB -1 -1 0.24 20748 13 0.35 -1 -1 36416 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 26.4 MiB 0.51 1492 6143 1128 4748 267 65.0 MiB 0.06 0.00 6.57056 -132.132 -6.57056 6.57056 0.94 0.000690562 0.00062649 0.0237612 0.0215696 38 3330 19 6.55708e+06 373705 638502. 2209.35 3.82 0.258445 0.226652 23326 155178 -1 2840 17 1179 3727 176263 40833 7.33096 7.33096 -152.254 -7.33096 0 0 851065. 2944.86 0.35 0.08 0.15 -1 -1 0.35 0.031866 0.0287912 211 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 10.01 vpr 64.69 MiB -1 -1 0.24 20812 13 0.36 -1 -1 36900 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 26.3 MiB 0.54 1502 6211 1232 4757 222 64.7 MiB 0.07 0.00 6.3185 -137.624 -6.3185 6.3185 0.98 0.000749034 0.000671162 0.0255278 0.0232328 44 3436 24 6.55708e+06 325485 742403. 2568.87 5.56 0.287002 0.255158 24478 177802 -1 3133 17 1358 4605 264908 58119 6.7601 6.7601 -152.927 -6.7601 0 0 937218. 3242.97 0.41 0.10 0.18 -1 -1 0.41 0.0348672 0.0317662 194 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 6.28 vpr 63.72 MiB -1 -1 0.16 20312 9 0.11 -1 -1 36076 -1 -1 24 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65252 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 25.2 MiB 0.21 717 11118 4147 4951 2020 63.7 MiB 0.06 0.00 4.2302 -80.7906 -4.2302 4.2302 0.95 0.000352233 0.00031914 0.0235821 0.0214986 28 1724 25 6.55708e+06 289320 500653. 1732.36 2.90 0.125446 0.108643 21310 115450 -1 1582 18 601 1508 92415 21183 4.3524 4.3524 -94.657 -4.3524 0 0 612192. 2118.31 0.27 0.04 0.11 -1 -1 0.27 0.0160611 0.0143002 87 69 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.41 vpr 64.43 MiB -1 -1 0.20 20432 13 0.36 -1 -1 36512 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 25.9 MiB 0.30 1374 8603 1996 5232 1375 64.4 MiB 0.09 0.00 6.4825 -128.401 -6.4825 6.4825 0.99 0.000669585 0.000608957 0.0339895 0.0309542 30 3815 27 6.55708e+06 301375 526063. 1820.29 2.37 0.147184 0.131266 21886 126133 -1 2956 32 1293 4209 364401 144743 6.7621 6.7621 -149.04 -6.7621 0 0 666494. 2306.21 0.28 0.15 0.12 -1 -1 0.28 0.0467676 0.041719 193 192 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.59 vpr 63.40 MiB -1 -1 0.16 19856 8 0.11 -1 -1 36256 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64924 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 25.0 MiB 0.15 762 7648 2103 4089 1456 63.4 MiB 0.05 0.00 3.49108 -80.6742 -3.49108 3.49108 0.97 0.000348966 0.000317367 0.0178251 0.0162759 26 1964 43 6.55708e+06 192880 477104. 1650.88 1.26 0.0842688 0.0740552 21022 109990 -1 1672 27 779 1852 218731 94551 3.86594 3.86594 -99.0872 -3.86594 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0219802 0.0193259 77 59 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.59 vpr 64.48 MiB -1 -1 0.21 20544 15 0.29 -1 -1 36740 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 26.0 MiB 0.42 1325 7751 1762 5311 678 64.5 MiB 0.07 0.00 6.9985 -140.814 -6.9985 6.9985 0.97 0.00060823 0.000553418 0.026745 0.0242818 34 3315 33 6.55708e+06 337540 585099. 2024.56 2.51 0.16587 0.145911 22462 138074 -1 3060 20 1491 4330 278417 61779 7.5185 7.5185 -157.549 -7.5185 0 0 742403. 2568.87 0.33 0.10 0.14 -1 -1 0.33 0.0327122 0.0293793 165 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.63 vpr 64.55 MiB -1 -1 0.21 20456 13 0.29 -1 -1 36396 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 26.0 MiB 0.33 1313 6723 1380 4779 564 64.6 MiB 0.06 0.00 5.93858 -133.8 -5.93858 5.93858 0.98 0.000612384 0.000556586 0.0240469 0.0219437 34 3373 35 6.55708e+06 313430 585099. 2024.56 2.67 0.176035 0.155755 22462 138074 -1 2839 18 1228 3471 194892 45438 6.41938 6.41938 -152.998 -6.41938 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0295415 0.0266968 168 165 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.60 vpr 64.47 MiB -1 -1 0.22 20944 13 0.34 -1 -1 36344 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1280 15213 4267 8901 2045 64.5 MiB 0.12 0.00 6.4779 -136.184 -6.4779 6.4779 0.98 0.000648311 0.000580765 0.0504516 0.0455061 30 3382 49 6.55708e+06 349595 526063. 1820.29 1.62 0.185591 0.164519 21886 126133 -1 2753 20 1448 4280 195825 47599 6.5217 6.5217 -150.365 -6.5217 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0350567 0.0316001 187 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 15.28 vpr 64.13 MiB -1 -1 0.20 20348 12 0.20 -1 -1 36352 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65672 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 25.8 MiB 0.39 1193 6231 1379 4604 248 64.1 MiB 0.06 0.00 5.57998 -124.411 -5.57998 5.57998 0.96 0.00055335 0.000508079 0.0208727 0.0190001 36 3092 21 6.55708e+06 277265 612192. 2118.31 11.41 0.23564 0.205255 22750 144809 -1 2566 16 1053 3021 165870 38725 5.70018 5.70018 -137.004 -5.70018 0 0 782063. 2706.10 0.32 0.07 0.15 -1 -1 0.32 0.0240218 0.0216124 147 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.15 vpr 64.11 MiB -1 -1 0.20 20396 11 0.19 -1 -1 36536 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65644 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 25.6 MiB 0.24 879 12175 3931 5728 2516 64.1 MiB 0.09 0.00 5.26058 -108.974 -5.26058 5.26058 0.95 0.000487768 0.000441697 0.0347378 0.031368 28 2665 23 6.55708e+06 277265 500653. 1732.36 1.54 0.110917 0.0978518 21310 115450 -1 2252 20 1044 2681 168004 40330 5.85132 5.85132 -131.581 -5.85132 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0256026 0.0229417 131 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 7.18 vpr 63.97 MiB -1 -1 0.20 20172 11 0.22 -1 -1 36344 -1 -1 28 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 25.6 MiB 0.51 1040 9448 2328 5605 1515 64.0 MiB 0.08 0.00 5.29978 -104.646 -5.29978 5.29978 0.98 0.000525716 0.000477444 0.0289089 0.0263045 28 2850 22 6.55708e+06 337540 500653. 1732.36 3.23 0.185394 0.162937 21310 115450 -1 2424 19 1150 3069 171376 40979 5.54018 5.54018 -123.762 -5.54018 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0263489 0.0236347 150 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 7.60 vpr 64.47 MiB -1 -1 0.19 20624 12 0.24 -1 -1 36668 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1316 5919 1228 4278 413 64.5 MiB 0.06 0.00 5.9619 -132.673 -5.9619 5.9619 0.99 0.000648085 0.000583321 0.0223146 0.0203694 28 3491 33 6.55708e+06 313430 500653. 1732.36 3.81 0.252289 0.22319 21310 115450 -1 3056 16 1348 3452 193430 46479 6.6831 6.6831 -161.735 -6.6831 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0293946 0.0266412 181 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 5.49 vpr 64.42 MiB -1 -1 0.20 20400 12 0.20 -1 -1 36492 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 26.1 MiB 0.72 978 5756 1096 4515 145 64.4 MiB 0.05 0.00 5.95024 -119.216 -5.95024 5.95024 0.97 0.000540398 0.000481716 0.0197853 0.0177915 30 2749 27 6.55708e+06 277265 526063. 1820.29 1.34 0.110661 0.0977451 21886 126133 -1 2180 18 1138 3146 142832 35430 6.0037 6.0037 -133.555 -6.0037 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0264054 0.023778 149 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 9.93 vpr 64.20 MiB -1 -1 0.20 20548 10 0.18 -1 -1 36080 -1 -1 22 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65736 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 25.7 MiB 0.20 1058 6563 1604 4377 582 64.2 MiB 0.06 0.00 4.79906 -103.748 -4.79906 4.79906 1.00 0.000559101 0.000501657 0.0224826 0.0203964 28 2626 42 6.55708e+06 265210 500653. 1732.36 6.29 0.22643 0.199658 21310 115450 -1 2238 17 821 2434 134361 31048 5.36086 5.36086 -123.396 -5.36086 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0258099 0.0233095 137 131 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 16.29 vpr 64.80 MiB -1 -1 0.24 21084 13 0.37 -1 -1 36424 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1568 8735 2118 5987 630 64.8 MiB 0.09 0.00 6.5563 -141.268 -6.5563 6.5563 0.96 0.000725244 0.000652687 0.033856 0.0306489 30 4096 23 6.55708e+06 373705 526063. 1820.29 12.25 0.316627 0.278339 21886 126133 -1 3393 19 1468 4606 241935 55007 6.7967 6.7967 -159.619 -6.7967 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0358423 0.032117 221 220 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 7.35 vpr 64.46 MiB -1 -1 0.23 21208 14 0.41 -1 -1 36316 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 26.1 MiB 0.62 1455 8372 2159 5319 894 64.5 MiB 0.08 0.00 6.33378 -141.2 -6.33378 6.33378 0.98 0.000680231 0.000619371 0.0312271 0.028391 36 3605 19 6.55708e+06 337540 612192. 2118.31 2.87 0.190566 0.168036 22750 144809 -1 3220 18 1423 4209 243314 54837 6.77538 6.77538 -163.451 -6.77538 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0322009 0.0291436 191 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 14.00 vpr 64.12 MiB -1 -1 0.20 20448 12 0.19 -1 -1 36240 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 25.8 MiB 0.28 1145 14375 4034 7984 2357 64.1 MiB 0.10 0.00 6.0821 -122.829 -6.0821 6.0821 1.01 0.000544285 0.000493098 0.0412687 0.0374705 30 2890 40 6.55708e+06 349595 526063. 1820.29 10.12 0.294203 0.257102 21886 126133 -1 2348 30 1020 2922 358545 162264 6.3617 6.3617 -139.411 -6.3617 0 0 666494. 2306.21 0.30 0.15 0.12 -1 -1 0.30 0.0386942 0.0345768 156 148 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.66 vpr 65.07 MiB -1 -1 0.26 20880 12 0.35 -1 -1 36184 -1 -1 33 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 26.5 MiB 0.50 1549 9075 2190 5868 1017 65.1 MiB 0.09 0.00 6.2793 -131.706 -6.2793 6.2793 0.98 0.000719612 0.000653247 0.0341263 0.031051 30 3541 18 6.55708e+06 397815 526063. 1820.29 1.33 0.135888 0.120784 21886 126133 -1 3141 28 1447 4271 364533 143124 6.5197 6.5197 -150.558 -6.5197 0 0 666494. 2306.21 0.29 0.16 0.12 -1 -1 0.29 0.0482466 0.0433397 218 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 8.70 vpr 64.64 MiB -1 -1 0.25 20892 14 0.43 -1 -1 37088 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 26.2 MiB 0.37 1514 10442 2734 6429 1279 64.6 MiB 0.10 0.00 6.89962 -138.519 -6.89962 6.89962 0.99 0.000699363 0.000633448 0.0398651 0.0361603 34 3742 26 6.55708e+06 349595 585099. 2024.56 4.44 0.321227 0.284079 22462 138074 -1 3190 17 1537 4552 246120 58202 7.34122 7.34122 -159.612 -7.34122 0 0 742403. 2568.87 0.32 0.10 0.14 -1 -1 0.32 0.0376377 0.0341851 202 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 12.47 vpr 64.52 MiB -1 -1 0.26 21068 13 0.33 -1 -1 36368 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 25.9 MiB 0.43 1453 11923 3326 7688 909 64.5 MiB 0.11 0.00 6.3995 -134.539 -6.3995 6.3995 0.98 0.000661954 0.000603618 0.0421931 0.0383629 30 3939 29 6.55708e+06 337540 526063. 1820.29 8.31 0.263857 0.232407 21886 126133 -1 3109 21 1473 4239 209891 48764 7.01778 7.01778 -156.662 -7.01778 0 0 666494. 2306.21 0.30 0.09 0.12 -1 -1 0.30 0.0329875 0.029518 185 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.73 vpr 64.63 MiB -1 -1 0.23 20644 13 0.33 -1 -1 36564 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 26.1 MiB 0.45 1292 14147 3945 7776 2426 64.6 MiB 0.12 0.00 5.86924 -114.846 -5.86924 5.86924 0.98 0.000620724 0.000564344 0.0485298 0.0440128 30 3768 28 6.55708e+06 313430 526063. 1820.29 2.47 0.155231 0.137829 21886 126133 -1 2892 32 1756 6471 474372 148572 6.19064 6.19064 -136.094 -6.19064 0 0 666494. 2306.21 0.28 0.18 0.12 -1 -1 0.28 0.0498141 0.0446306 179 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 7.38 vpr 64.48 MiB -1 -1 0.20 20448 12 0.23 -1 -1 36540 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1242 5743 1096 4296 351 64.5 MiB 0.06 0.00 5.71184 -117.407 -5.71184 5.71184 0.99 0.000615584 0.000560092 0.0217762 0.0198907 30 2894 31 6.55708e+06 289320 526063. 1820.29 3.60 0.245153 0.216988 21886 126133 -1 2554 16 1158 3483 169174 39813 6.19264 6.19264 -139.181 -6.19264 0 0 666494. 2306.21 0.30 0.07 0.12 -1 -1 0.30 0.0290275 0.0263363 171 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.99 vpr 65.16 MiB -1 -1 0.27 21800 14 0.50 -1 -1 36704 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 26.5 MiB 0.50 1693 8735 1854 6352 529 65.2 MiB 0.09 0.00 6.92716 -149.269 -6.92716 6.92716 0.98 0.000766879 0.000683342 0.0351809 0.0317928 34 4500 40 6.55708e+06 373705 585099. 2024.56 4.41 0.24741 0.217863 22462 138074 -1 3810 25 1544 5277 498999 181399 7.3983 7.3983 -170.272 -7.3983 0 0 742403. 2568.87 0.34 0.18 0.14 -1 -1 0.34 0.0484342 0.0436795 230 229 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.62 vpr 64.36 MiB -1 -1 0.20 20340 11 0.24 -1 -1 36324 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 25.9 MiB 0.43 1215 14543 4258 7926 2359 64.4 MiB 0.11 0.00 5.41998 -118.192 -5.41998 5.41998 0.98 0.000595518 0.000539746 0.0433682 0.0393764 30 3285 21 6.55708e+06 313430 526063. 1820.29 1.70 0.131141 0.116402 21886 126133 -1 2626 17 1226 3634 176567 41799 5.74138 5.74138 -136.061 -5.74138 0 0 666494. 2306.21 0.29 0.07 0.13 -1 -1 0.29 0.0274982 0.0248227 163 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 7.82 vpr 65.03 MiB -1 -1 0.24 21092 13 0.34 -1 -1 36540 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 26.5 MiB 0.43 1318 8251 1929 5434 888 65.0 MiB 0.08 0.00 6.4381 -127.269 -6.4381 6.4381 0.98 0.000636486 0.000576586 0.0300518 0.0273167 28 3810 41 6.55708e+06 337540 500653. 1732.36 3.74 0.158566 0.140685 21310 115450 -1 3191 17 1302 4333 268566 59800 6.8797 6.8797 -150.663 -6.8797 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0305669 0.0275799 193 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 8.04 vpr 64.79 MiB -1 -1 0.22 20960 12 0.33 -1 -1 36440 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 26.3 MiB 0.55 1565 14793 4256 8328 2209 64.8 MiB 0.13 0.00 5.91304 -127.426 -5.91304 5.91304 0.97 0.000722563 0.000650372 0.0532314 0.048014 36 3994 32 6.55708e+06 349595 612192. 2118.31 3.71 0.241448 0.213698 22750 144809 -1 3273 19 1464 4958 275497 62686 6.18298 6.18298 -143.379 -6.18298 0 0 782063. 2706.10 0.34 0.10 0.14 -1 -1 0.34 0.0357202 0.0323456 210 208 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 6.32 vpr 64.67 MiB -1 -1 0.20 20384 13 0.31 -1 -1 36316 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 26.1 MiB 0.32 1284 6813 1378 4809 626 64.7 MiB 0.07 0.00 6.38724 -131.296 -6.38724 6.38724 1.00 0.000641612 0.000576708 0.024611 0.0223181 28 3714 26 6.55708e+06 349595 500653. 1732.36 2.42 0.13116 0.116645 21310 115450 -1 3058 16 1239 3554 209148 47871 6.87064 6.87064 -156.51 -6.87064 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0298039 0.0270838 183 177 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 16.60 vpr 64.57 MiB -1 -1 0.23 20788 13 0.27 -1 -1 36936 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 26.1 MiB 0.37 1388 6723 1519 4586 618 64.6 MiB 0.07 0.00 5.81838 -131.133 -5.81838 5.81838 0.99 0.000624314 0.000567643 0.0254456 0.0230858 28 3805 43 6.55708e+06 313430 500653. 1732.36 12.63 0.232463 0.204553 21310 115450 -1 3150 21 1367 4061 346725 107415 6.17898 6.17898 -153.077 -6.17898 0 0 612192. 2118.31 0.28 0.12 0.12 -1 -1 0.28 0.0346779 0.0311732 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.09 vpr 64.89 MiB -1 -1 0.23 20784 12 0.31 -1 -1 36636 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 26.5 MiB 0.53 1506 9040 2318 6054 668 64.9 MiB 0.09 0.00 5.90844 -131.606 -5.90844 5.90844 0.99 0.000684363 0.000622258 0.033445 0.0302426 30 3491 22 6.55708e+06 361650 526063. 1820.29 1.85 0.151031 0.134797 21886 126133 -1 3054 16 1229 4378 208932 48020 6.50944 6.50944 -151.766 -6.50944 0 0 666494. 2306.21 0.30 0.08 0.12 -1 -1 0.30 0.0324537 0.0295015 197 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 9.35 vpr 64.82 MiB -1 -1 0.24 21124 13 0.37 -1 -1 37036 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 26.4 MiB 0.50 1631 7439 1501 5330 608 64.8 MiB 0.08 0.00 6.42904 -137.905 -6.42904 6.42904 0.94 0.000709395 0.000634941 0.0285045 0.025753 36 4186 34 6.55708e+06 373705 612192. 2118.31 5.05 0.221218 0.194869 22750 144809 -1 3395 24 1959 6289 333852 75193 6.99084 6.99084 -160.282 -6.99084 0 0 782063. 2706.10 0.33 0.12 0.14 -1 -1 0.33 0.0440883 0.0396355 212 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 16.70 vpr 64.57 MiB -1 -1 0.21 20368 14 0.34 -1 -1 36372 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1310 9643 2648 6001 994 64.6 MiB 0.08 0.00 6.92976 -138.957 -6.92976 6.92976 0.96 0.000605034 0.000550521 0.0333066 0.0302466 28 3841 32 6.55708e+06 289320 500653. 1732.36 12.75 0.227868 0.200008 21310 115450 -1 3160 23 1563 4987 333892 82448 7.5185 7.5185 -166.55 -7.5185 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0378562 0.0341386 168 167 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 8.63 vpr 64.70 MiB -1 -1 0.22 20536 13 0.33 -1 -1 36656 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 26.3 MiB 0.43 1450 8401 1821 5706 874 64.7 MiB 0.08 0.00 6.57316 -134.834 -6.57316 6.57316 0.98 0.000661507 0.00059945 0.0303407 0.0275546 44 3358 25 6.55708e+06 361650 742403. 2568.87 4.40 0.261073 0.230119 24478 177802 -1 2800 16 1233 3767 191504 43521 7.13296 7.13296 -152.015 -7.13296 0 0 937218. 3242.97 0.39 0.07 0.18 -1 -1 0.39 0.0290135 0.0261639 198 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 6.97 vpr 65.01 MiB -1 -1 0.25 20756 13 0.35 -1 -1 36548 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 26.4 MiB 0.33 1455 7975 1649 5433 893 65.0 MiB 0.08 0.00 6.3603 -133.574 -6.3603 6.3603 0.95 0.000703316 0.000635159 0.0295384 0.02673 36 3560 18 6.55708e+06 373705 612192. 2118.31 2.89 0.196415 0.173227 22750 144809 -1 3198 17 1493 4448 251518 58577 6.55124 6.55124 -150.759 -6.55124 0 0 782063. 2706.10 0.34 0.09 0.15 -1 -1 0.34 0.0331799 0.0300008 213 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 15.64 vpr 64.97 MiB -1 -1 0.24 20976 12 0.37 -1 -1 36564 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 26.4 MiB 0.34 1470 11863 2975 7139 1749 65.0 MiB 0.11 0.00 6.1219 -131.533 -6.1219 6.1219 0.97 0.000739621 0.000676397 0.0423714 0.0384554 28 4507 36 6.55708e+06 397815 500653. 1732.36 11.47 0.274596 0.241784 21310 115450 -1 3679 30 2135 5929 457148 130025 6.4015 6.4015 -154.245 -6.4015 0 0 612192. 2118.31 0.29 0.17 0.11 -1 -1 0.29 0.0486138 0.0434263 216 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 7.61 vpr 64.02 MiB -1 -1 0.18 20424 11 0.16 -1 -1 36492 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65560 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 25.6 MiB 0.29 1086 8804 2031 5408 1365 64.0 MiB 0.07 0.00 5.20912 -107.655 -5.20912 5.20912 0.98 0.000504254 0.000456082 0.0283988 0.025777 28 2790 22 6.55708e+06 216990 500653. 1732.36 3.97 0.205326 0.180026 21310 115450 -1 2469 20 1077 2803 176381 40833 5.48366 5.48366 -135.361 -5.48366 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0251874 0.0225153 125 121 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 10.46 vpr 64.41 MiB -1 -1 0.22 20688 13 0.27 -1 -1 36360 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 26.0 MiB 0.43 1252 9838 2209 6020 1609 64.4 MiB 0.08 0.00 6.26704 -133.589 -6.26704 6.26704 0.93 0.000587048 0.000533163 0.0328908 0.0298932 30 3161 20 6.55708e+06 289320 526063. 1820.29 6.55 0.204648 0.180218 21886 126133 -1 2429 15 1011 2759 130051 30831 6.50744 6.50744 -148.253 -6.50744 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.026139 0.0237039 161 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 8.50 vpr 65.21 MiB -1 -1 0.24 21280 14 0.54 -1 -1 36480 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 26.8 MiB 0.31 1678 7645 1538 5658 449 65.2 MiB 0.08 0.00 7.13802 -144.226 -7.13802 7.13802 0.99 0.000778359 0.000712877 0.0304888 0.0276817 30 4674 24 6.55708e+06 397815 526063. 1820.29 4.24 0.300158 0.264448 21886 126133 -1 3504 17 1725 5454 266876 62122 7.37842 7.37842 -164.642 -7.37842 0 0 666494. 2306.21 0.29 0.10 0.12 -1 -1 0.29 0.0384072 0.0349218 245 243 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 8.32 vpr 64.64 MiB -1 -1 0.23 20696 13 0.36 -1 -1 36708 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.1 MiB 0.47 1464 6415 1327 4565 523 64.6 MiB 0.07 0.00 6.3557 -142.114 -6.3557 6.3557 0.99 0.000652136 0.000589224 0.0246336 0.0223634 36 3664 30 6.55708e+06 325485 612192. 2118.31 4.08 0.276118 0.244645 22750 144809 -1 2981 14 1195 3413 186276 42397 6.8365 6.8365 -161.23 -6.8365 0 0 782063. 2706.10 0.34 0.08 0.14 -1 -1 0.34 0.02893 0.0263568 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.66 vpr 64.12 MiB -1 -1 0.20 20724 11 0.21 -1 -1 36500 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 25.6 MiB 0.21 1031 12733 3633 7511 1589 64.1 MiB 0.09 0.00 5.48612 -115.818 -5.48612 5.48612 0.98 0.000526042 0.000475577 0.0373298 0.0337935 28 2692 44 6.55708e+06 277265 500653. 1732.36 1.98 0.135119 0.118676 21310 115450 -1 2324 22 985 2926 250877 87803 5.85898 5.85898 -135.101 -5.85898 0 0 612192. 2118.31 0.28 0.10 0.12 -1 -1 0.28 0.0297873 0.0266736 139 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 20.00 vpr 65.11 MiB -1 -1 0.26 21612 15 0.66 -1 -1 36764 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 26.9 MiB 0.38 1736 8423 1815 6098 510 65.1 MiB 0.09 0.00 7.89901 -156.348 -7.89901 7.89901 0.95 0.000891908 0.000802594 0.0371136 0.0334689 30 5118 40 6.55708e+06 409870 526063. 1820.29 15.45 0.341607 0.300651 21886 126133 -1 3785 29 1918 6054 471742 177868 8.21781 8.21781 -177.632 -8.21781 0 0 666494. 2306.21 0.28 0.18 0.13 -1 -1 0.28 0.0545621 0.0488656 257 256 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.70 vpr 65.00 MiB -1 -1 0.23 20708 13 0.40 -1 -1 36360 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 26.5 MiB 0.37 1505 5888 1126 4279 483 65.0 MiB 0.06 0.00 6.41116 -132.676 -6.41116 6.41116 1.02 0.000776058 0.000708449 0.0252365 0.0230013 34 3542 26 6.55708e+06 337540 585099. 2024.56 4.50 0.310118 0.275151 22462 138074 -1 3091 20 1315 3995 225811 52831 7.31164 7.31164 -163.027 -7.31164 0 0 742403. 2568.87 0.33 0.10 0.14 -1 -1 0.33 0.0389102 0.0352189 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.37 vpr 64.24 MiB -1 -1 0.18 20132 11 0.16 -1 -1 36632 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 25.7 MiB 0.37 1150 11804 3166 7215 1423 64.2 MiB 0.09 0.00 5.24832 -114.705 -5.24832 5.24832 0.98 0.000529172 0.000480691 0.035461 0.0322519 28 3053 21 6.55708e+06 265210 500653. 1732.36 1.60 0.114655 0.101733 21310 115450 -1 2651 17 1149 3270 196538 44748 5.60892 5.60892 -137.872 -5.60892 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0230355 0.0206505 141 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 12.95 vpr 65.14 MiB -1 -1 0.22 20980 12 0.37 -1 -1 36304 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 26.5 MiB 0.53 1453 9253 2133 6198 922 65.1 MiB 0.09 0.00 6.4407 -128.315 -6.4407 6.4407 0.98 0.000706023 0.000641003 0.0355159 0.032268 30 3696 29 6.55708e+06 361650 526063. 1820.29 8.70 0.292849 0.259889 21886 126133 -1 3030 19 1525 4964 245996 56155 6.7229 6.7229 -145.72 -6.7229 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0355654 0.0320562 213 210 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.69 vpr 64.48 MiB -1 -1 0.18 20376 12 0.24 -1 -1 36332 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1251 12753 3201 7447 2105 64.5 MiB 0.10 0.00 6.02924 -127.779 -6.02924 6.02924 0.94 0.000577277 0.000524284 0.040315 0.0365404 28 3295 29 6.55708e+06 313430 500653. 1732.36 1.72 0.137156 0.12172 21310 115450 -1 2931 17 1193 3376 206263 47434 6.42904 6.42904 -152.224 -6.42904 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0270692 0.0245513 153 148 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.60 vpr 64.46 MiB -1 -1 0.20 20456 12 0.23 -1 -1 36252 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 25.9 MiB 0.24 992 7823 1908 4654 1261 64.5 MiB 0.07 0.00 5.82944 -115.735 -5.82944 5.82944 0.97 0.000545435 0.000488206 0.0270922 0.0245797 26 2940 41 6.55708e+06 253155 477104. 1650.88 1.94 0.127441 0.112162 21022 109990 -1 2420 18 1074 3210 202373 46425 6.79104 6.79104 -143.924 -6.79104 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0264708 0.0237934 140 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.00 vpr 64.62 MiB -1 -1 0.25 20920 12 0.35 -1 -1 36388 -1 -1 31 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1365 6923 1406 5081 436 64.6 MiB 0.07 0.00 5.98178 -110.428 -5.98178 5.98178 0.97 0.000665912 0.000588854 0.0258718 0.0235122 34 3478 39 6.55708e+06 373705 585099. 2024.56 2.96 0.188269 0.166434 22462 138074 -1 3149 19 1316 4377 261058 58744 6.10198 6.10198 -124.336 -6.10198 0 0 742403. 2568.87 0.32 0.09 0.14 -1 -1 0.32 0.0333872 0.0301711 191 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 13.20 vpr 65.13 MiB -1 -1 0.24 20844 13 0.42 -1 -1 36420 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 26.5 MiB 0.70 1655 8533 1730 5988 815 65.1 MiB 0.08 0.00 6.64956 -144.479 -6.64956 6.64956 0.96 0.000699918 0.000626423 0.0324886 0.0294824 30 4238 47 6.55708e+06 397815 526063. 1820.29 8.72 0.3371 0.295563 21886 126133 -1 3557 20 1866 5263 273546 62400 7.1599 7.1599 -166.842 -7.1599 0 0 666494. 2306.21 0.30 0.11 0.12 -1 -1 0.30 0.0401414 0.0362589 238 235 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 7.08 vpr 64.54 MiB -1 -1 0.23 20732 12 0.29 -1 -1 36648 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 26.2 MiB 0.51 1432 13893 3910 8108 1875 64.5 MiB 0.12 0.00 6.2415 -124.275 -6.2415 6.2415 0.99 0.000692357 0.000628765 0.0484321 0.0440643 38 3351 18 6.55708e+06 385760 638502. 2209.35 2.78 0.228146 0.203457 23326 155178 -1 2854 18 1352 4105 197962 45419 6.41818 6.41818 -141.482 -6.41818 0 0 851065. 2944.86 0.36 0.09 0.15 -1 -1 0.36 0.0342551 0.0310216 200 195 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.36 vpr 64.19 MiB -1 -1 0.21 20500 12 0.18 -1 -1 36864 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 25.7 MiB 0.64 1091 5025 982 3533 510 64.2 MiB 0.05 0.00 5.54078 -119.299 -5.54078 5.54078 0.97 0.00050213 0.000456186 0.0167582 0.0152651 30 2540 20 6.55708e+06 241100 526063. 1820.29 3.34 0.17928 0.157002 21886 126133 -1 2231 17 860 2477 114133 27622 5.72772 5.72772 -133.439 -5.72772 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0235747 0.021215 126 119 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 12.08 vpr 64.47 MiB -1 -1 0.22 20544 12 0.27 -1 -1 36404 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 26.1 MiB 0.33 1174 6999 1573 4827 599 64.5 MiB 0.06 0.00 5.77858 -116.505 -5.77858 5.77858 0.96 0.00056865 0.000517604 0.0240497 0.0219258 28 3437 39 6.55708e+06 289320 500653. 1732.36 8.25 0.214302 0.188305 21310 115450 -1 2893 19 1257 3838 225903 51930 6.12952 6.12952 -141.075 -6.12952 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0280255 0.0251957 154 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 8.16 vpr 64.75 MiB -1 -1 0.22 20448 11 0.23 -1 -1 36372 -1 -1 30 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 26.4 MiB 0.18 1242 13961 3883 7687 2391 64.8 MiB 0.11 0.00 5.62118 -109.985 -5.62118 5.62118 0.94 0.000595877 0.000540045 0.0447864 0.0404971 36 3617 49 6.55708e+06 361650 612192. 2118.31 4.39 0.242132 0.213978 22750 144809 -1 2799 14 1212 3778 214920 49987 5.62118 5.62118 -125.445 -5.62118 0 0 782063. 2706.10 0.33 0.08 0.14 -1 -1 0.33 0.0287202 0.0261492 190 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 9.51 vpr 64.31 MiB -1 -1 0.21 20612 11 0.25 -1 -1 36260 -1 -1 27 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.9 MiB 0.19 1200 13527 3638 7996 1893 64.3 MiB 0.10 0.00 5.54218 -102.707 -5.54218 5.54218 0.96 0.000546963 0.000495513 0.042689 0.0386564 28 3219 45 6.55708e+06 325485 500653. 1732.36 5.78 0.25572 0.22438 21310 115450 -1 2792 27 1154 3922 403652 148836 5.80752 5.80752 -121.285 -5.80752 0 0 612192. 2118.31 0.25 0.14 0.11 -1 -1 0.25 0.0373891 0.0332744 172 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 8.07 vpr 64.31 MiB -1 -1 0.22 20380 13 0.27 -1 -1 36464 -1 -1 25 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 26.0 MiB 0.34 1046 5079 1052 3778 249 64.3 MiB 0.05 0.00 6.1219 -115.535 -6.1219 6.1219 0.98 0.000498235 0.000447817 0.0173826 0.0158385 38 2419 18 6.55708e+06 301375 638502. 2209.35 4.13 0.193047 0.168765 23326 155178 -1 2073 16 877 2699 120620 29886 6.3623 6.3623 -127.622 -6.3623 0 0 851065. 2944.86 0.35 0.06 0.16 -1 -1 0.35 0.0246122 0.0222076 148 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 8.44 vpr 64.46 MiB -1 -1 0.20 20996 12 0.25 -1 -1 36516 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 25.9 MiB 0.36 1150 7544 1782 4745 1017 64.5 MiB 0.07 0.00 6.0821 -129.548 -6.0821 6.0821 0.98 0.000601834 0.000546363 0.0258904 0.0235342 36 3069 36 6.55708e+06 337540 612192. 2118.31 4.49 0.262801 0.230744 22750 144809 -1 2488 16 1101 3014 168288 41260 6.5237 6.5237 -150.606 -6.5237 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0274944 0.0248962 174 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 10.46 vpr 64.60 MiB -1 -1 0.21 20464 13 0.36 -1 -1 36456 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1310 4512 797 3365 350 64.6 MiB 0.05 0.00 6.64896 -130.697 -6.64896 6.64896 0.97 0.000681594 0.000617699 0.0178528 0.0162467 26 3881 47 6.55708e+06 325485 477104. 1650.88 6.23 0.256788 0.224999 21022 109990 -1 3038 49 2343 8474 1036289 497268 7.2429 7.2429 -154.92 -7.2429 0 0 585099. 2024.56 0.26 0.38 0.11 -1 -1 0.26 0.0707413 0.0628687 187 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 15.02 vpr 64.80 MiB -1 -1 0.25 21056 14 0.33 -1 -1 36620 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 26.5 MiB 0.31 1319 14168 3745 8192 2231 64.8 MiB 0.12 0.00 6.88996 -134.384 -6.88996 6.88996 1.00 0.000674063 0.000611824 0.0504241 0.04582 28 3852 38 6.55708e+06 337540 500653. 1732.36 10.91 0.292232 0.259305 21310 115450 -1 3152 23 1828 5409 431731 124407 7.53016 7.53016 -163.463 -7.53016 0 0 612192. 2118.31 0.28 0.16 0.11 -1 -1 0.28 0.0430683 0.0389158 196 195 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 12.80 vpr 64.70 MiB -1 -1 0.24 20752 14 0.31 -1 -1 36544 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 26.1 MiB 0.35 1235 8207 2035 5117 1055 64.7 MiB 0.07 0.00 6.58644 -132.185 -6.58644 6.58644 0.96 0.000644203 0.000586282 0.0294069 0.0267538 30 3059 49 6.55708e+06 301375 526063. 1820.29 8.85 0.316228 0.276573 21886 126133 -1 2479 17 1118 3354 166569 39018 6.58644 6.58644 -145.488 -6.58644 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0279061 0.0250592 175 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 8.57 vpr 64.72 MiB -1 -1 0.24 21184 13 0.42 -1 -1 36360 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 26.2 MiB 0.37 1437 6393 1250 4452 691 64.7 MiB 0.07 0.00 6.72996 -135.023 -6.72996 6.72996 0.98 0.000689254 0.000623977 0.0254145 0.0231817 36 3722 23 6.55708e+06 349595 612192. 2118.31 4.36 0.252185 0.220899 22750 144809 -1 3154 18 1418 4240 227440 53172 7.21076 7.21076 -153.256 -7.21076 0 0 782063. 2706.10 0.32 0.09 0.14 -1 -1 0.32 0.0324917 0.0291949 205 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 5.87 vpr 64.38 MiB -1 -1 0.20 20400 13 0.23 -1 -1 36240 -1 -1 24 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 26.0 MiB 0.51 1184 6134 1255 4418 461 64.4 MiB 0.06 0.00 6.14684 -124.956 -6.14684 6.14684 0.97 0.000541482 0.00049178 0.0209018 0.0190726 28 3099 37 6.55708e+06 289320 500653. 1732.36 1.92 0.123795 0.109546 21310 115450 -1 2582 16 1169 3154 171598 41297 6.74784 6.74784 -148.469 -6.74784 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0245072 0.0220173 147 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.02 vpr 64.89 MiB -1 -1 0.24 20712 13 0.54 -1 -1 36428 -1 -1 32 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 26.5 MiB 0.40 1516 6697 1322 4832 543 64.9 MiB 0.07 0.00 6.56856 -135.645 -6.56856 6.56856 0.99 0.00071645 0.000650001 0.0261896 0.0237128 36 3690 26 6.55708e+06 385760 612192. 2118.31 2.64 0.189943 0.169125 22750 144809 -1 3066 19 1528 4354 229856 53813 7.13236 7.13236 -153.255 -7.13236 0 0 782063. 2706.10 0.34 0.09 0.14 -1 -1 0.34 0.0370058 0.0334239 203 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 10.73 vpr 64.76 MiB -1 -1 0.22 20808 14 0.39 -1 -1 37024 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 26.2 MiB 0.57 1344 7843 1709 5848 286 64.8 MiB 0.07 0.00 6.7209 -139.662 -6.7209 6.7209 0.94 0.000637666 0.00057654 0.0284339 0.025789 30 3447 41 6.55708e+06 325485 526063. 1820.29 6.48 0.300459 0.263487 21886 126133 -1 2901 20 1299 4301 215777 50367 6.81356 6.81356 -157.736 -6.81356 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0345737 0.0312804 181 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 8.77 vpr 64.78 MiB -1 -1 0.24 20992 13 0.28 -1 -1 36340 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 26.2 MiB 0.36 1301 14323 4035 8140 2148 64.8 MiB 0.12 0.00 6.4785 -130.802 -6.4785 6.4785 0.98 0.00060924 0.000552017 0.0493651 0.0449241 28 3860 34 6.55708e+06 301375 500653. 1732.36 4.65 0.160104 0.141949 21310 115450 -1 3240 32 1897 6375 677797 245849 6.98884 6.98884 -155.797 -6.98884 0 0 612192. 2118.31 0.27 0.23 0.12 -1 -1 0.27 0.0468921 0.0418506 175 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.49 vpr 64.55 MiB -1 -1 0.24 20688 13 0.27 -1 -1 36356 -1 -1 27 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 26.1 MiB 0.48 1264 10979 2870 6212 1897 64.6 MiB 0.09 0.00 6.1611 -116.304 -6.1611 6.1611 0.98 0.00060273 0.000547189 0.0372719 0.033784 28 4039 48 6.55708e+06 325485 500653. 1732.36 3.43 0.164927 0.145948 21310 115450 -1 3116 19 1390 4097 266666 58920 6.8431 6.8431 -140.509 -6.8431 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0316438 0.0285471 178 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 13.18 vpr 65.06 MiB -1 -1 0.23 20740 14 0.45 -1 -1 36728 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 26.5 MiB 0.44 1632 8326 1769 5833 724 65.1 MiB 0.08 0.00 6.7973 -145.828 -6.7973 6.7973 1.00 0.000785566 0.000716757 0.0322333 0.0294243 30 3779 46 6.55708e+06 446035 526063. 1820.29 8.88 0.380406 0.33739 21886 126133 -1 3139 17 1581 4370 208675 49972 7.1599 7.1599 -164.359 -7.1599 0 0 666494. 2306.21 0.30 0.09 0.12 -1 -1 0.30 0.0361984 0.032935 218 215 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.58 vpr 64.41 MiB -1 -1 0.24 20748 11 0.35 -1 -1 36664 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 25.9 MiB 0.53 1238 7929 1789 5525 615 64.4 MiB 0.08 0.00 5.71184 -112.612 -5.71184 5.71184 1.01 0.000672986 0.000609091 0.0295586 0.0268201 34 3256 39 6.55708e+06 349595 585099. 2024.56 2.27 0.189405 0.168598 22462 138074 -1 2544 16 1047 3185 169022 39844 6.14118 6.14118 -130.283 -6.14118 0 0 742403. 2568.87 0.33 0.08 0.13 -1 -1 0.33 0.0323269 0.0293651 177 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.15 vpr 64.20 MiB -1 -1 0.18 20384 13 0.19 -1 -1 36252 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65744 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 25.7 MiB 0.36 1173 14713 3936 8889 1888 64.2 MiB 0.11 0.00 5.80872 -132.614 -5.80872 5.80872 0.98 0.000524988 0.00047887 0.0424362 0.0385955 28 3039 19 6.55708e+06 289320 500653. 1732.36 1.38 0.121483 0.108274 21310 115450 -1 2578 17 1133 3074 174402 40721 6.28952 6.28952 -156.613 -6.28952 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0238414 0.0214236 138 127 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 8.81 vpr 64.68 MiB -1 -1 0.24 20552 14 0.30 -1 -1 36416 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 26.2 MiB 0.49 1307 7337 1639 5087 611 64.7 MiB 0.07 0.00 6.78764 -138.621 -6.78764 6.78764 0.98 0.000634384 0.000576796 0.0257033 0.0234383 40 3043 20 6.55708e+06 337540 666494. 2306.21 4.55 0.220929 0.19343 23614 160646 -1 2953 16 1220 3754 239686 53861 7.1579 7.1579 -159.458 -7.1579 0 0 872365. 3018.56 0.37 0.09 0.16 -1 -1 0.37 0.0298935 0.0271608 179 172 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 14.10 vpr 65.41 MiB -1 -1 0.25 21388 15 0.53 -1 -1 36608 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 26.9 MiB 0.34 1656 5203 882 4015 306 65.4 MiB 0.06 0.00 7.49921 -155.842 -7.49921 7.49921 0.99 0.000795354 0.00072394 0.0228433 0.0207766 30 4568 38 6.55708e+06 397815 526063. 1820.29 9.80 0.282545 0.247964 21886 126133 -1 3577 19 1707 5132 253888 58670 7.73961 7.73961 -175.539 -7.73961 0 0 666494. 2306.21 0.29 0.10 0.12 -1 -1 0.29 0.0400474 0.0362701 241 239 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 7.07 vpr 64.30 MiB -1 -1 0.20 20692 11 0.21 -1 -1 36508 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 25.7 MiB 0.49 1050 5189 1060 3811 318 64.3 MiB 0.04 0.00 5.26058 -111.374 -5.26058 5.26058 0.99 0.000491601 0.000442066 0.0158041 0.014419 28 2586 18 6.55708e+06 265210 500653. 1732.36 3.24 0.15271 0.133504 21310 115450 -1 2310 16 847 2755 163872 37497 5.98178 5.98178 -131.564 -5.98178 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0231741 0.0208869 129 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 5.44 vpr 64.43 MiB -1 -1 0.19 20292 12 0.23 -1 -1 36656 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1277 12761 3103 7993 1665 64.4 MiB 0.10 0.00 5.97718 -125.16 -5.97718 5.97718 0.99 0.000585233 0.000534013 0.0414236 0.0374968 28 3255 22 6.55708e+06 313430 500653. 1732.36 1.49 0.141417 0.126089 21310 115450 -1 2944 27 1362 3925 517482 212113 6.33778 6.33778 -147.822 -6.33778 0 0 612192. 2118.31 0.28 0.19 0.11 -1 -1 0.28 0.0422355 0.037944 156 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.43 vpr 64.99 MiB -1 -1 0.21 20860 12 0.35 -1 -1 36352 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 26.4 MiB 0.36 1509 15864 4261 9502 2101 65.0 MiB 0.13 0.00 5.99144 -132.623 -5.99144 5.99144 0.95 0.000667853 0.000602766 0.0509864 0.045736 34 3963 29 6.55708e+06 385760 585099. 2024.56 2.36 0.239321 0.211376 22462 138074 -1 3207 18 1577 4471 264359 60105 6.4009 6.4009 -152.998 -6.4009 0 0 742403. 2568.87 0.31 0.10 0.14 -1 -1 0.31 0.0342292 0.0309576 213 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.49 vpr 64.57 MiB -1 -1 0.22 20744 12 0.30 -1 -1 36300 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 26.0 MiB 0.38 1441 6321 1292 4518 511 64.6 MiB 0.06 0.00 6.22984 -133.478 -6.22984 6.22984 0.98 0.000628589 0.000571056 0.0244115 0.0221861 30 3950 33 6.55708e+06 313430 526063. 1820.29 2.50 0.138501 0.122963 21886 126133 -1 3127 18 1334 4088 215553 48797 6.62964 6.62964 -153.759 -6.62964 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0307224 0.0277284 181 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 9.91 vpr 65.22 MiB -1 -1 0.24 20904 14 0.57 -1 -1 36616 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 26.8 MiB 0.65 1719 11111 2953 7159 999 65.2 MiB 0.11 0.00 7.41762 -149.215 -7.41762 7.41762 0.99 0.000773122 0.000703986 0.045562 0.0413266 38 3999 22 6.55708e+06 373705 638502. 2209.35 5.12 0.332234 0.292417 23326 155178 -1 3586 19 1690 5568 295730 65827 7.76856 7.76856 -168.668 -7.76856 0 0 851065. 2944.86 0.35 0.11 0.15 -1 -1 0.35 0.0411588 0.037308 234 232 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 18.85 vpr 64.59 MiB -1 -1 0.23 20672 12 0.27 -1 -1 36472 -1 -1 25 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 26.1 MiB 0.52 1271 10071 2559 6195 1317 64.6 MiB 0.09 0.00 6.01898 -116.357 -6.01898 6.01898 0.99 0.000586413 0.000534263 0.0345079 0.0312823 28 3720 36 6.55708e+06 301375 500653. 1732.36 14.41 0.235106 0.206358 21310 115450 -1 3018 63 1947 7426 1195381 615591 6.70098 6.70098 -138.163 -6.70098 0 0 612192. 2118.31 0.27 0.45 0.12 -1 -1 0.27 0.0784075 0.0691169 160 155 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.99 vpr 64.26 MiB -1 -1 0.20 20608 11 0.23 -1 -1 36436 -1 -1 26 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 25.7 MiB 0.36 966 9199 2718 4523 1958 64.3 MiB 0.07 0.00 5.54984 -101.82 -5.54984 5.54984 0.96 0.000530667 0.000481538 0.0283277 0.0257031 30 2434 16 6.55708e+06 313430 526063. 1820.29 3.20 0.200252 0.174876 21886 126133 -1 2060 17 867 2516 117949 27698 5.91044 5.91044 -117.186 -5.91044 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0230795 0.0206717 140 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 10.58 vpr 65.10 MiB -1 -1 0.27 21472 13 0.54 -1 -1 36736 -1 -1 40 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 27.1 MiB 0.54 2014 16208 4001 10076 2131 65.1 MiB 0.17 0.00 6.74784 -141.337 -6.74784 6.74784 0.99 0.0010454 0.00093274 0.0686051 0.0622061 36 5245 34 6.55708e+06 482200 612192. 2118.31 5.83 0.440641 0.392363 22750 144809 -1 4265 17 1858 5984 350586 77283 7.0025 7.0025 -159.382 -7.0025 0 0 782063. 2706.10 0.34 0.13 0.14 -1 -1 0.34 0.0461776 0.0421045 286 285 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.82 vpr 64.80 MiB -1 -1 0.24 20940 14 0.32 -1 -1 36468 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.2 MiB 0.26 1317 9883 2377 6293 1213 64.8 MiB 0.09 0.00 6.76976 -136.909 -6.76976 6.76976 1.01 0.000641262 0.000567466 0.0376069 0.0341581 28 3800 28 6.55708e+06 337540 500653. 1732.36 1.86 0.15838 0.14123 21310 115450 -1 3057 21 1439 3944 216629 51305 7.25056 7.25056 -161.449 -7.25056 0 0 612192. 2118.31 0.28 0.09 0.11 -1 -1 0.28 0.0353157 0.0317567 188 184 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.85 vpr 64.29 MiB -1 -1 0.22 20400 12 0.21 -1 -1 36336 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 25.7 MiB 0.38 1209 5803 1153 4272 378 64.3 MiB 0.05 0.00 5.74904 -129.467 -5.74904 5.74904 0.96 0.000551817 0.000496646 0.0193162 0.0175293 28 3377 27 6.55708e+06 325485 500653. 1732.36 2.06 0.110963 0.0981573 21310 115450 -1 2691 17 971 2710 157184 36793 6.59044 6.59044 -152.216 -6.59044 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0249123 0.0224161 145 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 7.14 vpr 64.68 MiB -1 -1 0.21 20416 13 0.33 -1 -1 36552 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 26.1 MiB 0.49 1245 6723 1348 5024 351 64.7 MiB 0.06 0.00 6.4825 -132.876 -6.4825 6.4825 0.95 0.000575497 0.00052226 0.0239018 0.0217134 30 3035 17 6.55708e+06 313430 526063. 1820.29 3.15 0.191632 0.168669 21886 126133 -1 2607 14 1040 3159 152222 35906 6.9241 6.9241 -149.633 -6.9241 0 0 666494. 2306.21 0.29 0.06 0.11 -1 -1 0.29 0.0254699 0.0231428 169 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 9.17 vpr 65.09 MiB -1 -1 0.24 21248 13 0.40 -1 -1 37160 -1 -1 35 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 26.4 MiB 0.33 1646 10673 2541 7619 513 65.1 MiB 0.11 0.00 6.3995 -133.329 -6.3995 6.3995 0.99 0.000783403 0.000697343 0.0420153 0.0378781 36 4459 18 6.55708e+06 421925 612192. 2118.31 4.99 0.321039 0.284281 22750 144809 -1 3498 17 1598 4669 258698 59829 6.5589 6.5589 -150.892 -6.5589 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0340887 0.0307107 233 228 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.47 vpr 64.68 MiB -1 -1 0.22 21072 11 0.30 -1 -1 36472 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 26.3 MiB 0.30 1403 11013 3057 6717 1239 64.7 MiB 0.10 0.00 5.31404 -108.115 -5.31404 5.31404 0.99 0.000670854 0.000604288 0.0387113 0.0349019 36 3575 42 6.55708e+06 373705 612192. 2118.31 2.43 0.188799 0.166527 22750 144809 -1 2955 17 1230 4145 219684 50443 5.82438 5.82438 -123.766 -5.82438 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0326427 0.0296198 199 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 8.99 vpr 64.77 MiB -1 -1 0.24 20704 15 0.43 -1 -1 36376 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 26.3 MiB 0.64 1457 7653 1626 5517 510 64.8 MiB 0.07 0.00 7.57501 -156.601 -7.57501 7.57501 0.98 0.000733547 0.000662912 0.0288319 0.0261761 36 3360 16 6.55708e+06 349595 612192. 2118.31 4.50 0.306801 0.269639 22750 144809 -1 3046 15 1292 4106 214554 50002 7.73701 7.73701 -172.267 -7.73701 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0291475 0.0262804 202 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 20.21 vpr 64.57 MiB -1 -1 0.24 21284 13 0.40 -1 -1 36824 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 26.1 MiB 0.55 1440 7549 1494 5236 819 64.6 MiB 0.08 0.00 6.6765 -142.437 -6.6765 6.6765 0.99 0.000735997 0.000662004 0.0292803 0.0265711 28 4852 50 6.55708e+06 361650 500653. 1732.36 15.87 0.291605 0.257631 21310 115450 -1 3418 19 1665 4910 310687 71481 7.2775 7.2775 -168.505 -7.2775 0 0 612192. 2118.31 0.27 0.11 0.12 -1 -1 0.27 0.0356673 0.0321997 194 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 10.10 vpr 64.41 MiB -1 -1 0.20 20672 12 0.25 -1 -1 36216 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 26.0 MiB 0.51 1140 7728 1874 5153 701 64.4 MiB 0.07 0.00 6.0409 -123.312 -6.0409 6.0409 0.99 0.000575075 0.000521056 0.0256449 0.023276 26 3509 40 6.55708e+06 349595 477104. 1650.88 6.15 0.2462 0.215108 21022 109990 -1 2824 18 1249 3354 207236 48201 6.7621 6.7621 -152.094 -6.7621 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0281638 0.0253347 157 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 8.80 vpr 64.25 MiB -1 -1 0.22 20296 11 0.19 -1 -1 36264 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65796 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 25.7 MiB 0.25 1035 9199 2539 5604 1056 64.3 MiB 0.07 0.00 5.51064 -114.209 -5.51064 5.51064 0.98 0.000537603 0.00049128 0.0294058 0.026714 30 2701 18 6.55708e+06 253155 526063. 1820.29 4.99 0.199118 0.174808 21886 126133 -1 2281 37 1061 2936 356264 174363 5.83204 5.83204 -130.974 -5.83204 0 0 666494. 2306.21 0.30 0.15 0.13 -1 -1 0.30 0.0415215 0.0364325 145 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 9.64 vpr 64.74 MiB -1 -1 0.23 20636 13 0.42 -1 -1 36248 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 26.2 MiB 0.59 1588 9200 2221 5587 1392 64.7 MiB 0.09 0.00 6.5197 -136.714 -6.5197 6.5197 0.97 0.000669028 0.000606203 0.0354221 0.0319304 34 4699 41 6.55708e+06 349595 585099. 2024.56 5.20 0.202378 0.178494 22462 138074 -1 3698 20 1822 5744 382066 82130 7.03004 7.03004 -156.968 -7.03004 0 0 742403. 2568.87 0.32 0.13 0.14 -1 -1 0.32 0.0377471 0.0339913 203 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.87 vpr 63.95 MiB -1 -1 0.20 20524 10 0.21 -1 -1 36532 -1 -1 24 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65484 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 25.4 MiB 0.22 888 12919 4197 6050 2672 63.9 MiB 0.10 0.00 4.85252 -95.7521 -4.85252 4.85252 1.00 0.000521739 0.00047513 0.0392699 0.0356356 28 2578 37 6.55708e+06 289320 500653. 1732.36 2.11 0.142421 0.1267 21310 115450 -1 2049 19 950 2768 177386 54492 5.09292 5.09292 -112.706 -5.09292 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.027246 0.0245105 137 130 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.61 vpr 64.55 MiB -1 -1 0.21 20784 14 0.24 -1 -1 36432 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 26.1 MiB 0.62 1160 6133 1327 4111 695 64.5 MiB 0.06 0.00 6.58503 -138.837 -6.58503 6.58503 0.98 0.000592229 0.000538071 0.021313 0.0193848 30 3009 23 6.55708e+06 289320 526063. 1820.29 3.53 0.185065 0.16206 21886 126133 -1 2560 18 1070 3052 162016 37649 6.94563 6.94563 -157.895 -6.94563 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0265553 0.0238226 146 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.78 vpr 64.51 MiB -1 -1 0.24 20820 13 0.34 -1 -1 36656 -1 -1 30 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 26.0 MiB 0.39 1299 7233 1684 4721 828 64.5 MiB 0.07 0.00 6.01698 -127.978 -6.01698 6.01698 1.00 0.0006657 0.000605533 0.0263776 0.0240293 30 3329 27 6.55708e+06 361650 526063. 1820.29 1.67 0.140394 0.125583 21886 126133 -1 2624 16 1222 3448 165262 39645 6.42904 6.42904 -148.171 -6.42904 0 0 666494. 2306.21 0.30 0.08 0.12 -1 -1 0.30 0.0321481 0.02927 180 173 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.94 vpr 64.22 MiB -1 -1 0.19 20764 12 0.18 -1 -1 36472 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65764 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 25.7 MiB 0.40 1181 6425 1457 4464 504 64.2 MiB 0.06 0.00 5.40832 -119.105 -5.40832 5.40832 1.00 0.000516774 0.000470324 0.0203006 0.0184362 30 2714 19 6.55708e+06 313430 526063. 1820.29 1.08 0.0981573 0.0869888 21886 126133 -1 2272 15 937 2472 120437 28523 5.57032 5.57032 -134.225 -5.57032 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0222166 0.0200881 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 7.49 vpr 64.60 MiB -1 -1 0.23 21064 12 0.24 -1 -1 36700 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1423 11949 3325 7202 1422 64.6 MiB 0.10 0.00 5.87384 -125.684 -5.87384 5.87384 0.95 0.000607924 0.000552624 0.0408583 0.0368307 34 3441 32 6.55708e+06 313430 585099. 2024.56 3.44 0.213603 0.187929 22462 138074 -1 2980 36 1303 4335 622556 305370 6.11424 6.11424 -144.877 -6.11424 0 0 742403. 2568.87 0.31 0.24 0.14 -1 -1 0.31 0.0526399 0.0465941 195 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 7.73 vpr 64.86 MiB -1 -1 0.25 20816 13 0.37 -1 -1 36616 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 26.4 MiB 0.58 1324 9614 2499 5702 1413 64.9 MiB 0.10 0.00 6.1585 -127.708 -6.1585 6.1585 1.00 0.000662199 0.000598859 0.0367823 0.0334416 34 3883 44 6.55708e+06 349595 585099. 2024.56 3.32 0.207837 0.183575 22462 138074 -1 3083 18 1480 4426 256752 60519 7.0397 7.0397 -152.401 -7.0397 0 0 742403. 2568.87 0.33 0.09 0.14 -1 -1 0.33 0.0328678 0.0297402 193 189 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 5.22 vpr 64.43 MiB -1 -1 0.21 20716 11 0.21 -1 -1 36060 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 25.7 MiB 0.29 1134 12365 2979 7949 1437 64.4 MiB 0.09 0.00 5.32992 -118.677 -5.32992 5.32992 0.98 0.0005452 0.000498499 0.036376 0.0329445 28 3012 25 6.55708e+06 301375 500653. 1732.36 1.46 0.122091 0.107939 21310 115450 -1 2548 15 1091 3031 178787 41158 5.45212 5.45212 -133.744 -5.45212 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0250549 0.0227411 148 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.14 vpr 64.41 MiB -1 -1 0.18 20472 13 0.26 -1 -1 36488 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 26.0 MiB 0.34 1242 6718 1503 4843 372 64.4 MiB 0.06 0.00 6.06844 -129.387 -6.06844 6.06844 0.95 0.00057108 0.000505691 0.0235121 0.0211851 36 3262 21 6.55708e+06 289320 612192. 2118.31 4.33 0.224722 0.196465 22750 144809 -1 2656 16 1073 3129 163760 39668 6.4035 6.4035 -148.285 -6.4035 0 0 782063. 2706.10 0.33 0.07 0.13 -1 -1 0.33 0.0259773 0.0234841 164 159 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 7.09 vpr 64.63 MiB -1 -1 0.22 21044 13 0.32 -1 -1 36336 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 26.3 MiB 0.82 1338 8165 1919 5191 1055 64.6 MiB 0.08 0.00 6.5981 -140.056 -6.5981 6.5981 0.97 0.000692242 0.000621313 0.0310369 0.0282108 28 4208 45 6.55708e+06 337540 500653. 1732.36 2.66 0.162722 0.14424 21310 115450 -1 3306 19 1471 4190 274375 64458 7.0789 7.0789 -165.11 -7.0789 0 0 612192. 2118.31 0.26 0.10 0.12 -1 -1 0.26 0.0318735 0.0286215 193 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 10.32 vpr 64.37 MiB -1 -1 0.23 20544 11 0.24 -1 -1 36572 -1 -1 27 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 26.0 MiB 0.24 1157 12958 3912 6886 2160 64.4 MiB 0.10 0.00 5.14238 -100.472 -5.14238 5.14238 0.96 0.000568128 0.000512308 0.0408979 0.0371463 30 2773 17 6.55708e+06 325485 526063. 1820.29 6.56 0.248091 0.217239 21886 126133 -1 2406 20 1056 3183 153838 36976 5.66238 5.66238 -117.749 -5.66238 0 0 666494. 2306.21 0.28 0.07 0.13 -1 -1 0.28 0.0264335 0.0237086 160 154 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 8.96 vpr 65.05 MiB -1 -1 0.25 21408 14 0.41 -1 -1 36484 -1 -1 35 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 26.4 MiB 0.43 1540 9219 1921 6673 625 65.0 MiB 0.09 0.00 7.08916 -153.35 -7.08916 7.08916 0.92 0.000737114 0.000657968 0.0342254 0.0309081 36 4009 24 6.55708e+06 421925 612192. 2118.31 4.75 0.2807 0.246365 22750 144809 -1 3551 19 1706 5192 297710 67807 7.20936 7.20936 -171.853 -7.20936 0 0 782063. 2706.10 0.31 0.11 0.14 -1 -1 0.31 0.0373363 0.0336014 224 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.20 vpr 64.28 MiB -1 -1 0.19 20240 12 0.19 -1 -1 36700 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 25.7 MiB 0.33 1141 5803 1019 4397 387 64.3 MiB 0.05 0.00 5.57998 -122.603 -5.57998 5.57998 0.99 0.000536314 0.000481598 0.0180867 0.0165552 36 2710 50 6.55708e+06 337540 612192. 2118.31 2.38 0.156451 0.138923 22750 144809 -1 2456 15 987 2590 150302 34867 5.73938 5.73938 -136.06 -5.73938 0 0 782063. 2706.10 0.34 0.06 0.15 -1 -1 0.34 0.0233755 0.0211385 138 129 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 6.20 vpr 64.68 MiB -1 -1 0.24 21072 13 0.37 -1 -1 37164 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 26.1 MiB 0.51 1401 5831 1162 4151 518 64.7 MiB 0.06 0.00 6.3179 -130.828 -6.3179 6.3179 0.94 0.000661308 0.000597398 0.02329 0.0211559 30 3961 33 6.55708e+06 301375 526063. 1820.29 2.06 0.139704 0.123762 21886 126133 -1 3056 17 1326 4132 213132 48480 6.74784 6.74784 -149.527 -6.74784 0 0 666494. 2306.21 0.28 0.08 0.13 -1 -1 0.28 0.0292388 0.0262586 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.00 vpr 64.23 MiB -1 -1 0.21 20924 13 0.21 -1 -1 36036 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 25.9 MiB 0.39 1154 8532 1821 6117 594 64.2 MiB 0.07 0.00 6.0801 -131.077 -6.0801 6.0801 0.95 0.000504908 0.000455152 0.0254649 0.0230913 28 3033 18 6.55708e+06 313430 500653. 1732.36 1.27 0.105928 0.0940583 21310 115450 -1 2656 16 1139 2988 178745 41681 6.4015 6.4015 -150.591 -6.4015 0 0 612192. 2118.31 0.27 0.07 0.10 -1 -1 0.27 0.0226043 0.0203378 151 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 6.28 vpr 64.76 MiB -1 -1 0.22 20884 12 0.27 -1 -1 36692 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 26.2 MiB 0.31 1328 9135 2290 5829 1016 64.8 MiB 0.08 0.00 5.75104 -128.523 -5.75104 5.75104 0.97 0.000635186 0.000573064 0.0326405 0.029547 36 2969 16 6.55708e+06 313430 612192. 2118.31 2.32 0.184601 0.163081 22750 144809 -1 2680 16 1054 3200 171565 39452 6.11164 6.11164 -145.787 -6.11164 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0291771 0.0264758 176 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.11 vpr 65.30 MiB -1 -1 0.25 21716 15 0.61 -1 -1 36728 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 27.0 MiB 0.34 1738 15412 3838 9104 2470 65.3 MiB 0.15 0.00 7.29036 -147.596 -7.29036 7.29036 0.98 0.000833482 0.000756139 0.0597125 0.0538945 40 4166 21 6.55708e+06 433980 666494. 2306.21 2.53 0.267753 0.237541 23614 160646 -1 3840 19 1886 6260 347347 79576 7.44976 7.44976 -165.676 -7.44976 0 0 872365. 3018.56 0.35 0.12 0.16 -1 -1 0.35 0.0429246 0.0387662 256 255 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.70 vpr 63.58 MiB -1 -1 0.18 20284 10 0.12 -1 -1 36284 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65104 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 25.1 MiB 0.13 662 9540 2457 5184 1899 63.6 MiB 0.06 0.00 4.48026 -96.9856 -4.48026 4.48026 0.96 0.000411174 0.000373406 0.0241978 0.0220168 28 2152 40 6.55708e+06 216990 500653. 1732.36 1.35 0.0933388 0.0817259 21310 115450 -1 1719 16 764 1817 110155 27660 4.80366 4.80366 -116.401 -4.80366 0 0 612192. 2118.31 0.28 0.05 0.12 -1 -1 0.28 0.0178031 0.0160226 90 81 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 11.11 vpr 64.49 MiB -1 -1 0.21 20316 13 0.19 -1 -1 36016 -1 -1 25 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66040 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 25.9 MiB 0.20 1123 7383 1761 5235 387 64.5 MiB 0.06 0.00 6.05678 -125.888 -6.05678 6.05678 0.99 0.000534325 0.000488751 0.0248231 0.0225925 26 3170 45 6.55708e+06 301375 477104. 1650.88 7.52 0.23496 0.205949 21022 109990 -1 2683 21 1179 3262 257322 62420 6.29718 6.29718 -145.375 -6.29718 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0289153 0.0259004 143 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 10.98 vpr 64.41 MiB -1 -1 0.20 20776 12 0.25 -1 -1 36620 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65960 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 25.9 MiB 0.33 1356 7888 1776 5562 550 64.4 MiB 0.07 0.00 6.22784 -134.147 -6.22784 6.22784 0.98 0.000618506 0.000560951 0.0282207 0.0257283 28 3600 32 6.55708e+06 289320 500653. 1732.36 7.08 0.245508 0.215174 21310 115450 -1 3170 25 1765 4936 455151 136992 6.58844 6.58844 -160.201 -6.58844 0 0 612192. 2118.31 0.28 0.16 0.11 -1 -1 0.28 0.0412691 0.0371373 171 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.46 vpr 63.93 MiB -1 -1 0.18 20088 9 0.16 -1 -1 35988 -1 -1 22 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65460 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 25.5 MiB 0.20 720 10388 2791 6885 712 63.9 MiB 0.07 0.00 4.64166 -82.1817 -4.64166 4.64166 0.98 0.000434977 0.000395531 0.0291387 0.0264173 26 2334 45 6.55708e+06 265210 477104. 1650.88 1.97 0.11637 0.102578 21022 109990 -1 1894 15 817 2246 147446 34756 4.64166 4.64166 -98.9873 -4.64166 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0174369 0.0156996 111 102 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.77 vpr 65.01 MiB -1 -1 0.24 20756 12 0.33 -1 -1 36352 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 26.5 MiB 0.38 1439 13639 3498 7531 2610 65.0 MiB 0.12 0.00 5.97778 -129.757 -5.97778 5.97778 0.97 0.000692828 0.000635549 0.0466387 0.0421544 36 3694 45 6.55708e+06 397815 612192. 2118.31 4.63 0.325157 0.285608 22750 144809 -1 3219 17 1509 4428 244142 57351 6.2833 6.2833 -149.356 -6.2833 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0303485 0.0274391 212 205 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 9.36 vpr 64.73 MiB -1 -1 0.25 20880 13 0.39 -1 -1 36388 -1 -1 30 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 26.3 MiB 0.37 1525 5343 1047 3821 475 64.7 MiB 0.06 0.00 6.88996 -143.277 -6.88996 6.88996 1.00 0.000762515 0.00069176 0.0228156 0.0208188 40 3210 16 6.55708e+06 361650 666494. 2306.21 5.10 0.31831 0.282019 23614 160646 -1 3203 14 1280 3994 241443 56663 7.49096 7.49096 -162.067 -7.49096 0 0 872365. 3018.56 0.36 0.08 0.16 -1 -1 0.36 0.0289428 0.0263518 200 197 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.47 vpr 65.12 MiB -1 -1 0.15 20612 1 0.03 -1 -1 33660 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 26.4 MiB 0.26 1196 14550 4530 9060 960 65.1 MiB 0.12 0.00 4.30693 -132.707 -4.30693 4.30693 0.94 0.000536483 0.000487568 0.0362865 0.0330681 28 2623 21 6.64007e+06 401856 500653. 1732.36 0.99 0.109921 0.0974563 21970 115934 -1 2365 19 1376 2099 134381 32371 4.36809 4.36809 -152.345 -4.36809 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0250107 0.0223817 154 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.67 vpr 65.17 MiB -1 -1 0.17 20712 1 0.03 -1 -1 33668 -1 -1 24 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 26.4 MiB 0.23 1116 15206 5768 7612 1826 65.2 MiB 0.14 0.00 3.90562 -123.085 -3.90562 3.90562 0.99 0.000527577 0.000483028 0.0456454 0.0417411 32 2480 25 6.64007e+06 301392 554710. 1919.41 1.06 0.126601 0.112562 22834 132086 -1 2244 20 1694 2553 203787 44450 4.22389 4.22389 -146.893 -4.22389 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0270152 0.0241365 139 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.71 vpr 64.42 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33788 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 26.0 MiB 0.24 1100 8343 2206 5665 472 64.4 MiB 0.07 0.00 3.63576 -105.397 -3.63576 3.63576 0.95 0.000425829 0.000384928 0.0211366 0.0192439 26 2778 30 6.64007e+06 288834 477104. 1650.88 1.40 0.09531 0.0839849 21682 110474 -1 2263 19 1307 1839 134696 31384 3.73283 3.73283 -124.863 -3.73283 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0199429 0.0177112 126 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.38 vpr 64.55 MiB -1 -1 0.17 20232 1 0.03 -1 -1 33780 -1 -1 27 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.2 MiB 0.06 914 8473 2066 5244 1163 64.5 MiB 0.08 0.00 3.59876 -98.7241 -3.59876 3.59876 1.00 0.000471088 0.00043507 0.0227339 0.0208388 32 2021 21 6.64007e+06 339066 554710. 1919.41 0.98 0.0830219 0.0731168 22834 132086 -1 1780 19 1259 2406 137513 33063 3.52743 3.52743 -113.6 -3.52743 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0205628 0.018283 126 25 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.46 vpr 64.39 MiB -1 -1 0.16 20380 1 0.03 -1 -1 33668 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.0 MiB 0.07 1035 13143 3355 8253 1535 64.4 MiB 0.12 0.00 3.68447 -111.481 -3.68447 3.68447 1.00 0.000494659 0.000454377 0.0367896 0.0336305 32 2698 23 6.64007e+06 288834 554710. 1919.41 1.05 0.104579 0.0923738 22834 132086 -1 2181 20 1477 2829 197009 43960 3.58463 3.58463 -126.784 -3.58463 0 0 701300. 2426.64 0.29 0.07 0.14 -1 -1 0.29 0.0234818 0.0208334 130 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.47 vpr 64.97 MiB -1 -1 0.17 20940 1 0.03 -1 -1 33564 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 26.3 MiB 0.11 937 16973 5028 9108 2837 65.0 MiB 0.14 0.00 2.80439 -97.2864 -2.80439 2.80439 0.99 0.0005473 0.000501157 0.0438886 0.0399658 32 2260 22 6.64007e+06 426972 554710. 1919.41 1.00 0.118754 0.105164 22834 132086 -1 1949 19 1334 2106 136646 32579 3.06017 3.06017 -117.926 -3.06017 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0228884 0.0202566 142 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.17 vpr 64.39 MiB -1 -1 0.15 20728 1 0.03 -1 -1 34016 -1 -1 19 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65940 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 25.9 MiB 0.09 653 12196 3652 7586 958 64.4 MiB 0.09 0.00 3.15021 -83.6855 -3.15021 3.15021 0.97 0.000400755 0.000366485 0.0311778 0.028489 28 1529 22 6.64007e+06 238602 500653. 1732.36 0.91 0.0860406 0.0760254 21970 115934 -1 1332 17 762 1300 95990 22111 3.01517 3.01517 -99.8738 -3.01517 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0165556 0.0146572 93 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.10 vpr 64.49 MiB -1 -1 0.14 20236 1 0.03 -1 -1 33616 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66036 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.9 MiB 0.07 956 7549 1719 5275 555 64.5 MiB 0.06 0.00 2.7039 -85.3108 -2.7039 2.7039 0.99 0.000442791 0.000404865 0.0175829 0.0160845 26 2187 20 6.64007e+06 389298 477104. 1650.88 0.86 0.0734231 0.0645452 21682 110474 -1 1930 18 872 1565 106364 24482 2.68577 2.68577 -99.8152 -2.68577 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0181389 0.0161697 115 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.44 vpr 64.67 MiB -1 -1 0.16 20192 1 0.03 -1 -1 33688 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 26.3 MiB 0.21 888 15203 5232 7676 2295 64.7 MiB 0.11 0.00 2.88585 -99.0745 -2.88585 2.88585 0.99 0.000465298 0.000421863 0.0384827 0.035149 32 2105 22 6.64007e+06 251160 554710. 1919.41 0.96 0.0988279 0.0875006 22834 132086 -1 1775 15 918 1303 86543 20589 3.42123 3.42123 -123.28 -3.42123 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0174907 0.0156067 111 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.30 vpr 64.32 MiB -1 -1 0.15 20128 1 0.03 -1 -1 33952 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65864 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.8 MiB 0.15 847 12681 3700 6629 2352 64.3 MiB 0.10 0.00 3.13721 -104.586 -3.13721 3.13721 0.99 0.000445312 0.000403765 0.0334141 0.0305726 30 1781 21 6.64007e+06 213486 526063. 1820.29 0.96 0.0939345 0.0830484 22546 126617 -1 1567 20 920 1471 86694 20060 2.64937 2.64937 -109.103 -2.64937 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0206731 0.0183223 112 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.31 vpr 64.50 MiB -1 -1 0.16 20104 1 0.03 -1 -1 33752 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 26.0 MiB 0.13 829 12416 3816 6763 1837 64.5 MiB 0.09 0.00 3.22421 -90.9311 -3.22421 3.22421 1.00 0.000460608 0.000419217 0.0340907 0.0311279 32 1625 18 6.64007e+06 213486 554710. 1919.41 0.92 0.0877301 0.0774997 22834 132086 -1 1495 18 788 1261 87782 19635 2.77276 2.77276 -100.737 -2.77276 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0191301 0.017045 98 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.36 vpr 64.43 MiB -1 -1 0.16 20284 1 0.03 -1 -1 33740 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 25.9 MiB 0.25 848 9160 2551 6191 418 64.4 MiB 0.08 0.00 2.9925 -96.4036 -2.9925 2.9925 1.00 0.000413216 0.000377581 0.0242771 0.0221762 30 1833 19 6.64007e+06 226044 526063. 1820.29 0.90 0.077423 0.0681899 22546 126617 -1 1536 16 626 826 40453 10212 2.72177 2.72177 -108.297 -2.72177 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.017142 0.0153264 109 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.70 vpr 64.63 MiB -1 -1 0.16 20760 1 0.03 -1 -1 33876 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.1 MiB 0.25 1097 16468 5083 8989 2396 64.6 MiB 0.16 0.00 3.57727 -118.56 -3.57727 3.57727 0.99 0.000512338 0.000460972 0.0475599 0.0433735 28 2618 22 6.64007e+06 301392 500653. 1732.36 1.09 0.126834 0.113281 21970 115934 -1 2226 21 1682 2532 168018 38595 3.43323 3.43323 -129.99 -3.43323 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0267844 0.0239094 139 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.24 vpr 64.76 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33744 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.3 MiB 0.14 885 11975 3159 7689 1127 64.8 MiB 0.10 0.00 4.00586 -111.845 -4.00586 4.00586 0.96 0.000512356 0.00046547 0.0306154 0.027843 28 2323 21 6.64007e+06 389298 500653. 1732.36 0.95 0.100837 0.0886585 21970 115934 -1 1985 19 1273 2181 136796 33376 3.98282 3.98282 -133.029 -3.98282 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0225152 0.0199999 134 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.20 vpr 64.19 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33596 -1 -1 21 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.8 MiB 0.09 775 13254 3691 7976 1587 64.2 MiB 0.09 0.00 2.74319 -79.3909 -2.74319 2.74319 0.98 0.000385224 0.000350714 0.0300486 0.0274803 32 1649 20 6.64007e+06 263718 554710. 1919.41 0.92 0.0795916 0.0702946 22834 132086 -1 1496 21 828 1417 96091 22472 2.73997 2.73997 -91.0174 -2.73997 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.017698 0.0155926 98 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.42 vpr 64.66 MiB -1 -1 0.16 20648 1 0.03 -1 -1 33768 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 26.2 MiB 0.15 1006 9158 2333 6038 787 64.7 MiB 0.09 0.00 3.2847 -102.377 -3.2847 3.2847 0.98 0.000534114 0.000489583 0.0281857 0.0257678 32 2391 19 6.64007e+06 276276 554710. 1919.41 0.98 0.098493 0.0871764 22834 132086 -1 1978 19 1287 2280 149252 34651 2.93997 2.93997 -116.434 -2.93997 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0270469 0.0242011 133 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.53 vpr 64.77 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33676 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1076 16215 5267 8185 2763 64.8 MiB 0.13 0.00 3.45707 -116.188 -3.45707 3.45707 0.97 0.000511065 0.000464329 0.0451384 0.0412493 30 2575 23 6.64007e+06 288834 526063. 1820.29 1.00 0.115144 0.102265 22546 126617 -1 1987 21 1248 1825 114713 25819 3.10603 3.10603 -121.655 -3.10603 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0244883 0.0217786 138 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.30 vpr 64.31 MiB -1 -1 0.16 20316 1 0.03 -1 -1 33724 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.7 MiB 0.11 733 9963 2112 7465 386 64.3 MiB 0.09 0.00 2.30864 -82.5904 -2.30864 2.30864 1.00 0.000511583 0.000465455 0.0256474 0.0234816 30 1696 16 6.64007e+06 364182 526063. 1820.29 0.95 0.0880969 0.0778411 22546 126617 -1 1461 18 949 1531 77686 19458 2.03831 2.03831 -93.6283 -2.03831 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0217778 0.0193725 110 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.13 vpr 63.64 MiB -1 -1 0.14 20056 1 0.03 -1 -1 33596 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65172 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.2 MiB 0.06 632 10020 2791 6388 841 63.6 MiB 0.06 0.00 1.99153 -69.4618 -1.99153 1.99153 1.00 0.000358268 0.000326701 0.0235151 0.0214684 32 1332 20 6.64007e+06 188370 554710. 1919.41 0.91 0.0688364 0.0605742 22834 132086 -1 1255 19 645 959 78018 17341 2.11931 2.11931 -83.4311 -2.11931 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0156971 0.0138346 81 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.68 vpr 64.46 MiB -1 -1 0.16 20444 1 0.03 -1 -1 33964 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 0.23 765 14483 4660 7000 2823 64.5 MiB 0.10 0.00 4.05707 -118.01 -4.05707 4.05707 0.98 0.000439317 0.000404576 0.0380062 0.0347406 32 2345 41 6.64007e+06 251160 554710. 1919.41 1.18 0.116931 0.103406 22834 132086 -1 1661 22 1191 1703 124618 31396 3.69763 3.69763 -131.871 -3.69763 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0226852 0.020162 128 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.28 vpr 64.74 MiB -1 -1 0.15 20324 1 0.03 -1 -1 33992 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.3 MiB 0.06 953 9383 2164 6346 873 64.7 MiB 0.09 0.00 3.30836 -104.599 -3.30836 3.30836 0.98 0.00051547 0.000471362 0.0254095 0.0231902 32 2193 24 6.64007e+06 389298 554710. 1919.41 0.97 0.092093 0.0809914 22834 132086 -1 1899 22 1475 2334 159406 36981 3.56663 3.56663 -127.04 -3.56663 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0267615 0.0238231 135 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.61 vpr 65.13 MiB -1 -1 0.16 20468 1 0.03 -1 -1 33948 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 26.3 MiB 0.27 1202 12959 3246 7904 1809 65.1 MiB 0.12 0.00 3.65022 -114.817 -3.65022 3.65022 0.95 0.000557351 0.000511571 0.0381016 0.0347333 32 2653 22 6.64007e+06 313950 554710. 1919.41 1.04 0.112643 0.0996246 22834 132086 -1 2362 21 1431 2289 170954 36763 3.77383 3.77383 -133.19 -3.77383 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0267357 0.0238208 144 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.25 vpr 63.85 MiB -1 -1 0.15 20056 1 0.03 -1 -1 33908 -1 -1 18 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65380 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.4 MiB 0.15 386 10796 4374 4933 1489 63.8 MiB 0.06 0.00 1.89953 -52.9192 -1.89953 1.89953 1.00 0.000311886 0.000284661 0.0228553 0.0209389 30 1152 29 6.64007e+06 226044 526063. 1820.29 0.95 0.0702676 0.0619859 22546 126617 -1 731 16 473 635 36604 10089 2.07431 2.07431 -63.1772 -2.07431 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0125516 0.0112033 77 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.05 vpr 64.50 MiB -1 -1 0.14 20420 1 0.03 -1 -1 33568 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 26.2 MiB 0.05 909 5107 1010 3648 449 64.5 MiB 0.05 0.00 4.21626 -107.088 -4.21626 4.21626 0.97 0.000418946 0.000381305 0.014015 0.0128281 30 2004 19 6.64007e+06 263718 526063. 1820.29 0.93 0.0696948 0.0609645 22546 126617 -1 1782 17 861 1591 83260 19930 3.61942 3.61942 -116.953 -3.61942 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0183194 0.0163202 118 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.03 vpr 63.98 MiB -1 -1 0.14 19888 1 0.03 -1 -1 33304 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65520 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 25.6 MiB 0.05 458 10868 3761 4800 2307 64.0 MiB 0.06 0.00 2.08773 -59.5726 -2.08773 2.08773 0.97 0.00029146 0.000265664 0.0203523 0.0185308 30 1117 22 6.64007e+06 175812 526063. 1820.29 0.89 0.0597709 0.0524666 22546 126617 -1 876 14 460 507 31939 8456 2.14231 2.14231 -68.8186 -2.14231 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0112457 0.0100977 79 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.21 vpr 64.38 MiB -1 -1 0.15 20172 1 0.03 -1 -1 34032 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 26.0 MiB 0.05 967 10318 2612 7198 508 64.4 MiB 0.09 0.00 3.62727 -104.611 -3.62727 3.62727 0.97 0.000486968 0.000435213 0.0242439 0.0221763 32 2046 21 6.64007e+06 376740 554710. 1919.41 0.94 0.082918 0.0730088 22834 132086 -1 1922 19 1057 1725 113632 26926 3.52423 3.52423 -117.948 -3.52423 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0211678 0.0188105 123 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.12 vpr 64.55 MiB -1 -1 0.15 20240 1 0.03 -1 -1 33772 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 945 6791 1345 5207 239 64.6 MiB 0.07 0.00 3.0905 -88.1475 -3.0905 3.0905 0.94 0.000461977 0.000420819 0.0169493 0.0154914 28 2213 20 6.64007e+06 389298 500653. 1732.36 0.93 0.0760478 0.06681 21970 115934 -1 1969 20 1232 2137 133592 32301 2.95517 2.95517 -106.466 -2.95517 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0205659 0.0182959 128 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.59 vpr 64.49 MiB -1 -1 0.16 20272 1 0.03 -1 -1 33580 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66040 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 26.1 MiB 0.13 920 18043 6772 8097 3174 64.5 MiB 0.15 0.00 3.69347 -107.378 -3.69347 3.69347 0.96 0.000505478 0.000460411 0.0473065 0.0431296 30 2294 34 6.64007e+06 339066 526063. 1820.29 3.19 0.202684 0.177103 22546 126617 -1 1864 17 1175 2011 120347 28711 4.05323 4.05323 -127.157 -4.05323 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0212105 0.0189833 126 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.29 vpr 64.51 MiB -1 -1 0.15 20212 1 0.03 -1 -1 33572 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 26.0 MiB 0.08 842 11948 3523 6824 1601 64.5 MiB 0.09 0.00 2.42079 -85.1807 -2.42079 2.42079 0.99 0.000442932 0.000405297 0.032766 0.029997 32 1785 21 6.64007e+06 200928 554710. 1919.41 0.96 0.0908047 0.0803229 22834 132086 -1 1594 19 936 1559 112369 26334 2.70477 2.70477 -104.017 -2.70477 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0219319 0.0195797 101 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.31 vpr 64.21 MiB -1 -1 0.15 20444 1 0.03 -1 -1 33740 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65752 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.8 MiB 0.07 696 13105 3093 9300 712 64.2 MiB 0.09 0.00 2.64019 -81.3657 -2.64019 2.64019 0.98 0.000398097 0.000362615 0.0310944 0.0283577 28 1681 20 6.64007e+06 288834 500653. 1732.36 1.08 0.0909756 0.0808327 21970 115934 -1 1529 21 892 1485 105450 24277 2.65557 2.65557 -97.1541 -2.65557 0 0 612192. 2118.31 0.28 0.05 0.12 -1 -1 0.28 0.020256 0.0177884 97 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.20 vpr 64.23 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33800 -1 -1 23 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.8 MiB 0.05 708 11243 2847 7686 710 64.2 MiB 0.09 0.00 2.6437 -77.5759 -2.6437 2.6437 0.97 0.000404747 0.000367665 0.0272796 0.0248458 32 1692 23 6.64007e+06 288834 554710. 1919.41 0.96 0.0803271 0.0706378 22834 132086 -1 1422 19 908 1572 104687 24124 2.48917 2.48917 -90.9197 -2.48917 0 0 701300. 2426.64 0.30 0.05 0.14 -1 -1 0.30 0.017803 0.0157959 98 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.97 vpr 64.34 MiB -1 -1 0.13 20296 1 0.03 -1 -1 33792 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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 822 6563 1459 4734 370 64.3 MiB 0.06 0.00 3.07321 -93.4545 -3.07321 3.07321 0.96 0.000400605 0.000368882 0.016264 0.0148656 26 2073 24 6.64007e+06 238602 477104. 1650.88 0.91 0.0741977 0.0652527 21682 110474 -1 1784 17 1102 1796 119920 28780 3.05617 3.05617 -116.597 -3.05617 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.017137 0.0152456 110 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.22 vpr 64.48 MiB -1 -1 0.15 20440 1 0.03 -1 -1 33532 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 26.0 MiB 0.05 814 7326 1575 5462 289 64.5 MiB 0.06 0.00 2.8301 -85.1991 -2.8301 2.8301 0.96 0.000428675 0.000390828 0.0175767 0.0160923 28 1826 20 6.64007e+06 339066 500653. 1732.36 1.03 0.0777799 0.0685677 21970 115934 -1 1612 16 852 1442 89338 21296 2.72157 2.72157 -101.305 -2.72157 0 0 612192. 2118.31 0.28 0.04 0.12 -1 -1 0.28 0.0171248 0.015266 103 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.38 vpr 63.18 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33668 -1 -1 26 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64692 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 24.6 MiB 0.13 734 11799 3838 5828 2133 63.2 MiB 0.09 0.00 2.6377 -83.8914 -2.6377 2.6377 1.00 0.000439624 0.000401481 0.0291539 0.0266696 32 1680 20 6.64007e+06 326508 554710. 1919.41 0.95 0.0837427 0.0738426 22834 132086 -1 1454 21 1092 1618 93688 22944 2.24871 2.24871 -87.4391 -2.24871 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0210347 0.0186015 105 48 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.48 vpr 63.77 MiB -1 -1 0.17 20924 1 0.03 -1 -1 33580 -1 -1 38 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65304 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 25.4 MiB 0.14 1147 14858 3644 9759 1455 63.8 MiB 0.14 0.00 3.51556 -103.209 -3.51556 3.51556 1.00 0.000497996 0.000454146 0.0371016 0.0338759 30 2508 17 6.64007e+06 477204 526063. 1820.29 0.99 0.105031 0.0928928 22546 126617 -1 2129 19 1106 2113 119083 26614 3.47242 3.47242 -117.403 -3.47242 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0247909 0.0221136 151 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.36 vpr 64.73 MiB -1 -1 0.16 20804 1 0.03 -1 -1 33856 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 26.2 MiB 0.14 1097 12321 2991 8150 1180 64.7 MiB 0.11 0.00 3.13721 -109.154 -3.13721 3.13721 0.97 0.000535349 0.000482872 0.031654 0.028847 28 2342 23 6.64007e+06 464646 500653. 1732.36 1.00 0.107206 0.0944727 21970 115934 -1 2078 21 1594 2636 172336 38610 2.99017 2.99017 -120.389 -2.99017 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0283157 0.0252162 147 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.36 vpr 64.45 MiB -1 -1 0.15 20264 1 0.03 -1 -1 34028 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.9 MiB 0.24 954 10584 2982 5750 1852 64.4 MiB 0.09 0.00 3.36107 -100.828 -3.36107 3.36107 0.96 0.000435714 0.000396895 0.0278013 0.0254553 32 1948 18 6.64007e+06 238602 554710. 1919.41 0.93 0.0809135 0.0715305 22834 132086 -1 1725 19 1072 1555 109198 24207 3.13083 3.13083 -111.391 -3.13083 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0192089 0.0170227 112 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.52 vpr 64.80 MiB -1 -1 0.17 20744 1 0.03 -1 -1 33928 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1043 15883 5026 8205 2652 64.8 MiB 0.15 0.00 3.41261 -107.064 -3.41261 3.41261 0.99 0.000524655 0.000477893 0.0480781 0.0432842 32 2529 23 6.64007e+06 313950 554710. 1919.41 1.05 0.121191 0.106877 22834 132086 -1 2164 16 1283 2203 147359 34588 3.02517 3.02517 -114.432 -3.02517 0 0 701300. 2426.64 0.30 0.06 0.14 -1 -1 0.30 0.0230483 0.0206885 138 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.85 vpr 64.88 MiB -1 -1 0.17 20476 1 0.03 -1 -1 33708 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1340 13547 3729 8310 1508 64.9 MiB 0.14 0.00 4.79918 -147.108 -4.79918 4.79918 0.97 0.000683002 0.000630776 0.04064 0.0372532 32 3086 21 6.64007e+06 364182 554710. 1919.41 1.10 0.121019 0.107894 22834 132086 -1 2575 20 2230 3316 235230 52013 4.65594 4.65594 -162.951 -4.65594 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0288654 0.0258638 172 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.83 vpr 65.06 MiB -1 -1 0.18 20412 1 0.03 -1 -1 33944 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 26.7 MiB 0.39 1177 15768 4837 9550 1381 65.1 MiB 0.15 0.00 4.00182 -123.782 -4.00182 4.00182 0.99 0.000556974 0.000509207 0.0467394 0.0427746 32 2766 21 6.64007e+06 339066 554710. 1919.41 1.05 0.123799 0.11025 22834 132086 -1 2460 21 1763 2696 184464 41992 4.43229 4.43229 -150.43 -4.43229 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0291276 0.0259629 164 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.41 vpr 64.62 MiB -1 -1 0.17 20560 1 0.03 -1 -1 33788 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 26.1 MiB 0.14 1019 16495 5182 8759 2554 64.6 MiB 0.15 0.00 3.70647 -110.255 -3.70647 3.70647 0.96 0.000523601 0.00047657 0.0431395 0.0394941 32 2438 17 6.64007e+06 389298 554710. 1919.41 0.98 0.107556 0.095629 22834 132086 -1 2063 19 1116 1974 135829 29952 3.11043 3.11043 -116.992 -3.11043 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0228689 0.020403 135 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.29 vpr 64.38 MiB -1 -1 0.15 20176 1 0.03 -1 -1 33940 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 26.0 MiB 0.20 1049 9303 2544 6213 546 64.4 MiB 0.08 0.00 3.40636 -99.2596 -3.40636 3.40636 0.93 0.000410419 0.000372057 0.0222385 0.0202711 26 2667 21 6.64007e+06 288834 477104. 1650.88 1.04 0.0861826 0.0761024 21682 110474 -1 2198 21 1328 1987 143434 33593 3.70963 3.70963 -121.504 -3.70963 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0204909 0.0181711 119 24 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.69 vpr 65.01 MiB -1 -1 0.17 21160 1 0.03 -1 -1 34056 -1 -1 40 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.9 MiB 0.19 1280 21332 6196 12657 2479 65.0 MiB 0.20 0.00 4.15173 -137.021 -4.15173 4.15173 0.98 0.000626405 0.000567653 0.0586591 0.0533108 28 2976 20 6.64007e+06 502320 500653. 1732.36 1.14 0.144789 0.128772 21970 115934 -1 2627 21 1587 2380 162638 36475 4.23689 4.23689 -156.017 -4.23689 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0311726 0.0277816 174 84 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.30 vpr 64.37 MiB -1 -1 0.14 20196 1 0.03 -1 -1 34100 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 25.9 MiB 0.08 787 13992 4358 7332 2302 64.4 MiB 0.10 0.00 3.1015 -86.2321 -3.1015 3.1015 0.99 0.000410523 0.000375054 0.0331133 0.0302013 32 1731 22 6.64007e+06 263718 554710. 1919.41 0.95 0.0865693 0.0764358 22834 132086 -1 1564 21 1078 1830 126689 29104 2.96617 2.96617 -101.084 -2.96617 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0190773 0.0168421 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.73 MiB -1 -1 0.17 20564 1 0.03 -1 -1 33800 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 26.2 MiB 0.24 1174 11593 2951 7330 1312 64.7 MiB 0.11 0.00 4.03882 -123.607 -4.03882 4.03882 1.00 0.000526068 0.000481983 0.0328794 0.0300702 32 2669 18 6.64007e+06 313950 554710. 1919.41 1.00 0.0969182 0.085888 22834 132086 -1 2253 18 1330 1909 124860 28554 4.19688 4.19688 -142.553 -4.19688 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0225028 0.020029 144 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.26 vpr 64.65 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33752 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66204 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 26.2 MiB 0.13 1040 9865 2231 7045 589 64.7 MiB 0.09 0.00 3.2959 -102.587 -3.2959 3.2959 0.94 0.000520889 0.000474322 0.0246588 0.0224973 26 2902 30 6.64007e+06 414414 477104. 1650.88 1.94 0.105655 0.0929888 21682 110474 -1 2296 21 1429 2558 211416 45419 2.94797 2.94797 -115.483 -2.94797 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0269288 0.0240241 131 50 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.31 vpr 64.50 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33988 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.1 MiB 0.08 921 13153 4725 6202 2226 64.5 MiB 0.11 0.00 3.34016 -101.938 -3.34016 3.34016 0.98 0.000493426 0.000448881 0.0330024 0.0302003 32 2178 20 6.64007e+06 301392 554710. 1919.41 0.99 0.0921015 0.0815581 22834 132086 -1 1947 16 1018 1860 129068 28630 3.71263 3.71263 -121.645 -3.71263 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0184248 0.01654 123 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.87 vpr 64.84 MiB -1 -1 0.16 20556 1 0.03 -1 -1 33824 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 26.3 MiB 0.30 1100 12568 3787 7275 1506 64.8 MiB 0.12 0.00 3.79838 -116.192 -3.79838 3.79838 0.93 0.000561676 0.000514255 0.0361806 0.0330962 26 2739 23 6.64007e+06 301392 477104. 1650.88 1.43 0.110575 0.0978548 21682 110474 -1 2223 17 1053 1458 101923 24470 3.50943 3.50943 -125.767 -3.50943 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0206545 0.0183778 138 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.44 vpr 64.66 MiB -1 -1 0.17 20788 1 0.03 -1 -1 33768 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 26.2 MiB 0.14 1042 17835 5101 9890 2844 64.7 MiB 0.15 0.00 2.9151 -99.8849 -2.9151 2.9151 0.97 0.000497796 0.000452624 0.0447294 0.0408126 32 2375 18 6.64007e+06 401856 554710. 1919.41 0.99 0.113639 0.100927 22834 132086 -1 2022 21 1185 2129 136369 31052 2.87277 2.87277 -112.362 -2.87277 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0268521 0.0238569 133 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.43 vpr 64.94 MiB -1 -1 0.16 20676 1 0.03 -1 -1 33908 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1059 13261 3502 8387 1372 64.9 MiB 0.12 0.00 3.83767 -116.965 -3.83767 3.83767 0.96 0.000557441 0.000508039 0.0333277 0.0303985 28 2715 23 6.64007e+06 464646 500653. 1732.36 1.05 0.113884 0.100955 21970 115934 -1 2155 19 1120 1713 106321 24990 3.36183 3.36183 -127.659 -3.36183 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0254801 0.0226758 145 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.16 vpr 64.56 MiB -1 -1 0.16 20164 1 0.03 -1 -1 33736 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 26.2 MiB 0.06 956 14793 4143 9325 1325 64.6 MiB 0.12 0.00 3.36216 -101.555 -3.36216 3.36216 0.97 0.000449888 0.000409508 0.0352049 0.0320668 28 2013 21 6.64007e+06 364182 500653. 1732.36 0.92 0.0956067 0.0844962 21970 115934 -1 1879 18 1106 1792 104750 25146 3.67063 3.67063 -122.562 -3.67063 0 0 612192. 2118.31 0.27 0.05 0.10 -1 -1 0.27 0.0196788 0.0175179 122 21 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.40 vpr 64.83 MiB -1 -1 0.15 20572 1 0.03 -1 -1 33592 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 26.2 MiB 0.23 1128 6523 1329 4737 457 64.8 MiB 0.06 0.00 4.08226 -117.341 -4.08226 4.08226 0.97 0.000530529 0.000484178 0.0175982 0.016104 28 2496 20 6.64007e+06 301392 500653. 1732.36 1.02 0.0840263 0.0740224 21970 115934 -1 2197 18 1415 2046 132547 31268 3.90803 3.90803 -136.423 -3.90803 0 0 612192. 2118.31 0.28 0.06 0.12 -1 -1 0.28 0.0214844 0.0191472 133 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 6.73 vpr 65.19 MiB -1 -1 0.15 20492 1 0.03 -1 -1 33976 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 26.7 MiB 0.30 1098 9058 2195 6134 729 65.2 MiB 0.10 0.00 4.03253 -119.13 -4.03253 4.03253 0.99 0.0005677 0.000512263 0.0284372 0.0260464 28 2913 21 6.64007e+06 313950 500653. 1732.36 3.13 0.197005 0.173191 21970 115934 -1 2385 21 1621 2614 177259 41649 4.22989 4.22989 -142.416 -4.22989 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0272343 0.0242963 148 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.51 vpr 64.95 MiB -1 -1 0.16 20704 1 0.03 -1 -1 33660 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 26.4 MiB 0.15 1124 14072 4385 7271 2416 65.0 MiB 0.13 0.00 3.49656 -112.385 -3.49656 3.49656 0.98 0.000557676 0.000509438 0.0427732 0.0389698 32 2588 21 6.64007e+06 276276 554710. 1919.41 1.01 0.114237 0.100926 22834 132086 -1 2243 20 1467 2570 184071 40258 3.43623 3.43623 -130.069 -3.43623 0 0 701300. 2426.64 0.30 0.07 0.14 -1 -1 0.30 0.0252534 0.0224082 136 74 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.17 vpr 64.15 MiB -1 -1 0.14 20524 1 0.03 -1 -1 33672 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65692 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.8 MiB 0.05 774 16078 5363 7580 3135 64.2 MiB 0.10 0.00 2.7229 -81.7933 -2.7229 2.7229 0.95 0.000393036 0.000357289 0.0346989 0.0316635 30 1691 20 6.64007e+06 301392 526063. 1820.29 0.96 0.0890608 0.0789943 22546 126617 -1 1364 21 774 1267 72239 17345 2.59057 2.59057 -90.4198 -2.59057 0 0 666494. 2306.21 0.30 0.05 0.13 -1 -1 0.30 0.0192536 0.0170144 97 20 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.55 vpr 64.85 MiB -1 -1 0.17 20672 1 0.03 -1 -1 33632 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 26.4 MiB 0.24 922 8780 2034 6321 425 64.9 MiB 0.09 0.00 3.21396 -111.632 -3.21396 3.21396 1.00 0.000497604 0.000452582 0.0254333 0.0232526 30 2176 22 6.64007e+06 276276 526063. 1820.29 1.05 0.0946968 0.0835215 22546 126617 -1 1942 19 1118 1634 109074 24567 3.17963 3.17963 -127.682 -3.17963 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0220299 0.0196321 127 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.62 vpr 64.78 MiB -1 -1 0.17 20736 1 0.03 -1 -1 33820 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 26.5 MiB 0.25 1444 15213 4558 9260 1395 64.8 MiB 0.15 0.00 4.36321 -134.472 -4.36321 4.36321 0.95 0.000537471 0.000489229 0.0438769 0.0400562 32 3354 22 6.64007e+06 364182 554710. 1919.41 1.04 0.121704 0.107779 22834 132086 -1 2787 23 1988 3211 225946 50228 4.80188 4.80188 -156.736 -4.80188 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0303861 0.026968 169 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.25 vpr 64.71 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33428 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 26.3 MiB 0.11 970 11046 2705 7294 1047 64.7 MiB 0.10 0.00 3.50652 -106.961 -3.50652 3.50652 0.98 0.000503438 0.000458033 0.028426 0.026028 28 2125 17 6.64007e+06 401856 500653. 1732.36 0.92 0.0928608 0.0821091 21970 115934 -1 1889 18 1109 1737 104039 25355 3.01997 3.01997 -117.937 -3.01997 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0213373 0.0189948 133 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.20 vpr 64.29 MiB -1 -1 0.14 20312 1 0.03 -1 -1 33364 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65836 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.8 MiB 0.05 709 10423 2778 7222 423 64.3 MiB 0.09 0.00 2.7749 -85.4094 -2.7749 2.7749 0.95 0.000425777 0.000388785 0.0254038 0.0232145 26 1861 25 6.64007e+06 326508 477104. 1650.88 1.06 0.0899459 0.0796328 21682 110474 -1 1493 18 839 1439 89753 21987 2.79397 2.79397 -101.473 -2.79397 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.018637 0.0165591 104 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.75 vpr 65.01 MiB -1 -1 0.16 20988 1 0.03 -1 -1 34040 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 26.9 MiB 0.32 1341 15391 4315 9004 2072 65.0 MiB 0.16 0.00 5.2717 -157.472 -5.2717 5.2717 0.97 0.000612051 0.000552761 0.0491874 0.0449588 32 3154 21 6.64007e+06 339066 554710. 1919.41 1.04 0.1306 0.116148 22834 132086 -1 2694 19 1987 2877 203634 45161 5.05954 5.05954 -170.322 -5.05954 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0282235 0.0252331 170 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.38 vpr 64.70 MiB -1 -1 0.16 20176 1 0.03 -1 -1 33604 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 26.2 MiB 0.14 940 10753 2281 7717 755 64.7 MiB 0.10 0.00 3.68047 -113.183 -3.68047 3.68047 0.99 0.000533147 0.000487699 0.0270945 0.0247966 32 2149 23 6.64007e+06 414414 554710. 1919.41 0.98 0.0929355 0.08191 22834 132086 -1 1930 19 1370 2099 141276 33648 3.63983 3.63983 -128.928 -3.63983 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0226651 0.0201491 130 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.47 vpr 64.02 MiB -1 -1 0.15 20028 1 0.03 -1 -1 33528 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65552 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.7 MiB 0.07 799 12183 3544 6697 1942 64.0 MiB 0.09 0.00 2.8441 -84.2168 -2.8441 2.8441 0.99 0.000395066 0.000360856 0.0269446 0.0245206 26 2010 28 6.64007e+06 288834 477104. 1650.88 1.23 0.0948056 0.0842404 21682 110474 -1 1708 19 918 1519 118842 26575 3.12737 3.12737 -103.162 -3.12737 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0186484 0.0166402 100 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.35 vpr 64.85 MiB -1 -1 0.17 20460 1 0.03 -1 -1 33540 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.2 MiB 0.10 1240 16523 4907 9980 1636 64.9 MiB 0.14 0.00 4.79472 -119.275 -4.79472 4.79472 0.94 0.000521529 0.000475443 0.0415695 0.0379014 30 2494 19 6.64007e+06 426972 526063. 1820.29 0.99 0.110635 0.09811 22546 126617 -1 2210 23 1043 2148 121961 26950 4.50728 4.50728 -136.58 -4.50728 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.025935 0.0229878 139 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.21 vpr 64.40 MiB -1 -1 0.15 20064 1 0.03 -1 -1 33756 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 26.0 MiB 0.05 842 9417 2371 6149 897 64.4 MiB 0.07 0.00 2.8171 -87.5396 -2.8171 2.8171 1.00 0.000418621 0.000383394 0.0225717 0.0206793 30 1812 20 6.64007e+06 251160 526063. 1820.29 0.94 0.0736452 0.0648699 22546 126617 -1 1593 20 839 1528 81527 19610 2.91097 2.91097 -107.186 -2.91097 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0184999 0.0164539 104 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.24 vpr 64.54 MiB -1 -1 0.14 20148 1 0.03 -1 -1 33728 -1 -1 33 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 26.0 MiB 0.09 873 16727 5033 9118 2576 64.5 MiB 0.11 0.00 3.32241 -94.3365 -3.32241 3.32241 0.94 0.000391929 0.000355195 0.0327167 0.0297152 26 2046 27 6.64007e+06 414414 477104. 1650.88 1.06 0.0993687 0.0877634 21682 110474 -1 1758 18 928 1690 112533 25382 3.14437 3.14437 -108.592 -3.14437 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0176577 0.0156306 105 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.65 vpr 64.93 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33612 -1 -1 26 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1146 14487 4222 8798 1467 64.9 MiB 0.13 0.00 3.72767 -113.402 -3.72767 3.72767 1.00 0.000527677 0.00048039 0.0419746 0.0383383 32 2617 20 6.64007e+06 326508 554710. 1919.41 0.99 0.108889 0.0965473 22834 132086 -1 2228 19 1236 1855 125248 28049 3.62762 3.62762 -125.123 -3.62762 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0234775 0.0209683 139 56 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 6.32 vpr 64.52 MiB -1 -1 0.16 20748 1 0.03 -1 -1 33592 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.1 MiB 0.12 846 5353 1008 3834 511 64.5 MiB 0.05 0.00 3.64276 -108.786 -3.64276 3.64276 0.95 0.000521856 0.000474587 0.0167325 0.0153519 28 2239 22 6.64007e+06 301392 500653. 1732.36 3.05 0.180457 0.157085 21970 115934 -1 1806 17 1325 2074 131473 32877 3.93703 3.93703 -135.491 -3.93703 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0214185 0.0190526 130 51 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.50 vpr 64.56 MiB -1 -1 0.16 20524 1 0.03 -1 -1 33724 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 26.1 MiB 0.12 1095 15617 4548 8970 2099 64.6 MiB 0.14 0.00 3.79167 -119.015 -3.79167 3.79167 1.01 0.000544936 0.000494764 0.0429534 0.0390266 28 2456 19 6.64007e+06 351624 500653. 1732.36 1.02 0.119085 0.105866 21970 115934 -1 2174 17 1087 1929 123561 28639 3.62043 3.62043 -134.07 -3.62043 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0249964 0.0225023 133 48 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.32 vpr 64.59 MiB -1 -1 0.13 20212 1 0.03 -1 -1 33612 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 26.0 MiB 0.25 819 13381 4116 7846 1419 64.6 MiB 0.09 0.00 3.75438 -106.266 -3.75438 3.75438 0.99 0.000448798 0.000412335 0.0292369 0.0268078 30 1818 19 6.64007e+06 213486 526063. 1820.29 0.91 0.0827525 0.0732131 22546 126617 -1 1526 16 662 949 56422 13919 3.26602 3.26602 -111.851 -3.26602 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0167457 0.0149499 105 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.45 vpr 64.64 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33804 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 26.3 MiB 0.23 942 13432 3940 8131 1361 64.6 MiB 0.11 0.00 3.24616 -106.665 -3.24616 3.24616 0.98 0.000489247 0.000432437 0.0380138 0.0346353 30 2058 18 6.64007e+06 238602 526063. 1820.29 0.94 0.0990536 0.0878262 22546 126617 -1 1809 17 1014 1494 86388 20344 3.20383 3.20383 -119.023 -3.20383 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0190259 0.0169487 113 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.31 vpr 64.68 MiB -1 -1 0.15 20388 1 0.03 -1 -1 34012 -1 -1 33 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 26.3 MiB 0.12 930 13055 3042 8031 1982 64.7 MiB 0.10 0.00 2.9203 -82.6225 -2.9203 2.9203 0.98 0.000497119 0.00045423 0.0317575 0.029017 28 2055 22 6.64007e+06 414414 500653. 1732.36 0.94 0.102494 0.0908089 21970 115934 -1 1856 21 1077 1929 126833 28747 2.88297 2.88297 -98.3961 -2.88297 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0234311 0.0206957 123 52 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.20 vpr 64.61 MiB -1 -1 0.16 20560 1 0.03 -1 -1 34000 -1 -1 35 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66164 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 26.0 MiB 0.09 930 11111 2883 7214 1014 64.6 MiB 0.08 0.00 3.47456 -87.8898 -3.47456 3.47456 0.99 0.000453522 0.000413622 0.0241602 0.0220271 26 2224 20 6.64007e+06 439530 477104. 1650.88 0.97 0.0844724 0.0746492 21682 110474 -1 1888 20 1011 2055 139029 30435 3.56842 3.56842 -106.077 -3.56842 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0198888 0.017609 115 20 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.34 vpr 64.25 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33760 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65796 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 25.7 MiB 0.13 748 14012 4480 7511 2021 64.3 MiB 0.11 0.00 3.29461 -93.3105 -3.29461 3.29461 0.99 0.000432096 0.000394056 0.0384997 0.0351553 30 1618 23 6.64007e+06 226044 526063. 1820.29 0.94 0.100663 0.0889568 22546 126617 -1 1430 19 1090 1932 98206 23553 2.82877 2.82877 -103.142 -2.82877 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0215366 0.0190584 108 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.51 vpr 64.66 MiB -1 -1 0.15 20944 1 0.03 -1 -1 33652 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 26.2 MiB 0.22 984 15151 4305 8837 2009 64.7 MiB 0.13 0.00 3.14796 -108.448 -3.14796 3.14796 0.98 0.000504249 0.000461631 0.0429209 0.0392851 32 2324 18 6.64007e+06 263718 554710. 1919.41 0.98 0.105837 0.0940618 22834 132086 -1 1969 17 1199 1753 121002 28006 3.08563 3.08563 -120.351 -3.08563 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0213989 0.0191553 121 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.21 vpr 64.77 MiB -1 -1 0.14 20196 1 0.03 -1 -1 33972 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 26.3 MiB 0.05 933 10679 2838 6798 1043 64.8 MiB 0.10 0.00 3.70647 -105.802 -3.70647 3.70647 0.98 0.000491489 0.000450586 0.0244405 0.0223763 28 2250 22 6.64007e+06 401856 500653. 1732.36 0.95 0.0853514 0.075406 21970 115934 -1 2050 17 1133 1983 121787 28476 3.73283 3.73283 -121.348 -3.73283 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0193714 0.0172929 127 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.62 vpr 65.09 MiB -1 -1 0.15 20520 1 0.03 -1 -1 34000 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 26.3 MiB 0.28 1074 15688 5456 7507 2725 65.1 MiB 0.15 0.00 4.22773 -133.948 -4.22773 4.22773 0.95 0.000523193 0.000480384 0.0447326 0.0408241 32 2897 20 6.64007e+06 301392 554710. 1919.41 1.04 0.115116 0.102359 22834 132086 -1 2406 21 1623 2378 170602 38476 4.43709 4.43709 -154.904 -4.43709 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0263276 0.0235311 146 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.60 vpr 65.07 MiB -1 -1 0.16 20420 1 0.03 -1 -1 33624 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66636 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 26.4 MiB 0.19 1077 18323 5205 10853 2265 65.1 MiB 0.16 0.00 4.17072 -121.395 -4.17072 4.17072 0.99 0.000552592 0.000504595 0.0479682 0.043781 32 2452 22 6.64007e+06 426972 554710. 1919.41 1.03 0.120767 0.107053 22834 132086 -1 2167 18 1134 2022 123505 29587 4.26788 4.26788 -137.146 -4.26788 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0238831 0.0212981 144 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.01 vpr 64.88 MiB -1 -1 0.16 20804 1 0.03 -1 -1 33956 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1143 15141 4246 9025 1870 64.9 MiB 0.14 0.00 3.49607 -115.357 -3.49607 3.49607 0.98 0.000565734 0.000519433 0.039001 0.0355702 26 2960 28 6.64007e+06 464646 477104. 1650.88 1.56 0.12338 0.109047 21682 110474 -1 2452 21 1687 2988 211590 46337 3.69763 3.69763 -136.117 -3.69763 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0268151 0.0238066 140 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.27 vpr 64.46 MiB -1 -1 0.14 20288 1 0.03 -1 -1 33740 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 26.0 MiB 0.10 823 11631 3600 5891 2140 64.5 MiB 0.10 0.00 3.00301 -92.1464 -3.00301 3.00301 0.98 0.000475739 0.000423193 0.0313985 0.0287701 32 1818 20 6.64007e+06 238602 554710. 1919.41 0.98 0.0907887 0.080685 22834 132086 -1 1623 19 1048 1871 123041 28498 2.91097 2.91097 -102.44 -2.91097 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0197904 0.0175651 104 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.52 vpr 64.99 MiB -1 -1 0.17 20680 1 0.03 -1 -1 33672 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 26.3 MiB 0.15 982 12361 3297 6808 2256 65.0 MiB 0.12 0.00 3.80967 -114.546 -3.80967 3.80967 1.01 0.000540083 0.000493922 0.0396696 0.0363188 30 2071 20 6.64007e+06 288834 526063. 1820.29 1.02 0.117392 0.104448 22546 126617 -1 1830 21 1326 2140 114381 26656 3.46843 3.46843 -127.125 -3.46843 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0271167 0.0240829 138 58 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.81 vpr 64.60 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33608 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 26.1 MiB 0.25 1122 10341 2573 7020 748 64.6 MiB 0.10 0.00 4.18044 -127.397 -4.18044 4.18044 0.98 0.0005372 0.000473871 0.0288639 0.0263837 28 2776 31 6.64007e+06 326508 500653. 1732.36 1.29 0.112248 0.0994895 21970 115934 -1 2333 17 1418 2317 185556 40731 3.97629 3.97629 -140.036 -3.97629 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.022298 0.0200276 140 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.69 vpr 64.61 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33824 -1 -1 30 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 26.1 MiB 0.28 1161 15003 4116 8173 2714 64.6 MiB 0.13 0.00 4.34441 -128.021 -4.34441 4.34441 1.00 0.00048742 0.000444629 0.0397408 0.0364316 32 2396 20 6.64007e+06 376740 554710. 1919.41 1.04 0.110439 0.098083 22834 132086 -1 2047 17 1213 1851 110280 27374 4.39928 4.39928 -143.195 -4.39928 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0236005 0.0211473 148 43 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.58 vpr 64.77 MiB -1 -1 0.17 20552 1 0.03 -1 -1 33948 -1 -1 33 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 0.23 1044 11759 2989 7383 1387 64.8 MiB 0.11 0.00 3.42407 -106.623 -3.42407 3.42407 1.00 0.000583787 0.000532365 0.0331882 0.0303699 32 2160 17 6.64007e+06 414414 554710. 1919.41 0.99 0.104374 0.0924178 22834 132086 -1 1923 18 1040 1757 107490 24755 3.06843 3.06843 -118.146 -3.06843 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0246184 0.0220427 135 78 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 7.20 vpr 64.63 MiB -1 -1 0.15 20812 1 0.03 -1 -1 33972 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 26.1 MiB 0.13 1104 15709 4957 8968 1784 64.6 MiB 0.14 0.00 3.97286 -117.882 -3.97286 3.97286 0.98 0.00053125 0.000484357 0.0458681 0.041935 26 3139 25 6.64007e+06 263718 477104. 1650.88 3.83 0.194187 0.170888 21682 110474 -1 2468 21 1564 2737 211300 46232 4.05803 4.05803 -141.547 -4.05803 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0246671 0.0217727 134 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.33 vpr 64.66 MiB -1 -1 0.16 20376 1 0.03 -1 -1 33792 -1 -1 31 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 26.2 MiB 0.16 959 8786 2264 5705 817 64.7 MiB 0.09 0.00 4.04306 -115.296 -4.04306 4.04306 0.99 0.00053947 0.000495535 0.0253143 0.0231648 30 1959 20 6.64007e+06 389298 526063. 1820.29 0.93 0.0928506 0.0817607 22546 126617 -1 1762 19 981 1595 82514 20381 3.44702 3.44702 -122.484 -3.44702 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.023415 0.0207633 132 79 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.10 vpr 64.21 MiB -1 -1 0.14 20492 1 0.03 -1 -1 33780 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65748 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 25.9 MiB 0.04 808 7853 2278 5197 378 64.2 MiB 0.07 0.00 3.02901 -94.3044 -3.02901 3.02901 0.98 0.000413744 0.000378805 0.0205003 0.0187953 30 1667 17 6.64007e+06 188370 526063. 1820.29 0.91 0.0694179 0.0612508 22546 126617 -1 1529 18 704 1063 62391 14707 2.82697 2.82697 -103.932 -2.82697 0 0 666494. 2306.21 0.28 0.04 0.13 -1 -1 0.28 0.0169374 0.015018 96 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.55 vpr 64.48 MiB -1 -1 0.15 20708 1 0.03 -1 -1 33912 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 26.0 MiB 0.22 1041 11265 2953 7098 1214 64.5 MiB 0.10 0.00 3.57927 -111.63 -3.57927 3.57927 0.97 0.000553713 0.000506808 0.0304148 0.0277906 32 2373 25 6.64007e+06 401856 554710. 1919.41 1.01 0.10481 0.0926654 22834 132086 -1 1993 23 1446 2407 160444 37354 3.68843 3.68843 -133.275 -3.68843 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0275471 0.0243376 132 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.61 vpr 64.78 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33940 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 26.2 MiB 0.16 1085 10481 2712 6564 1205 64.8 MiB 0.11 0.00 3.83167 -122.912 -3.83167 3.83167 0.99 0.000564435 0.000516177 0.035008 0.0320825 32 2500 19 6.64007e+06 276276 554710. 1919.41 1.07 0.115522 0.1027 22834 132086 -1 2234 22 1836 2896 232480 49794 3.79862 3.79862 -141.658 -3.79862 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0329513 0.0294564 148 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.95 vpr 64.57 MiB -1 -1 0.15 20360 1 0.03 -1 -1 33912 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 26.0 MiB 0.26 849 10515 2434 7374 707 64.6 MiB 0.08 0.00 3.43261 -99.0662 -3.43261 3.43261 0.99 0.000434558 0.000396566 0.0254274 0.023257 26 2474 36 6.64007e+06 251160 477104. 1650.88 1.59 0.100528 0.0888612 21682 110474 -1 1784 18 1017 1333 92579 25045 3.21157 3.21157 -113.975 -3.21157 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0178542 0.0158177 109 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.08 vpr 64.19 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33940 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65732 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 25.8 MiB 0.05 725 6855 1556 4919 380 64.2 MiB 0.06 0.00 2.90881 -86.0934 -2.90881 2.90881 0.97 0.000437131 0.000385488 0.0167543 0.01533 26 1979 19 6.64007e+06 263718 477104. 1650.88 0.91 0.0702125 0.0617877 21682 110474 -1 1707 20 1164 1937 137855 32173 2.87477 2.87477 -107.68 -2.87477 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0180437 0.0159782 106 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.64 vpr 65.26 MiB -1 -1 0.14 20700 1 0.03 -1 -1 33368 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 26.5 MiB 0.23 1077 15366 4010 9290 2066 65.3 MiB 0.13 0.00 4.06553 -131.449 -4.06553 4.06553 0.95 0.000468386 0.000424926 0.0386111 0.0351066 26 2955 30 6.64007e+06 326508 477104. 1650.88 1.25 0.12225 0.108373 21682 110474 -1 2360 21 1604 2071 138474 33193 4.76389 4.76389 -162.532 -4.76389 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0248021 0.0220097 144 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.67 vpr 64.78 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33600 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 26.3 MiB 0.23 1017 14793 4169 8845 1779 64.8 MiB 0.13 0.00 4.05281 -120 -4.05281 4.05281 0.99 0.000532514 0.000487685 0.0400897 0.036684 32 2729 23 6.64007e+06 364182 554710. 1919.41 1.06 0.121781 0.108695 22834 132086 -1 2273 20 1545 2382 162027 37644 4.21889 4.21889 -142.679 -4.21889 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0261985 0.0233989 155 53 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.95 vpr 64.93 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33608 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.5 MiB 0.09 1196 12860 3267 8782 811 64.9 MiB 0.12 0.00 4.37712 -120.717 -4.37712 4.37712 1.00 0.000560421 0.000513981 0.0332555 0.0304533 26 3061 23 6.64007e+06 452088 477104. 1650.88 1.55 0.120785 0.107879 21682 110474 -1 2518 19 1452 2693 199168 46967 4.77088 4.77088 -150.603 -4.77088 0 0 585099. 2024.56 0.27 0.08 0.11 -1 -1 0.27 0.0268803 0.0240308 153 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.52 vpr 64.28 MiB -1 -1 0.16 20308 1 0.03 -1 -1 33816 -1 -1 32 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 25.9 MiB 0.13 753 9253 2090 6561 602 64.3 MiB 0.08 0.00 2.8471 -83.1749 -2.8471 2.8471 1.01 0.00049148 0.000450447 0.0234486 0.0214842 26 2163 24 6.64007e+06 401856 477104. 1650.88 1.12 0.101242 0.0900749 21682 110474 -1 1801 20 1329 2326 142211 35348 2.80897 2.80897 -101.756 -2.80897 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0241313 0.0215534 121 47 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.15 vpr 64.03 MiB -1 -1 0.16 20524 1 0.03 -1 -1 34268 -1 -1 21 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65568 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 25.6 MiB 0.05 723 12292 3852 6881 1559 64.0 MiB 0.09 0.00 2.8251 -81.6115 -2.8251 2.8251 0.99 0.000395231 0.000361846 0.0302604 0.0277055 26 1687 20 6.64007e+06 263718 477104. 1650.88 0.92 0.0824434 0.0728839 21682 110474 -1 1547 20 1023 1524 112376 26620 2.85597 2.85597 -98.2357 -2.85597 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0178132 0.0156778 97 26 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.47 vpr 65.04 MiB -1 -1 0.16 20716 1 0.03 -1 -1 33972 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.7 MiB 0.25 1339 10944 3100 7197 647 65.0 MiB 0.11 0.00 3.53756 -117.737 -3.53756 3.53756 0.97 0.000611299 0.000561507 0.034323 0.0313316 26 3834 31 6.64007e+06 326508 477104. 1650.88 1.97 0.133814 0.118418 21682 110474 -1 2912 20 2008 3288 221889 50519 3.99822 3.99822 -141.168 -3.99822 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0280368 0.0249784 170 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.70 vpr 64.75 MiB -1 -1 0.18 20496 1 0.03 -1 -1 33764 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 26.2 MiB 0.31 1099 15584 5902 7667 2015 64.8 MiB 0.13 0.00 4.45361 -132.679 -4.45361 4.45361 0.97 0.000525464 0.000479624 0.0460611 0.042081 28 2920 22 6.64007e+06 288834 500653. 1732.36 1.13 0.122884 0.109209 21970 115934 -1 2330 21 1368 2131 162182 37074 4.66349 4.66349 -156.612 -4.66349 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0250595 0.0221552 152 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.01 vpr 64.48 MiB -1 -1 0.15 20408 1 0.03 -1 -1 33740 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 26.2 MiB 0.30 943 14483 5421 7069 1993 64.5 MiB 0.12 0.00 3.74495 -109.733 -3.74495 3.74495 1.00 0.000503275 0.00045859 0.0392806 0.0357229 28 2391 35 6.64007e+06 238602 500653. 1732.36 1.49 0.122112 0.107894 21970 115934 -1 1969 20 1103 1627 128632 28971 3.47022 3.47022 -129.385 -3.47022 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0222521 0.0197711 128 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.50 vpr 64.65 MiB -1 -1 0.15 20380 1 0.03 -1 -1 34056 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66200 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.2 MiB 0.06 899 18838 5683 10673 2482 64.6 MiB 0.16 0.00 4.00578 -103.806 -4.00578 4.00578 0.99 0.000506623 0.000463345 0.047307 0.0432776 28 2436 25 6.64007e+06 376740 500653. 1732.36 1.13 0.131132 0.11738 21970 115934 -1 1877 19 1000 1699 113324 28189 4.08822 4.08822 -124.897 -4.08822 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0231012 0.0205971 126 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.38 vpr 64.97 MiB -1 -1 0.17 20612 1 0.03 -1 -1 33736 -1 -1 34 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1114 12529 3161 8274 1094 65.0 MiB 0.11 0.00 4.08226 -117.397 -4.08226 4.08226 0.98 0.000575357 0.000526609 0.0337881 0.0308698 26 2637 22 6.64007e+06 426972 477104. 1650.88 1.01 0.113028 0.100238 21682 110474 -1 2178 18 1140 2021 139636 31457 3.76082 3.76082 -126.757 -3.76082 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0240334 0.0214883 145 46 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.17 vpr 64.75 MiB -1 -1 0.14 20320 1 0.03 -1 -1 33956 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.3 MiB 0.12 998 8913 2184 6122 607 64.8 MiB 0.07 0.00 3.0025 -94.8947 -3.0025 3.0025 0.95 0.000440513 0.000394765 0.0212298 0.0193127 32 2188 21 6.64007e+06 389298 554710. 1919.41 0.94 0.080506 0.070408 22834 132086 -1 1882 16 925 1657 113566 25502 2.79777 2.79777 -104.294 -2.79777 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0190754 0.0170449 124 46 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.60 vpr 65.11 MiB -1 -1 0.16 20712 1 0.03 -1 -1 33760 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 26.6 MiB 0.28 1257 15533 4914 8349 2270 65.1 MiB 0.14 0.00 4.01133 -130.52 -4.01133 4.01133 0.96 0.000527009 0.000485949 0.0432244 0.039461 32 2854 22 6.64007e+06 313950 554710. 1919.41 1.04 0.114919 0.10194 22834 132086 -1 2488 19 1689 2647 182503 42274 4.06769 4.06769 -149.514 -4.06769 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0242304 0.0216162 148 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.66 vpr 64.95 MiB -1 -1 0.16 20764 1 0.03 -1 -1 33968 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 26.4 MiB 0.15 1083 15412 3866 9802 1744 64.9 MiB 0.15 0.00 3.83767 -120.784 -3.83767 3.83767 1.00 0.000610616 0.000560725 0.0415749 0.0380638 26 2731 26 6.64007e+06 452088 477104. 1650.88 1.18 0.139548 0.124672 21682 110474 -1 2184 20 1303 1993 129383 30872 3.73363 3.73363 -134.905 -3.73363 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0273078 0.0244184 144 59 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.22 vpr 64.41 MiB -1 -1 0.14 20136 1 0.03 -1 -1 33848 -1 -1 17 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65952 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 26.0 MiB 0.08 798 8212 2604 3998 1610 64.4 MiB 0.06 0.00 2.88681 -90.1499 -2.88681 2.88681 0.99 0.000405309 0.000370641 0.0224854 0.0206273 32 1525 21 6.64007e+06 213486 554710. 1919.41 0.93 0.0764795 0.0673228 22834 132086 -1 1465 22 1073 1604 138862 31039 2.80997 2.80997 -102.234 -2.80997 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0212389 0.0188582 91 28 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.53 vpr 64.38 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33948 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 26.0 MiB 0.21 933 14221 5048 7423 1750 64.4 MiB 0.11 0.00 3.19816 -104.438 -3.19816 3.19816 0.99 0.000467211 0.000427622 0.0383199 0.0350658 32 2139 20 6.64007e+06 263718 554710. 1919.41 0.99 0.101313 0.0899653 22834 132086 -1 1841 21 1470 1954 165913 36494 3.25603 3.25603 -121.52 -3.25603 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0238219 0.021177 117 55 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.67 vpr 64.70 MiB -1 -1 0.15 20316 1 0.03 -1 -1 33780 -1 -1 37 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.3 MiB 0.07 1013 14716 3681 8653 2382 64.7 MiB 0.12 0.00 3.81067 -106.754 -3.81067 3.81067 0.97 0.000483155 0.000441019 0.0335725 0.0305836 26 2544 33 6.64007e+06 464646 477104. 1650.88 1.35 0.114363 0.101133 21682 110474 -1 2050 20 1446 2516 166403 38098 3.65163 3.65163 -123.062 -3.65163 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0247096 0.022054 129 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.74 vpr 64.46 MiB -1 -1 0.15 20432 1 0.03 -1 -1 34012 -1 -1 22 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 26.0 MiB 0.26 840 11963 2910 8349 704 64.5 MiB 0.09 0.00 3.36661 -93.92 -3.36661 3.36661 0.98 0.000416618 0.000382218 0.0296484 0.0271687 26 2169 21 6.64007e+06 276276 477104. 1650.88 1.24 0.0964174 0.0859473 21682 110474 -1 1777 18 996 1290 87696 21593 3.20383 3.20383 -107.02 -3.20383 0 0 585099. 2024.56 0.27 0.05 0.11 -1 -1 0.27 0.0182444 0.0162779 109 25 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.44 vpr 64.07 MiB -1 -1 0.14 20188 1 0.03 -1 -1 33944 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65608 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 25.6 MiB 0.13 761 12856 5330 7056 470 64.1 MiB 0.10 0.00 3.14521 -97.0435 -3.14521 3.14521 0.98 0.000429244 0.000392398 0.0335134 0.0306109 30 1986 25 6.64007e+06 213486 526063. 1820.29 1.11 0.0950024 0.08407 22546 126617 -1 1521 19 1131 1895 112832 26060 2.79377 2.79377 -104.879 -2.79377 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0188951 0.0167183 108 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.39 vpr 64.92 MiB -1 -1 0.17 20576 1 0.03 -1 -1 33720 -1 -1 36 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 26.4 MiB 0.13 904 11043 2567 7918 558 64.9 MiB 0.10 0.00 3.26641 -98.7144 -3.26641 3.26641 0.98 0.000551122 0.000501662 0.0282918 0.0257501 26 2199 22 6.64007e+06 452088 477104. 1650.88 1.05 0.103089 0.0908384 21682 110474 -1 1966 21 1520 2377 158388 37700 3.26337 3.26337 -117.713 -3.26337 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0263552 0.0234125 136 60 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.25 vpr 64.23 MiB -1 -1 0.15 20248 1 0.03 -1 -1 34004 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 25.7 MiB 0.21 943 13043 4080 7132 1831 64.2 MiB 0.09 0.00 3.15716 -100.02 -3.15716 3.15716 0.96 0.000422325 0.000385347 0.0314506 0.0287264 28 2021 19 6.64007e+06 251160 500653. 1732.36 0.89 0.0840394 0.0743031 21970 115934 -1 1765 19 921 1320 87424 20203 2.83123 2.83123 -109.185 -2.83123 0 0 612192. 2118.31 0.27 0.04 0.12 -1 -1 0.27 0.0172601 0.0152336 107 30 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.42 vpr 64.78 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33668 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66332 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1047 11265 2939 7372 954 64.8 MiB 0.10 0.00 2.90281 -97.1946 -2.90281 2.90281 0.98 0.000536233 0.000489188 0.0291112 0.0265445 26 2511 35 6.64007e+06 401856 477104. 1650.88 1.10 0.111643 0.0984952 21682 110474 -1 2187 18 1125 1957 143169 31768 2.88097 2.88097 -111.716 -2.88097 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0214708 0.0190674 127 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.40 vpr 64.80 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33904 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.26 816 14999 3334 10731 934 64.8 MiB 0.12 0.00 3.50555 -107.438 -3.50555 3.50555 0.94 0.000507917 0.000459642 0.0382775 0.0347371 32 2163 22 6.64007e+06 401856 554710. 1919.41 0.96 0.108645 0.0954685 22834 132086 -1 1914 20 1360 2011 128262 31811 3.35903 3.35903 -128.113 -3.35903 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0248583 0.0219848 138 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.41 vpr 64.22 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33232 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65764 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.7 MiB 0.18 839 7956 2116 5376 464 64.2 MiB 0.07 0.00 2.6639 -87.6451 -2.6639 2.6639 0.99 0.000465796 0.000426829 0.0236327 0.0217045 26 2101 19 6.64007e+06 213486 477104. 1650.88 1.02 0.09737 0.0866877 21682 110474 -1 1852 19 905 1466 109737 24796 2.90297 2.90297 -107.411 -2.90297 0 0 585099. 2024.56 0.27 0.05 0.11 -1 -1 0.27 0.0204827 0.0182055 104 54 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.78 vpr 64.48 MiB -1 -1 0.16 20276 1 0.03 -1 -1 33720 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 26.1 MiB 0.24 876 9571 2654 6186 731 64.5 MiB 0.09 0.00 3.43507 -108.022 -3.43507 3.43507 0.99 0.000458795 0.000419654 0.0266126 0.0244254 26 2426 25 6.64007e+06 263718 477104. 1650.88 1.32 0.103552 0.0925107 21682 110474 -1 2008 21 1342 1952 150257 34877 3.53223 3.53223 -127 -3.53223 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0230702 0.0204034 117 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.45 vpr 64.58 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33780 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 26.2 MiB 0.21 1003 8919 2216 6292 411 64.6 MiB 0.08 0.00 3.92735 -113.653 -3.92735 3.92735 0.97 0.00050181 0.00045491 0.0252281 0.0228855 26 2719 25 6.64007e+06 288834 477104. 1650.88 1.02 0.0947708 0.0833888 21682 110474 -1 2271 22 1750 2380 170906 40867 4.01402 4.01402 -137.726 -4.01402 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0260448 0.0232319 130 27 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.38 vpr 64.37 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33416 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65916 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 26.0 MiB 0.18 930 12753 3587 7852 1314 64.4 MiB 0.11 0.00 3.79367 -101.001 -3.79367 3.79367 0.98 0.00050042 0.000461648 0.0332006 0.0304385 32 1927 18 6.64007e+06 364182 554710. 1919.41 0.92 0.0929577 0.082203 22834 132086 -1 1728 20 784 1300 71983 17596 3.28982 3.28982 -106.845 -3.28982 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0214474 0.0189939 122 49 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.26 vpr 64.90 MiB -1 -1 0.18 20644 1 0.03 -1 -1 33700 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 26.4 MiB 0.29 1144 8668 2132 6053 483 64.9 MiB 0.10 0.00 4.33064 -139.566 -4.33064 4.33064 1.00 0.000640171 0.000587821 0.0294391 0.0269935 28 2907 21 6.64007e+06 301392 500653. 1732.36 1.63 0.121532 0.108552 21970 115934 -1 2557 20 1543 2267 154005 36321 4.32789 4.32789 -159.138 -4.32789 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0293549 0.026246 154 62 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.14 vpr 64.09 MiB -1 -1 0.15 20484 1 0.03 -1 -1 33532 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 25.7 MiB 0.05 786 7256 1736 5040 480 64.1 MiB 0.06 0.00 3.1145 -86.7799 -3.1145 3.1145 0.97 0.000393412 0.00035758 0.0180642 0.0164658 32 1729 15 6.64007e+06 226044 554710. 1919.41 0.93 0.0644118 0.0567236 22834 132086 -1 1523 16 717 1183 77762 18330 2.83577 2.83577 -99.0185 -2.83577 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0152351 0.013624 96 -1 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.48 vpr 64.98 MiB -1 -1 0.16 20592 1 0.03 -1 -1 33596 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1024 8423 1695 6215 513 65.0 MiB 0.09 0.00 3.32336 -115.72 -3.32336 3.32336 0.93 0.000571384 0.000520466 0.0240255 0.0219261 26 2633 26 6.64007e+06 426972 477104. 1650.88 1.24 0.106359 0.0937309 21682 110474 -1 2184 22 1722 2634 193476 44249 4.21763 4.21763 -147.371 -4.21763 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0282812 0.0250506 145 87 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.50 vpr 64.60 MiB -1 -1 0.16 20676 1 0.03 -1 -1 33800 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.24 862 5856 1259 3969 628 64.6 MiB 0.06 0.00 2.8021 -101.718 -2.8021 2.8021 0.98 0.00044474 0.00040639 0.0185597 0.0169511 32 1885 22 6.64007e+06 213486 554710. 1919.41 1.00 0.0889713 0.0780844 22834 132086 -1 1730 23 1407 2126 149627 32991 2.75357 2.75357 -119.537 -2.75357 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0277198 0.0245828 114 93 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.49 vpr 64.38 MiB -1 -1 0.16 20852 1 0.03 -1 -1 33952 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 25.9 MiB 0.14 1055 17178 4663 10401 2114 64.4 MiB 0.15 0.00 3.57727 -113.507 -3.57727 3.57727 1.00 0.000572032 0.000524789 0.0464209 0.0425692 32 2191 17 6.64007e+06 401856 554710. 1919.41 0.96 0.115529 0.103111 22834 132086 -1 1900 16 755 1136 72812 16463 3.19363 3.19363 -117.171 -3.19363 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0214001 0.0192163 131 57 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.72 vpr 64.95 MiB -1 -1 0.15 20476 1 0.03 -1 -1 34076 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 26.7 MiB 0.31 1335 9271 2305 6498 468 65.0 MiB 0.10 0.00 5.15449 -157.077 -5.15449 5.15449 0.95 0.000561035 0.000511572 0.027637 0.0251899 28 3346 25 6.64007e+06 339066 500653. 1732.36 1.24 0.118958 0.105358 21970 115934 -1 2761 20 1906 2716 195918 45456 5.17074 5.17074 -175.159 -5.17074 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.0275004 0.0245149 170 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.69 vpr 64.25 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33664 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 25.9 MiB 0.18 694 11776 2901 8194 681 64.2 MiB 0.08 0.00 2.6949 -83.5518 -2.6949 2.6949 0.99 0.000374346 0.000343575 0.0268099 0.0246115 26 1822 19 6.64007e+06 226044 477104. 1650.88 1.36 0.0863419 0.0771202 21682 110474 -1 1537 15 706 867 79118 18448 2.53637 2.53637 -99.7786 -2.53637 0 0 585099. 2024.56 0.27 0.04 0.11 -1 -1 0.27 0.0145912 0.0130638 87 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.35 vpr 64.22 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33588 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65760 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.8 MiB 0.11 622 8046 2217 5453 376 64.2 MiB 0.07 0.00 3.52781 -98.0813 -3.52781 3.52781 1.01 0.000451171 0.000412404 0.023879 0.0219203 32 1513 20 6.64007e+06 200928 554710. 1919.41 0.95 0.0817668 0.0722297 22834 132086 -1 1383 23 1057 1740 120517 29235 3.29237 3.29237 -112.18 -3.29237 0 0 701300. 2426.64 0.32 0.06 0.14 -1 -1 0.32 0.0246545 0.0218787 92 29 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.33 vpr 64.26 MiB -1 -1 0.16 20388 1 0.03 -1 -1 33584 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.8 MiB 0.09 973 9943 2727 6389 827 64.3 MiB 0.09 0.00 2.8981 -98.4746 -2.8981 2.8981 0.98 0.000459411 0.000420202 0.0254648 0.0232434 32 2095 24 6.64007e+06 263718 554710. 1919.41 0.98 0.0860139 0.0756808 22834 132086 -1 1899 22 1346 2422 161326 36354 2.67657 2.67657 -109.893 -2.67657 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0237523 0.0211509 115 31 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.41 vpr 64.29 MiB -1 -1 0.15 20408 1 0.03 -1 -1 33524 -1 -1 27 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65828 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.9 MiB 0.05 492 9051 3183 3832 2036 64.3 MiB 0.06 0.00 2.66619 -62.337 -2.66619 2.66619 1.00 0.000352873 0.000320317 0.0192158 0.0174647 28 1544 44 6.64007e+06 339066 500653. 1732.36 1.22 0.082483 0.0721512 21970 115934 -1 1178 21 769 1308 82674 21746 2.82897 2.82897 -79.5017 -2.82897 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0164335 0.0144591 89 19 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.57 vpr 64.84 MiB -1 -1 0.16 20536 1 0.03 -1 -1 34016 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 26.4 MiB 0.16 968 10129 2752 6860 517 64.8 MiB 0.10 0.00 3.49656 -109.326 -3.49656 3.49656 1.02 0.000553519 0.000508528 0.0333131 0.0305767 32 2517 21 6.64007e+06 263718 554710. 1919.41 1.04 0.11396 0.101427 22834 132086 -1 2145 18 1304 2393 147266 35328 3.64862 3.64862 -125.118 -3.64862 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0262658 0.0235768 136 69 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.36 vpr 64.88 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33992 -1 -1 35 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 26.3 MiB 0.17 994 18098 5248 10145 2705 64.9 MiB 0.15 0.00 3.48461 -115.489 -3.48461 3.48461 0.95 0.000554583 0.000503299 0.0470752 0.0429682 32 2223 17 6.64007e+06 439530 554710. 1919.41 0.93 0.116376 0.103178 22834 132086 -1 1997 21 1275 1983 132465 30382 3.32283 3.32283 -127.153 -3.32283 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0260486 0.023022 143 86 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.83 vpr 64.76 MiB -1 -1 0.16 20480 1 0.03 -1 -1 33932 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 26.2 MiB 0.40 1201 11596 3183 7644 769 64.8 MiB 0.12 0.00 4.10361 -125.812 -4.10361 4.10361 0.99 0.000566582 0.00051932 0.0331957 0.030449 32 2695 22 6.65987e+06 380340 554710. 1919.41 1.08 0.114135 0.101695 22834 132086 -1 2370 21 1689 2663 192122 44267 4.37097 4.37097 -146.045 -4.37097 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0279969 0.0250534 152 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.69 vpr 64.87 MiB -1 -1 0.17 20536 1 0.03 -1 -1 33908 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 26.4 MiB 0.29 1028 12919 3478 7430 2011 64.9 MiB 0.11 0.00 3.67516 -116.546 -3.67516 3.67516 1.00 0.000461485 0.000423311 0.0382822 0.0349704 32 2300 22 6.65987e+06 291594 554710. 1919.41 1.03 0.110855 0.0981785 22834 132086 -1 2087 23 1773 2681 217847 48889 4.06163 4.06163 -139.49 -4.06163 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0282674 0.0252199 138 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.71 vpr 64.54 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33896 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 26.0 MiB 0.11 990 9111 2326 6160 625 64.5 MiB 0.08 0.00 3.45444 -101.198 -3.45444 3.45444 0.96 0.000470591 0.000432616 0.0228682 0.0208925 26 2754 34 6.65987e+06 291594 477104. 1650.88 1.43 0.102504 0.0905233 21682 110474 -1 2159 21 1419 1933 139005 33080 3.65971 3.65971 -125.591 -3.65971 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0227927 0.0203261 126 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.49 vpr 64.47 MiB -1 -1 0.16 20316 1 0.03 -1 -1 33864 -1 -1 27 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 26.0 MiB 0.10 961 9448 2377 6434 637 64.5 MiB 0.09 0.00 3.42544 -95.0241 -3.42544 3.42544 0.99 0.000490797 0.000449643 0.0253326 0.0232181 32 2274 32 6.65987e+06 342306 554710. 1919.41 1.08 0.102717 0.0908526 22834 132086 -1 1949 23 1477 2751 205317 48053 3.77077 3.77077 -115.394 -3.77077 0 0 701300. 2426.64 0.32 0.08 0.13 -1 -1 0.32 0.028072 0.0251183 126 25 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.95 vpr 64.52 MiB -1 -1 0.13 20228 1 0.03 -1 -1 33340 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66064 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 26.1 MiB 0.11 1038 11223 3297 6820 1106 64.5 MiB 0.10 0.00 3.48115 -105.918 -3.48115 3.48115 0.96 0.000534501 0.000487641 0.0301776 0.027372 26 2841 36 6.65987e+06 291594 477104. 1650.88 1.71 0.118117 0.104075 21682 110474 -1 2429 21 1642 3124 244971 56234 3.44211 3.44211 -127.418 -3.44211 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0254797 0.0226422 130 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.56 vpr 64.79 MiB -1 -1 0.16 20920 1 0.03 -1 -1 33632 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 26.2 MiB 0.17 975 16747 5055 8850 2842 64.8 MiB 0.15 0.00 2.68684 -95.2732 -2.68684 2.68684 1.01 0.00053023 0.000482633 0.0437104 0.0399946 32 2436 21 6.65987e+06 418374 554710. 1919.41 1.00 0.118809 0.105588 22834 132086 -1 2122 20 1341 2085 163043 38121 2.86591 2.86591 -112.582 -2.86591 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0282469 0.0253099 141 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.34 vpr 64.08 MiB -1 -1 0.15 20244 1 0.03 -1 -1 34248 -1 -1 18 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65616 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 25.7 MiB 0.19 599 11487 3197 7530 760 64.1 MiB 0.08 0.00 3.02895 -78.8967 -3.02895 3.02895 0.99 0.000405613 0.000372318 0.0304327 0.0278339 32 1510 21 6.65987e+06 228204 554710. 1919.41 0.93 0.081934 0.0722272 22834 132086 -1 1339 22 876 1460 114115 26601 2.79271 2.79271 -90.8246 -2.79271 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0189023 0.0166774 94 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.36 vpr 64.12 MiB -1 -1 0.16 20064 1 0.03 -1 -1 33884 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65656 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.7 MiB 0.05 1016 13726 3515 8501 1710 64.1 MiB 0.10 0.00 2.49244 -79.5759 -2.49244 2.49244 0.97 0.000409699 0.000369733 0.0294193 0.0268447 28 2181 17 6.65987e+06 393018 500653. 1732.36 1.13 0.0881704 0.0782155 21970 115934 -1 1936 20 881 1615 113371 25610 2.69671 2.69671 -95.456 -2.69671 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0202224 0.0179372 115 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.44 vpr 64.60 MiB -1 -1 0.16 20368 1 0.03 -1 -1 33752 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 26.2 MiB 0.16 916 10050 2738 6635 677 64.6 MiB 0.09 0.00 2.68253 -95.7293 -2.68253 2.68253 0.98 0.000490594 0.000450709 0.0289334 0.0265542 32 2266 18 6.65987e+06 240882 554710. 1919.41 0.99 0.0922004 0.0818578 22834 132086 -1 1945 22 1307 1967 154501 34998 2.93031 2.93031 -112.163 -2.93031 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0241893 0.0214841 111 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.38 vpr 64.23 MiB -1 -1 0.14 20104 1 0.03 -1 -1 33736 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.7 MiB 0.27 887 8831 2540 5709 582 64.2 MiB 0.08 0.00 2.98475 -102.648 -2.98475 2.98475 0.98 0.000452789 0.000412229 0.0242785 0.0221865 32 2024 19 6.65987e+06 215526 554710. 1919.41 0.93 0.0819476 0.0724143 22834 132086 -1 1766 17 1079 1734 126415 29621 2.76171 2.76171 -112.682 -2.76171 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0192993 0.0172654 113 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 64.39 MiB -1 -1 0.15 20568 1 0.03 -1 -1 33712 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 25.9 MiB 0.26 581 7008 1624 4728 656 64.4 MiB 0.05 0.00 3.37455 -89.5123 -3.37455 3.37455 1.01 0.00045425 0.000415204 0.0213438 0.0195969 28 1642 20 6.65987e+06 215526 500653. 1732.36 1.02 0.0926543 0.0822668 21970 115934 -1 1388 20 808 1245 81726 21338 3.19451 3.19451 -104.795 -3.19451 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0219008 0.0195325 98 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.55 vpr 64.08 MiB -1 -1 0.15 20364 1 0.03 -1 -1 33520 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65616 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 25.7 MiB 0.26 808 12156 4131 6101 1924 64.1 MiB 0.09 0.00 2.91589 -93.835 -2.91589 2.91589 0.95 0.000418456 0.000380958 0.0317682 0.0288935 32 2320 26 6.65987e+06 215526 554710. 1919.41 1.07 0.0972366 0.0859711 22834 132086 -1 1805 20 1252 1676 131364 31687 2.78465 2.78465 -105.169 -2.78465 0 0 701300. 2426.64 0.32 0.06 0.13 -1 -1 0.32 0.0215071 0.0192235 106 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.64 vpr 64.74 MiB -1 -1 0.17 20228 1 0.03 -1 -1 33968 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 26.4 MiB 0.24 1134 17053 5329 9325 2399 64.7 MiB 0.16 0.00 3.37501 -114.033 -3.37501 3.37501 0.97 0.000539533 0.000492926 0.0485792 0.0443339 30 2375 24 6.65987e+06 304272 526063. 1820.29 1.09 0.124653 0.11085 22546 126617 -1 1938 22 1401 2047 113639 26257 2.87011 2.87011 -116.367 -2.87011 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0254554 0.0226272 139 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.42 vpr 64.62 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33892 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 26.1 MiB 0.18 1010 13939 4008 8223 1708 64.6 MiB 0.12 0.00 3.76229 -111.647 -3.76229 3.76229 0.98 0.000503291 0.000456325 0.0352141 0.0320718 32 2336 22 6.65987e+06 380340 554710. 1919.41 0.98 0.104248 0.0919638 22834 132086 -1 2100 23 1465 2415 195731 43326 3.61105 3.61105 -126.836 -3.61105 0 0 701300. 2426.64 0.31 0.08 0.12 -1 -1 0.31 0.0272824 0.0241797 133 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.35 vpr 64.12 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33444 -1 -1 21 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 25.7 MiB 0.15 786 10940 3196 6656 1088 64.1 MiB 0.08 0.00 2.56293 -76.3929 -2.56293 2.56293 1.00 0.000415456 0.000380897 0.0267714 0.0245548 32 1725 21 6.65987e+06 266238 554710. 1919.41 0.96 0.0805393 0.0713508 22834 132086 -1 1642 19 906 1553 120438 28419 2.96711 2.96711 -93.207 -2.96711 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0187396 0.0166862 98 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.83 vpr 64.64 MiB -1 -1 0.16 20536 1 0.03 -1 -1 33872 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 26.2 MiB 0.43 1067 15151 4792 8291 2068 64.6 MiB 0.14 0.00 3.1755 -102.34 -3.1755 3.1755 1.00 0.000557195 0.000509813 0.0488027 0.0446619 28 2507 21 6.65987e+06 266238 500653. 1732.36 1.05 0.133279 0.119294 21970 115934 -1 2185 20 1301 2379 171123 39104 3.17331 3.17331 -120.445 -3.17331 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0290113 0.0259955 132 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.55 vpr 64.67 MiB -1 -1 0.17 20096 1 0.03 -1 -1 34032 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 26.1 MiB 0.24 1111 8641 1896 5966 779 64.7 MiB 0.08 0.00 3.39001 -115.173 -3.39001 3.39001 0.98 0.00051641 0.00047068 0.025245 0.0231013 32 2594 31 6.65987e+06 266238 554710. 1919.41 1.02 0.101014 0.0888572 22834 132086 -1 2207 21 1473 2069 149549 35332 3.35197 3.35197 -129.342 -3.35197 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0251769 0.0224465 137 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.31 vpr 64.40 MiB -1 -1 0.15 20104 1 0.03 -1 -1 33488 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 26.0 MiB 0.22 860 15633 4213 9926 1494 64.4 MiB 0.12 0.00 2.30864 -87.9994 -2.30864 2.30864 0.96 0.000478534 0.00043662 0.037529 0.0342561 28 2005 20 6.65987e+06 367662 500653. 1732.36 0.88 0.0975772 0.0863078 21970 115934 -1 1750 21 949 1465 100623 23403 2.25971 2.25971 -99.4661 -2.25971 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0237282 0.021122 110 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 4.22 vpr 63.86 MiB -1 -1 0.14 19972 1 0.03 -1 -1 33716 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65392 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 25.3 MiB 0.13 642 12139 3393 7690 1056 63.9 MiB 0.08 0.00 1.87027 -67.1558 -1.87027 1.87027 1.00 0.000351543 0.000313783 0.0286748 0.026311 26 1552 23 6.65987e+06 190170 477104. 1650.88 0.93 0.0846916 0.0753263 21682 110474 -1 1319 23 738 1077 88432 19795 1.83285 1.83285 -79.8323 -1.83285 0 0 585099. 2024.56 0.27 0.05 0.11 -1 -1 0.27 0.0186043 0.0164128 81 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.58 vpr 64.47 MiB -1 -1 0.15 20400 1 0.03 -1 -1 33856 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 26.0 MiB 0.36 877 9516 2678 5817 1021 64.5 MiB 0.08 0.00 3.85375 -114.422 -3.85375 3.85375 0.98 0.000461513 0.00042258 0.0258398 0.0236376 28 2073 21 6.65987e+06 240882 500653. 1732.36 1.03 0.0951113 0.0844467 21970 115934 -1 1822 17 988 1441 98436 23906 3.58731 3.58731 -128.516 -3.58731 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0198769 0.0178346 127 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.29 vpr 64.60 MiB -1 -1 0.15 20516 1 0.03 -1 -1 33824 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66148 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 26.1 MiB 0.06 945 10247 2466 6489 1292 64.6 MiB 0.09 0.00 3.36036 -105.343 -3.36036 3.36036 0.95 0.000504333 0.000459715 0.0270029 0.0247071 32 2202 24 6.65987e+06 393018 554710. 1919.41 1.00 0.0995191 0.0877951 22834 132086 -1 1840 22 1389 2190 140546 33893 3.45443 3.45443 -121.348 -3.45443 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0250186 0.0221837 135 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.62 vpr 64.88 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33988 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1179 11415 3272 7551 592 64.9 MiB 0.12 0.00 3.48504 -112.69 -3.48504 3.48504 1.00 0.000612406 0.000563017 0.036354 0.0332921 30 2666 20 6.65987e+06 291594 526063. 1820.29 1.03 0.118081 0.105188 22546 126617 -1 2242 20 1199 1952 118111 26954 3.45251 3.45251 -122.755 -3.45251 0 0 666494. 2306.21 0.31 0.06 0.12 -1 -1 0.31 0.0254163 0.0226199 142 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.45 vpr 63.75 MiB -1 -1 0.14 19916 1 0.03 -1 -1 34232 -1 -1 18 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65280 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 25.3 MiB 0.28 366 10796 3597 4768 2431 63.8 MiB 0.06 0.00 1.89953 -51.8374 -1.89953 1.89953 0.95 0.000298869 0.000271654 0.0216368 0.019606 28 1163 25 6.65987e+06 228204 500653. 1732.36 1.11 0.0706546 0.0621231 21970 115934 -1 871 21 679 932 69942 18806 1.95411 1.95411 -66.6483 -1.95411 0 0 612192. 2118.31 0.28 0.04 0.12 -1 -1 0.28 0.0150919 0.0133215 77 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.31 vpr 64.31 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33752 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.9 MiB 0.10 968 8827 2402 4710 1715 64.3 MiB 0.07 0.00 3.9748 -101.657 -3.9748 3.9748 0.99 0.000400898 0.000363753 0.0225256 0.0205643 32 2265 25 6.65987e+06 266238 554710. 1919.41 0.98 0.0855027 0.0751442 22834 132086 -1 1993 24 1340 2514 197903 45477 3.82377 3.82377 -121.72 -3.82377 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0248499 0.0219799 118 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.08 vpr 63.32 MiB -1 -1 0.12 20204 1 0.03 -1 -1 33380 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64844 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.9 MiB 0.03 561 10868 4123 5529 1216 63.3 MiB 0.06 0.00 1.96647 -60.997 -1.96647 1.96647 0.98 0.000285294 0.00026138 0.0206226 0.0188222 26 1431 37 6.65987e+06 177492 477104. 1650.88 0.97 0.0720203 0.0635024 21682 110474 -1 1131 15 571 634 48829 12265 1.90885 1.90885 -74.1277 -1.90885 0 0 585099. 2024.56 0.25 0.03 0.11 -1 -1 0.25 0.0109808 0.00979004 79 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.43 vpr 64.20 MiB -1 -1 0.15 20668 1 0.03 -1 -1 33700 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65740 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.8 MiB 0.10 910 8827 2117 6350 360 64.2 MiB 0.08 0.00 3.42395 -99.0479 -3.42395 3.42395 1.01 0.000478175 0.000437842 0.0226204 0.0207081 30 2048 33 6.65987e+06 380340 526063. 1820.29 1.03 0.0975189 0.0861622 22546 126617 -1 1718 19 816 1390 79849 19289 3.06045 3.06045 -106.198 -3.06045 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0224186 0.0200587 123 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.67 vpr 64.44 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33860 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.0 MiB 0.10 957 7871 1511 5756 604 64.4 MiB 0.07 0.00 3.00424 -87.8585 -3.00424 3.00424 1.01 0.00049659 0.000456227 0.0194883 0.0179225 28 2425 22 6.65987e+06 393018 500653. 1732.36 1.31 0.0939542 0.083725 21970 115934 -1 2069 20 1240 2276 150563 37159 2.89297 2.89297 -106.454 -2.89297 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0236455 0.0211403 128 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.43 vpr 64.62 MiB -1 -1 0.16 20340 1 0.03 -1 -1 33620 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 26.1 MiB 0.13 1074 11949 3257 7525 1167 64.6 MiB 0.11 0.00 3.32969 -104.177 -3.32969 3.32969 0.98 0.000525303 0.000471542 0.0325974 0.0297648 30 2153 23 6.65987e+06 329628 526063. 1820.29 1.02 0.099091 0.0874562 22546 126617 -1 1901 20 1151 2074 107999 25958 3.17245 3.17245 -118.917 -3.17245 0 0 666494. 2306.21 0.31 0.06 0.12 -1 -1 0.31 0.0255995 0.0228721 125 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.33 vpr 64.15 MiB -1 -1 0.15 20148 1 0.03 -1 -1 33696 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65692 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.6 MiB 0.05 866 10916 2732 6859 1325 64.2 MiB 0.09 0.00 2.29953 -83.7203 -2.29953 2.29953 1.01 0.000454162 0.000415839 0.0306597 0.0280475 32 1924 20 6.65987e+06 202848 554710. 1919.41 0.98 0.0920248 0.0814833 22834 132086 -1 1700 22 1087 1765 140324 31237 2.47431 2.47431 -100.981 -2.47431 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0235405 0.0209254 101 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.26 vpr 64.30 MiB -1 -1 0.15 20192 1 0.03 -1 -1 33328 -1 -1 23 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 25.8 MiB 0.09 692 12361 2896 8859 606 64.3 MiB 0.09 0.00 2.39767 -77.2396 -2.39767 2.39767 1.00 0.000405664 0.000369213 0.028876 0.0263639 28 1676 25 6.65987e+06 291594 500653. 1732.36 0.99 0.0930189 0.0824315 21970 115934 -1 1516 23 992 1567 120306 27297 2.69071 2.69071 -94.1487 -2.69071 0 0 612192. 2118.31 0.28 0.06 0.11 -1 -1 0.28 0.0214639 0.0190811 97 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.67 vpr 64.10 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33692 -1 -1 23 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65636 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 25.6 MiB 0.05 705 13223 3574 8883 766 64.1 MiB 0.10 0.00 2.56864 -75.4387 -2.56864 2.56864 0.97 0.000427056 0.000381216 0.030313 0.0275644 32 1739 21 6.65987e+06 291594 554710. 1919.41 1.41 0.099327 0.0870548 22834 132086 -1 1553 25 1147 2037 168435 38318 2.67865 2.67865 -92.2998 -2.67865 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0221237 0.0194925 98 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 5.56 vpr 64.10 MiB -1 -1 0.14 20404 1 0.03 -1 -1 33564 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65636 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 25.6 MiB 0.10 819 7103 1550 5206 347 64.1 MiB 0.06 0.00 2.87775 -89.6738 -2.87775 2.87775 0.99 0.000411314 0.000375929 0.0186133 0.017099 26 2029 26 6.65987e+06 240882 477104. 1650.88 2.30 0.148981 0.131259 21682 110474 -1 1882 23 1233 2020 155194 36094 2.96291 2.96291 -110.275 -2.96291 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.02316 0.02069 110 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.20 vpr 64.28 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33472 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 25.8 MiB 0.10 832 7125 1484 5327 314 64.3 MiB 0.06 0.00 2.64264 -81.6472 -2.64264 2.64264 0.98 0.000386752 0.00035269 0.0168775 0.0153937 30 1757 20 6.65987e+06 342306 526063. 1820.29 0.92 0.0711108 0.0624054 22546 126617 -1 1521 16 638 1036 51699 12863 2.84071 2.84071 -96.2187 -2.84071 0 0 666494. 2306.21 0.31 0.04 0.12 -1 -1 0.31 0.017718 0.0159182 103 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.46 vpr 64.16 MiB -1 -1 0.15 20260 1 0.03 -1 -1 33812 -1 -1 25 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65696 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 25.6 MiB 0.23 867 12371 3225 7529 1617 64.2 MiB 0.09 0.00 2.43438 -81.2866 -2.43438 2.43438 0.96 0.00039137 0.000352952 0.0300786 0.0274532 32 1892 40 6.65987e+06 316950 554710. 1919.41 1.06 0.10276 0.0904537 22834 132086 -1 1759 17 1067 1633 120795 28637 2.48105 2.48105 -100.241 -2.48105 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0237051 0.021325 105 48 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.65 vpr 65.00 MiB -1 -1 0.16 20556 1 0.03 -1 -1 33892 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 26.4 MiB 0.28 1197 11851 2939 7491 1421 65.0 MiB 0.11 0.00 3.51556 -102.262 -3.51556 3.51556 0.98 0.000616575 0.000566938 0.0304742 0.027943 32 2743 22 6.65987e+06 469086 554710. 1919.41 1.02 0.108504 0.096207 22834 132086 -1 2428 19 1399 2418 176579 40985 3.81083 3.81083 -124.054 -3.81083 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0290478 0.0251605 150 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.54 vpr 64.81 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33660 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 26.3 MiB 0.28 925 7988 1523 6148 317 64.8 MiB 0.08 0.00 2.98295 -101.27 -2.98295 2.98295 0.96 0.00058634 0.000526598 0.022152 0.0201407 28 2254 20 6.65987e+06 456408 500653. 1732.36 1.05 0.102059 0.0901713 21970 115934 -1 1979 21 1533 2373 162847 39744 2.81651 2.81651 -116.721 -2.81651 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0288908 0.0258629 146 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 7.06 vpr 64.20 MiB -1 -1 0.14 20384 1 0.03 -1 -1 33684 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65744 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 25.9 MiB 0.26 930 12980 3848 7123 2009 64.2 MiB 0.10 0.00 3.35895 -103.085 -3.35895 3.35895 0.96 0.000414757 0.00037825 0.0326208 0.0297399 26 2437 36 6.65987e+06 215526 477104. 1650.88 3.70 0.163884 0.143477 21682 110474 -1 2068 21 1255 1818 162486 35867 3.24371 3.24371 -118.674 -3.24371 0 0 585099. 2024.56 0.26 0.06 0.10 -1 -1 0.26 0.0208948 0.0184544 109 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.66 vpr 64.47 MiB -1 -1 0.17 20508 1 0.03 -1 -1 33704 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 25.9 MiB 0.27 984 9495 2466 6339 690 64.5 MiB 0.10 0.00 3.29135 -101.719 -3.29135 3.29135 1.00 0.000603549 0.000542059 0.0305483 0.0279414 32 2423 24 6.65987e+06 304272 554710. 1919.41 1.03 0.111622 0.0989242 22834 132086 -1 2165 20 1569 2662 197766 45777 2.98197 2.98197 -113.19 -2.98197 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0282385 0.0253173 137 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.78 vpr 64.75 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33652 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 26.7 MiB 0.36 1325 15969 5079 8615 2275 64.7 MiB 0.16 0.00 4.59693 -140.865 -4.59693 4.59693 0.96 0.000539008 0.000493953 0.0470465 0.0429834 30 2923 22 6.65987e+06 342306 526063. 1820.29 1.11 0.12724 0.113187 22546 126617 -1 2430 21 1724 2572 139702 33519 4.58483 4.58483 -158.954 -4.58483 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0268688 0.0239653 170 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 6.12 vpr 65.04 MiB -1 -1 0.18 20408 1 0.03 -1 -1 33856 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 26.5 MiB 1.39 960 15493 5019 7264 3210 65.0 MiB 0.14 0.00 3.8685 -115.065 -3.8685 3.8685 1.00 0.000550277 0.000502549 0.0482428 0.0441347 32 2999 46 6.65987e+06 316950 554710. 1919.41 1.33 0.158973 0.141759 22834 132086 -1 2251 20 1713 2455 205929 51092 4.40017 4.40017 -144.997 -4.40017 0 0 701300. 2426.64 0.32 0.08 0.13 -1 -1 0.32 0.0293244 0.0263483 162 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.88 vpr 64.75 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33988 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 26.2 MiB 0.24 986 10028 2689 6335 1004 64.8 MiB 0.10 0.00 3.49215 -105.367 -3.49215 3.49215 0.99 0.000545496 0.000499392 0.0284813 0.0260912 28 2660 41 6.65987e+06 367662 500653. 1732.36 1.39 0.132953 0.118227 21970 115934 -1 2210 18 1241 2073 150736 35953 3.13651 3.13651 -116.06 -3.13651 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0243752 0.021844 133 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.66 vpr 64.20 MiB -1 -1 0.15 20212 1 0.03 -1 -1 33928 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65740 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 25.8 MiB 0.18 1047 12749 3689 7720 1340 64.2 MiB 0.10 0.00 3.22104 -94.436 -3.22104 3.22104 0.97 0.000460627 0.000418892 0.0326124 0.0297341 26 2717 28 6.65987e+06 278916 477104. 1650.88 1.31 0.109601 0.0974883 21682 110474 -1 2304 22 1396 2066 171498 37759 3.53425 3.53425 -116.786 -3.53425 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0242955 0.0216001 118 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.84 vpr 64.84 MiB -1 -1 0.17 20408 1 0.03 -1 -1 33800 -1 -1 38 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1168 9860 2102 7315 443 64.8 MiB 0.10 0.00 3.94947 -127.563 -3.94947 3.94947 0.97 0.000643293 0.000580099 0.0295889 0.0270427 28 3118 30 6.65987e+06 481764 500653. 1732.36 1.21 0.126022 0.111001 21970 115934 -1 2514 20 1600 2560 172529 41584 4.02637 4.02637 -148.775 -4.02637 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0280017 0.0248526 172 84 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.35 vpr 64.08 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33792 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65620 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 25.6 MiB 0.13 861 13992 4603 7259 2130 64.1 MiB 0.10 0.00 2.75978 -83.8234 -2.75978 2.75978 1.00 0.000400831 0.000365714 0.0332463 0.0303548 32 1879 24 6.65987e+06 266238 554710. 1919.41 0.96 0.0861922 0.0759865 22834 132086 -1 1713 23 1207 2070 169903 37716 2.70651 2.70651 -100.28 -2.70651 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0208783 0.0184798 101 24 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.52 vpr 64.54 MiB -1 -1 0.17 20132 1 0.03 -1 -1 33788 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 26.0 MiB 0.22 1148 6512 1358 4648 506 64.5 MiB 0.07 0.00 4.03882 -119.799 -4.03882 4.03882 0.96 0.000532343 0.000488312 0.0192027 0.0175485 30 2533 19 6.65987e+06 291594 526063. 1820.29 1.15 0.0892214 0.0789651 22546 126617 -1 2151 17 1030 1532 99474 22742 3.98448 3.98448 -136.029 -3.98448 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0206087 0.0184433 142 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.40 vpr 64.69 MiB -1 -1 0.16 20652 1 0.03 -1 -1 33948 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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 1060 10753 2622 7412 719 64.7 MiB 0.10 0.00 3.1757 -100.669 -3.1757 3.1757 0.99 0.000551551 0.000506252 0.0280845 0.0257073 26 2754 23 6.65987e+06 418374 477104. 1650.88 1.99 0.11241 0.100065 21682 110474 -1 2275 20 1272 2307 172178 38188 2.94691 2.94691 -115.162 -2.94691 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0261884 0.0234417 131 50 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.47 vpr 64.51 MiB -1 -1 0.15 20504 1 0.03 -1 -1 33976 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 26.1 MiB 0.10 967 13153 4757 6487 1909 64.5 MiB 0.10 0.00 3.15084 -98.9488 -3.15084 3.15084 0.96 0.000449007 0.000409773 0.0331916 0.0303285 30 2076 23 6.65987e+06 304272 526063. 1820.29 3.21 0.170067 0.148725 22546 126617 -1 1779 21 1161 2238 136445 32381 3.65971 3.65971 -119.015 -3.65971 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0222986 0.0198215 123 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.58 vpr 64.66 MiB -1 -1 0.16 20808 1 0.03 -1 -1 33932 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 26.3 MiB 0.38 1202 8969 2123 6204 642 64.7 MiB 0.09 0.00 3.4346 -106.55 -3.4346 3.4346 0.93 0.000462548 0.000421259 0.0268087 0.0244756 32 2722 21 6.65987e+06 278916 554710. 1919.41 0.99 0.0944652 0.0831672 22834 132086 -1 2411 19 1273 1730 141963 32568 3.28691 3.28691 -120.568 -3.28691 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0242316 0.021623 136 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.74 vpr 64.75 MiB -1 -1 0.17 20536 1 0.03 -1 -1 33504 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 26.0 MiB 0.40 1072 9383 2297 6524 562 64.8 MiB 0.09 0.00 2.9071 -99.894 -2.9071 2.9071 0.99 0.000529655 0.000482291 0.0258421 0.0236483 30 2237 18 6.65987e+06 393018 526063. 1820.29 1.08 0.102287 0.0908407 22546 126617 -1 1967 15 899 1617 92671 21588 2.79871 2.79871 -111.69 -2.79871 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0219087 0.0197229 132 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.67 vpr 64.82 MiB -1 -1 0.17 20716 1 0.03 -1 -1 34016 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 26.5 MiB 0.39 1116 12860 3688 8379 793 64.8 MiB 0.12 0.00 3.47495 -110.14 -3.47495 3.47495 0.98 0.000593381 0.000543382 0.0342974 0.0313816 30 2352 18 6.65987e+06 456408 526063. 1820.29 0.97 0.107592 0.0953984 22546 126617 -1 2095 22 993 1509 92172 20741 3.06831 3.06831 -121.578 -3.06831 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0290128 0.0259445 144 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.25 vpr 64.34 MiB -1 -1 0.13 20340 1 0.03 -1 -1 33624 -1 -1 29 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65880 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.9 MiB 0.10 924 12273 3344 8097 832 64.3 MiB 0.10 0.00 3.20104 -96.4277 -3.20104 3.20104 0.92 0.000481338 0.000437316 0.0298662 0.0271879 26 2393 24 6.65987e+06 367662 477104. 1650.88 1.13 0.0988203 0.0871059 21682 110474 -1 2017 22 1424 2383 188794 42921 3.40605 3.40605 -117.666 -3.40605 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0246737 0.0219386 122 21 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.34 vpr 64.86 MiB -1 -1 0.16 20244 1 0.03 -1 -1 33844 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66416 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 26.2 MiB 0.12 1067 6615 1379 4941 295 64.9 MiB 0.07 0.00 3.95995 -116.796 -3.95995 3.95995 0.99 0.000490741 0.000450135 0.019515 0.0179392 30 2362 22 6.65987e+06 291594 526063. 1820.29 0.98 0.0873792 0.0771307 22546 126617 -1 2029 19 1071 1543 90555 21559 3.45637 3.45637 -124.213 -3.45637 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0230569 0.020667 133 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.87 vpr 64.97 MiB -1 -1 0.17 20744 1 0.03 -1 -1 33984 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 26.4 MiB 0.31 1134 9725 2428 6723 574 65.0 MiB 0.10 0.00 3.79107 -114.561 -3.79107 3.79107 0.97 0.000565179 0.000513974 0.0301263 0.0274881 28 2924 24 6.65987e+06 291594 500653. 1732.36 1.30 0.10836 0.0955594 21970 115934 -1 2504 20 1465 2253 165583 38529 3.90023 3.90023 -137.067 -3.90023 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0266364 0.0238107 146 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.35 vpr 64.99 MiB -1 -1 0.17 20616 1 0.03 -1 -1 33696 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 26.4 MiB 0.17 992 7525 1849 5294 382 65.0 MiB 0.08 0.00 3.23098 -101.189 -3.23098 3.23098 0.98 0.000551691 0.000503474 0.0250231 0.0229108 30 2452 21 6.65987e+06 266238 526063. 1820.29 0.96 0.0959551 0.0842333 22546 126617 -1 2077 19 1232 2187 117151 28321 3.18465 3.18465 -120.308 -3.18465 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0244248 0.0218651 135 74 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.20 vpr 63.95 MiB -1 -1 0.14 20204 1 0.03 -1 -1 33292 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65484 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 25.5 MiB 0.10 842 16273 4951 9411 1911 63.9 MiB 0.12 0.00 2.59064 -82.427 -2.59064 2.59064 0.99 0.000402581 0.000365511 0.0367062 0.0332989 28 1797 34 6.65987e+06 304272 500653. 1732.36 0.96 0.100077 0.0883378 21970 115934 -1 1598 20 808 1276 90345 22304 2.44711 2.44711 -93.2352 -2.44711 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0189529 0.0168192 97 20 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 6.24 vpr 64.66 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33760 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 26.2 MiB 0.14 886 10698 2989 7118 591 64.7 MiB 0.09 0.00 3.1319 -109.37 -3.1319 3.1319 0.92 0.000456255 0.000415076 0.028322 0.0257516 26 2631 30 6.65987e+06 253560 477104. 1650.88 3.03 0.173937 0.151743 21682 110474 -1 2182 24 1444 1982 182657 43755 3.53117 3.53117 -136.721 -3.53117 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0256184 0.0225709 125 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.07 vpr 64.62 MiB -1 -1 0.16 20540 1 0.03 -1 -1 34020 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 26.6 MiB 0.18 1377 11477 3470 7138 869 64.6 MiB 0.13 0.00 4.23387 -131.466 -4.23387 4.23387 0.95 0.000593702 0.000534275 0.0344676 0.0314895 28 3309 28 6.65987e+06 354984 500653. 1732.36 1.60 0.124178 0.110129 21970 115934 -1 2716 22 1895 3018 199085 48032 4.42717 4.42717 -155.141 -4.42717 0 0 612192. 2118.31 0.28 0.09 0.12 -1 -1 0.28 0.0313951 0.0280695 168 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.52 vpr 64.67 MiB -1 -1 0.16 20168 1 0.03 -1 -1 33516 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 26.1 MiB 0.26 886 5927 992 4740 195 64.7 MiB 0.06 0.00 3.50546 -104.167 -3.50546 3.50546 0.98 0.000557589 0.000492722 0.0172812 0.015875 30 2041 20 6.65987e+06 393018 526063. 1820.29 1.02 0.0889893 0.0786426 22546 126617 -1 1733 17 880 1457 73977 18180 2.80051 2.80051 -106.991 -2.80051 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0226402 0.0203752 133 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.89 vpr 64.23 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33968 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.7 MiB 0.05 831 14518 3974 8872 1672 64.2 MiB 0.11 0.00 2.66464 -84.2869 -2.66464 2.66464 0.95 0.000440369 0.00040437 0.0338002 0.0309194 20 2110 30 6.65987e+06 329628 394039. 1363.46 0.63 0.0612051 0.0549123 20530 87850 -1 1878 73 2272 4841 792816 301823 3.10311 3.10311 -113.032 -3.10311 0 0 477104. 1650.88 0.20 0.26 0.08 -1 -1 0.20 0.0535966 0.046474 104 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 10.91 vpr 64.93 MiB -1 -1 0.18 20480 1 0.03 -1 -1 33916 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 26.8 MiB 0.37 1380 7019 1377 5096 546 64.9 MiB 0.10 0.00 5.14349 -151.873 -5.14349 5.14349 0.99 0.000621705 0.000570967 0.0256932 0.0236488 26 4281 45 6.65987e+06 316950 477104. 1650.88 7.17 0.250386 0.221031 21682 110474 -1 3172 26 2489 3741 373959 93326 5.74554 5.74554 -188.659 -5.74554 0 0 585099. 2024.56 0.26 0.14 0.11 -1 -1 0.26 0.0401506 0.0358787 168 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.61 vpr 64.59 MiB -1 -1 0.16 20264 1 0.03 -1 -1 33368 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 26.1 MiB 0.29 911 10608 2581 7229 798 64.6 MiB 0.10 0.00 3.55635 -107.972 -3.55635 3.55635 1.00 0.000548322 0.000503335 0.0277779 0.0254658 32 2106 23 6.65987e+06 405696 554710. 1919.41 1.00 0.0977339 0.0864158 22834 132086 -1 1902 23 1451 2194 139250 33404 3.54611 3.54611 -122.858 -3.54611 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.026665 0.0237521 130 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.23 vpr 64.05 MiB -1 -1 0.14 19864 1 0.03 -1 -1 33628 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65588 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 25.6 MiB 0.05 869 12183 3382 7024 1777 64.1 MiB 0.09 0.00 2.50867 -80.0561 -2.50867 2.50867 0.99 0.000373415 0.000341124 0.0262805 0.0240405 32 1870 21 6.65987e+06 291594 554710. 1919.41 0.98 0.0795275 0.0704174 22834 132086 -1 1679 20 921 1591 121036 27014 2.62251 2.62251 -96.0565 -2.62251 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0184074 0.0163792 100 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.42 vpr 64.75 MiB -1 -1 0.15 20716 1 0.03 -1 -1 33824 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 26.4 MiB 0.14 1138 13373 4018 8266 1089 64.8 MiB 0.11 0.00 4.55326 -113.354 -4.55326 4.55326 0.97 0.000526123 0.000478128 0.0336614 0.0307388 32 2554 25 6.65987e+06 431052 554710. 1919.41 1.00 0.104274 0.092129 22834 132086 -1 2325 22 1323 2502 183808 41758 4.49822 4.49822 -132.931 -4.49822 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0259113 0.0229452 139 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.17 vpr 63.97 MiB -1 -1 0.15 20204 1 0.03 -1 -1 34012 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65504 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 25.5 MiB 0.10 812 8502 2166 5475 861 64.0 MiB 0.07 0.00 2.66284 -83.6742 -2.66284 2.66284 0.96 0.000417136 0.00038284 0.0205749 0.0188383 30 1715 16 6.65987e+06 253560 526063. 1820.29 0.92 0.0702046 0.061999 22546 126617 -1 1548 19 877 1510 82884 20226 2.60745 2.60745 -99.4888 -2.60745 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0173363 0.0153943 104 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.43 vpr 64.25 MiB -1 -1 0.14 20160 1 0.03 -1 -1 33844 -1 -1 33 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65788 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.7 MiB 0.16 846 16727 5168 9107 2452 64.2 MiB 0.12 0.00 2.98169 -85.2128 -2.98169 2.98169 0.96 0.000467982 0.000428424 0.0348201 0.0317664 26 1990 27 6.65987e+06 418374 477104. 1650.88 1.09 0.098042 0.086565 21682 110474 -1 1809 21 1051 1712 129917 29772 2.68525 2.68525 -100.111 -2.68525 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0215635 0.0191488 105 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.39 vpr 64.96 MiB -1 -1 0.15 20756 1 0.03 -1 -1 33764 -1 -1 24 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1044 15151 4487 8857 1807 65.0 MiB 0.13 0.00 3.37101 -100.513 -3.37101 3.37101 0.94 0.000537427 0.000488874 0.0418765 0.0381982 30 2348 24 6.65987e+06 304272 526063. 1820.29 0.98 0.114081 0.10082 22546 126617 -1 1987 18 1083 1701 95551 23827 3.38683 3.38683 -116.763 -3.38683 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0214662 0.0190898 138 56 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.46 vpr 64.59 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33948 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 26.1 MiB 0.18 833 5938 1099 4238 601 64.6 MiB 0.06 0.00 3.6117 -107.299 -3.6117 3.6117 1.00 0.000518406 0.000475754 0.0189598 0.0174416 30 2100 27 6.65987e+06 304272 526063. 1820.29 1.02 0.0985935 0.0869566 22546 126617 -1 1617 20 1122 1659 85773 21638 3.45917 3.45917 -124.551 -3.45917 0 0 666494. 2306.21 0.31 0.06 0.12 -1 -1 0.31 0.0257149 0.0230184 130 51 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.41 vpr 64.60 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33852 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 26.1 MiB 0.20 1104 13147 3623 8171 1353 64.6 MiB 0.12 0.00 3.63564 -112.148 -3.63564 3.63564 0.93 0.000506138 0.000462059 0.035122 0.0320992 28 2562 23 6.65987e+06 342306 500653. 1732.36 1.02 0.106759 0.0946722 21970 115934 -1 2349 23 1370 2399 186361 40426 3.69351 3.69351 -132.373 -3.69351 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0276223 0.0244735 132 48 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.58 vpr 64.20 MiB -1 -1 0.14 20408 1 0.03 -1 -1 33664 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65736 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 25.6 MiB 0.27 939 8336 2360 5186 790 64.2 MiB 0.08 0.00 3.5308 -105.476 -3.5308 3.5308 0.96 0.000428403 0.000394688 0.0232882 0.0213212 26 2225 22 6.65987e+06 202848 477104. 1650.88 1.20 0.0867851 0.0767576 21682 110474 -1 1862 17 959 1286 94369 22268 3.37611 3.37611 -116.833 -3.37611 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0185469 0.0166277 103 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.50 vpr 64.22 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33720 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65764 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.8 MiB 0.22 918 8982 2408 5984 590 64.2 MiB 0.08 0.00 2.85458 -96.7703 -2.85458 2.85458 0.99 0.000492953 0.000450849 0.0266214 0.0243655 32 2230 20 6.65987e+06 240882 554710. 1919.41 0.99 0.0897937 0.0793301 22834 132086 -1 1998 19 1364 2032 160584 36880 2.93831 2.93831 -112.535 -2.93831 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0221663 0.0197797 111 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.42 vpr 64.57 MiB -1 -1 0.15 20160 1 0.03 -1 -1 33804 -1 -1 33 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 26.1 MiB 0.23 860 10031 2263 6771 997 64.6 MiB 0.09 0.00 2.55652 -74.3027 -2.55652 2.55652 0.98 0.000503623 0.00046258 0.0258672 0.0237247 30 1837 17 6.65987e+06 418374 526063. 1820.29 0.94 0.0880178 0.0779153 22546 126617 -1 1608 18 800 1497 72886 17915 2.40999 2.40999 -88.1668 -2.40999 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0216517 0.0193137 123 52 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.41 vpr 64.36 MiB -1 -1 0.15 20284 1 0.03 -1 -1 34080 -1 -1 35 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.12 945 15215 4217 9322 1676 64.4 MiB 0.11 0.00 3.3833 -85.6067 -3.3833 3.3833 0.98 0.000409758 0.000372392 0.032416 0.0294148 26 2104 23 6.65987e+06 443730 477104. 1650.88 1.11 0.09478 0.0838065 21682 110474 -1 1842 20 994 2058 143591 32531 3.44717 3.44717 -103.188 -3.44717 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0200918 0.0177773 115 20 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.48 vpr 64.26 MiB -1 -1 0.16 20344 1 0.03 -1 -1 33780 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 25.7 MiB 0.24 843 12754 4375 6219 2160 64.3 MiB 0.11 0.00 3.17335 -94.2456 -3.17335 3.17335 0.97 0.000459431 0.000419648 0.037985 0.034759 32 2144 21 6.65987e+06 215526 554710. 1919.41 1.00 0.0998702 0.0884611 22834 132086 -1 1851 20 1230 2056 164060 37621 2.92991 2.92991 -108.502 -2.92991 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0216205 0.0191747 108 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.45 vpr 64.31 MiB -1 -1 0.16 20304 1 0.03 -1 -1 33496 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 25.8 MiB 0.21 884 12345 4073 5681 2591 64.3 MiB 0.11 0.00 2.94464 -101.127 -2.94464 2.94464 0.97 0.000471115 0.000427808 0.0351061 0.0320788 32 2339 24 6.65987e+06 253560 554710. 1919.41 0.98 0.0992888 0.0875337 22834 132086 -1 1928 20 1416 2074 165245 37625 2.92531 2.92531 -115.185 -2.92531 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0235742 0.0209597 120 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.16 vpr 64.48 MiB -1 -1 0.13 20068 1 0.03 -1 -1 33852 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 26.0 MiB 0.08 934 10679 2821 6816 1042 64.5 MiB 0.09 0.00 3.64047 -103.455 -3.64047 3.64047 0.94 0.000539953 0.000497913 0.0238557 0.0217014 28 2365 22 6.65987e+06 405696 500653. 1732.36 1.02 0.0898967 0.0793832 21970 115934 -1 2049 19 1226 2220 135969 33220 3.68043 3.68043 -121.175 -3.68043 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0205995 0.0183486 127 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.65 vpr 64.85 MiB -1 -1 0.16 20580 1 0.03 -1 -1 33968 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66408 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 26.3 MiB 0.29 1246 15395 4285 8888 2222 64.9 MiB 0.15 0.00 3.98521 -128.644 -3.98521 3.98521 1.00 0.000535201 0.000490393 0.04648 0.0426504 30 2926 19 6.65987e+06 278916 526063. 1820.29 1.01 0.12121 0.108242 22546 126617 -1 2340 21 1229 1815 109091 24979 4.07331 4.07331 -148.204 -4.07331 0 0 666494. 2306.21 0.30 0.06 0.12 -1 -1 0.30 0.0273499 0.0244637 144 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.59 vpr 64.80 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33600 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 26.5 MiB 0.32 1111 10827 2825 7025 977 64.8 MiB 0.10 0.00 3.92821 -113.167 -3.92821 3.92821 0.96 0.000552445 0.000502242 0.0308413 0.0281815 32 2571 22 6.65987e+06 405696 554710. 1919.41 1.01 0.105524 0.0931395 22834 132086 -1 2259 20 1339 2329 167370 38913 3.91422 3.91422 -134.159 -3.91422 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256302 0.0228202 142 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 6.27 vpr 64.54 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33952 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 26.2 MiB 0.28 1136 17726 4984 10545 2197 64.5 MiB 0.16 0.00 3.46095 -113.37 -3.46095 3.46095 1.00 0.00057176 0.000523219 0.0462301 0.0422641 26 3157 26 6.65987e+06 469086 477104. 1650.88 2.61 0.147362 0.131648 21682 110474 -1 2492 23 1569 2737 210408 47923 3.42691 3.42691 -131.848 -3.42691 0 0 585099. 2024.56 0.27 0.09 0.11 -1 -1 0.27 0.0313036 0.027984 140 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.50 vpr 63.91 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33836 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65448 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.4 MiB 0.23 847 14081 4357 8035 1689 63.9 MiB 0.11 0.00 2.88069 -90.2947 -2.88069 2.88069 1.01 0.000434612 0.000397958 0.0373258 0.0339808 32 1828 21 6.65987e+06 240882 554710. 1919.41 0.97 0.0962843 0.0851359 22834 132086 -1 1597 20 1075 1817 111821 26862 2.58405 2.58405 -98.4208 -2.58405 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0210337 0.018739 105 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.61 vpr 64.93 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33784 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 26.2 MiB 0.27 805 10523 2316 6417 1790 64.9 MiB 0.09 0.00 3.77847 -108.895 -3.77847 3.77847 0.99 0.00054186 0.000496642 0.0340512 0.0312162 32 2128 22 6.65987e+06 266238 554710. 1919.41 1.02 0.110269 0.0978342 22834 132086 -1 1748 21 1689 2659 161360 42398 3.65243 3.65243 -128.791 -3.65243 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0279023 0.024899 137 58 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 7.27 vpr 64.43 MiB -1 -1 0.15 20544 1 0.03 -1 -1 33752 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 26.1 MiB 0.26 1212 10813 2505 7054 1254 64.4 MiB 0.10 0.00 3.8156 -117.944 -3.8156 3.8156 0.90 0.000548233 0.000504264 0.0299996 0.0274293 28 2776 23 6.65987e+06 304272 500653. 1732.36 3.87 0.19537 0.170776 21970 115934 -1 2409 22 1503 2398 181088 39864 3.81185 3.81185 -138.119 -3.81185 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0247588 0.0220118 138 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.63 vpr 64.77 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33724 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 26.2 MiB 0.39 1115 10495 2631 7096 768 64.8 MiB 0.10 0.00 4.22316 -125.353 -4.22316 4.22316 0.97 0.000502927 0.00045781 0.0290952 0.0265812 32 2688 20 6.65987e+06 354984 554710. 1919.41 1.00 0.0962438 0.0850455 22834 132086 -1 2178 20 1275 2071 149176 34640 4.23583 4.23583 -142.024 -4.23583 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0238322 0.0212497 146 43 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.39 vpr 64.89 MiB -1 -1 0.17 20944 1 0.03 -1 -1 33800 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 26.2 MiB 1.10 996 15213 4356 8572 2285 64.9 MiB 0.13 0.00 3.46221 -106.407 -3.46221 3.46221 0.97 0.000537239 0.000490852 0.0407783 0.0372374 32 2330 21 6.65987e+06 393018 554710. 1919.41 0.99 0.111276 0.0984008 22834 132086 -1 1980 21 1519 2453 171249 40351 3.03937 3.03937 -115.413 -3.03937 0 0 701300. 2426.64 0.29 0.07 0.14 -1 -1 0.29 0.0247679 0.0219149 133 78 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.56 vpr 64.51 MiB -1 -1 0.17 20496 1 0.03 -1 -1 33944 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66056 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 26.0 MiB 0.21 1047 15822 5099 8999 1724 64.5 MiB 0.15 0.00 3.76955 -112.057 -3.76955 3.76955 0.96 0.000537219 0.00049145 0.0479827 0.0437556 32 2706 24 6.65987e+06 253560 554710. 1919.41 1.01 0.118384 0.104718 22834 132086 -1 2250 22 1663 2920 213695 49788 3.48691 3.48691 -129.347 -3.48691 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0285664 0.0254788 133 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.69 vpr 64.71 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33908 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 26.1 MiB 0.37 825 7728 1643 5706 379 64.7 MiB 0.08 0.00 3.57869 -98.8559 -3.57869 3.57869 0.94 0.000479825 0.000436519 0.0220197 0.0200841 26 2518 36 6.65987e+06 367662 477104. 1650.88 1.24 0.111198 0.0976835 21682 110474 -1 2013 23 1459 2319 165586 40605 3.25777 3.25777 -117.379 -3.25777 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0258188 0.0227603 131 79 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.21 vpr 64.07 MiB -1 -1 0.15 20344 1 0.03 -1 -1 33848 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65604 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 25.7 MiB 0.10 828 9205 2583 6101 521 64.1 MiB 0.07 0.00 2.87075 -91.3007 -2.87075 2.87075 0.98 0.000415599 0.00038076 0.023826 0.021872 30 1772 20 6.65987e+06 190170 526063. 1820.29 0.91 0.0766204 0.0679117 22546 126617 -1 1592 18 721 1100 75774 17303 2.69545 2.69545 -103.087 -2.69545 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0183379 0.0164838 96 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.67 vpr 64.45 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33884 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 25.9 MiB 0.29 1061 11809 2822 7993 994 64.5 MiB 0.12 0.00 3.4693 -111.628 -3.4693 3.4693 0.99 0.000584975 0.000529318 0.033809 0.0309703 28 2526 22 6.65987e+06 380340 500653. 1732.36 1.07 0.115231 0.102747 21970 115934 -1 2217 21 1402 2247 160779 36799 3.57411 3.57411 -131.841 -3.57411 0 0 612192. 2118.31 0.28 0.07 0.12 -1 -1 0.28 0.0277912 0.0248651 130 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.07 vpr 64.90 MiB -1 -1 0.16 20720 1 0.03 -1 -1 33928 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 26.6 MiB 0.29 948 6123 1217 4347 559 64.9 MiB 0.07 0.00 3.74961 -115.204 -3.74961 3.74961 0.97 0.000595648 0.000542161 0.0213729 0.0195489 28 3082 30 6.65987e+06 253560 500653. 1732.36 1.55 0.113031 0.0996442 21970 115934 -1 2410 23 1968 3129 226343 53813 4.18257 4.18257 -149.264 -4.18257 0 0 612192. 2118.31 0.28 0.10 0.12 -1 -1 0.28 0.0314424 0.0278098 147 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.33 vpr 64.09 MiB -1 -1 0.15 20268 1 0.03 -1 -1 33948 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65624 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 25.8 MiB 0.21 1011 12863 4265 7083 1515 64.1 MiB 0.10 0.00 3.19629 -97.1478 -3.19629 3.19629 0.99 0.000447194 0.00040835 0.0324386 0.029606 30 1946 22 6.65987e+06 240882 526063. 1820.29 0.90 0.086975 0.0769037 22546 126617 -1 1739 18 706 932 59194 13709 2.89951 2.89951 -108.629 -2.89951 0 0 666494. 2306.21 0.29 0.04 0.12 -1 -1 0.29 0.0187053 0.0167473 111 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.12 vpr 64.10 MiB -1 -1 0.14 20152 1 0.03 -1 -1 34088 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65636 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 25.6 MiB 0.10 743 6672 1451 4770 451 64.1 MiB 0.06 0.00 2.90081 -86.2872 -2.90081 2.90081 0.95 0.000399052 0.000364 0.0165017 0.0150858 26 1919 22 6.65987e+06 266238 477104. 1650.88 0.91 0.0720707 0.063496 21682 110474 -1 1663 20 1191 1937 133915 32156 2.77977 2.77977 -100.798 -2.77977 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0199362 0.017777 106 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.67 vpr 65.01 MiB -1 -1 0.16 20120 1 0.03 -1 -1 33616 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 26.5 MiB 0.15 1053 8603 1992 5978 633 65.0 MiB 0.09 0.00 3.91427 -122.672 -3.91427 3.91427 0.99 0.000529272 0.000484047 0.0259834 0.0238609 26 3003 32 6.65987e+06 316950 477104. 1650.88 3.24 0.19278 0.170307 21682 110474 -1 2427 22 1916 2518 191351 45020 4.20083 4.20083 -152.399 -4.20083 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0286203 0.0255475 144 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.78 vpr 64.71 MiB -1 -1 0.15 20788 1 0.03 -1 -1 33704 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 26.4 MiB 0.46 1192 11477 2917 7554 1006 64.7 MiB 0.11 0.00 4.05969 -124.506 -4.05969 4.05969 0.98 0.000558718 0.000506004 0.0321154 0.0294401 30 2702 21 6.65987e+06 354984 526063. 1820.29 1.05 0.101684 0.0901431 22546 126617 -1 2219 19 1197 1808 112470 26220 3.88516 3.88516 -140.231 -3.88516 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0239515 0.0214574 151 53 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 7.54 vpr 64.99 MiB -1 -1 0.16 20060 1 0.03 -1 -1 33544 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.4 MiB 0.06 1258 19356 5883 11076 2397 65.0 MiB 0.17 0.00 4.13461 -117.052 -4.13461 4.13461 1.00 0.000581644 0.000534284 0.0486231 0.0443391 28 2765 22 6.65987e+06 456408 500653. 1732.36 4.10 0.252202 0.223177 21970 115934 -1 2427 21 1609 2855 196342 44818 4.30997 4.30997 -140.833 -4.30997 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0283621 0.0254224 153 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.32 vpr 64.24 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33760 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.8 MiB 0.22 866 9123 2033 6188 902 64.2 MiB 0.07 0.00 2.57493 -78.3377 -2.57493 2.57493 0.97 0.000489084 0.000441822 0.0222071 0.0202314 30 1891 23 6.65987e+06 393018 526063. 1820.29 0.92 0.0826867 0.0725232 22546 126617 -1 1684 20 936 1585 84460 20297 2.60151 2.60151 -93.0412 -2.60151 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0235234 0.0209308 120 47 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.11 vpr 64.12 MiB -1 -1 0.15 20648 1 0.03 -1 -1 33892 -1 -1 21 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65660 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 25.7 MiB 0.05 779 12292 4104 6547 1641 64.1 MiB 0.09 0.00 2.8251 -81.7347 -2.8251 2.8251 0.97 0.000418435 0.000382196 0.0307828 0.0281463 30 1492 22 6.65987e+06 266238 526063. 1820.29 0.90 0.0824624 0.0726883 22546 126617 -1 1353 19 635 967 51825 12646 2.52037 2.52037 -90.1506 -2.52037 0 0 666494. 2306.21 0.30 0.04 0.13 -1 -1 0.30 0.0174373 0.0154514 97 26 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.72 vpr 64.91 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33684 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.8 MiB 0.17 1311 12150 3370 8077 703 64.9 MiB 0.13 0.00 3.3481 -113.494 -3.3481 3.3481 1.00 0.000690678 0.000631108 0.0426411 0.0390254 32 3591 22 6.65987e+06 329628 554710. 1919.41 1.11 0.134535 0.119911 22834 132086 -1 2922 20 2099 3395 249070 58724 3.82383 3.82383 -137.37 -3.82383 0 0 701300. 2426.64 0.31 0.10 0.13 -1 -1 0.31 0.0325442 0.0293014 170 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 7.56 vpr 64.63 MiB -1 -1 0.16 20716 1 0.03 -1 -1 33664 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 26.1 MiB 0.97 897 11064 2968 6739 1357 64.6 MiB 0.09 0.00 4.15967 -119.089 -4.15967 4.15967 0.96 0.000528151 0.000481837 0.033048 0.0301507 34 2237 23 6.65987e+06 266238 585099. 2024.56 3.40 0.175351 0.152461 23122 138558 -1 1807 20 1517 2369 150842 41080 4.26708 4.26708 -140.919 -4.26708 0 0 742403. 2568.87 0.29 0.06 0.13 -1 -1 0.29 0.022836 0.0202415 150 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.38 vpr 64.64 MiB -1 -1 0.16 20380 1 0.03 -1 -1 33688 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.03 850 12542 3889 6331 2322 64.6 MiB 0.11 0.00 3.4165 -104.165 -3.4165 3.4165 1.01 0.000481164 0.000439117 0.0373299 0.0341396 32 2313 22 6.65987e+06 228204 554710. 1919.41 1.03 0.1079 0.0958743 22834 132086 -1 1892 20 1321 1887 147913 34405 3.47937 3.47937 -126.82 -3.47937 0 0 701300. 2426.64 0.30 0.06 0.12 -1 -1 0.30 0.0222297 0.0197151 126 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.41 vpr 64.52 MiB -1 -1 0.16 20328 1 0.03 -1 -1 33736 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66072 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 26.0 MiB 0.11 1056 15856 4646 9763 1447 64.5 MiB 0.14 0.00 3.7622 -100.633 -3.7622 3.7622 0.99 0.000534503 0.000492573 0.0398541 0.0363921 30 2168 19 6.65987e+06 380340 526063. 1820.29 0.97 0.107986 0.0962509 22546 126617 -1 1852 18 844 1359 74876 17751 3.22665 3.22665 -112.425 -3.22665 0 0 666494. 2306.21 0.31 0.05 0.12 -1 -1 0.31 0.0223143 0.0200074 126 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.72 vpr 64.67 MiB -1 -1 0.17 20500 1 0.03 -1 -1 33572 -1 -1 33 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 26.3 MiB 0.23 925 10389 2486 6905 998 64.7 MiB 0.10 0.00 3.75769 -107.247 -3.75769 3.75769 0.97 0.000525852 0.00046424 0.0284465 0.0259563 26 2508 23 6.65987e+06 418374 477104. 1650.88 1.28 0.106762 0.0943937 21682 110474 -1 2241 21 1343 2220 168472 41590 3.59657 3.59657 -127.74 -3.59657 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0260143 0.0230659 144 46 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.38 vpr 64.50 MiB -1 -1 0.16 20496 1 0.03 -1 -1 34044 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66048 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 26.1 MiB 0.15 1025 13953 3561 8784 1608 64.5 MiB 0.11 0.00 2.8321 -90.0185 -2.8321 2.8321 0.96 0.000490848 0.000447557 0.0345862 0.0315545 32 2394 19 6.65987e+06 393018 554710. 1919.41 0.97 0.0947133 0.0836237 22834 132086 -1 2094 20 1169 1960 147434 33965 2.91585 2.91585 -106.157 -2.91585 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0230833 0.0205627 124 46 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.08 vpr 64.94 MiB -1 -1 0.15 20412 1 0.03 -1 -1 33556 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 26.4 MiB 0.17 1216 15883 4659 9054 2170 64.9 MiB 0.15 0.00 3.71795 -121.921 -3.71795 3.71795 0.97 0.000537792 0.000489194 0.0446122 0.0407617 32 2907 20 6.65987e+06 304272 554710. 1919.41 1.54 0.138411 0.122319 22834 132086 -1 2442 21 1944 2978 229558 51167 3.90511 3.90511 -142.269 -3.90511 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0287094 0.0256839 147 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.26 vpr 64.82 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33792 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1028 14048 3738 8905 1405 64.8 MiB 0.13 0.00 3.63475 -113.41 -3.63475 3.63475 0.99 0.000603501 0.000555005 0.03876 0.0354872 26 2724 35 6.65987e+06 431052 477104. 1650.88 1.55 0.14261 0.127043 21682 110474 -1 2274 20 1426 2158 148581 35944 3.73257 3.73257 -138.394 -3.73257 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0276995 0.0247689 143 59 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.27 vpr 64.24 MiB -1 -1 0.16 20300 1 0.03 -1 -1 33644 -1 -1 17 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.13 565 12362 4398 5684 2280 64.2 MiB 0.08 0.00 2.88681 -83.7178 -2.88681 2.88681 0.95 0.000400088 0.000363743 0.0313731 0.0286653 32 1356 21 6.65987e+06 215526 554710. 1919.41 0.95 0.0842831 0.0744788 22834 132086 -1 1167 20 916 1330 89007 22545 2.87177 2.87177 -94.5281 -2.87177 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.019041 0.0169193 92 28 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.33 vpr 64.46 MiB -1 -1 0.15 20420 1 0.03 -1 -1 34036 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 26.0 MiB 0.26 958 12162 3433 7405 1324 64.5 MiB 0.10 0.00 3.1971 -103.621 -3.1971 3.1971 0.95 0.000450948 0.000412667 0.032916 0.0301319 30 1993 18 6.65987e+06 253560 526063. 1820.29 0.92 0.0914279 0.0809879 22546 126617 -1 1770 20 1110 1474 91003 20827 2.99537 2.99537 -114.562 -2.99537 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0210362 0.0187047 116 55 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.59 vpr 64.68 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33496 -1 -1 37 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 26.2 MiB 0.10 1133 9612 2200 6367 1045 64.7 MiB 0.09 0.00 3.77961 -104.432 -3.77961 3.77961 0.98 0.00054552 0.000498836 0.0236777 0.0216882 26 2607 23 6.65987e+06 469086 477104. 1650.88 1.24 0.104413 0.0928979 21682 110474 -1 2211 26 1652 2951 241553 52738 3.84385 3.84385 -124.774 -3.84385 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0290171 0.0257326 129 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.46 vpr 64.45 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33856 -1 -1 21 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 26.1 MiB 0.22 892 9338 2370 6144 824 64.4 MiB 0.08 0.00 3.30615 -94.6201 -3.30615 3.30615 0.98 0.000419184 0.000383299 0.0237979 0.0218247 26 2147 22 6.65987e+06 266238 477104. 1650.88 1.07 0.0909327 0.0808946 21682 110474 -1 1898 15 951 1252 91617 21872 3.14871 3.14871 -107.156 -3.14871 0 0 585099. 2024.56 0.26 0.04 0.11 -1 -1 0.26 0.0169179 0.015185 110 25 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 6.95 vpr 64.14 MiB -1 -1 0.14 20308 1 0.03 -1 -1 33648 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65676 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 25.6 MiB 0.20 821 13840 5362 6683 1795 64.1 MiB 0.09 0.00 2.90269 -92.0687 -2.90269 2.90269 0.95 0.000404319 0.000366795 0.0338552 0.0308328 36 1842 26 6.65987e+06 202848 612192. 2118.31 3.57 0.203838 0.177615 23410 145293 -1 1656 20 1250 2083 177881 41428 2.76691 2.76691 -103.89 -2.76691 0 0 782063. 2706.10 0.33 0.06 0.13 -1 -1 0.33 0.0195562 0.0173295 109 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.45 vpr 64.53 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33916 -1 -1 35 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 26.0 MiB 0.25 1032 17648 5026 9849 2773 64.5 MiB 0.14 0.00 3.26641 -101.432 -3.26641 3.26641 0.97 0.000530902 0.00048446 0.0440614 0.0401421 30 1882 18 6.65987e+06 443730 526063. 1820.29 0.93 0.109299 0.0968432 22546 126617 -1 1692 17 885 1382 73454 17387 2.78991 2.78991 -105.776 -2.78991 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0221896 0.0198149 135 60 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.31 vpr 64.33 MiB -1 -1 0.15 20476 1 0.03 -1 -1 33812 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65872 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 25.8 MiB 0.17 876 7914 1959 5549 406 64.3 MiB 0.07 0.00 3.0359 -96.9764 -3.0359 3.0359 0.98 0.000417989 0.000384091 0.0203547 0.0186735 32 1949 22 6.65987e+06 240882 554710. 1919.41 0.91 0.0727853 0.06408 22834 132086 -1 1780 20 1055 1527 119018 27187 3.15877 3.15877 -116.131 -3.15877 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0194234 0.0172022 108 30 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.77 vpr 64.61 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33516 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 26.1 MiB 0.28 989 11327 3090 7557 680 64.6 MiB 0.10 0.00 2.82075 -94.6465 -2.82075 2.82075 0.98 0.000554803 0.000507963 0.0298877 0.0271897 26 2559 30 6.65987e+06 393018 477104. 1650.88 1.32 0.112178 0.099124 21682 110474 -1 2219 20 1288 2224 175378 38230 2.66451 2.66451 -108.499 -2.66451 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0238709 0.0211838 126 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.29 vpr 64.91 MiB -1 -1 0.16 20580 1 0.03 -1 -1 34004 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 26.6 MiB 0.96 1041 16511 4658 9476 2377 64.9 MiB 0.14 0.00 3.3843 -111.16 -3.3843 3.3843 1.00 0.000561296 0.000512219 0.0456277 0.0417327 28 2307 17 6.65987e+06 405696 500653. 1732.36 0.98 0.120915 0.107765 21970 115934 -1 2002 19 1356 1898 122455 28647 3.09863 3.09863 -124.349 -3.09863 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0263213 0.0235809 138 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.52 vpr 64.11 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33760 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.6 MiB 0.26 831 9881 2532 6649 700 64.1 MiB 0.08 0.00 2.54264 -84.8572 -2.54264 2.54264 1.00 0.000487778 0.000428649 0.0281879 0.0257943 32 1931 22 6.65987e+06 215526 554710. 1919.41 0.97 0.0912597 0.080471 22834 132086 -1 1793 22 1066 1697 126354 29480 2.75671 2.75671 -103.795 -2.75671 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0228022 0.0201755 104 54 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.36 vpr 64.46 MiB -1 -1 0.15 20128 1 0.03 -1 -1 33712 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 26.0 MiB 0.15 796 7823 1753 5709 361 64.5 MiB 0.07 0.00 3.23175 -99.8478 -3.23175 3.23175 0.95 0.000456787 0.000415474 0.0205924 0.0188559 32 2277 24 6.65987e+06 240882 554710. 1919.41 1.01 0.0815034 0.0718176 22834 132086 -1 1908 18 1201 1767 122454 31357 3.30825 3.30825 -117.776 -3.30825 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0194498 0.0173106 115 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.45 vpr 64.51 MiB -1 -1 0.16 20244 1 0.03 -1 -1 33724 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 26.0 MiB 0.13 1050 8024 1955 5521 548 64.5 MiB 0.08 0.00 3.7011 -114.174 -3.7011 3.7011 1.00 0.000505091 0.000462415 0.0236552 0.0217352 32 2452 22 6.65987e+06 278916 554710. 1919.41 1.01 0.0932263 0.0826824 22834 132086 -1 2182 21 1569 2206 156748 37868 3.66351 3.66351 -126.228 -3.66351 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256067 0.0229169 130 27 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.64 vpr 64.55 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33800 -1 -1 28 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 26.1 MiB 0.44 933 11573 3234 7349 990 64.5 MiB 0.10 0.00 3.79367 -98.3368 -3.79367 3.79367 0.99 0.000511006 0.000468627 0.0315325 0.0288955 30 1818 18 6.65987e+06 354984 526063. 1820.29 0.93 0.0938464 0.0832164 22546 126617 -1 1651 17 644 1129 61990 15211 3.17762 3.17762 -102.544 -3.17762 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0213105 0.0191532 121 49 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.68 vpr 64.70 MiB -1 -1 0.17 20504 1 0.04 -1 -1 33664 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1168 16215 4927 8621 2667 64.7 MiB 0.16 0.00 4.06506 -132.319 -4.06506 4.06506 0.96 0.00057667 0.000529616 0.0517985 0.0474338 32 2863 22 6.65987e+06 291594 554710. 1919.41 1.02 0.135838 0.121144 22834 132086 -1 2453 23 1867 2652 195498 45478 3.77011 3.77011 -145.167 -3.77011 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0298267 0.0264721 153 62 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.89 vpr 64.01 MiB -1 -1 0.14 20232 1 0.03 -1 -1 33536 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65544 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 25.6 MiB 0.09 802 7081 1675 4994 412 64.0 MiB 0.05 0.00 2.79204 -80.9584 -2.79204 2.79204 0.95 0.000335007 0.000306662 0.0161123 0.0147434 26 1879 17 6.65987e+06 228204 477104. 1650.88 0.81 0.0619275 0.0543264 21682 110474 -1 1571 19 776 1235 84421 20224 2.73471 2.73471 -96.9664 -2.73471 0 0 585099. 2024.56 0.26 0.04 0.10 -1 -1 0.26 0.0170198 0.0151213 96 -1 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.90 vpr 64.93 MiB -1 -1 0.17 20404 1 0.03 -1 -1 33692 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 26.5 MiB 0.45 975 7201 1499 5200 502 64.9 MiB 0.08 0.00 3.3223 -110.271 -3.3223 3.3223 0.98 0.000581903 0.000528812 0.0214019 0.0195894 26 2451 26 6.65987e+06 418374 477104. 1650.88 1.24 0.108471 0.0956347 21682 110474 -1 2144 21 1621 2318 162748 38896 3.96997 3.96997 -137.26 -3.96997 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0269375 0.0238633 144 87 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.47 vpr 64.45 MiB -1 -1 0.15 20420 1 0.03 -1 -1 33576 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65996 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.1 MiB 0.22 878 12120 3764 6684 1672 64.4 MiB 0.11 0.00 2.8021 -102.92 -2.8021 2.8021 0.98 0.000534743 0.000487217 0.0398982 0.0365087 32 2042 19 6.65987e+06 202848 554710. 1919.41 0.99 0.107647 0.0954508 22834 132086 -1 1809 21 1429 2067 161279 36513 3.06217 3.06217 -122.817 -3.06217 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0250023 0.0221588 115 93 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.66 vpr 64.57 MiB -1 -1 0.17 20680 1 0.03 -1 -1 33652 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 26.1 MiB 0.36 1063 16511 4807 9266 2438 64.6 MiB 0.14 0.00 3.33475 -107.829 -3.33475 3.33475 1.00 0.000548358 0.000501349 0.0432375 0.0393867 32 2324 22 6.65987e+06 393018 554710. 1919.41 0.94 0.109192 0.0965148 22834 132086 -1 1959 18 1010 1420 101355 23463 3.21151 3.21151 -119.584 -3.21151 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0226888 0.0201656 130 57 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.73 vpr 64.66 MiB -1 -1 0.17 20752 1 0.03 -1 -1 33896 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 26.6 MiB 0.34 1291 16127 4492 9131 2504 64.7 MiB 0.15 0.00 5.00309 -154.994 -5.00309 5.00309 0.96 0.000563699 0.000517182 0.0498551 0.045631 30 2963 24 6.65987e+06 316950 526063. 1820.29 1.09 0.140827 0.12572 22546 126617 -1 2391 21 1470 2189 129949 29853 4.83514 4.83514 -164.078 -4.83514 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.027116 0.0242649 168 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.17 vpr 63.92 MiB -1 -1 0.16 20464 1 0.03 -1 -1 33700 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65456 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 25.6 MiB 0.19 605 8022 1727 6036 259 63.9 MiB 0.06 0.00 2.57364 -78.6499 -2.57364 2.57364 0.97 0.000360185 0.000329136 0.0190317 0.017368 30 1512 14 6.65987e+06 215526 526063. 1820.29 0.86 0.0618201 0.0544147 22546 126617 -1 1263 12 575 742 47328 11505 2.16671 2.16671 -84.3253 -2.16671 0 0 666494. 2306.21 0.30 0.03 0.12 -1 -1 0.30 0.0126716 0.0114542 86 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.35 vpr 63.96 MiB -1 -1 0.15 20456 1 0.03 -1 -1 34000 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65500 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.5 MiB 0.12 652 12196 3867 6239 2090 64.0 MiB 0.10 0.00 3.32135 -96.7087 -3.32135 3.32135 1.01 0.000448665 0.000402027 0.0355368 0.0323225 30 1578 20 6.65987e+06 202848 526063. 1820.29 0.97 0.0966646 0.0856021 22546 126617 -1 1320 15 634 1019 68764 16363 2.74557 2.74557 -100.413 -2.74557 0 0 666494. 2306.21 0.30 0.04 0.12 -1 -1 0.30 0.0180485 0.0162798 92 29 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.22 vpr 64.29 MiB -1 -1 0.15 20300 1 0.03 -1 -1 33984 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65828 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 26.0 MiB 0.06 869 13849 3984 8340 1525 64.3 MiB 0.10 0.00 2.77684 -95.9395 -2.77684 2.77684 0.96 0.00040976 0.00037342 0.0336521 0.0306002 32 2115 19 6.65987e+06 266238 554710. 1919.41 0.95 0.0894844 0.0788445 22834 132086 -1 1897 21 1362 2373 193185 43014 2.66051 2.66051 -109.164 -2.66051 0 0 701300. 2426.64 0.30 0.07 0.12 -1 -1 0.30 0.0218677 0.0193404 115 31 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 6.32 vpr 63.97 MiB -1 -1 0.15 20312 1 0.03 -1 -1 33492 -1 -1 27 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 25.6 MiB 0.09 478 8868 2718 4101 2049 64.0 MiB 0.06 0.00 2.55958 -60.0902 -2.55958 2.55958 0.96 0.000356911 0.000319781 0.019046 0.0173006 28 1533 25 6.65987e+06 342306 500653. 1732.36 3.15 0.116457 0.101026 21970 115934 -1 1196 19 710 1129 73467 19595 2.83379 2.83379 -76.5265 -2.83379 0 0 612192. 2118.31 0.27 0.04 0.12 -1 -1 0.27 0.0157476 0.0139523 89 19 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.54 vpr 64.48 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33900 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66024 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 25.9 MiB 0.19 1085 13260 3957 7838 1465 64.5 MiB 0.14 0.00 3.13278 -104.836 -3.13278 3.13278 0.94 0.000594403 0.000543213 0.0421146 0.0383497 28 2720 20 6.65987e+06 253560 500653. 1732.36 1.12 0.120312 0.106953 21970 115934 -1 2436 19 1462 2620 199275 46711 3.45505 3.45505 -129.417 -3.45505 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0250774 0.0224293 135 69 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.85 vpr 64.95 MiB -1 -1 0.18 20704 1 0.03 -1 -1 34000 -1 -1 33 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 26.5 MiB 0.40 836 8199 1622 6097 480 65.0 MiB 0.08 0.00 3.44501 -110.865 -3.44501 3.44501 0.98 0.000592248 0.000541635 0.0243925 0.0223434 28 2347 26 6.65987e+06 418374 500653. 1732.36 1.19 0.109937 0.0968871 21970 115934 -1 1987 20 1421 2155 145791 36555 3.30177 3.30177 -126.216 -3.30177 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0287225 0.0257163 142 86 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 9.72 vpr 65.40 MiB -1 -1 0.16 20432 1 0.03 -1 -1 33640 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 27.0 MiB 2.66 881 11324 4027 5472 1825 65.4 MiB 0.10 0.00 4.4212 -127.091 -4.4212 4.4212 1.02 0.000513464 0.000468941 0.0393027 0.0359717 46 2529 34 6.95648e+06 188184 828058. 2865.25 3.47 0.194346 0.172762 28066 200906 -1 1976 19 1317 2040 173144 36392 4.40981 4.40981 -150.49 -4.40981 0 0 1.01997e+06 3529.29 0.43 0.07 0.20 -1 -1 0.43 0.0274985 0.0247226 81 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 11.20 vpr 65.50 MiB -1 -1 0.17 20644 1 0.03 -1 -1 33808 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67072 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 2.24 791 11161 4642 5937 582 65.5 MiB 0.09 0.00 3.91237 -118.609 -3.91237 3.91237 1.02 0.000528593 0.000482563 0.0387428 0.0354938 46 2620 23 6.95648e+06 217135 828058. 2865.25 5.38 0.25295 0.222233 28066 200906 -1 1911 23 1800 2497 180912 41119 4.69741 4.69741 -148.397 -4.69741 0 0 1.01997e+06 3529.29 0.42 0.08 0.20 -1 -1 0.42 0.0303354 0.0270685 80 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 8.38 vpr 64.91 MiB -1 -1 0.16 20196 1 0.03 -1 -1 33560 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 26.6 MiB 1.35 1029 14613 5406 7620 1587 64.9 MiB 0.11 0.00 3.10314 -104.055 -3.10314 3.10314 1.01 0.000457172 0.000418577 0.0421173 0.0386031 36 2940 37 6.95648e+06 217135 648988. 2245.63 3.61 0.166736 0.147964 26050 158493 -1 2389 19 1504 2019 194044 39752 3.83706 3.83706 -131.559 -3.83706 0 0 828058. 2865.25 0.34 0.07 0.16 -1 -1 0.34 0.0227882 0.0203911 76 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 9.23 vpr 65.28 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33936 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 26.7 MiB 0.40 622 14700 6434 7463 803 65.3 MiB 0.10 0.00 3.50318 -96.3161 -3.50318 3.50318 0.99 0.000474382 0.000433659 0.0420189 0.0384343 46 2104 32 6.95648e+06 275038 828058. 2865.25 5.33 0.214412 0.187067 28066 200906 -1 1651 20 1336 2184 162007 37952 3.67452 3.67452 -116.58 -3.67452 0 0 1.01997e+06 3529.29 0.40 0.07 0.20 -1 -1 0.40 0.0222173 0.0198043 71 25 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 8.86 vpr 65.47 MiB -1 -1 0.16 20208 1 0.03 -1 -1 33508 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67044 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 27.1 MiB 0.91 733 11604 4109 5030 2465 65.5 MiB 0.09 0.00 3.54539 -105.515 -3.54539 3.54539 1.02 0.000514058 0.000471396 0.0379205 0.0347216 40 2655 46 6.95648e+06 231611 706193. 2443.58 4.43 0.204729 0.181764 26914 176310 -1 2221 20 1666 2761 257281 56992 4.68521 4.68521 -146.15 -4.68521 0 0 926341. 3205.33 0.38 0.09 0.17 -1 -1 0.38 0.0271775 0.0243641 73 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 7.08 vpr 65.46 MiB -1 -1 0.17 20524 1 0.03 -1 -1 33640 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67028 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 27.0 MiB 1.08 987 14965 5506 7245 2214 65.5 MiB 0.11 0.00 2.5393 -98.6165 -2.5393 2.5393 0.97 0.000512261 0.000466537 0.044233 0.0403232 38 2475 25 6.95648e+06 303989 678818. 2348.85 2.58 0.16564 0.145363 26626 170182 -1 2151 23 1436 2211 182647 36945 3.64337 3.64337 -128.704 -3.64337 0 0 902133. 3121.57 0.37 0.08 0.17 -1 -1 0.37 0.029048 0.0258842 79 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.90 vpr 64.59 MiB -1 -1 0.14 20096 1 0.03 -1 -1 34200 -1 -1 13 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 26.0 MiB 4.84 477 8714 3575 4627 512 64.6 MiB 0.05 0.00 2.92458 -77.1037 -2.92458 2.92458 0.97 0.00035179 0.000319074 0.022996 0.020972 36 1626 26 6.95648e+06 188184 648988. 2245.63 2.92 0.121568 0.106293 26050 158493 -1 1303 19 937 1402 111609 25169 3.02067 3.02067 -98.6877 -3.02067 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0173478 0.0153385 52 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 8.36 vpr 65.18 MiB -1 -1 0.15 20140 1 0.03 -1 -1 33708 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.6 MiB 0.43 690 11593 4487 6287 819 65.2 MiB 0.08 0.00 2.41395 -78.1025 -2.41395 2.41395 1.02 0.000437231 0.000389985 0.0274025 0.0249401 44 1860 26 6.95648e+06 361892 787024. 2723.27 4.47 0.191484 0.167749 27778 195446 -1 1485 20 1033 1695 120438 27124 2.79442 2.79442 -96.6961 -2.79442 0 0 997811. 3452.63 0.41 0.06 0.19 -1 -1 0.41 0.0205943 0.0183973 69 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.51 vpr 65.20 MiB -1 -1 0.15 20380 1 0.03 -1 -1 34076 -1 -1 11 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 26.7 MiB 2.17 559 10459 3193 5148 2118 65.2 MiB 0.08 0.00 2.76819 -92.7181 -2.76819 2.76819 1.00 0.000461602 0.000414806 0.0340954 0.0311908 54 1520 39 6.95648e+06 159232 949917. 3286.91 5.75 0.20659 0.180782 29506 232905 -1 1098 21 1130 1599 101532 25804 3.31057 3.31057 -108.167 -3.31057 0 0 1.17392e+06 4061.99 0.48 0.06 0.23 -1 -1 0.48 0.0248997 0.0222788 66 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 7.46 vpr 65.00 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33640 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 26.5 MiB 1.13 562 8444 2332 4810 1302 65.0 MiB 0.07 0.00 2.79018 -93.5495 -2.79018 2.79018 1.00 0.000439841 0.000401883 0.0266266 0.0244049 38 1878 28 6.95648e+06 144757 678818. 2348.85 2.97 0.139011 0.121945 26626 170182 -1 1410 19 1213 1727 137810 30656 3.38752 3.38752 -121.57 -3.38752 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.022792 0.0204529 59 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.42 vpr 64.98 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33540 -1 -1 12 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 26.5 MiB 1.97 504 10769 4526 5806 437 65.0 MiB 0.08 0.00 2.79013 -84.2419 -2.79013 2.79013 1.01 0.000453016 0.000414884 0.0343447 0.0314358 40 1796 34 6.95648e+06 173708 706193. 2443.58 2.02 0.15827 0.139436 26914 176310 -1 1346 24 1161 1603 155945 40471 3.13832 3.13832 -109.688 -3.13832 0 0 926341. 3205.33 0.37 0.07 0.17 -1 -1 0.37 0.0245484 0.0217817 55 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 10.62 vpr 65.11 MiB -1 -1 0.15 20368 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 26.5 MiB 1.62 620 11079 4617 6106 356 65.1 MiB 0.08 0.00 2.85923 -95.6109 -2.85923 2.85923 1.01 0.000424448 0.000387435 0.0332586 0.0304973 48 1892 41 6.95648e+06 144757 865456. 2994.66 5.49 0.231346 0.203447 28354 207349 -1 1560 21 1198 1534 134929 33035 3.16097 3.16097 -121.639 -3.16097 0 0 1.05005e+06 3633.38 0.43 0.06 0.20 -1 -1 0.43 0.0220339 0.0196005 62 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.69 vpr 65.24 MiB -1 -1 0.16 20652 1 0.03 -1 -1 33724 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 26.9 MiB 1.96 1062 14613 6085 6336 2192 65.2 MiB 0.12 0.00 3.17248 -109.223 -3.17248 3.17248 1.01 0.000502046 0.000451547 0.0471811 0.0432163 38 3156 43 6.95648e+06 217135 678818. 2348.85 3.22 0.186371 0.165809 26626 170182 -1 2620 19 1816 2704 257888 52615 3.78547 3.78547 -143.373 -3.78547 0 0 902133. 3121.57 0.37 0.09 0.16 -1 -1 0.37 0.027788 0.0251075 83 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 11.30 vpr 65.12 MiB -1 -1 0.16 20512 1 0.03 -1 -1 33752 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 26.7 MiB 0.92 845 9158 2946 4721 1491 65.1 MiB 0.08 0.00 3.62058 -112.716 -3.62058 3.62058 1.00 0.00052171 0.000475289 0.0278311 0.0254159 36 2788 46 6.95648e+06 318465 648988. 2245.63 6.98 0.246838 0.214676 26050 158493 -1 2184 22 1718 2479 246504 50738 4.56546 4.56546 -149.894 -4.56546 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0267766 0.0237766 75 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 14.33 vpr 64.74 MiB -1 -1 0.14 20532 1 0.03 -1 -1 33432 -1 -1 13 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 26.2 MiB 1.42 467 9064 3757 4873 434 64.7 MiB 0.06 0.00 2.6566 -73.6859 -2.6566 2.6566 0.98 0.000378937 0.000345839 0.0242287 0.0220833 42 1978 48 6.95648e+06 188184 744469. 2576.02 9.57 0.224821 0.194981 27202 183097 -1 1357 23 1060 1573 137844 34209 3.23252 3.23252 -99.1075 -3.23252 0 0 949917. 3286.91 0.37 0.06 0.18 -1 -1 0.37 0.0195806 0.0172548 55 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 18.46 vpr 65.52 MiB -1 -1 0.17 20496 1 0.03 -1 -1 33776 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67088 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 27.1 MiB 1.16 796 10931 4551 5944 436 65.5 MiB 0.08 0.00 2.6756 -95.5869 -2.6756 2.6756 1.00 0.000472101 0.000423913 0.035071 0.0319399 40 2504 28 6.95648e+06 246087 706193. 2443.58 13.82 0.269778 0.235391 26914 176310 -1 2151 24 1715 2736 292920 66291 3.40052 3.40052 -133.331 -3.40052 0 0 926341. 3205.33 0.35 0.10 0.18 -1 -1 0.35 0.0320006 0.0286448 76 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 11.01 vpr 65.27 MiB -1 -1 0.15 20452 1 0.03 -1 -1 34036 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66836 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 26.9 MiB 1.99 759 12030 4233 5733 2064 65.3 MiB 0.08 0.00 3.53151 -110.805 -3.53151 3.53151 0.97 0.000468645 0.00042696 0.0365848 0.0334127 56 1530 27 6.95648e+06 202660 973134. 3367.25 5.51 0.192177 0.166892 29794 239141 -1 1410 21 1415 1873 121862 30909 3.50092 3.50092 -124.218 -3.50092 0 0 1.19926e+06 4149.71 0.47 0.06 0.23 -1 -1 0.47 0.0249691 0.0223446 79 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.48 vpr 65.07 MiB -1 -1 0.17 20472 1 0.03 -1 -1 33452 -1 -1 9 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 26.5 MiB 0.82 689 11929 3554 6500 1875 65.1 MiB 0.09 0.00 1.91376 -77.1756 -1.91376 1.91376 1.01 0.000473831 0.000432624 0.0399561 0.036594 42 1948 29 6.95648e+06 130281 744469. 2576.02 4.14 0.22341 0.196288 27202 183097 -1 1620 21 1205 1758 153831 30935 2.19737 2.19737 -98.8623 -2.19737 0 0 949917. 3286.91 0.40 0.07 0.18 -1 -1 0.40 0.0247383 0.0220452 57 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 8.10 vpr 64.72 MiB -1 -1 0.15 20016 1 0.03 -1 -1 33688 -1 -1 9 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66272 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 26.4 MiB 0.41 394 7809 3226 4314 269 64.7 MiB 0.05 0.00 1.85256 -63.0645 -1.85256 1.85256 1.02 0.000364742 0.000333671 0.0217255 0.0199234 40 1399 29 6.95648e+06 130281 706193. 2443.58 4.30 0.143191 0.123982 26914 176310 -1 1118 22 800 1025 115826 30686 2.38018 2.38018 -87.5735 -2.38018 0 0 926341. 3205.33 0.38 0.05 0.17 -1 -1 0.38 0.0183334 0.0161823 43 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 10.72 vpr 65.14 MiB -1 -1 0.15 20432 1 0.03 -1 -1 34092 -1 -1 12 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 26.6 MiB 2.52 875 8607 2665 5287 655 65.1 MiB 0.07 0.00 3.36378 -111.353 -3.36378 3.36378 1.02 0.000460806 0.0004218 0.0273879 0.0251349 40 2228 26 6.95648e+06 173708 706193. 2443.58 4.71 0.19595 0.172369 26914 176310 -1 1939 21 1586 2119 225127 47645 3.71866 3.71866 -140.257 -3.71866 0 0 926341. 3205.33 0.38 0.08 0.17 -1 -1 0.38 0.0255396 0.022948 69 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 9.18 vpr 65.39 MiB -1 -1 0.16 20336 1 0.03 -1 -1 33720 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 27.0 MiB 0.79 842 13992 5887 7784 321 65.4 MiB 0.11 0.00 3.04869 -102.648 -3.04869 3.04869 1.03 0.000520987 0.000477076 0.0427228 0.0390621 40 2122 24 6.95648e+06 289514 706193. 2443.58 4.85 0.239932 0.211205 26914 176310 -1 1929 22 1620 2340 236348 63500 3.72946 3.72946 -134.27 -3.72946 0 0 926341. 3205.33 0.37 0.10 0.17 -1 -1 0.37 0.0306484 0.027394 75 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 11.51 vpr 65.41 MiB -1 -1 0.16 20768 1 0.03 -1 -1 33968 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 27.0 MiB 1.53 847 14022 5063 6921 2038 65.4 MiB 0.11 0.00 3.8447 -112.293 -3.8447 3.8447 1.02 0.00054742 0.000497923 0.0466078 0.0424405 54 2309 47 6.95648e+06 202660 949917. 3286.91 6.30 0.261922 0.228379 29506 232905 -1 1746 19 1403 2176 175651 39251 4.2465 4.2465 -130.327 -4.2465 0 0 1.17392e+06 4061.99 0.47 0.07 0.24 -1 -1 0.47 0.0254863 0.0228455 82 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.01 vpr 64.56 MiB -1 -1 0.13 19980 1 0.03 -1 -1 34056 -1 -1 13 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 26.2 MiB 0.99 312 10291 4337 5270 684 64.6 MiB 0.06 0.00 1.86056 -53.1258 -1.86056 1.86056 1.02 0.000312731 0.000286265 0.0234128 0.0214358 36 1191 43 6.95648e+06 188184 648988. 2245.63 1.72 0.0932885 0.0818391 26050 158493 -1 792 15 551 644 45621 12227 2.01343 2.01343 -68.7348 -2.01343 0 0 828058. 2865.25 0.34 0.03 0.15 -1 -1 0.34 0.012461 0.0111229 44 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.57 vpr 64.89 MiB -1 -1 0.16 20180 1 0.03 -1 -1 33876 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 26.4 MiB 0.88 811 7684 1820 4857 1007 64.9 MiB 0.06 0.00 3.81446 -100.658 -3.81446 3.81446 1.02 0.000448908 0.000410168 0.022723 0.0208652 36 2535 27 6.95648e+06 217135 648988. 2245.63 4.31 0.135899 0.119209 26050 158493 -1 2033 22 1426 2331 241038 48576 4.10382 4.10382 -129.37 -4.10382 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0241687 0.0215595 66 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 7.56 vpr 64.26 MiB -1 -1 0.13 19820 1 0.03 -1 -1 33468 -1 -1 8 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 25.9 MiB 0.33 365 9757 3621 4371 1765 64.3 MiB 0.05 0.00 1.77736 -57.3321 -1.77736 1.77736 1.00 0.000301168 0.000272977 0.0211947 0.0193115 38 1148 19 6.95648e+06 115805 678818. 2348.85 3.95 0.106332 0.0917735 26626 170182 -1 879 18 614 724 48623 12724 1.93388 1.93388 -72.6444 -1.93388 0 0 902133. 3121.57 0.36 0.04 0.17 -1 -1 0.36 0.0136828 0.0122189 42 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 7.45 vpr 65.24 MiB -1 -1 0.15 20236 1 0.03 -1 -1 33864 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 26.7 MiB 1.12 883 14444 4779 8276 1389 65.2 MiB 0.11 0.00 3.67085 -106.418 -3.67085 3.67085 1.03 0.000475291 0.000435235 0.0419911 0.0384985 38 2267 34 6.95648e+06 217135 678818. 2348.85 2.83 0.175222 0.155362 26626 170182 -1 2001 21 1329 2088 166514 33494 3.83802 3.83802 -128.634 -3.83802 0 0 902133. 3121.57 0.37 0.07 0.17 -1 -1 0.37 0.0257315 0.0231025 68 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.49 vpr 65.29 MiB -1 -1 0.15 20136 1 0.03 -1 -1 33704 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.7 MiB 0.60 746 11803 4439 5667 1697 65.3 MiB 0.08 0.00 2.4561 -82.9741 -2.4561 2.4561 1.02 0.000451454 0.000411131 0.0332006 0.0303738 44 2045 25 6.95648e+06 303989 787024. 2723.27 2.36 0.161738 0.143775 27778 195446 -1 1522 24 1328 2148 152092 36302 3.08717 3.08717 -106.422 -3.08717 0 0 997811. 3452.63 0.42 0.07 0.19 -1 -1 0.42 0.0271608 0.0242914 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 6.82 vpr 65.26 MiB -1 -1 0.16 20272 1 0.03 -1 -1 33920 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 26.9 MiB 0.84 817 15383 6608 8304 471 65.3 MiB 0.11 0.00 3.73483 -109.744 -3.73483 3.73483 1.02 0.000502106 0.000457646 0.0457821 0.0419074 44 2697 32 6.95648e+06 275038 787024. 2723.27 2.39 0.169109 0.150364 27778 195446 -1 2009 22 1283 2003 172148 36633 4.21466 4.21466 -137.824 -4.21466 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.0288885 0.0258889 72 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.60 vpr 65.11 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33696 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 26.7 MiB 1.07 539 12164 5242 6584 338 65.1 MiB 0.08 0.00 2.67985 -77.8742 -2.67985 2.67985 0.98 0.000421938 0.000385132 0.036195 0.0330201 42 2237 42 6.95648e+06 144757 744469. 2576.02 2.09 0.137026 0.120406 27202 183097 -1 1571 22 1169 1749 179648 51144 3.24963 3.24963 -110.839 -3.24963 0 0 949917. 3286.91 0.40 0.07 0.18 -1 -1 0.40 0.0232382 0.0206522 55 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.75 vpr 65.02 MiB -1 -1 0.15 20416 1 0.03 -1 -1 33828 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 26.7 MiB 0.24 517 11776 4911 6304 561 65.0 MiB 0.07 0.00 2.86043 -80.4834 -2.86043 2.86043 1.01 0.000408369 0.000370853 0.0292531 0.0266765 42 1682 39 6.95648e+06 260562 744469. 2576.02 2.07 0.11576 0.101657 27202 183097 -1 1092 20 783 1106 88789 24860 2.77627 2.77627 -94.6208 -2.77627 0 0 949917. 3286.91 0.38 0.05 0.18 -1 -1 0.38 0.0194205 0.0172071 57 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.55 vpr 64.57 MiB -1 -1 0.15 20548 1 0.03 -1 -1 33732 -1 -1 16 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 26.2 MiB 0.56 455 11116 3646 5381 2089 64.6 MiB 0.07 0.00 2.5594 -73.0136 -2.5594 2.5594 1.02 0.000393631 0.000357778 0.0298079 0.0271103 52 1331 25 6.95648e+06 231611 926341. 3205.33 2.49 0.129234 0.113291 29218 227130 -1 983 19 872 1371 97234 25682 2.67492 2.67492 -83.9127 -2.67492 0 0 1.14541e+06 3963.36 0.46 0.05 0.22 -1 -1 0.46 0.0190274 0.0169614 57 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 9.37 vpr 64.90 MiB -1 -1 0.15 20212 1 0.03 -1 -1 33828 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.5 MiB 0.52 548 8444 3460 4719 265 64.9 MiB 0.06 0.00 2.79923 -89.2107 -2.79923 2.79923 1.02 0.000403526 0.000368026 0.0245824 0.0225298 48 1711 35 6.95648e+06 144757 865456. 2994.66 5.32 0.186607 0.163908 28354 207349 -1 1320 17 1028 1434 121489 29339 2.94767 2.94767 -112.695 -2.94767 0 0 1.05005e+06 3633.38 0.45 0.06 0.20 -1 -1 0.45 0.0202317 0.0181993 58 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 13.84 vpr 64.95 MiB -1 -1 0.14 20492 1 0.03 -1 -1 33564 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 26.5 MiB 0.42 577 10228 3042 5864 1322 65.0 MiB 0.07 0.00 2.5656 -81.1429 -2.5656 2.5656 0.99 0.000377309 0.000340969 0.0249838 0.0227173 40 1807 31 6.95648e+06 275038 706193. 2443.58 10.11 0.251779 0.218984 26914 176310 -1 1464 21 1151 1811 161095 37086 3.14022 3.14022 -106.584 -3.14022 0 0 926341. 3205.33 0.37 0.06 0.16 -1 -1 0.37 0.0206474 0.0182859 61 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.78 vpr 65.04 MiB -1 -1 0.16 20440 1 0.03 -1 -1 33800 -1 -1 12 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 26.6 MiB 1.27 664 12993 5517 6970 506 65.0 MiB 0.09 0.00 2.4721 -85.2591 -2.4721 2.4721 1.01 0.000431223 0.000393477 0.0392036 0.035892 38 2084 23 6.95648e+06 173708 678818. 2348.85 3.09 0.158701 0.140743 26626 170182 -1 1621 18 1107 1483 119099 27172 2.59377 2.59377 -101.862 -2.59377 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0207452 0.0185284 61 48 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.69 vpr 65.45 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33552 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 26.9 MiB 0.90 874 13105 5117 5856 2132 65.4 MiB 0.10 0.00 3.40128 -99.8589 -3.40128 3.40128 0.99 0.000526735 0.000480024 0.040683 0.0372322 48 2478 25 6.95648e+06 303989 865456. 2994.66 5.25 0.24868 0.21694 28354 207349 -1 2001 22 1472 2485 205471 46027 3.92832 3.92832 -126.982 -3.92832 0 0 1.05005e+06 3633.38 0.41 0.08 0.21 -1 -1 0.41 0.0298759 0.0266606 84 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.48 vpr 65.34 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33948 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66912 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.9 MiB 1.03 755 13933 5264 6834 1835 65.3 MiB 0.11 0.00 2.81508 -97.5119 -2.81508 2.81508 0.97 0.000545907 0.00050254 0.0425546 0.0387389 38 2849 37 6.95648e+06 347416 678818. 2348.85 3.02 0.17676 0.155384 26626 170182 -1 1982 21 1861 2588 206139 46054 3.67747 3.67747 -131.381 -3.67747 0 0 902133. 3121.57 0.35 0.09 0.17 -1 -1 0.35 0.0299711 0.0267213 82 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.10 vpr 65.17 MiB -1 -1 0.17 20488 1 0.03 -1 -1 34016 -1 -1 11 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 26.7 MiB 2.12 792 9219 3785 5131 303 65.2 MiB 0.07 0.00 3.28867 -106.879 -3.28867 3.28867 1.01 0.000410418 0.000375336 0.028022 0.0256693 40 2034 24 6.95648e+06 159232 706193. 2443.58 2.52 0.147674 0.130465 26914 176310 -1 1912 19 1305 1857 215451 42005 3.57121 3.57121 -129.505 -3.57121 0 0 926341. 3205.33 0.39 0.08 0.17 -1 -1 0.39 0.0231728 0.0208249 63 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 8.17 vpr 65.42 MiB -1 -1 0.17 20588 1 0.03 -1 -1 33628 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66992 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 27.0 MiB 0.86 911 11233 4701 6194 338 65.4 MiB 0.09 0.00 2.97779 -99.9314 -2.97779 2.97779 1.01 0.000534028 0.000488014 0.0385271 0.0353316 38 2632 32 6.95648e+06 231611 678818. 2348.85 3.86 0.178948 0.157727 26626 170182 -1 2025 25 1718 2592 216962 46874 3.49602 3.49602 -123.583 -3.49602 0 0 902133. 3121.57 0.36 0.08 0.17 -1 -1 0.36 0.0283584 0.0250642 76 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 32.09 vpr 65.64 MiB -1 -1 0.17 20392 1 0.03 -1 -1 33952 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 27.4 MiB 2.26 974 13261 5378 6260 1623 65.6 MiB 0.10 0.00 4.64566 -142.703 -4.64566 4.64566 0.97 0.000526662 0.000479824 0.0445049 0.0407243 50 3413 37 6.95648e+06 231611 902133. 3121.57 26.25 0.336989 0.29574 28642 213929 -1 2532 30 2659 3892 370044 77324 5.3073 5.3073 -181.095 -5.3073 0 0 1.08113e+06 3740.92 0.44 0.13 0.21 -1 -1 0.44 0.0376918 0.0334542 97 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 12.29 vpr 65.38 MiB -1 -1 0.16 20556 1 0.03 -1 -1 33900 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66948 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 26.9 MiB 2.88 835 15120 6584 7826 710 65.4 MiB 0.12 0.00 3.83514 -120.302 -3.83514 3.83514 1.03 0.000549972 0.000503064 0.0532785 0.0487681 46 2983 38 6.95648e+06 231611 828058. 2865.25 5.76 0.287284 0.25401 28066 200906 -1 2092 23 1783 2591 206687 46640 4.84371 4.84371 -163.895 -4.84371 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.032204 0.0288234 88 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 7.50 vpr 65.50 MiB -1 -1 0.16 20708 1 0.03 -1 -1 33912 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 27.1 MiB 1.14 826 14779 5675 7211 1893 65.5 MiB 0.11 0.00 3.44517 -107.539 -3.44517 3.44517 0.99 0.000467076 0.000422923 0.0414122 0.0375468 46 2285 38 6.95648e+06 318465 828058. 2865.25 2.92 0.179678 0.157994 28066 200906 -1 1835 22 1357 2019 156541 34065 3.47006 3.47006 -125.828 -3.47006 0 0 1.01997e+06 3529.29 0.40 0.07 0.18 -1 -1 0.40 0.0257249 0.0228743 78 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 10.36 vpr 65.19 MiB -1 -1 0.15 20668 1 0.03 -1 -1 33732 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 26.6 MiB 1.38 727 12860 4967 6188 1705 65.2 MiB 0.09 0.00 3.40898 -94.1517 -3.40898 3.40898 1.00 0.000432243 0.000387045 0.0369648 0.033737 52 2139 25 6.95648e+06 202660 926341. 3205.33 5.46 0.184126 0.160775 29218 227130 -1 1582 21 1204 1657 145874 33210 3.63571 3.63571 -114.562 -3.63571 0 0 1.14541e+06 3963.36 0.44 0.06 0.22 -1 -1 0.44 0.0230541 0.020629 71 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 9.18 vpr 65.96 MiB -1 -1 0.17 20752 1 0.03 -1 -1 34036 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67548 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 27.4 MiB 1.67 928 16907 6069 8568 2270 66.0 MiB 0.15 0.00 3.98456 -131.022 -3.98456 3.98456 1.02 0.000644389 0.000587467 0.0614059 0.0561461 46 2892 37 6.95648e+06 318465 828058. 2865.25 3.82 0.247762 0.220411 28066 200906 -1 2217 26 1959 2871 210623 46182 4.55661 4.55661 -158.48 -4.55661 0 0 1.01997e+06 3529.29 0.42 0.10 0.20 -1 -1 0.42 0.0391193 0.0348206 93 84 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 7.47 vpr 64.72 MiB -1 -1 0.15 20564 1 0.03 -1 -1 33456 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 26.4 MiB 0.87 518 10702 3038 5758 1906 64.7 MiB 0.07 0.00 2.73795 -79.0651 -2.73795 2.73795 1.01 0.000444796 0.000409945 0.0282353 0.0258856 36 1850 46 6.95648e+06 217135 648988. 2245.63 3.25 0.154026 0.13539 26050 158493 -1 1199 21 944 1370 88022 21473 3.24657 3.24657 -103.705 -3.24657 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0208128 0.018481 56 24 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.99 vpr 65.04 MiB -1 -1 0.17 20556 1 0.03 -1 -1 33764 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 26.6 MiB 1.47 841 13358 5793 6972 593 65.0 MiB 0.10 0.00 3.94062 -121.693 -3.94062 3.94062 1.00 0.000497379 0.000453464 0.0428694 0.0392057 52 2577 40 6.95648e+06 217135 926341. 3205.33 2.93 0.184715 0.163547 29218 227130 -1 1856 22 1568 2188 184478 46005 4.28926 4.28926 -144.242 -4.28926 0 0 1.14541e+06 3963.36 0.44 0.08 0.23 -1 -1 0.44 0.0268159 0.0239557 84 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.08 vpr 65.45 MiB -1 -1 0.15 20884 1 0.03 -1 -1 33820 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 27.1 MiB 1.18 908 15656 6774 8530 352 65.4 MiB 0.12 0.00 2.70675 -96.0827 -2.70675 2.70675 1.00 0.000500994 0.000456914 0.0465993 0.0424136 44 2610 31 6.95648e+06 246087 787024. 2723.27 2.37 0.160314 0.142043 27778 195446 -1 1986 24 1587 2659 200414 42246 3.10392 3.10392 -115.893 -3.10392 0 0 997811. 3452.63 0.41 0.08 0.19 -1 -1 0.41 0.0290131 0.0257819 73 50 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.35 vpr 65.14 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33684 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 1.16 700 9712 2856 5070 1786 65.1 MiB 0.07 0.00 3.72678 -98.3034 -3.72678 3.72678 1.01 0.000397958 0.000364089 0.0276431 0.0253026 44 2515 30 6.95648e+06 231611 787024. 2723.27 2.69 0.136661 0.121045 27778 195446 -1 1735 19 1157 1997 191184 41960 3.70752 3.70752 -126.992 -3.70752 0 0 997811. 3452.63 0.41 0.08 0.19 -1 -1 0.41 0.0245892 0.0222011 68 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 8.86 vpr 65.39 MiB -1 -1 0.15 20752 1 0.03 -1 -1 34012 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66960 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 27.0 MiB 2.78 839 12030 5018 6529 483 65.4 MiB 0.09 0.00 3.28085 -102.866 -3.28085 3.28085 0.97 0.000464458 0.000424216 0.0370921 0.0338199 46 2063 29 6.95648e+06 202660 828058. 2865.25 2.71 0.166785 0.146846 28066 200906 -1 1639 21 1226 1719 109901 26486 3.38676 3.38676 -123.385 -3.38676 0 0 1.01997e+06 3529.29 0.40 0.06 0.18 -1 -1 0.40 0.0240392 0.0214184 78 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.21 vpr 65.25 MiB -1 -1 0.15 20564 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 26.9 MiB 2.00 708 11456 4717 6238 501 65.2 MiB 0.09 0.00 2.6085 -91.2293 -2.6085 2.6085 1.02 0.000528231 0.000483378 0.0376979 0.0344731 48 2361 37 6.95648e+06 246087 865456. 2994.66 5.62 0.259919 0.228802 28354 207349 -1 1731 24 1526 2313 200301 47200 2.97277 2.97277 -113.708 -2.97277 0 0 1.05005e+06 3633.38 0.43 0.09 0.20 -1 -1 0.43 0.0298268 0.0264939 75 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 9.16 vpr 65.59 MiB -1 -1 0.16 20480 1 0.03 -1 -1 33736 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67168 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 27.1 MiB 0.96 975 15768 5178 8147 2443 65.6 MiB 0.12 0.00 3.29648 -110.565 -3.29648 3.29648 1.01 0.00053477 0.000486702 0.0453144 0.0413675 38 2790 33 6.95648e+06 376368 678818. 2348.85 4.71 0.18968 0.167223 26626 170182 -1 2166 24 1431 2020 166935 33234 3.76266 3.76266 -138.511 -3.76266 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.0296429 0.0263661 83 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 10.05 vpr 65.37 MiB -1 -1 0.14 20224 1 0.03 -1 -1 33764 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 26.7 MiB 1.22 793 12182 4369 5126 2687 65.4 MiB 0.09 0.00 3.63883 -97.2819 -3.63883 3.63883 1.02 0.000463669 0.000423445 0.033421 0.030562 44 2278 27 6.95648e+06 318465 787024. 2723.27 5.26 0.24915 0.219202 27778 195446 -1 1588 18 934 1524 108854 24587 3.70272 3.70272 -117.818 -3.70272 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0221002 0.0199097 69 21 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 17.11 vpr 65.27 MiB -1 -1 0.15 20160 1 0.03 -1 -1 33640 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 26.9 MiB 2.96 788 9694 3973 5384 337 65.3 MiB 0.08 0.00 3.53127 -106.53 -3.53127 3.53127 1.00 0.000474375 0.000432165 0.031118 0.0284585 44 2618 27 6.95648e+06 188184 787024. 2723.27 10.70 0.257804 0.224272 27778 195446 -1 1740 20 1466 1974 140477 32815 3.88922 3.88922 -126.697 -3.88922 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.021821 0.0194299 79 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 10.96 vpr 65.66 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33800 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 27.2 MiB 1.68 893 12196 5149 6693 354 65.7 MiB 0.10 0.00 3.65997 -117.175 -3.65997 3.65997 1.01 0.000552281 0.000505705 0.0428334 0.0392515 48 2566 26 6.95648e+06 217135 865456. 2994.66 5.65 0.248524 0.218961 28354 207349 -1 2184 25 2013 3156 293811 59663 4.34842 4.34842 -145.051 -4.34842 0 0 1.05005e+06 3633.38 0.43 0.11 0.20 -1 -1 0.43 0.0334693 0.0298122 85 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 9.85 vpr 65.48 MiB -1 -1 0.16 20536 1 0.03 -1 -1 33560 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67048 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 27.1 MiB 2.76 916 13280 4868 6811 1601 65.5 MiB 0.12 0.00 3.41 -113.664 -3.41 3.41 1.01 0.000548391 0.000501962 0.0486284 0.0445007 44 2987 46 6.95648e+06 188184 787024. 2723.27 3.46 0.225288 0.200068 27778 195446 -1 2424 21 1509 2507 267789 57883 4.00382 4.00382 -138.488 -4.00382 0 0 997811. 3452.63 0.42 0.10 0.19 -1 -1 0.42 0.0307578 0.0275499 76 74 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.46 vpr 64.89 MiB -1 -1 0.16 20592 1 0.03 -1 -1 33696 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 26.3 MiB 0.29 611 11474 4764 6424 286 64.9 MiB 0.08 0.00 2.50468 -77.473 -2.50468 2.50468 1.00 0.000411767 0.000375301 0.0284082 0.0259893 40 1846 28 6.95648e+06 260562 706193. 2443.58 4.77 0.19559 0.171278 26914 176310 -1 1450 23 1119 1722 152091 32937 2.96487 2.96487 -101.415 -2.96487 0 0 926341. 3205.33 0.38 0.06 0.17 -1 -1 0.38 0.0213386 0.0188829 57 20 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 18.93 vpr 65.21 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33744 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 26.8 MiB 1.62 792 9676 3979 5527 170 65.2 MiB 0.08 0.00 3.24955 -116.703 -3.24955 3.24955 1.02 0.000505366 0.000461713 0.0325437 0.0297142 40 2730 46 6.95648e+06 173708 706193. 2443.58 13.84 0.295983 0.258244 26914 176310 -1 2281 23 1653 2327 273415 59967 4.44371 4.44371 -151.129 -4.44371 0 0 926341. 3205.33 0.35 0.09 0.18 -1 -1 0.35 0.0263236 0.023325 76 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 9.29 vpr 65.84 MiB -1 -1 0.17 20536 1 0.03 -1 -1 34148 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67416 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 27.3 MiB 2.19 1250 12120 4663 5914 1543 65.8 MiB 0.11 0.00 4.14402 -134.568 -4.14402 4.14402 1.02 0.000529042 0.000482028 0.0434818 0.0398006 44 3593 37 6.95648e+06 231611 787024. 2723.27 3.48 0.174744 0.154699 27778 195446 -1 2893 21 2098 3179 324430 62197 4.58506 4.58506 -164.898 -4.58506 0 0 997811. 3452.63 0.40 0.11 0.19 -1 -1 0.40 0.0305107 0.0273296 97 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.72 vpr 65.13 MiB -1 -1 0.15 20128 1 0.03 -1 -1 33792 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 26.8 MiB 0.94 703 15481 5944 6756 2781 65.1 MiB 0.11 0.00 3.65681 -114.437 -3.65681 3.65681 1.01 0.000522283 0.000478377 0.0473322 0.0432085 44 2501 30 6.95648e+06 246087 787024. 2723.27 2.27 0.153453 0.135997 27778 195446 -1 1728 16 1210 1685 139476 33396 3.74352 3.74352 -137.941 -3.74352 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0211321 0.0189757 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 15.57 vpr 65.04 MiB -1 -1 0.15 20276 1 0.03 -1 -1 34028 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 26.6 MiB 0.58 493 11296 4038 5246 2012 65.0 MiB 0.07 0.00 2.5502 -80.9265 -2.5502 2.5502 0.99 0.000422933 0.00038417 0.02923 0.0266972 44 1946 45 6.95648e+06 289514 787024. 2723.27 11.58 0.255426 0.222081 27778 195446 -1 1296 20 1122 1652 138277 34766 2.83637 2.83637 -103.082 -2.83637 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0200578 0.0177907 62 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 10.05 vpr 65.84 MiB -1 -1 0.18 20564 1 0.03 -1 -1 33956 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67424 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 27.5 MiB 1.92 1117 11740 3694 7229 817 65.8 MiB 0.12 0.00 4.77419 -139.583 -4.77419 4.77419 1.02 0.000693551 0.000631208 0.046862 0.0429774 48 2858 34 6.95648e+06 217135 865456. 2994.66 4.42 0.230985 0.205292 28354 207349 -1 2228 23 1874 2787 241672 52583 5.1614 5.1614 -169.28 -5.1614 0 0 1.05005e+06 3633.38 0.43 0.10 0.20 -1 -1 0.43 0.0366822 0.0328346 95 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 15.20 vpr 65.35 MiB -1 -1 0.14 20436 1 0.03 -1 -1 33800 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 27.0 MiB 1.25 744 13527 5190 6116 2221 65.3 MiB 0.10 0.00 3.8791 -110.943 -3.8791 3.8791 0.98 0.000522994 0.00047744 0.0381434 0.0347721 38 2548 50 6.95648e+06 332941 678818. 2348.85 10.58 0.287897 0.25137 26626 170182 -1 1803 18 1331 1986 145428 31807 3.94131 3.94131 -132.706 -3.94131 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0237908 0.0212906 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.68 vpr 64.55 MiB -1 -1 0.14 20584 1 0.03 -1 -1 33696 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.0 MiB 0.27 524 9531 3262 4735 1534 64.5 MiB 0.06 0.00 2.4091 -75.5035 -2.4091 2.4091 1.01 0.000371353 0.000338176 0.0242073 0.0221599 44 1320 32 6.95648e+06 188184 787024. 2723.27 2.01 0.101438 0.0890087 27778 195446 -1 1035 22 895 1327 76726 20211 2.83332 2.83332 -89.6824 -2.83332 0 0 997811. 3452.63 0.39 0.05 0.19 -1 -1 0.39 0.0192736 0.0170144 51 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.27 vpr 65.43 MiB -1 -1 0.17 20448 1 0.03 -1 -1 33488 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 27.0 MiB 0.60 970 15883 6338 7924 1621 65.4 MiB 0.12 0.00 4.09207 -110.193 -4.09207 4.09207 1.00 0.000456343 0.000413579 0.0434221 0.0395697 40 2852 22 6.95648e+06 347416 706193. 2443.58 3.20 0.166712 0.146701 26914 176310 -1 2414 21 1676 3034 282887 57982 4.74156 4.74156 -142.409 -4.74156 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0274115 0.0244772 80 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 6.79 vpr 64.81 MiB -1 -1 0.15 20572 1 0.03 -1 -1 33872 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.5 MiB 1.19 494 11366 4106 5307 1953 64.8 MiB 0.07 0.00 2.6034 -82.9973 -2.6034 2.6034 1.00 0.000398903 0.000364605 0.0291743 0.0266903 38 2090 35 6.95648e+06 202660 678818. 2348.85 2.21 0.127751 0.111965 26626 170182 -1 1394 25 1456 1995 142295 35759 3.27022 3.27022 -114.096 -3.27022 0 0 902133. 3121.57 0.36 0.07 0.17 -1 -1 0.36 0.0231774 0.0205594 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 8.84 vpr 64.88 MiB -1 -1 0.16 20488 1 0.03 -1 -1 33688 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 26.4 MiB 1.00 571 9205 3778 5043 384 64.9 MiB 0.07 0.00 2.93563 -88.4965 -2.93563 2.93563 0.99 0.000443533 0.000405327 0.0259336 0.0237386 40 1786 23 6.95648e+06 246087 706193. 2443.58 4.45 0.169757 0.147391 26914 176310 -1 1549 22 1228 1898 196274 41447 2.95032 2.95032 -105.894 -2.95032 0 0 926341. 3205.33 0.35 0.07 0.18 -1 -1 0.35 0.0219175 0.0194197 60 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 10.31 vpr 65.39 MiB -1 -1 0.18 20524 1 0.03 -1 -1 33652 -1 -1 16 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 26.9 MiB 1.67 1011 13932 6097 7158 677 65.4 MiB 0.12 0.00 3.07379 -102.002 -3.07379 3.07379 1.02 0.000507261 0.000463786 0.0473348 0.0433592 40 2732 19 6.95648e+06 231611 706193. 2443.58 5.06 0.255996 0.225741 26914 176310 -1 2451 21 1916 2829 284975 56814 3.41306 3.41306 -127.584 -3.41306 0 0 926341. 3205.33 0.38 0.10 0.17 -1 -1 0.38 0.0301286 0.0270126 80 56 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.18 vpr 65.32 MiB -1 -1 0.17 20480 1 0.03 -1 -1 33940 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66884 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 27.0 MiB 1.40 672 12636 4375 5767 2494 65.3 MiB 0.09 0.00 3.91028 -109.879 -3.91028 3.91028 1.00 0.000512642 0.000469669 0.0410147 0.0375393 48 1869 30 6.95648e+06 231611 865456. 2994.66 2.27 0.183429 0.162316 28354 207349 -1 1499 21 1454 2096 151807 38178 4.44062 4.44062 -140.143 -4.44062 0 0 1.05005e+06 3633.38 0.43 0.07 0.20 -1 -1 0.43 0.0255126 0.0227215 72 51 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 22.65 vpr 65.41 MiB -1 -1 0.15 20680 1 0.03 -1 -1 33856 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66980 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 27.0 MiB 2.03 818 11698 4892 6539 267 65.4 MiB 0.09 0.00 3.82419 -117.798 -3.82419 3.82419 0.99 0.000467176 0.000423105 0.0356341 0.0324748 42 2846 43 6.95648e+06 202660 744469. 2576.02 17.20 0.311244 0.272412 27202 183097 -1 2184 30 1888 2976 399633 111770 4.14626 4.14626 -144.157 -4.14626 0 0 949917. 3286.91 0.38 0.14 0.17 -1 -1 0.38 0.0344765 0.0305797 73 48 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 11.20 vpr 65.18 MiB -1 -1 0.15 20304 1 0.03 -1 -1 33656 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 26.6 MiB 3.33 701 9374 3882 5196 296 65.2 MiB 0.07 0.00 3.30448 -104.32 -3.30448 3.30448 1.01 0.00042329 0.000384562 0.0277459 0.0253496 48 1676 26 6.95648e+06 144757 865456. 2994.66 4.33 0.177025 0.154502 28354 207349 -1 1518 33 1337 1686 256316 118437 3.61822 3.61822 -125.558 -3.61822 0 0 1.05005e+06 3633.38 0.43 0.11 0.20 -1 -1 0.43 0.0297435 0.0261942 61 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 8.04 vpr 65.12 MiB -1 -1 0.16 20528 1 0.03 -1 -1 34024 -1 -1 12 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 26.6 MiB 2.14 667 11135 4728 6057 350 65.1 MiB 0.08 0.00 3.15532 -100.248 -3.15532 3.15532 0.97 0.000458672 0.000417762 0.034745 0.0317036 40 2228 39 6.95648e+06 173708 706193. 2443.58 2.48 0.157231 0.137451 26914 176310 -1 1853 22 1513 2154 195603 43006 3.65337 3.65337 -126.72 -3.65337 0 0 926341. 3205.33 0.38 0.08 0.17 -1 -1 0.38 0.0260856 0.0232263 68 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 7.50 vpr 65.28 MiB -1 -1 0.17 20340 1 0.03 -1 -1 33852 -1 -1 22 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 26.7 MiB 0.90 713 11247 4291 5268 1688 65.3 MiB 0.09 0.00 2.4971 -77.8648 -2.4971 2.4971 0.99 0.000492489 0.000446462 0.0324274 0.0295724 38 2301 41 6.95648e+06 318465 678818. 2348.85 3.18 0.162718 0.142657 26626 170182 -1 1865 21 1329 2008 180652 39507 3.20627 3.20627 -108.169 -3.20627 0 0 902133. 3121.57 0.36 0.07 0.17 -1 -1 0.36 0.0247225 0.0219972 71 52 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.56 vpr 65.18 MiB -1 -1 0.16 20648 1 0.03 -1 -1 33808 -1 -1 28 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 26.7 MiB 0.62 709 9643 2719 5410 1514 65.2 MiB 0.07 0.00 2.98569 -81.1818 -2.98569 2.98569 1.00 0.000437413 0.000400554 0.0231225 0.0211379 46 1636 25 6.95648e+06 405319 828058. 2865.25 4.47 0.174515 0.152311 28066 200906 -1 1366 20 1037 1770 105179 25673 3.51016 3.51016 -102.264 -3.51016 0 0 1.01997e+06 3529.29 0.41 0.06 0.20 -1 -1 0.41 0.0211471 0.0188919 72 20 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.14 vpr 65.14 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33724 -1 -1 12 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 26.6 MiB 0.81 577 11234 4698 6083 453 65.1 MiB 0.08 0.00 2.79633 -89.5025 -2.79633 2.79633 0.98 0.000426968 0.000389286 0.0341353 0.0310876 40 1675 26 6.95648e+06 173708 706193. 2443.58 2.00 0.140524 0.123088 26914 176310 -1 1377 26 1504 2135 153576 36067 3.28227 3.28227 -115.718 -3.28227 0 0 926341. 3205.33 0.37 0.07 0.16 -1 -1 0.37 0.0257654 0.0227158 60 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.56 vpr 65.17 MiB -1 -1 0.14 20696 1 0.03 -1 -1 33436 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 26.8 MiB 1.70 653 12873 4955 6295 1623 65.2 MiB 0.09 0.00 2.80395 -98.1106 -2.80395 2.80395 1.00 0.000393397 0.000357732 0.038579 0.035137 50 2142 46 6.95648e+06 159232 902133. 3121.57 3.33 0.189609 0.167438 28642 213929 -1 1618 24 1455 2103 166009 39403 3.38763 3.38763 -121.292 -3.38763 0 0 1.08113e+06 3740.92 0.42 0.07 0.21 -1 -1 0.42 0.0280338 0.024951 72 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 21.38 vpr 65.19 MiB -1 -1 0.16 20120 1 0.03 -1 -1 34044 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.6 MiB 0.50 742 12183 4232 5803 2148 65.2 MiB 0.08 0.00 3.89128 -102.316 -3.89128 3.89128 1.02 0.000446994 0.000406318 0.0314616 0.0287621 46 2472 45 6.95648e+06 347416 828058. 2865.25 17.30 0.279569 0.244183 28066 200906 -1 1752 30 1338 2390 329653 130663 4.03962 4.03962 -123.624 -4.03962 0 0 1.01997e+06 3529.29 0.41 0.13 0.20 -1 -1 0.41 0.0338789 0.030207 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.92 vpr 65.46 MiB -1 -1 0.16 20436 1 0.03 -1 -1 34032 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67032 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 27.0 MiB 1.91 840 13606 5284 6859 1463 65.5 MiB 0.11 0.00 3.82007 -122.119 -3.82007 3.82007 1.02 0.00050979 0.000465962 0.0467314 0.0428006 46 2802 26 6.95648e+06 188184 828058. 2865.25 5.40 0.249486 0.220316 28066 200906 -1 2063 20 1676 2445 197733 42824 4.12626 4.12626 -143.444 -4.12626 0 0 1.01997e+06 3529.29 0.42 0.08 0.19 -1 -1 0.42 0.029466 0.0264613 82 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 10.66 vpr 65.34 MiB -1 -1 0.17 20476 1 0.03 -1 -1 33580 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66904 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 26.9 MiB 1.45 870 15883 5919 8257 1707 65.3 MiB 0.13 0.00 3.74653 -114.854 -3.74653 3.74653 0.99 0.000545224 0.000498063 0.0478354 0.0436764 48 2325 24 6.95648e+06 347416 865456. 2994.66 5.66 0.265614 0.232149 28354 207349 -1 1975 25 1421 2381 241997 49088 4.32076 4.32076 -141.482 -4.32076 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0296984 0.0262351 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 9.05 vpr 65.32 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33924 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 26.8 MiB 1.09 955 14295 5074 7318 1903 65.3 MiB 0.11 0.00 3.25852 -109.048 -3.25852 3.25852 1.00 0.000543234 0.000494827 0.04384 0.0399913 46 2764 39 6.95648e+06 332941 828058. 2865.25 4.37 0.192964 0.169217 28066 200906 -1 2092 24 1843 3089 229891 49033 4.06046 4.06046 -144.377 -4.06046 0 0 1.01997e+06 3529.29 0.42 0.09 0.20 -1 -1 0.42 0.0295535 0.0261676 80 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 7.10 vpr 65.00 MiB -1 -1 0.15 20088 1 0.03 -1 -1 34056 -1 -1 12 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 26.6 MiB 0.87 559 10769 4024 4781 1964 65.0 MiB 0.07 0.00 3.09846 -87.7994 -3.09846 3.09846 0.98 0.000381455 0.000348115 0.028256 0.025683 38 2032 24 6.95648e+06 173708 678818. 2348.85 2.96 0.131801 0.11558 26626 170182 -1 1550 23 1334 2040 157752 34218 3.32822 3.32822 -116.006 -3.32822 0 0 902133. 3121.57 0.35 0.07 0.15 -1 -1 0.35 0.02188 0.0193798 57 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 10.25 vpr 65.20 MiB -1 -1 0.17 20480 1 0.03 -1 -1 33684 -1 -1 14 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 26.8 MiB 1.01 657 10156 4222 5320 614 65.2 MiB 0.08 0.00 3.71763 -111.774 -3.71763 3.71763 0.98 0.000530749 0.000485636 0.0365353 0.0333744 54 1929 25 6.95648e+06 202660 949917. 3286.91 5.66 0.234229 0.203547 29506 232905 -1 1584 21 1621 2309 163774 38162 3.80786 3.80786 -132.183 -3.80786 0 0 1.17392e+06 4061.99 0.46 0.07 0.23 -1 -1 0.46 0.0272265 0.024208 76 58 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 23.72 vpr 65.50 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33952 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 27.1 MiB 1.68 799 12196 5082 6479 635 65.5 MiB 0.10 0.00 4.0079 -117.648 -4.0079 4.0079 1.01 0.000508426 0.000464062 0.0400747 0.0366271 48 2501 44 6.95648e+06 202660 865456. 2994.66 18.41 0.31836 0.277344 28354 207349 -1 1867 24 1757 2691 284728 80816 4.18071 4.18071 -144.66 -4.18071 0 0 1.05005e+06 3633.38 0.42 0.11 0.21 -1 -1 0.42 0.0294526 0.0262261 80 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 11.54 vpr 65.38 MiB -1 -1 0.18 20424 1 0.03 -1 -1 33644 -1 -1 14 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66944 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 26.9 MiB 2.38 804 10183 4196 5561 426 65.4 MiB 0.08 0.00 4.52776 -125.183 -4.52776 4.52776 1.00 0.000503436 0.000459865 0.0341107 0.0312424 52 2210 25 6.95648e+06 202660 926341. 3205.33 5.53 0.198412 0.173523 29218 227130 -1 1662 19 1061 1609 110326 25255 4.13326 4.13326 -137.42 -4.13326 0 0 1.14541e+06 3963.36 0.46 0.06 0.24 -1 -1 0.46 0.0234166 0.0209293 79 43 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 10.34 vpr 65.51 MiB -1 -1 0.18 20540 1 0.03 -1 -1 33680 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67084 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 27.1 MiB 1.76 809 9983 3596 4533 1854 65.5 MiB 0.08 0.00 3.74802 -114.756 -3.74802 3.74802 1.02 0.000523148 0.000476276 0.0326348 0.0298991 46 2083 22 6.95648e+06 303989 828058. 2865.25 5.04 0.220539 0.193764 28066 200906 -1 1601 18 965 1525 144498 32137 3.47092 3.47092 -123.921 -3.47092 0 0 1.01997e+06 3529.29 0.42 0.06 0.19 -1 -1 0.42 0.023022 0.0205959 74 78 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 10.95 vpr 65.37 MiB -1 -1 0.17 20528 1 0.03 -1 -1 33992 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 26.9 MiB 1.25 723 9205 3074 4084 2047 65.4 MiB 0.08 0.00 3.77393 -113.966 -3.77393 3.77393 1.03 0.000558341 0.000513031 0.033316 0.0305507 52 2272 26 6.95648e+06 188184 926341. 3205.33 6.05 0.244128 0.212857 29218 227130 -1 1815 21 1449 2390 221258 49260 3.94696 3.94696 -140.428 -3.94696 0 0 1.14541e+06 3963.36 0.46 0.08 0.23 -1 -1 0.46 0.0272965 0.0244061 72 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 7.64 vpr 65.39 MiB -1 -1 0.17 20772 1 0.03 -1 -1 33892 -1 -1 16 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 27.0 MiB 1.26 736 7738 3089 4238 411 65.4 MiB 0.06 0.00 3.39497 -102.397 -3.39497 3.39497 1.02 0.000503495 0.000456878 0.02763 0.0251984 46 2215 24 6.95648e+06 231611 828058. 2865.25 2.85 0.156304 0.136807 28066 200906 -1 1756 20 1276 1838 138460 31046 3.65752 3.65752 -123.187 -3.65752 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0260732 0.0232213 73 79 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.66 vpr 64.42 MiB -1 -1 0.14 20356 1 0.03 -1 -1 33808 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65964 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 25.9 MiB 1.00 622 9529 3978 5277 274 64.4 MiB 0.07 0.00 2.91658 -87.0574 -2.91658 2.91658 1.01 0.00039128 0.000355769 0.0267444 0.0244573 44 1653 49 6.95648e+06 144757 787024. 2723.27 2.20 0.122382 0.10778 27778 195446 -1 1243 20 811 1229 87383 20009 2.88007 2.88007 -103.119 -2.88007 0 0 997811. 3452.63 0.42 0.05 0.19 -1 -1 0.42 0.0199918 0.0177896 53 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 9.97 vpr 65.20 MiB -1 -1 0.16 20612 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 26.8 MiB 3.33 778 15255 5840 6960 2455 65.2 MiB 0.12 0.00 3.94236 -111.1 -3.94236 3.94236 1.00 0.000526425 0.000475156 0.0465157 0.0422444 44 2429 34 6.95648e+06 332941 787024. 2723.27 3.06 0.160843 0.141742 27778 195446 -1 1800 21 1336 2133 184778 38294 3.81156 3.81156 -131.227 -3.81156 0 0 997811. 3452.63 0.40 0.07 0.20 -1 -1 0.40 0.0271075 0.0240676 76 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.84 vpr 65.69 MiB -1 -1 0.16 20668 1 0.03 -1 -1 33936 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67264 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 27.1 MiB 0.69 804 9205 3766 5160 279 65.7 MiB 0.08 0.00 3.49708 -114.018 -3.49708 3.49708 1.01 0.000580683 0.000529556 0.0356342 0.0325831 46 2191 27 6.95648e+06 188184 828058. 2865.25 2.56 0.172162 0.150887 28066 200906 -1 1634 21 1591 2387 143895 39270 3.79171 3.79171 -137.902 -3.79171 0 0 1.01997e+06 3529.29 0.43 0.08 0.20 -1 -1 0.43 0.0297919 0.0265705 78 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 18.43 vpr 64.93 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33868 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 26.4 MiB 1.74 691 12399 5458 6668 273 64.9 MiB 0.09 0.00 3.40598 -100.425 -3.40598 3.40598 1.05 0.000432979 0.000396243 0.0361478 0.0330939 42 2195 48 6.95648e+06 159232 744469. 2576.02 13.19 0.285215 0.250923 27202 183097 -1 1673 20 1116 1391 131425 29481 3.58242 3.58242 -124.743 -3.58242 0 0 949917. 3286.91 0.39 0.06 0.18 -1 -1 0.39 0.0215455 0.0192485 68 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 9.03 vpr 64.84 MiB -1 -1 0.15 20232 1 0.03 -1 -1 33716 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.5 MiB 1.31 618 11756 4952 6427 377 64.8 MiB 0.07 0.00 2.67578 -85.6387 -2.67578 2.67578 0.98 0.000375008 0.000341498 0.0297872 0.0272361 40 1591 24 6.95648e+06 188184 706193. 2443.58 4.37 0.16294 0.142242 26914 176310 -1 1452 21 1235 1715 166399 50148 2.94267 2.94267 -109.73 -2.94267 0 0 926341. 3205.33 0.38 0.07 0.17 -1 -1 0.38 0.0216319 0.0193048 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 9.45 vpr 65.20 MiB -1 -1 0.17 20640 1 0.03 -1 -1 33752 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.8 MiB 1.75 913 14613 6291 7910 412 65.2 MiB 0.11 0.00 3.87937 -127.143 -3.87937 3.87937 1.00 0.000503357 0.000458693 0.0469068 0.0429102 40 3068 49 6.95648e+06 217135 706193. 2443.58 4.13 0.196392 0.173211 26914 176310 -1 2515 28 2317 3053 525127 179693 4.537 4.537 -159.596 -4.537 0 0 926341. 3205.33 0.36 0.17 0.18 -1 -1 0.36 0.0343572 0.0306887 85 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 17.71 vpr 65.39 MiB -1 -1 0.15 20532 1 0.03 -1 -1 33840 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 27.0 MiB 1.14 848 11366 4803 6266 297 65.4 MiB 0.09 0.00 4.05782 -123.254 -4.05782 4.05782 0.97 0.00049958 0.000454504 0.0356944 0.0325592 40 2648 41 6.95648e+06 202660 706193. 2443.58 13.18 0.301922 0.263446 26914 176310 -1 2131 25 1979 2797 248483 53738 4.78956 4.78956 -158.276 -4.78956 0 0 926341. 3205.33 0.38 0.09 0.16 -1 -1 0.38 0.0316174 0.0281394 82 53 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 9.35 vpr 65.36 MiB -1 -1 0.15 20676 1 0.03 -1 -1 33692 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.9 MiB 0.53 877 15656 6176 7184 2296 65.4 MiB 0.12 0.00 4.06272 -116.866 -4.06272 4.06272 0.99 0.000518165 0.000472311 0.0499068 0.0455755 54 2442 46 6.95648e+06 246087 949917. 3286.91 5.17 0.252382 0.220793 29506 232905 -1 1713 19 1290 2074 138576 32835 4.19191 4.19191 -138.261 -4.19191 0 0 1.17392e+06 4061.99 0.48 0.07 0.24 -1 -1 0.48 0.0272207 0.0244445 83 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.92 vpr 65.20 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33676 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 26.6 MiB 0.97 680 12323 3535 6272 2516 65.2 MiB 0.08 0.00 2.83043 -80.1664 -2.83043 2.83043 1.02 0.000475849 0.000434917 0.0344363 0.0315355 46 1830 25 6.95648e+06 303989 828058. 2865.25 2.42 0.132434 0.117506 28066 200906 -1 1222 23 1326 2208 126783 32795 3.05562 3.05562 -97.6763 -3.05562 0 0 1.01997e+06 3529.29 0.42 0.07 0.19 -1 -1 0.42 0.0260323 0.0231507 69 47 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 8.56 vpr 64.91 MiB -1 -1 0.15 20272 1 0.03 -1 -1 34332 -1 -1 14 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 26.3 MiB 0.54 413 9801 4107 5054 640 64.9 MiB 0.06 0.00 2.4231 -71.4569 -2.4231 2.4231 1.01 0.000413556 0.00037868 0.0277112 0.0253724 44 1293 30 6.95648e+06 202660 787024. 2723.27 4.64 0.158313 0.137182 27778 195446 -1 958 25 1009 1269 91941 23693 2.85967 2.85967 -90.6784 -2.85967 0 0 997811. 3452.63 0.40 0.05 0.19 -1 -1 0.40 0.0213816 0.0188102 54 26 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 11.01 vpr 65.77 MiB -1 -1 0.16 20684 1 0.03 -1 -1 33988 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67348 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 27.4 MiB 1.37 1010 16076 6288 7576 2212 65.8 MiB 0.15 0.00 3.32755 -113.539 -3.32755 3.32755 1.01 0.000604427 0.000550578 0.0583118 0.0531125 50 3102 24 6.95648e+06 231611 902133. 3121.57 5.96 0.317204 0.278933 28642 213929 -1 2609 22 2058 3251 302111 63234 4.07581 4.07581 -144.384 -4.07581 0 0 1.08113e+06 3740.92 0.44 0.11 0.20 -1 -1 0.44 0.0339697 0.0304411 95 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 20.46 vpr 65.13 MiB -1 -1 0.17 20360 1 0.03 -1 -1 33836 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 26.8 MiB 5.15 1000 11864 4270 5653 1941 65.1 MiB 0.10 0.00 4.51235 -130.083 -4.51235 4.51235 0.99 0.000515299 0.000464014 0.0396795 0.0363379 38 2748 24 6.95648e+06 217135 678818. 2348.85 11.82 0.273692 0.239627 26626 170182 -1 2345 23 1805 2737 279965 54387 4.78251 4.78251 -162.698 -4.78251 0 0 902133. 3121.57 0.37 0.10 0.17 -1 -1 0.37 0.0302159 0.0269492 82 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 17.88 vpr 65.26 MiB -1 -1 0.14 20400 1 0.03 -1 -1 33956 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 26.7 MiB 3.36 670 11135 4694 6130 311 65.3 MiB 0.08 0.00 3.05184 -103.57 -3.05184 3.05184 1.00 0.000482199 0.000439448 0.0361127 0.0329312 44 2261 44 6.95648e+06 159232 787024. 2723.27 11.04 0.280817 0.244984 27778 195446 -1 1581 22 1388 1872 205632 56344 3.29876 3.29876 -128.412 -3.29876 0 0 997811. 3452.63 0.39 0.08 0.20 -1 -1 0.39 0.0243672 0.0215786 70 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 6.84 vpr 64.94 MiB -1 -1 0.15 20396 1 0.03 -1 -1 34020 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 26.6 MiB 0.39 760 15395 5959 7790 1646 64.9 MiB 0.10 0.00 3.48277 -101.172 -3.48277 3.48277 0.97 0.00043877 0.000397267 0.0394961 0.0359412 46 2259 28 6.95648e+06 318465 828058. 2865.25 3.04 0.161978 0.142561 28066 200906 -1 1738 18 1183 1813 139007 31142 3.57306 3.57306 -121.721 -3.57306 0 0 1.01997e+06 3529.29 0.43 0.06 0.18 -1 -1 0.43 0.0219539 0.0194953 74 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 8.84 vpr 65.53 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33768 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 27.1 MiB 0.89 832 15103 4635 7782 2686 65.5 MiB 0.11 0.00 3.67183 -105.382 -3.67183 3.67183 0.97 0.00051903 0.000472263 0.0439186 0.0399659 38 2335 25 6.95648e+06 361892 678818. 2348.85 4.54 0.245953 0.214814 26626 170182 -1 1776 20 1386 2061 125980 29491 3.93437 3.93437 -129.529 -3.93437 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0256792 0.0228789 83 46 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.41 vpr 65.12 MiB -1 -1 0.16 20528 1 0.03 -1 -1 34084 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 26.6 MiB 1.15 750 13026 5612 6791 623 65.1 MiB 0.09 0.00 2.87605 -84.9432 -2.87605 2.87605 1.00 0.000468248 0.000427528 0.0400798 0.0366087 46 2088 28 6.95648e+06 231611 828058. 2865.25 2.78 0.15901 0.139696 28066 200906 -1 1595 23 1320 2152 148531 34267 3.29367 3.29367 -104 -3.29367 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0243763 0.0215887 68 46 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 24.04 vpr 65.43 MiB -1 -1 0.16 20480 1 0.03 -1 -1 34028 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67004 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 26.9 MiB 1.71 1053 11698 4858 6468 372 65.4 MiB 0.10 0.00 3.87497 -128.691 -3.87497 3.87497 0.97 0.000524393 0.000473854 0.0395046 0.0361108 46 3101 45 6.95648e+06 202660 828058. 2865.25 18.65 0.331613 0.288576 28066 200906 -1 2306 33 2456 3620 692279 284974 4.55581 4.55581 -155.858 -4.55581 0 0 1.01997e+06 3529.29 0.43 0.23 0.21 -1 -1 0.43 0.0386528 0.0342884 88 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 9.83 vpr 65.52 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33608 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 27.1 MiB 1.00 763 12542 4736 5981 1825 65.5 MiB 0.10 0.00 3.57533 -115.706 -3.57533 3.57533 1.02 0.000538938 0.000490548 0.0422703 0.0386206 52 2233 23 6.95648e+06 260562 926341. 3205.33 5.13 0.251253 0.22158 29218 227130 -1 1660 30 1696 2281 229714 67787 3.61822 3.61822 -134.012 -3.61822 0 0 1.14541e+06 3963.36 0.48 0.11 0.22 -1 -1 0.48 0.0409893 0.0364807 80 59 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.46 vpr 65.04 MiB -1 -1 0.15 20256 1 0.03 -1 -1 34056 -1 -1 12 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 26.7 MiB 5.17 493 11321 4784 6000 537 65.0 MiB 0.08 0.00 3.26591 -84.8562 -3.26591 3.26591 0.99 0.000426676 0.000390287 0.0330665 0.0302476 36 1488 24 6.95648e+06 173708 648988. 2245.63 2.00 0.128474 0.11267 26050 158493 -1 1171 16 791 1027 70843 17149 2.96472 2.96472 -99.3772 -2.96472 0 0 828058. 2865.25 0.34 0.04 0.16 -1 -1 0.34 0.0169623 0.0151741 53 28 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.96 vpr 65.23 MiB -1 -1 0.15 20292 1 0.03 -1 -1 33788 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 26.7 MiB 1.29 679 9555 3926 5402 227 65.2 MiB 0.07 0.00 3.06285 -104.703 -3.06285 3.06285 1.00 0.000449419 0.000407384 0.0289753 0.0264863 40 2024 23 6.95648e+06 159232 706193. 2443.58 2.27 0.137211 0.120436 26914 176310 -1 1757 22 1368 1726 197797 41166 3.75182 3.75182 -131.464 -3.75182 0 0 926341. 3205.33 0.35 0.07 0.18 -1 -1 0.35 0.0235332 0.020809 64 55 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.75 vpr 65.24 MiB -1 -1 0.16 20204 1 0.03 -1 -1 33412 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 26.9 MiB 1.07 730 12182 3480 6577 2125 65.2 MiB 0.09 0.00 3.44822 -99.9114 -3.44822 3.44822 0.99 0.000486845 0.000443495 0.0341266 0.0312009 38 2972 40 6.95648e+06 332941 678818. 2348.85 5.26 0.165899 0.145402 26626 170182 -1 1620 21 1467 2252 149462 34522 3.85622 3.85622 -128.549 -3.85622 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0235806 0.0209187 77 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 8.92 vpr 64.85 MiB -1 -1 0.14 20236 1 0.03 -1 -1 33804 -1 -1 13 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 26.4 MiB 1.66 675 9994 4196 5352 446 64.8 MiB 0.07 0.00 3.27767 -94.9092 -3.27767 3.27767 0.98 0.000363044 0.000330095 0.026929 0.024567 38 1968 36 6.95648e+06 188184 678818. 2348.85 3.96 0.139379 0.122136 26626 170182 -1 1497 30 1492 1857 218900 79167 3.42691 3.42691 -111.934 -3.42691 0 0 902133. 3121.57 0.35 0.09 0.15 -1 -1 0.35 0.0265667 0.023499 67 25 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.27 vpr 64.91 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33708 -1 -1 9 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 26.5 MiB 1.38 603 11625 5021 6321 283 64.9 MiB 0.08 0.00 3.19126 -90.7012 -3.19126 3.19126 0.98 0.000437748 0.000399517 0.0348406 0.0318476 38 1907 23 6.95648e+06 130281 678818. 2348.85 2.58 0.133059 0.116562 26626 170182 -1 1499 21 1219 1841 162863 34762 3.50177 3.50177 -117.735 -3.50177 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0205641 0.018226 56 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 9.76 vpr 65.48 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33868 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 27.1 MiB 1.07 672 13911 4660 6298 2953 65.5 MiB 0.09 0.00 2.84333 -93.3919 -2.84333 2.84333 0.98 0.000464439 0.000422722 0.0409591 0.0372878 46 1953 49 6.95648e+06 347416 828058. 2865.25 5.18 0.253931 0.220743 28066 200906 -1 1440 24 1640 2248 140199 35141 3.32047 3.32047 -117.802 -3.32047 0 0 1.01997e+06 3529.29 0.40 0.07 0.20 -1 -1 0.40 0.0282666 0.0250085 79 60 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.88 vpr 65.00 MiB -1 -1 0.15 20476 1 0.03 -1 -1 34036 -1 -1 12 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 26.6 MiB 2.74 691 7817 3176 4379 262 65.0 MiB 0.06 0.00 3.35097 -98.8049 -3.35097 3.35097 1.05 0.000409014 0.000373663 0.0234773 0.0215976 40 2202 34 6.95648e+06 173708 706193. 2443.58 2.68 0.147024 0.130061 26914 176310 -1 1768 18 1217 1688 171779 36922 3.40212 3.40212 -121.106 -3.40212 0 0 926341. 3205.33 0.38 0.06 0.17 -1 -1 0.38 0.0198454 0.017795 64 30 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 7.66 vpr 65.40 MiB -1 -1 0.16 20156 1 0.03 -1 -1 33716 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 27.0 MiB 1.37 773 13883 5809 7746 328 65.4 MiB 0.10 0.00 2.7068 -91.7659 -2.7068 2.7068 0.99 0.000477327 0.000432561 0.0386011 0.0352012 40 2197 35 6.95648e+06 318465 706193. 2443.58 2.84 0.169231 0.148485 26914 176310 -1 1798 23 1328 2068 220841 47852 3.07907 3.07907 -112.441 -3.07907 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0258285 0.0228516 71 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 16.64 vpr 65.57 MiB -1 -1 0.17 20744 1 0.03 -1 -1 33976 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 27.2 MiB 1.79 771 11698 4881 6335 482 65.6 MiB 0.09 0.00 3.3685 -110.341 -3.3685 3.3685 0.99 0.000524601 0.000478238 0.0403882 0.0368829 38 2698 50 6.95648e+06 217135 678818. 2348.85 11.51 0.33588 0.292057 26626 170182 -1 2033 23 1596 2164 252654 64208 3.70152 3.70152 -143.58 -3.70152 0 0 902133. 3121.57 0.33 0.09 0.15 -1 -1 0.33 0.0273134 0.0241911 73 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 14.23 vpr 64.97 MiB -1 -1 0.16 20292 1 0.03 -1 -1 33460 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 26.5 MiB 1.46 541 9994 3378 4996 1620 65.0 MiB 0.08 0.00 2.4011 -79.9159 -2.4011 2.4011 1.00 0.000439303 0.000400002 0.0306678 0.0280218 44 1647 44 6.95648e+06 144757 787024. 2723.27 9.32 0.25919 0.224945 27778 195446 -1 1173 24 1009 1550 109211 26866 3.04502 3.04502 -102.124 -3.04502 0 0 997811. 3452.63 0.41 0.06 0.19 -1 -1 0.41 0.0237949 0.0210192 57 54 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 10.47 vpr 65.21 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33836 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 26.7 MiB 1.59 763 11451 3987 5787 1677 65.2 MiB 0.09 0.00 3.29168 -105.903 -3.29168 3.29168 1.00 0.000441349 0.000403541 0.0343918 0.0315154 48 1874 35 6.95648e+06 159232 865456. 2994.66 5.38 0.221241 0.192721 28354 207349 -1 1676 18 1191 1816 134030 31824 3.58222 3.58222 -129.006 -3.58222 0 0 1.05005e+06 3633.38 0.42 0.06 0.21 -1 -1 0.42 0.020484 0.0183948 70 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.41 vpr 65.23 MiB -1 -1 0.16 20424 1 0.03 -1 -1 33760 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 26.9 MiB 2.64 761 11366 4697 6285 384 65.2 MiB 0.09 0.00 3.45418 -105.601 -3.45418 3.45418 0.98 0.000486936 0.000443793 0.0353635 0.0322913 42 2829 47 6.95648e+06 202660 744469. 2576.02 2.34 0.153728 0.135319 27202 183097 -1 1995 23 1779 2441 209606 48927 4.45652 4.45652 -143.446 -4.45652 0 0 949917. 3286.91 0.39 0.08 0.18 -1 -1 0.39 0.0265238 0.0235813 79 27 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.54 vpr 65.06 MiB -1 -1 0.16 20348 1 0.03 -1 -1 33748 -1 -1 21 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 26.5 MiB 1.16 694 11118 4579 5810 729 65.1 MiB 0.08 0.00 3.53128 -96.647 -3.53128 3.53128 0.97 0.00042014 0.000384612 0.0302069 0.0275954 46 1842 31 6.95648e+06 303989 828058. 2865.25 2.96 0.155148 0.136237 28066 200906 -1 1435 20 988 1462 104015 24766 3.37896 3.37896 -108.009 -3.37896 0 0 1.01997e+06 3529.29 0.41 0.05 0.20 -1 -1 0.41 0.0219165 0.0195128 71 49 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 10.76 vpr 65.48 MiB -1 -1 0.16 20420 1 0.03 -1 -1 33392 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67052 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 26.9 MiB 1.55 821 13026 5576 6908 542 65.5 MiB 0.10 0.00 4.0079 -127.527 -4.0079 4.0079 0.96 0.000460343 0.000419488 0.0435994 0.0397822 52 2567 31 6.95648e+06 202660 926341. 3205.33 5.71 0.255952 0.223041 29218 227130 -1 1865 23 1915 2788 222808 52456 4.5838 4.5838 -153.965 -4.5838 0 0 1.14541e+06 3963.36 0.47 0.09 0.21 -1 -1 0.47 0.0304236 0.0270502 89 62 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 12.55 vpr 64.89 MiB -1 -1 0.14 20560 1 0.03 -1 -1 33720 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.4 MiB 1.60 634 12716 5415 6966 335 64.9 MiB 0.08 0.00 3.22974 -79.1074 -3.22974 3.22974 0.99 0.000379117 0.00034646 0.0309805 0.0282252 36 2153 45 6.95648e+06 188184 648988. 2245.63 7.67 0.188902 0.16434 26050 158493 -1 1516 17 877 1371 133057 28077 3.01302 3.01302 -101.961 -3.01302 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0165628 0.0147962 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.69 vpr 65.44 MiB -1 -1 0.17 20404 1 0.03 -1 -1 33612 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 27.0 MiB 1.16 1017 14741 4584 8890 1267 65.4 MiB 0.11 0.00 3.12589 -116.566 -3.12589 3.12589 1.00 0.000554117 0.0005055 0.0449038 0.0409861 36 2851 49 6.95648e+06 361892 648988. 2245.63 4.06 0.175424 0.154086 26050 158493 -1 2272 29 2053 2636 327495 94284 4.05746 4.05746 -153.482 -4.05746 0 0 828058. 2865.25 0.32 0.13 0.15 -1 -1 0.32 0.0378815 0.0335109 81 87 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.92 vpr 65.46 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33696 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.9 MiB 3.29 642 12009 5101 6643 265 65.5 MiB 0.09 0.00 2.45985 -92.7114 -2.45985 2.45985 1.01 0.000530992 0.000483956 0.0437557 0.0400309 44 2057 35 6.95648e+06 144757 787024. 2723.27 3.09 0.200292 0.177772 27778 195446 -1 1542 23 1566 2199 236252 51578 3.24392 3.24392 -130.987 -3.24392 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.0302702 0.0268779 61 93 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 6.97 vpr 65.12 MiB -1 -1 0.16 20680 1 0.03 -1 -1 33704 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 26.7 MiB 1.15 712 11615 3691 5750 2174 65.1 MiB 0.09 0.00 3.41878 -102.947 -3.41878 3.41878 0.99 0.000514504 0.000468989 0.0346237 0.0316218 42 2664 42 6.95648e+06 318465 744469. 2576.02 2.32 0.157441 0.13836 27202 183097 -1 1775 34 1561 2443 316202 132440 3.73251 3.73251 -121.5 -3.73251 0 0 949917. 3286.91 0.37 0.13 0.18 -1 -1 0.37 0.0357593 0.0313714 75 57 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.59 vpr 65.69 MiB -1 -1 0.17 20544 1 0.03 -1 -1 33832 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67268 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 27.1 MiB 1.78 1143 13937 4789 6448 2700 65.7 MiB 0.12 0.00 5.15637 -149.807 -5.15637 5.15637 1.00 0.000569979 0.000519626 0.0502598 0.0460146 46 3019 23 6.95648e+06 217135 828058. 2865.25 3.27 0.205486 0.182969 28066 200906 -1 2475 22 1853 2595 228090 45823 4.87075 4.87075 -166.899 -4.87075 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.029813 0.0267458 95 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 8.65 vpr 64.73 MiB -1 -1 0.15 20060 1 0.03 -1 -1 33756 -1 -1 11 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 26.2 MiB 2.77 518 11321 4853 6101 367 64.7 MiB 0.07 0.00 2.18845 -77.0562 -2.18845 2.18845 0.99 0.000373323 0.000340251 0.0287354 0.0262903 36 1812 37 6.95648e+06 159232 648988. 2245.63 2.61 0.126581 0.110897 26050 158493 -1 1405 21 958 1215 153083 41191 2.45253 2.45253 -96.9301 -2.45253 0 0 828058. 2865.25 0.33 0.06 0.16 -1 -1 0.33 0.017805 0.0157396 52 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 9.56 vpr 64.84 MiB -1 -1 0.14 20444 1 0.03 -1 -1 34048 -1 -1 11 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 26.4 MiB 1.64 510 9041 3080 4595 1366 64.8 MiB 0.06 0.00 3.12499 -92.239 -3.12499 3.12499 0.98 0.000433046 0.000393928 0.0277709 0.0253618 40 1406 36 6.95648e+06 159232 706193. 2443.58 4.59 0.193319 0.168015 26914 176310 -1 1233 20 1058 1564 155400 35600 3.27642 3.27642 -113.807 -3.27642 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0198974 0.0176419 54 29 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 7.82 vpr 65.09 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33872 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 26.6 MiB 0.52 549 8754 2635 4376 1743 65.1 MiB 0.06 0.00 2.6818 -88.2907 -2.6818 2.6818 1.00 0.000454173 0.000414074 0.0268789 0.0245756 56 1443 35 6.95648e+06 144757 973134. 3367.25 3.76 0.160362 0.139904 29794 239141 -1 1061 21 1157 1843 146228 36111 2.97572 2.97572 -104.654 -2.97572 0 0 1.19926e+06 4149.71 0.47 0.06 0.25 -1 -1 0.47 0.0218315 0.0193695 59 31 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 11.69 vpr 64.75 MiB -1 -1 0.14 20404 1 0.03 -1 -1 33732 -1 -1 18 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 26.2 MiB 0.52 446 8449 3541 4299 609 64.8 MiB 0.05 0.00 2.72223 -61.9243 -2.72223 2.72223 1.00 0.000348131 0.000317575 0.020437 0.0186969 38 1458 29 6.95648e+06 260562 678818. 2348.85 7.87 0.188952 0.163204 26626 170182 -1 1086 23 781 1179 96143 23358 2.80732 2.80732 -81.6504 -2.80732 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0180296 0.0159171 53 19 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.41 vpr 65.43 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33808 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 27.0 MiB 1.94 822 10476 4359 5744 373 65.4 MiB 0.09 0.00 3.18195 -104.866 -3.18195 3.18195 1.02 0.000531412 0.000485073 0.0382972 0.03505 46 2780 29 6.95648e+06 173708 828058. 2865.25 4.90 0.259897 0.229159 28066 200906 -1 2150 21 1641 2721 206407 45657 3.92532 3.92532 -132.926 -3.92532 0 0 1.01997e+06 3529.29 0.41 0.08 0.19 -1 -1 0.41 0.0280737 0.0250684 73 69 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.95 vpr 65.60 MiB -1 -1 0.17 20540 1 0.03 -1 -1 33920 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 27.1 MiB 1.13 837 10228 4047 4614 1567 65.6 MiB 0.09 0.00 3.44998 -116.134 -3.44998 3.44998 1.03 0.000571448 0.000520571 0.0370386 0.033828 38 2463 41 6.95648e+06 246087 678818. 2348.85 3.31 0.193989 0.170482 26626 170182 -1 2037 25 1823 2500 236736 48577 3.54832 3.54832 -134.89 -3.54832 0 0 902133. 3121.57 0.35 0.09 0.17 -1 -1 0.35 0.0298683 0.0264577 80 86 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 10.57 vpr 65.35 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33956 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 27.0 MiB 1.86 926 13768 5881 7534 353 65.4 MiB 0.11 0.00 4.0552 -122.973 -4.0552 4.0552 1.01 0.000510421 0.000471413 0.0448876 0.0411077 44 2714 23 6.99608e+06 220735 787024. 2723.27 5.16 0.223288 0.1952 27778 195446 -1 2012 21 1502 2205 165316 34884 3.99661 3.99661 -141.557 -3.99661 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0252902 0.0225084 88 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 12.01 vpr 65.49 MiB -1 -1 0.17 20608 1 0.03 -1 -1 33876 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 27.0 MiB 1.52 903 11909 3621 5904 2384 65.5 MiB 0.09 0.00 4.2193 -125.516 -4.2193 4.2193 1.03 0.000524698 0.000477676 0.0403958 0.0368995 64 2338 38 6.99608e+06 250167 1.08113e+06 3740.92 6.67 0.259458 0.226039 31522 276338 -1 1692 21 1845 2774 199897 46983 4.37654 4.37654 -145.444 -4.37654 0 0 1.36325e+06 4717.13 0.53 0.08 0.29 -1 -1 0.53 0.0278551 0.0249035 99 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 15.42 vpr 64.18 MiB -1 -1 0.15 20100 1 0.03 -1 -1 33412 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65720 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.7 MiB 0.81 810 14188 4692 7635 1861 64.2 MiB 0.10 0.00 2.94444 -91.6196 -2.94444 2.94444 0.97 0.000455137 0.000412499 0.0386034 0.0351392 40 2326 21 6.99608e+06 206020 706193. 2443.58 11.28 0.255159 0.223119 26914 176310 -1 1991 19 1477 2015 173270 38285 3.75196 3.75196 -122.521 -3.75196 0 0 926341. 3205.33 0.36 0.06 0.16 -1 -1 0.36 0.0210908 0.0188163 76 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 10.88 vpr 64.67 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33884 -1 -1 16 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 26.1 MiB 1.39 684 14095 4549 7189 2357 64.7 MiB 0.09 0.00 3.29948 -92.3743 -3.29948 3.29948 0.96 0.00049887 0.000454293 0.0390654 0.0356197 58 1483 23 6.99608e+06 235451 997811. 3452.63 5.94 0.203012 0.177532 30370 251734 -1 1158 20 1224 1970 130405 33608 3.68461 3.68461 -107.779 -3.68461 0 0 1.25153e+06 4330.55 0.51 0.06 0.25 -1 -1 0.51 0.0224165 0.020015 78 25 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 10.12 vpr 65.21 MiB -1 -1 0.16 20156 1 0.03 -1 -1 33560 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 26.9 MiB 2.94 835 11034 4569 6032 433 65.2 MiB 0.09 0.00 3.76679 -115.017 -3.76679 3.76679 1.03 0.000498094 0.000454453 0.035582 0.0325261 44 3461 42 6.99608e+06 206020 787024. 2723.27 3.64 0.174629 0.153537 27778 195446 -1 2229 25 1742 2911 226318 49269 4.53911 4.53911 -148.639 -4.53911 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.0293789 0.0260927 81 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.30 vpr 65.53 MiB -1 -1 0.16 20648 1 0.03 -1 -1 33932 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67100 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 27.0 MiB 3.23 967 13381 3902 7326 2153 65.5 MiB 0.11 0.00 2.79566 -99.1044 -2.79566 2.79566 0.97 0.000544309 0.000494534 0.0411727 0.0375391 44 2698 28 6.99608e+06 250167 787024. 2723.27 2.55 0.177158 0.155879 27778 195446 -1 2059 23 1691 2634 163462 38941 3.86936 3.86936 -128.357 -3.86936 0 0 997811. 3452.63 0.41 0.08 0.19 -1 -1 0.41 0.0289166 0.0258561 97 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 9.37 vpr 64.66 MiB -1 -1 0.16 20364 1 0.03 -1 -1 34116 -1 -1 15 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 26.3 MiB 1.76 558 10614 4418 5600 596 64.7 MiB 0.07 0.00 3.12612 -89.7746 -3.12612 3.12612 0.99 0.000402135 0.000366729 0.0280851 0.0256363 38 1627 24 6.99608e+06 220735 678818. 2348.85 4.29 0.174269 0.150787 26626 170182 -1 1300 18 1041 1552 108721 24591 3.16926 3.16926 -105.024 -3.16926 0 0 902133. 3121.57 0.36 0.05 0.17 -1 -1 0.36 0.0181082 0.0161435 66 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.27 vpr 64.57 MiB -1 -1 0.15 20172 1 0.03 -1 -1 33792 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 26.1 MiB 0.38 650 13153 4892 6011 2250 64.6 MiB 0.09 0.00 2.2514 -72.6922 -2.2514 2.2514 1.01 0.000432229 0.000393793 0.0312617 0.0284804 44 2112 49 6.99608e+06 367892 787024. 2723.27 2.43 0.151485 0.132535 27778 195446 -1 1373 24 1072 1806 114751 29122 3.11687 3.11687 -94.5515 -3.11687 0 0 997811. 3452.63 0.39 0.06 0.19 -1 -1 0.39 0.0227815 0.0201074 69 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.99 vpr 65.32 MiB -1 -1 0.16 20224 1 0.03 -1 -1 33992 -1 -1 14 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66892 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 26.9 MiB 1.02 865 12791 5343 7084 364 65.3 MiB 0.10 0.00 2.71474 -97.6411 -2.71474 2.71474 1.00 0.000466816 0.000427305 0.0388742 0.0355363 44 2603 43 6.99608e+06 206020 787024. 2723.27 2.45 0.151221 0.133316 27778 195446 -1 1736 24 1515 2071 156443 36217 2.94847 2.94847 -117.511 -2.94847 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0258526 0.0229372 87 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 9.16 vpr 65.00 MiB -1 -1 0.16 20344 1 0.03 -1 -1 34012 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 26.5 MiB 0.99 851 11813 4711 6193 909 65.0 MiB 0.09 0.00 3.18112 -111.904 -3.18112 3.18112 0.98 0.000463586 0.000423675 0.0345715 0.0316007 38 2262 35 6.99608e+06 191304 678818. 2348.85 4.81 0.20319 0.176975 26626 170182 -1 1856 24 1515 1907 157595 32296 3.36956 3.36956 -131.146 -3.36956 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0251568 0.0223439 75 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.76 vpr 64.91 MiB -1 -1 0.14 20188 1 0.03 -1 -1 33412 -1 -1 14 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 26.6 MiB 0.81 738 11916 5062 6394 460 64.9 MiB 0.08 0.00 3.19389 -101.59 -3.19389 3.19389 0.94 0.000397457 0.000362882 0.033746 0.0308225 40 2559 33 6.99608e+06 206020 706193. 2443.58 4.70 0.221383 0.193966 26914 176310 -1 1967 24 1748 2369 206274 48321 4.0928 4.0928 -135.781 -4.0928 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0245773 0.0217489 83 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 6.18 vpr 64.89 MiB -1 -1 0.16 20384 1 0.03 -1 -1 33756 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 26.4 MiB 0.76 683 5921 1326 4469 126 64.9 MiB 0.05 0.00 2.73588 -93.9348 -2.73588 2.73588 1.01 0.000420796 0.000383517 0.0175715 0.016117 40 2123 23 6.99608e+06 161872 706193. 2443.58 2.06 0.118973 0.104531 26914 176310 -1 1792 17 1283 1640 170412 36217 3.30957 3.30957 -121.595 -3.30957 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0184616 0.0164517 66 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 9.67 vpr 65.25 MiB -1 -1 0.15 20724 1 0.03 -1 -1 33904 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66812 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 26.9 MiB 0.88 913 14275 6162 7632 481 65.2 MiB 0.10 0.00 3.18112 -107.408 -3.18112 3.18112 0.98 0.000533868 0.000486221 0.0425646 0.0387652 54 2478 30 6.99608e+06 220735 949917. 3286.91 5.28 0.227324 0.199212 29506 232905 -1 1952 18 1485 2145 170547 35998 3.72546 3.72546 -131.51 -3.72546 0 0 1.17392e+06 4061.99 0.46 0.06 0.22 -1 -1 0.46 0.0230638 0.0207281 87 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 9.35 vpr 65.14 MiB -1 -1 0.15 20712 1 0.03 -1 -1 34032 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 26.7 MiB 1.60 938 12331 3531 6401 2399 65.1 MiB 0.10 0.00 3.86117 -115.133 -3.86117 3.86117 1.02 0.000502109 0.000456908 0.0402013 0.0367847 46 2942 30 6.99608e+06 250167 828058. 2865.25 4.20 0.17359 0.152654 28066 200906 -1 2105 21 1963 2678 238048 53704 4.57111 4.57111 -153.344 -4.57111 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0253735 0.0225057 97 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 9.72 vpr 64.44 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33532 -1 -1 13 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 26.1 MiB 3.27 706 9839 3752 4683 1404 64.4 MiB 0.06 0.00 2.5552 -75.9155 -2.5552 2.5552 1.00 0.000383003 0.000348312 0.0258593 0.0236309 36 1994 21 6.99608e+06 191304 648988. 2245.63 3.16 0.120431 0.10567 26050 158493 -1 1666 19 1106 1562 133654 27802 2.98682 2.98682 -97.7534 -2.98682 0 0 828058. 2865.25 0.35 0.06 0.15 -1 -1 0.35 0.0191182 0.0171333 64 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 7.63 vpr 65.00 MiB -1 -1 0.16 20764 1 0.03 -1 -1 34004 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 26.6 MiB 1.47 1214 13840 4053 8825 962 65.0 MiB 0.11 0.00 2.99159 -108.884 -2.99159 2.99159 1.01 0.000518344 0.000473044 0.0455578 0.0415788 40 3188 26 6.99608e+06 235451 706193. 2443.58 2.67 0.174136 0.153119 26914 176310 -1 2848 23 2152 3366 333732 65027 3.64561 3.64561 -142.566 -3.64561 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.0304452 0.0271909 96 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 9.14 vpr 65.03 MiB -1 -1 0.17 20592 1 0.03 -1 -1 33740 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 26.7 MiB 0.81 1018 11571 4165 5957 1449 65.0 MiB 0.09 0.00 3.40815 -112.564 -3.40815 3.40815 0.93 0.00045714 0.000418297 0.0350207 0.0321444 46 2419 29 6.99608e+06 220735 828058. 2865.25 4.95 0.211811 0.185879 28066 200906 -1 1973 22 1544 2046 154634 31956 3.36956 3.36956 -129.035 -3.36956 0 0 1.01997e+06 3529.29 0.41 0.07 0.20 -1 -1 0.41 0.0265818 0.0236646 84 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 17.47 vpr 65.06 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33644 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.6 MiB 0.89 812 13937 4391 7676 1870 65.1 MiB 0.11 0.00 2.51429 -93.5184 -2.51429 2.51429 1.02 0.000474211 0.000431878 0.0424068 0.0387707 48 2071 24 6.99608e+06 220735 865456. 2994.66 12.99 0.304779 0.268362 28354 207349 -1 1615 17 1511 1917 134166 31999 3.08036 3.08036 -116.101 -3.08036 0 0 1.05005e+06 3633.38 0.44 0.06 0.20 -1 -1 0.44 0.0229613 0.020645 89 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.91 vpr 64.39 MiB -1 -1 0.15 20072 1 0.03 -1 -1 33784 -1 -1 10 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65932 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 25.9 MiB 2.02 456 9012 3589 4747 676 64.4 MiB 0.05 0.00 1.95956 -70.1975 -1.95956 1.95956 1.03 0.00035905 0.000327616 0.0222837 0.0203951 38 1315 27 6.99608e+06 147157 678818. 2348.85 2.55 0.111061 0.0970922 26626 170182 -1 908 26 600 651 77925 33450 1.96713 1.96713 -82.7722 -1.96713 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0197506 0.0173879 52 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 10.38 vpr 64.84 MiB -1 -1 0.15 20260 1 0.03 -1 -1 34044 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 26.3 MiB 2.38 812 5196 1080 3811 305 64.8 MiB 0.05 0.00 3.01177 -99.2942 -3.01177 3.01177 1.00 0.000456511 0.000416964 0.0169905 0.0156086 38 2181 25 6.99608e+06 191304 678818. 2348.85 4.64 0.184412 0.15957 26626 170182 -1 1877 22 1341 1947 167406 35702 3.70761 3.70761 -132.572 -3.70761 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0237024 0.0210246 72 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 10.36 vpr 65.02 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33860 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 26.6 MiB 1.54 780 15822 6491 7943 1388 65.0 MiB 0.12 0.00 3.25624 -105.717 -3.25624 3.25624 0.99 0.000498517 0.00045357 0.0451702 0.0410497 46 2521 23 6.99608e+06 294314 828058. 2865.25 5.34 0.234583 0.205043 28066 200906 -1 1857 21 1644 2406 194578 42361 4.0047 4.0047 -140.232 -4.0047 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0247663 0.0219419 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 10.97 vpr 65.49 MiB -1 -1 0.17 20684 1 0.03 -1 -1 33668 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 26.9 MiB 2.41 1194 12636 4193 7521 922 65.5 MiB 0.11 0.00 3.72134 -118.635 -3.72134 3.72134 0.96 0.000522885 0.000469181 0.0401648 0.0366097 44 3055 26 6.99608e+06 235451 787024. 2723.27 5.10 0.234322 0.205647 27778 195446 -1 2477 22 1855 2816 196338 40978 3.93181 3.93181 -137.779 -3.93181 0 0 997811. 3452.63 0.40 0.08 0.17 -1 -1 0.40 0.0267952 0.0238122 100 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.14 vpr 64.32 MiB -1 -1 0.14 19984 1 0.03 -1 -1 34208 -1 -1 13 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65860 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 25.9 MiB 2.23 394 9269 3865 4810 594 64.3 MiB 0.05 0.00 2.2286 -62.1105 -2.2286 2.2286 0.94 0.00029512 0.000269848 0.0199442 0.0182792 38 1182 39 6.99608e+06 191304 678818. 2348.85 1.82 0.0983212 0.0859835 26626 170182 -1 815 19 641 724 47181 12647 2.38147 2.38147 -72.9579 -2.38147 0 0 902133. 3121.57 0.34 0.03 0.15 -1 -1 0.34 0.013571 0.0120784 53 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 9.77 vpr 65.02 MiB -1 -1 0.15 20388 1 0.03 -1 -1 33900 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 26.5 MiB 1.11 699 9881 4045 5441 395 65.0 MiB 0.07 0.00 3.605 -91.5023 -3.605 3.605 1.02 0.000430255 0.000391623 0.0282673 0.0258455 44 2039 26 6.99608e+06 220735 787024. 2723.27 5.11 0.237718 0.206172 27778 195446 -1 1581 47 2206 3830 254668 56990 3.93806 3.93806 -114.914 -3.93806 0 0 997811. 3452.63 0.42 0.11 0.19 -1 -1 0.42 0.0399723 0.0349728 66 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.02 vpr 64.30 MiB -1 -1 0.15 19976 1 0.03 -1 -1 33356 -1 -1 8 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65840 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 26.0 MiB 0.23 380 9757 4064 5450 243 64.3 MiB 0.05 0.00 1.68521 -55.2113 -1.68521 1.68521 0.98 0.00028852 0.000262023 0.0196196 0.0178757 38 1109 37 6.99608e+06 117725 678818. 2348.85 1.59 0.0916509 0.0799079 26626 170182 -1 837 17 591 663 48460 12639 1.92302 1.92302 -69.0532 -1.92302 0 0 902133. 3121.57 0.34 0.03 0.15 -1 -1 0.34 0.0121979 0.0108378 42 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.29 vpr 65.04 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33736 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66604 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 26.5 MiB 1.33 697 13192 4731 6534 1927 65.0 MiB 0.10 0.00 3.59843 -97.5949 -3.59843 3.59843 1.01 0.000449488 0.000409429 0.0389645 0.0356124 44 2518 38 6.99608e+06 206020 787024. 2723.27 2.47 0.167534 0.14773 27778 195446 -1 1563 20 1138 1696 108186 25881 3.72457 3.72457 -117.348 -3.72457 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0224846 0.02002 73 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 9.23 vpr 64.79 MiB -1 -1 0.16 20240 1 0.03 -1 -1 33820 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 26.3 MiB 0.56 685 13105 4801 6110 2194 64.8 MiB 0.09 0.00 2.46605 -79.661 -2.46605 2.46605 1.02 0.000440859 0.000400444 0.0344281 0.0314083 46 1966 49 6.99608e+06 309029 828058. 2865.25 5.15 0.210655 0.183967 28066 200906 -1 1483 21 1247 2020 130335 31733 3.18622 3.18622 -103.851 -3.18622 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0231645 0.0206474 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 20.28 vpr 65.22 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33976 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 26.9 MiB 1.70 847 11571 3857 5790 1924 65.2 MiB 0.09 0.00 3.45778 -102.251 -3.45778 3.45778 0.99 0.000503238 0.000452921 0.0367223 0.0335328 48 2945 31 6.99608e+06 220735 865456. 2994.66 15.05 0.301084 0.26176 28354 207349 -1 2181 21 1578 2443 200330 45519 3.75152 3.75152 -131.436 -3.75152 0 0 1.05005e+06 3633.38 0.41 0.08 0.21 -1 -1 0.41 0.0240381 0.0212958 87 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 9.32 vpr 64.81 MiB -1 -1 0.14 20264 1 0.03 -1 -1 33752 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66368 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 26.4 MiB 2.38 686 11756 4961 6546 249 64.8 MiB 0.08 0.00 2.63455 -87.3526 -2.63455 2.63455 0.97 0.000414191 0.000376185 0.0318636 0.0289963 38 2350 49 6.99608e+06 176588 678818. 2348.85 3.66 0.159634 0.140158 26626 170182 -1 1672 20 1209 1663 137000 30949 2.93562 2.93562 -114.413 -2.93562 0 0 902133. 3121.57 0.36 0.06 0.15 -1 -1 0.36 0.0210048 0.0186512 69 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 8.82 vpr 64.82 MiB -1 -1 0.14 20264 1 0.03 -1 -1 33576 -1 -1 14 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66376 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 26.4 MiB 1.63 648 9196 3790 4996 410 64.8 MiB 0.07 0.00 3.17157 -90.6759 -3.17157 3.17157 1.04 0.000405307 0.000369157 0.0262739 0.0239709 46 2015 28 6.99608e+06 206020 828058. 2865.25 3.71 0.133216 0.116828 28066 200906 -1 1459 22 1183 1859 141456 32975 3.55761 3.55761 -111.823 -3.55761 0 0 1.01997e+06 3529.29 0.41 0.06 0.20 -1 -1 0.41 0.0212138 0.0188468 66 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 16.53 vpr 64.83 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33792 -1 -1 18 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 26.4 MiB 0.88 570 9706 3978 5182 546 64.8 MiB 0.07 0.00 2.61364 -80.359 -2.61364 2.61364 1.03 0.000407861 0.000372584 0.0256053 0.0234306 40 1896 31 6.99608e+06 264882 706193. 2443.58 12.20 0.242058 0.21118 26914 176310 -1 1683 23 1312 2003 197114 45063 3.46211 3.46211 -115.364 -3.46211 0 0 926341. 3205.33 0.38 0.07 0.17 -1 -1 0.38 0.0226499 0.020102 69 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.90 vpr 64.69 MiB -1 -1 0.14 20284 1 0.03 -1 -1 33568 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 26.1 MiB 0.44 583 11389 4822 6277 290 64.7 MiB 0.08 0.00 2.81485 -90.4029 -2.81485 2.81485 1.04 0.000411122 0.000376183 0.0331341 0.0303724 42 2044 30 6.99608e+06 147157 744469. 2576.02 1.97 0.146992 0.129954 27202 183097 -1 1401 20 1069 1498 112797 27170 2.97762 2.97762 -109.085 -2.97762 0 0 949917. 3286.91 0.41 0.06 0.18 -1 -1 0.41 0.0224423 0.0200145 58 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.48 vpr 64.77 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33616 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 26.3 MiB 1.00 817 9196 3779 5223 194 64.8 MiB 0.07 0.00 2.62898 -88.8953 -2.62898 2.62898 0.99 0.000421601 0.000384469 0.0260229 0.0238033 44 2128 20 6.99608e+06 191304 787024. 2723.27 2.03 0.122028 0.106951 27778 195446 -1 1653 21 1069 1495 103827 22484 2.64572 2.64572 -103.052 -2.64572 0 0 997811. 3452.63 0.43 0.06 0.19 -1 -1 0.43 0.0219553 0.0196043 69 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.24 vpr 64.58 MiB -1 -1 0.15 20216 1 0.03 -1 -1 33580 -1 -1 15 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 26.0 MiB 2.72 912 10476 3003 6543 930 64.6 MiB 0.07 0.00 2.43005 -86.9513 -2.43005 2.43005 0.96 0.000408466 0.000374278 0.0299431 0.0274967 36 2470 27 6.99608e+06 220735 648988. 2245.63 3.33 0.14701 0.130045 26050 158493 -1 1958 20 1482 1941 168989 34917 2.59092 2.59092 -103.486 -2.59092 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0211684 0.0188708 77 48 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.06 vpr 65.18 MiB -1 -1 0.16 20564 1 0.03 -1 -1 33736 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 26.7 MiB 1.34 1100 13840 5399 6347 2094 65.2 MiB 0.12 0.00 3.53733 -105.515 -3.53733 3.53733 1.00 0.000534272 0.000487625 0.0458613 0.041928 38 3529 45 6.99608e+06 235451 678818. 2348.85 3.20 0.180403 0.158721 26626 170182 -1 2566 22 1764 2729 215322 45483 4.24607 4.24607 -135.367 -4.24607 0 0 902133. 3121.57 0.38 0.08 0.17 -1 -1 0.38 0.028367 0.0251935 92 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 9.06 vpr 65.44 MiB -1 -1 0.16 20500 1 0.03 -1 -1 33900 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67012 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 26.9 MiB 1.74 1094 12503 4313 6328 1862 65.4 MiB 0.10 0.00 3.55446 -126.064 -3.55446 3.55446 0.99 0.000549809 0.000501976 0.042002 0.0382711 40 3582 46 6.99608e+06 279598 706193. 2443.58 3.77 0.201614 0.177294 26914 176310 -1 2745 25 2745 3789 357223 77363 4.1929 4.1929 -163.537 -4.1929 0 0 926341. 3205.33 0.37 0.12 0.18 -1 -1 0.37 0.0342903 0.0306736 106 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 9.52 vpr 65.00 MiB -1 -1 0.14 20424 1 0.03 -1 -1 33984 -1 -1 11 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 26.5 MiB 1.39 904 12009 5044 6695 270 65.0 MiB 0.08 0.00 2.87547 -97.7608 -2.87547 2.87547 1.01 0.000393177 0.000343913 0.0336673 0.0306858 44 1980 21 6.99608e+06 161872 787024. 2723.27 4.71 0.194051 0.169439 27778 195446 -1 1838 21 1207 1713 163538 31106 3.38016 3.38016 -116.27 -3.38016 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.0209726 0.0185637 66 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.25 vpr 65.35 MiB -1 -1 0.16 20628 1 0.03 -1 -1 33900 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66916 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 26.8 MiB 1.77 1020 15044 6472 8019 553 65.3 MiB 0.12 0.00 2.98339 -102.091 -2.98339 2.98339 1.05 0.00053568 0.000491198 0.0498141 0.045555 46 2697 50 6.99608e+06 250167 828058. 2865.25 2.82 0.20789 0.183465 28066 200906 -1 2014 19 1606 2201 162866 36403 3.51216 3.51216 -127.703 -3.51216 0 0 1.01997e+06 3529.29 0.42 0.07 0.20 -1 -1 0.42 0.0247329 0.0221161 99 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 11.72 vpr 65.12 MiB -1 -1 0.17 20492 1 0.03 -1 -1 33900 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 26.7 MiB 1.70 1077 10400 3926 4513 1961 65.1 MiB 0.09 0.00 4.14835 -131.391 -4.14835 4.14835 1.01 0.000548694 0.000503678 0.0358705 0.0326985 54 2977 38 6.99608e+06 250167 949917. 3286.91 6.37 0.272612 0.238819 29506 232905 -1 2320 20 2028 2901 241737 51306 4.83 4.83 -164.611 -4.83 0 0 1.17392e+06 4061.99 0.46 0.09 0.24 -1 -1 0.46 0.0268458 0.0238842 104 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 24.51 vpr 65.49 MiB -1 -1 0.18 20576 1 0.03 -1 -1 33960 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67060 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 26.9 MiB 3.46 984 10056 3405 4739 1912 65.5 MiB 0.09 0.00 4.27408 -130.809 -4.27408 4.27408 1.05 0.000551482 0.000499181 0.0344314 0.0314957 48 3112 32 6.99608e+06 264882 865456. 2994.66 17.38 0.309809 0.270761 28354 207349 -1 2342 22 1902 2692 254762 56103 4.7348 4.7348 -162.666 -4.7348 0 0 1.05005e+06 3633.38 0.43 0.09 0.20 -1 -1 0.43 0.0298571 0.0266829 103 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.27 vpr 65.05 MiB -1 -1 0.17 20652 1 0.03 -1 -1 33520 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 26.7 MiB 2.36 908 13599 5758 7311 530 65.1 MiB 0.11 0.00 3.12612 -102.251 -3.12612 3.12612 0.98 0.000493705 0.000450548 0.0454356 0.0414564 48 2879 45 6.99608e+06 235451 865456. 2994.66 3.33 0.190673 0.16792 28354 207349 -1 2143 22 1589 2133 190460 42411 3.32256 3.32256 -124.619 -3.32256 0 0 1.05005e+06 3633.38 0.42 0.08 0.21 -1 -1 0.42 0.0275778 0.0246017 93 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 10.82 vpr 64.97 MiB -1 -1 0.16 20200 1 0.03 -1 -1 33548 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66528 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 26.4 MiB 1.10 743 12528 4878 5586 2064 65.0 MiB 0.09 0.00 3.22248 -90.68 -3.22248 3.22248 1.02 0.000464791 0.000424119 0.0371661 0.0340254 44 2590 32 6.99608e+06 206020 787024. 2723.27 6.17 0.252665 0.222644 27778 195446 -1 1655 22 1234 1768 125372 29296 4.09272 4.09272 -118.443 -4.09272 0 0 997811. 3452.63 0.42 0.06 0.19 -1 -1 0.42 0.0241414 0.0215592 72 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.18 vpr 65.70 MiB -1 -1 0.17 20768 1 0.03 -1 -1 33948 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67276 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 27.4 MiB 1.42 1439 14407 4256 8507 1644 65.7 MiB 0.13 0.00 3.9997 -140.296 -3.9997 3.9997 0.98 0.000571629 0.000517718 0.0505262 0.0459233 44 4003 25 6.99608e+06 309029 787024. 2723.27 3.20 0.209108 0.184439 27778 195446 -1 3219 20 2422 3557 279585 57161 4.55204 4.55204 -167.069 -4.55204 0 0 997811. 3452.63 0.41 0.10 0.18 -1 -1 0.41 0.0309481 0.0277048 129 84 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.43 vpr 64.67 MiB -1 -1 0.15 20580 1 0.03 -1 -1 33528 -1 -1 11 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 26.3 MiB 3.67 635 9064 3193 4575 1296 64.7 MiB 0.06 0.00 2.4909 -82.0802 -2.4909 2.4909 1.03 0.000378872 0.000349005 0.0256771 0.0234948 38 1820 23 6.99608e+06 161872 678818. 2348.85 2.40 0.123421 0.107801 26626 170182 -1 1443 18 1146 1497 97760 22917 2.88637 2.88637 -102.768 -2.88637 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.017775 0.0157574 65 24 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 9.71 vpr 65.10 MiB -1 -1 0.17 20772 1 0.03 -1 -1 33580 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 26.7 MiB 0.74 971 14188 5860 7557 771 65.1 MiB 0.12 0.00 3.70767 -121.086 -3.70767 3.70767 1.00 0.00051005 0.000463762 0.0455303 0.0415889 46 2637 23 6.99608e+06 220735 828058. 2865.25 5.42 0.228389 0.19928 28066 200906 -1 2066 21 1570 2177 165478 34053 4.35731 4.35731 -145.216 -4.35731 0 0 1.01997e+06 3529.29 0.43 0.07 0.19 -1 -1 0.43 0.026078 0.0232739 85 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 10.17 vpr 65.12 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33716 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 26.7 MiB 1.44 1006 11402 4743 6382 277 65.1 MiB 0.10 0.00 3.25125 -106.732 -3.25125 3.25125 1.01 0.000501238 0.000457399 0.0368055 0.0336924 46 2819 28 6.99608e+06 220735 828058. 2865.25 5.21 0.214525 0.18741 28066 200906 -1 2138 20 1374 2111 147125 32557 3.52942 3.52942 -126.408 -3.52942 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0239389 0.0212866 91 50 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 10.11 vpr 64.98 MiB -1 -1 0.15 20388 1 0.03 -1 -1 34028 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 26.4 MiB 0.99 711 9712 3951 5467 294 65.0 MiB 0.07 0.00 3.61243 -99.7162 -3.61243 3.61243 1.00 0.000452928 0.000412141 0.0276923 0.0252691 50 2078 23 6.99608e+06 235451 902133. 3121.57 5.63 0.211572 0.184633 28642 213929 -1 1672 21 1137 2025 143053 32607 3.51821 3.51821 -115.632 -3.51821 0 0 1.08113e+06 3740.92 0.43 0.07 0.22 -1 -1 0.43 0.0232705 0.0207284 68 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 9.87 vpr 65.36 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33684 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66932 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 26.9 MiB 1.45 900 8698 2616 4261 1821 65.4 MiB 0.07 0.00 3.39715 -105.447 -3.39715 3.39715 0.98 0.00051657 0.000469989 0.0283819 0.0259508 40 2323 24 6.99608e+06 220735 706193. 2443.58 4.93 0.23254 0.202518 26914 176310 -1 2133 27 1637 2213 309086 113728 3.71446 3.71446 -130.226 -3.71446 0 0 926341. 3205.33 0.38 0.12 0.18 -1 -1 0.38 0.0321532 0.0284943 90 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 10.60 vpr 65.12 MiB -1 -1 0.16 20724 1 0.03 -1 -1 33976 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 26.7 MiB 1.82 930 14444 6166 7835 443 65.1 MiB 0.12 0.00 3.02259 -101.51 -3.02259 3.02259 1.01 0.000528059 0.000483965 0.0479427 0.0438358 46 3009 25 6.99608e+06 220735 828058. 2865.25 5.18 0.244376 0.215484 28066 200906 -1 2159 20 1581 2293 158315 37027 3.55146 3.55146 -129.828 -3.55146 0 0 1.01997e+06 3529.29 0.43 0.07 0.20 -1 -1 0.43 0.0285715 0.0255918 92 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 11.61 vpr 65.39 MiB -1 -1 0.15 20732 1 0.03 -1 -1 33860 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 26.8 MiB 2.71 1166 14528 6184 7653 691 65.4 MiB 0.12 0.00 2.93047 -104.411 -2.93047 2.93047 0.98 0.000552411 0.000504056 0.0497344 0.0453343 40 3195 26 6.99608e+06 235451 706193. 2443.58 5.37 0.272013 0.238057 26914 176310 -1 2836 23 2146 2831 284204 58259 3.85071 3.85071 -139.052 -3.85071 0 0 926341. 3205.33 0.38 0.11 0.18 -1 -1 0.38 0.0325867 0.029221 101 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.93 vpr 65.02 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33744 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 26.5 MiB 1.04 764 11366 3709 5324 2333 65.0 MiB 0.08 0.00 3.71143 -99.1512 -3.71143 3.71143 1.00 0.00045854 0.000418829 0.0322075 0.0293255 46 2166 31 6.99608e+06 206020 828058. 2865.25 3.47 0.153852 0.135255 28066 200906 -1 1568 20 1082 1610 97458 25360 3.89581 3.89581 -120.894 -3.89581 0 0 1.01997e+06 3529.29 0.41 0.05 0.18 -1 -1 0.41 0.022102 0.0197768 74 21 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.19 vpr 65.10 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33736 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66664 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 26.5 MiB 2.27 771 10835 3829 5240 1766 65.1 MiB 0.09 0.00 3.36978 -103.004 -3.36978 3.36978 0.98 0.000479814 0.00043983 0.035165 0.0321565 44 2692 38 6.99608e+06 191304 787024. 2723.27 2.41 0.160422 0.140406 27778 195446 -1 1899 20 1565 2154 157711 35727 4.14272 4.14272 -131.397 -4.14272 0 0 997811. 3452.63 0.42 0.07 0.19 -1 -1 0.42 0.02382 0.021254 81 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.67 vpr 65.25 MiB -1 -1 0.18 20700 1 0.03 -1 -1 33968 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66816 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 26.8 MiB 1.02 962 10050 3332 4680 2038 65.2 MiB 0.09 0.00 3.56031 -110.868 -3.56031 3.56031 0.99 0.000548158 0.000497241 0.0341307 0.0311798 46 3208 28 6.99608e+06 235451 828058. 2865.25 4.11 0.167607 0.146935 28066 200906 -1 2370 24 2006 3042 237110 51548 4.15072 4.15072 -136.045 -4.15072 0 0 1.01997e+06 3529.29 0.41 0.09 0.20 -1 -1 0.41 0.0306147 0.0272206 99 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.27 vpr 65.40 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33740 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 26.8 MiB 1.09 992 13324 4975 6120 2229 65.4 MiB 0.11 0.00 3.20742 -105.642 -3.20742 3.20742 1.00 0.000536708 0.000489056 0.0456952 0.0415733 54 3241 39 6.99608e+06 235451 949917. 3286.91 3.51 0.23319 0.204294 29506 232905 -1 2360 22 2076 3059 236976 54462 4.01142 4.01142 -137.781 -4.01142 0 0 1.17392e+06 4061.99 0.47 0.09 0.24 -1 -1 0.47 0.0288449 0.0256813 104 74 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 8.19 vpr 64.36 MiB -1 -1 0.15 20152 1 0.03 -1 -1 33704 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 25.8 MiB 0.66 668 9529 3846 4845 838 64.4 MiB 0.07 0.00 2.58978 -80.2469 -2.58978 2.58978 0.99 0.000394001 0.000357937 0.0267923 0.0245045 44 1781 40 6.99608e+06 147157 787024. 2723.27 4.15 0.175221 0.15259 27778 195446 -1 1396 20 924 1199 78636 18158 2.80542 2.80542 -94.866 -2.80542 0 0 997811. 3452.63 0.41 0.05 0.19 -1 -1 0.41 0.019602 0.017461 60 20 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.92 vpr 65.06 MiB -1 -1 0.16 20588 1 0.03 -1 -1 33768 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.6 MiB 0.96 838 11571 4367 5381 1823 65.1 MiB 0.09 0.00 3.31348 -118.994 -3.31348 3.31348 0.94 0.000469478 0.000429037 0.034618 0.0317136 44 2819 30 6.99608e+06 220735 787024. 2723.27 2.56 0.171914 0.152238 27778 195446 -1 2112 23 2115 2813 223537 47773 4.15095 4.15095 -148.411 -4.15095 0 0 997811. 3452.63 0.39 0.08 0.17 -1 -1 0.39 0.027722 0.0246753 93 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 28.63 vpr 65.33 MiB -1 -1 0.16 20520 1 0.03 -1 -1 33876 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.8 MiB 1.20 1085 14700 5740 6772 2188 65.3 MiB 0.14 0.00 3.88084 -123.394 -3.88084 3.88084 1.03 0.000591203 0.000541625 0.0528959 0.0484146 44 3546 40 6.99608e+06 235451 787024. 2723.27 23.83 0.378343 0.333675 27778 195446 -1 2566 23 2094 3117 310146 62484 4.75846 4.75846 -157.21 -4.75846 0 0 997811. 3452.63 0.38 0.11 0.17 -1 -1 0.38 0.0317994 0.0284107 98 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 7.07 vpr 65.24 MiB -1 -1 0.16 20456 1 0.03 -1 -1 33836 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 26.9 MiB 0.70 1033 10557 3204 6861 492 65.2 MiB 0.10 0.00 3.52245 -120.132 -3.52245 3.52245 1.01 0.00049986 0.00045675 0.0339657 0.0311087 40 2646 23 6.99608e+06 220735 706193. 2443.58 2.89 0.155596 0.137013 26914 176310 -1 2402 20 1679 2233 224397 45116 3.46386 3.46386 -140.085 -3.46386 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0258133 0.02312 85 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 10.29 vpr 64.82 MiB -1 -1 0.16 20196 1 0.03 -1 -1 33540 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 26.3 MiB 1.46 636 11830 4920 6431 479 64.8 MiB 0.08 0.00 3.02694 -91.2909 -3.02694 3.02694 1.02 0.000430342 0.000393227 0.0303691 0.0277473 44 2084 28 6.99608e+06 294314 787024. 2723.27 5.36 0.205826 0.17925 27778 195446 -1 1394 19 1067 1605 99937 25235 3.16782 3.16782 -110.356 -3.16782 0 0 997811. 3452.63 0.40 0.05 0.20 -1 -1 0.40 0.0203726 0.0181462 72 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 9.73 vpr 65.79 MiB -1 -1 0.17 20496 1 0.03 -1 -1 33760 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67372 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 27.2 MiB 1.84 1456 15924 5304 8963 1657 65.8 MiB 0.15 0.00 4.89138 -154.94 -4.89138 4.89138 0.98 0.000586135 0.000534275 0.0562447 0.0512622 46 3719 24 6.99608e+06 264882 828058. 2865.25 4.26 0.199248 0.17583 28066 200906 -1 3126 22 2616 3997 321780 62823 5.46029 5.46029 -188.205 -5.46029 0 0 1.01997e+06 3529.29 0.40 0.12 0.20 -1 -1 0.40 0.0358297 0.0322456 116 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 15.82 vpr 65.04 MiB -1 -1 0.16 20188 1 0.03 -1 -1 33568 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 26.7 MiB 0.73 921 13358 5636 7404 318 65.0 MiB 0.11 0.00 3.97864 -121.289 -3.97864 3.97864 1.00 0.000492886 0.000449672 0.0429695 0.0394005 40 2454 28 6.99608e+06 206020 706193. 2443.58 11.60 0.284725 0.249271 26914 176310 -1 2133 23 1719 2328 308067 96763 4.30495 4.30495 -145.106 -4.30495 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0286812 0.0256193 83 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 11.97 vpr 64.69 MiB -1 -1 0.13 20020 1 0.03 -1 -1 33712 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 26.2 MiB 0.24 492 9531 2918 4851 1762 64.7 MiB 0.06 0.00 2.5282 -75.3477 -2.5282 2.5282 0.99 0.000344406 0.000313731 0.0219087 0.0199323 50 1177 40 6.99608e+06 191304 902133. 3121.57 8.41 0.214927 0.186964 28642 213929 -1 927 19 795 1242 81579 21513 2.92367 2.92367 -88.1492 -2.92367 0 0 1.08113e+06 3740.92 0.43 0.04 0.19 -1 -1 0.43 0.0167418 0.0147705 51 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 11.38 vpr 65.16 MiB -1 -1 0.17 20692 1 0.03 -1 -1 33468 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66724 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 26.8 MiB 1.52 1027 15904 6979 8337 588 65.2 MiB 0.13 0.00 4.00152 -109.799 -4.00152 4.00152 1.04 0.000526262 0.000481437 0.0509776 0.0466249 50 2697 42 6.99608e+06 235451 902133. 3121.57 6.17 0.299617 0.26447 28642 213929 -1 2358 20 1474 2485 253983 53626 4.52586 4.52586 -140.449 -4.52586 0 0 1.08113e+06 3740.92 0.45 0.09 0.21 -1 -1 0.45 0.0290194 0.0260981 85 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 8.69 vpr 64.54 MiB -1 -1 0.14 20264 1 0.03 -1 -1 33800 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 26.0 MiB 1.04 515 9872 3511 4486 1875 64.5 MiB 0.07 0.00 2.4469 -79.9782 -2.4469 2.4469 1.02 0.000384991 0.00035323 0.025869 0.0237116 46 1392 25 6.99608e+06 206020 828058. 2865.25 4.23 0.166174 0.144675 28066 200906 -1 1250 22 1114 1639 94654 24583 2.84237 2.84237 -103.512 -2.84237 0 0 1.01997e+06 3529.29 0.40 0.05 0.20 -1 -1 0.40 0.0202761 0.018036 57 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 17.19 vpr 64.96 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33704 -1 -1 13 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 26.5 MiB 0.69 667 9397 3887 5119 391 65.0 MiB 0.07 0.00 2.90847 -91.7989 -2.90847 2.90847 0.99 0.000433508 0.000396782 0.0275446 0.0251664 40 2374 43 6.99608e+06 191304 706193. 2443.58 13.13 0.268786 0.233714 26914 176310 -1 1848 24 1727 2294 242478 58728 3.21352 3.21352 -114.489 -3.21352 0 0 926341. 3205.33 0.37 0.09 0.18 -1 -1 0.37 0.0250062 0.0222037 69 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.95 vpr 65.08 MiB -1 -1 0.17 20568 1 0.03 -1 -1 33732 -1 -1 18 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1150 11233 4622 6106 505 65.1 MiB 0.10 0.00 3.48226 -111.346 -3.48226 3.48226 1.01 0.000520528 0.000470213 0.0365651 0.033447 40 3314 41 6.99608e+06 264882 706193. 2443.58 4.53 0.182063 0.160285 26914 176310 -1 2866 20 1961 2835 312210 61487 3.9766 3.9766 -141.655 -3.9766 0 0 926341. 3205.33 0.37 0.10 0.17 -1 -1 0.37 0.026721 0.0239553 97 56 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 18.09 vpr 65.28 MiB -1 -1 0.14 20264 1 0.03 -1 -1 33948 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 26.8 MiB 1.56 1209 12247 4067 6361 1819 65.3 MiB 0.10 0.00 3.50518 -122.328 -3.50518 3.50518 0.94 0.000478046 0.00043797 0.0385426 0.0352899 40 2662 24 6.99608e+06 220735 706193. 2443.58 13.26 0.293137 0.258426 26914 176310 -1 2522 21 1932 2649 231643 46664 4.38971 4.38971 -153.453 -4.38971 0 0 926341. 3205.33 0.35 0.08 0.16 -1 -1 0.35 0.0270006 0.0241142 93 51 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.19 vpr 65.39 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33632 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 26.9 MiB 2.55 1192 14106 4713 7609 1784 65.4 MiB 0.12 0.00 3.67287 -121.273 -3.67287 3.67287 1.01 0.000530226 0.000486051 0.0457776 0.0418776 38 3055 26 6.99608e+06 220735 678818. 2348.85 4.09 0.179488 0.158907 26626 170182 -1 2663 24 2032 2848 246183 48911 4.26925 4.26925 -153.766 -4.26925 0 0 902133. 3121.57 0.36 0.09 0.16 -1 -1 0.36 0.0303777 0.02718 90 48 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 15.05 vpr 64.75 MiB -1 -1 0.15 20164 1 0.03 -1 -1 33760 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66300 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 26.3 MiB 2.30 978 11609 3654 6422 1533 64.7 MiB 0.08 0.00 3.18112 -107.154 -3.18112 3.18112 0.98 0.000428618 0.000391395 0.0329868 0.0302145 36 2565 28 6.99608e+06 161872 648988. 2245.63 9.43 0.209373 0.181975 26050 158493 -1 2113 21 1232 1720 190414 38227 3.44936 3.44936 -124.726 -3.44936 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0223954 0.0199352 67 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 9.48 vpr 65.19 MiB -1 -1 0.16 20100 1 0.03 -1 -1 33812 -1 -1 14 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 26.8 MiB 0.96 841 12302 5190 6760 352 65.2 MiB 0.09 0.00 3.00077 -98.7175 -3.00077 3.00077 0.97 0.000444956 0.000405043 0.0351436 0.0319913 44 2847 31 6.99608e+06 206020 787024. 2723.27 5.14 0.228402 0.198905 27778 195446 -1 1880 23 1668 2373 191911 42525 3.54856 3.54856 -124.518 -3.54856 0 0 997811. 3452.63 0.40 0.08 0.18 -1 -1 0.40 0.0250367 0.0221236 86 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.82 vpr 65.20 MiB -1 -1 0.17 20476 1 0.03 -1 -1 34044 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 26.8 MiB 1.38 913 10231 3162 5342 1727 65.2 MiB 0.08 0.00 2.78804 -88.9625 -2.78804 2.78804 0.99 0.000464093 0.000425123 0.0303658 0.0278139 40 2519 43 6.99608e+06 279598 706193. 2443.58 3.01 0.166995 0.146945 26914 176310 -1 2099 22 1727 2519 255507 54758 3.01722 3.01722 -109.543 -3.01722 0 0 926341. 3205.33 0.36 0.09 0.18 -1 -1 0.36 0.0253224 0.0223641 91 52 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 10.79 vpr 64.79 MiB -1 -1 0.16 20252 1 0.03 -1 -1 34080 -1 -1 17 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 26.3 MiB 0.53 757 13443 5736 7022 685 64.8 MiB 0.09 0.00 3.06285 -88.8658 -3.06285 3.06285 0.97 0.000439926 0.000403686 0.0371636 0.0340206 36 2594 44 6.99608e+06 250167 648988. 2245.63 6.89 0.170847 0.150873 26050 158493 -1 1880 21 1481 2226 219569 45361 3.88312 3.88312 -116.899 -3.88312 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.023131 0.0205351 71 20 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.67 vpr 65.01 MiB -1 -1 0.15 20564 1 0.03 -1 -1 33584 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 26.6 MiB 2.19 788 12465 5261 6765 439 65.0 MiB 0.09 0.00 3.54051 -111.581 -3.54051 3.54051 1.00 0.000486931 0.000445161 0.038597 0.0352732 46 2531 43 6.99608e+06 220735 828058. 2865.25 4.01 0.164754 0.144223 28066 200906 -1 1865 22 1667 2243 171765 38026 3.85425 3.85425 -137.178 -3.85425 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0259829 0.0232232 87 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.97 vpr 65.19 MiB -1 -1 0.16 20220 1 0.03 -1 -1 33800 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 26.8 MiB 0.97 1014 11698 4072 5758 1868 65.2 MiB 0.09 0.00 2.893 -100.015 -2.893 2.893 1.01 0.000475701 0.000433626 0.0367919 0.0335402 36 3637 49 6.99608e+06 206020 648988. 2245.63 3.56 0.170105 0.149619 26050 158493 -1 2644 23 2153 2989 289047 57285 3.46256 3.46256 -134.808 -3.46256 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0273754 0.0243709 93 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 7.28 vpr 64.87 MiB -1 -1 0.15 20440 1 0.03 -1 -1 34024 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 26.4 MiB 0.42 741 13143 5420 7092 631 64.9 MiB 0.09 0.00 3.86008 -101.496 -3.86008 3.86008 0.99 0.000419463 0.000382916 0.0319228 0.0291055 46 2234 21 6.99608e+06 353176 828058. 2865.25 3.48 0.14574 0.128653 28066 200906 -1 1732 21 1115 1970 163262 37838 3.90317 3.90317 -122.497 -3.90317 0 0 1.01997e+06 3529.29 0.41 0.06 0.18 -1 -1 0.41 0.0217105 0.0192609 74 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 10.09 vpr 65.15 MiB -1 -1 0.16 20536 1 0.03 -1 -1 34092 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66716 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 26.8 MiB 2.32 843 10370 4264 5677 429 65.2 MiB 0.09 0.00 3.51478 -115.311 -3.51478 3.51478 1.04 0.000531438 0.000482695 0.0369924 0.0338946 48 2810 50 6.99608e+06 206020 865456. 2994.66 4.13 0.217618 0.19318 28354 207349 -1 2193 22 1765 2604 203009 48324 4.15642 4.15642 -144.185 -4.15642 0 0 1.05005e+06 3633.38 0.44 0.09 0.20 -1 -1 0.44 0.0297731 0.026693 86 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 27.07 vpr 65.29 MiB -1 -1 0.17 20712 1 0.03 -1 -1 33824 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66860 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 26.7 MiB 0.87 1069 10581 3838 5377 1366 65.3 MiB 0.09 0.00 4.133 -132.102 -4.133 4.133 1.00 0.000564538 0.000514068 0.0352275 0.0322025 40 3753 41 6.99608e+06 250167 706193. 2443.58 22.61 0.333876 0.290022 26914 176310 -1 2834 26 2720 3825 637999 156697 5.12561 5.12561 -173.305 -5.12561 0 0 926341. 3205.33 0.37 0.18 0.17 -1 -1 0.37 0.0344615 0.0306725 102 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 10.19 vpr 65.50 MiB -1 -1 0.17 20568 1 0.03 -1 -1 33892 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.9 MiB 0.98 1077 10581 4112 5692 777 65.5 MiB 0.10 0.00 3.45716 -117.362 -3.45716 3.45716 1.01 0.000545761 0.000498516 0.0363698 0.0332301 44 3327 28 6.99608e+06 250167 787024. 2723.27 5.67 0.265448 0.232126 27778 195446 -1 2423 21 2059 2964 231777 48370 4.0225 4.0225 -145.926 -4.0225 0 0 997811. 3452.63 0.39 0.08 0.20 -1 -1 0.39 0.0272529 0.0242392 104 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.94 vpr 64.79 MiB -1 -1 0.16 20332 1 0.03 -1 -1 33656 -1 -1 13 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 26.4 MiB 1.05 721 8607 2864 3900 1843 64.8 MiB 0.06 0.00 3.38615 -98.8809 -3.38615 3.38615 0.99 0.000424686 0.000387413 0.0253018 0.0231543 38 2350 24 6.99608e+06 191304 678818. 2348.85 3.53 0.129979 0.11354 26626 170182 -1 1854 18 1267 1776 140185 31110 3.98306 3.98306 -129.613 -3.98306 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0190566 0.0170268 71 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 19.62 vpr 65.64 MiB -1 -1 0.17 20528 1 0.03 -1 -1 33764 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67216 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 26.9 MiB 1.10 905 12292 4177 5959 2156 65.6 MiB 0.10 0.00 4.34696 -131.509 -4.34696 4.34696 1.00 0.000515754 0.000470467 0.0410833 0.0374915 40 3345 48 6.99608e+06 264882 706193. 2443.58 14.98 0.329435 0.288019 26914 176310 -1 2603 24 2439 3438 345817 78596 5.27384 5.27384 -174.582 -5.27384 0 0 926341. 3205.33 0.37 0.11 0.18 -1 -1 0.37 0.0318973 0.028604 104 58 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 9.78 vpr 64.91 MiB -1 -1 0.17 20576 1 0.03 -1 -1 33760 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 26.6 MiB 1.26 816 13524 5097 6748 1679 64.9 MiB 0.11 0.00 3.97864 -116.004 -3.97864 3.97864 1.02 0.000511286 0.000466851 0.0438343 0.0401191 42 3046 45 6.99608e+06 206020 744469. 2576.02 5.00 0.251926 0.220027 27202 183097 -1 2152 24 1799 2765 226345 51041 4.16265 4.16265 -144.168 -4.16265 0 0 949917. 3286.91 0.39 0.09 0.18 -1 -1 0.39 0.0280684 0.0248881 82 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 19.55 vpr 65.26 MiB -1 -1 0.15 20560 1 0.03 -1 -1 33984 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 26.8 MiB 1.23 851 10916 3649 5536 1731 65.3 MiB 0.08 0.00 4.26485 -118.03 -4.26485 4.26485 0.95 0.000470613 0.000430933 0.0328516 0.030125 40 2554 48 6.99608e+06 250167 706193. 2443.58 15.05 0.308669 0.270891 26914 176310 -1 2176 25 1657 2407 220411 50512 4.25426 4.25426 -145.301 -4.25426 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0291158 0.0259595 87 43 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.25 vpr 65.63 MiB -1 -1 0.17 20624 1 0.03 -1 -1 33704 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 27.0 MiB 2.31 1005 15212 6051 7763 1398 65.6 MiB 0.13 0.00 3.39158 -108.32 -3.39158 3.39158 0.99 0.000528885 0.000481713 0.0484706 0.0442504 46 2783 24 6.99608e+06 294314 828058. 2865.25 2.38 0.151349 0.13367 28066 200906 -1 2053 20 1929 2719 197285 42034 3.67775 3.67775 -129.3 -3.67775 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.0271255 0.024217 108 78 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 20.71 vpr 65.09 MiB -1 -1 0.16 20620 1 0.03 -1 -1 33712 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 26.6 MiB 1.91 1210 16531 6840 8472 1219 65.1 MiB 0.14 0.00 3.87837 -126.484 -3.87837 3.87837 1.03 0.000532865 0.000488491 0.0534646 0.0489759 40 2957 25 6.99608e+06 250167 706193. 2443.58 15.20 0.310787 0.271996 26914 176310 -1 2700 24 2135 3047 410179 115481 4.42165 4.42165 -158.916 -4.42165 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0309833 0.0276493 95 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 11.64 vpr 65.37 MiB -1 -1 0.18 20480 1 0.03 -1 -1 33900 -1 -1 20 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66940 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 26.8 MiB 2.91 1157 13906 5693 6420 1793 65.4 MiB 0.12 0.00 3.11675 -104.044 -3.11675 3.11675 1.01 0.00051468 0.000471959 0.045416 0.0416059 44 3091 26 6.99608e+06 294314 787024. 2723.27 5.10 0.248247 0.219186 27778 195446 -1 2463 22 1842 2435 194501 40277 3.55746 3.55746 -123.243 -3.55746 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.0310995 0.0278052 109 79 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.18 vpr 64.50 MiB -1 -1 0.15 20248 1 0.03 -1 -1 33860 -1 -1 10 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66052 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 26.0 MiB 1.42 628 9529 3942 5346 241 64.5 MiB 0.07 0.00 2.91658 -86.3379 -2.91658 2.91658 1.00 0.000391512 0.000356693 0.0263503 0.0241452 38 2044 33 6.99608e+06 147157 678818. 2348.85 2.41 0.131838 0.116123 26626 170182 -1 1626 19 968 1495 117989 26335 3.01792 3.01792 -108.904 -3.01792 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0186512 0.0166509 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.75 vpr 65.56 MiB -1 -1 0.17 20448 1 0.03 -1 -1 33972 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.8 MiB 0.77 1015 14956 4846 7419 2691 65.6 MiB 0.12 0.00 4.09386 -129.395 -4.09386 4.09386 1.02 0.000550026 0.000499561 0.0474117 0.0432537 46 3188 41 6.99608e+06 250167 828058. 2865.25 5.38 0.197609 0.174048 28066 200906 -1 2289 22 2016 2803 258982 54864 4.64714 4.64714 -160.582 -4.64714 0 0 1.01997e+06 3529.29 0.40 0.09 0.20 -1 -1 0.40 0.0282358 0.0251275 100 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 10.06 vpr 65.61 MiB -1 -1 0.14 20408 1 0.03 -1 -1 33844 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67184 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 27.3 MiB 0.97 1040 11806 4361 5302 2143 65.6 MiB 0.10 0.00 4.125 -138.924 -4.125 4.125 0.99 0.000545042 0.000498518 0.0396479 0.0362802 44 3539 38 6.99608e+06 250167 787024. 2723.27 5.67 0.2703 0.238248 27778 195446 -1 2588 18 2364 3321 261631 55374 5.18654 5.18654 -182.073 -5.18654 0 0 997811. 3452.63 0.39 0.09 0.17 -1 -1 0.39 0.0282628 0.0255594 109 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 8.85 vpr 64.89 MiB -1 -1 0.15 20244 1 0.03 -1 -1 33940 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.13 748 9713 2664 5973 1076 64.9 MiB 0.09 0.00 3.15927 -95.7814 -3.15927 3.15927 1.05 0.000418515 0.0003831 0.0284315 0.0260495 36 2400 37 6.99608e+06 161872 648988. 2245.63 4.31 0.144709 0.127043 26050 158493 -1 1823 20 1271 1628 132010 27711 3.23041 3.23041 -116.652 -3.23041 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0202966 0.0180802 69 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 6.37 vpr 64.58 MiB -1 -1 0.15 20120 1 0.03 -1 -1 33908 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 26.1 MiB 0.57 468 10156 3469 4653 2034 64.6 MiB 0.07 0.00 2.91353 -84.1354 -2.91353 2.91353 1.01 0.000386839 0.00035202 0.0270031 0.0246897 44 1886 41 6.99608e+06 191304 787024. 2723.27 2.32 0.128625 0.112965 27778 195446 -1 1353 26 1227 1811 124789 31397 3.21527 3.21527 -105.863 -3.21527 0 0 997811. 3452.63 0.43 0.06 0.20 -1 -1 0.43 0.0227344 0.0200547 56 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.77 vpr 65.09 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33500 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 26.7 MiB 0.94 804 12923 3877 6748 2298 65.1 MiB 0.11 0.00 3.83011 -121.062 -3.83011 3.83011 1.03 0.000534467 0.000482748 0.0435785 0.0399329 44 3138 48 6.99608e+06 220735 787024. 2723.27 3.15 0.183125 0.162779 27778 195446 -1 1937 20 1635 2181 170809 37303 3.97855 3.97855 -142.426 -3.97855 0 0 997811. 3452.63 0.44 0.08 0.20 -1 -1 0.44 0.027291 0.0245145 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 20.95 vpr 65.23 MiB -1 -1 0.14 20672 1 0.03 -1 -1 33940 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66800 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 26.8 MiB 1.90 898 12247 5117 6687 443 65.2 MiB 0.10 0.00 3.76217 -112.114 -3.76217 3.76217 1.00 0.000471647 0.000430653 0.0394999 0.0359764 40 2933 41 6.99608e+06 220735 706193. 2443.58 15.63 0.314201 0.27455 26914 176310 -1 2315 25 1806 2453 245921 56221 4.17995 4.17995 -148.756 -4.17995 0 0 926341. 3205.33 0.37 0.09 0.16 -1 -1 0.37 0.0294536 0.0261443 95 53 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 16.79 vpr 65.10 MiB -1 -1 0.15 20628 1 0.03 -1 -1 33628 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.7 MiB 0.47 909 15656 5573 7939 2144 65.1 MiB 0.12 0.00 3.77681 -110.691 -3.77681 3.77681 1.01 0.000516715 0.000455961 0.0494505 0.0451469 48 2471 37 6.99608e+06 250167 865456. 2994.66 12.72 0.342526 0.29895 28354 207349 -1 1893 23 1618 2876 204095 48408 4.30635 4.30635 -140.133 -4.30635 0 0 1.05005e+06 3633.38 0.43 0.08 0.20 -1 -1 0.43 0.0281486 0.0250339 83 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 16.99 vpr 65.21 MiB -1 -1 0.17 20204 1 0.03 -1 -1 33816 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 26.8 MiB 1.26 841 8710 2966 4267 1477 65.2 MiB 0.07 0.00 3.00069 -86.6521 -3.00069 3.00069 1.02 0.00048171 0.000438259 0.0270819 0.024762 38 2864 46 6.99608e+06 235451 678818. 2348.85 12.30 0.247368 0.214565 26626 170182 -1 2148 21 1646 2395 193437 43125 3.74271 3.74271 -118.314 -3.74271 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.0256611 0.0229863 86 47 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 8.90 vpr 64.77 MiB -1 -1 0.15 20144 1 0.03 -1 -1 34164 -1 -1 15 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 26.4 MiB 1.12 515 9839 4186 5007 646 64.8 MiB 0.07 0.00 2.96122 -84.6064 -2.96122 2.96122 1.01 0.000409751 0.000373712 0.0275759 0.0252753 40 1576 27 6.99608e+06 220735 706193. 2443.58 4.41 0.166898 0.145405 26914 176310 -1 1269 19 958 1397 112507 27740 3.46242 3.46242 -109.938 -3.46242 0 0 926341. 3205.33 0.36 0.05 0.18 -1 -1 0.36 0.0178349 0.0157912 66 26 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 6.93 vpr 65.45 MiB -1 -1 0.16 20652 1 0.03 -1 -1 33752 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 27.1 MiB 0.90 1227 16280 6634 7911 1735 65.4 MiB 0.14 0.00 3.52714 -118.035 -3.52714 3.52714 0.94 0.000565583 0.000516729 0.0555852 0.0508938 50 3672 28 6.99608e+06 264882 902133. 3121.57 2.55 0.185816 0.165058 28642 213929 -1 2889 23 2390 3669 332745 66607 4.31402 4.31402 -148.624 -4.31402 0 0 1.08113e+06 3740.92 0.42 0.11 0.19 -1 -1 0.42 0.0345979 0.0310992 111 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 11.21 vpr 65.39 MiB -1 -1 0.16 20852 1 0.03 -1 -1 33896 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.9 MiB 2.01 1205 14528 5060 7601 1867 65.4 MiB 0.12 0.00 4.34903 -132.473 -4.34903 4.34903 0.98 0.000518972 0.000473253 0.0460394 0.0419988 46 3180 30 6.99608e+06 250167 828058. 2865.25 5.59 0.238285 0.20844 28066 200906 -1 2623 19 2113 2942 270584 52138 4.62714 4.62714 -161.292 -4.62714 0 0 1.01997e+06 3529.29 0.41 0.10 0.20 -1 -1 0.41 0.028437 0.0256009 100 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 9.54 vpr 65.18 MiB -1 -1 0.16 20184 1 0.03 -1 -1 33924 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 26.8 MiB 1.02 925 14686 6380 8000 306 65.2 MiB 0.11 0.00 3.46994 -122.857 -3.46994 3.46994 1.01 0.000481145 0.000438703 0.0448445 0.0409562 46 2455 22 6.99608e+06 206020 828058. 2865.25 4.95 0.204335 0.178796 28066 200906 -1 1884 23 1415 1752 120220 26796 3.99065 3.99065 -147.163 -3.99065 0 0 1.01997e+06 3529.29 0.43 0.07 0.20 -1 -1 0.43 0.0262803 0.023338 91 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 9.63 vpr 65.14 MiB -1 -1 0.16 20540 1 0.03 -1 -1 34068 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 26.8 MiB 0.79 874 12585 5353 6846 386 65.1 MiB 0.10 0.00 3.34348 -104.912 -3.34348 3.34348 1.01 0.000485172 0.000443323 0.0387101 0.0353924 46 2739 37 6.99608e+06 220735 828058. 2865.25 5.32 0.231877 0.203107 28066 200906 -1 1931 16 1223 1715 127603 28175 3.52391 3.52391 -120.89 -3.52391 0 0 1.01997e+06 3529.29 0.43 0.06 0.20 -1 -1 0.43 0.021766 0.0196119 81 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.53 vpr 65.50 MiB -1 -1 0.17 20632 1 0.03 -1 -1 33736 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67068 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 27.0 MiB 1.65 951 12980 5469 6791 720 65.5 MiB 0.11 0.00 3.32588 -102.513 -3.32588 3.32588 1.03 0.000542485 0.000502177 0.0449738 0.0412275 46 2569 33 6.99608e+06 250167 828058. 2865.25 3.26 0.210234 0.187019 28066 200906 -1 1906 21 1850 2635 170122 39519 3.95532 3.95532 -128.142 -3.95532 0 0 1.01997e+06 3529.29 0.42 0.08 0.20 -1 -1 0.42 0.029483 0.0264162 97 46 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.56 vpr 65.24 MiB -1 -1 0.17 20212 1 0.03 -1 -1 33644 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 26.9 MiB 1.69 889 9374 3536 4551 1287 65.2 MiB 0.08 0.00 2.85029 -93.1822 -2.85029 2.85029 0.99 0.00044231 0.000396288 0.028649 0.0261384 40 2908 40 6.99608e+06 250167 706193. 2443.58 3.40 0.156652 0.136812 26914 176310 -1 2244 19 1464 2210 219071 48381 3.52036 3.52036 -120.305 -3.52036 0 0 926341. 3205.33 0.39 0.08 0.18 -1 -1 0.39 0.0247612 0.0221852 88 46 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 11.29 vpr 65.25 MiB -1 -1 0.16 20848 1 0.03 -1 -1 33900 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 26.8 MiB 0.93 888 10868 3889 5035 1944 65.3 MiB 0.09 0.00 3.62631 -117.578 -3.62631 3.62631 1.02 0.000453712 0.000416076 0.0365417 0.0333045 58 2475 33 6.99608e+06 206020 997811. 3452.63 6.58 0.279813 0.243668 30370 251734 -1 1900 23 1814 2685 200644 49940 4.49891 4.49891 -144.681 -4.49891 0 0 1.25153e+06 4330.55 0.52 0.08 0.26 -1 -1 0.52 0.0273625 0.0242812 88 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 11.85 vpr 65.54 MiB -1 -1 0.16 20568 1 0.03 -1 -1 33988 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67108 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 27.0 MiB 2.94 1066 12636 4434 6563 1639 65.5 MiB 0.11 0.00 2.94423 -103.08 -2.94423 2.94423 1.00 0.000534613 0.000485868 0.0422491 0.0386152 44 3230 31 6.99608e+06 235451 787024. 2723.27 5.39 0.28454 0.248115 27778 195446 -1 2003 19 1680 2231 136754 33531 3.46381 3.46381 -132.297 -3.46381 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.025503 0.0228465 103 59 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.98 vpr 64.95 MiB -1 -1 0.15 20656 1 0.03 -1 -1 33700 -1 -1 14 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 26.5 MiB 1.55 650 10977 3650 5831 1496 64.9 MiB 0.08 0.00 3.50045 -98.6512 -3.50045 3.50045 1.04 0.000413821 0.000378609 0.0316148 0.0290012 36 2093 32 6.99608e+06 206020 648988. 2245.63 3.03 0.153598 0.135915 26050 158493 -1 1553 20 1325 1736 134771 30093 3.32456 3.32456 -119.007 -3.32456 0 0 828058. 2865.25 0.35 0.06 0.15 -1 -1 0.35 0.0214188 0.0191716 70 28 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 11.34 vpr 65.12 MiB -1 -1 0.16 20204 1 0.03 -1 -1 33996 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 26.6 MiB 2.38 769 12196 5195 6671 330 65.1 MiB 0.08 0.00 3.25048 -107.19 -3.25048 3.25048 0.98 0.000412853 0.000372833 0.0336141 0.0305272 46 2335 42 6.99608e+06 206020 828058. 2865.25 5.55 0.216426 0.188472 28066 200906 -1 1656 21 1450 1979 151483 35093 3.64195 3.64195 -126.772 -3.64195 0 0 1.01997e+06 3529.29 0.41 0.07 0.18 -1 -1 0.41 0.0230223 0.0204416 79 55 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.49 vpr 65.18 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33476 -1 -1 15 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 26.6 MiB 0.92 831 11366 4736 6148 482 65.2 MiB 0.09 0.00 3.28848 -100.76 -3.28848 3.28848 1.02 0.000474151 0.000432231 0.0358173 0.0327391 46 2519 33 6.99608e+06 220735 828058. 2865.25 3.02 0.166894 0.146884 28066 200906 -1 1959 23 1681 2452 201911 45606 4.09436 4.09436 -136.549 -4.09436 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.0264308 0.0234794 80 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.03 vpr 64.88 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33952 -1 -1 13 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66432 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 26.5 MiB 1.08 654 9064 2965 4896 1203 64.9 MiB 0.07 0.00 3.02297 -87.8415 -3.02297 3.02297 1.00 0.000451006 0.000411606 0.0265904 0.0243684 36 2369 36 6.99608e+06 191304 648988. 2245.63 2.63 0.118673 0.104076 26050 158493 -1 1801 21 1359 1748 160346 34772 3.30876 3.30876 -111.906 -3.30876 0 0 828058. 2865.25 0.35 0.07 0.15 -1 -1 0.35 0.0214555 0.0191793 68 25 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 7.12 vpr 64.74 MiB -1 -1 0.15 20412 1 0.03 -1 -1 33384 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 26.3 MiB 0.93 888 12076 5154 6742 180 64.7 MiB 0.09 0.00 3.53345 -112.872 -3.53345 3.53345 0.99 0.000429252 0.000392138 0.0343228 0.0313941 40 2434 28 6.99608e+06 176588 706193. 2443.58 2.77 0.148369 0.131135 26914 176310 -1 2176 21 1483 1992 265492 51625 3.75346 3.75346 -133.776 -3.75346 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.0228511 0.0204376 73 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.51 vpr 65.45 MiB -1 -1 0.17 20760 1 0.03 -1 -1 33980 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67016 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 26.9 MiB 1.04 1144 10400 2769 6600 1031 65.4 MiB 0.09 0.00 3.73911 -127.496 -3.73911 3.73911 1.02 0.000536982 0.000490926 0.0353885 0.0323882 44 2940 31 6.99608e+06 250167 787024. 2723.27 2.88 0.175025 0.154592 27778 195446 -1 2467 20 1789 2433 196776 41026 4.01765 4.01765 -149.622 -4.01765 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.0279206 0.0250274 101 60 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 8.33 vpr 64.89 MiB -1 -1 0.16 20588 1 0.03 -1 -1 33776 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 26.4 MiB 0.93 837 12556 4321 5836 2399 64.9 MiB 0.09 0.00 3.10427 -99.3374 -3.10427 3.10427 1.02 0.000415609 0.000380619 0.0353255 0.0323278 36 2386 34 6.99608e+06 191304 648988. 2245.63 3.99 0.150296 0.132411 26050 158493 -1 2034 23 1308 1855 188147 35717 3.16341 3.16341 -120.774 -3.16341 0 0 828058. 2865.25 0.34 0.07 0.14 -1 -1 0.34 0.0220759 0.0196067 71 30 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 9.77 vpr 64.81 MiB -1 -1 0.16 20248 1 0.03 -1 -1 33604 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66364 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 26.4 MiB 1.23 1090 10388 4056 5260 1072 64.8 MiB 0.09 0.00 2.87229 -101.232 -2.87229 2.87229 1.00 0.000512376 0.00046211 0.0341386 0.0312048 40 2649 23 6.99608e+06 220735 706193. 2443.58 5.02 0.222959 0.194655 26914 176310 -1 2263 24 1474 2041 314975 118133 3.50546 3.50546 -126.638 -3.50546 0 0 926341. 3205.33 0.36 0.12 0.18 -1 -1 0.36 0.0296714 0.0265113 91 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.58 vpr 65.53 MiB -1 -1 0.16 20924 1 0.03 -1 -1 33768 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67104 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 27.1 MiB 3.01 1308 5303 1208 3731 364 65.5 MiB 0.06 0.00 3.75392 -131.868 -3.75392 3.75392 1.00 0.000598172 0.000546537 0.0197902 0.0181546 50 3212 30 6.99608e+06 294314 902133. 3121.57 5.95 0.23509 0.204799 28642 213929 -1 2745 22 2238 3143 287645 57637 4.43499 4.43499 -165.312 -4.43499 0 0 1.08113e+06 3740.92 0.45 0.11 0.21 -1 -1 0.45 0.0352316 0.0317858 113 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 10.54 vpr 65.15 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33216 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66712 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 26.6 MiB 2.14 764 10156 4157 5666 333 65.1 MiB 0.08 0.00 2.76294 -92.5206 -2.76294 2.76294 1.03 0.000433898 0.000396628 0.030264 0.0275049 54 2026 23 6.99608e+06 176588 949917. 3286.91 4.83 0.183146 0.159324 29506 232905 -1 1690 20 1429 1906 163655 37172 3.26051 3.26051 -116.668 -3.26051 0 0 1.17392e+06 4061.99 0.47 0.06 0.22 -1 -1 0.47 0.0220346 0.0196132 80 54 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.71 vpr 65.04 MiB -1 -1 0.15 20384 1 0.03 -1 -1 33704 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 26.5 MiB 0.81 734 11609 4434 6017 1158 65.0 MiB 0.08 0.00 3.13712 -100.014 -3.13712 3.13712 1.03 0.000416159 0.000361679 0.0329095 0.0298837 46 2169 29 6.99608e+06 161872 828058. 2865.25 2.39 0.124766 0.10965 28066 200906 -1 1502 19 1192 1778 121780 30133 3.30556 3.30556 -118.749 -3.30556 0 0 1.01997e+06 3529.29 0.42 0.06 0.18 -1 -1 0.42 0.0207567 0.0184748 72 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.64 vpr 64.86 MiB -1 -1 0.16 20200 1 0.03 -1 -1 33440 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 26.3 MiB 1.67 730 11200 4643 6059 498 64.9 MiB 0.09 0.00 3.36978 -102.448 -3.36978 3.36978 1.00 0.000482752 0.000441558 0.0349629 0.0319884 48 2215 27 6.99608e+06 206020 865456. 2994.66 2.42 0.15373 0.135298 28354 207349 -1 1871 22 1641 2277 195246 51757 4.14566 4.14566 -135.869 -4.14566 0 0 1.05005e+06 3633.38 0.43 0.08 0.21 -1 -1 0.43 0.0248093 0.0220901 79 27 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 16.82 vpr 65.21 MiB -1 -1 0.16 20308 1 0.03 -1 -1 33664 -1 -1 18 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 26.8 MiB 1.69 818 9712 3543 4628 1541 65.2 MiB 0.08 0.00 2.89747 -87.6659 -2.89747 2.89747 1.04 0.000478671 0.000438609 0.0307755 0.0282263 40 2845 36 6.99608e+06 264882 706193. 2443.58 11.58 0.320887 0.282938 26914 176310 -1 2216 24 1716 2414 239263 56587 4.42221 4.42221 -135.124 -4.42221 0 0 926341. 3205.33 0.39 0.09 0.17 -1 -1 0.39 0.0297865 0.0266188 88 49 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 9.97 vpr 65.37 MiB -1 -1 0.18 20384 1 0.03 -1 -1 33608 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66936 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 26.8 MiB 1.70 1179 12506 4345 6140 2021 65.4 MiB 0.11 0.00 4.35209 -140.414 -4.35209 4.35209 1.00 0.000541561 0.000494345 0.0412931 0.0376704 38 4395 50 6.99608e+06 250167 678818. 2348.85 4.77 0.176176 0.1545 26626 170182 -1 2996 24 2517 3737 327811 67021 5.6598 5.6598 -192.378 -5.6598 0 0 902133. 3121.57 0.34 0.11 0.17 -1 -1 0.34 0.0308349 0.027299 105 62 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 7.67 vpr 64.55 MiB -1 -1 0.13 20132 1 0.03 -1 -1 33688 -1 -1 13 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 26.1 MiB 0.92 515 10796 4505 5832 459 64.6 MiB 0.07 0.00 2.70223 -72.5255 -2.70223 2.70223 0.99 0.000340655 0.000308891 0.0255376 0.0232434 38 2055 39 6.99608e+06 191304 678818. 2348.85 3.53 0.129703 0.113306 26626 170182 -1 1334 20 1083 1723 127321 30105 2.79127 2.79127 -98.1378 -2.79127 0 0 902133. 3121.57 0.35 0.05 0.15 -1 -1 0.35 0.0171647 0.0151533 54 -1 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 23.88 vpr 65.61 MiB -1 -1 0.17 20408 1 0.03 -1 -1 33780 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 27.2 MiB 3.17 1193 14907 5421 6863 2623 65.6 MiB 0.13 0.00 3.87123 -134.568 -3.87123 3.87123 0.98 0.000605356 0.00055167 0.049104 0.0447762 40 3912 36 6.99608e+06 294314 706193. 2443.58 17.17 0.345201 0.30172 26914 176310 -1 3107 21 2588 3298 368878 75478 5.7952 5.7952 -192.878 -5.7952 0 0 926341. 3205.33 0.36 0.12 0.18 -1 -1 0.36 0.0312545 0.0280483 116 87 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.20 vpr 65.50 MiB -1 -1 0.16 20412 1 0.03 -1 -1 33680 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.9 MiB 0.98 1232 14184 4360 8265 1559 65.5 MiB 0.11 0.00 3.58352 -134.543 -3.58352 3.58352 0.97 0.000526383 0.000480928 0.0454992 0.041494 44 3325 39 6.99608e+06 235451 787024. 2723.27 2.67 0.156347 0.137362 27778 195446 -1 2671 23 2829 3575 322537 62397 4.45595 4.45595 -169.397 -4.45595 0 0 997811. 3452.63 0.43 0.11 0.19 -1 -1 0.43 0.0312159 0.027966 110 93 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 10.51 vpr 65.36 MiB -1 -1 0.16 20732 1 0.03 -1 -1 33876 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 26.9 MiB 1.57 918 10557 4140 5242 1175 65.4 MiB 0.09 0.00 3.04477 -99.9251 -3.04477 3.04477 1.00 0.000524466 0.000475745 0.0353961 0.0323522 44 2856 37 6.99608e+06 220735 787024. 2723.27 5.40 0.262304 0.229448 27778 195446 -1 2061 21 1566 2113 216603 60774 3.22121 3.22121 -119.163 -3.22121 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0267245 0.023749 94 57 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 27.37 vpr 65.39 MiB -1 -1 0.17 20396 1 0.03 -1 -1 33768 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 26.8 MiB 1.06 1051 14444 6185 7899 360 65.4 MiB 0.13 0.00 4.77898 -139.772 -4.77898 4.77898 1.03 0.000546178 0.000495383 0.0521844 0.0477568 44 3417 38 6.99608e+06 220735 787024. 2723.27 22.66 0.357072 0.313316 27778 195446 -1 2542 20 2171 3325 276687 58025 4.88021 4.88021 -161.079 -4.88021 0 0 997811. 3452.63 0.41 0.10 0.19 -1 -1 0.41 0.0299311 0.0268854 98 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.39 vpr 64.70 MiB -1 -1 0.15 20560 1 0.03 -1 -1 33860 -1 -1 12 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 26.2 MiB 0.74 521 10924 4716 5844 364 64.7 MiB 0.07 0.00 2.28455 -80.8169 -2.28455 2.28455 1.01 0.000377776 0.000347487 0.0269614 0.0247008 36 1638 38 6.99608e+06 176588 648988. 2245.63 2.35 0.124407 0.108697 26050 158493 -1 1382 18 827 1037 104817 22915 2.32012 2.32012 -95.5991 -2.32012 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0160314 0.0142525 53 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 9.36 vpr 65.04 MiB -1 -1 0.16 20156 1 0.03 -1 -1 33860 -1 -1 14 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 26.5 MiB 3.98 573 11916 4017 5855 2044 65.0 MiB 0.08 0.00 3.02532 -92.758 -3.02532 3.02532 1.02 0.000474443 0.000437083 0.0353227 0.0323734 40 1499 23 6.99608e+06 206020 706193. 2443.58 1.94 0.143383 0.126337 26914 176310 -1 1357 23 1267 1848 134719 34200 3.58217 3.58217 -115.139 -3.58217 0 0 926341. 3205.33 0.37 0.07 0.17 -1 -1 0.37 0.0237939 0.0211078 68 29 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.51 vpr 65.04 MiB -1 -1 0.13 20276 1 0.03 -1 -1 33876 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 26.5 MiB 0.60 833 11631 4811 6474 346 65.0 MiB 0.08 0.00 3.05994 -98.063 -3.05994 3.05994 0.97 0.000429996 0.000392458 0.030629 0.0278576 40 2554 31 6.99608e+06 250167 706193. 2443.58 3.57 0.149155 0.130853 26914 176310 -1 2249 25 1745 2707 365040 107327 3.53572 3.53572 -132.084 -3.53572 0 0 926341. 3205.33 0.37 0.12 0.16 -1 -1 0.37 0.0263896 0.0234496 78 31 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 7.51 vpr 64.58 MiB -1 -1 0.14 20280 1 0.03 -1 -1 33668 -1 -1 16 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 26.0 MiB 1.17 493 7825 3175 3963 687 64.6 MiB 0.05 0.00 2.77723 -63.8343 -2.77723 2.77723 1.00 0.000360202 0.000329631 0.0195891 0.0179562 38 1724 44 6.99608e+06 235451 678818. 2348.85 3.06 0.115698 0.100464 26626 170182 -1 1187 19 833 1136 80027 19601 2.82067 2.82067 -79.8288 -2.82067 0 0 902133. 3121.57 0.36 0.04 0.17 -1 -1 0.36 0.0157405 0.0139418 59 19 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 12.66 vpr 65.54 MiB -1 -1 0.16 20364 1 0.03 -1 -1 33980 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67108 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.9 MiB 3.37 1233 8306 3267 4753 286 65.5 MiB 0.08 0.00 3.12752 -109.156 -3.12752 3.12752 0.97 0.000544857 0.000493967 0.0282546 0.0257323 44 3170 26 6.99608e+06 250167 787024. 2723.27 5.82 0.253032 0.220717 27778 195446 -1 2525 24 2055 3060 220783 45534 3.61461 3.61461 -129.736 -3.61461 0 0 997811. 3452.63 0.40 0.09 0.19 -1 -1 0.40 0.031416 0.0279344 103 69 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 9.19 vpr 65.66 MiB -1 -1 0.18 20628 1 0.03 -1 -1 33996 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67240 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 27.1 MiB 2.67 1169 15568 5847 7166 2555 65.7 MiB 0.13 0.00 3.58081 -120.268 -3.58081 3.58081 0.98 0.000549455 0.000500377 0.0517376 0.0472328 46 3331 32 6.99608e+06 279598 828058. 2865.25 2.94 0.199003 0.175065 28066 200906 -1 2352 21 2008 2771 203817 45202 4.45426 4.45426 -156.93 -4.45426 0 0 1.01997e+06 3529.29 0.41 0.08 0.20 -1 -1 0.41 0.0294837 0.0263741 117 86 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_001.v common 8.30 vpr 64.77 MiB -1 -1 0.24 20788 14 0.32 -1 -1 37000 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 26.4 MiB 2.04 1308 12503 3439 7458 1606 64.8 MiB 0.11 0.00 6.81046 -148.448 -6.81046 6.81046 1.01 0.000651357 0.00059094 0.0495219 0.0450818 44 3034 22 6.79088e+06 255968 787024. 2723.27 2.28 0.188059 0.168052 27118 194962 -1 2554 17 1214 3427 181682 40837 6.97496 6.97496 -161.221 -6.97496 0 0 997811. 3452.63 0.42 0.08 0.19 -1 -1 0.42 0.03431 0.0312343 130 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 10.04 vpr 64.93 MiB -1 -1 0.26 20672 14 0.38 -1 -1 36192 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 26.5 MiB 2.80 987 12856 4258 6017 2581 64.9 MiB 0.11 0.00 6.5228 -130.939 -6.5228 6.5228 1.01 0.000628609 0.000550916 0.0505093 0.0457742 38 3179 27 6.79088e+06 255968 678818. 2348.85 3.33 0.209559 0.184351 25966 169698 -1 2214 18 1210 3270 155011 37882 6.90983 6.90983 -151.006 -6.90983 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.032699 0.0296597 125 181 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 23.74 vpr 64.63 MiB -1 -1 0.21 20288 11 0.28 -1 -1 36556 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66180 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 26.2 MiB 3.96 1215 9623 2464 6253 906 64.6 MiB 0.09 0.00 5.81004 -125.511 -5.81004 5.81004 1.00 0.000642485 0.000583783 0.038196 0.0347176 36 3566 42 6.79088e+06 255968 648988. 2245.63 16.04 0.348712 0.305918 25390 158009 -1 2925 20 1456 4577 286310 60723 6.24054 6.24054 -147.989 -6.24054 0 0 828058. 2865.25 0.34 0.11 0.15 -1 -1 0.34 0.0363491 0.0328217 130 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 8.65 vpr 64.64 MiB -1 -1 0.22 20836 12 0.40 -1 -1 36272 -1 -1 24 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 26.3 MiB 1.35 1205 4735 902 3492 341 64.6 MiB 0.05 0.00 6.04387 -121.809 -6.04387 6.04387 1.02 0.000663833 0.000599134 0.021023 0.0192625 38 2992 41 6.79088e+06 323328 678818. 2348.85 3.38 0.22937 0.20346 25966 169698 -1 2467 18 1224 3545 179654 40558 6.36938 6.36938 -138.239 -6.36938 0 0 902133. 3121.57 0.37 0.08 0.16 -1 -1 0.37 0.0345212 0.0312679 136 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 11.36 vpr 65.12 MiB -1 -1 0.23 20772 13 0.33 -1 -1 36580 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 26.6 MiB 2.09 1376 7457 1622 5300 535 65.1 MiB 0.08 0.00 6.88531 -145.593 -6.88531 6.88531 0.97 0.000686706 0.000623295 0.0316366 0.0287917 34 4066 35 6.79088e+06 296384 618332. 2139.56 5.51 0.294265 0.258415 25102 150614 -1 3534 18 1651 4143 273543 61108 7.13591 7.13591 -172.788 -7.13591 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.0363449 0.0330595 152 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 10.15 vpr 65.03 MiB -1 -1 0.24 20892 13 0.31 -1 -1 36768 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 26.6 MiB 1.98 1386 10163 2383 6165 1615 65.0 MiB 0.10 0.00 6.20837 -131.908 -6.20837 6.20837 1.00 0.000673987 0.00060691 0.0424525 0.038489 38 3820 29 6.79088e+06 255968 678818. 2348.85 4.30 0.215525 0.18982 25966 169698 -1 3054 22 1672 5204 288856 61947 6.67037 6.67037 -153.608 -6.67037 0 0 902133. 3121.57 0.37 0.11 0.16 -1 -1 0.37 0.0397155 0.0357835 137 197 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 6.59 vpr 64.36 MiB -1 -1 0.20 20772 12 0.25 -1 -1 36480 -1 -1 21 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 25.9 MiB 1.69 872 7820 1817 5275 728 64.4 MiB 0.07 0.00 5.64903 -104.094 -5.64903 5.64903 1.03 0.000570755 0.000523019 0.028935 0.0264786 30 2303 41 6.79088e+06 282912 556674. 1926.21 1.26 0.143704 0.12778 24526 138013 -1 2062 19 1102 2526 132622 31531 5.78203 5.78203 -120.077 -5.78203 0 0 706193. 2443.58 0.31 0.07 0.13 -1 -1 0.31 0.0300052 0.0270601 106 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 11.27 vpr 64.57 MiB -1 -1 0.19 20492 12 0.22 -1 -1 36604 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 26.1 MiB 3.31 1125 12980 4524 6312 2144 64.6 MiB 0.10 0.00 5.27734 -112.121 -5.27734 5.27734 1.00 0.000498039 0.000452836 0.0409572 0.0370977 44 2692 18 6.79088e+06 229024 787024. 2723.27 4.31 0.22387 0.196517 27118 194962 -1 2228 14 1013 2542 138599 31404 5.73934 5.73934 -125.968 -5.73934 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.0225023 0.0204564 106 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 12.30 vpr 64.27 MiB -1 -1 0.21 20728 12 0.21 -1 -1 36280 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65816 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 25.8 MiB 3.65 1174 6023 1348 4455 220 64.3 MiB 0.06 0.00 5.75058 -120.671 -5.75058 5.75058 1.02 0.000548202 0.000500397 0.0224968 0.0205353 44 2963 27 6.79088e+06 269440 787024. 2723.27 4.92 0.208742 0.18184 27118 194962 -1 2324 16 1097 2880 161346 36081 6.00118 6.00118 -137.422 -6.00118 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0242976 0.0220151 113 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 10.20 vpr 64.62 MiB -1 -1 0.20 20444 13 0.23 -1 -1 36540 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66172 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 26.1 MiB 2.54 1155 8698 2213 5493 992 64.6 MiB 0.08 0.00 6.20493 -139.642 -6.20493 6.20493 0.97 0.000576917 0.000520863 0.0326315 0.0296988 38 3057 21 6.79088e+06 202080 678818. 2348.85 4.06 0.174605 0.153532 25966 169698 -1 2425 16 1031 2516 146874 32481 6.49473 6.49473 -160.278 -6.49473 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.027237 0.0247464 106 155 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 7.72 vpr 64.42 MiB -1 -1 0.21 20492 12 0.23 -1 -1 36392 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 26.0 MiB 2.09 994 11909 3483 6895 1531 64.4 MiB 0.09 0.00 5.77859 -122.735 -5.77859 5.77859 0.99 0.000523807 0.000468249 0.0388676 0.0353041 34 2425 39 6.79088e+06 229024 618332. 2139.56 2.06 0.177018 0.155103 25102 150614 -1 2036 16 824 1985 111477 25584 5.99348 5.99348 -137.806 -5.99348 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0236563 0.0214008 96 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 10.12 vpr 64.54 MiB -1 -1 0.20 20476 12 0.19 -1 -1 36500 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 26.1 MiB 2.83 938 8306 2004 4749 1553 64.5 MiB 0.07 0.00 5.18431 -123.522 -5.18431 5.18431 1.02 0.000552276 0.00049207 0.0299333 0.0271012 38 2758 26 6.79088e+06 229024 678818. 2348.85 3.66 0.190283 0.16867 25966 169698 -1 2047 15 956 2610 139799 32017 5.43491 5.43491 -136.686 -5.43491 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.0256566 0.023291 101 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 12.22 vpr 64.93 MiB -1 -1 0.24 20772 13 0.31 -1 -1 36492 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 26.5 MiB 2.30 1281 8502 2309 5272 921 64.9 MiB 0.08 0.00 6.81035 -142.418 -6.81035 6.81035 0.98 0.000648413 0.000590246 0.0339572 0.0308834 36 3611 44 6.79088e+06 269440 648988. 2245.63 6.17 0.222857 0.196117 25390 158009 -1 3021 18 1347 3463 216991 47000 6.81035 6.81035 -159.491 -6.81035 0 0 828058. 2865.25 0.34 0.09 0.15 -1 -1 0.34 0.0335015 0.0303765 134 188 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 10.92 vpr 64.94 MiB -1 -1 0.22 20856 14 0.39 -1 -1 36440 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 26.4 MiB 2.33 1358 9725 2367 6684 674 64.9 MiB 0.10 0.00 7.18641 -152.563 -7.18641 7.18641 1.00 0.000731323 0.000663889 0.0413588 0.0375856 38 3252 21 6.79088e+06 296384 678818. 2348.85 4.66 0.305363 0.267498 25966 169698 -1 2831 18 1364 3505 173919 40969 7.43701 7.43701 -170.121 -7.43701 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0331948 0.0300123 151 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 9.75 vpr 64.46 MiB -1 -1 0.19 20152 11 0.21 -1 -1 36444 -1 -1 21 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 26.0 MiB 2.91 1008 11474 3962 5684 1828 64.5 MiB 0.09 0.00 5.53913 -115.559 -5.53913 5.53913 1.03 0.000532006 0.000484736 0.0382969 0.0349828 34 3098 49 6.79088e+06 282912 618332. 2139.56 3.21 0.190873 0.16968 25102 150614 -1 2418 20 1167 2819 173944 39806 6.04033 6.04033 -137.111 -6.04033 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0302359 0.0272862 106 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 8.47 vpr 65.06 MiB -1 -1 0.24 21060 12 0.35 -1 -1 36512 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 26.5 MiB 1.71 1184 13933 4215 7193 2525 65.1 MiB 0.13 0.00 6.12997 -131.562 -6.12997 6.12997 0.98 0.000697977 0.000628737 0.0535184 0.0484728 38 3830 38 6.79088e+06 323328 678818. 2348.85 2.86 0.205279 0.180664 25966 169698 -1 2840 19 1676 5153 259760 60612 6.29093 6.29093 -151.006 -6.29093 0 0 902133. 3121.57 0.37 0.10 0.17 -1 -1 0.37 0.0362821 0.0325921 145 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 11.78 vpr 64.83 MiB -1 -1 0.21 20796 14 0.29 -1 -1 36364 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 26.4 MiB 2.68 1398 10163 2620 6464 1079 64.8 MiB 0.09 0.00 6.59895 -143.217 -6.59895 6.59895 0.98 0.000584534 0.000521622 0.0389025 0.0351101 44 3631 22 6.79088e+06 255968 787024. 2723.27 5.31 0.277765 0.244722 27118 194962 -1 2957 15 1298 3711 228398 48859 6.72425 6.72425 -156.431 -6.72425 0 0 997811. 3452.63 0.41 0.08 0.18 -1 -1 0.41 0.029061 0.0264067 126 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 13.36 vpr 64.57 MiB -1 -1 0.21 20456 12 0.20 -1 -1 36072 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66116 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 26.1 MiB 2.11 1008 12247 3930 6656 1661 64.6 MiB 0.10 0.00 5.84017 -132.888 -5.84017 5.84017 0.99 0.000550179 0.000500953 0.0417244 0.0379451 30 2634 17 6.79088e+06 202080 556674. 1926.21 7.75 0.208082 0.182689 24526 138013 -1 2222 15 927 2388 130509 29394 5.84017 5.84017 -147.149 -5.84017 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0228818 0.0206737 105 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 9.94 vpr 63.79 MiB -1 -1 0.18 20220 10 0.12 -1 -1 36736 -1 -1 13 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65320 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 25.4 MiB 2.47 724 8449 2861 4213 1375 63.8 MiB 0.05 0.00 4.17056 -100.044 -4.17056 4.17056 1.01 0.000341492 0.000310316 0.0219084 0.019922 36 1952 16 6.79088e+06 175136 648988. 2245.63 4.07 0.143234 0.125742 25390 158009 -1 1555 15 624 1429 86429 19888 4.29586 4.29586 -112.284 -4.29586 0 0 828058. 2865.25 0.33 0.04 0.15 -1 -1 0.33 0.0169 0.0152191 66 84 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 8.71 vpr 64.38 MiB -1 -1 0.21 20404 13 0.23 -1 -1 35776 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 25.9 MiB 2.64 989 12156 3421 6632 2103 64.4 MiB 0.09 0.00 6.04392 -128.115 -6.04392 6.04392 0.96 0.000544723 0.000492752 0.0404751 0.0368398 34 2943 40 6.79088e+06 242496 618332. 2139.56 2.53 0.157867 0.138841 25102 150614 -1 2132 15 1019 2296 129386 31111 6.67042 6.67042 -147.877 -6.67042 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0253798 0.0230781 107 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 11.15 vpr 65.11 MiB -1 -1 0.23 20760 13 0.35 -1 -1 36300 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 26.6 MiB 2.27 1271 11989 3165 6783 2041 65.1 MiB 0.11 0.00 6.54158 -141.689 -6.54158 6.54158 0.99 0.000676545 0.000612744 0.0488897 0.0443808 38 3489 22 6.79088e+06 282912 678818. 2348.85 4.97 0.224308 0.19844 25966 169698 -1 2893 18 1564 4354 224213 50796 6.75652 6.75652 -156.915 -6.75652 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0354897 0.032077 143 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 11.79 vpr 64.85 MiB -1 -1 0.24 20716 13 0.36 -1 -1 36524 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 26.4 MiB 2.78 1349 13291 3884 7004 2403 64.8 MiB 0.12 0.00 6.09082 -137.698 -6.09082 6.09082 0.99 0.000659593 0.000588612 0.0526053 0.0476995 44 3532 24 6.79088e+06 282912 787024. 2723.27 5.01 0.298239 0.263954 27118 194962 -1 2767 17 1372 4063 202356 46372 6.34142 6.34142 -154.084 -6.34142 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0330616 0.0299446 141 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 10.38 vpr 63.82 MiB -1 -1 0.17 20180 9 0.11 -1 -1 35836 -1 -1 18 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65352 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 25.4 MiB 1.41 709 10956 3561 6029 1366 63.8 MiB 0.06 0.00 3.8527 -78.9118 -3.8527 3.8527 1.02 0.000312435 0.000282364 0.0251405 0.0228676 28 1837 21 6.79088e+06 242496 531479. 1839.03 5.65 0.136671 0.119216 23950 126010 -1 1588 16 635 1456 97604 22084 4.2286 4.2286 -94.8026 -4.2286 0 0 648988. 2245.63 0.27 0.04 0.11 -1 -1 0.27 0.0149766 0.0133619 67 69 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 11.55 vpr 65.00 MiB -1 -1 0.21 20464 13 0.35 -1 -1 36352 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 26.6 MiB 2.36 1233 8535 2116 6136 283 65.0 MiB 0.09 0.00 6.87423 -140.611 -6.87423 6.87423 0.99 0.00065773 0.00059238 0.034476 0.03114 38 3687 23 6.79088e+06 309856 678818. 2348.85 5.36 0.193945 0.170069 25966 169698 -1 2676 17 1406 3871 210855 47458 7.12483 7.12483 -157.565 -7.12483 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.0294301 0.0266273 136 192 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 7.64 vpr 63.96 MiB -1 -1 0.15 19916 8 0.11 -1 -1 36400 -1 -1 11 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65500 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 25.6 MiB 2.41 579 9397 2173 7053 171 64.0 MiB 0.06 0.00 3.54052 -79.0018 -3.54052 3.54052 1.03 0.000378912 0.000340296 0.0237775 0.0216724 34 1984 33 6.79088e+06 148192 618332. 2139.56 1.88 0.11321 0.0987032 25102 150614 -1 1491 15 653 1413 82868 20970 3.79112 3.79112 -97.0321 -3.79112 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0141467 0.012666 60 59 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 24.18 vpr 64.66 MiB -1 -1 0.21 20500 15 0.29 -1 -1 36668 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 26.3 MiB 2.73 1148 14322 4374 7798 2150 64.7 MiB 0.12 0.00 7.39781 -147.331 -7.39781 7.39781 1.01 0.000603205 0.000543738 0.0524942 0.0475696 36 3661 28 6.79088e+06 242496 648988. 2245.63 17.58 0.330769 0.290652 25390 158009 -1 2926 34 1440 4111 459596 168312 7.52311 7.52311 -168.547 -7.52311 0 0 828058. 2865.25 0.32 0.17 0.15 -1 -1 0.32 0.0466092 0.0415184 121 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 10.87 vpr 64.90 MiB -1 -1 0.20 20492 13 0.28 -1 -1 36544 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 26.3 MiB 2.29 1208 10050 2840 5062 2148 64.9 MiB 0.09 0.00 5.65334 -125.269 -5.65334 5.65334 1.00 0.000610877 0.000553612 0.0387253 0.0351139 38 3495 41 6.79088e+06 242496 678818. 2348.85 4.85 0.216249 0.190693 25966 169698 -1 2606 19 1262 3578 190618 43070 5.93965 5.93965 -142.933 -5.93965 0 0 902133. 3121.57 0.36 0.08 0.17 -1 -1 0.36 0.0306473 0.0276536 117 165 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 9.97 vpr 64.85 MiB -1 -1 0.23 20808 13 0.35 -1 -1 36492 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 26.4 MiB 1.95 1115 8270 2033 5478 759 64.8 MiB 0.08 0.00 6.62352 -137.043 -6.62352 6.62352 1.02 0.000673718 0.000612797 0.035525 0.0324421 44 3299 49 6.79088e+06 242496 787024. 2723.27 4.04 0.26976 0.24037 27118 194962 -1 2379 19 1283 3685 205255 48915 6.74882 6.74882 -153.681 -6.74882 0 0 997811. 3452.63 0.42 0.09 0.19 -1 -1 0.42 0.0356041 0.0322269 136 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 9.93 vpr 64.45 MiB -1 -1 0.20 20336 12 0.20 -1 -1 36324 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 26.0 MiB 2.41 1022 10916 2904 6051 1961 64.5 MiB 0.09 0.00 5.73944 -127.146 -5.73944 5.73944 0.99 0.000534296 0.000484971 0.0371168 0.0337806 36 2902 49 6.79088e+06 215552 648988. 2245.63 3.94 0.201364 0.176531 25390 158009 -1 2334 17 1078 2563 188295 48367 5.90389 5.90389 -146.042 -5.90389 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.0263607 0.0238052 103 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 9.35 vpr 64.33 MiB -1 -1 0.20 20580 11 0.19 -1 -1 36560 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65876 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 25.9 MiB 2.27 1022 10056 2935 5541 1580 64.3 MiB 0.07 0.00 5.32424 -117.518 -5.32424 5.32424 1.00 0.000431319 0.000388716 0.0300063 0.0271617 34 3036 34 6.79088e+06 242496 618332. 2139.56 3.54 0.161352 0.14188 25102 150614 -1 2310 16 991 2436 147687 33799 5.57484 5.57484 -134.325 -5.57484 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0224545 0.0202533 95 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 10.09 vpr 64.26 MiB -1 -1 0.21 20676 11 0.22 -1 -1 36272 -1 -1 21 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 25.9 MiB 1.93 957 13381 4392 7027 1962 64.3 MiB 0.10 0.00 5.74283 -111.724 -5.74283 5.74283 0.97 0.000513704 0.00045979 0.0430107 0.038994 38 2252 18 6.79088e+06 282912 678818. 2348.85 4.58 0.243013 0.211615 25966 169698 -1 1952 15 985 2598 133735 30715 5.86813 5.86813 -124.204 -5.86813 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0221571 0.0200096 109 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 9.56 vpr 64.66 MiB -1 -1 0.19 20356 12 0.25 -1 -1 36428 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 26.3 MiB 3.09 1136 9531 3089 4626 1816 64.7 MiB 0.09 0.00 5.73939 -133.709 -5.73939 5.73939 0.98 0.000596192 0.000539836 0.0369857 0.0336299 44 2987 50 6.79088e+06 229024 787024. 2723.27 2.72 0.192519 0.169697 27118 194962 -1 2401 15 1302 3134 164468 38393 6.07958 6.07958 -153.221 -6.07958 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.028052 0.0255696 119 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 9.99 vpr 64.43 MiB -1 -1 0.20 20504 12 0.20 -1 -1 36204 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 26.0 MiB 2.76 1117 6788 1655 4473 660 64.4 MiB 0.06 0.00 5.70363 -121.279 -5.70363 5.70363 0.99 0.000549517 0.000502894 0.0247192 0.0225805 34 3076 35 6.79088e+06 229024 618332. 2139.56 3.69 0.171875 0.150814 25102 150614 -1 2501 19 1254 3213 207472 45494 6.33899 6.33899 -144.429 -6.33899 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0263333 0.02356 101 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 9.91 vpr 64.31 MiB -1 -1 0.21 20456 10 0.17 -1 -1 36636 -1 -1 17 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65856 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 25.9 MiB 1.86 1007 7050 1619 5025 406 64.3 MiB 0.06 0.00 5.11278 -113.885 -5.11278 5.11278 1.02 0.000515992 0.000465484 0.0255894 0.0232756 38 2478 30 6.79088e+06 229024 678818. 2348.85 4.47 0.210137 0.184108 25966 169698 -1 2077 14 856 2357 121293 27467 5.23808 5.23808 -125.663 -5.23808 0 0 902133. 3121.57 0.37 0.06 0.16 -1 -1 0.37 0.0231481 0.021062 103 131 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 24.92 vpr 65.18 MiB -1 -1 0.25 20960 13 0.37 -1 -1 36392 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 26.6 MiB 2.29 1291 13849 4144 7035 2670 65.2 MiB 0.13 0.00 6.7635 -141.207 -6.7635 6.7635 1.01 0.000761877 0.000693109 0.0599185 0.0544173 40 3213 33 6.79088e+06 282912 706193. 2443.58 18.51 0.513236 0.454669 26254 175826 -1 3132 30 1790 5889 518309 156305 6.92451 6.92451 -158.258 -6.92451 0 0 926341. 3205.33 0.37 0.20 0.17 -1 -1 0.37 0.0586124 0.052982 149 220 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 9.75 vpr 64.87 MiB -1 -1 0.22 21332 14 0.38 -1 -1 36412 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 26.4 MiB 2.60 1346 5956 1162 4491 303 64.9 MiB 0.06 0.00 6.74118 -147.766 -6.74118 6.74118 0.98 0.000608951 0.000549972 0.025466 0.0231615 36 4082 38 6.79088e+06 242496 648988. 2245.63 3.31 0.206467 0.183258 25390 158009 -1 3200 29 1613 4691 429186 152327 7.11359 7.11359 -172.148 -7.11359 0 0 828058. 2865.25 0.34 0.17 0.15 -1 -1 0.34 0.0478211 0.0428123 136 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 9.35 vpr 64.43 MiB -1 -1 0.20 20404 12 0.19 -1 -1 36160 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 26.0 MiB 2.63 1110 6670 1695 4386 589 64.4 MiB 0.06 0.00 5.61409 -130.442 -5.61409 5.61409 1.00 0.000533094 0.000475408 0.0246807 0.0224284 34 3073 30 6.79088e+06 215552 618332. 2139.56 3.17 0.156084 0.136651 25102 150614 -1 2384 16 937 2535 174499 37963 6.33018 6.33018 -152.139 -6.33018 0 0 787024. 2723.27 0.34 0.07 0.15 -1 -1 0.34 0.0257215 0.0233168 101 148 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 12.40 vpr 64.80 MiB -1 -1 0.24 20824 12 0.34 -1 -1 36568 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 26.3 MiB 2.90 1421 7383 1747 4941 695 64.8 MiB 0.08 0.00 5.84361 -128.46 -5.84361 5.84361 1.03 0.000753052 0.000691235 0.0338481 0.0307873 50 3112 20 6.79088e+06 323328 902133. 3121.57 5.42 0.312317 0.277725 27982 213445 -1 2910 17 1352 4047 234948 50351 6.09421 6.09421 -145.17 -6.09421 0 0 1.08113e+06 3740.92 0.45 0.10 0.21 -1 -1 0.45 0.0378387 0.0344864 146 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 8.53 vpr 64.96 MiB -1 -1 0.25 21172 14 0.43 -1 -1 36808 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 26.5 MiB 1.66 1348 9757 2851 6010 896 65.0 MiB 0.10 0.00 6.92457 -142.937 -6.92457 6.92457 1.00 0.000714523 0.000641721 0.0412332 0.0375638 36 3369 22 6.79088e+06 296384 648988. 2245.63 2.95 0.207868 0.18332 25390 158009 -1 2882 17 1272 3547 206176 47609 7.39 7.39 -161.944 -7.39 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0319486 0.0288295 142 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 13.45 vpr 64.93 MiB -1 -1 0.25 21296 13 0.33 -1 -1 36200 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 26.5 MiB 2.50 1258 5000 959 3649 392 64.9 MiB 0.05 0.00 6.93576 -140.519 -6.93576 6.93576 1.00 0.00065335 0.000593176 0.0219295 0.019992 36 3779 42 6.79088e+06 309856 648988. 2245.63 7.09 0.207552 0.18262 25390 158009 -1 2997 31 1394 3638 393269 161744 7.31166 7.31166 -161.111 -7.31166 0 0 828058. 2865.25 0.34 0.16 0.15 -1 -1 0.34 0.0437418 0.0389731 136 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 9.81 vpr 64.93 MiB -1 -1 0.24 20784 13 0.33 -1 -1 36592 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66484 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 26.5 MiB 2.38 1271 12345 3880 6110 2355 64.9 MiB 0.11 0.00 6.59208 -134.695 -6.59208 6.59208 1.00 0.000666758 0.000609363 0.046466 0.0421602 38 3532 29 6.79088e+06 282912 678818. 2348.85 3.56 0.190636 0.16924 25966 169698 -1 2951 17 1283 3669 228984 48541 6.96798 6.96798 -155.056 -6.96798 0 0 902133. 3121.57 0.37 0.09 0.16 -1 -1 0.37 0.032128 0.029179 125 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 9.59 vpr 64.38 MiB -1 -1 0.20 20440 12 0.23 -1 -1 36564 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65924 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.8 MiB 2.41 1027 12292 4424 5699 2169 64.4 MiB 0.10 0.00 5.64559 -121.396 -5.64559 5.64559 1.00 0.000607508 0.000549223 0.0451747 0.0410824 36 3195 31 6.79088e+06 215552 648988. 2245.63 3.55 0.203509 0.176963 25390 158009 -1 2326 19 1147 3056 176338 41116 5.90389 5.90389 -136.115 -5.90389 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0291685 0.026092 111 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 12.73 vpr 65.23 MiB -1 -1 0.28 21684 14 0.50 -1 -1 36952 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 26.9 MiB 1.42 1602 11617 2988 7134 1495 65.2 MiB 0.13 0.00 6.97147 -147.929 -6.97147 6.97147 1.00 0.000746751 0.00067246 0.0543553 0.0492773 44 4247 49 6.79088e+06 282912 787024. 2723.27 7.10 0.383262 0.338062 27118 194962 -1 3261 18 1514 4453 246100 54423 7.22207 7.22207 -167.197 -7.22207 0 0 997811. 3452.63 0.40 0.10 0.19 -1 -1 0.40 0.0378734 0.0344242 159 229 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 13.20 vpr 64.68 MiB -1 -1 0.19 20328 11 0.24 -1 -1 36172 -1 -1 16 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 26.2 MiB 2.77 1123 6501 1465 4777 259 64.7 MiB 0.07 0.00 5.35574 -117.745 -5.35574 5.35574 1.02 0.000588752 0.000536198 0.0276791 0.0251508 36 3370 46 6.79088e+06 215552 648988. 2245.63 6.64 0.221168 0.195752 25390 158009 -1 2804 30 1372 3892 519539 219254 5.60634 5.60634 -136.81 -5.60634 0 0 828058. 2865.25 0.35 0.21 0.15 -1 -1 0.35 0.0490408 0.0442052 112 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 11.54 vpr 64.96 MiB -1 -1 0.23 20792 13 0.34 -1 -1 36468 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66520 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 26.5 MiB 2.13 1211 13763 4864 7006 1893 65.0 MiB 0.12 0.00 6.63471 -140.446 -6.63471 6.63471 0.99 0.000678318 0.00061867 0.0565028 0.0513418 36 3276 44 6.79088e+06 269440 648988. 2245.63 5.47 0.27769 0.247312 25390 158009 -1 2764 23 1409 4399 424861 147542 7.59791 7.59791 -159.117 -7.59791 0 0 828058. 2865.25 0.34 0.16 0.15 -1 -1 0.34 0.0436798 0.0394732 137 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 9.68 vpr 64.99 MiB -1 -1 0.22 21116 12 0.33 -1 -1 36492 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 26.5 MiB 2.32 1189 13663 4685 6789 2189 65.0 MiB 0.12 0.00 5.95428 -128.957 -5.95428 5.95428 0.97 0.000673038 0.000597724 0.0531705 0.0478971 44 3506 43 6.79088e+06 282912 787024. 2723.27 3.49 0.247415 0.217659 27118 194962 -1 2640 16 1259 4120 220704 50577 6.20832 6.20832 -145.112 -6.20832 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0338538 0.0309111 146 208 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 11.26 vpr 64.71 MiB -1 -1 0.20 20428 13 0.32 -1 -1 36576 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 26.3 MiB 1.68 1212 5756 1277 4235 244 64.7 MiB 0.06 0.00 6.2722 -135.755 -6.2722 6.2722 1.02 0.000648283 0.000592768 0.0238691 0.021821 34 3451 34 6.79088e+06 296384 618332. 2139.56 5.83 0.264664 0.233053 25102 150614 -1 2798 18 1299 3330 203338 45950 6.6012 6.6012 -156.729 -6.6012 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0327572 0.0296945 131 177 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 12.14 vpr 64.59 MiB -1 -1 0.23 20844 13 0.27 -1 -1 36964 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 26.2 MiB 3.24 1214 11296 3419 5607 2270 64.6 MiB 0.10 0.00 6.00816 -131.728 -6.00816 6.00816 1.00 0.000614039 0.000556664 0.0431134 0.0391393 36 4364 48 6.79088e+06 242496 648988. 2245.63 5.12 0.217561 0.192145 25390 158009 -1 3048 19 1574 4162 292339 62014 6.63466 6.63466 -155.182 -6.63466 0 0 828058. 2865.25 0.34 0.10 0.16 -1 -1 0.34 0.0319369 0.0286729 124 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 10.28 vpr 64.79 MiB -1 -1 0.24 20824 12 0.31 -1 -1 36420 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 26.3 MiB 2.50 1416 8319 2136 5392 791 64.8 MiB 0.09 0.00 6.28677 -138.289 -6.28677 6.28677 1.03 0.000712439 0.000638687 0.0354738 0.0322154 38 3704 24 6.79088e+06 269440 678818. 2348.85 3.97 0.209526 0.185427 25966 169698 -1 2859 15 1293 4147 211136 46446 6.53737 6.53737 -155.964 -6.53737 0 0 902133. 3121.57 0.35 0.08 0.16 -1 -1 0.35 0.0286633 0.025984 140 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 8.59 vpr 65.27 MiB -1 -1 0.25 21236 13 0.37 -1 -1 37056 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 26.7 MiB 1.95 1369 7221 1614 5114 493 65.3 MiB 0.08 0.00 6.63122 -144.8 -6.63122 6.63122 1.00 0.000716846 0.000652662 0.0344675 0.0314017 38 3667 49 6.79088e+06 269440 678818. 2348.85 2.73 0.235638 0.210094 25966 169698 -1 2834 17 1338 3891 197806 45323 6.97141 6.97141 -159.776 -6.97141 0 0 902133. 3121.57 0.36 0.09 0.16 -1 -1 0.36 0.037623 0.0342462 145 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 10.73 vpr 64.74 MiB -1 -1 0.20 20624 14 0.35 -1 -1 36324 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 26.4 MiB 1.83 1202 14724 4723 8104 1897 64.7 MiB 0.13 0.00 6.71317 -139.764 -6.71317 6.71317 1.00 0.000607904 0.000551937 0.0543441 0.0493979 44 3099 21 6.79088e+06 269440 787024. 2723.27 4.98 0.280532 0.24693 27118 194962 -1 2427 21 1255 3667 188869 42256 7.08906 7.08906 -156.66 -7.08906 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0315624 0.0282911 125 167 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 9.12 vpr 64.98 MiB -1 -1 0.22 20528 13 0.32 -1 -1 36484 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 26.4 MiB 2.76 1303 12547 3717 6932 1898 65.0 MiB 0.11 0.00 6.51285 -132.31 -6.51285 6.51285 0.97 0.000652839 0.000591573 0.0488827 0.0444056 44 3110 21 6.79088e+06 282912 787024. 2723.27 2.53 0.204927 0.180651 27118 194962 -1 2725 16 1384 3835 194457 44817 6.51285 6.51285 -147.957 -6.51285 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0300762 0.0272955 136 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 21.05 vpr 65.02 MiB -1 -1 0.25 20664 13 0.35 -1 -1 36520 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 26.5 MiB 2.29 1463 9051 2579 5538 934 65.0 MiB 0.09 0.00 6.58432 -145.283 -6.58432 6.58432 1.01 0.00071417 0.0006535 0.0399223 0.0364309 40 3290 20 6.79088e+06 282912 706193. 2443.58 14.78 0.387124 0.340408 26254 175826 -1 3267 21 1854 5269 345739 74226 7.33612 7.33612 -167.235 -7.33612 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0401889 0.0362803 144 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 24.66 vpr 65.14 MiB -1 -1 0.22 20796 12 0.36 -1 -1 36612 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66708 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 26.6 MiB 1.80 1364 12919 3724 7480 1715 65.1 MiB 0.12 0.00 6.73769 -142.342 -6.73769 6.73769 0.97 0.000642677 0.000571695 0.0526732 0.0475994 40 3533 24 6.79088e+06 282912 706193. 2443.58 19.02 0.420082 0.370333 26254 175826 -1 3221 18 1594 4311 290402 63205 7.09312 7.09312 -160.752 -7.09312 0 0 926341. 3205.33 0.37 0.10 0.16 -1 -1 0.37 0.034683 0.0314365 147 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 7.40 vpr 64.37 MiB -1 -1 0.18 20204 11 0.15 -1 -1 36240 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 26.0 MiB 1.56 822 6220 1320 4797 103 64.4 MiB 0.06 0.00 5.15198 -107.843 -5.15198 5.15198 1.00 0.000498796 0.000445135 0.0211748 0.0193142 36 2397 23 6.79088e+06 188608 648988. 2245.63 2.37 0.145528 0.12734 25390 158009 -1 1999 16 941 2278 140351 34332 5.56708 5.56708 -133.286 -5.56708 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0215947 0.019388 91 121 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 10.13 vpr 64.61 MiB -1 -1 0.22 20924 13 0.26 -1 -1 36452 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 26.0 MiB 2.23 1244 5940 1302 4273 365 64.6 MiB 0.06 0.00 6.37292 -138.877 -6.37292 6.37292 0.99 0.000595267 0.00053958 0.0241234 0.0219039 36 3132 49 6.79088e+06 269440 648988. 2245.63 4.25 0.20298 0.178297 25390 158009 -1 2641 19 1208 3171 191788 42945 6.62003 6.62003 -157.844 -6.62003 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0283746 0.0253768 118 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 10.31 vpr 65.21 MiB -1 -1 0.25 21432 14 0.55 -1 -1 36764 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 26.8 MiB 1.61 1472 8083 1852 5981 250 65.2 MiB 0.10 0.00 7.68335 -155.146 -7.68335 7.68335 1.02 0.000841712 0.000766388 0.0409316 0.0372467 46 3914 23 6.79088e+06 323328 828058. 2865.25 4.40 0.266914 0.237781 27406 200422 -1 3198 18 1774 5217 248004 56636 7.93395 7.93395 -171.107 -7.93395 0 0 1.01997e+06 3529.29 0.42 0.11 0.20 -1 -1 0.42 0.0430715 0.0392628 171 243 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 11.00 vpr 64.95 MiB -1 -1 0.22 20596 13 0.36 -1 -1 36424 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 26.5 MiB 1.93 1318 8641 2302 5377 962 65.0 MiB 0.08 0.00 6.42331 -142.952 -6.42331 6.42331 0.97 0.000616898 0.000557516 0.0324195 0.0294632 44 3277 31 6.79088e+06 282912 787024. 2723.27 5.18 0.26296 0.230946 27118 194962 -1 2631 16 1175 3265 179584 40080 6.76001 6.76001 -161.406 -6.76001 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0297178 0.0270114 134 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 9.00 vpr 64.40 MiB -1 -1 0.20 20656 11 0.21 -1 -1 36360 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65944 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 25.9 MiB 0.89 954 4980 1041 3690 249 64.4 MiB 0.05 0.00 5.61753 -120.383 -5.61753 5.61753 1.01 0.00053922 0.000492406 0.0186973 0.0171378 36 2650 23 6.79088e+06 229024 648988. 2245.63 4.56 0.207974 0.181607 25390 158009 -1 2100 17 960 2590 146182 33502 5.61753 5.61753 -134.605 -5.61753 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0236412 0.0212451 101 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 11.71 vpr 65.56 MiB -1 -1 0.27 21468 15 0.66 -1 -1 36964 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67136 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 27.0 MiB 1.35 1586 10979 3032 6976 971 65.6 MiB 0.12 0.00 7.98095 -163.689 -7.98095 7.98095 1.01 0.000886671 0.000804961 0.0517278 0.046942 44 4106 44 6.79088e+06 336800 787024. 2723.27 5.84 0.389927 0.34233 27118 194962 -1 3274 33 1801 5288 501785 214002 8.16545 8.16545 -181.59 -8.16545 0 0 997811. 3452.63 0.39 0.23 0.19 -1 -1 0.39 0.0673336 0.0605595 179 256 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 9.35 vpr 65.16 MiB -1 -1 0.23 20672 13 0.40 -1 -1 36240 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 26.7 MiB 1.42 1318 7953 1924 5245 784 65.2 MiB 0.08 0.00 6.80691 -147.77 -6.80691 6.80691 1.02 0.000723421 0.000659263 0.0354854 0.0323175 34 3727 37 6.79088e+06 269440 618332. 2139.56 4.01 0.256434 0.228334 25102 150614 -1 3022 23 1568 4169 271980 58732 6.97141 6.97141 -169.636 -6.97141 0 0 787024. 2723.27 0.33 0.11 0.15 -1 -1 0.33 0.0438742 0.0395432 139 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 6.93 vpr 64.17 MiB -1 -1 0.18 20088 11 0.17 -1 -1 36288 -1 -1 13 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65712 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 25.8 MiB 1.50 1107 11813 3755 6385 1673 64.2 MiB 0.09 0.00 5.65673 -121.476 -5.65673 5.65673 1.00 0.000546298 0.000497949 0.0414934 0.0375479 30 2668 23 6.79088e+06 175136 556674. 1926.21 2.02 0.12485 0.110473 24526 138013 -1 2327 14 963 2426 143967 31805 5.90733 5.90733 -145.111 -5.90733 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0218663 0.0198067 94 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 10.40 vpr 65.21 MiB -1 -1 0.22 20712 12 0.36 -1 -1 36360 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 26.6 MiB 1.32 1451 8868 2481 5589 798 65.2 MiB 0.08 0.00 6.21186 -135.883 -6.21186 6.21186 0.97 0.000624074 0.000562285 0.0357479 0.0323101 44 3384 20 6.79088e+06 269440 787024. 2723.27 5.23 0.282871 0.248834 27118 194962 -1 2780 18 1295 4348 231773 50436 6.50936 6.50936 -153.957 -6.50936 0 0 997811. 3452.63 0.41 0.09 0.18 -1 -1 0.41 0.0345116 0.0311693 146 210 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 10.64 vpr 64.55 MiB -1 -1 0.19 20308 12 0.25 -1 -1 36316 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 26.0 MiB 1.53 1116 12008 4379 6168 1461 64.6 MiB 0.09 0.00 6.07963 -127.977 -6.07963 6.07963 1.00 0.000579011 0.000526239 0.0410434 0.037365 48 2328 16 6.79088e+06 242496 865456. 2994.66 5.18 0.223474 0.196127 27694 206865 -1 2351 29 1115 3009 489771 263793 6.20493 6.20493 -142.057 -6.20493 0 0 1.05005e+06 3633.38 0.43 0.20 0.20 -1 -1 0.43 0.0418719 0.0374991 113 148 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 7.20 vpr 64.54 MiB -1 -1 0.20 20404 12 0.23 -1 -1 36388 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 26.1 MiB 1.21 922 5825 1352 4298 175 64.5 MiB 0.06 0.00 6.13346 -120.57 -6.13346 6.13346 0.99 0.000553731 0.000503272 0.0222856 0.0202857 38 2184 17 6.79088e+06 229024 678818. 2348.85 2.35 0.153731 0.135632 25966 169698 -1 1915 16 804 2244 112778 26068 6.38406 6.38406 -137.788 -6.38406 0 0 902133. 3121.57 0.36 0.05 0.17 -1 -1 0.36 0.0238994 0.0215548 106 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 12.20 vpr 64.85 MiB -1 -1 0.24 20604 12 0.34 -1 -1 36572 -1 -1 26 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 26.4 MiB 2.66 1216 7767 1963 5054 750 64.8 MiB 0.08 0.00 6.36943 -122.839 -6.36943 6.36943 1.01 0.000678197 0.000616891 0.031378 0.0286572 36 3445 29 6.79088e+06 350272 648988. 2245.63 5.70 0.302118 0.26753 25390 158009 -1 2824 17 1259 3827 224300 48596 6.36943 6.36943 -136.11 -6.36943 0 0 828058. 2865.25 0.34 0.09 0.15 -1 -1 0.34 0.0343014 0.0311402 140 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 19.30 vpr 65.29 MiB -1 -1 0.24 20856 13 0.43 -1 -1 36668 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66856 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 26.9 MiB 1.29 1484 9303 2676 5892 735 65.3 MiB 0.10 0.00 6.50936 -139.884 -6.50936 6.50936 1.00 0.000776195 0.000702019 0.0429484 0.0391485 38 3815 23 6.79088e+06 309856 678818. 2348.85 14.02 0.372959 0.328809 25966 169698 -1 3178 22 2054 5188 275388 61216 7.12467 7.12467 -165.651 -7.12467 0 0 902133. 3121.57 0.34 0.11 0.17 -1 -1 0.34 0.04044 0.0362968 160 235 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 12.75 vpr 65.09 MiB -1 -1 0.22 21044 12 0.29 -1 -1 36324 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 26.6 MiB 1.55 1346 7587 1864 5250 473 65.1 MiB 0.08 0.00 6.25876 -139.945 -6.25876 6.25876 0.97 0.000684529 0.000610263 0.0319566 0.0290212 36 3983 49 6.79088e+06 269440 648988. 2245.63 7.46 0.2396 0.211023 25390 158009 -1 3167 20 1905 5457 378207 86669 6.94898 6.94898 -165.333 -6.94898 0 0 828058. 2865.25 0.33 0.12 0.15 -1 -1 0.33 0.0371897 0.0335883 140 195 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 9.78 vpr 64.08 MiB -1 -1 0.20 20372 12 0.19 -1 -1 36812 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65620 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.7 MiB 2.27 970 7346 1525 5434 387 64.1 MiB 0.06 0.00 6.12227 -129.212 -6.12227 6.12227 0.99 0.000526281 0.000477493 0.023244 0.0211034 34 2847 30 6.79088e+06 202080 618332. 2139.56 4.03 0.14769 0.130016 25102 150614 -1 2330 15 947 2483 180554 40218 6.37287 6.37287 -146.163 -6.37287 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0218306 0.0197484 93 119 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 10.27 vpr 64.53 MiB -1 -1 0.20 20468 12 0.27 -1 -1 36628 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 26.0 MiB 1.74 1082 11830 3208 6442 2180 64.5 MiB 0.10 0.00 5.97433 -125.288 -5.97433 5.97433 1.00 0.000568836 0.000518285 0.0413055 0.0375841 34 3211 41 6.79088e+06 255968 618332. 2139.56 4.85 0.264467 0.23318 25102 150614 -1 2545 19 1057 2814 177002 39213 6.35023 6.35023 -146.083 -6.35023 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0288829 0.0261244 111 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 11.20 vpr 64.83 MiB -1 -1 0.23 20536 11 0.23 -1 -1 36348 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 26.5 MiB 1.81 1165 9694 2744 5668 1282 64.8 MiB 0.09 0.00 5.62872 -114.976 -5.62872 5.62872 1.00 0.000653526 0.00059574 0.039986 0.0363576 34 3581 35 6.79088e+06 269440 618332. 2139.56 5.65 0.231536 0.205799 25102 150614 -1 2811 17 1173 3537 230769 50721 6.04376 6.04376 -138.224 -6.04376 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.033093 0.0300789 125 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 15.16 vpr 64.71 MiB -1 -1 0.21 20524 11 0.26 -1 -1 36416 -1 -1 19 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 26.1 MiB 1.54 1057 8022 1921 5271 830 64.7 MiB 0.07 0.00 5.35574 -105.27 -5.35574 5.35574 0.97 0.000592541 0.000528665 0.0313223 0.0283366 30 2968 26 6.79088e+06 255968 556674. 1926.21 10.05 0.23639 0.206755 24526 138013 -1 2286 16 1101 3174 162977 37865 5.60634 5.60634 -122.137 -5.60634 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0254491 0.0229265 116 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 17.51 vpr 64.38 MiB -1 -1 0.21 20412 13 0.26 -1 -1 36472 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 25.9 MiB 2.19 1049 12464 3944 6305 2215 64.4 MiB 0.10 0.00 5.9509 -122.905 -5.9509 5.9509 0.99 0.000550569 0.000499579 0.0437662 0.0399678 38 2547 19 6.79088e+06 242496 678818. 2348.85 11.59 0.262264 0.229529 25966 169698 -1 2255 15 950 2677 145393 32848 6.2015 6.2015 -139.405 -6.2015 0 0 902133. 3121.57 0.36 0.06 0.17 -1 -1 0.36 0.0241426 0.0218292 108 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 10.67 vpr 64.88 MiB -1 -1 0.21 20924 12 0.24 -1 -1 36328 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.5 MiB 2.57 1277 7736 1993 5023 720 64.9 MiB 0.07 0.00 5.66792 -135.227 -5.66792 5.66792 1.02 0.000611082 0.000560214 0.0302713 0.0275118 44 2860 15 6.79088e+06 242496 787024. 2723.27 4.34 0.219642 0.192468 27118 194962 -1 2493 13 985 2656 140993 32070 6.54502 6.54502 -161.125 -6.54502 0 0 997811. 3452.63 0.40 0.06 0.19 -1 -1 0.40 0.0261098 0.0238509 120 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 10.67 vpr 65.16 MiB -1 -1 0.20 20632 13 0.35 -1 -1 36568 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 26.7 MiB 2.04 1259 6489 1523 4389 577 65.2 MiB 0.07 0.00 7.05336 -143.086 -7.05336 7.05336 0.96 0.000625985 0.000568111 0.0261482 0.0238229 36 3038 24 6.79088e+06 282912 648988. 2245.63 4.93 0.287514 0.251569 25390 158009 -1 2559 15 1168 3222 172083 39442 7.39006 7.39006 -159.222 -7.39006 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0293755 0.0267692 137 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 10.53 vpr 64.99 MiB -1 -1 0.24 20640 14 0.33 -1 -1 36480 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 26.6 MiB 1.58 1355 7770 1977 5250 543 65.0 MiB 0.07 0.00 7.26476 -153.3 -7.26476 7.26476 1.00 0.000647168 0.000573821 0.0310983 0.0282376 36 3774 43 6.79088e+06 269440 648988. 2245.63 5.20 0.231996 0.204816 25390 158009 -1 3036 18 1465 4198 269811 57614 7.51535 7.51535 -171.291 -7.51535 0 0 828058. 2865.25 0.33 0.09 0.14 -1 -1 0.33 0.0327631 0.0295979 132 195 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 11.63 vpr 64.94 MiB -1 -1 0.23 20664 14 0.31 -1 -1 36588 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.5 MiB 2.64 1157 12856 4285 6371 2200 64.9 MiB 0.11 0.00 6.58781 -134.152 -6.58781 6.58781 0.99 0.000613673 0.000557508 0.0493485 0.0448864 38 3033 29 6.79088e+06 229024 678818. 2348.85 5.20 0.309296 0.271947 25966 169698 -1 2513 20 1299 3833 205001 45967 6.75231 6.75231 -149.07 -6.75231 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0309241 0.027774 122 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 11.95 vpr 64.98 MiB -1 -1 0.25 21304 13 0.42 -1 -1 36416 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 26.4 MiB 2.19 1370 8213 1994 5808 411 65.0 MiB 0.09 0.00 6.79927 -143.422 -6.79927 6.79927 0.99 0.000700375 0.000631219 0.0346453 0.0313778 44 3356 24 6.79088e+06 296384 787024. 2723.27 5.68 0.284294 0.249878 27118 194962 -1 2860 27 1294 3811 438809 192412 7.38657 7.38657 -159.52 -7.38657 0 0 997811. 3452.63 0.39 0.18 0.19 -1 -1 0.39 0.049001 0.0441152 144 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 9.61 vpr 64.55 MiB -1 -1 0.20 20332 13 0.24 -1 -1 35940 -1 -1 18 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 26.1 MiB 2.51 872 8336 2050 4953 1333 64.5 MiB 0.07 0.00 5.79327 -120.614 -5.79327 5.79327 1.00 0.000540021 0.000486267 0.0296091 0.0269205 36 2713 38 6.79088e+06 242496 648988. 2245.63 3.52 0.183953 0.161305 25390 158009 -1 2170 18 1216 3154 199265 46742 6.16917 6.16917 -139.373 -6.16917 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0278631 0.0250713 104 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 11.17 vpr 65.04 MiB -1 -1 0.25 21296 13 0.55 -1 -1 36268 -1 -1 22 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66600 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 26.5 MiB 2.18 1256 13992 3923 8012 2057 65.0 MiB 0.13 0.00 6.7243 -138.855 -6.7243 6.7243 0.99 0.000698674 0.000630413 0.0568853 0.0516108 40 3363 21 6.79088e+06 296384 706193. 2443.58 4.85 0.304206 0.267479 26254 175826 -1 3114 19 1670 4471 271399 61951 7.1002 7.1002 -157.06 -7.1002 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0345561 0.0311339 145 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 9.09 vpr 64.89 MiB -1 -1 0.24 20648 14 0.40 -1 -1 36756 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66448 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 26.4 MiB 2.00 1366 12364 3411 7240 1713 64.9 MiB 0.11 0.00 7.00723 -147.781 -7.00723 7.00723 1.00 0.00062798 0.000571398 0.0484413 0.0440372 44 3195 19 6.79088e+06 242496 787024. 2723.27 3.11 0.176546 0.157021 27118 194962 -1 2748 16 1191 3560 207817 45104 7.13253 7.13253 -161.873 -7.13253 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0306112 0.0278903 128 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 10.58 vpr 64.62 MiB -1 -1 0.23 20884 13 0.28 -1 -1 36608 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66176 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 26.2 MiB 2.29 1219 11474 3054 6396 2024 64.6 MiB 0.10 0.00 6.25189 -137.129 -6.25189 6.25189 0.96 0.000595995 0.000539524 0.0428748 0.03891 44 2926 20 6.79088e+06 255968 787024. 2723.27 4.48 0.253135 0.221656 27118 194962 -1 2443 16 1140 3103 161920 36660 6.37719 6.37719 -150.157 -6.37719 0 0 997811. 3452.63 0.41 0.07 0.19 -1 -1 0.41 0.0287702 0.0261214 124 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 14.48 vpr 64.62 MiB -1 -1 0.23 20576 13 0.27 -1 -1 36736 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66168 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 26.3 MiB 2.07 1162 9531 2678 5129 1724 64.6 MiB 0.08 0.00 6.43207 -124.687 -6.43207 6.43207 0.98 0.000550203 0.000494189 0.0352312 0.0318141 36 3448 41 6.79088e+06 255968 648988. 2245.63 8.71 0.296519 0.260013 25390 158009 -1 2755 19 1333 3476 209786 47214 6.53737 6.53737 -140.723 -6.53737 0 0 828058. 2865.25 0.33 0.08 0.14 -1 -1 0.33 0.0334331 0.0302157 121 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 35.21 vpr 64.98 MiB -1 -1 0.24 21032 14 0.45 -1 -1 36312 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 26.4 MiB 2.05 1520 6409 1385 4431 593 65.0 MiB 0.07 0.00 7.13597 -149.1 -7.13597 7.13597 0.99 0.000727351 0.000647235 0.0289473 0.0262096 40 3937 21 6.79088e+06 282912 706193. 2443.58 29.07 0.421918 0.372048 26254 175826 -1 3487 23 1803 5543 525491 179261 7.72326 7.72326 -174.606 -7.72326 0 0 926341. 3205.33 0.38 0.19 0.17 -1 -1 0.38 0.0494262 0.0448266 154 215 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 21.89 vpr 64.73 MiB -1 -1 0.24 20908 11 0.35 -1 -1 36408 -1 -1 23 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 26.3 MiB 2.57 1039 10149 2321 6487 1341 64.7 MiB 0.09 0.00 6.16912 -116.909 -6.16912 6.16912 1.04 0.000630741 0.000572935 0.0397513 0.0362121 34 3625 41 6.79088e+06 309856 618332. 2139.56 15.38 0.39799 0.351737 25102 150614 -1 2712 20 1418 4084 237618 54619 6.38057 6.38057 -136.105 -6.38057 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.037664 0.0341168 136 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 9.70 vpr 64.36 MiB -1 -1 0.18 20104 13 0.20 -1 -1 36516 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65908 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.9 MiB 3.68 946 7548 1695 5631 222 64.4 MiB 0.07 0.00 5.82554 -132.39 -5.82554 5.82554 1.02 0.000526538 0.000478726 0.0270824 0.0246902 36 3149 25 6.79088e+06 188608 648988. 2245.63 2.42 0.136256 0.120815 25390 158009 -1 2262 28 1146 2593 246775 90983 6.06495 6.06495 -154.999 -6.06495 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0331262 0.0293353 98 127 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 10.47 vpr 64.62 MiB -1 -1 0.23 21032 14 0.30 -1 -1 36316 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66172 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 26.3 MiB 2.12 1142 7431 1676 5509 246 64.6 MiB 0.07 0.00 6.92457 -144.109 -6.92457 6.92457 0.99 0.000648389 0.000582557 0.0309855 0.0281022 36 3376 24 6.79088e+06 229024 648988. 2245.63 4.67 0.190173 0.167335 25390 158009 -1 2666 17 1257 3185 181504 41423 7.13597 7.13597 -164.679 -7.13597 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0289444 0.0261353 122 172 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 8.89 vpr 65.38 MiB -1 -1 0.23 21256 15 0.49 -1 -1 36696 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.8 MiB 1.79 1468 5655 1104 4288 263 65.4 MiB 0.07 0.00 7.76944 -159.998 -7.76944 7.76944 1.01 0.000777572 0.000700429 0.0292377 0.0266098 40 3759 26 6.79088e+06 309856 706193. 2443.58 3.10 0.242747 0.215769 26254 175826 -1 3519 21 1833 4814 292730 65634 8.22452 8.22452 -186.375 -8.22452 0 0 926341. 3205.33 0.37 0.11 0.16 -1 -1 0.37 0.0425608 0.0383962 163 239 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 7.80 vpr 64.40 MiB -1 -1 0.20 20492 11 0.21 -1 -1 36512 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65948 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 26.0 MiB 2.01 1051 8867 2440 4963 1464 64.4 MiB 0.07 0.00 5.75402 -124.321 -5.75402 5.75402 0.99 0.000526504 0.000476315 0.0283453 0.0258051 34 2659 20 6.79088e+06 202080 618332. 2139.56 2.23 0.129556 0.114341 25102 150614 -1 2216 15 915 2330 143040 32422 5.95423 5.95423 -140.034 -5.95423 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0227764 0.0205979 97 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 11.32 vpr 64.55 MiB -1 -1 0.19 20068 12 0.23 -1 -1 36460 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 26.0 MiB 1.97 1173 7132 1772 4712 648 64.6 MiB 0.07 0.00 5.73934 -130.419 -5.73934 5.73934 1.01 0.000622115 0.000552649 0.0271598 0.0246235 44 2968 47 6.79088e+06 229024 787024. 2723.27 5.59 0.26296 0.230619 27118 194962 -1 2500 17 1244 3411 179414 40792 5.73934 5.73934 -143.007 -5.73934 0 0 997811. 3452.63 0.43 0.08 0.19 -1 -1 0.43 0.0300519 0.0273269 112 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 10.98 vpr 65.11 MiB -1 -1 0.24 20940 12 0.38 -1 -1 36408 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 26.6 MiB 1.51 1308 4403 844 3337 222 65.1 MiB 0.06 0.00 6.46241 -139.971 -6.46241 6.46241 1.03 0.000776485 0.000708638 0.0232792 0.0213968 38 3524 24 6.79088e+06 255968 678818. 2348.85 5.53 0.313457 0.278353 25966 169698 -1 2772 16 1362 3925 190747 44253 6.54851 6.54851 -157.448 -6.54851 0 0 902133. 3121.57 0.37 0.09 0.16 -1 -1 0.37 0.0386715 0.0355072 143 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 12.65 vpr 64.72 MiB -1 -1 0.23 20776 12 0.30 -1 -1 36516 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 26.3 MiB 2.45 1432 7914 1958 4935 1021 64.7 MiB 0.08 0.00 6.07958 -134.767 -6.07958 6.07958 1.01 0.000631732 0.000567812 0.032468 0.0294435 38 3778 20 6.79088e+06 242496 678818. 2348.85 6.18 0.196598 0.174209 25966 169698 -1 3161 36 1422 4236 622041 300338 6.83138 6.83138 -159.513 -6.83138 0 0 902133. 3121.57 0.36 0.25 0.17 -1 -1 0.36 0.0564525 0.050701 130 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 11.56 vpr 65.32 MiB -1 -1 0.24 21232 14 0.57 -1 -1 36336 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 26.9 MiB 2.26 1375 5378 1012 4203 163 65.3 MiB 0.07 0.00 7.3152 -150.198 -7.3152 7.3152 0.96 0.00080378 0.000724796 0.0269845 0.0245257 38 4073 35 6.79088e+06 296384 678818. 2348.85 5.24 0.318966 0.27969 25966 169698 -1 3056 21 1712 5152 248741 57087 7.5658 7.5658 -165.417 -7.5658 0 0 902133. 3121.57 0.36 0.11 0.17 -1 -1 0.36 0.0450188 0.0407414 167 232 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 9.47 vpr 64.73 MiB -1 -1 0.20 20744 12 0.25 -1 -1 36576 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 1.86 1043 10406 3634 4844 1928 64.7 MiB 0.09 0.00 5.94658 -115.53 -5.94658 5.94658 0.96 0.000536935 0.000484592 0.0369367 0.033457 36 3200 28 6.79088e+06 255968 648988. 2245.63 4.08 0.196411 0.173323 25390 158009 -1 2516 18 1171 3446 200037 45777 6.19718 6.19718 -131.977 -6.19718 0 0 828058. 2865.25 0.34 0.08 0.14 -1 -1 0.34 0.0293826 0.0264887 121 155 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 16.24 vpr 64.39 MiB -1 -1 0.21 20124 11 0.23 -1 -1 36072 -1 -1 19 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65936 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.9 MiB 2.52 930 10370 3065 5403 1902 64.4 MiB 0.08 0.00 6.04382 -110.353 -6.04382 6.04382 1.01 0.000519012 0.000471392 0.0361597 0.0330654 30 2519 38 6.79088e+06 255968 556674. 1926.21 10.12 0.296614 0.261525 24526 138013 -1 2099 15 952 2428 133293 30994 6.29442 6.29442 -128.814 -6.29442 0 0 706193. 2443.58 0.31 0.06 0.13 -1 -1 0.31 0.0222893 0.0201497 104 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 38.80 vpr 65.61 MiB -1 -1 0.28 21596 13 0.54 -1 -1 36332 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67188 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.9 MiB 2.01 1668 11346 2946 7300 1100 65.6 MiB 0.13 0.00 6.55742 -139.517 -6.55742 6.55742 0.99 0.000860986 0.000780421 0.055642 0.0505967 40 4472 36 6.79088e+06 350272 706193. 2443.58 32.35 0.511762 0.452477 26254 175826 -1 4156 34 2113 6801 754838 264404 7.12467 7.12467 -161.23 -7.12467 0 0 926341. 3205.33 0.38 0.30 0.17 -1 -1 0.38 0.0800237 0.0723261 188 285 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 8.71 vpr 64.88 MiB -1 -1 0.24 20936 14 0.33 -1 -1 36512 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 26.5 MiB 2.15 1179 6781 1531 4436 814 64.9 MiB 0.07 0.00 6.928 -140.763 -6.928 6.928 0.99 0.000626809 0.000567006 0.0278904 0.025387 34 3332 45 6.79088e+06 296384 618332. 2139.56 2.81 0.170235 0.14953 25102 150614 -1 2589 17 1202 3257 185696 42095 7.1786 7.1786 -158.513 -7.1786 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0301314 0.0271245 130 184 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 8.28 vpr 64.41 MiB -1 -1 0.23 20632 12 0.19 -1 -1 35992 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65956 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 26.0 MiB 2.03 1083 7380 1749 5397 234 64.4 MiB 0.07 0.00 6.02467 -131.016 -6.02467 6.02467 1.02 0.000561052 0.000499554 0.026266 0.0239495 38 2692 30 6.79088e+06 242496 678818. 2348.85 2.61 0.172348 0.152339 25966 169698 -1 2268 16 995 2503 140175 31374 6.40057 6.40057 -150.093 -6.40057 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0242919 0.0219647 109 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 9.66 vpr 64.84 MiB -1 -1 0.23 20560 13 0.36 -1 -1 36376 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 26.5 MiB 1.74 1283 11296 3359 5947 1990 64.8 MiB 0.10 0.00 6.83846 -143.904 -6.83846 6.83846 0.97 0.000612509 0.000555266 0.0428736 0.0390264 36 3413 29 6.79088e+06 242496 648988. 2245.63 4.14 0.206577 0.180951 25390 158009 -1 2836 17 1224 3268 208411 45710 7.71556 7.71556 -168.252 -7.71556 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.0301196 0.0273073 128 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 26.76 vpr 65.27 MiB -1 -1 0.24 20836 13 0.41 -1 -1 37008 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66832 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 26.9 MiB 2.11 1403 6423 1369 4680 374 65.3 MiB 0.07 0.00 6.20144 -130.326 -6.20144 6.20144 0.97 0.000702981 0.000639882 0.0289814 0.0263204 40 3756 25 6.79088e+06 323328 706193. 2443.58 20.71 0.404745 0.354793 26254 175826 -1 3508 19 1845 5378 369126 78844 6.41628 6.41628 -151.159 -6.41628 0 0 926341. 3205.33 0.37 0.13 0.18 -1 -1 0.37 0.0416249 0.0377891 157 228 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 7.62 vpr 65.16 MiB -1 -1 0.21 20972 11 0.29 -1 -1 36680 -1 -1 22 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 26.6 MiB 1.95 1269 6672 1513 4513 646 65.2 MiB 0.06 0.00 5.62872 -119.968 -5.62872 5.62872 0.98 0.000596799 0.000540185 0.0268215 0.0243672 38 2876 18 6.79088e+06 296384 678818. 2348.85 2.02 0.146853 0.13035 25966 169698 -1 2601 17 1216 3810 186531 42917 6.00462 6.00462 -135.505 -6.00462 0 0 902133. 3121.57 0.35 0.08 0.15 -1 -1 0.35 0.0311196 0.0281742 141 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 8.91 vpr 65.03 MiB -1 -1 0.23 20760 15 0.45 -1 -1 36380 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66592 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 26.5 MiB 1.84 1355 10103 2815 6633 655 65.0 MiB 0.10 0.00 7.17871 -154.666 -7.17871 7.17871 0.97 0.000722359 0.000653895 0.041541 0.0375855 40 3251 20 6.79088e+06 296384 706193. 2443.58 3.07 0.24364 0.217203 26254 175826 -1 3222 21 1557 4872 324014 68469 7.79823 7.79823 -180.796 -7.79823 0 0 926341. 3205.33 0.38 0.12 0.17 -1 -1 0.38 0.0447729 0.040492 147 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 11.28 vpr 64.89 MiB -1 -1 0.25 20916 13 0.42 -1 -1 36316 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 26.4 MiB 2.48 1344 7339 1804 5002 533 64.9 MiB 0.08 0.00 6.54861 -144.766 -6.54861 6.54861 1.01 0.000675403 0.000611514 0.0320962 0.0290916 38 3378 19 6.79088e+06 282912 678818. 2348.85 4.82 0.260468 0.22843 25966 169698 -1 2942 19 1416 4345 219516 49937 7.01061 7.01061 -167.176 -7.01061 0 0 902133. 3121.57 0.36 0.09 0.16 -1 -1 0.36 0.0353464 0.0319397 143 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 10.61 vpr 64.70 MiB -1 -1 0.20 20432 12 0.25 -1 -1 36620 -1 -1 18 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 26.2 MiB 2.08 953 5994 1224 4510 260 64.7 MiB 0.05 0.00 6.04731 -121.276 -6.04731 6.04731 1.01 0.000560246 0.000516978 0.0220242 0.0201316 36 3045 38 6.79088e+06 242496 648988. 2245.63 4.89 0.177405 0.155487 25390 158009 -1 2374 16 1205 2975 172683 40552 6.71301 6.71301 -148.105 -6.71301 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0265063 0.0239764 111 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 7.36 vpr 64.52 MiB -1 -1 0.19 20384 11 0.18 -1 -1 36044 -1 -1 14 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 26.1 MiB 1.77 1029 6386 1473 4559 354 64.5 MiB 0.06 0.00 5.49223 -122.531 -5.49223 5.49223 1.00 0.000512003 0.000458881 0.0231506 0.0209168 30 3051 36 6.79088e+06 188608 556674. 1926.21 2.17 0.12104 0.106769 24526 138013 -1 2369 16 1071 2621 151230 34000 5.90384 5.90384 -145.157 -5.90384 0 0 706193. 2443.58 0.30 0.06 0.12 -1 -1 0.30 0.0237309 0.0213102 98 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 18.50 vpr 64.95 MiB -1 -1 0.23 20284 13 0.41 -1 -1 36728 -1 -1 21 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 26.4 MiB 1.40 1338 9600 2499 5756 1345 64.9 MiB 0.10 0.00 6.6851 -135.894 -6.6851 6.6851 1.05 0.000832794 0.000748053 0.0424549 0.0384248 36 3616 38 6.79088e+06 282912 648988. 2245.63 13.09 0.402458 0.356213 25390 158009 -1 2996 21 1742 5254 321346 68728 7.09666 7.09666 -154.173 -7.09666 0 0 828058. 2865.25 0.34 0.12 0.15 -1 -1 0.34 0.0416016 0.0375123 143 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 8.60 vpr 64.53 MiB -1 -1 0.20 20556 10 0.20 -1 -1 36600 -1 -1 17 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 26.1 MiB 2.33 988 5058 1160 3582 316 64.5 MiB 0.05 0.00 4.95172 -105.077 -4.95172 4.95172 1.00 0.000609114 0.00055826 0.0185813 0.0169434 34 2710 40 6.79088e+06 229024 618332. 2139.56 2.73 0.160002 0.139794 25102 150614 -1 2312 20 1169 3109 190355 42641 5.40253 5.40253 -125.971 -5.40253 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0265479 0.0237748 101 130 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 12.00 vpr 64.53 MiB -1 -1 0.21 20560 14 0.24 -1 -1 36136 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 26.0 MiB 3.31 933 12898 3769 6963 2166 64.5 MiB 0.10 0.00 6.49828 -129.336 -6.49828 6.49828 0.99 0.000531396 0.000479353 0.0430528 0.0390691 36 3109 45 6.79088e+06 242496 648988. 2245.63 5.02 0.205085 0.17994 25390 158009 -1 2284 18 1193 3104 183280 42901 6.62358 6.62358 -149.696 -6.62358 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.0282991 0.0255736 110 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 12.03 vpr 64.76 MiB -1 -1 0.23 20816 13 0.34 -1 -1 36416 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 26.4 MiB 3.12 1267 8363 2102 5398 863 64.8 MiB 0.08 0.00 6.42326 -138.516 -6.42326 6.42326 1.00 0.00062842 0.000565726 0.034841 0.0318193 42 3432 28 6.79088e+06 269440 744469. 2576.02 4.87 0.276128 0.242986 26542 182613 -1 2850 33 1304 3493 526734 256599 6.72425 6.72425 -157.345 -6.72425 0 0 949917. 3286.91 0.39 0.22 0.18 -1 -1 0.39 0.0497241 0.0446225 125 173 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 11.46 vpr 64.46 MiB -1 -1 0.21 20588 12 0.19 -1 -1 36076 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 26.1 MiB 4.20 872 7648 2130 4159 1359 64.5 MiB 0.06 0.00 5.70363 -118.952 -5.70363 5.70363 0.98 0.000502032 0.000455652 0.0259536 0.0236223 36 2889 45 6.79088e+06 229024 648988. 2245.63 3.62 0.176519 0.154154 25390 158009 -1 2107 31 1141 2954 294353 106953 5.95074 5.95074 -136.677 -5.95074 0 0 828058. 2865.25 0.35 0.13 0.16 -1 -1 0.35 0.0384722 0.0342838 99 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 8.75 vpr 64.97 MiB -1 -1 0.20 20828 12 0.23 -1 -1 36228 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 26.5 MiB 2.31 1139 8448 1976 6216 256 65.0 MiB 0.08 0.00 6.07958 -131.841 -6.07958 6.07958 0.97 0.000589494 0.00053689 0.034483 0.0310111 38 2828 31 6.79088e+06 242496 678818. 2348.85 2.84 0.215705 0.190655 25966 169698 -1 2412 16 1221 3560 183588 42224 6.45548 6.45548 -148.546 -6.45548 0 0 902133. 3121.57 0.35 0.07 0.15 -1 -1 0.35 0.0299783 0.0271003 130 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 9.28 vpr 64.98 MiB -1 -1 0.24 20808 13 0.37 -1 -1 36632 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 26.4 MiB 1.43 1350 7103 1668 4953 482 65.0 MiB 0.07 0.00 6.60438 -142.417 -6.60438 6.60438 1.01 0.000637237 0.000576625 0.0304415 0.027697 38 3487 44 6.79088e+06 269440 678818. 2348.85 3.92 0.2282 0.201474 25966 169698 -1 2756 16 1280 3555 180551 41191 6.60438 6.60438 -155.896 -6.60438 0 0 902133. 3121.57 0.36 0.08 0.17 -1 -1 0.36 0.0309166 0.0281494 143 189 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 11.29 vpr 64.61 MiB -1 -1 0.21 20592 11 0.20 -1 -1 36316 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 26.1 MiB 2.36 984 12636 3994 6254 2388 64.6 MiB 0.11 0.00 5.1955 -121.732 -5.1955 5.1955 1.01 0.000541097 0.000486407 0.043401 0.0392238 46 2639 19 6.79088e+06 215552 828058. 2865.25 5.17 0.215372 0.188363 27406 200422 -1 2364 15 1151 3016 165503 37594 5.4461 5.4461 -139.024 -5.4461 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0233961 0.0211454 106 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 10.94 vpr 64.73 MiB -1 -1 0.20 20488 13 0.27 -1 -1 36380 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 26.2 MiB 3.20 1069 12923 4695 6129 2099 64.7 MiB 0.11 0.00 6.33372 -138.057 -6.33372 6.33372 0.97 0.00060101 0.00054503 0.048168 0.043737 38 3223 22 6.79088e+06 202080 678818. 2348.85 4.00 0.187943 0.165048 25966 169698 -1 2407 16 1147 3049 159050 36761 6.58432 6.58432 -155.348 -6.58432 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0295893 0.0269508 113 159 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 10.45 vpr 64.94 MiB -1 -1 0.21 20560 13 0.32 -1 -1 36668 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66496 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 26.5 MiB 1.45 1281 8723 2468 5410 845 64.9 MiB 0.09 0.00 6.57319 -147.944 -6.57319 6.57319 1.02 0.000659414 0.000598736 0.0362212 0.0328479 44 3279 19 6.79088e+06 255968 787024. 2723.27 5.09 0.261368 0.230364 27118 194962 -1 2760 16 1316 3611 190663 43625 6.65153 6.65153 -160.76 -6.65153 0 0 997811. 3452.63 0.41 0.08 0.19 -1 -1 0.41 0.0317034 0.0288919 136 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 20.13 vpr 64.59 MiB -1 -1 0.22 20936 11 0.24 -1 -1 36632 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 26.0 MiB 2.56 1006 11604 4252 5643 1709 64.6 MiB 0.10 0.00 5.00754 -104.951 -5.00754 5.00754 1.02 0.00057216 0.000516798 0.0420451 0.038065 38 2820 21 6.79088e+06 255968 678818. 2348.85 13.81 0.303538 0.265677 25966 169698 -1 2244 15 1073 3077 166117 37770 5.63404 5.63404 -122.931 -5.63404 0 0 902133. 3121.57 0.37 0.07 0.16 -1 -1 0.37 0.0267878 0.0243653 116 154 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 17.99 vpr 65.06 MiB -1 -1 0.26 21232 14 0.41 -1 -1 36320 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 26.6 MiB 1.86 1360 7767 1748 4876 1143 65.1 MiB 0.09 0.00 7.31171 -157.174 -7.31171 7.31171 1.01 0.000791861 0.000722171 0.0360022 0.0328931 30 4170 33 6.79088e+06 309856 556674. 1926.21 12.20 0.311952 0.277544 24526 138013 -1 3218 21 1766 4534 250555 56892 7.79817 7.79817 -183.322 -7.79817 0 0 706193. 2443.58 0.30 0.11 0.13 -1 -1 0.30 0.045531 0.0412823 159 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 10.58 vpr 64.43 MiB -1 -1 0.16 20188 12 0.18 -1 -1 36952 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 25.9 MiB 2.76 1058 14144 4654 7267 2223 64.4 MiB 0.10 0.00 5.70019 -131.82 -5.70019 5.70019 0.97 0.000443612 0.000398598 0.0409731 0.0370435 46 2467 31 6.79088e+06 255968 828058. 2865.25 4.26 0.22165 0.193878 27406 200422 -1 2154 14 982 2315 129268 28826 5.82549 5.82549 -142.131 -5.82549 0 0 1.01997e+06 3529.29 0.40 0.05 0.18 -1 -1 0.40 0.0213354 0.0193448 106 129 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 12.60 vpr 64.90 MiB -1 -1 0.25 21284 13 0.37 -1 -1 36476 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 26.5 MiB 1.78 1257 6672 1505 4334 833 64.9 MiB 0.07 0.00 7.16403 -147.507 -7.16403 7.16403 1.03 0.000659443 0.00059934 0.0284977 0.0260253 36 3760 48 6.79088e+06 269440 648988. 2245.63 6.94 0.221806 0.194764 25390 158009 -1 3036 19 1393 3900 222139 50774 7.16403 7.16403 -164.771 -7.16403 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0319641 0.0287894 136 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 8.67 vpr 64.59 MiB -1 -1 0.21 21100 13 0.22 -1 -1 36008 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 26.1 MiB 1.34 1087 13992 4322 7441 2229 64.6 MiB 0.10 0.00 6.46246 -142.744 -6.46246 6.46246 0.97 0.000352882 0.000323968 0.0432859 0.0392849 36 3063 24 6.79088e+06 269440 648988. 2245.63 3.78 0.180587 0.158374 25390 158009 -1 2408 18 1044 2626 147157 34182 6.71306 6.71306 -161.112 -6.71306 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.026025 0.0233591 107 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 9.80 vpr 64.86 MiB -1 -1 0.24 20660 12 0.27 -1 -1 36600 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 26.5 MiB 1.92 1275 7283 1750 5148 385 64.9 MiB 0.07 0.00 6.08307 -135.922 -6.08307 6.08307 0.97 0.000610965 0.000553166 0.0294309 0.0266772 36 3216 18 6.79088e+06 255968 648988. 2245.63 4.19 0.190373 0.168055 25390 158009 -1 2792 18 1340 3848 226937 49976 6.49817 6.49817 -154.816 -6.49817 0 0 828058. 2865.25 0.34 0.09 0.15 -1 -1 0.34 0.0333276 0.0301506 128 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 33.92 vpr 65.39 MiB -1 -1 0.24 21584 15 0.63 -1 -1 36924 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66964 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 1.44 1577 12761 3228 7341 2192 65.4 MiB 0.14 0.00 7.81291 -164.314 -7.81291 7.81291 1.01 0.000869088 0.000779696 0.0618361 0.0562945 40 4220 23 6.79088e+06 336800 706193. 2443.58 28.00 0.557252 0.495239 26254 175826 -1 3781 36 2518 7709 675176 217865 8.47861 8.47861 -191.257 -8.47861 0 0 926341. 3205.33 0.38 0.27 0.17 -1 -1 0.38 0.0781193 0.0705045 183 255 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 9.32 vpr 63.96 MiB -1 -1 0.18 20044 10 0.12 -1 -1 36068 -1 -1 12 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65496 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 25.6 MiB 1.89 807 5654 1363 3953 338 64.0 MiB 0.05 0.00 4.08102 -101.595 -4.08102 4.08102 1.00 0.000393798 0.000357704 0.0166063 0.0151482 36 2001 18 6.79088e+06 161664 648988. 2245.63 4.07 0.127037 0.110657 25390 158009 -1 1788 14 674 1576 105487 22802 4.25666 4.25666 -115.332 -4.25666 0 0 828058. 2865.25 0.32 0.04 0.15 -1 -1 0.32 0.0155918 0.0139992 66 81 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 7.99 vpr 64.54 MiB -1 -1 0.20 20476 13 0.22 -1 -1 36252 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 26.0 MiB 1.94 1014 7853 1939 4885 1029 64.5 MiB 0.07 0.00 6.47021 -136.266 -6.47021 6.47021 0.98 0.000539157 0.000490316 0.0280103 0.0255431 36 2725 19 6.79088e+06 229024 648988. 2245.63 2.47 0.153388 0.134228 25390 158009 -1 2296 16 1062 2689 146494 33771 6.59551 6.59551 -149.884 -6.59551 0 0 828058. 2865.25 0.35 0.07 0.15 -1 -1 0.35 0.0268292 0.0243322 103 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 11.32 vpr 64.77 MiB -1 -1 0.20 20612 12 0.24 -1 -1 36416 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 26.2 MiB 2.48 1199 7736 2108 5011 617 64.8 MiB 0.07 0.00 5.91852 -134.148 -5.91852 5.91852 0.97 0.000625705 0.000562419 0.0301486 0.0271835 36 3277 40 6.79088e+06 242496 648988. 2245.63 5.23 0.26081 0.228382 25390 158009 -1 2774 18 1292 3167 215082 46315 6.24403 6.24403 -158.176 -6.24403 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.030421 0.0275071 117 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 8.30 vpr 64.31 MiB -1 -1 0.17 20468 9 0.15 -1 -1 36280 -1 -1 18 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 25.8 MiB 1.03 748 12557 4155 7233 1169 64.3 MiB 0.08 0.00 4.14599 -82.3614 -4.14599 4.14599 0.98 0.000381224 0.000344708 0.0343683 0.0311003 36 2077 21 6.79088e+06 242496 648988. 2245.63 3.89 0.208082 0.181439 25390 158009 -1 1728 17 712 1966 118188 26376 4.307 4.307 -98.2556 -4.307 0 0 828058. 2865.25 0.33 0.05 0.14 -1 -1 0.33 0.0206596 0.0185783 86 102 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 11.10 vpr 65.08 MiB -1 -1 0.24 20824 12 0.33 -1 -1 36236 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 26.6 MiB 1.93 1348 13291 3597 7574 2120 65.1 MiB 0.13 0.00 6.29447 -138.979 -6.29447 6.29447 1.03 0.000722297 0.000652999 0.0569613 0.0516711 46 3480 31 6.79088e+06 282912 828058. 2865.25 5.11 0.341665 0.303733 27406 200422 -1 2966 19 1517 4307 233358 51243 6.54507 6.54507 -156.807 -6.54507 0 0 1.01997e+06 3529.29 0.42 0.10 0.19 -1 -1 0.42 0.038968 0.0354183 143 205 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 10.94 vpr 64.98 MiB -1 -1 0.26 21468 13 0.38 -1 -1 36180 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66540 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 26.5 MiB 2.33 1247 13291 4075 7108 2108 65.0 MiB 0.12 0.00 7.1786 -147.221 -7.1786 7.1786 1.00 0.000655047 0.000593251 0.0529916 0.0480708 42 3817 37 6.79088e+06 296384 744469. 2576.02 4.64 0.336498 0.298694 26542 182613 -1 2871 16 1270 3673 226977 51255 7.4292 7.4292 -164.387 -7.4292 0 0 949917. 3286.91 0.38 0.08 0.17 -1 -1 0.38 0.0309463 0.0281526 147 197 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.87 vpr 64.89 MiB -1 -1 0.16 20524 1 0.03 -1 -1 33788 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 26.5 MiB 3.71 1177 14964 4681 8716 1567 64.9 MiB 0.14 0.00 4.34064 -135.503 -4.34064 4.34064 0.97 0.000530122 0.000485565 0.0401952 0.0367217 34 2809 23 6.87369e+06 363320 618332. 2139.56 1.75 0.159752 0.140179 25762 151098 -1 2380 24 1679 2542 167125 39812 4.5646 4.5646 -154.478 -4.5646 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0262073 0.0230064 142 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.17 vpr 65.18 MiB -1 -1 0.18 20392 1 0.03 -1 -1 33972 -1 -1 24 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 26.7 MiB 3.05 922 10481 2952 6350 1179 65.2 MiB 0.10 0.00 3.52915 -107.744 -3.52915 3.52915 1.02 0.000543741 0.000496277 0.030427 0.0277814 34 2561 26 6.87369e+06 335372 618332. 2139.56 1.71 0.129622 0.113516 25762 151098 -1 2074 22 1903 2892 191846 47467 4.20536 4.20536 -139.833 -4.20536 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0253871 0.0224135 138 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.14 vpr 64.89 MiB -1 -1 0.16 20544 1 0.03 -1 -1 33768 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.3 MiB 3.10 992 11617 3428 6996 1193 64.9 MiB 0.10 0.00 3.45035 -98.6494 -3.45035 3.45035 1.04 0.000446805 0.000410383 0.0308911 0.0281712 34 2583 35 6.87369e+06 293451 618332. 2139.56 1.64 0.123838 0.108737 25762 151098 -1 2000 22 1294 1717 118595 28731 3.96006 3.96006 -120.797 -3.96006 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0229921 0.0203577 124 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.39 vpr 64.66 MiB -1 -1 0.16 20356 1 0.03 -1 -1 33668 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 26.1 MiB 1.21 898 16572 4449 11023 1100 64.7 MiB 0.14 0.00 3.56482 -101.305 -3.56482 3.56482 0.99 0.000471831 0.00043101 0.0406 0.0370005 34 2210 31 6.87369e+06 405241 618332. 2139.56 1.83 0.151209 0.13202 25762 151098 -1 1930 20 1441 2644 175048 41217 3.7494 3.7494 -121.112 -3.7494 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0211139 0.0187061 124 25 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.34 vpr 65.05 MiB -1 -1 0.16 20392 1 0.03 -1 -1 33748 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 26.7 MiB 1.51 1028 16819 5296 9779 1744 65.0 MiB 0.15 0.00 3.70412 -112.048 -3.70412 3.70412 1.02 0.000516064 0.00046196 0.0443489 0.040322 28 2670 20 6.87369e+06 377294 531479. 1839.03 1.43 0.121863 0.108635 24610 126494 -1 2243 22 1734 3470 240622 58872 3.8264 3.8264 -135.812 -3.8264 0 0 648988. 2245.63 0.28 0.09 0.12 -1 -1 0.28 0.0265355 0.0234643 131 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 8.57 vpr 65.11 MiB -1 -1 0.15 20680 1 0.03 -1 -1 33748 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66676 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 26.7 MiB 1.74 986 15643 5357 7618 2668 65.1 MiB 0.13 0.00 2.80487 -97.9383 -2.80487 2.80487 0.99 0.000477283 0.000432173 0.0392037 0.0356029 34 2703 39 6.87369e+06 419215 618332. 2139.56 3.43 0.193047 0.167908 25762 151098 -1 1910 18 1246 1993 131828 32260 3.09961 3.09961 -115.584 -3.09961 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0226099 0.0200804 136 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 6.90 vpr 64.54 MiB -1 -1 0.15 20140 1 0.03 -1 -1 34236 -1 -1 19 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 26.0 MiB 2.71 652 9374 2426 6061 887 64.5 MiB 0.08 0.00 2.94598 -86.1959 -2.94598 2.94598 0.98 0.00040418 0.000369495 0.0249546 0.0228792 28 1808 30 6.87369e+06 265503 531479. 1839.03 0.98 0.0826134 0.0724759 24610 126494 -1 1517 22 1146 1921 132892 31277 3.01326 3.01326 -104.75 -3.01326 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0197662 0.0173841 97 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 5.16 vpr 64.67 MiB -1 -1 0.17 20196 1 0.03 -1 -1 34016 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.1 MiB 1.00 999 14999 4064 8375 2560 64.7 MiB 0.10 0.00 2.74825 -87.8958 -2.74825 2.74825 0.98 0.000434638 0.000395462 0.0291757 0.0265308 28 2253 21 6.87369e+06 447163 531479. 1839.03 0.94 0.0837238 0.0735558 24610 126494 -1 2124 20 1167 2027 160019 35454 2.80696 2.80696 -104.353 -2.80696 0 0 648988. 2245.63 0.27 0.06 0.13 -1 -1 0.27 0.0195331 0.0171624 119 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.75 vpr 64.75 MiB -1 -1 0.15 20272 1 0.03 -1 -1 33992 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 26.2 MiB 2.83 917 8852 1937 6476 439 64.8 MiB 0.07 0.00 2.65757 -94.7492 -2.65757 2.65757 1.00 0.000470603 0.000430278 0.025281 0.0231464 34 2323 20 6.87369e+06 237555 618332. 2139.56 1.61 0.135731 0.119386 25762 151098 -1 2027 18 1205 1735 136615 32162 3.19191 3.19191 -120.194 -3.19191 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.0201008 0.0179351 113 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.44 vpr 64.71 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33556 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 26.3 MiB 4.55 889 10056 2818 6482 756 64.7 MiB 0.09 0.00 3.21683 -110.53 -3.21683 3.21683 1.00 0.00046968 0.000429948 0.0287489 0.0262693 34 2192 23 6.87369e+06 223581 618332. 2139.56 1.58 0.128949 0.112382 25762 151098 -1 1796 22 1248 2103 150186 35472 3.07126 3.07126 -123.789 -3.07126 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220691 0.019436 107 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.28 vpr 64.45 MiB -1 -1 0.15 20152 1 0.03 -1 -1 33700 -1 -1 16 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66000 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 26.1 MiB 3.52 737 12694 3600 8055 1039 64.5 MiB 0.10 0.00 3.28893 -98.4024 -3.28893 3.28893 0.99 0.000447728 0.000407278 0.0357576 0.0325853 34 1826 24 6.87369e+06 223581 618332. 2139.56 1.54 0.133871 0.116583 25762 151098 -1 1551 22 985 1650 114157 27385 2.95396 2.95396 -108.82 -2.95396 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0205951 0.0180308 98 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 7.41 vpr 64.68 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33444 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66236 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.3 MiB 2.59 867 9181 2335 6374 472 64.7 MiB 0.07 0.00 2.8828 -91.9305 -2.8828 2.8828 1.00 0.000504833 0.000457935 0.0229776 0.0209028 34 2216 30 6.87369e+06 237555 618332. 2139.56 1.56 0.121264 0.105224 25762 151098 -1 1813 22 1087 1561 122922 29866 2.93031 2.93031 -112.798 -2.93031 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0207033 0.0182625 107 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.90 vpr 65.14 MiB -1 -1 0.16 20440 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.7 MiB 4.43 1138 15447 4537 8733 2177 65.1 MiB 0.15 0.00 3.36593 -113.586 -3.36593 3.36593 1.03 0.000539406 0.000485577 0.0461013 0.0419692 34 2983 26 6.87369e+06 321398 618332. 2139.56 1.95 0.189399 0.167998 25762 151098 -1 2349 21 1886 2901 224046 50434 3.22961 3.22961 -127.661 -3.22961 0 0 787024. 2723.27 0.34 0.09 0.15 -1 -1 0.34 0.0279714 0.0250075 142 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.37 vpr 64.89 MiB -1 -1 0.16 20616 1 0.03 -1 -1 33776 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66452 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 26.5 MiB 2.89 998 10895 2604 7465 826 64.9 MiB 0.11 0.00 3.88148 -119.939 -3.88148 3.88148 0.98 0.000525743 0.000479835 0.0284034 0.0259517 32 2550 39 6.87369e+06 433189 586450. 2029.24 1.14 0.111381 0.0976126 25474 144626 -1 2094 23 1695 2766 193816 46863 3.88246 3.88246 -138.427 -3.88246 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0265057 0.023304 133 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.06 vpr 64.55 MiB -1 -1 0.16 20232 1 0.03 -1 -1 33660 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66096 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 26.0 MiB 1.89 770 7992 2105 5116 771 64.5 MiB 0.06 0.00 2.63557 -83.4646 -2.63557 2.63557 0.99 0.00037761 0.00034424 0.0199698 0.0182771 32 2039 21 6.87369e+06 265503 586450. 2029.24 0.96 0.0693817 0.0609471 25474 144626 -1 1772 22 1091 1758 142486 33123 3.06661 3.06661 -100.051 -3.06661 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.0185271 0.0163363 94 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 7.72 vpr 65.24 MiB -1 -1 0.16 20940 1 0.03 -1 -1 34004 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 26.8 MiB 2.41 1005 16858 5571 8447 2840 65.2 MiB 0.15 0.00 2.9366 -101.257 -2.9366 2.9366 1.02 0.000513403 0.000466527 0.0481765 0.0439457 34 2580 22 6.87369e+06 335372 618332. 2139.56 1.81 0.173117 0.152886 25762 151098 -1 2097 23 1686 2926 217132 49880 3.11061 3.11061 -120.66 -3.11061 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.0288263 0.0254559 135 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.23 vpr 64.96 MiB -1 -1 0.16 20940 1 0.03 -1 -1 33972 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 26.6 MiB 4.38 1188 11617 3111 7417 1089 65.0 MiB 0.10 0.00 3.24063 -110.851 -3.24063 3.24063 0.92 0.000495993 0.000456126 0.031603 0.029013 34 2957 23 6.87369e+06 293451 618332. 2139.56 1.70 0.154703 0.136884 25762 151098 -1 2401 19 1559 2238 174291 39089 3.35611 3.35611 -128.551 -3.35611 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0230696 0.0206234 140 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.32 vpr 64.83 MiB -1 -1 0.15 20388 1 0.03 -1 -1 33548 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66384 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 26.3 MiB 2.99 863 15410 4744 8645 2021 64.8 MiB 0.12 0.00 2.46506 -93.4938 -2.46506 2.46506 1.01 0.000479451 0.000437969 0.0371409 0.0338997 28 2057 18 6.87369e+06 391268 531479. 1839.03 1.05 0.100882 0.0892974 24610 126494 -1 1865 19 1150 1862 139590 32128 2.31317 2.31317 -107.155 -2.31317 0 0 648988. 2245.63 0.26 0.06 0.12 -1 -1 0.26 0.0207228 0.0182867 109 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 5.79 vpr 64.29 MiB -1 -1 0.15 20004 1 0.03 -1 -1 33772 -1 -1 14 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65828 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 25.9 MiB 0.71 462 11276 4737 5817 722 64.3 MiB 0.07 0.00 2.10903 -68.8572 -2.10903 2.10903 0.99 0.000359638 0.000328556 0.0264959 0.0242348 34 1365 21 6.87369e+06 195634 618332. 2139.56 1.88 0.106226 0.0927836 25762 151098 -1 1104 20 690 950 76096 18762 2.07502 2.07502 -82.2957 -2.07502 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0156823 0.0137928 71 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.07 vpr 64.87 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33904 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66424 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 26.4 MiB 3.30 918 11830 3707 7291 832 64.9 MiB 0.10 0.00 3.93483 -123.602 -3.93483 3.93483 1.00 0.000419696 0.000381719 0.0297193 0.0270677 34 2233 21 6.87369e+06 265503 618332. 2139.56 1.53 0.124135 0.108029 25762 151098 -1 1854 23 1282 1908 118796 30215 3.67321 3.67321 -137.451 -3.67321 0 0 787024. 2723.27 0.32 0.06 0.14 -1 -1 0.32 0.021361 0.0188106 116 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.39 vpr 64.95 MiB -1 -1 0.15 20312 1 0.03 -1 -1 33908 -1 -1 35 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 26.6 MiB 1.04 1067 18111 5017 10898 2196 64.9 MiB 0.14 0.00 3.37999 -112.727 -3.37999 3.37999 0.97 0.000486899 0.000443204 0.0423989 0.0386919 32 2564 28 6.87369e+06 489084 586450. 2029.24 1.04 0.116158 0.102885 25474 144626 -1 2132 24 1588 2328 177384 40971 3.7954 3.7954 -135.85 -3.7954 0 0 744469. 2576.02 0.30 0.08 0.13 -1 -1 0.30 0.0275364 0.0242613 137 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 8.03 vpr 65.28 MiB -1 -1 0.16 20528 1 0.03 -1 -1 33916 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66848 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 26.8 MiB 2.55 1218 14639 4247 8257 2135 65.3 MiB 0.14 0.00 3.42215 -109.966 -3.42215 3.42215 1.01 0.000537196 0.000490845 0.0449348 0.0411566 34 3095 24 6.87369e+06 307425 618332. 2139.56 1.99 0.188413 0.166854 25762 151098 -1 2520 20 1645 2600 205281 46872 4.01106 4.01106 -136.283 -4.01106 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0283655 0.0253677 142 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 7.95 vpr 64.29 MiB -1 -1 0.13 20092 1 0.03 -1 -1 34244 -1 -1 17 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65828 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 25.9 MiB 2.02 412 9871 4066 5118 687 64.3 MiB 0.05 0.00 2.06503 -58.1579 -2.06503 2.06503 0.95 0.000287677 0.000261614 0.0198018 0.018042 30 1087 21 6.87369e+06 237555 556674. 1926.21 2.86 0.0996421 0.0861844 25186 138497 -1 877 19 553 789 49273 12834 2.19412 2.19412 -72.8097 -2.19412 0 0 706193. 2443.58 0.30 0.03 0.13 -1 -1 0.30 0.0133089 0.0117312 67 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.92 vpr 64.71 MiB -1 -1 0.14 20360 1 0.03 -1 -1 33808 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.2 MiB 1.11 851 10455 2880 5513 2062 64.7 MiB 0.08 0.00 3.55682 -101.679 -3.55682 3.55682 0.91 0.000413711 0.000379129 0.0246038 0.0224924 34 2405 23 6.87369e+06 321398 618332. 2139.56 1.75 0.134406 0.11869 25762 151098 -1 1916 22 1539 2749 213233 49275 3.7021 3.7021 -119.802 -3.7021 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0220562 0.0195458 119 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.77 vpr 64.16 MiB -1 -1 0.14 20028 1 0.03 -1 -1 33492 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65696 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.9 MiB 0.52 551 10636 4310 5626 700 64.2 MiB 0.06 0.00 2.08703 -66.4743 -2.08703 2.08703 0.99 0.000307136 0.00028055 0.0213795 0.0195381 28 1454 27 6.87369e+06 167686 531479. 1839.03 1.10 0.0664323 0.0582435 24610 126494 -1 1257 21 752 894 75380 18377 2.03582 2.03582 -83.9709 -2.03582 0 0 648988. 2245.63 0.27 0.04 0.13 -1 -1 0.27 0.0138988 0.012228 65 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.24 vpr 64.77 MiB -1 -1 0.15 20256 1 0.03 -1 -1 33800 -1 -1 30 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 26.3 MiB 1.03 1022 16495 4394 10232 1869 64.8 MiB 0.12 0.00 3.51652 -104.603 -3.51652 3.51652 0.98 0.000457317 0.000417807 0.0367459 0.0335474 28 2125 21 6.87369e+06 419215 531479. 1839.03 0.94 0.0945265 0.0836015 24610 126494 -1 1986 18 1108 1772 118184 26822 3.6508 3.6508 -122.006 -3.6508 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0192063 0.0169604 120 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.19 vpr 64.73 MiB -1 -1 0.14 20244 1 0.03 -1 -1 33760 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66284 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.2 MiB 1.00 1024 14783 4090 8961 1732 64.7 MiB 0.11 0.00 2.75925 -91.8235 -2.75925 2.75925 0.99 0.000448075 0.000410912 0.0320072 0.0289499 30 2128 23 6.87369e+06 433189 556674. 1926.21 0.95 0.0904458 0.0792564 25186 138497 -1 1851 17 971 1798 101586 23915 2.72066 2.72066 -106.9 -2.72066 0 0 706193. 2443.58 0.29 0.05 0.12 -1 -1 0.29 0.0177303 0.0157756 130 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 7.27 vpr 65.23 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33708 -1 -1 28 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 26.8 MiB 2.10 1103 17066 5052 9903 2111 65.2 MiB 0.14 0.00 3.71518 -110.968 -3.71518 3.71518 1.02 0.000486265 0.000442602 0.0432026 0.0394892 34 2720 25 6.87369e+06 391268 618332. 2139.56 1.74 0.156109 0.137551 25762 151098 -1 2216 23 1534 2672 204456 46803 3.79646 3.79646 -129.989 -3.79646 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0255068 0.0224976 131 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 7.02 vpr 64.75 MiB -1 -1 0.15 20508 1 0.03 -1 -1 33812 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 26.3 MiB 1.10 765 12636 4413 6263 1960 64.8 MiB 0.10 0.00 2.61357 -91.4633 -2.61357 2.61357 0.99 0.000437651 0.000398492 0.0337386 0.0308345 30 1960 22 6.87369e+06 223581 556674. 1926.21 2.66 0.152121 0.133226 25186 138497 -1 1510 19 758 1168 78623 17919 3.02781 3.02781 -108.932 -3.02781 0 0 706193. 2443.58 0.30 0.05 0.14 -1 -1 0.30 0.0192152 0.0169885 99 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 7.19 vpr 64.58 MiB -1 -1 0.15 20464 1 0.03 -1 -1 33652 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 26.0 MiB 1.45 576 12958 3695 6144 3119 64.6 MiB 0.08 0.00 2.60257 -78.4361 -2.60257 2.60257 1.01 0.000447551 0.000411853 0.0294021 0.02687 36 1662 26 6.87369e+06 363320 648988. 2245.63 2.36 0.146573 0.129956 26050 158493 -1 1310 28 1089 1675 120065 30149 2.88831 2.88831 -92.7261 -2.88831 0 0 828058. 2865.25 0.33 0.06 0.16 -1 -1 0.33 0.0241271 0.0211902 97 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.97 vpr 64.54 MiB -1 -1 0.13 20192 1 0.03 -1 -1 33712 -1 -1 18 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 26.0 MiB 1.00 771 12362 3683 7395 1284 64.5 MiB 0.09 0.00 2.8296 -86.1817 -2.8296 2.8296 0.93 0.000372204 0.000341242 0.0288041 0.0262997 28 2036 21 6.87369e+06 251529 531479. 1839.03 0.97 0.0843313 0.07461 24610 126494 -1 1836 21 1191 2109 166891 38077 2.87696 2.87696 -107.409 -2.87696 0 0 648988. 2245.63 0.26 0.06 0.11 -1 -1 0.26 0.0193844 0.0171553 95 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.13 vpr 64.44 MiB -1 -1 0.14 20192 1 0.03 -1 -1 33724 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.9 MiB 0.85 713 9881 2413 7196 272 64.4 MiB 0.08 0.00 3.20393 -96.1649 -3.20393 3.20393 0.98 0.000414779 0.000377792 0.0252237 0.022977 32 2205 25 6.87369e+06 237555 586450. 2029.24 1.05 0.0847642 0.0745982 25474 144626 -1 1703 21 1301 2108 154665 36780 3.03556 3.03556 -116.364 -3.03556 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.018644 0.0164499 101 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.40 vpr 64.77 MiB -1 -1 0.16 20304 1 0.03 -1 -1 33708 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 26.4 MiB 1.05 695 8009 1713 6016 280 64.8 MiB 0.06 0.00 2.8296 -86.9587 -2.8296 2.8296 0.98 0.00040744 0.000375036 0.0178734 0.0162506 28 1982 28 6.87369e+06 363320 531479. 1839.03 1.17 0.0827845 0.0727254 24610 126494 -1 1746 18 1095 1807 137591 33480 3.06161 3.06161 -112.158 -3.06161 0 0 648988. 2245.63 0.28 0.05 0.11 -1 -1 0.28 0.017661 0.0155369 102 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.20 vpr 64.84 MiB -1 -1 0.16 20196 1 0.03 -1 -1 33752 -1 -1 25 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 26.4 MiB 3.45 738 14072 4747 6705 2620 64.8 MiB 0.10 0.00 2.42106 -79.5498 -2.42106 2.42106 0.97 0.000428664 0.000387012 0.0326551 0.029782 34 1939 15 6.87369e+06 349346 618332. 2139.56 1.48 0.119736 0.104564 25762 151098 -1 1564 17 1055 1555 101512 25686 2.33947 2.33947 -94.2333 -2.33947 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0173234 0.0154148 106 48 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.90 vpr 65.26 MiB -1 -1 0.16 20396 1 0.03 -1 -1 33576 -1 -1 40 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 26.8 MiB 4.22 1219 13280 3569 8194 1517 65.3 MiB 0.13 0.00 3.29679 -102.41 -3.29679 3.29679 0.97 0.000543947 0.000495038 0.0312267 0.028413 28 2894 22 6.87369e+06 558954 531479. 1839.03 1.39 0.107729 0.0948249 24610 126494 -1 2617 19 1491 2849 215708 47776 3.7714 3.7714 -130.818 -3.7714 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0232107 0.0205317 156 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.86 vpr 65.30 MiB -1 -1 0.17 20436 1 0.03 -1 -1 33956 -1 -1 38 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 26.9 MiB 3.64 940 17714 5616 9200 2898 65.3 MiB 0.14 0.00 3.23878 -109.846 -3.23878 3.23878 0.92 0.000513 0.000468583 0.0415707 0.0377245 30 2350 23 6.87369e+06 531006 556674. 1926.21 1.01 0.122108 0.108084 25186 138497 -1 1937 21 1590 2674 149357 35584 3.06546 3.06546 -122.025 -3.06546 0 0 706193. 2443.58 0.28 0.07 0.14 -1 -1 0.28 0.025291 0.0222031 148 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.69 vpr 64.80 MiB -1 -1 0.16 20392 1 0.03 -1 -1 34028 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 26.4 MiB 2.50 810 13206 4271 6460 2475 64.8 MiB 0.11 0.00 3.19663 -96.9818 -3.19663 3.19663 1.02 0.00043329 0.000397202 0.0348978 0.0320189 34 2174 32 6.87369e+06 251529 618332. 2139.56 1.77 0.132115 0.116939 25762 151098 -1 1713 22 1270 1929 154883 36399 3.4088 3.4088 -117.13 -3.4088 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0213533 0.0189005 109 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.77 vpr 64.97 MiB -1 -1 0.17 20448 1 0.03 -1 -1 33816 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66532 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 26.6 MiB 3.05 936 14939 5428 6883 2628 65.0 MiB 0.13 0.00 2.9989 -97.2544 -2.9989 2.9989 0.99 0.000549806 0.000502388 0.0424625 0.0387551 36 2368 22 6.87369e+06 363320 648988. 2245.63 2.30 0.163804 0.143488 26050 158493 -1 1921 21 1517 2578 157393 39421 3.02731 3.02731 -113.564 -3.02731 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0278385 0.0247748 136 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 10.45 vpr 65.39 MiB -1 -1 0.16 20636 1 0.03 -1 -1 33812 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66956 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 26.9 MiB 4.68 1289 8863 2179 6088 596 65.4 MiB 0.09 0.00 4.27988 -132.997 -4.27988 4.27988 1.01 0.000574372 0.000524876 0.0271559 0.0248085 34 3412 24 6.87369e+06 349346 618332. 2139.56 2.33 0.167368 0.147072 25762 151098 -1 2757 22 2235 3277 249084 59014 4.9935 4.9935 -173.062 -4.9935 0 0 787024. 2723.27 0.32 0.10 0.14 -1 -1 0.32 0.0304781 0.0272007 159 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.33 vpr 65.12 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33760 -1 -1 27 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66680 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 26.6 MiB 3.99 1042 16773 5823 7847 3103 65.1 MiB 0.14 0.00 4.46114 -135.657 -4.46114 4.46114 0.99 0.000526006 0.000477786 0.0450402 0.0409493 34 2923 43 6.87369e+06 377294 618332. 2139.56 1.96 0.189666 0.166062 25762 151098 -1 2260 23 1781 2855 219545 50273 4.79975 4.79975 -158.187 -4.79975 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0284582 0.0250834 152 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 8.38 vpr 65.08 MiB -1 -1 0.16 20756 1 0.03 -1 -1 33900 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 26.7 MiB 3.48 1050 11203 3066 7252 885 65.1 MiB 0.10 0.00 3.22963 -108.037 -3.22963 3.22963 0.98 0.000496973 0.000450881 0.0314133 0.0285372 32 3017 25 6.87369e+06 349346 586450. 2029.24 1.57 0.121883 0.106644 25474 144626 -1 2455 23 1686 2771 249456 57067 3.44521 3.44521 -130.073 -3.44521 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.02576 0.0226881 131 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 9.51 vpr 64.69 MiB -1 -1 0.16 20132 1 0.03 -1 -1 33696 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66244 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 26.2 MiB 2.99 966 14724 5049 7601 2074 64.7 MiB 0.11 0.00 3.40015 -96.0689 -3.40015 3.40015 0.98 0.000378132 0.000344573 0.0350411 0.0319927 34 2489 40 6.87369e+06 279477 618332. 2139.56 3.18 0.204661 0.177714 25762 151098 -1 2008 23 1386 2009 139270 32864 3.90306 3.90306 -119.695 -3.90306 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0220535 0.0194602 119 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 7.99 vpr 65.57 MiB -1 -1 0.17 20396 1 0.03 -1 -1 33720 -1 -1 38 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67148 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 27.0 MiB 3.70 1258 20094 5516 12437 2141 65.6 MiB 0.18 0.00 3.82038 -129.116 -3.82038 3.82038 0.93 0.000599457 0.00054941 0.0539345 0.0493521 30 2954 20 6.87369e+06 531006 556674. 1926.21 1.04 0.140254 0.125138 25186 138497 -1 2426 21 1434 2422 141374 32576 3.95376 3.95376 -148.323 -3.95376 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.0287311 0.02546 173 84 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.96 vpr 64.67 MiB -1 -1 0.15 20252 1 0.03 -1 -1 33800 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 26.3 MiB 2.07 856 12733 3747 7816 1170 64.7 MiB 0.09 0.00 2.78925 -88.0035 -2.78925 2.78925 1.05 0.000417559 0.000381119 0.0304038 0.027806 32 1948 22 6.87369e+06 307425 586450. 2029.24 1.49 0.106756 0.0941665 25474 144626 -1 1715 20 1061 1868 135112 31159 2.81396 2.81396 -103.371 -2.81396 0 0 744469. 2576.02 0.32 0.06 0.14 -1 -1 0.32 0.0207039 0.0183469 96 24 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.86 vpr 65.21 MiB -1 -1 0.17 20668 1 0.03 -1 -1 33772 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.8 MiB 2.78 1182 10670 2923 6871 876 65.2 MiB 0.11 0.00 3.78918 -119.277 -3.78918 3.78918 0.99 0.000520645 0.000475956 0.0312183 0.0285447 28 3155 35 6.87369e+06 321398 531479. 1839.03 1.77 0.118398 0.104704 24610 126494 -1 2584 21 1804 2627 218272 51119 4.53726 4.53726 -150.77 -4.53726 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.02483 0.0219707 140 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.54 vpr 65.11 MiB -1 -1 0.15 20760 1 0.03 -1 -1 33884 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66668 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 26.8 MiB 2.19 1105 14988 3782 9101 2105 65.1 MiB 0.12 0.00 2.9146 -97.0245 -2.9146 2.9146 0.99 0.000442662 0.000400664 0.0338809 0.0307236 26 3141 44 6.87369e+06 447163 503264. 1741.40 2.04 0.130686 0.115084 24322 120374 -1 2720 22 1706 2939 292224 64982 3.45351 3.45351 -127.503 -3.45351 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0288846 0.0256303 132 50 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.88 vpr 64.79 MiB -1 -1 0.15 20156 1 0.03 -1 -1 33624 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.2 MiB 0.84 1053 12954 3412 7612 1930 64.8 MiB 0.11 0.00 3.37079 -108.14 -3.37079 3.37079 0.98 0.000444798 0.000405485 0.0308582 0.0281572 34 2471 21 6.87369e+06 363320 618332. 2139.56 1.72 0.13157 0.115116 25762 151098 -1 2107 22 1483 2767 191434 43991 3.6461 3.6461 -126.9 -3.6461 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0229406 0.0202144 123 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.12 vpr 65.18 MiB -1 -1 0.17 20676 1 0.03 -1 -1 33900 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 26.8 MiB 3.57 1001 10670 2489 7335 846 65.2 MiB 0.10 0.00 3.93315 -118.621 -3.93315 3.93315 0.98 0.000523777 0.000477645 0.0316426 0.0288809 30 2932 31 6.87369e+06 307425 556674. 1926.21 1.24 0.1235 0.10952 25186 138497 -1 1999 21 1237 1726 105313 26342 3.3592 3.3592 -128.408 -3.3592 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0262871 0.023459 136 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.30 vpr 65.20 MiB -1 -1 0.14 20664 1 0.03 -1 -1 33864 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66764 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 26.8 MiB 3.38 1088 15426 3940 9450 2036 65.2 MiB 0.12 0.00 2.9366 -100.974 -2.9366 2.9366 0.92 0.000477293 0.000436433 0.0375064 0.0342573 26 2893 36 6.87369e+06 447163 503264. 1741.40 1.85 0.134751 0.120259 24322 120374 -1 2611 19 1462 2495 250775 54414 3.48451 3.48451 -132.026 -3.48451 0 0 618332. 2139.56 0.24 0.09 0.10 -1 -1 0.24 0.0253757 0.0226314 136 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 12.04 vpr 65.18 MiB -1 -1 0.15 20856 1 0.03 -1 -1 33764 -1 -1 35 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 26.7 MiB 3.43 1013 17883 5563 9623 2697 65.2 MiB 0.14 0.00 3.24063 -107.437 -3.24063 3.24063 0.96 0.000448855 0.000410189 0.0416323 0.0379575 28 3049 37 6.87369e+06 489084 531479. 1839.03 5.29 0.217684 0.190557 24610 126494 -1 2493 23 1852 3002 229277 54107 3.51476 3.51476 -127.233 -3.51476 0 0 648988. 2245.63 0.29 0.09 0.12 -1 -1 0.29 0.0288238 0.0254783 144 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.68 vpr 64.99 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33744 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 26.4 MiB 1.07 757 10087 2459 6728 900 65.0 MiB 0.09 0.00 3.39279 -97.1142 -3.39279 3.39279 0.97 0.000458975 0.000417575 0.0228965 0.0209087 28 2289 19 6.87369e+06 461137 531479. 1839.03 1.37 0.0867295 0.0764569 24610 126494 -1 1943 21 1381 2334 183403 44789 4.11 4.11 -127.218 -4.11 0 0 648988. 2245.63 0.27 0.07 0.13 -1 -1 0.27 0.0221992 0.0194946 124 21 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.60 vpr 64.88 MiB -1 -1 0.15 20204 1 0.03 -1 -1 33656 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.5 MiB 2.58 1007 11237 3132 6686 1419 64.9 MiB 0.10 0.00 3.84368 -111.209 -3.84368 3.84368 0.98 0.000478488 0.000436702 0.0306983 0.0280164 34 2629 36 6.87369e+06 307425 618332. 2139.56 1.70 0.149216 0.129656 25762 151098 -1 2314 22 1664 2415 178645 41233 4.04706 4.04706 -133.298 -4.04706 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0234319 0.0206773 135 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.76 vpr 65.24 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33776 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 26.8 MiB 2.40 1151 11989 3426 7634 929 65.2 MiB 0.11 0.00 3.72318 -120.154 -3.72318 3.72318 1.01 0.000605482 0.000551677 0.0354376 0.0322026 34 3171 23 6.87369e+06 307425 618332. 2139.56 1.95 0.161497 0.141592 25762 151098 -1 2564 23 1860 3071 252486 57364 3.97476 3.97476 -141.963 -3.97476 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.027279 0.0240464 141 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 10.71 vpr 65.22 MiB -1 -1 0.16 20576 1 0.03 -1 -1 33888 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 26.8 MiB 3.16 1074 11989 3630 7470 889 65.2 MiB 0.12 0.00 3.65075 -114.941 -3.65075 3.65075 1.00 0.000567919 0.00052106 0.038264 0.0350408 36 2699 22 6.87369e+06 293451 648988. 2245.63 4.14 0.244011 0.21443 26050 158493 -1 2395 22 1500 2706 195355 45443 3.80776 3.80776 -132.998 -3.80776 0 0 828058. 2865.25 0.34 0.08 0.14 -1 -1 0.34 0.0307306 0.0272559 135 74 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.05 vpr 64.54 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33424 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66084 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 26.0 MiB 0.88 717 9914 2744 6845 325 64.5 MiB 0.08 0.00 2.7886 -85.2361 -2.7886 2.7886 0.98 0.000403887 0.000369887 0.0223427 0.0203929 26 2008 26 6.87369e+06 307425 503264. 1741.40 1.03 0.0798106 0.0700224 24322 120374 -1 1765 19 1026 1621 125689 29910 3.13686 3.13686 -108.589 -3.13686 0 0 618332. 2139.56 0.25 0.05 0.12 -1 -1 0.25 0.016838 0.0148698 93 20 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.26 vpr 65.19 MiB -1 -1 0.15 20860 1 0.03 -1 -1 33780 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66756 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 26.6 MiB 2.02 938 15746 5585 7504 2657 65.2 MiB 0.13 0.00 3.03076 -108.923 -3.03076 3.03076 0.98 0.00049129 0.000446994 0.0458998 0.0418672 34 2730 24 6.87369e+06 251529 618332. 2139.56 1.87 0.156737 0.137177 25762 151098 -1 2244 22 1750 2484 222770 50333 3.53651 3.53651 -134.113 -3.53651 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0262861 0.0233194 124 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 13.62 vpr 65.35 MiB -1 -1 0.17 20724 1 0.03 -1 -1 33988 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66920 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 26.8 MiB 3.51 1393 14908 4083 9263 1562 65.4 MiB 0.15 0.00 4.25892 -132.142 -4.25892 4.25892 1.01 0.000569619 0.000520171 0.0487133 0.044554 30 3574 42 6.87369e+06 335372 556674. 1926.21 6.66 0.271185 0.239777 25186 138497 -1 2629 20 1762 2813 168154 38941 4.4313 4.4313 -155.648 -4.4313 0 0 706193. 2443.58 0.30 0.08 0.13 -1 -1 0.30 0.0299321 0.0266301 166 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.60 vpr 65.23 MiB -1 -1 0.16 20280 1 0.03 -1 -1 33484 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 26.8 MiB 3.43 927 12698 3514 7971 1213 65.2 MiB 0.11 0.00 3.22801 -103.996 -3.22801 3.22801 0.97 0.00052399 0.000480089 0.029591 0.0269644 28 2223 26 6.87369e+06 475111 531479. 1839.03 0.97 0.0999476 0.0881594 24610 126494 -1 1919 21 1259 2053 122582 31195 3.12426 3.12426 -122.591 -3.12426 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0224294 0.0197792 137 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.71 vpr 64.77 MiB -1 -1 0.15 20092 1 0.03 -1 -1 33612 -1 -1 25 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /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.90 784 13143 3024 9531 588 64.8 MiB 0.10 0.00 2.9769 -91.7545 -2.9769 2.9769 1.00 0.000382028 0.000346371 0.0294962 0.0268347 34 1889 25 6.87369e+06 349346 618332. 2139.56 1.53 0.103386 0.0903048 25762 151098 -1 1614 18 903 1398 98993 24389 2.82501 2.82501 -106.211 -2.82501 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0180587 0.0159382 104 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.77 vpr 65.70 MiB -1 -1 0.16 20460 1 0.03 -1 -1 34040 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67272 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 26.9 MiB 5.67 1310 8603 2176 5830 597 65.7 MiB 0.09 0.00 4.70105 -142.304 -4.70105 4.70105 0.93 0.000634436 0.000583042 0.028238 0.0259168 34 3444 22 6.87369e+06 349346 618332. 2139.56 1.89 0.178793 0.158127 25762 151098 -1 2811 24 2410 3595 282764 65755 5.0595 5.0595 -168.474 -5.0595 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0334701 0.0297144 171 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.24 vpr 65.24 MiB -1 -1 0.16 20304 1 0.03 -1 -1 33664 -1 -1 35 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66804 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 26.8 MiB 3.82 1041 13323 3588 8422 1313 65.2 MiB 0.11 0.00 3.77632 -116.628 -3.77632 3.77632 1.01 0.0005223 0.000479797 0.0317988 0.029095 32 2556 22 6.87369e+06 489084 586450. 2029.24 1.05 0.0990918 0.0874848 25474 144626 -1 2107 22 1564 2528 198388 45513 3.5897 3.5897 -131.347 -3.5897 0 0 744469. 2576.02 0.31 0.08 0.14 -1 -1 0.31 0.0235532 0.0207311 135 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.58 vpr 64.49 MiB -1 -1 0.14 20080 1 0.03 -1 -1 33652 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66040 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.9 MiB 0.83 843 11008 2960 7021 1027 64.5 MiB 0.09 0.00 2.8436 -88.6655 -2.8436 2.8436 0.99 0.000380642 0.000347347 0.0227877 0.0208311 34 1858 20 6.87369e+06 335372 618332. 2139.56 1.49 0.100543 0.0874715 25762 151098 -1 1626 20 901 1536 110807 26065 2.78501 2.78501 -101.108 -2.78501 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0166146 0.0146294 94 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 8.44 vpr 64.80 MiB -1 -1 0.15 20636 1 0.03 -1 -1 33608 -1 -1 37 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66360 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 26.4 MiB 2.55 1133 16081 4558 9456 2067 64.8 MiB 0.14 0.00 4.20067 -115.124 -4.20067 4.20067 0.98 0.000511298 0.000466021 0.0376299 0.0342761 26 3302 36 6.87369e+06 517032 503264. 1741.40 2.57 0.12916 0.114238 24322 120374 -1 2603 22 1772 3326 294674 63940 4.63215 4.63215 -143.586 -4.63215 0 0 618332. 2139.56 0.27 0.10 0.12 -1 -1 0.27 0.0269746 0.0239497 145 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.77 vpr 64.46 MiB -1 -1 0.13 20356 1 0.03 -1 -1 33760 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.9 MiB 0.91 837 11423 2732 7756 935 64.5 MiB 0.09 0.00 2.9879 -96.4611 -2.9879 2.9879 1.02 0.000377628 0.000343666 0.0268407 0.0244601 34 1997 18 6.87369e+06 265503 618332. 2139.56 1.55 0.112623 0.098367 25762 151098 -1 1821 19 1216 2072 160132 36602 2.89896 2.89896 -112.464 -2.89896 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0173407 0.015351 98 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.15 vpr 64.75 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33836 -1 -1 34 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66304 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 26.3 MiB 2.85 873 13455 3329 8557 1569 64.8 MiB 0.10 0.00 3.10428 -96.9072 -3.10428 3.10428 1.00 0.00043166 0.000392823 0.0271802 0.0247508 32 2057 25 6.87369e+06 475111 586450. 2029.24 1.02 0.0853539 0.0749591 25474 144626 -1 1739 19 1057 1846 141547 32246 2.99596 2.99596 -112.549 -2.99596 0 0 744469. 2576.02 0.31 0.06 0.13 -1 -1 0.31 0.0181099 0.0159514 109 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 9.28 vpr 65.08 MiB -1 -1 0.16 20584 1 0.03 -1 -1 33960 -1 -1 24 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66640 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 26.7 MiB 4.60 1111 11803 3377 7224 1202 65.1 MiB 0.11 0.00 3.21063 -102.762 -3.21063 3.21063 1.04 0.000524367 0.000482768 0.0359631 0.0329841 30 2825 29 6.87369e+06 335372 556674. 1926.21 1.25 0.124857 0.110825 25186 138497 -1 2327 21 1538 2444 163435 37456 3.29991 3.29991 -122.898 -3.29991 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0256413 0.0226692 138 56 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.10 vpr 64.98 MiB -1 -1 0.14 20692 1 0.03 -1 -1 33756 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 26.6 MiB 2.41 960 8934 2030 6386 518 65.0 MiB 0.08 0.00 3.61045 -115.819 -3.61045 3.61045 0.92 0.000488256 0.000446499 0.0234441 0.0214736 34 2363 27 6.87369e+06 363320 618332. 2139.56 1.58 0.149653 0.131803 25762 151098 -1 1976 19 1549 2411 162137 37990 3.78446 3.78446 -135.088 -3.78446 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0257195 0.0230299 132 51 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.20 vpr 65.04 MiB -1 -1 0.16 20272 1 0.03 -1 -1 33892 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 26.6 MiB 2.64 1046 10699 2953 7193 553 65.0 MiB 0.10 0.00 3.81848 -115.7 -3.81848 3.81848 1.02 0.000552723 0.000503001 0.0289917 0.026448 32 3033 29 6.87369e+06 377294 586450. 2029.24 1.18 0.106355 0.0933247 25474 144626 -1 2300 23 1681 2925 250606 58948 4.15236 4.15236 -142.424 -4.15236 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0259583 0.0228345 133 48 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.42 vpr 64.53 MiB -1 -1 0.15 20344 1 0.03 -1 -1 33688 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66080 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 26.1 MiB 3.98 855 12585 3056 8946 583 64.5 MiB 0.10 0.00 3.86982 -111.321 -3.86982 3.86982 1.03 0.00044256 0.000399873 0.0336332 0.0307165 32 2477 28 6.87369e+06 209608 586450. 2029.24 1.08 0.0977141 0.0860825 25474 144626 -1 1945 24 1210 1686 149180 34667 3.4598 3.4598 -120.553 -3.4598 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.022507 0.0198495 103 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.07 vpr 64.77 MiB -1 -1 0.16 20516 1 0.03 -1 -1 33848 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66324 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 26.2 MiB 3.11 956 13152 3679 7997 1476 64.8 MiB 0.10 0.00 2.99776 -102.176 -2.99776 2.99776 0.99 0.00045644 0.00041603 0.0371441 0.0339074 34 2372 23 6.87369e+06 237555 618332. 2139.56 1.64 0.141055 0.12297 25762 151098 -1 2050 20 1413 2093 162567 37907 3.1782 3.1782 -122.111 -3.1782 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0207987 0.018364 114 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.15 vpr 64.93 MiB -1 -1 0.16 20480 1 0.03 -1 -1 33776 -1 -1 34 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 26.3 MiB 2.94 964 18492 5749 10217 2526 64.9 MiB 0.13 0.00 2.73725 -85.4924 -2.73725 2.73725 0.98 0.000481703 0.000437045 0.0412958 0.0376072 28 2197 26 6.87369e+06 475111 531479. 1839.03 0.98 0.107593 0.0948104 24610 126494 -1 1960 20 1127 2101 142323 33269 2.71066 2.71066 -100.685 -2.71066 0 0 648988. 2245.63 0.26 0.06 0.12 -1 -1 0.26 0.0221093 0.019508 124 52 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.75 vpr 64.83 MiB -1 -1 0.16 20416 1 0.03 -1 -1 33728 -1 -1 35 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66388 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 26.3 MiB 2.24 886 11975 3085 7922 968 64.8 MiB 0.09 0.00 3.27479 -88.43 -3.27479 3.27479 1.00 0.000422719 0.00038466 0.0253971 0.0231629 26 2157 24 6.87369e+06 489084 503264. 1741.40 1.23 0.0861979 0.0756085 24322 120374 -1 1949 24 1387 2585 199957 45550 3.6161 3.6161 -109.702 -3.6161 0 0 618332. 2139.56 0.25 0.07 0.12 -1 -1 0.25 0.0213483 0.0186431 117 20 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 7.76 vpr 64.91 MiB -1 -1 0.14 20160 1 0.03 -1 -1 33492 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 26.5 MiB 3.05 960 10895 3313 6159 1423 64.9 MiB 0.08 0.00 3.16363 -101.296 -3.16363 3.16363 0.92 0.000423404 0.000386915 0.0293621 0.0268287 34 2114 25 6.87369e+06 237555 618332. 2139.56 1.54 0.137375 0.120762 25762 151098 -1 1926 22 1302 2332 180045 40925 3.16356 3.16356 -119.35 -3.16356 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0255931 0.0227183 105 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.66 vpr 65.18 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33792 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 26.6 MiB 3.41 987 10581 2919 7096 566 65.2 MiB 0.10 0.00 2.9238 -103 -2.9238 2.9238 1.03 0.000549642 0.000502548 0.0329992 0.0301656 34 2543 33 6.87369e+06 237555 618332. 2139.56 1.79 0.165169 0.145205 25762 151098 -1 2146 20 1440 2138 188606 41578 3.12781 3.12781 -123.049 -3.12781 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0248348 0.0221641 122 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.41 vpr 64.92 MiB -1 -1 0.17 20312 1 0.03 -1 -1 33736 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 26.4 MiB 0.97 957 11596 2935 7302 1359 64.9 MiB 0.10 0.00 3.60082 -105.594 -3.60082 3.60082 1.00 0.000523638 0.000481288 0.0284584 0.0259648 32 2667 24 6.87369e+06 433189 586450. 2029.24 1.08 0.0979895 0.0867252 25474 144626 -1 2121 22 1372 2327 174359 40598 3.7041 3.7041 -126.004 -3.7041 0 0 744469. 2576.02 0.30 0.07 0.15 -1 -1 0.30 0.0224806 0.0196453 129 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.42 vpr 65.11 MiB -1 -1 0.15 20608 1 0.03 -1 -1 33736 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.7 MiB 3.88 1122 16407 5547 8280 2580 65.1 MiB 0.16 0.00 3.78918 -125.016 -3.78918 3.78918 1.00 0.000519117 0.000473671 0.0477271 0.0436165 34 3124 29 6.87369e+06 321398 618332. 2139.56 2.08 0.179601 0.15816 25762 151098 -1 2593 22 1884 2820 268441 59031 4.13006 4.13006 -150.876 -4.13006 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0280114 0.0248588 147 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.32 vpr 65.26 MiB -1 -1 0.15 20452 1 0.03 -1 -1 33916 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66824 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 26.8 MiB 4.54 986 13324 3459 8273 1592 65.3 MiB 0.10 0.00 4.24987 -125.238 -4.24987 4.24987 1.02 0.000558536 0.000508669 0.0339928 0.0308403 30 2887 25 6.87369e+06 503058 556674. 1926.21 1.38 0.120488 0.10672 25186 138497 -1 2184 20 1337 2354 142233 35750 3.99105 3.99105 -143.284 -3.99105 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.026817 0.0239384 147 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 10.14 vpr 65.23 MiB -1 -1 0.15 20760 1 0.03 -1 -1 33944 -1 -1 41 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66792 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 26.8 MiB 3.67 1125 15172 4039 10091 1042 65.2 MiB 0.14 0.00 3.57582 -118.165 -3.57582 3.57582 1.02 0.000653829 0.000601909 0.0386146 0.0350568 26 3324 42 6.87369e+06 572927 503264. 1741.40 3.09 0.149984 0.132743 24322 120374 -1 2842 23 1873 3493 352846 76679 4.068 4.068 -151.884 -4.068 0 0 618332. 2139.56 0.26 0.11 0.12 -1 -1 0.26 0.028184 0.0248274 148 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.77 vpr 64.71 MiB -1 -1 0.14 20680 1 0.03 -1 -1 33676 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 26.4 MiB 2.95 859 12247 3852 6988 1407 64.7 MiB 0.10 0.00 3.16363 -98.3665 -3.16363 3.16363 0.99 0.000430986 0.000394644 0.0322775 0.0294462 34 2051 22 6.87369e+06 237555 618332. 2139.56 1.56 0.122657 0.107082 25762 151098 -1 1718 17 935 1571 109466 26160 3.06926 3.06926 -111.076 -3.06926 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0170095 0.0150504 99 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.87 vpr 65.17 MiB -1 -1 0.16 20364 1 0.03 -1 -1 33940 -1 -1 22 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 26.8 MiB 3.81 900 8319 2009 5604 706 65.2 MiB 0.08 0.00 3.55872 -111.72 -3.55872 3.55872 0.94 0.000596274 0.000532451 0.0250259 0.0228982 30 2256 20 6.87369e+06 307425 556674. 1926.21 0.97 0.099147 0.088005 25186 138497 -1 1877 21 1438 2386 143201 33467 4.013 4.013 -137.529 -4.013 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.0256239 0.0227458 136 58 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.44 vpr 65.06 MiB -1 -1 0.17 20376 1 0.03 -1 -1 33952 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.6 MiB 3.10 1105 11991 3322 7906 763 65.1 MiB 0.11 0.00 4.00821 -122.526 -4.00821 4.00821 1.02 0.000515568 0.000469933 0.0347997 0.0318747 34 2629 23 6.87369e+06 321398 618332. 2139.56 1.86 0.167213 0.147768 25762 151098 -1 2147 22 1702 2711 189065 45826 4.05796 4.05796 -136.163 -4.05796 0 0 787024. 2723.27 0.35 0.09 0.15 -1 -1 0.35 0.0289368 0.0256896 140 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 8.26 vpr 65.07 MiB -1 -1 0.16 20540 1 0.03 -1 -1 33616 -1 -1 28 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66628 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 26.6 MiB 2.84 1096 17431 4997 10162 2272 65.1 MiB 0.15 0.00 4.30764 -123.969 -4.30764 4.30764 0.97 0.000507784 0.000463347 0.0450559 0.041122 34 2769 39 6.87369e+06 391268 618332. 2139.56 2.02 0.174413 0.152627 25762 151098 -1 2305 21 1713 2676 195660 45712 4.5006 4.5006 -145.692 -4.5006 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0238805 0.0209712 141 43 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.61 vpr 65.02 MiB -1 -1 0.18 20524 1 0.03 -1 -1 33672 -1 -1 32 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 26.6 MiB 3.17 1024 10105 2227 7187 691 65.0 MiB 0.10 0.00 3.82048 -117.366 -3.82048 3.82048 0.98 0.000558025 0.000509533 0.0278932 0.0255002 32 2560 32 6.87369e+06 447163 586450. 2029.24 1.11 0.110221 0.0968941 25474 144626 -1 2148 21 1301 2111 163323 39195 3.4315 3.4315 -125.664 -3.4315 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0258147 0.0228425 135 78 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.01 vpr 64.84 MiB -1 -1 0.16 20440 1 0.03 -1 -1 33636 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 26.5 MiB 2.78 1096 15895 4990 8981 1924 64.8 MiB 0.14 0.00 3.73418 -119.337 -3.73418 3.73418 1.02 0.000527079 0.000480706 0.0472551 0.0430924 34 2887 22 6.87369e+06 293451 618332. 2139.56 1.79 0.179546 0.158234 25762 151098 -1 2376 21 1639 2900 220218 50715 3.98576 3.98576 -143.042 -3.98576 0 0 787024. 2723.27 0.33 0.08 0.14 -1 -1 0.33 0.0270354 0.0240472 132 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 7.55 vpr 65.30 MiB -1 -1 0.15 20436 1 0.03 -1 -1 33660 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 26.9 MiB 2.88 875 9336 2208 5958 1170 65.3 MiB 0.09 0.00 3.31093 -98.9141 -3.31093 3.31093 0.92 0.000531857 0.000488895 0.0259468 0.0238343 34 2429 24 6.87369e+06 405241 618332. 2139.56 1.55 0.143527 0.125709 25762 151098 -1 1995 20 1557 2590 187484 44045 3.06661 3.06661 -111.274 -3.06661 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0247509 0.0220248 132 79 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.69 vpr 64.66 MiB -1 -1 0.14 20168 1 0.03 -1 -1 34020 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 26.1 MiB 0.80 680 6206 1366 4606 234 64.7 MiB 0.06 0.00 3.18563 -97.0202 -3.18563 3.18563 1.02 0.000405767 0.000371191 0.0163509 0.0150061 34 1787 22 6.87369e+06 237555 618332. 2139.56 1.56 0.109736 0.0955763 25762 151098 -1 1474 18 850 1261 80848 20096 2.82671 2.82671 -104.335 -2.82671 0 0 787024. 2723.27 0.33 0.05 0.15 -1 -1 0.33 0.0189327 0.0168446 96 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.96 vpr 64.95 MiB -1 -1 0.16 20412 1 0.03 -1 -1 33884 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 26.6 MiB 5.53 1063 13823 3432 9345 1046 65.0 MiB 0.12 0.00 3.63082 -117.153 -3.63082 3.63082 1.00 0.000553018 0.000498573 0.0347994 0.0316645 28 2594 23 6.87369e+06 475111 531479. 1839.03 1.13 0.107967 0.0952106 24610 126494 -1 2262 21 1610 2788 206932 48399 3.905 3.905 -136.93 -3.905 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0243183 0.0214608 137 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.90 vpr 65.09 MiB -1 -1 0.16 20680 1 0.03 -1 -1 33936 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 26.7 MiB 4.65 1064 15151 4363 8958 1830 65.1 MiB 0.14 0.00 3.54952 -124.108 -3.54952 3.54952 1.00 0.000556218 0.000508163 0.0475712 0.0434628 34 2748 27 6.87369e+06 293451 618332. 2139.56 1.84 0.200773 0.177186 25762 151098 -1 2258 22 1869 3132 226113 50877 3.9767 3.9767 -148.438 -3.9767 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0276994 0.0245066 142 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.56 vpr 64.80 MiB -1 -1 0.14 20236 1 0.03 -1 -1 33932 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 26.4 MiB 3.71 977 10228 3025 6510 693 64.8 MiB 0.08 0.00 3.47382 -102.761 -3.47382 3.47382 0.98 0.000440884 0.000402075 0.0255726 0.023338 34 2294 21 6.87369e+06 223581 618332. 2139.56 1.58 0.117155 0.102078 25762 151098 -1 1958 20 1149 1540 117501 27862 3.4908 3.4908 -120.897 -3.4908 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0191219 0.0169272 106 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.72 vpr 64.68 MiB -1 -1 0.13 20072 1 0.03 -1 -1 33752 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 26.1 MiB 0.83 711 9443 2322 6140 981 64.7 MiB 0.08 0.00 3.29993 -97.497 -3.29993 3.29993 0.92 0.000373487 0.000341592 0.0212099 0.0194865 30 1836 16 6.87369e+06 279477 556674. 1926.21 0.89 0.069663 0.0615919 25186 138497 -1 1575 18 919 1563 98944 22473 2.78771 2.78771 -105.464 -2.78771 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0165135 0.0146857 99 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 8.71 vpr 65.18 MiB -1 -1 0.15 20596 1 0.03 -1 -1 33712 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.8 MiB 3.49 1233 13335 4039 7970 1326 65.2 MiB 0.12 0.00 3.74338 -123.587 -3.74338 3.74338 0.98 0.000501897 0.000458431 0.0373639 0.0341067 34 2880 22 6.87369e+06 321398 618332. 2139.56 1.88 0.158828 0.13951 25762 151098 -1 2361 21 1883 2569 185640 43336 4.17026 4.17026 -153.32 -4.17026 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0247286 0.0219185 145 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 8.24 vpr 64.91 MiB -1 -1 0.16 20596 1 0.03 -1 -1 33624 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 26.5 MiB 2.84 1147 14779 3833 9717 1229 64.9 MiB 0.13 0.00 4.30764 -131.579 -4.30764 4.30764 0.98 0.000513109 0.000468216 0.0395209 0.0361488 34 2980 26 6.87369e+06 377294 618332. 2139.56 2.05 0.174481 0.153862 25762 151098 -1 2446 19 1619 2412 187142 43536 4.7602 4.7602 -154.289 -4.7602 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.024582 0.0219463 142 53 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 5.54 vpr 65.05 MiB -1 -1 0.17 20896 1 0.03 -1 -1 33532 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.6 MiB 0.95 1216 19820 6259 10393 3168 65.0 MiB 0.17 0.00 4.13357 -122.153 -4.13357 4.13357 1.01 0.000531762 0.000479038 0.0479175 0.0436686 30 2479 23 6.87369e+06 503058 556674. 1926.21 1.15 0.123723 0.109625 25186 138497 -1 2067 22 1328 2408 125726 30451 4.27195 4.27195 -140.893 -4.27195 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0251207 0.0221622 157 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.20 vpr 64.92 MiB -1 -1 0.17 20328 1 0.03 -1 -1 33728 -1 -1 34 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 26.4 MiB 2.93 854 10827 2658 6758 1411 64.9 MiB 0.09 0.00 2.83325 -87.5435 -2.83325 2.83325 0.97 0.000467094 0.00042719 0.0249658 0.0228158 30 1926 24 6.87369e+06 475111 556674. 1926.21 1.01 0.0872944 0.0765692 25186 138497 -1 1586 18 1123 2031 102489 25349 2.67336 2.67336 -97.7639 -2.67336 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0190005 0.0167525 119 47 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.93 vpr 64.63 MiB -1 -1 0.14 20240 1 0.03 -1 -1 34208 -1 -1 21 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 26.1 MiB 1.05 676 11432 3253 7293 886 64.6 MiB 0.08 0.00 2.8908 -83.2138 -2.8908 2.8908 0.93 0.000366913 0.000337879 0.026567 0.0243355 34 1616 22 6.87369e+06 293451 618332. 2139.56 2.84 0.151431 0.131632 25762 151098 -1 1301 19 975 1461 96257 22512 2.73266 2.73266 -93.7949 -2.73266 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0165584 0.0146422 96 26 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.15 vpr 65.40 MiB -1 -1 0.17 20508 1 0.03 -1 -1 33980 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 26.8 MiB 4.39 1387 16468 5744 8350 2374 65.4 MiB 0.17 0.00 3.46315 -115.657 -3.46315 3.46315 1.04 0.000610952 0.000558673 0.0551552 0.0505042 34 3965 41 6.87369e+06 335372 618332. 2139.56 3.14 0.239036 0.211966 25762 151098 -1 3021 22 2182 3701 318927 70233 3.87776 3.87776 -142.206 -3.87776 0 0 787024. 2723.27 0.34 0.12 0.15 -1 -1 0.34 0.0347638 0.0311443 165 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 10.48 vpr 65.14 MiB -1 -1 0.17 20660 1 0.03 -1 -1 33832 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 26.7 MiB 5.06 1232 14407 3986 8615 1806 65.1 MiB 0.12 0.00 4.58967 -140.335 -4.58967 4.58967 1.00 0.000528183 0.000483896 0.0433786 0.0396854 36 2663 21 6.87369e+06 307425 648988. 2245.63 1.97 0.157311 0.139924 26050 158493 -1 2306 19 1544 2388 174024 39323 4.47335 4.47335 -157.652 -4.47335 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0249019 0.0221448 139 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.31 vpr 65.01 MiB -1 -1 0.16 20244 1 0.03 -1 -1 33992 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66572 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 26.5 MiB 5.30 1002 9160 2342 6168 650 65.0 MiB 0.08 0.00 3.45235 -120.781 -3.45235 3.45235 0.99 0.000500493 0.000457943 0.0269637 0.0246305 34 2597 24 6.87369e+06 251529 618332. 2139.56 1.64 0.137375 0.119829 25762 151098 -1 2098 22 1328 1973 139639 33024 3.67946 3.67946 -141.379 -3.67946 0 0 787024. 2723.27 0.34 0.07 0.14 -1 -1 0.34 0.0248842 0.0220348 118 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.52 vpr 64.95 MiB -1 -1 0.16 20408 1 0.03 -1 -1 33972 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 26.4 MiB 1.27 917 17635 5196 9844 2595 65.0 MiB 0.14 0.00 3.85785 -108.09 -3.85785 3.85785 0.95 0.000454735 0.000415228 0.0386205 0.0352009 30 2297 23 6.87369e+06 461137 556674. 1926.21 1.01 0.110494 0.0983132 25186 138497 -1 1794 21 989 1622 100091 24741 3.3692 3.3692 -116.826 -3.3692 0 0 706193. 2443.58 0.31 0.06 0.13 -1 -1 0.31 0.0241931 0.0214942 129 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 8.98 vpr 65.34 MiB -1 -1 0.17 20624 1 0.03 -1 -1 33792 -1 -1 34 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66908 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 26.9 MiB 2.19 940 11419 3124 7358 937 65.3 MiB 0.10 0.00 3.46135 -102.065 -3.46135 3.46135 0.93 0.000540737 0.000497919 0.0279909 0.0255804 26 2811 38 6.87369e+06 475111 503264. 1741.40 3.60 0.209645 0.183694 24322 120374 -1 2465 23 1646 2681 248032 72575 4.22766 4.22766 -138.641 -4.22766 0 0 618332. 2139.56 0.26 0.10 0.12 -1 -1 0.26 0.0284557 0.0250324 149 46 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.62 vpr 65.00 MiB -1 -1 0.16 20120 1 0.03 -1 -1 34124 -1 -1 31 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66560 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 26.5 MiB 2.56 964 17523 5920 8995 2608 65.0 MiB 0.14 0.00 2.8846 -85.9929 -2.8846 2.8846 0.98 0.000476083 0.00043411 0.0412442 0.0375795 34 2482 21 6.87369e+06 433189 618332. 2139.56 1.68 0.145633 0.127261 25762 151098 -1 2029 21 1366 2415 170109 40001 3.31721 3.31721 -107.568 -3.31721 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0225715 0.0198733 124 46 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 11.15 vpr 65.12 MiB -1 -1 0.16 20928 1 0.03 -1 -1 33872 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66688 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 26.6 MiB 3.79 1189 16907 6706 8302 1899 65.1 MiB 0.15 0.00 3.82834 -123.217 -3.82834 3.82834 0.97 0.000514187 0.000467629 0.048257 0.0438826 34 3809 43 6.87369e+06 307425 618332. 2139.56 3.93 0.189883 0.16691 25762 151098 -1 2801 24 2275 3459 360932 76711 4.42825 4.42825 -154.006 -4.42825 0 0 787024. 2723.27 0.31 0.11 0.16 -1 -1 0.31 0.0281349 0.0248092 148 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.96 vpr 65.02 MiB -1 -1 0.17 20724 1 0.03 -1 -1 34032 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 26.6 MiB 3.73 1085 18660 5981 10128 2551 65.0 MiB 0.16 0.00 3.24063 -111.672 -3.24063 3.24063 0.99 0.000555239 0.000508447 0.0483995 0.0442609 34 2524 21 6.87369e+06 503058 618332. 2139.56 1.80 0.190179 0.168357 25762 151098 -1 2094 22 1523 2482 186864 42076 3.07126 3.07126 -123.693 -3.07126 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0298424 0.0265338 147 59 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.82 vpr 64.57 MiB -1 -1 0.15 20368 1 0.03 -1 -1 33620 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 26.2 MiB 2.16 727 10400 2733 6686 981 64.6 MiB 0.08 0.00 3.00718 -93.0274 -3.00718 3.00718 1.00 0.00042909 0.000392611 0.0268203 0.0245459 32 1789 22 6.87369e+06 265503 586450. 2029.24 1.42 0.0965301 0.0846631 25474 144626 -1 1456 21 1160 1694 112050 26184 2.91816 2.91816 -108.252 -2.91816 0 0 744469. 2576.02 0.30 0.05 0.14 -1 -1 0.30 0.0195074 0.0171976 101 28 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.52 vpr 65.06 MiB -1 -1 0.16 20200 1 0.03 -1 -1 33972 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 26.5 MiB 1.79 991 14256 4439 8053 1764 65.1 MiB 0.11 0.00 3.4413 -101.958 -3.4413 3.4413 0.95 0.000403273 0.000368134 0.0368832 0.0337471 34 2268 23 6.87369e+06 237555 618332. 2139.56 1.55 0.143894 0.12687 25762 151098 -1 2043 23 1261 1768 158106 34815 3.25001 3.25001 -126.177 -3.25001 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0249627 0.0220871 112 55 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.45 vpr 65.07 MiB -1 -1 0.15 20132 1 0.03 -1 -1 33492 -1 -1 39 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 26.7 MiB 2.03 963 17952 5040 10040 2872 65.1 MiB 0.14 0.00 3.57582 -103.412 -3.57582 3.57582 0.99 0.000510231 0.000464986 0.0392526 0.0357277 26 2802 49 6.87369e+06 544980 503264. 1741.40 2.12 0.132953 0.116697 24322 120374 -1 2231 22 1626 2874 230923 52775 4.036 4.036 -131.164 -4.036 0 0 618332. 2139.56 0.26 0.08 0.12 -1 -1 0.26 0.0235671 0.0207043 135 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 8.77 vpr 64.73 MiB -1 -1 0.16 20320 1 0.03 -1 -1 33776 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 3.86 813 13152 4600 6508 2044 64.7 MiB 0.10 0.00 3.82778 -104.205 -3.82778 3.82778 1.02 0.000371569 0.000339118 0.0315592 0.0288009 34 2033 20 6.87369e+06 265503 618332. 2139.56 1.57 0.122875 0.107693 25762 151098 -1 1767 22 1201 1579 113575 28302 3.46886 3.46886 -114.894 -3.46886 0 0 787024. 2723.27 0.33 0.06 0.14 -1 -1 0.33 0.0198298 0.017524 107 25 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.78 vpr 64.67 MiB -1 -1 0.14 20160 1 0.03 -1 -1 33920 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 26.3 MiB 3.90 881 10726 2943 7045 738 64.7 MiB 0.09 0.00 3.31093 -106.227 -3.31093 3.31093 0.99 0.000447324 0.000406984 0.0290488 0.0265945 34 2242 22 6.87369e+06 209608 618332. 2139.56 1.60 0.122218 0.106537 25762 151098 -1 1832 21 1374 2300 171600 39078 3.29991 3.29991 -119.921 -3.29991 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0199457 0.0176135 101 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.30 vpr 64.95 MiB -1 -1 0.17 20484 1 0.03 -1 -1 33936 -1 -1 37 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66508 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 26.5 MiB 3.32 889 19356 5605 10910 2841 64.9 MiB 0.15 0.00 2.98998 -97.1408 -2.98998 2.98998 0.97 0.000490724 0.000448253 0.0462874 0.0421187 34 2179 24 6.87369e+06 517032 618332. 2139.56 1.62 0.166826 0.145397 25762 151098 -1 1773 22 1668 2754 179781 42207 3.07956 3.07956 -113.62 -3.07956 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.026342 0.0231093 141 60 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 10.84 vpr 64.70 MiB -1 -1 0.16 20432 1 0.03 -1 -1 34036 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 26.3 MiB 3.58 737 10916 2353 7901 662 64.7 MiB 0.08 0.00 2.9066 -90.8364 -2.9066 2.9066 1.00 0.000405181 0.0003698 0.0280284 0.0256536 36 2052 18 6.87369e+06 237555 648988. 2245.63 3.91 0.16415 0.142913 26050 158493 -1 1701 20 1225 1794 122709 30059 3.01951 3.01951 -109.512 -3.01951 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0203209 0.0180196 105 30 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.84 vpr 65.14 MiB -1 -1 0.14 20188 1 0.03 -1 -1 33704 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66700 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 26.7 MiB 3.27 970 16511 4188 11219 1104 65.1 MiB 0.12 0.00 2.9036 -95.172 -2.9036 2.9036 0.93 0.000478914 0.000439372 0.0381508 0.0348579 28 2503 22 6.87369e+06 433189 531479. 1839.03 1.48 0.115912 0.103361 24610 126494 -1 2183 19 1217 1996 157822 35726 3.12761 3.12761 -114.021 -3.12761 0 0 648988. 2245.63 0.25 0.07 0.11 -1 -1 0.25 0.0234379 0.0208307 129 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.38 vpr 65.00 MiB -1 -1 0.16 20736 1 0.03 -1 -1 33672 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 26.6 MiB 3.87 1026 15863 4088 9399 2376 65.0 MiB 0.13 0.00 2.9696 -104.532 -2.9696 2.9696 1.00 0.000502552 0.000449185 0.0413225 0.037608 28 2412 27 6.87369e+06 447163 531479. 1839.03 1.17 0.124717 0.110329 24610 126494 -1 2175 22 1832 2785 205184 47239 3.09661 3.09661 -126.885 -3.09661 0 0 648988. 2245.63 0.28 0.08 0.12 -1 -1 0.28 0.0282163 0.024945 137 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.25 vpr 64.48 MiB -1 -1 0.14 20476 1 0.03 -1 -1 33892 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66028 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 26.1 MiB 2.82 761 8336 2081 5922 333 64.5 MiB 0.07 0.00 2.8516 -89.7025 -2.8516 2.8516 0.99 0.000452655 0.000410958 0.023642 0.0215698 28 2257 40 6.87369e+06 223581 531479. 1839.03 1.20 0.0969801 0.0846547 24610 126494 -1 1914 19 1053 1623 145341 34074 3.22916 3.22916 -117.954 -3.22916 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0208057 0.0183875 99 54 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.89 vpr 64.84 MiB -1 -1 0.14 20428 1 0.03 -1 -1 33544 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 26.3 MiB 1.94 828 9160 2302 6414 444 64.8 MiB 0.08 0.00 3.23579 -99.4646 -3.23579 3.23579 0.99 0.000439707 0.000401118 0.0245011 0.0224227 34 2394 24 6.87369e+06 251529 618332. 2139.56 1.66 0.122856 0.106956 25762 151098 -1 1979 22 1561 2305 173230 44818 3.54841 3.54841 -128.023 -3.54841 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0214059 0.0189072 114 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.32 vpr 64.91 MiB -1 -1 0.15 20332 1 0.03 -1 -1 33796 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 26.4 MiB 3.15 862 8213 1954 5814 445 64.9 MiB 0.08 0.00 3.86978 -107.982 -3.86978 3.86978 1.00 0.000495734 0.000455481 0.02345 0.0214661 34 2643 49 6.87369e+06 307425 618332. 2139.56 1.84 0.165749 0.145805 25762 151098 -1 2053 22 1643 2328 163840 39890 3.98906 3.98906 -130.829 -3.98906 0 0 787024. 2723.27 0.33 0.07 0.14 -1 -1 0.33 0.0235326 0.020821 132 27 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.54 vpr 64.77 MiB -1 -1 0.16 20056 1 0.03 -1 -1 33980 -1 -1 29 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 26.2 MiB 2.99 981 11547 3132 7358 1057 64.8 MiB 0.09 0.00 3.20763 -96.8878 -3.20763 3.20763 0.93 0.000464055 0.000426208 0.0274632 0.0251958 34 2255 19 6.87369e+06 405241 618332. 2139.56 1.44 0.125773 0.110289 25762 151098 -1 1871 17 979 1709 110760 27479 2.99121 2.99121 -105.285 -2.99121 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.02007 0.017956 123 49 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.06 vpr 65.28 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33712 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 26.8 MiB 3.59 1049 17285 5493 8978 2814 65.3 MiB 0.17 0.00 4.14151 -132.858 -4.14151 4.14151 1.00 0.000571796 0.000523125 0.0533691 0.0487214 34 2903 26 6.87369e+06 307425 618332. 2139.56 2.00 0.181974 0.159595 25762 151098 -1 2378 22 1817 2693 218277 50365 4.00076 4.00076 -151.449 -4.00076 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0270103 0.023751 151 62 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.52 vpr 64.59 MiB -1 -1 0.15 20512 1 0.03 -1 -1 33568 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 26.1 MiB 0.83 833 5756 1336 3888 532 64.6 MiB 0.05 0.00 2.9769 -93.5698 -2.9769 2.9769 0.98 0.000385054 0.000352249 0.0140128 0.0128519 34 1905 20 6.87369e+06 237555 618332. 2139.56 1.48 0.092813 0.0803084 25762 151098 -1 1709 20 961 1504 110387 25872 2.93031 2.93031 -105.514 -2.93031 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0171897 0.0151802 92 -1 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.75 vpr 65.29 MiB -1 -1 0.18 20492 1 0.03 -1 -1 33892 -1 -1 35 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 2.28 1011 13323 3692 8630 1001 65.3 MiB 0.12 0.00 3.50715 -117.312 -3.50715 3.50715 0.99 0.000610645 0.000557456 0.036512 0.0332989 28 2542 23 6.87369e+06 489084 531479. 1839.03 1.15 0.119695 0.105838 24610 126494 -1 2250 23 1612 2333 165262 39433 3.97376 3.97376 -145.91 -3.97376 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0286646 0.0252787 145 87 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.01 vpr 64.87 MiB -1 -1 0.15 20620 1 0.03 -1 -1 33668 -1 -1 16 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.3 MiB 5.10 902 13152 4220 7456 1476 64.9 MiB 0.11 0.00 2.9898 -111.455 -2.9898 2.9898 0.97 0.000523898 0.000479787 0.0419767 0.0383598 34 2198 20 6.87369e+06 223581 618332. 2139.56 1.60 0.1589 0.139716 25762 151098 -1 1893 20 1390 2022 157215 35816 3.17461 3.17461 -128.599 -3.17461 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0231537 0.0204525 114 93 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.37 vpr 64.98 MiB -1 -1 0.15 20512 1 0.03 -1 -1 33760 -1 -1 32 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 26.6 MiB 3.41 956 9294 2311 5989 994 65.0 MiB 0.09 0.00 3.24063 -102.007 -3.24063 3.24063 1.00 0.000522913 0.000477526 0.024331 0.022202 34 2355 19 6.87369e+06 447163 618332. 2139.56 1.66 0.150852 0.132474 25762 151098 -1 1921 20 1194 1898 112478 28338 2.87371 2.87371 -108.93 -2.87371 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0226827 0.0199908 134 57 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.26 vpr 65.18 MiB -1 -1 0.16 20404 1 0.03 -1 -1 34028 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 26.6 MiB 4.75 1379 16721 5012 9437 2272 65.2 MiB 0.15 0.00 4.69005 -144.837 -4.69005 4.69005 1.00 0.000590904 0.000534695 0.0493813 0.0449206 34 3629 26 6.87369e+06 349346 618332. 2139.56 2.07 0.192927 0.170143 25762 151098 -1 2792 24 2536 3854 334103 75214 5.2278 5.2278 -172.096 -5.2278 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0312898 0.0276077 171 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.79 vpr 64.57 MiB -1 -1 0.13 20564 1 0.03 -1 -1 33564 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66120 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 26.1 MiB 1.39 757 10020 3099 5507 1414 64.6 MiB 0.06 0.00 2.53052 -83.7398 -2.53052 2.53052 0.93 0.000334461 0.000306579 0.0217687 0.0199426 34 1770 17 6.87369e+06 209608 618332. 2139.56 1.37 0.0944994 0.0825402 25762 151098 -1 1553 19 859 1140 105074 23455 2.31947 2.31947 -95.8823 -2.31947 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0154673 0.0136728 81 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.84 vpr 64.85 MiB -1 -1 0.14 20284 1 0.03 -1 -1 34044 -1 -1 19 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 26.4 MiB 1.24 840 12856 3983 7186 1687 64.8 MiB 0.09 0.00 3.14163 -101.894 -3.14163 3.14163 0.94 0.000403821 0.000368663 0.0324748 0.0298152 34 1881 18 6.87369e+06 265503 618332. 2139.56 1.44 0.122283 0.107588 25762 151098 -1 1647 21 1123 1632 127783 27985 2.99331 2.99331 -115.656 -2.99331 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0199541 0.0175097 105 29 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.66 vpr 64.82 MiB -1 -1 0.15 20292 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 26.4 MiB 1.24 778 10647 2780 7468 399 64.8 MiB 0.09 0.00 2.9879 -97.5378 -2.9879 2.9879 0.99 0.000456453 0.000414932 0.0264058 0.024054 32 2593 35 6.87369e+06 321398 586450. 2029.24 1.13 0.0953132 0.0835602 25474 144626 -1 1978 21 1400 2481 220984 50453 3.19991 3.19991 -122.618 -3.19991 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0213665 0.0188788 109 31 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.14 vpr 64.34 MiB -1 -1 0.15 20376 1 0.03 -1 -1 33848 -1 -1 29 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65888 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 25.8 MiB 0.90 543 11426 3816 5149 2461 64.3 MiB 0.07 0.00 2.9029 -68.67 -2.9029 2.9029 1.04 0.000351369 0.000319053 0.0230891 0.0210318 28 1499 20 6.87369e+06 405241 531479. 1839.03 1.00 0.0743042 0.0656188 24610 126494 -1 1326 22 874 1524 105435 25556 2.80496 2.80496 -80.2164 -2.80496 0 0 648988. 2245.63 0.28 0.05 0.12 -1 -1 0.28 0.0174862 0.0153585 87 19 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.47 vpr 65.22 MiB -1 -1 0.17 20712 1 0.03 -1 -1 33516 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66784 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 26.8 MiB 3.24 1099 14724 4570 7816 2338 65.2 MiB 0.14 0.00 3.64275 -112.763 -3.64275 3.64275 1.01 0.000541067 0.000492712 0.0464416 0.0422943 34 2947 25 6.87369e+06 279477 618332. 2139.56 1.79 0.171287 0.150329 25762 151098 -1 2413 22 1591 2784 210114 49751 3.83276 3.83276 -136.041 -3.83276 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0286427 0.0253553 133 69 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.79 vpr 65.33 MiB -1 -1 0.18 20508 1 0.03 -1 -1 33836 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66896 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.8 MiB 3.64 1019 16921 4513 10430 1978 65.3 MiB 0.15 0.00 3.35493 -114.687 -3.35493 3.35493 1.02 0.000564295 0.000516324 0.0476883 0.0434108 34 2367 22 6.87369e+06 433189 618332. 2139.56 1.66 0.172145 0.151056 25762 151098 -1 2058 23 1843 2914 196390 45174 3.06031 3.06031 -122.111 -3.06031 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0276914 0.024314 143 86 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.22 vpr 64.77 MiB -1 -1 0.16 20460 1 0.03 -1 -1 33840 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 26.2 MiB 3.01 1282 16858 5181 9399 2278 64.8 MiB 0.15 0.00 4.26107 -126.766 -4.26107 4.26107 1.01 0.000525106 0.000480163 0.0483786 0.0443349 34 2859 26 6.89349e+06 338252 618332. 2139.56 1.81 0.157703 0.140318 25762 151098 -1 2374 19 1452 2130 144174 35201 4.58375 4.58375 -151.504 -4.58375 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0246152 0.0219745 149 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.84 vpr 64.88 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33832 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 26.5 MiB 1.76 1141 14908 4583 7972 2353 64.9 MiB 0.13 0.00 3.89968 -120.67 -3.89968 3.89968 0.92 0.000483639 0.000442897 0.0392944 0.0359021 34 3123 25 6.89349e+06 366440 618332. 2139.56 1.91 0.174082 0.153846 25762 151098 -1 2460 21 2007 2975 230952 51233 4.19264 4.19264 -143.294 -4.19264 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.026047 0.0232487 156 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.86 vpr 64.73 MiB -1 -1 0.14 20260 1 0.03 -1 -1 33984 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 26.3 MiB 2.10 1122 12547 3748 7678 1121 64.7 MiB 0.11 0.00 3.52869 -104.289 -3.52869 3.52869 0.94 0.000474152 0.000421813 0.0315139 0.0287737 34 2474 22 6.89349e+06 295971 618332. 2139.56 1.63 0.136325 0.119965 25762 151098 -1 2158 22 1245 1729 129075 29357 3.6233 3.6233 -120.972 -3.6233 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0216216 0.0191609 125 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.11 vpr 64.82 MiB -1 -1 0.14 20668 1 0.03 -1 -1 33844 -1 -1 24 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 26.3 MiB 2.01 1048 11989 3269 7239 1481 64.8 MiB 0.11 0.00 3.79798 -106.429 -3.79798 3.79798 1.03 0.000472018 0.0004313 0.0319552 0.0292049 34 2412 22 6.89349e+06 338252 618332. 2139.56 1.69 0.138086 0.121212 25762 151098 -1 2036 22 1403 2246 139424 33884 3.7844 3.7844 -123.212 -3.7844 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0228064 0.0202328 134 25 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.19 vpr 64.54 MiB -1 -1 0.15 20176 1 0.03 -1 -1 33508 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 26.0 MiB 1.58 1113 9687 2811 4973 1903 64.5 MiB 0.09 0.00 4.11871 -120.09 -4.11871 4.11871 1.00 0.000525088 0.000480716 0.0273812 0.0250134 36 2981 24 6.89349e+06 324158 648988. 2245.63 3.24 0.162648 0.143946 26050 158493 -1 2511 21 1784 3171 270829 57106 4.35029 4.35029 -146.198 -4.35029 0 0 828058. 2865.25 0.34 0.09 0.15 -1 -1 0.34 0.025369 0.0224424 142 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.66 vpr 65.05 MiB -1 -1 0.17 20668 1 0.03 -1 -1 33988 -1 -1 33 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 26.6 MiB 2.51 1347 20299 6513 11395 2391 65.0 MiB 0.18 0.00 3.29756 -107.356 -3.29756 3.29756 1.03 0.000530324 0.000481798 0.0518294 0.0471263 36 3097 21 6.89349e+06 465097 648988. 2245.63 2.66 0.179263 0.157771 26050 158493 -1 2569 24 1559 2588 208122 43640 3.46995 3.46995 -131.19 -3.46995 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0273974 0.0241414 162 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.21 vpr 64.58 MiB -1 -1 0.14 20160 1 0.03 -1 -1 34256 -1 -1 21 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66128 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 26.0 MiB 1.44 791 14356 4437 8294 1625 64.6 MiB 0.10 0.00 3.25123 -92.2102 -3.25123 3.25123 0.94 0.000376927 0.000345538 0.033074 0.0302615 34 1789 22 6.89349e+06 295971 618332. 2139.56 1.66 0.127085 0.112061 25762 151098 -1 1605 19 1205 1712 125210 28452 2.96131 2.96131 -103.368 -2.96131 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0176835 0.0156854 107 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 8.39 vpr 64.69 MiB -1 -1 0.16 20240 1 0.03 -1 -1 33708 -1 -1 32 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 0.89 956 15431 4732 8249 2450 64.7 MiB 0.11 0.00 2.5388 -83.2332 -2.5388 2.5388 1.03 0.000425739 0.000388768 0.0324032 0.0294736 36 1938 16 6.89349e+06 451003 648988. 2245.63 4.07 0.156113 0.136285 26050 158493 -1 1789 16 922 1566 98057 22087 2.57831 2.57831 -95.2768 -2.57831 0 0 828058. 2865.25 0.35 0.05 0.15 -1 -1 0.35 0.0167108 0.0148616 119 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 9.04 vpr 64.74 MiB -1 -1 0.15 20392 1 0.03 -1 -1 34068 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 26.2 MiB 1.83 1124 11783 3262 6577 1944 64.7 MiB 0.09 0.00 2.92775 -102.768 -2.92775 2.92775 0.95 0.000432598 0.000397186 0.0301768 0.0276112 36 2665 24 6.89349e+06 281877 648988. 2245.63 4.03 0.189689 0.166903 26050 158493 -1 2295 22 1652 2257 203252 41829 2.93141 2.93141 -119.236 -2.93141 0 0 828058. 2865.25 0.32 0.07 0.13 -1 -1 0.32 0.0241542 0.0214956 130 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 7.24 vpr 64.70 MiB -1 -1 0.14 20604 1 0.03 -1 -1 34028 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 26.2 MiB 2.36 829 5778 1188 4223 367 64.7 MiB 0.06 0.00 3.15648 -104.088 -3.15648 3.15648 0.98 0.000439168 0.000403831 0.0168041 0.0153954 34 2282 27 6.89349e+06 253689 618332. 2139.56 1.64 0.122519 0.106259 25762 151098 -1 1852 22 1279 1677 113891 27629 3.3057 3.3057 -123.13 -3.3057 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021451 0.018832 120 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.91 vpr 64.67 MiB -1 -1 0.16 20288 1 0.03 -1 -1 33488 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 26.2 MiB 2.54 1020 13403 3453 8147 1803 64.7 MiB 0.11 0.00 3.58297 -108.094 -3.58297 3.58297 1.01 0.000440328 0.000402684 0.03527 0.0321842 34 2488 19 6.89349e+06 295971 618332. 2139.56 1.96 0.115832 0.10192 25762 151098 -1 2016 32 1607 2138 241079 78306 3.61525 3.61525 -126.547 -3.61525 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0294188 0.0256781 124 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.92 vpr 64.44 MiB -1 -1 0.15 20184 1 0.03 -1 -1 33428 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 26.1 MiB 1.88 941 14081 4779 7456 1846 64.4 MiB 0.11 0.00 2.911 -94.18 -2.911 2.911 1.02 0.000400117 0.000363952 0.0362818 0.0331553 34 2302 21 6.89349e+06 239595 618332. 2139.56 1.71 0.134227 0.117928 25762 151098 -1 1911 17 969 1343 106907 24433 2.93031 2.93031 -111.71 -2.93031 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0183144 0.0162676 108 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.43 vpr 64.84 MiB -1 -1 0.14 20532 1 0.03 -1 -1 33728 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1102 16599 6496 8060 2043 64.8 MiB 0.15 0.00 3.19568 -105.717 -3.19568 3.19568 0.95 0.000474703 0.000431516 0.0452393 0.041362 34 3097 29 6.89349e+06 324158 618332. 2139.56 1.89 0.153483 0.136395 25762 151098 -1 2459 20 1800 2773 238791 51731 3.15781 3.15781 -122.177 -3.15781 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.024816 0.0221922 143 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 7.62 vpr 64.74 MiB -1 -1 0.15 20796 1 0.03 -1 -1 33628 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 26.4 MiB 2.15 1254 16078 4483 9843 1752 64.7 MiB 0.15 0.00 4.41637 -133.893 -4.41637 4.41637 1.01 0.000455539 0.000417101 0.0452361 0.0412271 34 3083 24 6.89349e+06 338252 618332. 2139.56 2.08 0.162925 0.1426 25762 151098 -1 2592 19 1682 2305 181992 40518 4.49145 4.49145 -155.949 -4.49145 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0238659 0.0211355 153 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 9.63 vpr 64.24 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33792 -1 -1 18 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65780 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 25.7 MiB 2.19 851 9543 2409 6304 830 64.2 MiB 0.08 0.00 2.55142 -81.1964 -2.55142 2.55142 1.00 0.000408433 0.000373262 0.0244422 0.0223163 36 1792 22 6.89349e+06 253689 648988. 2245.63 4.14 0.158254 0.137878 26050 158493 -1 1686 18 863 1199 90595 20504 2.63851 2.63851 -93.0912 -2.63851 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.017218 0.0152486 102 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.03 vpr 64.76 MiB -1 -1 0.16 20652 1 0.03 -1 -1 33932 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66316 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 26.4 MiB 2.67 1285 15103 4244 8933 1926 64.8 MiB 0.13 0.00 3.4692 -110.521 -3.4692 3.4692 1.02 0.000532664 0.000486652 0.0434216 0.0395761 34 3469 28 6.89349e+06 338252 618332. 2139.56 1.88 0.15287 0.134892 25762 151098 -1 2822 22 2204 3446 274731 61353 3.86065 3.86065 -140.859 -3.86065 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0269314 0.0237144 159 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.88 vpr 64.67 MiB -1 -1 0.17 20352 1 0.03 -1 -1 33880 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 26.2 MiB 2.37 1148 12560 3519 7659 1382 64.7 MiB 0.11 0.00 3.18768 -107.076 -3.18768 3.18768 1.02 0.000535862 0.000490648 0.0364956 0.0332969 34 2926 31 6.89349e+06 310065 618332. 2139.56 2.13 0.168936 0.148767 25762 151098 -1 2396 18 1400 2085 188638 39481 3.08991 3.08991 -121.144 -3.08991 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0213898 0.0189662 142 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 9.60 vpr 64.95 MiB -1 -1 0.14 20168 1 0.03 -1 -1 33392 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 26.4 MiB 2.02 1179 11803 3445 7602 756 65.0 MiB 0.11 0.00 2.80245 -104.108 -2.80245 2.80245 1.00 0.000515284 0.000473286 0.0324095 0.0296778 36 2637 33 6.89349e+06 295971 648988. 2245.63 4.22 0.206923 0.180956 26050 158493 -1 2317 21 1588 2130 165200 35486 2.93426 2.93426 -124.003 -2.93426 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0236263 0.0208184 131 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 7.68 vpr 64.26 MiB -1 -1 0.14 19928 1 0.03 -1 -1 33584 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65800 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 25.9 MiB 1.20 635 6923 1558 5008 357 64.3 MiB 0.05 0.00 2.15123 -72.8102 -2.15123 2.15123 1.00 0.000368337 0.000338529 0.0166007 0.0152335 34 1657 23 6.89349e+06 211408 618332. 2139.56 3.27 0.118379 0.103169 25762 151098 -1 1274 16 581 680 49411 11989 2.01387 2.01387 -85.0375 -2.01387 0 0 787024. 2723.27 0.32 0.04 0.14 -1 -1 0.32 0.0145974 0.0129349 82 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 8.06 vpr 64.68 MiB -1 -1 0.14 20284 1 0.03 -1 -1 33624 -1 -1 19 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66228 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 26.3 MiB 2.39 965 9694 2612 6447 635 64.7 MiB 0.08 0.00 3.72732 -115.029 -3.72732 3.72732 0.96 0.000456453 0.000415565 0.0250465 0.0229725 30 2388 44 6.89349e+06 267783 556674. 1926.21 2.59 0.178047 0.156097 25186 138497 -1 1911 17 1048 1559 99111 23558 3.5623 3.5623 -132.38 -3.5623 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0180877 0.0161158 117 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.47 vpr 64.87 MiB -1 -1 0.16 20164 1 0.03 -1 -1 33820 -1 -1 34 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 26.3 MiB 1.29 1118 8648 1733 6594 321 64.9 MiB 0.08 0.00 3.84343 -123.676 -3.84343 3.84343 0.99 0.000514996 0.000467647 0.0225007 0.0204712 34 2709 33 6.89349e+06 479191 618332. 2139.56 1.91 0.148562 0.129097 25762 151098 -1 2261 18 1366 2016 140535 32540 4.53664 4.53664 -154.811 -4.53664 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0212324 0.0188149 151 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 7.57 vpr 64.80 MiB -1 -1 0.17 20508 1 0.03 -1 -1 33740 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66352 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 26.4 MiB 1.60 1293 15831 5294 8250 2287 64.8 MiB 0.16 0.00 3.66325 -116.141 -3.66325 3.66325 1.03 0.000565629 0.000517715 0.0462438 0.0421156 36 3134 24 6.89349e+06 324158 648988. 2245.63 2.44 0.184768 0.162948 26050 158493 -1 2611 22 1984 3026 245424 52894 3.86676 3.86676 -136.774 -3.86676 0 0 828058. 2865.25 0.35 0.09 0.15 -1 -1 0.35 0.0285838 0.0253949 155 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.25 vpr 64.23 MiB -1 -1 0.14 20012 1 0.03 -1 -1 33920 -1 -1 19 26 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 25.8 MiB 1.38 418 11487 4750 5672 1065 64.2 MiB 0.06 0.00 2.07721 -57.7283 -2.07721 2.07721 1.01 0.000269241 0.000245943 0.0226552 0.0207221 34 1552 22 6.89349e+06 267783 618332. 2139.56 1.63 0.097635 0.0856065 25762 151098 -1 1097 19 776 912 79811 19974 2.09806 2.09806 -69.7334 -2.09806 0 0 787024. 2723.27 0.33 0.04 0.14 -1 -1 0.33 0.0149037 0.0131727 76 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 10.56 vpr 64.62 MiB -1 -1 0.15 20328 1 0.03 -1 -1 33824 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66172 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 26.3 MiB 1.02 890 10455 2852 5890 1713 64.6 MiB 0.09 0.00 3.52907 -102.015 -3.52907 3.52907 1.01 0.000496276 0.00045615 0.0271564 0.0248418 30 2392 21 6.89349e+06 324158 556674. 1926.21 6.26 0.225558 0.197553 25186 138497 -1 1819 20 1131 2023 133013 31165 3.41275 3.41275 -116.185 -3.41275 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0213569 0.0189073 119 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.46 vpr 63.78 MiB -1 -1 0.14 20248 1 0.03 -1 -1 33516 -1 -1 12 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65308 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 25.3 MiB 0.43 593 9676 3705 4147 1824 63.8 MiB 0.05 0.00 1.84932 -63.6612 -1.84932 1.84932 0.98 0.000238579 0.00021684 0.0173467 0.0157887 30 1385 40 6.89349e+06 169126 556674. 1926.21 0.95 0.0660366 0.0575236 25186 138497 -1 1150 18 568 755 52526 12780 2.09706 2.09706 -76.8599 -2.09706 0 0 706193. 2443.58 0.28 0.04 0.13 -1 -1 0.28 0.0130984 0.0114538 65 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 8.82 vpr 64.53 MiB -1 -1 0.13 20212 1 0.03 -1 -1 33936 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 26.1 MiB 1.82 1097 8868 2472 5861 535 64.5 MiB 0.08 0.00 3.87678 -114.73 -3.87678 3.87678 0.96 0.000452142 0.000414187 0.0231756 0.0212718 36 2312 19 6.89349e+06 281877 648988. 2245.63 3.84 0.162129 0.142346 26050 158493 -1 2023 20 1060 1645 111014 25976 3.64606 3.64606 -123.715 -3.64606 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.0214393 0.0190954 125 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 7.04 vpr 64.54 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33728 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66092 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 26.1 MiB 0.85 999 13919 3835 8609 1475 64.5 MiB 0.11 0.00 2.6813 -88.0594 -2.6813 2.6813 1.00 0.000467946 0.000429886 0.031986 0.0292028 26 2333 36 6.89349e+06 436909 503264. 1741.40 2.92 0.190614 0.167821 24322 120374 -1 2253 22 1418 2497 222089 51642 2.96241 2.96241 -112.651 -2.96241 0 0 618332. 2139.56 0.25 0.08 0.11 -1 -1 0.25 0.0248515 0.0220573 130 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 8.18 vpr 64.86 MiB -1 -1 0.15 20812 1 0.03 -1 -1 33952 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 26.3 MiB 2.54 1221 15447 4850 8084 2513 64.9 MiB 0.14 0.00 3.79978 -111.515 -3.79978 3.79978 1.01 0.000507586 0.000454132 0.0423611 0.0385566 34 3234 49 6.89349e+06 324158 618332. 2139.56 2.21 0.171704 0.15189 25762 151098 -1 2404 20 1637 2513 186342 42569 3.85196 3.85196 -132.073 -3.85196 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0238095 0.021132 142 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.78 vpr 64.43 MiB -1 -1 0.13 20116 1 0.03 -1 -1 33772 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65976 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 26.1 MiB 1.92 1015 13031 4907 6151 1973 64.4 MiB 0.10 0.00 2.9839 -102 -2.9839 2.9839 0.95 0.000425402 0.000390877 0.0325029 0.0297539 34 2320 20 6.89349e+06 239595 618332. 2139.56 1.73 0.139887 0.123515 25762 151098 -1 1894 20 1218 1782 132047 30563 3.12086 3.12086 -118.175 -3.12086 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.020187 0.0179204 112 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 9.53 vpr 64.59 MiB -1 -1 0.16 20212 1 0.03 -1 -1 33724 -1 -1 17 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 26.0 MiB 2.22 782 13092 4071 7234 1787 64.6 MiB 0.10 0.00 3.26582 -93.307 -3.26582 3.26582 0.99 0.000396853 0.000362491 0.0326927 0.0299151 36 1848 21 6.89349e+06 239595 648988. 2245.63 4.01 0.154816 0.135112 26050 158493 -1 1714 18 885 1467 107475 24480 3.26545 3.26545 -106.126 -3.26545 0 0 828058. 2865.25 0.34 0.05 0.14 -1 -1 0.34 0.0186231 0.0166051 104 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 7.35 vpr 64.64 MiB -1 -1 0.15 20532 1 0.03 -1 -1 33748 -1 -1 20 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66192 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 26.1 MiB 1.91 750 12120 5092 6252 776 64.6 MiB 0.09 0.00 3.40424 -95.7275 -3.40424 3.40424 1.03 0.000352195 0.000321311 0.028323 0.025919 34 2274 38 6.89349e+06 281877 618332. 2139.56 2.13 0.155032 0.137088 25762 151098 -1 1764 19 1146 1879 171017 37476 3.34645 3.34645 -110.413 -3.34645 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0196987 0.0175693 107 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.48 vpr 64.61 MiB -1 -1 0.14 20564 1 0.03 -1 -1 33520 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 26.1 MiB 0.70 896 10756 2987 7083 686 64.6 MiB 0.08 0.00 2.99448 -96.0518 -2.99448 2.99448 1.01 0.000373701 0.000342058 0.0258723 0.023657 32 2247 20 6.89349e+06 239595 586450. 2029.24 1.51 0.104164 0.0918846 25474 144626 -1 1922 20 1206 1991 166068 37344 3.06346 3.06346 -116.808 -3.06346 0 0 744469. 2576.02 0.31 0.07 0.14 -1 -1 0.31 0.0204624 0.0182021 101 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.76 vpr 64.67 MiB -1 -1 0.15 20340 1 0.03 -1 -1 33808 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66220 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 26.3 MiB 1.89 837 9881 2778 6078 1025 64.7 MiB 0.08 0.00 2.82865 -88.3089 -2.82865 2.82865 0.99 0.000445608 0.000410918 0.025622 0.0234897 34 2178 27 6.89349e+06 253689 618332. 2139.56 1.59 0.131626 0.115768 25762 151098 -1 1800 18 1125 1636 116984 28323 2.78206 2.78206 -104.718 -2.78206 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0184296 0.0163031 108 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.93 vpr 64.87 MiB -1 -1 0.15 20320 1 0.03 -1 -1 33728 -1 -1 22 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 26.4 MiB 2.02 968 9803 2327 6931 545 64.9 MiB 0.07 0.00 2.84275 -85.71 -2.84275 2.84275 0.94 0.000409154 0.000373701 0.0243302 0.0222705 34 2288 35 6.89349e+06 310065 618332. 2139.56 1.81 0.138874 0.121854 25762 151098 -1 1907 19 1252 1666 140726 31933 2.74491 2.74491 -100.813 -2.74491 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0188806 0.0167216 120 48 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.65 vpr 65.19 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33448 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 26.7 MiB 2.01 1299 17117 5782 9189 2146 65.2 MiB 0.17 0.00 3.60205 -110.804 -3.60205 3.60205 1.00 0.00053339 0.00048773 0.0485867 0.0443832 34 3354 40 6.89349e+06 352346 618332. 2139.56 2.21 0.190548 0.166933 25762 151098 -1 2530 21 1409 2458 219615 45453 3.98626 3.98626 -128.556 -3.98626 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0253316 0.02238 159 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 10.43 vpr 65.25 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33848 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66820 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 26.8 MiB 2.40 1273 16663 4876 9595 2192 65.3 MiB 0.17 0.00 3.70207 -127.177 -3.70207 3.70207 1.02 0.000552746 0.000505433 0.0503949 0.0459176 36 3145 24 6.89349e+06 338252 648988. 2245.63 4.53 0.266373 0.234413 26050 158493 -1 2820 21 2362 3293 265908 57247 3.92285 3.92285 -150.328 -3.92285 0 0 828058. 2865.25 0.34 0.10 0.15 -1 -1 0.34 0.0288624 0.0255746 168 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.66 vpr 64.25 MiB -1 -1 0.16 20336 1 0.03 -1 -1 33912 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65792 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.9 MiB 1.48 821 11981 3395 6671 1915 64.2 MiB 0.10 0.00 3.09348 -96.3304 -3.09348 3.09348 1.04 0.00043947 0.000403442 0.0313285 0.0286464 34 2026 25 6.89349e+06 253689 618332. 2139.56 1.78 0.135977 0.119544 25762 151098 -1 1756 19 1150 1775 131862 31098 2.94316 2.94316 -107.734 -2.94316 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0192873 0.0170822 109 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.88 vpr 65.09 MiB -1 -1 0.16 20608 1 0.03 -1 -1 34012 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 26.7 MiB 2.68 1276 14128 4201 7880 2047 65.1 MiB 0.13 0.00 3.29719 -108.579 -3.29719 3.29719 0.99 0.000540025 0.000492427 0.0406193 0.0370738 34 3204 32 6.89349e+06 352346 618332. 2139.56 1.81 0.1689 0.147496 25762 151098 -1 2615 20 1557 2440 180641 40438 3.68035 3.68035 -133.215 -3.68035 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0244837 0.0216079 160 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.98 vpr 64.99 MiB -1 -1 0.15 20656 1 0.03 -1 -1 33956 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 26.6 MiB 2.87 1274 17248 7062 8900 1286 65.0 MiB 0.16 0.00 4.54467 -133.388 -4.54467 4.54467 0.95 0.00052322 0.000478111 0.0491255 0.0449902 36 3261 29 6.89349e+06 352346 648988. 2245.63 2.83 0.195852 0.173848 26050 158493 -1 2656 22 2176 3186 244875 53894 4.51098 4.51098 -157.337 -4.51098 0 0 828058. 2865.25 0.32 0.09 0.14 -1 -1 0.32 0.0277059 0.0246311 163 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.31 vpr 65.04 MiB -1 -1 0.18 20472 1 0.03 -1 -1 34032 -1 -1 25 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 26.6 MiB 2.50 1255 16858 6090 7529 3239 65.0 MiB 0.15 0.00 4.87148 -144.46 -4.87148 4.87148 1.01 0.000509767 0.000462917 0.0485947 0.0441227 34 3552 33 6.89349e+06 352346 618332. 2139.56 2.35 0.207369 0.183046 25762 151098 -1 2649 21 1965 2948 251504 60210 4.90498 4.90498 -168.422 -4.90498 0 0 787024. 2723.27 0.33 0.10 0.14 -1 -1 0.33 0.0293088 0.0260766 166 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.47 vpr 65.02 MiB -1 -1 0.17 20720 1 0.03 -1 -1 33700 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 26.7 MiB 2.27 1258 16791 5122 9331 2338 65.0 MiB 0.15 0.00 3.17668 -104.664 -3.17668 3.17668 1.01 0.000462642 0.000423444 0.045565 0.0415781 34 3050 41 6.89349e+06 338252 618332. 2139.56 1.76 0.154578 0.135919 25762 151098 -1 2486 24 1954 2937 230664 50471 3.25786 3.25786 -121.649 -3.25786 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.0288433 0.025505 148 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.96 vpr 64.28 MiB -1 -1 0.14 20408 1 0.03 -1 -1 33988 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65820 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 25.8 MiB 2.02 1011 14724 5720 7303 1701 64.3 MiB 0.11 0.00 3.54595 -98.0074 -3.54595 3.54595 0.95 0.000422943 0.000385294 0.0357367 0.0326994 34 2340 21 6.89349e+06 281877 618332. 2139.56 1.79 0.14677 0.129842 25762 151098 -1 1963 18 1105 1577 126968 28926 3.7988 3.7988 -116.945 -3.7988 0 0 787024. 2723.27 0.31 0.06 0.13 -1 -1 0.31 0.0195398 0.0173252 120 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.67 vpr 65.43 MiB -1 -1 0.17 20476 1 0.03 -1 -1 33644 -1 -1 31 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67000 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 27.0 MiB 2.73 1674 20831 6675 11879 2277 65.4 MiB 0.23 0.00 4.28981 -142.961 -4.28981 4.28981 1.00 0.000590588 0.000534648 0.0646435 0.0589065 34 4086 45 6.89349e+06 436909 618332. 2139.56 2.38 0.204546 0.180249 25762 151098 -1 3435 21 2662 4010 296477 64785 4.74079 4.74079 -167.779 -4.74079 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0300269 0.0266988 203 84 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.84 vpr 64.59 MiB -1 -1 0.14 20396 1 0.03 -1 -1 33504 -1 -1 18 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 26.0 MiB 1.92 970 13556 4106 7339 2111 64.6 MiB 0.10 0.00 2.974 -93.2373 -2.974 2.974 1.02 0.000397781 0.000363499 0.0321133 0.0292552 34 2146 28 6.89349e+06 253689 618332. 2139.56 1.58 0.135268 0.118704 25762 151098 -1 1954 17 1027 1357 100250 23062 2.86421 2.86421 -106.717 -2.86421 0 0 787024. 2723.27 0.33 0.05 0.14 -1 -1 0.33 0.0174749 0.0155199 106 24 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.96 vpr 64.63 MiB -1 -1 0.16 20704 1 0.03 -1 -1 33660 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66184 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 26.1 MiB 1.63 1143 11426 3180 6652 1594 64.6 MiB 0.11 0.00 3.75642 -117.13 -3.75642 3.75642 0.95 0.000490317 0.000450475 0.0308718 0.0282674 30 2898 22 6.89349e+06 324158 556674. 1926.21 1.20 0.106654 0.0946202 25186 138497 -1 2367 21 1361 2112 155453 34336 3.79066 3.79066 -131.985 -3.79066 0 0 706193. 2443.58 0.28 0.07 0.12 -1 -1 0.28 0.0239289 0.0212077 140 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.84 vpr 64.92 MiB -1 -1 0.16 20400 1 0.03 -1 -1 33912 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 26.6 MiB 2.59 1262 16407 5394 8590 2423 64.9 MiB 0.15 0.00 3.53859 -108.537 -3.53859 3.53859 0.97 0.000526858 0.000480698 0.0461864 0.0419693 34 3447 24 6.89349e+06 324158 618332. 2139.56 1.89 0.141956 0.124471 25762 151098 -1 2683 18 1517 2404 188807 42023 3.41695 3.41695 -124.929 -3.41695 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0216523 0.0190989 149 50 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.14 vpr 64.64 MiB -1 -1 0.15 20176 1 0.03 -1 -1 33908 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66188 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 26.2 MiB 0.68 988 12954 3861 7047 2046 64.6 MiB 0.11 0.00 3.37229 -105.584 -3.37229 3.37229 1.03 0.000436544 0.000395846 0.0313163 0.0284761 30 2479 28 6.89349e+06 366440 556674. 1926.21 1.11 0.106371 0.0941912 25186 138497 -1 2052 21 1131 2141 146543 32432 3.53085 3.53085 -121.87 -3.53085 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0223346 0.0197899 123 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.41 vpr 64.90 MiB -1 -1 0.16 20928 1 0.03 -1 -1 33672 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 26.4 MiB 2.16 1205 13911 4891 6884 2136 64.9 MiB 0.13 0.00 3.42271 -106.786 -3.42271 3.42271 0.99 0.000483374 0.000442614 0.0398022 0.0363599 34 2888 24 6.89349e+06 324158 618332. 2139.56 1.83 0.157653 0.137715 25762 151098 -1 2458 21 1706 2354 206364 45488 3.22476 3.22476 -122.123 -3.22476 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0239701 0.0212067 148 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.51 vpr 64.75 MiB -1 -1 0.15 20600 1 0.03 -1 -1 33672 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 26.4 MiB 2.31 1247 16273 5230 8426 2617 64.8 MiB 0.14 0.00 3.31619 -107.864 -3.31619 3.31619 0.96 0.000530999 0.000484844 0.0458493 0.0418121 34 3191 28 6.89349e+06 338252 618332. 2139.56 1.89 0.168063 0.147277 25762 151098 -1 2569 20 1653 2495 202668 44581 3.414 3.414 -126.461 -3.414 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0242807 0.0214522 154 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 9.43 vpr 65.13 MiB -1 -1 0.15 20624 1 0.03 -1 -1 33872 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 26.7 MiB 1.99 1426 13356 3645 7813 1898 65.1 MiB 0.12 0.00 3.19568 -109.525 -3.19568 3.19568 0.94 0.00053075 0.000487206 0.0371657 0.0339703 36 3068 30 6.89349e+06 366440 648988. 2245.63 4.19 0.239208 0.209951 26050 158493 -1 2550 22 1970 2752 192937 42387 3.23291 3.23291 -127.252 -3.23291 0 0 828058. 2865.25 0.33 0.08 0.14 -1 -1 0.33 0.0285269 0.0254051 164 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.19 vpr 64.82 MiB -1 -1 0.15 20400 1 0.03 -1 -1 33640 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 26.3 MiB 1.99 959 13849 3617 9052 1180 64.8 MiB 0.12 0.00 3.61195 -106.605 -3.61195 3.61195 0.99 0.000477928 0.000440327 0.0368033 0.0336116 34 2345 49 6.89349e+06 295971 618332. 2139.56 1.84 0.162896 0.142117 25762 151098 -1 1913 17 1150 1782 112063 27373 3.6892 3.6892 -123.346 -3.6892 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0190102 0.0168705 128 21 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 9.61 vpr 64.85 MiB -1 -1 0.15 20184 1 0.03 -1 -1 33788 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66404 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 26.3 MiB 1.90 1018 15206 4361 8400 2445 64.8 MiB 0.12 0.00 3.93308 -114.051 -3.93308 3.93308 1.02 0.000457497 0.000416564 0.0399526 0.0364096 38 2408 22 6.89349e+06 310065 678818. 2348.85 4.26 0.233758 0.204412 26626 170182 -1 2090 18 1320 1969 129334 29703 3.6821 3.6821 -124.54 -3.6821 0 0 902133. 3121.57 0.36 0.06 0.16 -1 -1 0.36 0.0217216 0.0193206 135 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.43 vpr 64.99 MiB -1 -1 0.15 20576 1 0.03 -1 -1 34036 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 26.6 MiB 1.46 1359 11991 3353 7500 1138 65.0 MiB 0.11 0.00 3.69042 -117.294 -3.69042 3.69042 0.95 0.000540741 0.000486854 0.0344485 0.0315463 34 3313 26 6.89349e+06 338252 618332. 2139.56 1.73 0.174106 0.153816 25762 151098 -1 2743 22 1726 2715 194869 44205 3.9617 3.9617 -143.002 -3.9617 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0285245 0.0254048 156 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 8.64 vpr 64.99 MiB -1 -1 0.16 20552 1 0.03 -1 -1 33916 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66548 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 26.5 MiB 2.90 1307 11375 3187 7519 669 65.0 MiB 0.13 0.00 3.68195 -114.484 -3.68195 3.68195 1.00 0.00070203 0.000649164 0.0369421 0.0337837 34 3735 48 6.89349e+06 352346 618332. 2139.56 2.33 0.214278 0.189376 25762 151098 -1 2872 20 1946 2876 203844 46438 4.00826 4.00826 -141.231 -4.00826 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0317678 0.0285401 166 74 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.20 vpr 64.46 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33644 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66004 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 25.9 MiB 1.96 886 12416 3486 7835 1095 64.5 MiB 0.10 0.00 2.79059 -92.6319 -2.79059 2.79059 0.99 0.000396528 0.00036182 0.0307704 0.0280989 30 2022 23 6.89349e+06 211408 556674. 1926.21 1.00 0.086187 0.0758836 25186 138497 -1 1717 20 865 1375 80041 19004 2.42326 2.42326 -99.535 -2.42326 0 0 706193. 2443.58 0.29 0.05 0.14 -1 -1 0.29 0.0181333 0.0159739 96 20 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.05 vpr 65.13 MiB -1 -1 0.16 20772 1 0.03 -1 -1 33768 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 26.5 MiB 1.51 1086 13992 4212 8069 1711 65.1 MiB 0.13 0.00 3.33199 -120.259 -3.33199 3.33199 1.02 0.000488025 0.000447022 0.0397849 0.0362 34 2799 22 6.89349e+06 281877 618332. 2139.56 2.09 0.172552 0.152381 25762 151098 -1 2308 20 1966 2699 205284 45873 3.75255 3.75255 -144.419 -3.75255 0 0 787024. 2723.27 0.34 0.08 0.14 -1 -1 0.34 0.0260544 0.0232678 138 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.89 vpr 65.11 MiB -1 -1 0.15 20348 1 0.03 -1 -1 33780 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 26.7 MiB 1.95 1352 16523 6310 8350 1863 65.1 MiB 0.17 0.00 4.36852 -132.857 -4.36852 4.36852 0.96 0.000543978 0.000492429 0.049001 0.0445061 34 3625 30 6.89349e+06 352346 618332. 2139.56 2.63 0.200456 0.17741 25762 151098 -1 2816 24 2083 3307 286354 65925 4.63405 4.63405 -156.183 -4.63405 0 0 787024. 2723.27 0.31 0.11 0.13 -1 -1 0.31 0.0332207 0.0296799 168 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.22 vpr 64.71 MiB -1 -1 0.16 20112 1 0.03 -1 -1 33860 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66268 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 26.2 MiB 1.99 1112 15773 5448 7805 2520 64.7 MiB 0.14 0.00 3.53796 -115.247 -3.53796 3.53796 0.98 0.000506468 0.000449484 0.0443063 0.0403991 34 2903 22 6.89349e+06 310065 618332. 2139.56 1.84 0.161109 0.141112 25762 151098 -1 2345 22 1765 2622 222284 49150 3.21461 3.21461 -127.966 -3.21461 0 0 787024. 2723.27 0.32 0.09 0.16 -1 -1 0.32 0.0266224 0.0235271 144 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 9.24 vpr 64.28 MiB -1 -1 0.16 20316 1 0.03 -1 -1 33300 -1 -1 27 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65824 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 25.9 MiB 1.77 943 16325 5444 8309 2572 64.3 MiB 0.12 0.00 3.42624 -106.158 -3.42624 3.42624 0.98 0.000426581 0.000388955 0.0363589 0.0332133 36 2156 21 6.89349e+06 380534 648988. 2245.63 4.15 0.170128 0.147681 26050 158493 -1 1731 19 1079 1698 114086 26197 3.37965 3.37965 -117.358 -3.37965 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0187844 0.0165681 118 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.12 vpr 65.18 MiB -1 -1 0.17 20936 1 0.03 -1 -1 33932 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66744 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.7 MiB 3.72 1500 8251 1895 5784 572 65.2 MiB 0.10 0.00 5.28925 -153.561 -5.28925 5.28925 1.01 0.000806661 0.000745174 0.0297987 0.027432 34 4237 45 6.89349e+06 380534 618332. 2139.56 2.97 0.224972 0.198949 25762 151098 -1 3194 22 2572 3957 281292 63952 5.58053 5.58053 -184.029 -5.58053 0 0 787024. 2723.27 0.32 0.11 0.14 -1 -1 0.32 0.0348727 0.0310886 188 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.63 vpr 64.90 MiB -1 -1 0.13 20600 1 0.03 -1 -1 34116 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66460 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 26.4 MiB 1.56 1155 15151 5020 8318 1813 64.9 MiB 0.13 0.00 3.69702 -118.898 -3.69702 3.69702 0.94 0.000461769 0.000421194 0.0405987 0.0371509 34 2736 22 6.89349e+06 295971 618332. 2139.56 1.89 0.166795 0.147472 25762 151098 -1 2206 20 1651 2362 170553 38538 3.8237 3.8237 -135.689 -3.8237 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0231547 0.0204917 139 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.62 vpr 64.45 MiB -1 -1 0.14 20356 1 0.03 -1 -1 33372 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65992 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.9 MiB 0.69 839 14323 3511 9263 1549 64.4 MiB 0.10 0.00 2.8828 -88.6493 -2.8828 2.8828 0.99 0.000381301 0.000347301 0.0293824 0.026873 34 1881 18 6.89349e+06 338252 618332. 2139.56 1.67 0.11012 0.0962584 25762 151098 -1 1626 18 769 1336 98505 22251 2.64096 2.64096 -99.6674 -2.64096 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0157942 0.0139196 94 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.98 vpr 64.91 MiB -1 -1 0.17 20476 1 0.03 -1 -1 33808 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 26.3 MiB 2.03 1304 14487 4749 7643 2095 64.9 MiB 0.13 0.00 4.19497 -118.988 -4.19497 4.19497 0.97 0.00050152 0.000456142 0.0419216 0.0381181 34 3086 24 6.89349e+06 324158 618332. 2139.56 1.67 0.154386 0.135098 25762 151098 -1 2508 19 1430 2556 184075 41123 4.4618 4.4618 -138.909 -4.4618 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0205886 0.0181901 149 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.72 vpr 64.18 MiB -1 -1 0.13 20172 1 0.03 -1 -1 33928 -1 -1 19 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65724 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.7 MiB 0.75 917 10703 2499 7304 900 64.2 MiB 0.08 0.00 2.81765 -93.3738 -2.81765 2.81765 0.99 0.000397136 0.000363977 0.0247892 0.0226824 34 2181 19 6.89349e+06 267783 618332. 2139.56 1.70 0.12991 0.114793 25762 151098 -1 1741 22 1183 2206 163574 36397 2.72081 2.72081 -106.649 -2.72081 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0205235 0.018146 98 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.86 vpr 64.55 MiB -1 -1 0.15 20228 1 0.03 -1 -1 33532 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 26.2 MiB 1.60 830 9694 2630 6313 751 64.6 MiB 0.09 0.00 3.17368 -94.9673 -3.17368 3.17368 0.99 0.000432996 0.000397658 0.0248858 0.0227671 30 1994 26 6.89349e+06 281877 556674. 1926.21 1.01 0.0843808 0.0740181 25186 138497 -1 1739 21 1166 1706 115361 27152 2.91186 2.91186 -109.796 -2.91186 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0199825 0.0175659 113 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 8.31 vpr 64.96 MiB -1 -1 0.15 20460 1 0.03 -1 -1 33948 -1 -1 26 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 26.6 MiB 3.34 1107 10455 2737 7033 685 65.0 MiB 0.10 0.00 3.60013 -105.333 -3.60013 3.60013 0.94 0.000524725 0.000483422 0.0288538 0.026384 34 2931 34 6.89349e+06 366440 618332. 2139.56 1.80 0.164891 0.14493 25762 151098 -1 2248 19 1488 2169 149212 35720 3.64764 3.64764 -123.704 -3.64764 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0229744 0.0203448 154 56 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 7.74 vpr 64.95 MiB -1 -1 0.16 20716 1 0.03 -1 -1 33860 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66504 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 26.6 MiB 2.19 1221 16529 5593 8865 2071 64.9 MiB 0.15 0.00 3.99304 -131.657 -3.99304 3.99304 0.99 0.000537443 0.000489432 0.0492514 0.0448663 34 3267 30 6.89349e+06 310065 618332. 2139.56 2.13 0.178449 0.15633 25762 151098 -1 2715 20 1953 2858 211100 48185 4.56669 4.56669 -157.495 -4.56669 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.024398 0.0215718 151 51 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.32 vpr 64.77 MiB -1 -1 0.15 20576 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 26.4 MiB 1.87 1324 13911 4330 7522 2059 64.8 MiB 0.13 0.00 4.28447 -126.633 -4.28447 4.28447 1.01 0.000518745 0.000475928 0.0407067 0.0369457 34 3121 24 6.89349e+06 324158 618332. 2139.56 2.03 0.185096 0.164166 25762 151098 -1 2638 22 2034 2965 223799 51316 4.63015 4.63015 -153.608 -4.63015 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0306617 0.0274196 150 48 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.76 vpr 64.44 MiB -1 -1 0.13 20388 1 0.03 -1 -1 33500 -1 -1 15 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65984 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.9 MiB 1.82 1012 12247 3759 7237 1251 64.4 MiB 0.09 0.00 3.42271 -102.592 -3.42271 3.42271 0.95 0.000380881 0.000347194 0.0305071 0.0277768 34 2311 30 6.89349e+06 211408 618332. 2139.56 1.82 0.140568 0.123461 25762 151098 -1 1923 22 1248 1837 167438 35535 3.01146 3.01146 -111.494 -3.01146 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0215368 0.0190288 105 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 9.43 vpr 64.55 MiB -1 -1 0.17 20156 1 0.03 -1 -1 34028 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66100 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 26.1 MiB 1.93 1110 14843 5163 7748 1932 64.6 MiB 0.13 0.00 2.90565 -101.475 -2.90565 2.90565 0.99 0.000454038 0.00041412 0.040888 0.0372787 36 2537 21 6.89349e+06 281877 648988. 2245.63 4.12 0.179612 0.155909 26050 158493 -1 2266 20 1366 1923 155600 34038 3.05746 3.05746 -122.162 -3.05746 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.0225382 0.0199974 131 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.65 vpr 64.59 MiB -1 -1 0.16 20084 1 0.03 -1 -1 33672 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 26.0 MiB 2.49 1141 16468 6347 8227 1894 64.6 MiB 0.14 0.00 3.1616 -93.7201 -3.1616 3.1616 0.99 0.000487867 0.000443899 0.0435006 0.0395867 34 2607 28 6.89349e+06 366440 618332. 2139.56 1.81 0.157712 0.137448 25762 151098 -1 2172 20 1486 2192 151141 34960 3.05561 3.05561 -109.316 -3.05561 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0219605 0.0193581 142 52 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.54 vpr 64.60 MiB -1 -1 0.16 20600 1 0.03 -1 -1 33960 -1 -1 23 28 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66152 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 26.2 MiB 1.60 828 14303 4124 8061 2118 64.6 MiB 0.11 0.00 3.50175 -88.7191 -3.50175 3.50175 0.99 0.000409881 0.000374841 0.0350018 0.0319567 34 2134 21 6.89349e+06 324158 618332. 2139.56 1.63 0.127664 0.111361 25762 151098 -1 1804 20 1209 2033 146238 32777 3.52 3.52 -106.268 -3.52 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0192475 0.0169502 119 20 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 8.07 vpr 64.77 MiB -1 -1 0.14 20392 1 0.03 -1 -1 33744 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66328 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 26.3 MiB 2.61 1107 15563 4839 9013 1711 64.8 MiB 0.12 0.00 3.67032 -115.689 -3.67032 3.67032 0.94 0.000386598 0.000353346 0.0399362 0.0364575 34 2815 45 6.89349e+06 295971 618332. 2139.56 2.30 0.182389 0.161547 25762 151098 -1 2316 20 1657 2389 200510 43077 3.93975 3.93975 -145.567 -3.93975 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0226974 0.0202278 130 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 8.24 vpr 65.07 MiB -1 -1 0.15 20536 1 0.03 -1 -1 33736 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 26.4 MiB 2.41 1267 5757 1225 4188 344 65.1 MiB 0.07 0.00 3.03554 -109.467 -3.03554 3.03554 1.02 0.00053937 0.000494461 0.017913 0.0163978 36 2787 34 6.89349e+06 281877 648988. 2245.63 2.47 0.15822 0.139413 26050 158493 -1 2430 19 1458 1950 169392 35739 3.12225 3.12225 -128.12 -3.12225 0 0 828058. 2865.25 0.35 0.07 0.15 -1 -1 0.35 0.0234134 0.0208216 138 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.33 vpr 64.56 MiB -1 -1 0.15 20224 1 0.03 -1 -1 33944 -1 -1 31 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 26.1 MiB 0.80 1059 15217 4153 8755 2309 64.6 MiB 0.12 0.00 3.71042 -110.148 -3.71042 3.71042 1.00 0.000435836 0.000397815 0.0339216 0.0309086 28 2558 27 6.89349e+06 436909 531479. 1839.03 1.24 0.102381 0.0902437 24610 126494 -1 2184 22 1423 2633 194790 41978 3.6921 3.6921 -126.424 -3.6921 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0227651 0.0199729 129 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 9.65 vpr 64.99 MiB -1 -1 0.14 20644 1 0.03 -1 -1 33888 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 26.4 MiB 2.19 1073 15063 4870 7370 2823 65.0 MiB 0.13 0.00 3.78342 -120.78 -3.78342 3.78342 0.94 0.0004895 0.000448208 0.0409559 0.0375133 36 2961 24 6.89349e+06 324158 648988. 2245.63 4.24 0.239616 0.211051 26050 158493 -1 2388 19 1659 2495 203163 44060 4.2718 4.2718 -145.631 -4.2718 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0248133 0.0221492 148 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 10.32 vpr 65.16 MiB -1 -1 0.16 20496 1 0.03 -1 -1 33896 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66720 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 26.8 MiB 2.19 1387 15799 4762 8190 2847 65.2 MiB 0.15 0.00 4.36821 -138.443 -4.36821 4.36821 1.03 0.000546804 0.000497088 0.0454526 0.041469 36 3122 24 6.89349e+06 380534 648988. 2245.63 4.62 0.261307 0.229971 26050 158493 -1 2497 19 1785 2497 183731 42090 4.68299 4.68299 -162.029 -4.68299 0 0 828058. 2865.25 0.35 0.08 0.15 -1 -1 0.35 0.0269772 0.0240626 164 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.18 vpr 64.98 MiB -1 -1 0.16 20536 1 0.03 -1 -1 33832 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66544 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 26.6 MiB 2.41 1342 10743 2957 7146 640 65.0 MiB 0.12 0.00 3.66297 -120.899 -3.66297 3.66297 0.99 0.000535006 0.000492461 0.0316516 0.0289182 36 3098 22 6.89349e+06 366440 648988. 2245.63 2.39 0.158221 0.138362 26050 158493 -1 2540 18 1580 2441 177699 39147 3.6593 3.6593 -140.509 -3.6593 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0235605 0.0208618 164 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.22 vpr 64.47 MiB -1 -1 0.13 20256 1 0.03 -1 -1 33800 -1 -1 21 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 26.1 MiB 2.01 968 15383 4647 8807 1929 64.5 MiB 0.11 0.00 3.29223 -102.411 -3.29223 3.29223 0.94 0.000390165 0.000352486 0.0354804 0.0322034 36 2158 20 6.89349e+06 295971 648988. 2245.63 2.07 0.14101 0.124413 26050 158493 -1 2007 20 1190 1668 150807 31403 3.15801 3.15801 -113.612 -3.15801 0 0 828058. 2865.25 0.32 0.06 0.14 -1 -1 0.32 0.019568 0.0173316 112 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 8.28 vpr 64.90 MiB -1 -1 0.16 20668 1 0.03 -1 -1 33552 -1 -1 26 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66456 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 26.5 MiB 3.07 1197 11398 2996 7446 956 64.9 MiB 0.11 0.00 4.33827 -131.668 -4.33827 4.33827 1.02 0.000570769 0.000523173 0.0338979 0.0309133 34 2996 27 6.89349e+06 366440 618332. 2139.56 1.76 0.172609 0.151251 25762 151098 -1 2425 23 1964 2778 188154 43587 4.40209 4.40209 -153.795 -4.40209 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0286908 0.0253583 162 58 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.63 vpr 64.84 MiB -1 -1 0.15 20496 1 0.03 -1 -1 33500 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 26.3 MiB 1.59 1230 15063 4319 8605 2139 64.8 MiB 0.14 0.00 4.07275 -124.439 -4.07275 4.07275 0.98 0.000504887 0.000462491 0.042031 0.0383849 34 2728 49 6.89349e+06 324158 618332. 2139.56 2.67 0.181402 0.158535 25762 151098 -1 2364 21 1648 2871 232874 50553 3.9839 3.9839 -141.768 -3.9839 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0239134 0.0211516 139 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.92 vpr 64.81 MiB -1 -1 0.16 20420 1 0.03 -1 -1 33804 -1 -1 23 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66368 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 26.3 MiB 2.03 1144 13883 4639 7082 2162 64.8 MiB 0.11 0.00 3.97284 -116.981 -3.97284 3.97284 0.94 0.000464835 0.000425149 0.0364926 0.0333321 34 2740 24 6.89349e+06 324158 618332. 2139.56 1.70 0.16591 0.146485 25762 151098 -1 2196 21 1514 2336 174900 40488 4.38825 4.38825 -141.825 -4.38825 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0247328 0.0219172 142 43 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.34 vpr 65.16 MiB -1 -1 0.16 20788 1 0.03 -1 -1 34000 -1 -1 27 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 26.7 MiB 2.28 1288 16523 5813 8348 2362 65.2 MiB 0.16 0.00 3.74362 -113.362 -3.74362 3.74362 1.03 0.0005501 0.000502887 0.0488066 0.0445483 34 3344 34 6.89349e+06 380534 618332. 2139.56 2.54 0.208369 0.184695 25762 151098 -1 2680 21 1994 2864 228916 50310 3.74235 3.74235 -135.361 -3.74235 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0283994 0.0252688 162 78 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 9.18 vpr 64.84 MiB -1 -1 0.17 20444 1 0.03 -1 -1 33972 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 26.5 MiB 3.51 1281 17559 5546 9777 2236 64.8 MiB 0.16 0.00 4.15477 -125.508 -4.15477 4.15477 0.99 0.000540029 0.000492609 0.0498237 0.045554 34 3381 48 6.89349e+06 324158 618332. 2139.56 2.24 0.194365 0.169719 25762 151098 -1 2488 24 1898 2740 220540 50928 4.43175 4.43175 -147.236 -4.43175 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.027539 0.0242078 155 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.02 vpr 64.43 MiB -1 -1 0.15 20580 1 0.03 -1 -1 34048 -1 -1 30 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65972 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 26.0 MiB 1.82 1211 11719 2797 8026 896 64.4 MiB 0.11 0.00 3.56259 -107.488 -3.56259 3.56259 0.94 0.000538848 0.000493168 0.0313635 0.0287093 34 3197 43 6.89349e+06 422815 618332. 2139.56 1.99 0.187887 0.165763 25762 151098 -1 2583 22 2006 2736 194786 44396 3.60605 3.60605 -128.499 -3.60605 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0280059 0.0249107 166 79 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.19 vpr 64.12 MiB -1 -1 0.14 20292 1 0.03 -1 -1 33912 -1 -1 17 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65664 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.7 MiB 0.63 759 9356 2634 6117 605 64.1 MiB 0.07 0.00 3.26403 -97.6755 -3.26403 3.26403 0.95 0.000344447 0.000316166 0.0206057 0.0188067 34 1735 21 6.89349e+06 239595 618332. 2139.56 1.40 0.095908 0.0830177 25762 151098 -1 1456 17 683 1103 63223 16446 2.81871 2.81871 -104.455 -2.81871 0 0 787024. 2723.27 0.30 0.04 0.14 -1 -1 0.30 0.015354 0.0135452 96 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 9.83 vpr 65.05 MiB -1 -1 0.17 20564 1 0.03 -1 -1 33964 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 26.7 MiB 2.09 1282 15731 4568 8627 2536 65.1 MiB 0.15 0.00 4.4438 -134.87 -4.4438 4.4438 0.98 0.000530449 0.000484605 0.0448361 0.040963 36 2995 21 6.89349e+06 352346 648988. 2245.63 4.33 0.217644 0.190121 26050 158493 -1 2583 19 1777 2427 203762 42980 4.61698 4.61698 -158.454 -4.61698 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0238553 0.0211139 156 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.79 vpr 65.13 MiB -1 -1 0.14 20328 1 0.03 -1 -1 33896 -1 -1 25 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66692 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 26.7 MiB 3.42 1372 13157 3946 7330 1881 65.1 MiB 0.12 0.00 4.29117 -140.966 -4.29117 4.29117 0.94 0.000577821 0.000526171 0.0387043 0.0353677 34 3402 49 6.89349e+06 352346 618332. 2139.56 2.16 0.211638 0.187062 25762 151098 -1 2732 19 1856 2649 190037 44493 4.64048 4.64048 -164.353 -4.64048 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0278941 0.0240865 171 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.11 vpr 64.38 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33896 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 26.1 MiB 2.86 938 8982 2267 6010 705 64.4 MiB 0.08 0.00 3.14102 -93.1669 -3.14102 3.14102 0.99 0.000423449 0.000385565 0.0232218 0.0212042 30 2145 23 6.89349e+06 253689 556674. 1926.21 1.06 0.0821227 0.0719009 25186 138497 -1 1751 20 828 1143 73278 17836 2.83081 2.83081 -104.833 -2.83081 0 0 706193. 2443.58 0.28 0.05 0.14 -1 -1 0.28 0.0183373 0.0161078 108 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.69 vpr 64.17 MiB -1 -1 0.13 20176 1 0.03 -1 -1 33800 -1 -1 20 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65708 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 25.7 MiB 0.64 828 12143 3254 7489 1400 64.2 MiB 0.09 0.00 3.20583 -99.6169 -3.20583 3.20583 0.95 0.000389072 0.000358858 0.0271193 0.0248457 32 2017 23 6.89349e+06 281877 586450. 2029.24 0.96 0.0810548 0.0717171 25474 144626 -1 1846 20 1132 1878 153747 33938 2.89301 2.89301 -110.323 -2.89301 0 0 744469. 2576.02 0.29 0.06 0.13 -1 -1 0.29 0.0178725 0.0158085 99 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.58 vpr 65.02 MiB -1 -1 0.16 20656 1 0.03 -1 -1 33748 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 26.4 MiB 2.37 1025 8535 1932 5828 775 65.0 MiB 0.08 0.00 3.58702 -113.647 -3.58702 3.58702 0.98 0.000501963 0.000458213 0.0245422 0.0224297 34 2622 24 6.89349e+06 324158 618332. 2139.56 1.88 0.142813 0.124589 25762 151098 -1 2132 19 1675 2424 189189 42731 3.62195 3.62195 -132.177 -3.62195 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0219915 0.0194716 145 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.52 vpr 64.94 MiB -1 -1 0.17 20756 1 0.03 -1 -1 33556 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66500 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 26.7 MiB 2.21 1120 13143 3558 7385 2200 64.9 MiB 0.12 0.00 3.87394 -116.512 -3.87394 3.87394 1.00 0.000511908 0.000469192 0.0386724 0.0352377 36 2797 26 6.89349e+06 324158 648988. 2245.63 1.88 0.136799 0.120161 26050 158493 -1 2268 23 1652 2401 170737 38579 4.29309 4.29309 -140.22 -4.29309 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0260525 0.022848 149 53 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.07 vpr 64.86 MiB -1 -1 0.15 20184 1 0.03 -1 -1 33808 -1 -1 36 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 26.3 MiB 0.73 1214 16572 4991 9564 2017 64.9 MiB 0.14 0.00 4.13991 -122.514 -4.13991 4.13991 0.94 0.000543611 0.000491568 0.0395497 0.0359764 32 3122 26 6.89349e+06 507378 586450. 2029.24 1.12 0.122174 0.108563 25474 144626 -1 2545 20 1726 3152 244207 54306 4.36419 4.36419 -145.665 -4.36419 0 0 744469. 2576.02 0.29 0.09 0.13 -1 -1 0.29 0.0264906 0.0236667 157 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 6.74 vpr 64.59 MiB -1 -1 0.17 20360 1 0.03 -1 -1 33796 -1 -1 25 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66144 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 26.1 MiB 1.78 1075 11607 3465 6924 1218 64.6 MiB 0.10 0.00 2.95499 -90.2016 -2.95499 2.95499 0.98 0.000463691 0.000424308 0.0300729 0.0274566 34 2558 19 6.89349e+06 352346 618332. 2139.56 1.63 0.133617 0.116764 25762 151098 -1 2106 23 1846 2744 198508 44884 3.03561 3.03561 -102.976 -3.03561 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0235715 0.0207079 136 47 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.56 vpr 64.38 MiB -1 -1 0.13 20296 1 0.03 -1 -1 34184 -1 -1 20 27 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 25.8 MiB 1.51 693 12754 5353 6316 1085 64.4 MiB 0.08 0.00 3.41829 -89.7991 -3.41829 3.41829 0.95 0.00036445 0.000333313 0.0294383 0.026971 36 1852 23 6.89349e+06 281877 648988. 2245.63 1.92 0.130839 0.115511 26050 158493 -1 1458 18 1094 1536 124877 29402 3.3647 3.3647 -105.761 -3.3647 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0178026 0.0158162 106 26 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.68 vpr 65.23 MiB -1 -1 0.18 20428 1 0.03 -1 -1 33652 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66796 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 26.7 MiB 3.52 1535 16003 4670 9574 1759 65.2 MiB 0.17 0.00 3.70245 -121.975 -3.70245 3.70245 0.99 0.000605977 0.000551831 0.0497572 0.0454155 36 3686 23 6.89349e+06 380534 648988. 2245.63 2.66 0.189681 0.16697 26050 158493 -1 3032 22 2092 3251 226637 50849 4.18595 4.18595 -144.939 -4.18595 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.0295329 0.0261266 185 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.58 vpr 65.00 MiB -1 -1 0.16 20712 1 0.03 -1 -1 33872 -1 -1 24 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 26.6 MiB 2.31 1113 16215 4583 8770 2862 65.0 MiB 0.14 0.00 4.58387 -129.571 -4.58387 4.58387 0.99 0.000526035 0.00048069 0.0455498 0.0415458 34 3069 27 6.89349e+06 338252 618332. 2139.56 1.85 0.145902 0.128146 25762 151098 -1 2483 22 2050 2874 205851 47297 4.59775 4.59775 -152.559 -4.59775 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0255905 0.0225554 155 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.38 vpr 65.02 MiB -1 -1 0.15 20200 1 0.03 -1 -1 33660 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66576 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 26.5 MiB 2.11 1107 15151 5070 7519 2562 65.0 MiB 0.12 0.00 3.54959 -117.566 -3.54959 3.54959 0.95 0.000448174 0.00041091 0.039251 0.0359571 34 3043 23 6.89349e+06 295971 618332. 2139.56 2.04 0.165523 0.146605 25762 151098 -1 2440 21 1827 2475 228499 47337 4.10325 4.10325 -142.52 -4.10325 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.0257357 0.0229079 137 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.55 vpr 64.84 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33872 -1 -1 21 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66396 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 26.3 MiB 2.43 1026 7153 1674 5058 421 64.8 MiB 0.07 0.00 4.09751 -116.291 -4.09751 4.09751 0.99 0.000490254 0.000442393 0.0207313 0.0189273 34 2648 33 6.89349e+06 295971 618332. 2139.56 1.81 0.115285 0.100667 25762 151098 -1 2040 19 1207 1834 122206 29980 3.60406 3.60406 -125.709 -3.60406 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0217166 0.0192629 135 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 7.01 vpr 64.78 MiB -1 -1 0.16 20664 1 0.03 -1 -1 33768 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 26.4 MiB 1.99 1220 14543 5101 6905 2537 64.8 MiB 0.13 0.00 3.52995 -105.888 -3.52995 3.52995 0.96 0.000526427 0.000481058 0.0400147 0.0366098 34 3065 32 6.89349e+06 366440 618332. 2139.56 1.76 0.184279 0.16273 25762 151098 -1 2568 20 1966 2965 198517 46925 3.8547 3.8547 -129.924 -3.8547 0 0 787024. 2723.27 0.31 0.08 0.13 -1 -1 0.31 0.02665 0.0237957 163 46 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.36 vpr 64.81 MiB -1 -1 0.17 20536 1 0.03 -1 -1 33736 -1 -1 24 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66368 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 26.3 MiB 2.22 1075 9725 2643 6461 621 64.8 MiB 0.10 0.00 3.38329 -98.1242 -3.38329 3.38329 0.99 0.000488439 0.000437254 0.0260747 0.0238266 34 2918 21 6.89349e+06 338252 618332. 2139.56 1.82 0.135713 0.117875 25762 151098 -1 2251 17 1326 2131 140489 32727 3.4308 3.4308 -114.28 -3.4308 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0194585 0.0172155 140 46 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 10.47 vpr 64.70 MiB -1 -1 0.16 20476 1 0.03 -1 -1 33592 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66252 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 26.1 MiB 2.93 1060 9914 2713 6681 520 64.7 MiB 0.11 0.00 3.88598 -121.634 -3.88598 3.88598 0.98 0.000515107 0.000470738 0.0293255 0.0267965 38 2561 25 6.89349e+06 310065 678818. 2348.85 4.16 0.192148 0.166605 26626 170182 -1 2344 20 1626 2614 199093 43435 3.8686 3.8686 -136.168 -3.8686 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0242385 0.0214506 148 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 8.87 vpr 65.07 MiB -1 -1 0.14 20496 1 0.03 -1 -1 33748 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 26.6 MiB 2.73 1107 17979 7353 8414 2212 65.1 MiB 0.14 0.00 3.22388 -105.206 -3.22388 3.22388 0.94 0.000467753 0.000423411 0.0495424 0.0450561 38 3084 31 6.89349e+06 366440 678818. 2348.85 2.82 0.204673 0.181598 26626 170182 -1 2444 22 1945 2773 239919 61303 3.56056 3.56056 -125.379 -3.56056 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0294702 0.0262326 167 59 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 7.65 vpr 64.24 MiB -1 -1 0.15 20264 1 0.03 -1 -1 33752 -1 -1 20 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.7 MiB 1.58 663 6381 1362 4156 863 64.2 MiB 0.05 0.00 3.27503 -96.719 -3.27503 3.27503 0.99 0.000398787 0.000363327 0.0164703 0.015069 34 1702 24 6.89349e+06 281877 618332. 2139.56 2.81 0.159324 0.137223 25762 151098 -1 1390 19 1258 1628 93811 24616 3.02336 3.02336 -107.406 -3.02336 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.0179488 0.0158902 110 28 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.71 vpr 64.59 MiB -1 -1 0.16 20172 1 0.03 -1 -1 34012 -1 -1 20 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66136 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 26.1 MiB 1.43 1097 14907 4140 9276 1491 64.6 MiB 0.13 0.00 3.55759 -114.415 -3.55759 3.55759 0.98 0.000495012 0.00045089 0.0408498 0.0372658 34 2562 26 6.89349e+06 281877 618332. 2139.56 1.95 0.148264 0.129752 25762 151098 -1 2271 20 1512 2091 187879 40639 3.57495 3.57495 -130.377 -3.57495 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0210906 0.0186284 125 55 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.00 vpr 64.86 MiB -1 -1 0.16 20284 1 0.03 -1 -1 33808 -1 -1 22 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 26.3 MiB 1.81 1112 16453 5727 8522 2204 64.9 MiB 0.15 0.00 3.81078 -113.364 -3.81078 3.81078 0.98 0.000484479 0.000442639 0.0448257 0.0408897 34 2660 34 6.89349e+06 310065 618332. 2139.56 1.84 0.167175 0.146358 25762 151098 -1 2210 18 1407 2181 152055 34901 3.76856 3.76856 -131.923 -3.76856 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0207576 0.0184173 137 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 8.35 vpr 64.52 MiB -1 -1 0.16 20284 1 0.03 -1 -1 33648 -1 -1 19 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66068 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 26.0 MiB 3.45 872 12980 4374 6580 2026 64.5 MiB 0.10 0.00 3.36962 -96.2497 -3.36962 3.36962 1.00 0.00040498 0.000369436 0.0328906 0.0300961 34 2110 26 6.89349e+06 267783 618332. 2139.56 1.60 0.105945 0.0929113 25762 151098 -1 1788 22 1023 1441 106242 25454 2.83255 2.83255 -101.541 -2.83255 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0192095 0.0169072 108 25 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 7.48 vpr 64.77 MiB -1 -1 0.15 20524 1 0.03 -1 -1 33952 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66320 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 26.4 MiB 2.35 862 9872 2312 7175 385 64.8 MiB 0.08 0.00 3.39233 -105.873 -3.39233 3.39233 0.99 0.000434053 0.000388233 0.0253243 0.0231752 34 2336 25 6.89349e+06 253689 618332. 2139.56 1.83 0.127675 0.111421 25762 151098 -1 1926 20 1412 2025 154416 34875 3.35486 3.35486 -123.133 -3.35486 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0197632 0.0174138 114 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.22 vpr 64.66 MiB -1 -1 0.17 20364 1 0.03 -1 -1 33972 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 26.3 MiB 2.05 1258 11969 3393 7716 860 64.7 MiB 0.11 0.00 3.60497 -117.87 -3.60497 3.60497 0.98 0.000524596 0.000478336 0.0340915 0.0311366 34 3076 31 6.89349e+06 366440 618332. 2139.56 1.81 0.161382 0.140609 25762 151098 -1 2643 21 1928 2721 228282 49647 3.69705 3.69705 -139.684 -3.69705 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0257498 0.0227434 160 60 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.39 vpr 64.38 MiB -1 -1 0.15 20456 1 0.03 -1 -1 33640 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65928 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 25.8 MiB 2.30 891 9540 2209 6800 531 64.4 MiB 0.08 0.00 2.80665 -91.3749 -2.80665 2.80665 0.99 0.000410319 0.000375215 0.0242573 0.0221619 34 2224 22 6.89349e+06 239595 618332. 2139.56 1.82 0.117411 0.101967 25762 151098 -1 1956 24 1452 2091 166415 37456 3.02571 3.02571 -109.388 -3.02571 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0214628 0.0188093 108 30 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.47 vpr 65.04 MiB -1 -1 0.16 20748 1 0.03 -1 -1 33608 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66596 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 26.5 MiB 2.24 1248 15206 4757 8131 2318 65.0 MiB 0.13 0.00 3.27699 -103.317 -3.27699 3.27699 0.98 0.000501865 0.000451718 0.0422089 0.0384973 34 3084 47 6.89349e+06 310065 618332. 2139.56 1.89 0.162768 0.142362 25762 151098 -1 2570 18 1439 2115 167516 37558 3.6123 3.6123 -128.231 -3.6123 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0216836 0.0192186 146 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 8.65 vpr 65.06 MiB -1 -1 0.16 20548 1 0.03 -1 -1 33688 -1 -1 26 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66624 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 26.6 MiB 2.42 1329 17909 6207 9283 2419 65.1 MiB 0.18 0.00 3.81048 -125.137 -3.81048 3.81048 1.00 0.000553363 0.000498923 0.052109 0.0475153 36 3528 26 6.89349e+06 366440 648988. 2245.63 2.74 0.184282 0.161564 26050 158493 -1 2834 23 2433 3436 278789 58185 4.14584 4.14584 -151.284 -4.14584 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0294497 0.0260149 170 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.22 vpr 64.82 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33892 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 26.4 MiB 2.99 1153 14322 4756 7487 2079 64.8 MiB 0.12 0.00 3.0513 -100.067 -3.0513 3.0513 0.98 0.000450077 0.000411988 0.0380528 0.0346894 34 2650 32 6.89349e+06 253689 618332. 2139.56 1.93 0.1463 0.127548 25762 151098 -1 2269 21 1493 2004 182225 38417 3.14876 3.14876 -120.021 -3.14876 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0209403 0.0184434 124 54 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.60 vpr 64.29 MiB -1 -1 0.15 20428 1 0.03 -1 -1 33768 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65832 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.9 MiB 1.36 866 7558 1797 5447 314 64.3 MiB 0.08 0.00 3.24503 -99.305 -3.24503 3.24503 1.00 0.000435711 0.000398641 0.0205985 0.0188424 34 2528 23 6.89349e+06 253689 618332. 2139.56 1.95 0.12324 0.106959 25762 151098 -1 2015 22 1387 2013 146234 37042 3.31131 3.31131 -121.796 -3.31131 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0213284 0.0187778 115 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.03 vpr 64.43 MiB -1 -1 0.14 20120 1 0.03 -1 -1 33832 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65980 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 25.9 MiB 2.05 991 8780 2200 5577 1003 64.4 MiB 0.08 0.00 3.98738 -113.412 -3.98738 3.98738 0.98 0.000492957 0.00044518 0.0242002 0.0221229 34 2590 20 6.89349e+06 310065 618332. 2139.56 1.71 0.10664 0.0936177 25762 151098 -1 2181 21 1466 2077 143131 33487 3.71456 3.71456 -129.908 -3.71456 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0224819 0.0197995 133 27 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.32 vpr 64.74 MiB -1 -1 0.16 20448 1 0.03 -1 -1 33784 -1 -1 25 29 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66296 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 26.2 MiB 2.29 1061 12182 3224 7129 1829 64.7 MiB 0.11 0.00 3.15468 -90.2902 -3.15468 3.15468 0.99 0.000461785 0.000422137 0.0318559 0.0291223 34 2487 25 6.89349e+06 352346 618332. 2139.56 1.66 0.139366 0.121289 25762 151098 -1 2018 18 1425 2066 129897 31829 3.13935 3.13935 -104.19 -3.13935 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0205961 0.0182088 138 49 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 8.36 vpr 64.92 MiB -1 -1 0.17 20624 1 0.03 -1 -1 33696 -1 -1 24 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 26.5 MiB 2.38 1369 17053 5029 10705 1319 64.9 MiB 0.17 0.00 4.55604 -149.34 -4.55604 4.55604 1.01 0.000558062 0.00050926 0.0509112 0.0464441 36 3297 31 6.89349e+06 338252 648988. 2245.63 2.46 0.187754 0.164555 26050 158493 -1 2764 19 1814 2802 235215 50509 4.56728 4.56728 -162.678 -4.56728 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.0254146 0.0225188 166 62 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.84 vpr 64.26 MiB -1 -1 0.15 20288 1 0.03 -1 -1 33764 -1 -1 17 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.8 MiB 0.68 834 6616 1486 4552 578 64.3 MiB 0.06 0.00 2.72825 -89.6146 -2.72825 2.72825 1.01 0.000375488 0.000345302 0.0159941 0.0146534 30 1762 20 6.89349e+06 239595 556674. 1926.21 0.95 0.065305 0.0569721 25186 138497 -1 1546 20 689 1069 71005 16251 2.43906 2.43906 -97.1999 -2.43906 0 0 706193. 2443.58 0.29 0.04 0.14 -1 -1 0.29 0.016693 0.0146765 92 -1 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.86 vpr 65.26 MiB -1 -1 0.18 20612 1 0.03 -1 -1 33604 -1 -1 27 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66828 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 26.8 MiB 2.26 1492 18859 6392 9640 2827 65.3 MiB 0.18 0.00 4.49353 -146.184 -4.49353 4.49353 0.97 0.000558344 0.000508813 0.0550235 0.0500938 34 3730 26 6.89349e+06 380534 618332. 2139.56 2.10 0.175331 0.153989 25762 151098 -1 2960 28 2562 3485 299157 63964 5.03618 5.03618 -175.9 -5.03618 0 0 787024. 2723.27 0.31 0.11 0.15 -1 -1 0.31 0.0347287 0.0304239 175 87 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.99 vpr 65.12 MiB -1 -1 0.17 20764 1 0.03 -1 -1 33464 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66684 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 26.7 MiB 2.64 1341 14871 4444 8491 1936 65.1 MiB 0.13 0.00 3.86068 -134.852 -3.86068 3.86068 1.01 0.00053672 0.000489552 0.0431846 0.039398 34 3276 28 6.89349e+06 324158 618332. 2139.56 1.86 0.148723 0.130581 25762 151098 -1 2628 23 2757 3488 285141 63535 4.30343 4.30343 -163.341 -4.30343 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0276705 0.0242948 160 93 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 9.82 vpr 65.16 MiB -1 -1 0.16 20624 1 0.03 -1 -1 33664 -1 -1 22 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66728 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 26.8 MiB 2.31 1276 16340 4864 9817 1659 65.2 MiB 0.15 0.00 3.22388 -105.825 -3.22388 3.22388 1.00 0.00051491 0.000468133 0.0468723 0.0427239 36 2712 19 6.89349e+06 310065 648988. 2245.63 4.08 0.2036 0.177369 26050 158493 -1 2297 20 1423 1949 146604 32230 3.00881 3.00881 -118.555 -3.00881 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0235465 0.0208416 152 57 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.42 vpr 64.89 MiB -1 -1 0.16 20524 1 0.03 -1 -1 33932 -1 -1 26 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 26.5 MiB 3.01 1353 11145 2615 6808 1722 64.9 MiB 0.12 0.00 4.7155 -144.713 -4.7155 4.7155 0.98 0.000591358 0.000540606 0.0346225 0.0316356 34 3325 23 6.89349e+06 366440 618332. 2139.56 1.97 0.169972 0.148563 25762 151098 -1 2807 23 2243 3566 281911 60718 4.79505 4.79505 -163.847 -4.79505 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.029645 0.026179 172 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.78 vpr 63.97 MiB -1 -1 0.15 20284 1 0.03 -1 -1 33724 -1 -1 15 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 25.6 MiB 1.01 795 11813 3897 6288 1628 64.0 MiB 0.08 0.00 2.38626 -79.468 -2.38626 2.38626 0.98 0.000372717 0.000339558 0.0279011 0.0255002 34 1749 18 6.89349e+06 211408 618332. 2139.56 1.52 0.103332 0.090049 25762 151098 -1 1577 19 829 1127 105291 22334 2.12732 2.12732 -91.2768 -2.12732 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0161533 0.014212 82 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.58 vpr 64.75 MiB -1 -1 0.15 20224 1 0.03 -1 -1 34044 -1 -1 20 30 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66308 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 26.3 MiB 1.45 927 11652 3264 6943 1445 64.8 MiB 0.09 0.00 3.59859 -111.607 -3.59859 3.59859 0.99 0.00042885 0.000392592 0.0298049 0.0272407 34 2170 33 6.89349e+06 281877 618332. 2139.56 1.80 0.133733 0.116325 25762 151098 -1 1851 23 1328 2041 167780 37231 3.503 3.503 -126.048 -3.503 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220655 0.0193696 119 29 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.16 vpr 64.72 MiB -1 -1 0.14 20372 1 0.03 -1 -1 33508 -1 -1 18 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66276 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 26.3 MiB 2.22 984 12542 4726 6312 1504 64.7 MiB 0.11 0.00 3.53059 -112.398 -3.53059 3.53059 0.98 0.000471785 0.000430917 0.0334163 0.0305244 34 3065 44 6.89349e+06 253689 618332. 2139.56 2.58 0.137301 0.119955 25762 151098 -1 2290 26 1641 3088 248602 55808 3.67535 3.67535 -137.184 -3.67535 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0251753 0.0220474 120 31 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 8.56 vpr 64.11 MiB -1 -1 0.16 20428 1 0.03 -1 -1 33824 -1 -1 21 25 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65648 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 25.6 MiB 1.37 589 11200 4364 4465 2371 64.1 MiB 0.07 0.00 3.0161 -72.6138 -3.0161 3.0161 0.98 0.000343226 0.000313996 0.0248205 0.0226837 36 1468 21 6.89349e+06 295971 648988. 2245.63 3.93 0.126635 0.109356 26050 158493 -1 1298 20 804 1199 86320 20366 2.85841 2.85841 -80.9794 -2.85841 0 0 828058. 2865.25 0.33 0.04 0.16 -1 -1 0.33 0.0156079 0.0136744 92 19 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 8.52 vpr 64.93 MiB -1 -1 0.16 20928 1 0.03 -1 -1 34008 -1 -1 23 32 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66488 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 26.5 MiB 2.82 1314 9495 2410 6520 565 64.9 MiB 0.11 0.00 3.59585 -110.102 -3.59585 3.59585 1.00 0.000547059 0.000500106 0.0290823 0.0265479 34 3476 38 6.89349e+06 324158 618332. 2139.56 2.30 0.167981 0.14589 25762 151098 -1 2621 19 1813 2687 185767 43385 3.74866 3.74866 -132.437 -3.74866 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0244756 0.0215338 161 69 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.11 vpr 65.24 MiB -1 -1 0.17 20568 1 0.03 -1 -1 33948 -1 -1 29 31 0 0 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:31 gh-actions-runner-vtr-auto-spawned195 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 26.8 MiB 2.65 1428 17480 5123 10265 2092 65.2 MiB 0.17 0.00 3.87458 -129.852 -3.87458 3.87458 1.01 0.000577793 0.000520824 0.0501518 0.0452877 34 3378 30 6.89349e+06 408721 618332. 2139.56 2.00 0.187026 0.162602 25762 151098 -1 2703 20 2075 2853 198427 46260 4.10659 4.10659 -151.043 -4.10659 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0264927 0.0234959 179 86 -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 mult_001.v common 5.72 vpr 62.45 MiB -1 -1 0.27 18564 14 0.25 -1 -1 33024 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1305 9475 2289 6457 729 62.5 MiB 0.10 0.00 6.52936 -137.86 -6.52936 6.52936 0.70 0.000915867 0.000847665 0.0450752 0.0417192 36 3290 31 6.55708e+06 325485 612192. 2118.31 2.11 0.230849 0.200063 22750 144809 -1 2879 18 1261 3875 223479 50458 6.8803 6.8803 -157.125 -6.8803 0 0 782063. 2706.10 0.24 0.09 0.13 -1 -1 0.24 0.0339087 0.02981 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.22 vpr 62.43 MiB -1 -1 0.28 18500 14 0.31 -1 -1 33000 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 24.0 MiB 0.47 1351 11223 2638 7227 1358 62.4 MiB 0.11 0.00 6.73056 -133.153 -6.73056 6.73056 0.70 0.000891311 0.000823565 0.0510057 0.0472835 28 3674 32 6.55708e+06 373705 500653. 1732.36 2.49 0.172662 0.151432 21310 115450 -1 2999 25 1576 4866 383822 127169 7.07184 7.07184 -153.575 -7.07184 0 0 612192. 2118.31 0.18 0.14 0.11 -1 -1 0.18 0.0432046 0.0375218 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.86 vpr 62.71 MiB -1 -1 0.23 18176 11 0.22 -1 -1 33180 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1367 5919 1179 4458 282 62.7 MiB 0.07 0.00 5.78058 -118.397 -5.78058 5.78058 0.70 0.000898274 0.000828177 0.0298576 0.0275953 36 3315 21 6.55708e+06 313430 612192. 2118.31 3.44 0.263362 0.226071 22750 144809 -1 2896 16 1261 4270 227091 52406 5.94198 5.94198 -135.21 -5.94198 0 0 782063. 2706.10 0.22 0.09 0.12 -1 -1 0.22 0.0310648 0.0273145 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.26 vpr 62.54 MiB -1 -1 0.26 18164 12 0.33 -1 -1 33016 -1 -1 30 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 24.0 MiB 0.51 1323 6415 1209 4650 556 62.5 MiB 0.07 0.00 6.54924 -122.486 -6.54924 6.54924 0.62 0.000897921 0.000833099 0.0341118 0.0317528 38 3107 27 6.55708e+06 361650 638502. 2209.35 3.52 0.270836 0.233237 23326 155178 -1 2625 17 1170 3787 178729 41809 6.7993 6.7993 -138.19 -6.7993 0 0 851065. 2944.86 0.23 0.08 0.16 -1 -1 0.23 0.0328645 0.0289285 190 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.23 vpr 62.52 MiB -1 -1 0.22 18484 13 0.27 -1 -1 33116 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1489 7655 1694 5620 341 62.5 MiB 0.05 0.00 6.4779 -140.597 -6.4779 6.4779 0.70 0.000462069 0.000418464 0.0195911 0.0179545 30 4035 42 6.55708e+06 373705 526063. 1820.29 1.67 0.149514 0.129523 21886 126133 -1 3255 17 1498 4379 231299 52494 6.58844 6.58844 -158.427 -6.58844 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0453076 0.0397944 210 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 10.37 vpr 62.73 MiB -1 -1 0.27 18324 13 0.26 -1 -1 32852 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1424 11703 2763 7064 1876 62.7 MiB 0.12 0.00 6.4387 -131.425 -6.4387 6.4387 0.74 0.00106745 0.000987895 0.0570336 0.0529019 28 4268 48 6.55708e+06 385760 500653. 1732.36 6.78 0.400872 0.345886 21310 115450 -1 3336 19 1385 4174 283548 71396 6.7209 6.7209 -155.457 -6.7209 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0365241 0.0320772 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 8.89 vpr 62.05 MiB -1 -1 0.22 18112 12 0.19 -1 -1 32888 -1 -1 27 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63540 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1034 9536 2779 5894 863 62.1 MiB 0.09 0.00 5.83004 -108.556 -5.83004 5.83004 0.71 0.000745283 0.000691638 0.0403623 0.0373606 28 2936 24 6.55708e+06 325485 500653. 1732.36 5.61 0.216523 0.187568 21310 115450 -1 2392 17 1141 2852 163005 38656 6.10964 6.10964 -123.906 -6.10964 0 0 612192. 2118.31 0.19 0.07 0.10 -1 -1 0.19 0.0289584 0.025722 152 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 7.31 vpr 62.11 MiB -1 -1 0.20 17972 12 0.19 -1 -1 32952 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1177 9757 2244 6204 1309 62.1 MiB 0.09 0.00 5.19746 -113.682 -5.19746 5.19746 0.71 0.000728022 0.000674593 0.041256 0.0382043 36 2930 30 6.55708e+06 265210 612192. 2118.31 4.09 0.299772 0.258467 22750 144809 -1 2620 18 1090 3361 199274 43929 5.32166 5.32166 -130.414 -5.32166 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.027643 0.0242333 140 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 7.98 vpr 62.19 MiB -1 -1 0.25 18424 12 0.16 -1 -1 32984 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63680 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1138 9593 2290 6107 1196 62.2 MiB 0.09 0.00 5.31766 -112.822 -5.31766 5.31766 0.70 0.000752465 0.000697976 0.0391088 0.0362645 28 3004 27 6.55708e+06 313430 500653. 1732.36 4.74 0.260615 0.225409 21310 115450 -1 2693 22 1224 3071 244847 71970 5.91866 5.91866 -138.108 -5.91866 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0326257 0.0285291 150 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.47 vpr 62.38 MiB -1 -1 0.25 18176 13 0.19 -1 -1 32824 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.8 MiB 0.29 1181 13949 3717 7911 2321 62.4 MiB 0.13 0.00 6.22784 -135.737 -6.22784 6.22784 0.70 0.000805703 0.000747769 0.0600887 0.0557581 36 2924 18 6.55708e+06 301375 612192. 2118.31 2.08 0.214583 0.187563 22750 144809 -1 2433 14 1026 2943 158236 37088 6.34804 6.34804 -148.082 -6.34804 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.02556 0.0225738 157 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.77 vpr 62.07 MiB -1 -1 0.25 18204 12 0.18 -1 -1 32636 -1 -1 24 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1042 7835 1833 5075 927 62.1 MiB 0.07 0.00 5.67264 -114.771 -5.67264 5.67264 0.75 0.000706048 0.000654994 0.0320661 0.0297574 28 2809 28 6.55708e+06 289320 500653. 1732.36 1.50 0.125433 0.109811 21310 115450 -1 2438 19 950 2598 148577 34892 6.06278 6.06278 -135.38 -6.06278 0 0 612192. 2118.31 0.20 0.07 0.10 -1 -1 0.20 0.0276394 0.024212 132 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.67 vpr 62.11 MiB -1 -1 0.14 18004 12 0.15 -1 -1 32872 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1159 7268 1564 5252 452 62.1 MiB 0.07 0.00 5.70018 -128.605 -5.70018 5.70018 0.72 0.000731237 0.000677448 0.0312076 0.0288268 32 3103 44 6.55708e+06 265210 554710. 1919.41 1.49 0.175771 0.15248 22174 131602 -1 2618 15 1017 2767 179802 41355 6.18098 6.18098 -149.362 -6.18098 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0243356 0.0214484 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 7.06 vpr 62.50 MiB -1 -1 0.26 18496 13 0.25 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1412 13939 3510 8947 1482 62.5 MiB 0.13 0.00 6.60776 -140.256 -6.60776 6.60776 0.70 0.000914245 0.000848192 0.0634385 0.0588154 36 3219 15 6.55708e+06 361650 612192. 2118.31 3.62 0.353553 0.306153 22750 144809 -1 2963 16 1222 3542 192162 43912 7.08856 7.08856 -157.964 -7.08856 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0316379 0.027907 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.21 vpr 62.75 MiB -1 -1 0.25 18308 14 0.31 -1 -1 32928 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1563 13087 3312 8425 1350 62.8 MiB 0.14 0.00 7.44976 -155.952 -7.44976 7.44976 0.70 0.00096267 0.00088261 0.0633926 0.0583377 28 4696 29 6.55708e+06 361650 500653. 1732.36 2.54 0.194219 0.170418 21310 115450 -1 3745 18 1728 4880 295289 67165 7.93055 7.93055 -181.172 -7.93055 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0368874 0.0323774 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.73 vpr 62.11 MiB -1 -1 0.22 17972 11 0.17 -1 -1 32884 -1 -1 27 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1027 13933 4563 7052 2318 62.1 MiB 0.11 0.00 5.53818 -107.413 -5.53818 5.53818 0.70 0.000720296 0.000667194 0.054255 0.0502627 30 2615 23 6.55708e+06 325485 526063. 1820.29 2.52 0.228112 0.198348 21886 126133 -1 2136 17 977 2632 124341 30254 5.89878 5.89878 -123.333 -5.89878 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0262851 0.0231684 147 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 27.29 vpr 62.65 MiB -1 -1 0.27 18324 12 0.27 -1 -1 32972 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1403 8533 2108 5372 1053 62.7 MiB 0.09 0.00 6.03124 -123.067 -6.03124 6.03124 0.70 0.000979398 0.000908191 0.0414091 0.0383501 40 3784 32 6.55708e+06 397815 666494. 2306.21 23.60 0.45686 0.393343 23614 160646 -1 3381 20 1616 5238 330608 75328 6.31284 6.31284 -146.568 -6.31284 0 0 872365. 3018.56 0.24 0.12 0.15 -1 -1 0.24 0.0427941 0.0377148 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 7.86 vpr 62.48 MiB -1 -1 0.26 18424 14 0.24 -1 -1 33088 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1487 13743 3679 8586 1478 62.5 MiB 0.14 0.00 6.22784 -133.565 -6.22784 6.22784 0.71 0.000911784 0.000846012 0.064354 0.0594487 34 3820 42 6.55708e+06 349595 585099. 2024.56 4.27 0.363569 0.31454 22462 138074 -1 3267 19 1412 4120 259340 57478 6.57878 6.57878 -153.252 -6.57878 0 0 742403. 2568.87 0.21 0.10 0.15 -1 -1 0.21 0.0351303 0.0308372 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.00 vpr 62.04 MiB -1 -1 0.25 18028 12 0.16 -1 -1 32768 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63532 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1168 9687 2742 6169 776 62.0 MiB 0.09 0.00 5.8423 -132.957 -5.8423 5.8423 0.73 0.000755792 0.000700613 0.0405892 0.0375931 32 3079 46 6.55708e+06 277265 554710. 1919.41 1.31 0.157904 0.137854 22174 131602 -1 2649 57 1314 4204 933795 570264 6.35264 6.35264 -156.867 -6.35264 0 0 701300. 2426.64 0.20 0.34 0.13 -1 -1 0.20 0.0728407 0.0625629 140 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.79 vpr 61.54 MiB -1 -1 0.20 18036 10 0.10 -1 -1 32484 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63020 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.2 MiB 0.16 771 9042 2031 6495 516 61.5 MiB 0.07 0.00 4.52206 -103.266 -4.52206 4.52206 0.72 0.000549659 0.000509384 0.0326059 0.0302919 28 2040 24 6.55708e+06 192880 500653. 1732.36 0.80 0.102562 0.0901024 21310 115450 -1 1709 12 661 1638 90467 22375 4.88266 4.88266 -122.618 -4.88266 0 0 612192. 2118.31 0.18 0.05 0.10 -1 -1 0.18 0.0160153 0.0141525 91 84 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.29 vpr 62.23 MiB -1 -1 0.24 18004 13 0.18 -1 -1 32836 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63720 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1051 8727 2150 5652 925 62.2 MiB 0.08 0.00 6.05818 -124.146 -6.05818 6.05818 0.70 0.000748087 0.000692126 0.0368601 0.0341109 30 2591 20 6.55708e+06 289320 526063. 1820.29 0.98 0.125044 0.109684 21886 126133 -1 2229 19 1124 3116 144050 34881 6.34038 6.34038 -142.226 -6.34038 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0294793 0.0258599 144 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 6.88 vpr 62.95 MiB -1 -1 0.26 18464 13 0.28 -1 -1 33076 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1492 6143 1128 4748 267 62.9 MiB 0.07 0.00 6.57056 -132.132 -6.57056 6.57056 0.69 0.000960871 0.000891566 0.030999 0.0287237 28 3899 40 6.55708e+06 373705 500653. 1732.36 3.03 0.269787 0.232695 21310 115450 -1 3408 62 3449 12684 1544046 749964 7.6009 7.6009 -160.092 -7.6009 0 0 612192. 2118.31 0.18 0.48 0.10 -1 -1 0.18 0.0981327 0.0843531 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 16.28 vpr 62.53 MiB -1 -1 0.29 18252 13 0.28 -1 -1 32748 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1502 6211 1232 4757 222 62.5 MiB 0.08 0.00 6.3185 -137.624 -6.3185 6.3185 0.70 0.000953455 0.000873884 0.033567 0.0311314 40 3403 27 6.55708e+06 325485 666494. 2306.21 12.54 0.428938 0.368759 23614 160646 -1 3245 15 1359 4427 263103 58692 6.7601 6.7601 -156.048 -6.7601 0 0 872365. 3018.56 0.24 0.09 0.14 -1 -1 0.24 0.0308914 0.0273311 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.08 vpr 61.54 MiB -1 -1 0.19 17956 9 0.09 -1 -1 32552 -1 -1 24 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63016 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.9 MiB 0.18 717 11118 4147 4951 2020 61.5 MiB 0.08 0.00 4.2302 -80.7906 -4.2302 4.2302 0.70 0.000518175 0.000482734 0.033832 0.0314973 26 1845 29 6.55708e+06 289320 477104. 1650.88 2.21 0.157709 0.136277 21022 109990 -1 1622 16 598 1489 92035 21270 4.3524 4.3524 -95.176 -4.3524 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0175605 0.0153806 87 69 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.93 vpr 62.51 MiB -1 -1 0.23 18044 13 0.27 -1 -1 32980 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1374 8603 1996 5232 1375 62.5 MiB 0.09 0.00 6.4825 -128.401 -6.4825 6.4825 0.70 0.00092547 0.000858009 0.0434001 0.0401985 34 3723 35 6.55708e+06 301375 585099. 2024.56 3.52 0.328921 0.283404 22462 138074 -1 3076 20 1407 4319 251741 57606 6.7621 6.7621 -147.921 -6.7621 0 0 742403. 2568.87 0.21 0.10 0.12 -1 -1 0.21 0.03757 0.0329737 193 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.88 vpr 61.45 MiB -1 -1 0.17 17456 8 0.09 -1 -1 32868 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62920 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 22.8 MiB 0.12 762 7648 2103 4089 1456 61.4 MiB 0.06 0.00 3.49108 -80.6742 -3.49108 3.49108 0.73 0.000506986 0.000471263 0.024428 0.0227029 26 1860 34 6.55708e+06 192880 477104. 1650.88 1.03 0.0951748 0.0829828 21022 109990 -1 1643 18 645 1455 87127 20447 3.89548 3.89548 -98.914 -3.89548 0 0 585099. 2024.56 0.19 0.05 0.11 -1 -1 0.19 0.0200605 0.0176158 77 59 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 10.29 vpr 62.34 MiB -1 -1 0.23 18232 15 0.23 -1 -1 32976 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 23.7 MiB 0.32 1325 7751 1762 5311 678 62.3 MiB 0.08 0.00 6.9985 -140.814 -6.9985 6.9985 0.70 0.000846356 0.00078618 0.0355918 0.0329644 30 3382 26 6.55708e+06 337540 526063. 1820.29 6.91 0.263953 0.227493 21886 126133 -1 2771 18 1230 3556 186902 42708 7.2781 7.2781 -155.666 -7.2781 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0313725 0.0275103 165 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 10.14 vpr 62.39 MiB -1 -1 0.24 18152 13 0.24 -1 -1 33144 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1313 6723 1380 4779 564 62.4 MiB 0.07 0.00 5.93858 -133.8 -5.93858 5.93858 0.72 0.000848664 0.000787717 0.0315952 0.0293184 30 3282 46 6.55708e+06 313430 526063. 1820.29 6.73 0.263232 0.226712 21886 126133 -1 2755 15 1213 3384 183955 42219 6.29918 6.29918 -150.67 -6.29918 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0281627 0.0248679 168 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 12.90 vpr 62.45 MiB -1 -1 0.23 18264 13 0.26 -1 -1 33108 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63948 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1280 15213 4267 8901 2045 62.4 MiB 0.14 0.00 6.4779 -136.184 -6.4779 6.4779 0.72 0.000908677 0.00083696 0.0693059 0.0639798 28 3742 25 6.55708e+06 349595 500653. 1732.36 9.38 0.308643 0.268654 21310 115450 -1 3096 25 1941 6107 378709 84543 6.99284 6.99284 -158.23 -6.99284 0 0 612192. 2118.31 0.18 0.13 0.10 -1 -1 0.18 0.0440556 0.0384127 187 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 6.57 vpr 62.16 MiB -1 -1 0.23 18332 12 0.16 -1 -1 33056 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 23.7 MiB 0.30 1193 6231 1379 4604 248 62.2 MiB 0.04 0.00 5.57998 -124.411 -5.57998 5.57998 0.59 0.000339167 0.000311833 0.0134135 0.0123494 38 2636 15 6.55708e+06 277265 638502. 2209.35 3.45 0.201646 0.173465 23326 155178 -1 2333 14 1029 2934 135937 32470 5.70018 5.70018 -134.224 -5.70018 0 0 851065. 2944.86 0.23 0.06 0.13 -1 -1 0.23 0.0238973 0.0212057 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 4.78 vpr 62.15 MiB -1 -1 0.22 18300 11 0.15 -1 -1 32892 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.5 MiB 0.16 879 12175 3931 5728 2516 62.2 MiB 0.11 0.00 5.26058 -108.974 -5.26058 5.26058 0.75 0.000693548 0.000642948 0.0507345 0.0468222 28 2722 46 6.55708e+06 277265 500653. 1732.36 1.64 0.158983 0.139227 21310 115450 -1 2372 20 1115 2898 186574 43595 5.73112 5.73112 -132.462 -5.73112 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0278053 0.024366 131 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 7.35 vpr 62.11 MiB -1 -1 0.23 18056 11 0.17 -1 -1 32852 -1 -1 28 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63600 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.5 MiB 0.39 1040 9448 2328 5605 1515 62.1 MiB 0.08 0.00 5.29978 -104.646 -5.29978 5.29978 0.67 0.00073295 0.000679707 0.0382847 0.0354899 26 2843 42 6.55708e+06 337540 477104. 1650.88 4.08 0.251386 0.216824 21022 109990 -1 2525 20 1304 3512 224742 51681 5.62318 5.62318 -124.1 -5.62318 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0296214 0.0259317 150 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.74 vpr 62.29 MiB -1 -1 0.22 18172 12 0.20 -1 -1 32896 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1316 5919 1228 4278 413 62.3 MiB 0.07 0.00 5.9619 -132.673 -5.9619 5.9619 0.70 0.000887391 0.00082471 0.030395 0.0281703 28 3579 27 6.55708e+06 313430 500653. 1732.36 1.48 0.142128 0.123844 21310 115450 -1 3050 20 1326 3465 225489 61573 6.6831 6.6831 -160.345 -6.6831 0 0 612192. 2118.31 0.20 0.10 0.10 -1 -1 0.20 0.0355527 0.0311985 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 6.66 vpr 61.98 MiB -1 -1 0.23 18008 12 0.16 -1 -1 32824 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63464 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 23.5 MiB 0.55 978 5756 1096 4515 145 62.0 MiB 0.06 0.00 5.95024 -119.216 -5.95024 5.95024 0.71 0.000755383 0.000691469 0.0255335 0.0235573 36 2527 30 6.55708e+06 277265 612192. 2118.31 3.01 0.249839 0.214597 22750 144809 -1 2157 27 1019 2831 318188 151761 6.0037 6.0037 -134.48 -6.0037 0 0 782063. 2706.10 0.24 0.11 0.13 -1 -1 0.24 0.0302193 0.0265219 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 5.66 vpr 61.90 MiB -1 -1 0.24 18332 10 0.14 -1 -1 32832 -1 -1 22 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63388 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.5 MiB 0.17 1058 6563 1604 4377 582 61.9 MiB 0.07 0.00 4.79906 -103.748 -4.79906 4.79906 0.71 0.000723453 0.000668026 0.0289963 0.0267911 30 2461 29 6.55708e+06 265210 526063. 1820.29 2.57 0.203343 0.17568 21886 126133 -1 1992 15 770 2348 107567 25763 5.27986 5.27986 -120.137 -5.27986 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0240861 0.0212941 137 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.32 vpr 62.98 MiB -1 -1 0.28 18748 13 0.29 -1 -1 33120 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1568 8735 2118 5987 630 63.0 MiB 0.10 0.00 6.5563 -141.268 -6.5563 6.5563 0.71 0.00099932 0.00092509 0.0448735 0.0414393 30 4030 22 6.55708e+06 373705 526063. 1820.29 1.79 0.167991 0.14707 21886 126133 -1 3244 17 1453 4619 229544 52649 6.7993 6.7993 -158.402 -6.7993 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.0367749 0.0323315 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.27 vpr 62.70 MiB -1 -1 0.28 18648 14 0.32 -1 -1 33384 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 24.1 MiB 0.46 1455 8372 2159 5319 894 62.7 MiB 0.09 0.00 6.33378 -141.2 -6.33378 6.33378 0.71 0.000920552 0.000853421 0.041069 0.0380021 36 3638 25 6.55708e+06 337540 612192. 2118.31 2.47 0.230778 0.200135 22750 144809 -1 3117 19 1335 4007 226942 51237 6.77538 6.77538 -162.365 -6.77538 0 0 782063. 2706.10 0.22 0.12 0.13 -1 -1 0.22 0.0399776 0.0351146 191 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 6.61 vpr 62.19 MiB -1 -1 0.24 18064 12 0.15 -1 -1 32868 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1145 14375 4034 7984 2357 62.2 MiB 0.12 0.00 6.0821 -122.829 -6.0821 6.0821 0.72 0.0007424 0.00068802 0.0545055 0.0504529 38 2428 29 6.55708e+06 349595 638502. 2209.35 3.26 0.308273 0.266698 23326 155178 -1 2238 15 924 2635 129275 30552 6.3617 6.3617 -138.059 -6.3617 0 0 851065. 2944.86 0.23 0.06 0.14 -1 -1 0.23 0.0247462 0.021856 156 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 11.10 vpr 62.81 MiB -1 -1 0.28 18280 12 0.27 -1 -1 32956 -1 -1 33 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 24.1 MiB 0.41 1549 9075 2190 5868 1017 62.8 MiB 0.10 0.00 6.2793 -131.706 -6.2793 6.2793 0.70 0.000979351 0.000908612 0.044456 0.0411994 28 4270 21 6.55708e+06 397815 500653. 1732.36 7.40 0.280185 0.243247 21310 115450 -1 3535 41 1631 4825 561406 248822 6.5197 6.5197 -153.871 -6.5197 0 0 612192. 2118.31 0.18 0.22 0.10 -1 -1 0.18 0.0700332 0.0605926 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 7.15 vpr 62.61 MiB -1 -1 0.28 18700 14 0.34 -1 -1 33448 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1514 10442 2734 6429 1279 62.6 MiB 0.11 0.00 6.89962 -138.519 -6.89962 6.89962 0.70 0.000952711 0.000883003 0.0516808 0.0478519 36 3568 21 6.55708e+06 349595 612192. 2118.31 3.54 0.293345 0.253819 22750 144809 -1 2960 17 1426 4434 215331 50994 7.28976 7.28976 -156.429 -7.28976 0 0 782063. 2706.10 0.22 0.09 0.13 -1 -1 0.22 0.0346307 0.0304849 202 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 14.41 vpr 62.58 MiB -1 -1 0.30 18548 13 0.25 -1 -1 32908 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1453 11923 3326 7688 909 62.6 MiB 0.12 0.00 6.3995 -134.539 -6.3995 6.3995 0.71 0.000892496 0.000827843 0.0558396 0.0517351 28 4448 50 6.55708e+06 337540 500653. 1732.36 10.81 0.334671 0.290616 21310 115450 -1 3747 23 2217 6219 488502 115903 6.91184 6.91184 -158.674 -6.91184 0 0 612192. 2118.31 0.18 0.15 0.10 -1 -1 0.18 0.0411127 0.0358863 185 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.86 vpr 62.46 MiB -1 -1 0.29 18304 13 0.25 -1 -1 33008 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1292 14147 3945 7776 2426 62.5 MiB 0.14 0.00 5.86924 -114.846 -5.86924 5.86924 0.70 0.000871017 0.000807414 0.0666444 0.0617669 34 3749 37 6.55708e+06 313430 585099. 2024.56 4.25 0.344723 0.298289 22462 138074 -1 2950 20 1463 4978 316561 70380 6.43104 6.43104 -137.713 -6.43104 0 0 742403. 2568.87 0.21 0.11 0.12 -1 -1 0.21 0.0361583 0.0316186 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 9.40 vpr 62.37 MiB -1 -1 0.24 18176 12 0.20 -1 -1 32992 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1242 5743 1096 4296 351 62.4 MiB 0.06 0.00 5.71184 -117.407 -5.71184 5.71184 0.70 0.000834285 0.000774768 0.0276934 0.0256832 28 3306 24 6.55708e+06 289320 500653. 1732.36 6.18 0.237509 0.205111 21310 115450 -1 2919 19 1335 3851 233172 53536 6.19264 6.19264 -140.472 -6.19264 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.032581 0.0285487 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 8.07 vpr 62.91 MiB -1 -1 0.33 19076 14 0.38 -1 -1 33220 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1693 8735 1854 6352 529 62.9 MiB 0.10 0.00 6.92716 -149.269 -6.92716 6.92716 0.71 0.00105756 0.000968886 0.0467713 0.0431553 38 3945 17 6.55708e+06 373705 638502. 2209.35 4.21 0.367379 0.316408 23326 155178 -1 3295 15 1449 4801 227944 51941 7.16756 7.16756 -164.191 -7.16756 0 0 851065. 2944.86 0.25 0.10 0.14 -1 -1 0.25 0.0354967 0.0314238 230 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.75 vpr 62.30 MiB -1 -1 0.22 17992 11 0.19 -1 -1 32560 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63796 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1215 14543 4258 7926 2359 62.3 MiB 0.14 0.00 5.41998 -118.192 -5.41998 5.41998 0.70 0.000806601 0.000747158 0.0652326 0.0603747 30 3316 41 6.55708e+06 313430 526063. 1820.29 1.36 0.185374 0.162798 21886 126133 -1 2586 16 1163 3421 163102 38903 5.74138 5.74138 -134.709 -5.74138 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0278942 0.0245563 163 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.77 vpr 62.53 MiB -1 -1 0.26 18596 13 0.26 -1 -1 33652 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1318 8251 1929 5434 888 62.5 MiB 0.09 0.00 6.4381 -127.269 -6.4381 6.4381 0.70 0.000904396 0.000837307 0.0399898 0.0369869 30 3368 20 6.55708e+06 337540 526063. 1820.29 3.33 0.287365 0.247231 21886 126133 -1 2695 15 1114 3836 180303 42054 6.81096 6.81096 -147.212 -6.81096 0 0 666494. 2306.21 0.19 0.08 0.12 -1 -1 0.19 0.0303768 0.0268011 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.92 vpr 62.77 MiB -1 -1 0.22 18284 12 0.25 -1 -1 33012 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 24.2 MiB 0.42 1565 14793 4256 8328 2209 62.8 MiB 0.15 0.00 5.91304 -127.426 -5.91304 5.91304 0.70 0.000968561 0.000891585 0.0717147 0.0661142 36 3871 21 6.55708e+06 349595 612192. 2118.31 3.19 0.264929 0.231461 22750 144809 -1 3356 28 1451 4850 439454 167926 6.26138 6.26138 -143.731 -6.26138 0 0 782063. 2706.10 0.22 0.17 0.14 -1 -1 0.22 0.0511921 0.0444919 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 7.05 vpr 62.39 MiB -1 -1 0.24 18012 13 0.24 -1 -1 33024 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1284 6813 1378 4809 626 62.4 MiB 0.07 0.00 6.38724 -131.296 -6.38724 6.38724 0.69 0.000903022 0.000830569 0.0326145 0.0301507 34 3312 50 6.55708e+06 349595 585099. 2024.56 3.67 0.339532 0.291869 22462 138074 -1 2774 14 1137 3241 177727 41323 6.86804 6.86804 -152.884 -6.86804 0 0 742403. 2568.87 0.21 0.07 0.14 -1 -1 0.21 0.0282828 0.025018 183 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.92 vpr 62.41 MiB -1 -1 0.27 18500 13 0.21 -1 -1 32980 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1388 6723 1519 4586 618 62.4 MiB 0.08 0.00 5.81838 -131.133 -5.81838 5.81838 0.71 0.000862404 0.000799753 0.0332362 0.0307463 28 3914 40 6.55708e+06 313430 500653. 1732.36 2.58 0.164887 0.143426 21310 115450 -1 3145 15 1282 3710 222237 50370 6.22018 6.22018 -154.188 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0287644 0.0253698 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.15 vpr 62.68 MiB -1 -1 0.28 18324 12 0.24 -1 -1 32976 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 24.1 MiB 0.46 1506 9040 2318 6054 668 62.7 MiB 0.10 0.00 5.90844 -131.606 -5.90844 5.90844 0.70 0.000943806 0.000874823 0.0437541 0.040432 30 3638 49 6.55708e+06 361650 526063. 1820.29 1.51 0.19472 0.169409 21886 126133 -1 3031 18 1245 4318 202513 46589 6.50944 6.50944 -152.127 -6.50944 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0355958 0.0312961 197 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 7.91 vpr 62.87 MiB -1 -1 0.27 18516 13 0.29 -1 -1 33036 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1631 7439 1501 5330 608 62.9 MiB 0.09 0.00 6.42904 -137.905 -6.42904 6.42904 0.70 0.000996346 0.000922384 0.0393267 0.0363699 34 4726 35 6.55708e+06 373705 585099. 2024.56 4.27 0.229984 0.199796 22462 138074 -1 3529 17 1600 4800 289717 63863 6.87064 6.87064 -157.65 -6.87064 0 0 742403. 2568.87 0.21 0.10 0.12 -1 -1 0.21 0.0363765 0.032054 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.61 vpr 62.38 MiB -1 -1 0.25 18336 14 0.27 -1 -1 33136 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1310 9643 2648 6001 994 62.4 MiB 0.10 0.00 6.92976 -138.957 -6.92976 6.92976 0.70 0.000869099 0.000807013 0.0459096 0.0425935 28 3687 33 6.55708e+06 289320 500653. 1732.36 2.25 0.167104 0.146488 21310 115450 -1 3130 19 1447 4427 279103 62706 7.5995 7.5995 -169.033 -7.5995 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0336816 0.0295497 168 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 13.70 vpr 62.64 MiB -1 -1 0.21 18296 13 0.26 -1 -1 32944 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1450 8401 1821 5706 874 62.6 MiB 0.09 0.00 6.57316 -134.834 -6.57316 6.57316 0.72 0.000931025 0.000862898 0.0400997 0.0371383 30 3849 46 6.55708e+06 361650 526063. 1820.29 10.18 0.384728 0.330999 21886 126133 -1 3176 17 1448 4224 210949 48999 7.13296 7.13296 -156.637 -7.13296 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.033647 0.029644 198 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.83 vpr 62.68 MiB -1 -1 0.31 18316 13 0.27 -1 -1 32968 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1455 7975 1649 5433 893 62.7 MiB 0.09 0.00 6.3603 -133.574 -6.3603 6.3603 0.70 0.000958196 0.000888093 0.0396256 0.0366805 34 4084 45 6.55708e+06 373705 585099. 2024.56 2.26 0.228121 0.197642 22462 138074 -1 3385 18 1484 4450 260931 59694 6.55124 6.55124 -151.024 -6.55124 0 0 742403. 2568.87 0.21 0.10 0.12 -1 -1 0.21 0.0361373 0.031785 213 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.50 vpr 62.61 MiB -1 -1 0.28 18516 12 0.30 -1 -1 33140 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1470 11863 2975 7139 1749 62.6 MiB 0.12 0.00 6.1219 -131.533 -6.1219 6.1219 0.71 0.000993731 0.000922718 0.0556636 0.0514233 30 3795 25 6.55708e+06 397815 526063. 1820.29 3.05 0.311502 0.269276 21886 126133 -1 3210 18 1960 5589 258066 61615 6.4825 6.4825 -151.621 -6.4825 0 0 666494. 2306.21 0.19 0.10 0.08 -1 -1 0.19 0.0363273 0.0319195 216 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.42 vpr 62.03 MiB -1 -1 0.13 17764 11 0.13 -1 -1 32764 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 23.3 MiB 0.24 1086 8804 2031 5408 1365 62.0 MiB 0.10 0.00 5.20912 -107.655 -5.20912 5.20912 0.72 0.000687616 0.000634186 0.0462279 0.0427238 28 2815 43 6.55708e+06 216990 500653. 1732.36 1.32 0.151458 0.132561 21310 115450 -1 2461 18 1031 2696 183566 45356 5.60386 5.60386 -136.52 -5.60386 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.026042 0.0228828 125 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 11.94 vpr 62.36 MiB -1 -1 0.26 18496 13 0.21 -1 -1 32948 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1252 9838 2209 6020 1609 62.4 MiB 0.10 0.00 6.26704 -133.589 -6.26704 6.26704 0.77 0.000674519 0.000618016 0.0426867 0.0394175 28 3629 34 6.55708e+06 289320 500653. 1732.36 8.39 0.268414 0.231605 21310 115450 -1 2871 24 1431 4203 351402 112939 6.47024 6.47024 -149.993 -6.47024 0 0 612192. 2118.31 0.18 0.13 0.10 -1 -1 0.18 0.0387683 0.0337712 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 13.66 vpr 63.03 MiB -1 -1 0.29 19112 14 0.43 -1 -1 33156 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 24.5 MiB 0.25 1678 7645 1538 5658 449 63.0 MiB 0.09 0.00 7.13802 -144.226 -7.13802 7.13802 0.72 0.0010866 0.00100627 0.0419333 0.038801 28 5105 32 6.55708e+06 397815 500653. 1732.36 9.95 0.32822 0.284346 21310 115450 -1 4024 21 2418 7811 467751 105144 7.64835 7.64835 -169.588 -7.64835 0 0 612192. 2118.31 0.18 0.15 0.10 -1 -1 0.18 0.0464319 0.0407597 245 243 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.96 vpr 62.63 MiB -1 -1 0.27 18592 13 0.28 -1 -1 32952 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.36 1464 6415 1327 4565 523 62.6 MiB 0.07 0.00 6.3557 -142.114 -6.3557 6.3557 0.71 0.000907037 0.00083808 0.0317261 0.0293388 36 3553 35 6.55708e+06 325485 612192. 2118.31 2.40 0.230406 0.199434 22750 144809 -1 3091 15 1207 3400 195362 43673 6.8365 6.8365 -161.502 -6.8365 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0299339 0.0264255 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.61 vpr 62.14 MiB -1 -1 0.24 18108 11 0.17 -1 -1 32800 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.17 1031 12733 3633 7511 1589 62.1 MiB 0.11 0.00 5.48612 -115.818 -5.48612 5.48612 0.70 0.000724233 0.000670804 0.0523414 0.0484192 28 2623 26 6.55708e+06 277265 500653. 1732.36 1.47 0.145764 0.128626 21310 115450 -1 2286 20 1001 2986 195964 57522 5.94198 5.94198 -134.785 -5.94198 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0295122 0.025898 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 6.61 vpr 62.89 MiB -1 -1 0.31 19216 15 0.50 -1 -1 33112 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1736 8423 1815 6098 510 62.9 MiB 0.10 0.00 7.89901 -156.348 -7.89901 7.89901 0.70 0.00112136 0.00103248 0.0475881 0.0438547 30 4837 37 6.55708e+06 409870 526063. 1820.29 2.76 0.221295 0.193882 21886 126133 -1 3778 21 2063 6651 341690 77846 8.25961 8.25961 -179.067 -8.25961 0 0 666494. 2306.21 0.19 0.13 0.11 -1 -1 0.19 0.0480633 0.0421785 257 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 7.34 vpr 62.58 MiB -1 -1 0.25 18380 13 0.30 -1 -1 33040 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1505 5888 1126 4279 483 62.6 MiB 0.07 0.00 6.41116 -132.676 -6.41116 6.41116 0.70 0.000965629 0.0008904 0.0310547 0.0287536 26 4242 33 6.55708e+06 337540 477104. 1650.88 3.83 0.291669 0.251724 21022 109990 -1 3599 21 1763 5388 442912 122629 7.8413 7.8413 -177.201 -7.8413 0 0 585099. 2024.56 0.17 0.14 0.10 -1 -1 0.17 0.0404426 0.0353918 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.62 vpr 62.06 MiB -1 -1 0.21 17780 11 0.13 -1 -1 32660 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.6 MiB 0.29 1150 11804 3166 7215 1423 62.1 MiB 0.10 0.00 5.24832 -114.705 -5.24832 5.24832 0.75 0.000721125 0.000668257 0.0478997 0.0443614 28 2989 34 6.55708e+06 265210 500653. 1732.36 1.37 0.149328 0.131248 21310 115450 -1 2619 16 1063 3009 177760 40681 5.60892 5.60892 -135.142 -5.60892 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0253526 0.0223436 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.31 vpr 62.68 MiB -1 -1 0.27 18384 12 0.29 -1 -1 33124 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1453 9253 2133 6198 922 62.7 MiB 0.10 0.00 6.4407 -128.315 -6.4407 6.4407 0.70 0.000965732 0.000893576 0.0462872 0.0428008 30 3779 49 6.55708e+06 361650 526063. 1820.29 1.74 0.205088 0.178489 21886 126133 -1 3050 22 1598 5328 262208 59131 6.8013 6.8013 -145.166 -6.8013 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0426776 0.0373192 213 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.91 vpr 62.12 MiB -1 -1 0.21 17848 12 0.19 -1 -1 32856 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1251 12753 3201 7447 2105 62.1 MiB 0.11 0.00 6.02924 -127.779 -6.02924 6.02924 0.70 0.000785136 0.000727934 0.0528118 0.0489122 28 3538 27 6.55708e+06 313430 500653. 1732.36 1.56 0.155198 0.136778 21310 115450 -1 2922 16 1221 3454 209619 48242 6.42904 6.42904 -150.664 -6.42904 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0274092 0.024196 153 148 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.86 vpr 61.95 MiB -1 -1 0.24 18328 12 0.18 -1 -1 32760 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.5 MiB 0.21 992 7823 1908 4654 1261 62.0 MiB 0.08 0.00 5.82944 -115.735 -5.82944 5.82944 0.70 0.000748568 0.000689875 0.0354238 0.0327555 28 2502 31 6.55708e+06 253155 500653. 1732.36 2.62 0.241169 0.208182 21310 115450 -1 2262 16 972 2969 176458 40641 6.55064 6.55064 -139.29 -6.55064 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0256671 0.0225842 140 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.31 vpr 62.39 MiB -1 -1 0.28 18596 12 0.26 -1 -1 33040 -1 -1 31 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63884 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1365 6923 1406 5081 436 62.4 MiB 0.08 0.00 5.98178 -110.428 -5.98178 5.98178 0.73 0.000904005 0.000838295 0.0369683 0.0343111 32 4150 40 6.55708e+06 373705 554710. 1919.41 1.81 0.215653 0.186928 22174 131602 -1 3299 16 1361 4452 311363 69012 6.34238 6.34238 -130.502 -6.34238 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0318314 0.0280134 191 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 5.49 vpr 62.88 MiB -1 -1 0.26 18500 13 0.33 -1 -1 33060 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.3 MiB 0.53 1655 8533 1730 5988 815 62.9 MiB 0.10 0.00 6.64956 -144.479 -6.64956 6.64956 0.70 0.0010409 0.000965108 0.0449977 0.0416099 30 4164 36 6.55708e+06 397815 526063. 1820.29 1.65 0.196395 0.171921 21886 126133 -1 3561 21 1791 4887 241350 56064 7.28976 7.28976 -170.041 -7.28976 0 0 666494. 2306.21 0.22 0.11 0.11 -1 -1 0.22 0.0434902 0.0381678 238 235 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.88 vpr 62.51 MiB -1 -1 0.26 18324 12 0.24 -1 -1 32944 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1432 13893 3910 8108 1875 62.5 MiB 0.13 0.00 6.2415 -124.275 -6.2415 6.2415 0.70 0.000939223 0.000871474 0.0632658 0.0586055 38 3270 30 6.55708e+06 385760 638502. 2209.35 2.22 0.262659 0.229256 23326 155178 -1 2785 19 1421 4326 218160 49444 6.41818 6.41818 -142.513 -6.41818 0 0 851065. 2944.86 0.23 0.09 0.14 -1 -1 0.23 0.0365907 0.032083 200 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 9.14 vpr 61.94 MiB -1 -1 0.23 18112 12 0.16 -1 -1 32764 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63424 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.5 MiB 0.49 1091 5025 982 3533 510 61.9 MiB 0.05 0.00 5.54078 -119.299 -5.54078 5.54078 0.70 0.000695014 0.000643812 0.0216298 0.0200406 28 2768 43 6.55708e+06 241100 500653. 1732.36 5.70 0.215414 0.184912 21310 115450 -1 2546 16 1028 2830 180550 45608 5.60752 5.60752 -135.983 -5.60752 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0241144 0.0211555 126 119 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 6.24 vpr 62.22 MiB -1 -1 0.25 18016 12 0.23 -1 -1 32604 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63712 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 23.6 MiB 0.29 1174 6999 1573 4827 599 62.2 MiB 0.07 0.00 5.77858 -116.505 -5.77858 5.77858 0.70 0.000783957 0.000727084 0.0316994 0.0293711 30 3030 19 6.55708e+06 289320 526063. 1820.29 2.90 0.233537 0.20126 21886 126133 -1 2474 15 1051 3301 163289 38179 5.89878 5.89878 -134.066 -5.89878 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0259434 0.0228759 154 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.57 vpr 62.54 MiB -1 -1 0.26 18376 11 0.18 -1 -1 32976 -1 -1 30 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.16 1242 13961 3883 7687 2391 62.5 MiB 0.13 0.00 5.62118 -109.985 -5.62118 5.62118 0.70 0.000869407 0.000805687 0.06238 0.0577075 36 3497 32 6.55708e+06 361650 612192. 2118.31 3.20 0.251872 0.219372 22750 144809 -1 2748 16 1236 3997 235753 53571 5.62118 5.62118 -123.105 -5.62118 0 0 782063. 2706.10 0.22 0.09 0.14 -1 -1 0.22 0.0307639 0.0270639 190 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.91 vpr 62.28 MiB -1 -1 0.24 18116 11 0.20 -1 -1 33060 -1 -1 27 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.7 MiB 0.14 1200 13527 3638 7996 1893 62.3 MiB 0.12 0.00 5.54218 -102.707 -5.54218 5.54218 0.73 0.000819413 0.000760917 0.0607634 0.0563479 30 2722 18 6.55708e+06 325485 526063. 1820.29 2.76 0.255549 0.222001 21886 126133 -1 2393 19 1108 3865 182606 41622 5.95926 5.95926 -120.632 -5.95926 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.032023 0.02803 172 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.77 vpr 62.24 MiB -1 -1 0.25 18012 13 0.21 -1 -1 32948 -1 -1 25 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63736 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 23.7 MiB 0.27 1046 5079 1052 3778 249 62.2 MiB 0.06 0.00 6.1219 -115.535 -6.1219 6.1219 0.70 0.000760618 0.000704892 0.0230595 0.0213676 36 2785 24 6.55708e+06 301375 612192. 2118.31 1.45 0.142539 0.123716 22750 144809 -1 2183 15 948 3015 150558 36640 6.3623 6.3623 -129.736 -6.3623 0 0 782063. 2706.10 0.22 0.05 0.13 -1 -1 0.22 0.0194604 0.0177582 148 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 6.00 vpr 62.44 MiB -1 -1 0.27 18500 12 0.21 -1 -1 32820 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1150 7544 1782 4745 1017 62.4 MiB 0.08 0.00 6.0821 -129.548 -6.0821 6.0821 0.70 0.000860509 0.000798868 0.0347132 0.032188 36 3391 36 6.55708e+06 337540 612192. 2118.31 2.57 0.222555 0.1925 22750 144809 -1 2448 15 1077 2993 160809 38898 6.5237 6.5237 -150.365 -6.5237 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.0286298 0.0252989 174 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.88 vpr 62.55 MiB -1 -1 0.25 18200 13 0.28 -1 -1 33092 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1310 4512 797 3365 350 62.6 MiB 0.06 0.00 6.64896 -130.697 -6.64896 6.64896 0.70 0.000915823 0.00085081 0.0240941 0.0223737 30 2908 25 6.55708e+06 325485 526063. 1820.29 3.49 0.314139 0.269311 21886 126133 -1 2514 24 1168 3803 171300 40110 7.2011 7.2011 -150.125 -7.2011 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0424216 0.036926 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 6.39 vpr 62.54 MiB -1 -1 0.28 18312 14 0.25 -1 -1 32976 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1319 14168 3745 8192 2231 62.5 MiB 0.13 0.00 6.88996 -134.384 -6.88996 6.88996 0.71 0.000930059 0.000862295 0.0668553 0.0619296 30 3250 24 6.55708e+06 337540 526063. 1820.29 2.94 0.294529 0.255876 21886 126133 -1 2630 24 1233 3622 252840 96347 7.22102 7.22102 -154.893 -7.22102 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0430137 0.0375564 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 4.78 vpr 62.50 MiB -1 -1 0.28 18644 14 0.24 -1 -1 33156 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1235 8207 2035 5117 1055 62.5 MiB 0.09 0.00 6.58644 -132.185 -6.58644 6.58644 0.71 0.000877698 0.00081399 0.0396155 0.0367319 30 3055 28 6.55708e+06 301375 526063. 1820.29 1.36 0.154846 0.135579 21886 126133 -1 2489 16 1097 3237 155379 36495 6.58644 6.58644 -144.406 -6.58644 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0306137 0.0269891 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 6.32 vpr 62.56 MiB -1 -1 0.28 18628 13 0.36 -1 -1 33080 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1437 6393 1250 4452 691 62.6 MiB 0.07 0.00 6.72996 -135.023 -6.72996 6.72996 0.71 0.00095679 0.000884083 0.0328103 0.0304016 34 3860 34 6.55708e+06 349595 585099. 2024.56 2.72 0.206454 0.17912 22462 138074 -1 3284 18 1619 5047 297616 66995 7.29176 7.29176 -155.173 -7.29176 0 0 742403. 2568.87 0.21 0.11 0.12 -1 -1 0.21 0.0363127 0.0318622 205 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.95 vpr 62.14 MiB -1 -1 0.24 18056 13 0.18 -1 -1 32588 -1 -1 24 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63628 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1184 6134 1255 4418 461 62.1 MiB 0.06 0.00 6.14684 -124.956 -6.14684 6.14684 0.69 0.000755038 0.000700018 0.0274653 0.0255002 28 3006 40 6.55708e+06 289320 500653. 1732.36 1.56 0.138364 0.120442 21310 115450 -1 2567 17 1213 3319 191995 44661 6.74784 6.74784 -148.498 -6.74784 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0274364 0.0241712 147 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 7.14 vpr 62.70 MiB -1 -1 0.27 18512 13 0.41 -1 -1 33060 -1 -1 32 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1516 6697 1322 4832 543 62.7 MiB 0.08 0.00 6.56856 -135.645 -6.56856 6.56856 0.70 0.000973173 0.000902947 0.0343075 0.0317363 38 3477 19 6.55708e+06 385760 638502. 2209.35 3.44 0.281561 0.24288 23326 155178 -1 2963 16 1449 4206 201083 47142 7.13236 7.13236 -153.394 -7.13236 0 0 851065. 2944.86 0.23 0.09 0.14 -1 -1 0.23 0.0343013 0.0303169 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.95 vpr 62.49 MiB -1 -1 0.27 18480 14 0.30 -1 -1 33048 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1344 7843 1709 5848 286 62.5 MiB 0.09 0.00 6.7209 -139.662 -6.7209 6.7209 0.70 0.000897393 0.000827063 0.0376876 0.0348669 36 3232 22 6.55708e+06 325485 612192. 2118.31 3.25 0.307105 0.264031 22750 144809 -1 2759 19 1410 4921 249143 57964 6.85276 6.85276 -156.337 -6.85276 0 0 782063. 2706.10 0.22 0.10 0.13 -1 -1 0.22 0.0353997 0.0310169 181 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.01 vpr 62.40 MiB -1 -1 0.26 18468 13 0.22 -1 -1 32996 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1301 14323 4035 8140 2148 62.4 MiB 0.14 0.00 6.4785 -130.802 -6.4785 6.4785 0.70 0.000863164 0.000800476 0.0670551 0.0621417 38 2911 25 6.55708e+06 301375 638502. 2209.35 3.50 0.31824 0.275842 23326 155178 -1 2467 15 1089 3333 156501 36063 6.8391 6.8391 -145.745 -6.8391 0 0 851065. 2944.86 0.23 0.07 0.14 -1 -1 0.23 0.0289757 0.0255389 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 6.65 vpr 62.33 MiB -1 -1 0.28 18388 13 0.23 -1 -1 33192 -1 -1 27 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1264 10979 2870 6212 1897 62.3 MiB 0.11 0.00 6.1611 -116.304 -6.1611 6.1611 0.70 0.00120483 0.00114146 0.0511617 0.0473834 30 3222 25 6.55708e+06 325485 526063. 1820.29 3.14 0.298409 0.258017 21886 126133 -1 2645 17 1237 3575 175337 41120 6.5217 6.5217 -132.431 -6.5217 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0322905 0.0285757 178 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 5.06 vpr 62.89 MiB -1 -1 0.27 18296 14 0.34 -1 -1 33080 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1632 8326 1769 5833 724 62.9 MiB 0.09 0.00 6.7973 -145.828 -6.7973 6.7973 0.70 0.000999142 0.000925663 0.0405562 0.0375905 30 3804 26 6.55708e+06 446035 526063. 1820.29 1.45 0.168901 0.147862 21886 126133 -1 3219 21 1545 4340 193247 46845 7.2801 7.2801 -165.634 -7.2801 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0422109 0.0369979 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 7.14 vpr 62.73 MiB -1 -1 0.28 18568 11 0.29 -1 -1 32896 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1238 7929 1789 5525 615 62.7 MiB 0.08 0.00 5.71184 -112.612 -5.71184 5.71184 0.70 0.000878173 0.000810614 0.0383277 0.0354518 36 3049 35 6.55708e+06 349595 612192. 2118.31 3.49 0.287018 0.24698 22750 144809 -1 2626 18 1181 3549 188592 43676 6.19264 6.19264 -132.221 -6.19264 0 0 782063. 2706.10 0.22 0.08 0.13 -1 -1 0.22 0.0329994 0.0289017 177 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 9.06 vpr 62.11 MiB -1 -1 0.21 17896 13 0.16 -1 -1 32836 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1173 14713 3936 8889 1888 62.1 MiB 0.12 0.00 5.80872 -132.614 -5.80872 5.80872 0.71 0.000715304 0.000663512 0.0569443 0.0527954 26 3541 47 6.55708e+06 289320 477104. 1650.88 5.76 0.259662 0.225896 21022 109990 -1 2904 22 1384 3825 334239 98668 6.25998 6.25998 -158.659 -6.25998 0 0 585099. 2024.56 0.17 0.11 0.10 -1 -1 0.17 0.031253 0.0273337 138 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 10.01 vpr 62.52 MiB -1 -1 0.28 18420 14 0.24 -1 -1 32752 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1307 7337 1639 5087 611 62.5 MiB 0.08 0.00 6.78764 -138.621 -6.78764 6.78764 0.73 0.000878437 0.000814934 0.034266 0.031768 36 3626 25 6.55708e+06 337540 612192. 2118.31 6.34 0.311789 0.267893 22750 144809 -1 2948 15 1221 3689 225947 50481 7.1579 7.1579 -159.176 -7.1579 0 0 782063. 2706.10 0.25 0.08 0.13 -1 -1 0.25 0.0289813 0.025562 179 172 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.24 vpr 63.09 MiB -1 -1 0.28 18852 15 0.40 -1 -1 33024 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1656 5203 882 4015 306 63.1 MiB 0.07 0.00 7.49921 -155.842 -7.49921 7.49921 0.70 0.00107302 0.000994481 0.0293542 0.0271798 36 4292 28 6.55708e+06 397815 612192. 2118.31 3.57 0.343975 0.296248 22750 144809 -1 3546 18 1593 4744 263851 59573 7.73961 7.73961 -173.307 -7.73961 0 0 782063. 2706.10 0.22 0.10 0.13 -1 -1 0.22 0.0406127 0.0358223 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 6.88 vpr 61.84 MiB -1 -1 0.20 18224 11 0.16 -1 -1 32800 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63328 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 23.2 MiB 0.37 1050 5189 1060 3811 318 61.8 MiB 0.05 0.00 5.26058 -111.374 -5.26058 5.26058 0.70 0.000705886 0.000654926 0.022009 0.0203929 26 2844 47 6.55708e+06 265210 477104. 1650.88 3.66 0.220831 0.190002 21022 109990 -1 2345 18 953 2928 202801 46183 5.90538 5.90538 -132.869 -5.90538 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0265832 0.0233022 129 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 4.74 vpr 62.28 MiB -1 -1 0.22 17752 12 0.18 -1 -1 33064 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63776 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1277 12761 3103 7993 1665 62.3 MiB 0.11 0.00 5.97718 -125.16 -5.97718 5.97718 0.70 0.000647513 0.000586352 0.0531942 0.0491039 28 3246 24 6.55708e+06 313430 500653. 1732.36 1.42 0.154082 0.135608 21310 115450 -1 2819 19 1420 4064 235531 53806 6.52472 6.52472 -149.756 -6.52472 0 0 612192. 2118.31 0.22 0.09 0.11 -1 -1 0.22 0.0307185 0.0269239 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 12.05 vpr 62.79 MiB -1 -1 0.27 18312 12 0.29 -1 -1 33156 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1509 15864 4261 9502 2101 62.8 MiB 0.15 0.00 5.99144 -132.623 -5.99144 5.99144 0.70 0.000982529 0.000906293 0.0751031 0.0693479 30 3915 25 6.55708e+06 385760 526063. 1820.29 8.47 0.338999 0.295766 21886 126133 -1 3074 16 1461 4249 210514 48665 6.4009 6.4009 -151.339 -6.4009 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0343078 0.0302256 213 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 5.67 vpr 62.46 MiB -1 -1 0.27 18316 12 0.23 -1 -1 33084 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1441 6321 1292 4518 511 62.5 MiB 0.07 0.00 6.22984 -133.478 -6.22984 6.22984 0.70 0.000885365 0.000821664 0.0320952 0.0297118 30 3986 31 6.55708e+06 313430 526063. 1820.29 2.22 0.151067 0.131789 21886 126133 -1 3163 20 1492 4567 243841 54630 6.99024 6.99024 -156.827 -6.99024 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0361245 0.0316119 181 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.18 vpr 63.05 MiB -1 -1 0.27 18640 14 0.44 -1 -1 33056 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.5 MiB 0.49 1719 11111 2953 7159 999 63.1 MiB 0.12 0.00 7.41762 -149.215 -7.41762 7.41762 0.70 0.0010731 0.000995244 0.0591767 0.0547303 38 4247 48 6.55708e+06 373705 638502. 2209.35 3.20 0.315688 0.274343 23326 155178 -1 3572 18 1660 5468 285954 63853 7.76856 7.76856 -169.734 -7.76856 0 0 851065. 2944.86 0.23 0.11 0.13 -1 -1 0.23 0.0405054 0.0356895 234 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.64 vpr 62.30 MiB -1 -1 0.26 18320 12 0.21 -1 -1 33012 -1 -1 25 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63796 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.7 MiB 0.39 1271 10071 2559 6195 1317 62.3 MiB 0.10 0.00 6.01898 -116.357 -6.01898 6.01898 0.70 0.000836403 0.0007766 0.0469686 0.0435752 28 3669 43 6.55708e+06 301375 500653. 1732.36 3.23 0.175716 0.153507 21310 115450 -1 3111 18 1149 3503 243075 53016 6.42138 6.42138 -135.523 -6.42138 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0311764 0.0273467 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 7.89 vpr 61.92 MiB -1 -1 0.23 18176 11 0.18 -1 -1 32856 -1 -1 26 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.4 MiB 0.27 966 9199 2718 4523 1958 61.9 MiB 0.08 0.00 5.54984 -101.82 -5.54984 5.54984 0.70 0.000713336 0.000661158 0.037934 0.0351679 28 2776 27 6.55708e+06 313430 500653. 1732.36 4.51 0.223682 0.193542 21310 115450 -1 2566 41 1880 5927 640916 260360 6.23184 6.23184 -127.077 -6.23184 0 0 612192. 2118.31 0.18 0.22 0.10 -1 -1 0.18 0.0510457 0.0440062 140 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.17 vpr 62.89 MiB -1 -1 0.31 19080 13 0.46 -1 -1 33080 -1 -1 40 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.7 MiB 0.40 2014 16208 4001 10076 2131 62.9 MiB 0.18 0.00 6.74784 -141.337 -6.74784 6.74784 0.70 0.00118459 0.00108617 0.0828695 0.0764331 38 4690 17 6.55708e+06 482200 638502. 2209.35 4.13 0.432121 0.374937 23326 155178 -1 3957 17 1753 5821 317108 69370 7.10844 7.10844 -161.746 -7.10844 0 0 851065. 2944.86 0.23 0.12 0.13 -1 -1 0.23 0.0426169 0.0376186 286 285 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 4.92 vpr 62.48 MiB -1 -1 0.28 18380 14 0.24 -1 -1 33324 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1317 9883 2377 6293 1213 62.5 MiB 0.10 0.00 6.76976 -136.909 -6.76976 6.76976 0.70 0.00090379 0.000829089 0.0469594 0.0434321 28 3677 24 6.55708e+06 337540 500653. 1732.36 1.57 0.160697 0.140977 21310 115450 -1 2959 21 1439 3915 224190 54430 7.13036 7.13036 -157.832 -7.13036 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.037895 0.0331328 188 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 4.66 vpr 62.06 MiB -1 -1 0.27 18468 12 0.16 -1 -1 32684 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1209 5803 1153 4272 378 62.1 MiB 0.06 0.00 5.74904 -129.467 -5.74904 5.74904 0.70 0.000759921 0.000700583 0.0251436 0.0232432 28 3255 29 6.55708e+06 325485 500653. 1732.36 1.42 0.124923 0.108911 21310 115450 -1 2688 13 1000 2745 163216 37568 6.59044 6.59044 -151.706 -6.59044 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0230714 0.0205 145 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.35 vpr 62.37 MiB -1 -1 0.26 18484 13 0.27 -1 -1 33120 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1245 6723 1348 5024 351 62.4 MiB 0.07 0.00 6.4825 -132.876 -6.4825 6.4825 0.70 0.00087169 0.000808752 0.0325247 0.0301475 28 3375 26 6.55708e+06 313430 500653. 1732.36 5.80 0.252312 0.217759 21310 115450 -1 2985 23 1323 3907 241684 55258 6.9633 6.9633 -153.84 -6.9633 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0395138 0.0345075 169 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.89 vpr 62.90 MiB -1 -1 0.28 18760 13 0.32 -1 -1 33024 -1 -1 35 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1646 10673 2541 7619 513 62.9 MiB 0.12 0.00 6.3995 -133.329 -6.3995 6.3995 0.70 0.00103359 0.000946959 0.0528271 0.0487196 34 4672 47 6.55708e+06 421925 585099. 2024.56 3.31 0.295992 0.256653 22462 138074 -1 3763 18 1738 4979 307748 69405 6.5589 6.5589 -151.851 -6.5589 0 0 742403. 2568.87 0.21 0.11 0.12 -1 -1 0.21 0.0387023 0.0340463 233 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.21 vpr 62.60 MiB -1 -1 0.25 18296 11 0.24 -1 -1 32936 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1403 11013 3057 6717 1239 62.6 MiB 0.11 0.00 5.31404 -108.115 -5.31404 5.31404 0.70 0.00091774 0.00084626 0.0517129 0.0477109 38 3312 23 6.55708e+06 373705 638502. 2209.35 3.77 0.322601 0.278089 23326 155178 -1 2751 18 1195 4184 204374 46739 5.82438 5.82438 -124.676 -5.82438 0 0 851065. 2944.86 0.23 0.09 0.13 -1 -1 0.23 0.0350215 0.0308055 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 5.81 vpr 62.71 MiB -1 -1 0.27 18312 15 0.34 -1 -1 33008 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 24.1 MiB 0.47 1457 7653 1626 5517 510 62.7 MiB 0.09 0.00 7.57501 -156.601 -7.57501 7.57501 0.70 0.000957613 0.000887287 0.0387535 0.0358426 34 3723 38 6.55708e+06 349595 585099. 2024.56 2.07 0.215574 0.187217 22462 138074 -1 3135 18 1443 4600 252867 58062 7.88675 7.88675 -175.892 -7.88675 0 0 742403. 2568.87 0.21 0.10 0.12 -1 -1 0.21 0.0364224 0.0320071 202 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 7.08 vpr 62.93 MiB -1 -1 0.28 18604 13 0.28 -1 -1 33076 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 24.4 MiB 0.43 1440 7549 1494 5236 819 62.9 MiB 0.08 0.00 6.6765 -142.437 -6.6765 6.6765 0.70 0.000948129 0.000869268 0.0383881 0.0355105 38 3198 25 6.55708e+06 361650 638502. 2209.35 3.34 0.31511 0.271277 23326 155178 -1 2852 15 1269 3781 178680 41529 7.0371 7.0371 -157.106 -7.0371 0 0 851065. 2944.86 0.27 0.08 0.14 -1 -1 0.27 0.0314374 0.0278004 194 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 6.25 vpr 62.16 MiB -1 -1 0.23 18224 12 0.19 -1 -1 32848 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63652 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1140 7728 1874 5153 701 62.2 MiB 0.08 0.00 6.0409 -123.312 -6.0409 6.0409 0.72 0.000767268 0.000711712 0.0328348 0.0304033 28 3234 23 6.55708e+06 349595 500653. 1732.36 2.81 0.21749 0.187839 21310 115450 -1 2744 19 1347 3678 228194 54164 6.6419 6.6419 -150.473 -6.6419 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0337784 0.0297803 157 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 4.29 vpr 62.11 MiB -1 -1 0.25 18048 11 0.15 -1 -1 33044 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1035 9199 2539 5604 1056 62.1 MiB 0.09 0.00 5.51064 -114.209 -5.51064 5.51064 0.70 0.000729782 0.000676161 0.0388999 0.0360256 30 2694 25 6.55708e+06 253155 526063. 1820.29 1.05 0.131804 0.115629 21886 126133 -1 2279 32 1031 2798 321621 150582 5.83204 5.83204 -131.324 -5.83204 0 0 666494. 2306.21 0.19 0.13 0.11 -1 -1 0.19 0.0426026 0.0369342 145 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 7.89 vpr 62.58 MiB -1 -1 0.26 18488 13 0.31 -1 -1 32980 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 24.0 MiB 0.46 1588 9200 2221 5587 1392 62.6 MiB 0.10 0.00 6.5197 -136.714 -6.5197 6.5197 0.72 0.0009469 0.000874319 0.0467249 0.0431237 36 4313 28 6.55708e+06 349595 612192. 2118.31 4.08 0.316335 0.272309 22750 144809 -1 3512 22 1945 6504 393301 84936 7.18178 7.18178 -157.653 -7.18178 0 0 782063. 2706.10 0.22 0.13 0.13 -1 -1 0.22 0.0414452 0.0361707 203 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.68 vpr 62.12 MiB -1 -1 0.24 18204 10 0.16 -1 -1 33064 -1 -1 24 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63608 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 23.7 MiB 0.18 888 12919 4197 6050 2672 62.1 MiB 0.11 0.00 4.85252 -95.7521 -4.85252 4.85252 0.70 0.000707706 0.000656123 0.0522065 0.0482832 30 2233 16 6.55708e+06 289320 526063. 1820.29 2.55 0.20844 0.181333 21886 126133 -1 1854 14 842 2545 109694 27677 5.09292 5.09292 -110.137 -5.09292 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224784 0.0198501 137 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 4.62 vpr 62.35 MiB -1 -1 0.24 18208 14 0.19 -1 -1 33032 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.8 MiB 0.46 1160 6133 1327 4111 695 62.3 MiB 0.07 0.00 6.58503 -138.837 -6.58503 6.58503 0.70 0.000770482 0.000712732 0.0271052 0.0250928 30 3061 23 6.55708e+06 289320 526063. 1820.29 1.14 0.12235 0.107017 21886 126133 -1 2582 14 1060 3043 154356 36549 6.94563 6.94563 -159.088 -6.94563 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0244638 0.0216608 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 4.77 vpr 62.62 MiB -1 -1 0.27 18376 13 0.26 -1 -1 32940 -1 -1 30 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1299 7233 1684 4721 828 62.6 MiB 0.08 0.00 6.01698 -127.978 -6.01698 6.01698 0.70 0.000868767 0.000806225 0.0332206 0.0308014 30 3358 36 6.55708e+06 361650 526063. 1820.29 1.29 0.156447 0.13628 21886 126133 -1 2669 15 1180 3333 156195 37577 6.42904 6.42904 -148.263 -6.42904 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0290296 0.0256191 180 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.10 vpr 61.98 MiB -1 -1 0.24 18216 12 0.17 -1 -1 32844 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63468 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1181 6425 1457 4464 504 62.0 MiB 0.06 0.00 5.40832 -119.105 -5.40832 5.40832 0.70 0.000721894 0.000670478 0.0269237 0.0249175 30 2788 17 6.55708e+06 313430 526063. 1820.29 0.86 0.107938 0.0943501 21886 126133 -1 2225 15 894 2315 112680 26691 5.57032 5.57032 -133.54 -5.57032 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0237573 0.0209143 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 11.44 vpr 62.43 MiB -1 -1 0.26 18284 12 0.19 -1 -1 33008 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1423 11949 3325 7202 1422 62.4 MiB 0.13 0.00 5.87384 -125.684 -5.87384 5.87384 0.78 0.00091252 0.000845227 0.0597214 0.0551936 30 3370 44 6.55708e+06 313430 526063. 1820.29 7.91 0.32062 0.277573 21886 126133 -1 2814 19 1357 4415 224176 51811 6.14378 6.14378 -144.506 -6.14378 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0359717 0.0315152 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.34 vpr 62.57 MiB -1 -1 0.29 18640 13 0.28 -1 -1 33188 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1324 9614 2499 5702 1413 62.6 MiB 0.10 0.00 6.1585 -127.708 -6.1585 6.1585 0.70 0.000929536 0.000862128 0.0473296 0.0434938 34 4072 45 6.55708e+06 349595 585099. 2024.56 2.65 0.266226 0.230471 22462 138074 -1 3077 20 1533 4756 282489 65171 7.0397 7.0397 -151.336 -7.0397 0 0 742403. 2568.87 0.21 0.11 0.12 -1 -1 0.21 0.0379837 0.0332476 193 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.43 vpr 62.10 MiB -1 -1 0.24 18116 11 0.17 -1 -1 32912 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1134 12365 2979 7949 1437 62.1 MiB 0.11 0.00 5.32992 -118.677 -5.32992 5.32992 0.70 0.000747388 0.000689931 0.0494032 0.0456732 28 2908 29 6.55708e+06 301375 500653. 1732.36 1.20 0.148776 0.130841 21310 115450 -1 2556 15 1067 2931 162039 37801 5.45212 5.45212 -134.254 -5.45212 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0247325 0.0218319 148 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 6.10 vpr 62.21 MiB -1 -1 0.25 18156 13 0.21 -1 -1 33160 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1242 6718 1503 4843 372 62.2 MiB 0.07 0.00 6.06844 -129.387 -6.06844 6.06844 0.70 0.000838915 0.000768639 0.0325526 0.0300867 34 3626 48 6.55708e+06 289320 585099. 2024.56 2.50 0.210192 0.18192 22462 138074 -1 2896 60 1330 4028 758028 410044 6.4015 6.4015 -151.48 -6.4015 0 0 742403. 2568.87 0.21 0.29 0.12 -1 -1 0.21 0.083109 0.0713712 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.36 vpr 62.68 MiB -1 -1 0.26 18384 13 0.25 -1 -1 33100 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 24.2 MiB 0.63 1338 8165 1919 5191 1055 62.7 MiB 0.09 0.00 6.5981 -140.056 -6.5981 6.5981 0.70 0.000932101 0.000855283 0.0407525 0.0377533 28 4119 41 6.55708e+06 337540 500653. 1732.36 1.60 0.178302 0.155631 21310 115450 -1 3233 18 1495 4300 258962 59012 7.0789 7.0789 -165.29 -7.0789 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.034356 0.0301991 193 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.43 vpr 62.14 MiB -1 -1 0.27 18264 11 0.19 -1 -1 32884 -1 -1 27 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63632 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1157 12958 3912 6886 2160 62.1 MiB 0.11 0.00 5.14238 -100.472 -5.14238 5.14238 0.70 0.000798593 0.000737226 0.0561636 0.0520177 30 2821 23 6.55708e+06 325485 526063. 1820.29 1.16 0.154001 0.135622 21886 126133 -1 2350 16 1002 3049 144228 35237 5.58138 5.58138 -116.662 -5.58138 0 0 666494. 2306.21 0.21 0.07 0.11 -1 -1 0.21 0.0277994 0.0244584 160 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 7.10 vpr 62.92 MiB -1 -1 0.30 19096 14 0.31 -1 -1 33612 -1 -1 35 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1540 9219 1921 6673 625 62.9 MiB 0.10 0.00 7.08916 -153.35 -7.08916 7.08916 0.70 0.00104638 0.000960451 0.0455775 0.0420395 36 4225 41 6.55708e+06 421925 612192. 2118.31 3.40 0.281552 0.24352 22750 144809 -1 3493 18 1679 5168 295408 66845 7.20936 7.20936 -170.505 -7.20936 0 0 782063. 2706.10 0.22 0.11 0.13 -1 -1 0.22 0.0390099 0.034324 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 6.64 vpr 62.07 MiB -1 -1 0.21 18060 12 0.15 -1 -1 32768 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63560 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1141 5803 1019 4397 387 62.1 MiB 0.06 0.00 5.57998 -122.603 -5.57998 5.57998 0.70 0.00070947 0.000657485 0.0228477 0.0212015 40 2402 17 6.55708e+06 337540 666494. 2306.21 3.38 0.225294 0.193662 23614 160646 -1 2376 13 882 2347 151097 34211 5.73938 5.73938 -134.819 -5.73938 0 0 872365. 3018.56 0.24 0.06 0.14 -1 -1 0.24 0.021716 0.0192481 138 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 6.90 vpr 62.60 MiB -1 -1 0.28 18640 13 0.28 -1 -1 33016 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1401 5831 1162 4151 518 62.6 MiB 0.07 0.00 6.3179 -130.828 -6.3179 6.3179 0.70 0.000906253 0.000840032 0.0303056 0.0281086 36 3582 21 6.55708e+06 301375 612192. 2118.31 3.27 0.289479 0.248712 22750 144809 -1 3058 19 1539 4939 268781 60853 7.0789 7.0789 -153.048 -7.0789 0 0 782063. 2706.10 0.22 0.10 0.13 -1 -1 0.22 0.0359337 0.0315239 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.96 vpr 62.12 MiB -1 -1 0.26 18592 13 0.18 -1 -1 32736 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1154 8532 1821 6117 594 62.1 MiB 0.08 0.00 6.0801 -131.077 -6.0801 6.0801 0.70 0.000755049 0.000699991 0.0348816 0.0322982 34 2719 20 6.55708e+06 313430 585099. 2024.56 2.62 0.242644 0.209627 22462 138074 -1 2481 20 1045 2819 158902 37262 6.51204 6.51204 -150.175 -6.51204 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0307623 0.0269828 151 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.19 vpr 62.42 MiB -1 -1 0.27 18488 12 0.21 -1 -1 32936 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1328 9135 2290 5829 1016 62.4 MiB 0.09 0.00 5.75104 -128.523 -5.75104 5.75104 0.70 0.000891764 0.000826649 0.0438253 0.0405344 34 3285 32 6.55708e+06 313430 585099. 2024.56 1.74 0.182395 0.158901 22462 138074 -1 2794 27 1282 4267 441472 188154 6.10198 6.10198 -146.187 -6.10198 0 0 742403. 2568.87 0.21 0.16 0.12 -1 -1 0.21 0.0456863 0.0397003 176 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 12.53 vpr 62.89 MiB -1 -1 0.30 18976 15 0.47 -1 -1 33572 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1738 15412 3838 9104 2470 62.9 MiB 0.17 0.00 7.29036 -147.596 -7.29036 7.29036 0.70 0.00113243 0.0010473 0.0802117 0.0740987 36 4894 35 6.55708e+06 433980 612192. 2118.31 8.43 0.482882 0.418174 22750 144809 -1 3919 47 3612 13945 1175696 386973 7.53076 7.53076 -167.426 -7.53076 0 0 782063. 2706.10 0.22 0.36 0.13 -1 -1 0.22 0.0921181 0.0796388 256 255 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.20 vpr 61.54 MiB -1 -1 0.21 17852 10 0.10 -1 -1 32500 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63016 30 32 172 204 1 134 80 17 17 289 -1 unnamed_device 23.1 MiB 0.12 662 9540 2457 5184 1899 61.5 MiB 0.07 0.00 4.48026 -96.9856 -4.48026 4.48026 0.70 0.000560688 0.000520659 0.032979 0.0306643 28 2067 36 6.55708e+06 216990 500653. 1732.36 1.30 0.112673 0.0985244 21310 115450 -1 1719 17 776 1874 115956 30179 5.04406 5.04406 -119.574 -5.04406 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0203267 0.0177939 90 81 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 6.19 vpr 62.22 MiB -1 -1 0.24 18300 13 0.18 -1 -1 32892 -1 -1 25 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63716 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.7 MiB 0.17 1123 7383 1761 5235 387 62.2 MiB 0.07 0.00 6.05678 -125.888 -6.05678 6.05678 0.70 0.000748934 0.000695243 0.0325093 0.0300969 30 2578 24 6.55708e+06 301375 526063. 1820.29 3.07 0.270343 0.232928 21886 126133 -1 2241 15 910 2554 118805 29110 6.33638 6.33638 -140.167 -6.33638 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024747 0.0218804 143 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 6.75 vpr 62.25 MiB -1 -1 0.26 18200 12 0.19 -1 -1 33056 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1356 7888 1776 5562 550 62.2 MiB 0.08 0.00 6.22784 -134.147 -6.22784 6.22784 0.70 0.000850571 0.00078491 0.0373614 0.0347063 30 3173 44 6.55708e+06 289320 526063. 1820.29 3.49 0.302015 0.259707 21886 126133 -1 2659 16 1231 3249 145639 35682 6.46824 6.46824 -154.789 -6.46824 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0290837 0.0255387 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.56 vpr 61.76 MiB -1 -1 0.21 18064 9 0.13 -1 -1 32752 -1 -1 22 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63244 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 23.2 MiB 0.16 720 10388 2791 6885 712 61.8 MiB 0.08 0.00 4.64166 -82.1817 -4.64166 4.64166 0.70 0.00060293 0.000559869 0.03951 0.0365809 26 2314 28 6.55708e+06 265210 477104. 1650.88 1.56 0.118263 0.103568 21022 109990 -1 1803 16 814 2291 139272 32591 4.65894 4.65894 -98.9092 -4.65894 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0210115 0.0184235 111 102 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.95 vpr 62.65 MiB -1 -1 0.29 18500 12 0.25 -1 -1 32948 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1439 13639 3498 7531 2610 62.7 MiB 0.13 0.00 5.97778 -129.757 -5.97778 5.97778 0.70 0.00095633 0.00088586 0.0623543 0.0576501 34 4493 45 6.55708e+06 397815 585099. 2024.56 3.36 0.282993 0.245998 22462 138074 -1 3348 17 1578 4592 286972 65170 6.33838 6.33838 -151.739 -6.33838 0 0 742403. 2568.87 0.21 0.10 0.12 -1 -1 0.21 0.0343651 0.0302051 212 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.23 vpr 62.61 MiB -1 -1 0.28 18988 13 0.31 -1 -1 32900 -1 -1 30 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1525 5343 1047 3821 475 62.6 MiB 0.06 0.00 6.88996 -143.277 -6.88996 6.88996 0.70 0.000941777 0.000871089 0.0277789 0.0257033 38 3657 17 6.55708e+06 361650 638502. 2209.35 1.63 0.180393 0.156047 23326 155178 -1 2990 19 1209 3798 286049 102143 7.49096 7.49096 -162.712 -7.49096 0 0 851065. 2944.86 0.23 0.11 0.14 -1 -1 0.23 0.0376751 0.0330992 200 197 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.86 vpr 62.94 MiB -1 -1 0.19 18336 1 0.03 -1 -1 30680 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.3 MiB 0.25 1196 14550 4530 9060 960 62.9 MiB 0.14 0.00 4.30693 -132.707 -4.30693 4.30693 0.70 0.00070577 0.000656754 0.0493633 0.0458887 28 2716 22 6.64007e+06 401856 500653. 1732.36 0.83 0.133858 0.118477 21970 115934 -1 2356 19 1333 1998 123683 30066 4.35608 4.35608 -152.038 -4.35608 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.026877 0.0235433 154 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.05 vpr 62.92 MiB -1 -1 0.20 18236 1 0.03 -1 -1 30616 -1 -1 24 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 30 32 363 293 1 194 86 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1116 15206 5768 7612 1826 62.9 MiB 0.16 0.00 3.90562 -123.085 -3.90562 3.90562 0.71 0.000716694 0.000666238 0.0596634 0.055488 32 2563 22 6.64007e+06 301392 554710. 1919.41 0.88 0.144898 0.128602 22834 132086 -1 2245 22 1767 2679 201621 43767 4.21589 4.21589 -146.928 -4.21589 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0301323 0.0262373 139 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.09 vpr 62.47 MiB -1 -1 0.17 18248 1 0.03 -1 -1 30540 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.9 MiB 0.22 1100 8343 2206 5665 472 62.5 MiB 0.08 0.00 3.63576 -105.397 -3.63576 3.63576 0.72 0.000627402 0.000583254 0.0293982 0.0273694 26 2729 26 6.64007e+06 288834 477104. 1650.88 1.14 0.10856 0.0951503 21682 110474 -1 2259 20 1342 1868 129630 30094 3.72482 3.72482 -126.21 -3.72482 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0251456 0.0219278 126 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.66 vpr 62.46 MiB -1 -1 0.19 17972 1 0.03 -1 -1 30620 -1 -1 27 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.9 MiB 0.06 914 8473 2066 5244 1163 62.5 MiB 0.09 0.00 3.59876 -98.7241 -3.59876 3.59876 0.70 0.000632435 0.00058837 0.0308876 0.0286959 32 2007 24 6.64007e+06 339066 554710. 1919.41 0.82 0.108063 0.094698 22834 132086 -1 1762 21 1327 2541 144605 34717 3.53543 3.53543 -113.959 -3.53543 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0260571 0.0227004 126 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.83 vpr 62.38 MiB -1 -1 0.18 18484 1 0.03 -1 -1 30452 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.8 MiB 0.08 1035 13143 3355 8253 1535 62.4 MiB 0.13 0.00 3.68447 -111.481 -3.68447 3.68447 0.73 0.000684959 0.000637428 0.0492528 0.0458355 32 2597 18 6.64007e+06 288834 554710. 1919.41 0.88 0.127897 0.113508 22834 132086 -1 2193 20 1438 2744 188694 42308 3.59262 3.59262 -127.663 -3.59262 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0268162 0.0234129 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.80 vpr 62.68 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 24.3 MiB 0.11 937 16973 5028 9108 2837 62.7 MiB 0.15 0.00 2.80439 -97.2864 -2.80439 2.80439 0.70 0.00071583 0.000665075 0.0566483 0.0525955 32 2352 20 6.64007e+06 426972 554710. 1919.41 0.82 0.13958 0.123725 22834 132086 -1 1977 22 1394 2183 145290 33920 3.09937 3.09937 -115.566 -3.09937 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0305469 0.0266179 142 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.62 vpr 62.07 MiB -1 -1 0.19 18024 1 0.03 -1 -1 30820 -1 -1 19 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.5 MiB 0.11 653 12196 3652 7586 958 62.1 MiB 0.10 0.00 3.15021 -83.6855 -3.15021 3.15021 0.70 0.000552281 0.000514513 0.0425235 0.0396221 28 1629 21 6.64007e+06 238602 500653. 1732.36 0.77 0.1085 0.0959393 21970 115934 -1 1335 17 741 1278 94795 21729 2.91597 2.91597 -94.9665 -2.91597 0 0 612192. 2118.31 0.18 0.05 0.10 -1 -1 0.18 0.0194816 0.0170228 93 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.53 vpr 62.39 MiB -1 -1 0.19 17736 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.07 956 7549 1719 5275 555 62.4 MiB 0.07 0.00 2.7039 -85.3108 -2.7039 2.7039 0.70 0.000592822 0.000551952 0.0230873 0.0214772 26 2167 19 6.64007e+06 389298 477104. 1650.88 0.78 0.0912218 0.079748 21682 110474 -1 1972 14 816 1460 98256 22540 2.78577 2.78577 -101.028 -2.78577 0 0 585099. 2024.56 0.18 0.05 0.10 -1 -1 0.18 0.0185754 0.0163828 115 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.86 vpr 62.46 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30348 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 24.0 MiB 0.19 888 15203 5232 7676 2295 62.5 MiB 0.13 0.00 2.88585 -99.0745 -2.88585 2.88585 0.70 0.000636185 0.000591614 0.0556652 0.0517856 32 2064 16 6.64007e+06 251160 554710. 1919.41 0.80 0.125102 0.111206 22834 132086 -1 1818 20 1023 1425 100123 23355 3.30103 3.30103 -123.352 -3.30103 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0250341 0.0217916 111 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.76 vpr 62.41 MiB -1 -1 0.18 17916 1 0.03 -1 -1 30320 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.16 847 12681 3700 6629 2352 62.4 MiB 0.12 0.00 3.13721 -104.586 -3.13721 3.13721 0.73 0.000624025 0.000581063 0.0473424 0.0440947 30 1815 22 6.64007e+06 213486 526063. 1820.29 0.79 0.121327 0.107397 22546 126617 -1 1559 20 859 1351 79032 18112 2.72237 2.72237 -110.351 -2.72237 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0244434 0.0213471 112 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.67 vpr 62.26 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30648 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.13 829 12416 3816 6763 1837 62.3 MiB 0.11 0.00 3.22421 -90.9311 -3.22421 3.22421 0.70 0.000613838 0.000571326 0.0472696 0.0439931 32 1657 18 6.64007e+06 213486 554710. 1919.41 0.76 0.116356 0.103044 22834 132086 -1 1494 15 709 1121 75490 17003 2.80457 2.80457 -103.399 -2.80457 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0195233 0.0171047 98 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.38 MiB -1 -1 0.17 18068 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.9 MiB 0.23 848 9160 2551 6191 418 62.4 MiB 0.09 0.00 2.9925 -96.4036 -2.9925 2.9925 0.70 0.000592316 0.000551154 0.0324436 0.0301996 30 1829 18 6.64007e+06 226044 526063. 1820.29 0.74 0.0992022 0.0872946 22546 126617 -1 1528 18 657 892 43085 10882 2.72577 2.72577 -107.758 -2.72577 0 0 666494. 2306.21 0.19 0.05 0.12 -1 -1 0.19 0.0214613 0.0187589 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.10 vpr 62.84 MiB -1 -1 0.19 18512 1 0.03 -1 -1 30560 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1097 16468 5083 8989 2396 62.8 MiB 0.17 0.00 3.57727 -118.56 -3.57727 3.57727 0.70 0.000703714 0.000646135 0.0617675 0.0572228 28 2573 20 6.64007e+06 301392 500653. 1732.36 0.98 0.143132 0.127109 21970 115934 -1 2208 16 1479 2212 141906 32981 3.27783 3.27783 -126.079 -3.27783 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0235463 0.0206946 139 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.88 vpr 62.57 MiB -1 -1 0.19 18556 1 0.03 -1 -1 30476 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 23.9 MiB 0.17 885 11975 3159 7689 1127 62.6 MiB 0.12 0.00 4.00586 -111.845 -4.00586 4.00586 0.72 0.000716378 0.000666414 0.0422671 0.0393162 28 2264 23 6.64007e+06 389298 500653. 1732.36 0.83 0.129056 0.113888 21970 115934 -1 1950 20 1272 2187 137753 33280 3.99103 3.99103 -133.423 -3.99103 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0279643 0.0244136 134 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.67 vpr 61.93 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30472 -1 -1 21 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63416 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.4 MiB 0.12 775 13254 3691 7976 1587 61.9 MiB 0.10 0.00 2.74319 -79.3909 -2.74319 2.74319 0.70 0.000538936 0.000501845 0.042154 0.0392693 32 1622 17 6.64007e+06 263718 554710. 1919.41 0.76 0.103307 0.0915724 22834 132086 -1 1459 20 801 1368 90314 21000 2.73877 2.73877 -91.5404 -2.73877 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0214781 0.0186696 98 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.76 vpr 62.60 MiB -1 -1 0.19 18432 1 0.03 -1 -1 30496 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1006 9158 2333 6038 787 62.6 MiB 0.10 0.00 3.2847 -102.377 -3.2847 3.2847 0.71 0.000723196 0.000672341 0.0376455 0.035021 32 2316 22 6.64007e+06 276276 554710. 1919.41 0.83 0.123484 0.108582 22834 132086 -1 2038 17 1179 2119 137695 31800 3.14937 3.14937 -119.609 -3.14937 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0253278 0.0222302 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.95 vpr 62.64 MiB -1 -1 0.19 18292 1 0.03 -1 -1 30288 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1076 16215 5267 8185 2763 62.6 MiB 0.15 0.00 3.45707 -116.188 -3.45707 3.45707 0.71 0.000690735 0.000642113 0.0605934 0.056385 30 2454 23 6.64007e+06 288834 526063. 1820.29 0.84 0.143349 0.127369 22546 126617 -1 2042 19 1201 1756 105289 24030 3.19363 3.19363 -123.829 -3.19363 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0259863 0.0227427 138 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.68 vpr 62.57 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 24.1 MiB 0.12 733 9963 2112 7465 386 62.6 MiB 0.10 0.00 2.30864 -82.5904 -2.30864 2.30864 0.71 0.00065111 0.000603698 0.0327455 0.0304063 30 1699 17 6.64007e+06 364182 526063. 1820.29 0.76 0.104478 0.0917444 22546 126617 -1 1470 21 1045 1669 85041 21054 2.03391 2.03391 -92.9417 -2.03391 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0261315 0.022713 110 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.49 vpr 62.08 MiB -1 -1 0.18 18032 1 0.02 -1 -1 30300 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.5 MiB 0.06 632 10020 2791 6388 841 62.1 MiB 0.08 0.00 1.99153 -69.4618 -1.99153 1.99153 0.70 0.000497205 0.000462853 0.0321901 0.0299779 32 1329 21 6.64007e+06 188370 554710. 1919.41 0.75 0.0927302 0.0816051 22834 132086 -1 1265 20 662 955 80877 17890 2.16151 2.16151 -83.9727 -2.16151 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0193591 0.0168032 81 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.99 vpr 62.65 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30700 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 24.1 MiB 0.22 765 14483 4660 7000 2823 62.7 MiB 0.12 0.00 4.05707 -118.01 -4.05707 4.05707 0.71 0.000624159 0.000581205 0.0515935 0.0479823 32 2410 37 6.64007e+06 251160 554710. 1919.41 0.96 0.137927 0.12168 22834 132086 -1 1674 19 1181 1645 119939 30409 3.62763 3.62763 -129.23 -3.62763 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0231722 0.0202144 128 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.68 vpr 62.48 MiB -1 -1 0.19 18412 1 0.03 -1 -1 30676 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.07 953 9383 2164 6346 873 62.5 MiB 0.10 0.00 3.30836 -104.599 -3.30836 3.30836 0.70 0.00069529 0.00064723 0.0333549 0.0310049 32 2125 24 6.64007e+06 389298 554710. 1919.41 0.83 0.118529 0.104164 22834 132086 -1 1886 19 1351 2119 136110 32080 3.64763 3.64763 -124.441 -3.64763 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0261278 0.0228498 135 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.96 vpr 62.83 MiB -1 -1 0.20 18176 1 0.03 -1 -1 30460 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1202 12959 3246 7904 1809 62.8 MiB 0.13 0.00 3.65022 -114.817 -3.65022 3.65022 0.70 0.00073294 0.000682062 0.0498533 0.0463808 32 2651 20 6.64007e+06 313950 554710. 1919.41 0.83 0.133308 0.118004 22834 132086 -1 2363 20 1469 2381 180224 38346 3.85003 3.85003 -132.674 -3.85003 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.028493 0.024895 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.51 vpr 61.68 MiB -1 -1 0.17 17824 1 0.02 -1 -1 30696 -1 -1 18 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63160 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.14 386 10796 4374 4933 1489 61.7 MiB 0.07 0.00 1.89953 -52.9192 -1.89953 1.89953 0.70 0.000430601 0.000400256 0.0305332 0.0284218 30 1077 17 6.64007e+06 226044 526063. 1820.29 0.72 0.0787321 0.0695619 22546 126617 -1 735 14 488 662 35929 10005 1.95411 1.95411 -61.863 -1.95411 0 0 666494. 2306.21 0.19 0.03 0.11 -1 -1 0.19 0.0131006 0.0114936 77 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.62 vpr 62.30 MiB -1 -1 0.17 17720 1 0.03 -1 -1 30504 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63796 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.06 909 5107 1010 3648 449 62.3 MiB 0.06 0.00 4.21626 -107.088 -4.21626 4.21626 0.70 0.000614012 0.000571775 0.0189714 0.0177014 30 2016 19 6.64007e+06 263718 526063. 1820.29 0.78 0.0897603 0.0784181 22546 126617 -1 1742 18 930 1732 90507 21399 3.61942 3.61942 -115.688 -3.61942 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0233277 0.0204887 118 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.42 vpr 61.64 MiB -1 -1 0.17 17528 1 0.02 -1 -1 30400 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.05 458 10868 3761 4800 2307 61.6 MiB 0.07 0.00 2.08773 -59.5726 -2.08773 2.08773 0.70 0.000427617 0.000397473 0.0290023 0.0269704 30 1162 22 6.64007e+06 175812 526063. 1820.29 0.74 0.0798009 0.0704333 22546 126617 -1 898 17 459 512 31000 8121 2.14231 2.14231 -70.0528 -2.14231 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0147431 0.0128948 79 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.61 vpr 62.40 MiB -1 -1 0.19 18048 1 0.03 -1 -1 30224 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 967 10318 2612 7198 508 62.4 MiB 0.10 0.00 3.62727 -104.611 -3.62727 3.62727 0.70 0.000629953 0.000586533 0.0327839 0.0305235 32 2131 21 6.64007e+06 376740 554710. 1919.41 0.79 0.107151 0.0942898 22834 132086 -1 1911 21 1109 1870 132334 30279 3.61243 3.61243 -117.026 -3.61243 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0259034 0.0225487 123 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.62 vpr 62.32 MiB -1 -1 0.19 17892 1 0.03 -1 -1 30580 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.06 945 6791 1345 5207 239 62.3 MiB 0.07 0.00 3.0905 -88.1475 -3.0905 3.0905 0.70 0.00063754 0.00059302 0.0221846 0.0206574 28 2339 21 6.64007e+06 389298 500653. 1732.36 0.80 0.0972393 0.0850086 21970 115934 -1 1957 20 1240 2182 137958 33489 2.94816 2.94816 -105.677 -2.94816 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.02525 0.0220509 128 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.78 vpr 62.61 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30532 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 24.0 MiB 0.13 920 18043 6772 8097 3174 62.6 MiB 0.17 0.00 3.69347 -107.378 -3.69347 3.69347 0.70 0.000681352 0.000633161 0.0627633 0.0583673 28 2686 34 6.64007e+06 339066 500653. 1732.36 3.78 0.239579 0.209183 21970 115934 -1 2087 20 1424 2429 179422 41286 3.74383 3.74383 -127.274 -3.74383 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0270023 0.0236358 126 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.72 vpr 62.44 MiB -1 -1 0.18 18192 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.8 MiB 0.08 842 11948 3523 6824 1601 62.4 MiB 0.11 0.00 2.42079 -85.1807 -2.42079 2.42079 0.72 0.000605313 0.000563239 0.044085 0.0410045 32 1855 22 6.64007e+06 200928 554710. 1919.41 0.82 0.116157 0.102528 22834 132086 -1 1644 21 1015 1699 122870 28200 2.67377 2.67377 -104.49 -2.67377 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0246634 0.0214182 101 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.66 vpr 62.19 MiB -1 -1 0.18 17920 1 0.03 -1 -1 30652 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13105 3093 9300 712 62.2 MiB 0.11 0.00 2.64019 -81.3657 -2.64019 2.64019 0.71 0.000581486 0.000542216 0.043082 0.0401718 28 1675 18 6.64007e+06 288834 500653. 1732.36 0.85 0.108044 0.0958198 21970 115934 -1 1471 18 829 1352 100536 22801 2.57057 2.57057 -95.6285 -2.57057 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0205409 0.0179121 97 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.63 vpr 62.23 MiB -1 -1 0.17 18044 1 0.03 -1 -1 30364 -1 -1 23 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63720 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.6 MiB 0.06 708 11243 2847 7686 710 62.2 MiB 0.10 0.00 2.6437 -77.5759 -2.6437 2.6437 0.72 0.000559015 0.000519445 0.0367545 0.034167 32 1747 19 6.64007e+06 288834 554710. 1919.41 0.83 0.106924 0.0940957 22834 132086 -1 1479 19 934 1584 110387 25109 2.48917 2.48917 -90.0348 -2.48917 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.021166 0.0184138 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.60 vpr 62.21 MiB -1 -1 0.17 17720 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.6 MiB 0.06 822 6563 1459 4734 370 62.2 MiB 0.07 0.00 3.07321 -93.4545 -3.07321 3.07321 0.70 0.000567697 0.000529522 0.0225624 0.021043 26 2104 39 6.64007e+06 238602 477104. 1650.88 0.85 0.105069 0.0915827 21682 110474 -1 1819 22 1278 2116 146932 34200 2.98717 2.98717 -112.698 -2.98717 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0239212 0.0207781 110 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.62 vpr 62.21 MiB -1 -1 0.18 18084 1 0.03 -1 -1 30456 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63704 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.5 MiB 0.06 814 7326 1575 5462 289 62.2 MiB 0.07 0.00 2.8301 -85.1991 -2.8301 2.8301 0.71 0.000583582 0.000542175 0.0232387 0.021563 28 1770 20 6.64007e+06 339066 500653. 1732.36 0.83 0.0947556 0.0830998 21970 115934 -1 1607 19 928 1585 97719 22896 2.60137 2.60137 -98.6245 -2.60137 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0218555 0.0190093 103 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.68 vpr 62.53 MiB -1 -1 0.17 18220 1 0.03 -1 -1 30604 -1 -1 26 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 24.1 MiB 0.13 734 11799 3838 5828 2133 62.5 MiB 0.10 0.00 2.6377 -83.8914 -2.6377 2.6377 0.70 0.000596908 0.000555309 0.0387796 0.0360786 32 1657 19 6.64007e+06 326508 554710. 1919.41 0.79 0.107834 0.0949779 22834 132086 -1 1418 19 1035 1535 90866 22004 2.36297 2.36297 -88.8987 -2.36297 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0225574 0.0196179 105 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.87 vpr 62.58 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30712 -1 -1 38 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1147 14858 3644 9759 1455 62.6 MiB 0.15 0.00 3.51556 -103.209 -3.51556 3.51556 0.72 0.00073596 0.000684418 0.0485278 0.0451126 30 2520 21 6.64007e+06 477204 526063. 1820.29 0.85 0.13448 0.118916 22546 126617 -1 2067 18 1077 2052 113506 25618 3.58462 3.58462 -118.039 -3.58462 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0268882 0.0235682 151 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.88 vpr 62.82 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30496 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1097 12321 2991 8150 1180 62.8 MiB 0.12 0.00 3.13721 -109.154 -3.13721 3.13721 0.70 0.000746353 0.000692825 0.0418266 0.0388236 28 2328 26 6.64007e+06 464646 500653. 1732.36 0.88 0.1356 0.119251 21970 115934 -1 2061 23 1711 2847 189320 41762 2.96077 2.96077 -118.871 -2.96077 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0327586 0.0285232 147 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.88 vpr 62.63 MiB -1 -1 0.19 17920 1 0.03 -1 -1 30416 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 24.2 MiB 0.21 954 10584 2982 5750 1852 62.6 MiB 0.10 0.00 3.36107 -100.828 -3.36107 3.36107 0.71 0.000592485 0.000551712 0.0374074 0.034874 32 1939 23 6.64007e+06 238602 554710. 1919.41 0.81 0.109439 0.0965528 22834 132086 -1 1694 19 1063 1551 109365 24223 3.01063 3.01063 -110.105 -3.01063 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0224529 0.0195944 112 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.90 vpr 62.58 MiB -1 -1 0.21 18184 1 0.03 -1 -1 30832 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1043 15883 5026 8205 2652 62.6 MiB 0.16 0.00 3.41261 -107.064 -3.41261 3.41261 0.70 0.000718024 0.000666518 0.0612418 0.0569359 32 2473 23 6.64007e+06 313950 554710. 1919.41 0.84 0.147926 0.131211 22834 132086 -1 2117 21 1432 2628 167766 39585 2.92897 2.92897 -114.769 -2.92897 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0296105 0.0258527 138 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.14 vpr 62.64 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30456 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.5 MiB 0.36 1340 13547 3729 8310 1508 62.6 MiB 0.15 0.00 4.79918 -147.108 -4.79918 4.79918 0.70 0.000732635 0.000680913 0.0505576 0.0469825 32 3052 20 6.64007e+06 364182 554710. 1919.41 0.89 0.135604 0.120071 22834 132086 -1 2606 22 2256 3398 240060 52454 5.12874 5.12874 -174.127 -5.12874 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0312256 0.0272448 172 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.12 vpr 63.05 MiB -1 -1 0.21 18296 1 0.03 -1 -1 30744 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1177 15768 4837 9550 1381 63.1 MiB 0.16 0.00 4.00182 -123.782 -4.00182 4.00182 0.70 0.000738372 0.00068634 0.0604722 0.0561451 32 2835 23 6.64007e+06 339066 554710. 1919.41 0.87 0.149356 0.132426 22834 132086 -1 2404 23 1824 2792 202941 44977 4.44028 4.44028 -150.253 -4.44028 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0326097 0.0284396 164 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.99 vpr 62.59 MiB -1 -1 0.20 18312 1 0.03 -1 -1 30608 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1019 16495 5182 8759 2554 62.6 MiB 0.16 0.00 3.70647 -110.255 -3.70647 3.70647 0.71 0.000704906 0.000655473 0.0566327 0.0526477 32 2571 29 6.64007e+06 389298 554710. 1919.41 0.91 0.146886 0.129809 22834 132086 -1 2078 19 1173 2113 144128 31801 3.21963 3.21963 -119.176 -3.21963 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0266892 0.0233548 135 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.97 vpr 62.42 MiB -1 -1 0.18 18196 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1049 9303 2544 6213 546 62.4 MiB 0.09 0.00 3.40636 -99.2596 -3.40636 3.40636 0.69 0.000617069 0.000574336 0.0321042 0.0299096 26 2646 26 6.64007e+06 288834 477104. 1650.88 1.05 0.11009 0.0966958 21682 110474 -1 2217 22 1475 2187 157188 36377 3.95303 3.95303 -125.826 -3.95303 0 0 585099. 2024.56 0.18 0.07 0.10 -1 -1 0.18 0.0264759 0.0230691 119 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.16 vpr 62.95 MiB -1 -1 0.20 18560 1 0.04 -1 -1 30704 -1 -1 40 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.7 MiB 0.19 1280 21332 6196 12657 2479 62.9 MiB 0.21 0.00 4.15173 -137.021 -4.15173 4.15173 0.74 0.000862086 0.000800518 0.0785837 0.0730031 28 3057 20 6.64007e+06 502320 500653. 1732.36 0.92 0.178488 0.158685 21970 115934 -1 2667 21 1593 2377 165877 36687 4.60949 4.60949 -163.556 -4.60949 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0350087 0.0304789 174 84 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.65 vpr 62.08 MiB -1 -1 0.18 18056 1 0.03 -1 -1 30416 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.5 MiB 0.09 787 13992 4358 7332 2302 62.1 MiB 0.12 0.00 3.1015 -86.2321 -3.1015 3.1015 0.70 0.000662757 0.000615466 0.0462712 0.0430907 32 1790 19 6.64007e+06 263718 554710. 1919.41 0.78 0.111281 0.0986401 22834 132086 -1 1541 19 991 1684 113854 26310 2.96117 2.96117 -102.499 -2.96117 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0214757 0.0186961 101 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.93 vpr 62.75 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30376 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1174 11593 2951 7330 1312 62.7 MiB 0.12 0.00 4.03882 -123.607 -4.03882 4.03882 0.70 0.000689062 0.000641381 0.0432186 0.0402563 32 2708 24 6.64007e+06 313950 554710. 1919.41 0.86 0.127032 0.112124 22834 132086 -1 2215 19 1340 1937 129728 29572 4.45729 4.45729 -144.943 -4.45729 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0263585 0.0231266 144 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 5.41 vpr 62.64 MiB -1 -1 0.18 18496 1 0.03 -1 -1 30524 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.0 MiB 0.13 1040 9865 2231 7045 589 62.6 MiB 0.10 0.00 3.2959 -102.587 -3.2959 3.2959 0.70 0.0006946 0.000646331 0.0333637 0.0310409 28 2721 21 6.64007e+06 414414 500653. 1732.36 2.53 0.197864 0.171239 21970 115934 -1 2186 18 1198 2146 160730 34301 3.03517 3.03517 -112.387 -3.03517 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0252367 0.0220831 131 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.70 vpr 62.43 MiB -1 -1 0.18 17720 1 0.03 -1 -1 30220 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.9 MiB 0.06 921 13153 4725 6202 2226 62.4 MiB 0.12 0.00 3.34016 -101.938 -3.34016 3.34016 0.70 0.000626003 0.000582528 0.0443759 0.0412986 32 2227 20 6.64007e+06 301392 554710. 1919.41 0.83 0.117249 0.10377 22834 132086 -1 1901 18 1105 2045 141704 31362 3.72063 3.72063 -122.716 -3.72063 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0230983 0.0202335 123 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.41 vpr 62.70 MiB -1 -1 0.20 18360 1 0.03 -1 -1 30536 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1100 12568 3787 7275 1506 62.7 MiB 0.13 0.00 3.79838 -116.192 -3.79838 3.79838 0.70 0.000709634 0.000659302 0.0476676 0.044366 26 2795 40 6.64007e+06 301392 477104. 1650.88 1.35 0.14993 0.131921 21682 110474 -1 2228 20 1134 1561 107755 25610 3.50943 3.50943 -125.896 -3.50943 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0276637 0.0242087 138 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.90 vpr 62.64 MiB -1 -1 0.20 18332 1 0.03 -1 -1 30480 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1042 17835 5101 9890 2844 62.6 MiB 0.16 0.00 2.9151 -99.8849 -2.9151 2.9151 0.71 0.00071083 0.000660934 0.0607433 0.0564463 32 2419 22 6.64007e+06 401856 554710. 1919.41 0.85 0.144951 0.128585 22834 132086 -1 2053 20 1177 2067 131252 29887 2.97297 2.97297 -113.656 -2.97297 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0278479 0.0243108 133 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.86 vpr 62.84 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30460 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1059 13261 3502 8387 1372 62.8 MiB 0.13 0.00 3.83767 -116.965 -3.83767 3.83767 0.70 0.000744028 0.000691686 0.0444886 0.0413263 28 2560 23 6.64007e+06 464646 500653. 1732.36 0.85 0.13384 0.117999 21970 115934 -1 2155 18 1105 1718 108231 25109 3.36183 3.36183 -123.877 -3.36183 0 0 612192. 2118.31 0.18 0.07 0.13 -1 -1 0.18 0.0266362 0.0233087 145 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.64 vpr 62.34 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30520 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.07 956 14793 4143 9325 1325 62.3 MiB 0.13 0.00 3.36216 -101.555 -3.36216 3.36216 0.70 0.000645114 0.000600713 0.0471848 0.043886 28 2123 20 6.64007e+06 364182 500653. 1732.36 0.78 0.121239 0.107331 21970 115934 -1 1888 20 1138 1836 107984 25229 3.57843 3.57843 -119.381 -3.57843 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0252502 0.0220391 122 21 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.77 vpr 62.48 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30740 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1128 6523 1329 4737 457 62.5 MiB 0.08 0.00 4.08226 -117.341 -4.08226 4.08226 0.70 0.00064076 0.000594408 0.0240702 0.0223697 28 2490 22 6.64007e+06 301392 500653. 1732.36 0.80 0.102531 0.0896391 21970 115934 -1 2231 21 1436 2158 145923 33241 3.79983 3.79983 -133.374 -3.79983 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0270273 0.0235946 133 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.09 vpr 62.91 MiB -1 -1 0.20 18212 1 0.03 -1 -1 30620 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1098 9058 2195 6134 729 62.9 MiB 0.10 0.00 4.03253 -119.13 -4.03253 4.03253 0.70 0.000739201 0.000687188 0.0360601 0.0335413 28 2868 20 6.64007e+06 313950 500653. 1732.36 1.02 0.120109 0.105589 21970 115934 -1 2390 20 1563 2533 166822 39018 3.90129 3.90129 -138.369 -3.90129 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0286946 0.0250732 148 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.87 vpr 62.69 MiB -1 -1 0.20 18360 1 0.03 -1 -1 30448 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1124 14072 4385 7271 2416 62.7 MiB 0.14 0.00 3.49656 -112.385 -3.49656 3.49656 0.70 0.000728283 0.000675056 0.0575356 0.0534361 32 2523 18 6.64007e+06 276276 554710. 1919.41 0.85 0.141042 0.125136 22834 132086 -1 2240 20 1473 2635 179734 39572 3.55643 3.55643 -128.662 -3.55643 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0292985 0.0255386 136 74 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.60 vpr 62.06 MiB -1 -1 0.17 18084 1 0.03 -1 -1 30252 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.5 MiB 0.06 774 16078 5363 7580 3135 62.1 MiB 0.12 0.00 2.7229 -81.7933 -2.7229 2.7229 0.71 0.000557705 0.000519247 0.0478462 0.0445646 30 1653 22 6.64007e+06 301392 526063. 1820.29 0.81 0.113892 0.100935 22546 126617 -1 1398 20 767 1247 77986 18010 2.56437 2.56437 -92.1938 -2.56437 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0218752 0.0190467 97 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.80 vpr 62.57 MiB -1 -1 0.18 18160 1 0.03 -1 -1 30616 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 23.9 MiB 0.21 922 8780 2034 6321 425 62.6 MiB 0.10 0.00 3.21396 -111.632 -3.21396 3.21396 0.70 0.000674474 0.000627484 0.0337871 0.0314524 30 2300 21 6.64007e+06 276276 526063. 1820.29 0.82 0.112635 0.0989859 22546 126617 -1 1891 20 1217 1802 122846 27861 3.17163 3.17163 -128.3 -3.17163 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0262856 0.0229209 127 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.07 vpr 62.64 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30540 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1444 15213 4558 9260 1395 62.6 MiB 0.16 0.00 4.36321 -134.472 -4.36321 4.36321 0.71 0.000764529 0.000710524 0.0585666 0.0544505 32 3276 24 6.64007e+06 364182 554710. 1919.41 0.90 0.150858 0.133813 22834 132086 -1 2747 23 2030 3247 220404 49056 4.74768 4.74768 -156.13 -4.74768 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0336636 0.0294011 169 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.69 vpr 62.66 MiB -1 -1 0.19 18280 1 0.03 -1 -1 30728 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 970 11046 2705 7294 1047 62.7 MiB 0.11 0.00 3.50652 -106.961 -3.50652 3.50652 0.70 0.000691663 0.00064343 0.0372806 0.0346752 28 2095 19 6.64007e+06 401856 500653. 1732.36 0.79 0.116167 0.102353 21970 115934 -1 1884 21 1169 1807 106194 25722 3.00517 3.00517 -117.13 -3.00517 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0282128 0.0246072 133 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.60 vpr 62.11 MiB -1 -1 0.19 18144 1 0.03 -1 -1 30584 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.7 MiB 0.06 709 10423 2778 7222 423 62.1 MiB 0.10 0.00 2.7749 -85.4094 -2.7749 2.7749 0.70 0.0005907 0.000550529 0.0342096 0.0318378 26 1883 23 6.64007e+06 326508 477104. 1650.88 0.81 0.105771 0.0929104 21682 110474 -1 1501 16 813 1336 79167 19651 2.84377 2.84377 -102.971 -2.84377 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0196001 0.0171369 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.15 vpr 62.82 MiB -1 -1 0.21 18552 1 0.03 -1 -1 30532 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1341 15391 4315 9004 2072 62.8 MiB 0.17 0.00 5.2717 -157.472 -5.2717 5.2717 0.70 0.000836934 0.000778365 0.0657862 0.0611786 32 3006 21 6.64007e+06 339066 554710. 1919.41 0.87 0.162757 0.14437 22834 132086 -1 2638 20 2014 2867 201370 44526 5.00034 5.00034 -170.229 -5.00034 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0329553 0.0288106 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.80 vpr 62.48 MiB -1 -1 0.19 18472 1 0.03 -1 -1 30748 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 23.9 MiB 0.14 940 10753 2281 7717 755 62.5 MiB 0.11 0.00 3.68047 -113.183 -3.68047 3.68047 0.70 0.000686775 0.000638494 0.0358038 0.0333436 32 2111 22 6.64007e+06 414414 554710. 1919.41 0.83 0.117204 0.103203 22834 132086 -1 1858 21 1407 2151 136307 32406 3.67883 3.67883 -128.222 -3.67883 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0278659 0.0243129 130 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.88 vpr 62.00 MiB -1 -1 0.16 17856 1 0.03 -1 -1 30524 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.5 MiB 0.07 799 12183 3544 6697 1942 62.0 MiB 0.10 0.00 2.8441 -84.2168 -2.8441 2.8441 0.73 0.000534899 0.000496707 0.0357115 0.0331202 26 2154 22 6.64007e+06 288834 477104. 1650.88 1.01 0.0994086 0.0875319 21682 110474 -1 1739 19 953 1576 120634 27184 3.25857 3.25857 -106.784 -3.25857 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0203434 0.0177422 100 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.78 vpr 62.84 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30448 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.4 MiB 0.11 1240 16523 4907 9980 1636 62.8 MiB 0.15 0.00 4.79472 -119.275 -4.79472 4.79472 0.70 0.000710476 0.000661005 0.0543258 0.0505203 30 2484 21 6.64007e+06 426972 526063. 1820.29 0.83 0.139671 0.124002 22546 126617 -1 2150 18 970 1915 106935 23549 4.41608 4.41608 -134.333 -4.41608 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0255043 0.0223575 139 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.55 vpr 61.98 MiB -1 -1 0.18 17952 1 0.03 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63472 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.4 MiB 0.06 842 9417 2371 6149 897 62.0 MiB 0.08 0.00 2.8171 -87.5396 -2.8171 2.8171 0.71 0.000555508 0.000517504 0.0303987 0.0283379 30 1777 19 6.64007e+06 251160 526063. 1820.29 0.76 0.0940768 0.0827952 22546 126617 -1 1622 19 829 1492 78208 18947 2.90297 2.90297 -106.383 -2.90297 0 0 666494. 2306.21 0.20 0.05 0.12 -1 -1 0.20 0.0212876 0.0185229 104 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.71 vpr 62.30 MiB -1 -1 0.19 18092 1 0.03 -1 -1 30560 -1 -1 33 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63792 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.9 MiB 0.10 873 16727 5033 9118 2576 62.3 MiB 0.13 0.00 3.32241 -94.3365 -3.32241 3.32241 0.70 0.000591603 0.000550538 0.0477984 0.0445138 26 2008 20 6.64007e+06 414414 477104. 1650.88 0.94 0.115718 0.102471 21682 110474 -1 1737 18 871 1602 109576 24328 2.96077 2.96077 -107.436 -2.96077 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0210595 0.0183413 105 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.95 vpr 62.66 MiB -1 -1 0.19 18572 1 0.04 -1 -1 30564 -1 -1 26 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1146 14487 4222 8798 1467 62.7 MiB 0.14 0.00 3.72767 -113.402 -3.72767 3.72767 0.70 0.000691583 0.000643026 0.0546385 0.0508099 32 2576 20 6.64007e+06 326508 554710. 1919.41 0.82 0.135345 0.119995 22834 132086 -1 2238 16 1146 1743 115416 25946 3.60562 3.60562 -124.886 -3.60562 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0235261 0.0206728 139 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.83 vpr 62.56 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30720 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.0 MiB 0.12 846 5353 1008 3834 511 62.6 MiB 0.06 0.00 3.64276 -108.786 -3.64276 3.64276 0.70 0.000708461 0.000659014 0.0218536 0.0203643 28 2252 24 6.64007e+06 301392 500653. 1732.36 0.97 0.108073 0.0942831 21970 115934 -1 1832 21 1438 2312 143294 35925 3.69283 3.69283 -130.308 -3.69283 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0290049 0.0252263 130 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.90 vpr 62.50 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30368 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1095 15617 4548 8970 2099 62.5 MiB 0.15 0.00 3.79167 -119.015 -3.79167 3.79167 0.70 0.000695996 0.000643815 0.055939 0.0517703 28 2471 20 6.64007e+06 351624 500653. 1732.36 0.90 0.139471 0.123689 21970 115934 -1 2182 17 1010 1735 113705 25838 3.61243 3.61243 -133.636 -3.61243 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.024398 0.0213834 133 48 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.81 vpr 62.24 MiB -1 -1 0.17 18196 1 0.03 -1 -1 30704 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63736 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.8 MiB 0.23 819 13381 4116 7846 1419 62.2 MiB 0.12 0.00 3.75438 -106.266 -3.75438 3.75438 0.73 0.00059271 0.000551207 0.0472851 0.043986 30 1853 20 6.64007e+06 213486 526063. 1820.29 0.78 0.116214 0.103046 22546 126617 -1 1551 19 676 957 57447 14184 3.27802 3.27802 -113.545 -3.27802 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0225906 0.0197582 105 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.84 vpr 62.41 MiB -1 -1 0.21 18316 1 0.03 -1 -1 30624 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.9 MiB 0.22 942 13432 3940 8131 1361 62.4 MiB 0.12 0.00 3.24616 -106.665 -3.24616 3.24616 0.70 0.000637314 0.00059243 0.0503742 0.0468456 30 2036 20 6.64007e+06 238602 526063. 1820.29 0.79 0.124837 0.110509 22546 126617 -1 1856 19 1033 1531 89508 20689 3.30403 3.30403 -120.206 -3.30403 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0239343 0.0208801 113 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.66 vpr 62.46 MiB -1 -1 0.20 18352 1 0.03 -1 -1 30620 -1 -1 33 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.9 MiB 0.12 930 13055 3042 8031 1982 62.5 MiB 0.11 0.00 2.9203 -82.6225 -2.9203 2.9203 0.70 0.000658741 0.000612483 0.0420427 0.0391169 28 2127 21 6.64007e+06 414414 500653. 1732.36 0.78 0.119192 0.105087 21970 115934 -1 1827 20 1021 1837 127955 29765 2.76177 2.76177 -96.6194 -2.76177 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.025936 0.0226076 123 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.65 vpr 62.27 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30636 -1 -1 35 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.8 MiB 0.09 930 11111 2883 7214 1014 62.3 MiB 0.09 0.00 3.47456 -87.8898 -3.47456 3.47456 0.70 0.000590303 0.000549312 0.0324349 0.0301714 26 2191 21 6.64007e+06 439530 477104. 1650.88 0.79 0.102148 0.0897669 21682 110474 -1 1851 21 1027 2029 144785 31224 3.37322 3.37322 -104.622 -3.37322 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0239969 0.0208305 115 20 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.75 vpr 62.38 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30648 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.14 748 14012 4480 7511 2021 62.4 MiB 0.13 0.00 3.29461 -93.3105 -3.29461 3.29461 0.72 0.000634461 0.000590277 0.0538288 0.0500924 30 1687 19 6.64007e+06 226044 526063. 1820.29 0.79 0.126313 0.112078 22546 126617 -1 1377 23 1181 2117 106284 25312 2.84777 2.84777 -101.978 -2.84777 0 0 666494. 2306.21 0.21 0.07 0.11 -1 -1 0.21 0.0277162 0.0240362 108 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.90 vpr 62.66 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 24.1 MiB 0.21 984 15151 4305 8837 2009 62.7 MiB 0.14 0.00 3.14796 -108.448 -3.14796 3.14796 0.70 0.00066562 0.000618483 0.0562206 0.0522889 32 2283 19 6.64007e+06 263718 554710. 1919.41 0.83 0.13161 0.116881 22834 132086 -1 1886 19 1202 1741 121701 27397 3.06563 3.06563 -120.144 -3.06563 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0288892 0.0255887 121 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.80 vpr 62.44 MiB -1 -1 0.18 17936 1 0.03 -1 -1 30540 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 933 10679 2838 6798 1043 62.4 MiB 0.11 0.00 3.70647 -105.802 -3.70647 3.70647 0.73 0.000641863 0.000597583 0.0337311 0.0314223 28 2342 26 6.64007e+06 401856 500653. 1732.36 0.90 0.115504 0.101498 21970 115934 -1 2028 20 1242 2173 134777 31083 3.82183 3.82183 -123.704 -3.82183 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0251496 0.0220034 127 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.96 vpr 62.81 MiB -1 -1 0.16 18416 1 0.03 -1 -1 30672 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1074 15688 5456 7507 2725 62.8 MiB 0.16 0.00 4.22773 -133.948 -4.22773 4.22773 0.71 0.000722631 0.00067319 0.0595535 0.0553789 32 2847 32 6.64007e+06 301392 554710. 1919.41 0.91 0.15736 0.139334 22834 132086 -1 2400 21 1605 2335 165607 37025 4.44508 4.44508 -154.243 -4.44508 0 0 701300. 2426.64 0.19 0.04 0.08 -1 -1 0.19 0.0161841 0.0144201 146 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.92 vpr 62.84 MiB -1 -1 0.17 18520 1 0.03 -1 -1 30628 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1077 18323 5205 10853 2265 62.8 MiB 0.17 0.00 4.17072 -121.395 -4.17072 4.17072 0.70 0.0007445 0.000691833 0.063165 0.0586835 32 2519 23 6.64007e+06 426972 554710. 1919.41 0.85 0.152486 0.135332 22834 132086 -1 2214 21 1267 2288 146767 34307 3.91528 3.91528 -135.811 -3.91528 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0301936 0.0263864 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.13 vpr 62.75 MiB -1 -1 0.18 18520 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1143 15141 4246 9025 1870 62.7 MiB 0.14 0.00 3.49607 -115.357 -3.49607 3.49607 0.72 0.000751513 0.000698006 0.0509272 0.0472992 26 3024 28 6.64007e+06 464646 477104. 1650.88 1.11 0.147573 0.130255 21682 110474 -1 2494 19 1575 2804 202580 43755 3.70563 3.70563 -137.288 -3.70563 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282727 0.0247258 140 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.67 vpr 62.25 MiB -1 -1 0.16 18216 1 0.03 -1 -1 30288 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.7 MiB 0.11 823 11631 3600 5891 2140 62.2 MiB 0.10 0.00 3.00301 -92.1464 -3.00301 3.00301 0.71 0.000585963 0.000545557 0.040499 0.0377355 32 1807 21 6.64007e+06 238602 554710. 1919.41 0.80 0.10842 0.0957643 22834 132086 -1 1624 22 1157 2078 134487 30997 2.82377 2.82377 -102.31 -2.82377 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0245665 0.0213525 104 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.48 vpr 62.67 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30692 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 24.0 MiB 0.15 982 12361 3297 6808 2256 62.7 MiB 0.07 0.00 3.80967 -114.546 -3.80967 3.80967 0.58 0.000327905 0.000302264 0.0236933 0.0218847 30 2026 19 6.64007e+06 288834 526063. 1820.29 0.70 0.0951586 0.0832738 22546 126617 -1 1820 17 1171 1850 94535 22150 3.52423 3.52423 -129.032 -3.52423 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0253849 0.0222673 138 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.25 vpr 62.48 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30696 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1122 10341 2573 7020 748 62.5 MiB 0.11 0.00 4.18044 -127.397 -4.18044 4.18044 0.81 0.000693575 0.000644901 0.0382171 0.0355694 28 2745 25 6.64007e+06 326508 500653. 1732.36 1.10 0.12423 0.109389 21970 115934 -1 2353 18 1294 2080 161241 35621 3.96429 3.96429 -141.583 -3.96429 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0252466 0.0221695 140 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.91 vpr 62.59 MiB -1 -1 0.20 18188 1 0.03 -1 -1 30612 -1 -1 30 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1161 15003 4116 8173 2714 62.6 MiB 0.14 0.00 4.34441 -128.021 -4.34441 4.34441 0.70 0.000681 0.000633041 0.0511468 0.0475848 32 2408 20 6.64007e+06 376740 554710. 1919.41 0.81 0.130357 0.11557 22834 132086 -1 2108 22 1395 2153 134952 32344 4.41928 4.41928 -144.305 -4.41928 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0293337 0.0256111 148 43 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.87 vpr 62.71 MiB -1 -1 0.21 18316 1 0.03 -1 -1 30644 -1 -1 33 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1044 11759 2989 7383 1387 62.7 MiB 0.11 0.00 3.42407 -106.623 -3.42407 3.42407 0.71 0.000733445 0.000682506 0.042228 0.0393006 32 2176 20 6.64007e+06 414414 554710. 1919.41 0.80 0.125967 0.111157 22834 132086 -1 1953 16 949 1586 98246 22085 3.18063 3.18063 -120.607 -3.18063 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0239353 0.0210026 135 78 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.31 vpr 62.64 MiB -1 -1 0.19 18332 1 0.03 -1 -1 30504 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 24.0 MiB 0.13 1104 15709 4957 8968 1784 62.6 MiB 0.20 0.00 3.97286 -117.882 -3.97286 3.97286 0.70 0.000725003 0.000668366 0.0715299 0.0665123 26 3100 31 6.64007e+06 263718 477104. 1650.88 1.33 0.168085 0.149265 21682 110474 -1 2475 19 1442 2519 206295 43632 4.07003 4.07003 -142.096 -4.07003 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0271882 0.0237456 134 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.60 vpr 62.74 MiB -1 -1 0.19 18168 1 0.03 -1 -1 30676 -1 -1 31 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.0 MiB 0.16 959 8786 2264 5705 817 62.7 MiB 0.09 0.00 4.04306 -115.296 -4.04306 4.04306 0.62 0.000715243 0.000664582 0.0328796 0.0305807 30 2019 22 6.64007e+06 389298 526063. 1820.29 0.78 0.117642 0.103195 22546 126617 -1 1748 18 967 1582 78889 19703 3.54722 3.54722 -124.416 -3.54722 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0259811 0.0227085 132 79 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.57 vpr 62.22 MiB -1 -1 0.17 17936 1 0.03 -1 -1 30608 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63712 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.7 MiB 0.05 808 7853 2278 5197 378 62.2 MiB 0.08 0.00 3.02901 -94.3044 -3.02901 3.02901 0.70 0.000558998 0.000521109 0.0276419 0.0257884 30 1674 21 6.64007e+06 188370 526063. 1820.29 0.75 0.0926711 0.0813897 22546 126617 -1 1530 18 690 1017 64350 14752 2.93797 2.93797 -105.412 -2.93797 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0342382 0.0300395 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.93 vpr 62.61 MiB -1 -1 0.19 18508 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1041 11265 2953 7098 1214 62.6 MiB 0.12 0.00 3.57927 -111.63 -3.57927 3.57927 0.70 0.000730992 0.000679857 0.0401541 0.0373147 32 2322 20 6.64007e+06 401856 554710. 1919.41 0.84 0.123717 0.108967 22834 132086 -1 1950 20 1342 2252 139328 33093 3.74382 3.74382 -131.323 -3.74382 0 0 701300. 2426.64 0.21 0.09 0.12 -1 -1 0.21 0.0347317 0.0308826 132 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.97 vpr 62.93 MiB -1 -1 0.18 18456 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1085 10481 2712 6564 1205 62.9 MiB 0.12 0.00 3.83167 -122.912 -3.83167 3.83167 0.70 0.000761342 0.000707371 0.0448174 0.0416678 32 2598 23 6.64007e+06 276276 554710. 1919.41 0.90 0.136018 0.119962 22834 132086 -1 2260 24 1911 3000 241781 51248 3.80963 3.80963 -141.623 -3.80963 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0343768 0.0299146 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.39 vpr 62.29 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30220 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.8 MiB 0.23 849 10515 2434 7374 707 62.3 MiB 0.10 0.00 3.43261 -99.0662 -3.43261 3.43261 0.73 0.000590107 0.000549389 0.0355442 0.0330755 26 2360 28 6.64007e+06 251160 477104. 1650.88 1.40 0.112316 0.0988474 21682 110474 -1 1749 19 1006 1322 88192 22119 3.07697 3.07697 -110.954 -3.07697 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0310312 0.0269186 109 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.47 vpr 62.09 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30476 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63584 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.5 MiB 0.03 725 6855 1556 4919 380 62.1 MiB 0.07 0.00 2.90881 -86.0934 -2.90881 2.90881 0.69 0.000556733 0.000518592 0.0224947 0.0209134 26 1989 22 6.64007e+06 263718 477104. 1650.88 0.81 0.0881701 0.0770011 21682 110474 -1 1685 22 1268 2098 140974 33056 2.86497 2.86497 -104.338 -2.86497 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0234769 0.0203869 106 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.23 vpr 62.81 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30780 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1077 15366 4010 9290 2066 62.8 MiB 0.15 0.00 4.06553 -131.449 -4.06553 4.06553 0.70 0.000701235 0.000652326 0.0560703 0.0521931 26 2840 22 6.64007e+06 326508 477104. 1650.88 1.19 0.140269 0.124403 21682 110474 -1 2302 22 1636 2127 140901 33727 4.49229 4.49229 -155.193 -4.49229 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0295627 0.0258034 144 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.99 vpr 62.79 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30456 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1017 14793 4169 8845 1779 62.8 MiB 0.14 0.00 4.05281 -120 -4.05281 4.05281 0.70 0.000726163 0.000676133 0.0524546 0.0488242 32 2710 26 6.64007e+06 364182 554710. 1919.41 0.87 0.140767 0.124574 22834 132086 -1 2263 23 1615 2506 170808 39051 4.33109 4.33109 -145.798 -4.33109 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0307079 0.0267258 155 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.04 vpr 62.95 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30404 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1196 12860 3267 8782 811 63.0 MiB 0.13 0.00 4.37712 -120.717 -4.37712 4.37712 0.70 0.000722306 0.000667618 0.0423756 0.039391 26 3051 28 6.64007e+06 452088 477104. 1650.88 1.16 0.134553 0.118501 21682 110474 -1 2491 19 1421 2569 188028 46627 4.70368 4.70368 -150.964 -4.70368 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0277291 0.0243278 153 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.77 vpr 62.28 MiB -1 -1 0.19 18440 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 23.8 MiB 0.13 753 9253 2090 6561 602 62.3 MiB 0.09 0.00 2.8471 -83.1749 -2.8471 2.8471 0.71 0.000639245 0.000594395 0.0299764 0.0278739 26 2034 22 6.64007e+06 401856 477104. 1650.88 0.91 0.105909 0.0928383 21682 110474 -1 1772 20 1329 2319 142310 35070 2.88277 2.88277 -102.079 -2.88277 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0250921 0.021831 121 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.52 vpr 61.98 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30840 -1 -1 21 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63468 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.4 MiB 0.06 723 12292 3852 6881 1559 62.0 MiB 0.10 0.00 2.8251 -81.6115 -2.8251 2.8251 0.70 0.000553293 0.000515162 0.0410147 0.0382244 26 1692 20 6.64007e+06 263718 477104. 1650.88 0.77 0.104257 0.0921443 21682 110474 -1 1499 21 1013 1493 106511 25324 2.75777 2.75777 -96.2536 -2.75777 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0223484 0.0193798 97 26 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.24 vpr 62.75 MiB -1 -1 0.20 18568 1 0.03 -1 -1 30556 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.6 MiB 0.22 1339 10944 3100 7197 647 62.7 MiB 0.13 0.00 3.53756 -117.737 -3.53756 3.53756 0.71 0.000814009 0.000756529 0.0489775 0.0455225 26 3736 29 6.64007e+06 326508 477104. 1650.88 2.10 0.156968 0.138171 21682 110474 -1 2957 23 2175 3499 242313 54421 3.80002 3.80002 -138.264 -3.80002 0 0 585099. 2024.56 0.17 0.10 0.10 -1 -1 0.17 0.0354576 0.0309363 170 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.19 vpr 62.91 MiB -1 -1 0.20 18188 1 0.03 -1 -1 30432 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1099 15584 5902 7667 2015 62.9 MiB 0.15 0.00 4.45361 -132.679 -4.45361 4.45361 0.70 0.000708171 0.000658168 0.0610499 0.0567882 28 2919 22 6.64007e+06 288834 500653. 1732.36 1.05 0.148612 0.13178 21970 115934 -1 2331 20 1396 2187 172413 38501 4.61968 4.61968 -152.989 -4.61968 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0281592 0.0246088 152 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.15 vpr 62.50 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30564 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 24.0 MiB 0.30 943 14483 5421 7069 1993 62.5 MiB 0.14 0.00 3.74495 -109.733 -3.74495 3.74495 0.70 0.000659433 0.000613389 0.0556365 0.0515844 28 2349 18 6.64007e+06 238602 500653. 1732.36 1.07 0.134679 0.11971 21970 115934 -1 2013 17 1012 1518 107855 24456 3.59842 3.59842 -128.608 -3.59842 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.023022 0.0201642 128 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 6.58 vpr 62.51 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30688 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.9 MiB 0.07 899 18838 5683 10673 2482 62.5 MiB 0.17 0.00 4.00578 -103.806 -4.00578 4.00578 0.70 0.000666133 0.000619736 0.0614004 0.0570793 26 2889 46 6.64007e+06 376740 477104. 1650.88 3.61 0.247421 0.215554 21682 110474 -1 1970 22 1193 2100 163493 41189 4.08822 4.08822 -129.297 -4.08822 0 0 585099. 2024.56 0.17 0.08 0.11 -1 -1 0.17 0.02854 0.0248471 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.93 vpr 62.67 MiB -1 -1 0.21 18416 1 0.03 -1 -1 30372 -1 -1 34 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1114 12529 3161 8274 1094 62.7 MiB 0.12 0.00 4.08226 -117.397 -4.08226 4.08226 0.71 0.000733618 0.000682237 0.043944 0.0408842 26 2532 21 6.64007e+06 426972 477104. 1650.88 0.94 0.130631 0.115331 21682 110474 -1 2235 16 1118 1934 130436 29133 3.88102 3.88102 -129.182 -3.88102 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0245922 0.0215849 145 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.72 vpr 62.44 MiB -1 -1 0.20 18236 1 0.03 -1 -1 30716 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.9 MiB 0.13 998 8913 2184 6122 607 62.4 MiB 0.09 0.00 3.0025 -94.8947 -3.0025 3.0025 0.70 0.000662949 0.000615862 0.0299569 0.0278651 32 2201 23 6.64007e+06 389298 554710. 1919.41 0.81 0.108358 0.0949685 22834 132086 -1 1954 17 952 1724 120929 26780 2.80577 2.80577 -104.138 -2.80577 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0228518 0.0199887 124 46 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.01 vpr 62.91 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30560 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1257 15533 4914 8349 2270 62.9 MiB 0.16 0.00 4.01133 -130.52 -4.01133 4.01133 0.72 0.000698206 0.000648383 0.0573046 0.0532217 32 2955 20 6.64007e+06 313950 554710. 1919.41 0.87 0.139171 0.123454 22834 132086 -1 2486 20 1732 2736 187233 43406 4.00829 4.00829 -146.8 -4.00829 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0287987 0.0252668 148 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.76 vpr 62.88 MiB -1 -1 0.09 18220 1 0.03 -1 -1 30352 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1083 15412 3866 9802 1744 62.9 MiB 0.15 0.00 3.83767 -120.784 -3.83767 3.83767 0.70 0.000762419 0.000709248 0.0525909 0.0488634 26 2651 22 6.64007e+06 452088 477104. 1650.88 0.84 0.14081 0.124553 21682 110474 -1 2264 20 1315 2052 137538 32083 3.39903 3.39903 -129.586 -3.39903 0 0 585099. 2024.56 0.17 0.08 0.11 -1 -1 0.17 0.0295067 0.0256957 144 59 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.65 vpr 62.10 MiB -1 -1 0.19 18036 1 0.03 -1 -1 30488 -1 -1 17 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.6 MiB 0.08 798 8212 2604 3998 1610 62.1 MiB 0.07 0.00 2.88681 -90.1499 -2.88681 2.88681 0.70 0.000560428 0.000520353 0.0302309 0.0281678 32 1502 22 6.64007e+06 213486 554710. 1919.41 0.80 0.103194 0.0901706 22834 132086 -1 1436 21 1031 1527 128424 28821 2.82797 2.82797 -101.345 -2.82797 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0232473 0.0201825 91 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.84 vpr 62.41 MiB -1 -1 0.19 17912 1 0.03 -1 -1 30744 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 23.8 MiB 0.18 933 14221 5048 7423 1750 62.4 MiB 0.13 0.00 3.19816 -104.438 -3.19816 3.19816 0.72 0.000637649 0.000593921 0.050503 0.0470056 32 2085 21 6.64007e+06 263718 554710. 1919.41 0.81 0.124107 0.109976 22834 132086 -1 1789 21 1422 1897 163126 35615 3.25603 3.25603 -118.626 -3.25603 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0257287 0.0223811 117 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.11 vpr 62.56 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30600 -1 -1 37 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.9 MiB 0.08 1013 14716 3681 8653 2382 62.6 MiB 0.13 0.00 3.81067 -106.754 -3.81067 3.81067 0.74 0.000665519 0.000618993 0.0445994 0.0414675 26 2475 49 6.64007e+06 464646 477104. 1650.88 1.21 0.150589 0.132064 21682 110474 -1 2112 21 1531 2655 180829 40490 3.92803 3.92803 -129.781 -3.92803 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0270251 0.0235285 129 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.98 vpr 62.19 MiB -1 -1 0.19 18024 1 0.03 -1 -1 30572 -1 -1 22 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63680 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.8 MiB 0.23 840 11963 2910 8349 704 62.2 MiB 0.10 0.00 3.36661 -93.92 -3.36661 3.36661 0.71 0.000579903 0.000541395 0.039653 0.0369776 26 2331 31 6.64007e+06 276276 477104. 1650.88 0.98 0.11479 0.100998 21682 110474 -1 1780 19 1055 1384 98723 24179 3.18383 3.18383 -107.336 -3.18383 0 0 585099. 2024.56 0.17 0.06 0.11 -1 -1 0.17 0.0217896 0.0189836 109 25 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.86 vpr 62.10 MiB -1 -1 0.18 18212 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.5 MiB 0.14 761 12856 5330 7056 470 62.1 MiB 0.11 0.00 3.14521 -97.0435 -3.14521 3.14521 0.71 0.000602241 0.000561083 0.0464112 0.0432101 30 1995 32 6.64007e+06 213486 526063. 1820.29 0.94 0.126802 0.112041 22546 126617 -1 1543 21 1251 2104 122412 28809 2.84977 2.84977 -106.904 -2.84977 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0242133 0.0210337 108 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.96 vpr 62.69 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30384 -1 -1 36 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 24.2 MiB 0.14 904 11043 2567 7918 558 62.7 MiB 0.13 0.00 3.26641 -98.7144 -3.26641 3.26641 0.73 0.000737887 0.000686031 0.044111 0.0409501 26 2240 21 6.64007e+06 452088 477104. 1650.88 0.93 0.128979 0.113682 21682 110474 -1 1915 21 1435 2259 147708 35393 3.14317 3.14317 -114.835 -3.14317 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.029956 0.0261889 136 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.73 vpr 62.31 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30520 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63804 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.9 MiB 0.20 943 13043 4080 7132 1831 62.3 MiB 0.12 0.00 3.15716 -100.02 -3.15716 3.15716 0.70 0.000573575 0.000534241 0.0457566 0.0425582 28 2073 19 6.64007e+06 251160 500653. 1732.36 0.79 0.112246 0.0993916 21970 115934 -1 1772 20 907 1302 86129 19591 2.87003 2.87003 -109.455 -2.87003 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0223869 0.0194871 107 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.81 vpr 62.50 MiB -1 -1 0.19 18456 1 0.03 -1 -1 30268 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1047 11265 2939 7372 954 62.5 MiB 0.11 0.00 2.90281 -97.1946 -2.90281 2.90281 0.70 0.00069899 0.000649831 0.0380876 0.035406 26 2439 20 6.64007e+06 401856 477104. 1650.88 0.91 0.118145 0.103991 21682 110474 -1 2168 17 1089 1878 141850 31228 2.92897 2.92897 -113.482 -2.92897 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0239137 0.0209136 127 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.94 vpr 62.64 MiB -1 -1 0.21 18316 1 0.03 -1 -1 30628 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.2 MiB 0.27 816 14999 3334 10731 934 62.6 MiB 0.14 0.00 3.50555 -107.438 -3.50555 3.50555 0.70 0.000749894 0.000696915 0.054513 0.0506256 32 2121 20 6.64007e+06 401856 554710. 1919.41 0.84 0.140511 0.124342 22834 132086 -1 1874 20 1265 1875 123258 30377 3.21883 3.21883 -122.875 -3.21883 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0290871 0.0253661 138 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.67 vpr 62.28 MiB -1 -1 0.19 18024 1 0.03 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.6 MiB 0.16 839 7956 2116 5376 464 62.3 MiB 0.08 0.00 2.6639 -87.6451 -2.6639 2.6639 0.70 0.000618895 0.000575237 0.0303002 0.0282088 26 2139 22 6.64007e+06 213486 477104. 1650.88 0.79 0.104156 0.0913656 21682 110474 -1 1832 19 956 1560 115369 26060 2.87497 2.87497 -103.071 -2.87497 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233271 0.0203216 104 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.95 vpr 62.52 MiB -1 -1 0.17 18064 1 0.03 -1 -1 30560 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 24.0 MiB 0.21 876 9571 2654 6186 731 62.5 MiB 0.10 0.00 3.43507 -108.022 -3.43507 3.43507 0.70 0.000621693 0.000579147 0.0340314 0.0316887 26 2343 25 6.64007e+06 263718 477104. 1650.88 0.99 0.110385 0.0970649 21682 110474 -1 2047 20 1347 1957 145087 33976 3.75263 3.75263 -134.918 -3.75263 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0241065 0.0210033 117 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.82 vpr 62.75 MiB -1 -1 0.19 18420 1 0.03 -1 -1 30516 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1003 8919 2216 6292 411 62.8 MiB 0.09 0.00 3.92735 -113.653 -3.92735 3.92735 0.70 0.000654749 0.000606626 0.0327273 0.030317 26 2627 21 6.64007e+06 288834 477104. 1650.88 0.89 0.110022 0.0965516 21682 110474 -1 2324 21 1759 2383 176489 41741 4.01623 4.01623 -139.703 -4.01623 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0271976 0.0237416 130 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.72 vpr 62.41 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30364 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.18 930 12753 3587 7852 1314 62.4 MiB 0.12 0.00 3.79367 -101.001 -3.79367 3.79367 0.70 0.000652617 0.000607962 0.0436225 0.0406315 32 1923 20 6.64007e+06 364182 554710. 1919.41 0.77 0.118848 0.105141 22834 132086 -1 1749 19 786 1297 72926 17668 3.18963 3.18963 -106.204 -3.18963 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.024615 0.0215327 122 49 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.47 vpr 63.07 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30712 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1144 8668 2132 6053 483 63.1 MiB 0.11 0.00 4.33064 -139.566 -4.33064 4.33064 0.70 0.000760867 0.000706975 0.0363901 0.0338544 28 3092 27 6.64007e+06 301392 500653. 1732.36 1.42 0.134301 0.117915 21970 115934 -1 2507 22 1668 2489 179382 40784 4.36409 4.36409 -159.267 -4.36409 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.032005 0.0279596 154 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.56 vpr 62.14 MiB -1 -1 0.17 17936 1 0.02 -1 -1 30596 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.6 MiB 0.05 786 7256 1736 5040 480 62.1 MiB 0.07 0.00 3.1145 -86.7799 -3.1145 3.1145 0.70 0.000538865 0.000502131 0.0239557 0.0223214 32 1717 18 6.64007e+06 226044 554710. 1919.41 0.79 0.0841498 0.0736622 22834 132086 -1 1550 16 729 1195 78817 18441 2.85297 2.85297 -99.9337 -2.85297 0 0 701300. 2426.64 0.20 0.05 0.13 -1 -1 0.20 0.0179067 0.0156938 96 -1 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.98 vpr 62.93 MiB -1 -1 0.20 18332 1 0.03 -1 -1 30460 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1024 8423 1695 6215 513 62.9 MiB 0.09 0.00 3.32336 -115.72 -3.32336 3.32336 0.70 0.00077096 0.000715413 0.0314208 0.0291445 26 2598 25 6.64007e+06 426972 477104. 1650.88 1.00 0.12666 0.110809 21682 110474 -1 2219 22 1713 2579 190837 43045 3.99703 3.99703 -145.401 -3.99703 0 0 585099. 2024.56 0.18 0.09 0.12 -1 -1 0.18 0.0324049 0.0282333 145 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.85 vpr 62.43 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.0 MiB 0.26 862 5856 1259 3969 628 62.4 MiB 0.07 0.00 2.8021 -101.718 -2.8021 2.8021 0.70 0.000719878 0.000668658 0.0263177 0.024494 32 1887 21 6.64007e+06 213486 554710. 1919.41 0.82 0.109293 0.0955177 22834 132086 -1 1720 20 1284 1905 129911 29035 2.84877 2.84877 -121.748 -2.84877 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0276066 0.024085 114 93 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.82 vpr 62.64 MiB -1 -1 0.19 18168 1 0.03 -1 -1 30388 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1055 17178 4663 10401 2114 62.6 MiB 0.16 0.00 3.57727 -113.507 -3.57727 3.57727 0.71 0.000706826 0.000657405 0.0581711 0.0541041 32 2189 15 6.64007e+06 401856 554710. 1919.41 0.78 0.135025 0.120113 22834 132086 -1 1911 16 748 1070 67626 15532 3.20163 3.20163 -118.161 -3.20163 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0236162 0.0207608 131 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.23 vpr 62.64 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30616 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1335 9271 2305 6498 468 62.6 MiB 0.11 0.00 5.15449 -157.077 -5.15449 5.15449 0.71 0.000773566 0.000719062 0.0380738 0.0354096 28 3190 24 6.64007e+06 339066 500653. 1732.36 1.02 0.133102 0.117133 21970 115934 -1 2771 20 1943 2735 205178 47217 5.06254 5.06254 -174.316 -5.06254 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.031299 0.027415 170 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.91 vpr 61.94 MiB -1 -1 0.16 17904 1 0.02 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63424 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.5 MiB 0.16 694 11776 2901 8194 681 61.9 MiB 0.09 0.00 2.6949 -83.5518 -2.6949 2.6949 0.70 0.000505723 0.000471322 0.0358861 0.0334298 26 1889 26 6.64007e+06 226044 477104. 1650.88 1.09 0.0988007 0.0870841 21682 110474 -1 1494 15 669 815 63231 14768 2.64857 2.64857 -100.845 -2.64857 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0160456 0.0140185 87 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.65 vpr 62.39 MiB -1 -1 0.18 18032 1 0.03 -1 -1 30348 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.7 MiB 0.11 622 8046 2217 5453 376 62.4 MiB 0.08 0.00 3.52781 -98.0813 -3.52781 3.52781 0.70 0.000596808 0.000555447 0.0309587 0.0288398 32 1581 23 6.64007e+06 200928 554710. 1919.41 0.78 0.103365 0.0906888 22834 132086 -1 1352 21 959 1563 105301 25492 3.19137 3.19137 -111.127 -3.19137 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0245556 0.0213288 92 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.68 vpr 62.21 MiB -1 -1 0.18 17920 1 0.03 -1 -1 30196 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.8 MiB 0.09 973 9943 2727 6389 827 62.2 MiB 0.10 0.00 2.8981 -98.4746 -2.8981 2.8981 0.70 0.000617 0.000574258 0.0352709 0.0328236 32 2124 23 6.64007e+06 263718 554710. 1919.41 0.81 0.109812 0.0965714 22834 132086 -1 1898 23 1365 2473 166772 37549 2.79977 2.79977 -109.177 -2.79977 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0269986 0.0234413 115 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.71 vpr 62.02 MiB -1 -1 0.17 18032 1 0.03 -1 -1 30620 -1 -1 27 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63512 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.5 MiB 0.05 492 9051 3183 3832 2036 62.0 MiB 0.07 0.00 2.66619 -62.337 -2.66619 2.66619 0.70 0.000478404 0.000443851 0.025321 0.0234248 28 1598 39 6.64007e+06 339066 500653. 1732.36 1.00 0.094714 0.0823527 21970 115934 -1 1123 17 701 1212 74283 19425 2.82897 2.82897 -76.5349 -2.82897 0 0 612192. 2118.31 0.18 0.04 0.10 -1 -1 0.18 0.0166737 0.01452 89 19 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.85 vpr 62.69 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30540 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 24.0 MiB 0.16 968 10129 2752 6860 517 62.7 MiB 0.11 0.00 3.49656 -109.326 -3.49656 3.49656 0.70 0.000735928 0.000685004 0.042548 0.0396114 32 2726 22 6.64007e+06 263718 554710. 1919.41 0.85 0.128921 0.113635 22834 132086 -1 2274 20 1438 2647 170256 39732 3.62662 3.62662 -125.796 -3.62662 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.028289 0.024671 136 69 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.93 vpr 62.80 MiB -1 -1 0.20 18360 1 0.03 -1 -1 30596 -1 -1 35 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.3 MiB 0.17 994 18098 5248 10145 2705 62.8 MiB 0.17 0.00 3.48461 -115.489 -3.48461 3.48461 0.70 0.00076727 0.000712067 0.0645186 0.0599308 32 2264 18 6.64007e+06 439530 554710. 1919.41 0.82 0.150262 0.133501 22834 132086 -1 1977 17 1160 1839 124192 27918 3.32283 3.32283 -126.232 -3.32283 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0266563 0.0233959 143 86 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.07 vpr 62.54 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30492 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1201 11596 3183 7644 769 62.5 MiB 0.12 0.00 4.10361 -125.812 -4.10361 4.10361 0.70 0.000701152 0.000652069 0.0408528 0.0380014 32 2689 22 6.65987e+06 380340 554710. 1919.41 0.89 0.125641 0.110785 22834 132086 -1 2327 23 1735 2713 199364 45454 4.20877 4.20877 -144.79 -4.20877 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0312277 0.0272576 152 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.02 vpr 62.62 MiB -1 -1 0.21 18512 1 0.03 -1 -1 30524 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 363 293 1 194 85 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1028 12919 3478 7430 2011 62.6 MiB 0.13 0.00 3.67516 -116.546 -3.67516 3.67516 0.70 0.000705936 0.00065667 0.0514518 0.0478778 32 2300 23 6.65987e+06 291594 554710. 1919.41 0.86 0.136973 0.121317 22834 132086 -1 2089 21 1664 2509 199027 44540 3.99343 3.99343 -139.575 -3.99343 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0292876 0.0256054 138 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.06 vpr 62.32 MiB -1 -1 0.18 18260 1 0.03 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.7 MiB 0.13 990 9111 2326 6160 625 62.3 MiB 0.09 0.00 3.45444 -101.198 -3.45444 3.45444 0.75 0.000631544 0.000583514 0.0320232 0.0298036 26 2538 23 6.65987e+06 291594 477104. 1650.88 1.14 0.110004 0.0967707 21682 110474 -1 2182 21 1360 1848 130080 31668 3.76071 3.76071 -125.447 -3.76071 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262473 0.0229353 126 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 5.71 vpr 62.55 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30556 -1 -1 27 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 24.0 MiB 0.11 961 9448 2377 6434 637 62.6 MiB 0.09 0.00 3.42544 -95.0241 -3.42544 3.42544 0.70 0.000632826 0.000589179 0.0329619 0.0306846 36 1974 20 6.65987e+06 342306 612192. 2118.31 2.78 0.212803 0.183556 23410 145293 -1 1809 22 1267 2434 155211 35706 3.53037 3.53037 -109.864 -3.53037 0 0 782063. 2706.10 0.22 0.07 0.13 -1 -1 0.22 0.027289 0.0238154 126 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.38 vpr 62.67 MiB -1 -1 0.20 18532 1 0.03 -1 -1 30496 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1038 11223 3297 6820 1106 62.7 MiB 0.12 0.00 3.48115 -105.918 -3.48115 3.48115 0.70 0.000684163 0.000636657 0.0423888 0.0394578 26 2979 40 6.65987e+06 291594 477104. 1650.88 1.48 0.142582 0.125254 21682 110474 -1 2394 19 1543 2913 231173 52838 3.68345 3.68345 -131.503 -3.68345 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0262346 0.022975 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.85 vpr 62.60 MiB -1 -1 0.19 18164 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.1 MiB 0.15 975 16747 5055 8850 2842 62.6 MiB 0.15 0.00 2.68684 -95.2732 -2.68684 2.68684 0.71 0.000725615 0.000672904 0.0571497 0.0531181 32 2439 22 6.65987e+06 418374 554710. 1919.41 0.82 0.142251 0.12601 22834 132086 -1 2053 17 1219 1851 135502 32006 2.86591 2.86591 -109.993 -2.86591 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0252621 0.0221695 141 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.67 vpr 61.91 MiB -1 -1 0.18 17896 1 0.03 -1 -1 30872 -1 -1 18 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63400 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.3 MiB 0.16 599 11487 3197 7530 760 61.9 MiB 0.10 0.00 3.02895 -78.8967 -3.02895 3.02895 0.71 0.000553207 0.000515146 0.0409093 0.0381079 32 1551 21 6.65987e+06 228204 554710. 1919.41 0.78 0.106128 0.0936827 22834 132086 -1 1320 16 769 1278 96520 22389 2.77271 2.77271 -89.4795 -2.77271 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0188266 0.0164806 94 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.75 vpr 62.17 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30312 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.06 1016 13726 3515 8501 1710 62.2 MiB 0.11 0.00 2.49244 -79.5759 -2.49244 2.49244 0.73 0.000596941 0.00055477 0.0406558 0.037834 28 2224 22 6.65987e+06 393018 500653. 1732.36 0.91 0.115626 0.102198 21970 115934 -1 1973 18 896 1581 123462 27027 2.69671 2.69671 -95.6621 -2.69671 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0219065 0.0191654 115 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.78 vpr 62.33 MiB -1 -1 0.19 18508 1 0.03 -1 -1 30376 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.15 916 10050 2738 6635 677 62.3 MiB 0.10 0.00 2.68253 -95.7293 -2.68253 2.68253 0.70 0.000638104 0.000593575 0.0382575 0.0356152 32 2258 18 6.65987e+06 240882 554710. 1919.41 0.81 0.109924 0.0969905 22834 132086 -1 1958 22 1339 2000 158257 35115 2.93831 2.93831 -112.563 -2.93831 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0270699 0.0235672 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.81 vpr 62.17 MiB -1 -1 0.18 18088 1 0.03 -1 -1 30252 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.24 887 8831 2540 5709 582 62.2 MiB 0.09 0.00 2.98475 -102.648 -2.98475 2.98475 0.70 0.000625451 0.0005825 0.0336636 0.0313611 32 2006 19 6.65987e+06 215526 554710. 1919.41 0.79 0.105293 0.0927599 22834 132086 -1 1777 21 1225 1960 142247 32959 2.76051 2.76051 -113.096 -2.76051 0 0 701300. 2426.64 0.20 0.07 0.14 -1 -1 0.20 0.0260681 0.0227372 113 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.72 vpr 62.06 MiB -1 -1 0.19 18144 1 0.03 -1 -1 30548 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63548 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.20 581 7008 1624 4728 656 62.1 MiB 0.06 0.00 3.37455 -89.5123 -3.37455 3.37455 0.70 0.000619006 0.000576368 0.0275238 0.0256576 28 1711 26 6.65987e+06 215526 500653. 1732.36 0.83 0.104355 0.0912548 21970 115934 -1 1379 19 728 1083 72772 18967 2.85591 2.85591 -99.7542 -2.85591 0 0 612192. 2118.31 0.18 0.05 0.10 -1 -1 0.18 0.0234834 0.0205186 98 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.95 vpr 62.15 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.7 MiB 0.22 808 12156 4131 6101 1924 62.1 MiB 0.11 0.00 2.91589 -93.835 -2.91589 2.91589 0.73 0.000587878 0.000546983 0.0432602 0.040236 32 2288 26 6.65987e+06 215526 554710. 1919.41 0.86 0.117952 0.104129 22834 132086 -1 1755 20 1248 1671 130965 31352 2.91285 2.91285 -106.884 -2.91285 0 0 701300. 2426.64 0.22 0.06 0.12 -1 -1 0.22 0.0235603 0.0205487 106 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.89 vpr 62.44 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30456 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1134 17053 5329 9325 2399 62.4 MiB 0.17 0.00 3.37501 -114.033 -3.37501 3.37501 0.70 0.000696991 0.000648142 0.0633693 0.058947 30 2357 23 6.65987e+06 304272 526063. 1820.29 0.87 0.147571 0.131095 22546 126617 -1 1926 19 1298 1886 99336 23080 3.00337 3.00337 -118.943 -3.00337 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0266285 0.0233354 139 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.85 vpr 62.52 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30708 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1010 13939 4008 8223 1708 62.5 MiB 0.14 0.00 3.76229 -111.647 -3.76229 3.76229 0.71 0.000717748 0.000667285 0.0494368 0.0459821 32 2356 18 6.65987e+06 380340 554710. 1919.41 0.86 0.130118 0.115237 22834 132086 -1 2091 23 1470 2386 180185 40697 3.73125 3.73125 -128.409 -3.73125 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315002 0.0274666 133 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.65 vpr 61.89 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30276 -1 -1 21 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63372 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.3 MiB 0.13 786 10940 3196 6656 1088 61.9 MiB 0.09 0.00 2.56293 -76.3929 -2.56293 2.56293 0.70 0.00054329 0.00050594 0.0352972 0.0328974 32 1725 20 6.65987e+06 266238 554710. 1919.41 0.77 0.0989622 0.0872771 22834 132086 -1 1648 21 1004 1689 134974 31475 2.96711 2.96711 -94.431 -2.96711 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0225595 0.0196363 98 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.10 vpr 62.49 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1067 15151 4792 8291 2068 62.5 MiB 0.15 0.00 3.1755 -102.34 -3.1755 3.1755 0.75 0.000731456 0.000679563 0.0614308 0.0571066 28 2567 22 6.65987e+06 266238 500653. 1732.36 0.87 0.147733 0.131155 21970 115934 -1 2157 18 1218 2218 153148 35058 3.11117 3.11117 -116.885 -3.11117 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.026861 0.0235846 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.94 vpr 62.60 MiB -1 -1 0.19 18512 1 0.03 -1 -1 30436 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1111 8641 1896 5966 779 62.6 MiB 0.09 0.00 3.39001 -115.173 -3.39001 3.39001 0.70 0.000686431 0.000638951 0.0344117 0.0320585 32 2552 24 6.65987e+06 266238 554710. 1919.41 0.86 0.118217 0.103876 22834 132086 -1 2181 20 1414 1957 137969 32671 3.23177 3.23177 -127.791 -3.23177 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0275345 0.0241081 137 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.76 vpr 62.26 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30492 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.20 860 15633 4213 9926 1494 62.3 MiB 0.13 0.00 2.30864 -87.9994 -2.30864 2.30864 0.77 0.000627054 0.000580255 0.0504568 0.0469287 28 2002 17 6.65987e+06 367662 500653. 1732.36 0.75 0.124283 0.110303 21970 115934 -1 1783 16 867 1361 89747 21041 2.15051 2.15051 -99.4205 -2.15051 0 0 612192. 2118.31 0.18 0.05 0.10 -1 -1 0.18 0.0215754 0.0189463 110 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.61 vpr 61.87 MiB -1 -1 0.18 17972 1 0.03 -1 -1 30344 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63352 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.4 MiB 0.12 642 12139 3393 7690 1056 61.9 MiB 0.09 0.00 1.87027 -67.1558 -1.87027 1.87027 0.74 0.000496668 0.000462362 0.0386638 0.0360306 26 1479 15 6.65987e+06 190170 477104. 1650.88 0.77 0.0937624 0.0831848 21682 110474 -1 1343 21 724 1050 82660 18459 1.73585 1.73585 -77.6839 -1.73585 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0202249 0.0175106 81 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.96 vpr 62.32 MiB -1 -1 0.18 17976 1 0.03 -1 -1 30644 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.7 MiB 0.30 877 9516 2678 5817 1021 62.3 MiB 0.09 0.00 3.85375 -114.422 -3.85375 3.85375 0.75 0.000609307 0.000567111 0.034846 0.0324735 28 2077 19 6.65987e+06 240882 500653. 1732.36 0.90 0.105213 0.0927111 21970 115934 -1 1815 19 1046 1533 108057 25897 3.45891 3.45891 -124.571 -3.45891 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0235328 0.0205818 127 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.73 vpr 62.43 MiB -1 -1 0.19 18456 1 0.03 -1 -1 30660 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 945 10247 2466 6489 1292 62.4 MiB 0.10 0.00 3.36036 -105.343 -3.36036 3.36036 0.70 0.000688007 0.000639614 0.0352131 0.0327818 32 2242 22 6.65987e+06 393018 554710. 1919.41 0.84 0.118116 0.104039 22834 132086 -1 1930 21 1406 2218 150838 36183 3.58263 3.58263 -124.545 -3.58263 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286599 0.0250701 135 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.97 vpr 62.87 MiB -1 -1 0.18 18568 1 0.03 -1 -1 30612 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1179 11415 3272 7551 592 62.9 MiB 0.13 0.00 3.48504 -112.69 -3.48504 3.48504 0.70 0.000721695 0.000671134 0.0457921 0.0425368 30 2579 20 6.65987e+06 291594 526063. 1820.29 0.91 0.136578 0.12078 22546 126617 -1 2211 21 1205 1941 116102 26469 3.24011 3.24011 -119.072 -3.24011 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0299932 0.0262261 142 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.79 vpr 61.66 MiB -1 -1 0.17 17708 1 0.02 -1 -1 30732 -1 -1 18 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63144 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.0 MiB 0.23 366 10796 3597 4768 2431 61.7 MiB 0.07 0.00 1.89953 -51.8374 -1.89953 1.89953 0.70 0.000426349 0.000396379 0.0303644 0.0281531 28 1199 44 6.65987e+06 228204 500653. 1732.36 0.88 0.0955941 0.0835942 21970 115934 -1 886 18 623 850 62627 16753 1.98831 1.98831 -66.9414 -1.98831 0 0 612192. 2118.31 0.18 0.04 0.11 -1 -1 0.18 0.0160382 0.0139459 77 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.70 vpr 62.16 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30472 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.10 968 8827 2402 4710 1715 62.2 MiB 0.09 0.00 3.9748 -101.657 -3.9748 3.9748 0.71 0.000621308 0.00057871 0.0317632 0.0296102 32 2214 22 6.65987e+06 266238 554710. 1919.41 0.83 0.106191 0.0934898 22834 132086 -1 2021 21 1288 2413 191009 42747 3.64237 3.64237 -116.679 -3.64237 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0258583 0.0225912 118 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.38 vpr 61.50 MiB -1 -1 0.16 17640 1 0.02 -1 -1 30236 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62980 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 22.9 MiB 0.04 561 10868 4123 5529 1216 61.5 MiB 0.07 0.00 1.96647 -60.997 -1.96647 1.96647 0.70 0.000421592 0.00039218 0.0290593 0.0270325 26 1374 23 6.65987e+06 177492 477104. 1650.88 0.75 0.0803808 0.0708583 21682 110474 -1 1150 16 577 645 54504 13175 2.02105 2.02105 -76.3683 -2.02105 0 0 585099. 2024.56 0.17 0.04 0.10 -1 -1 0.17 0.0143436 0.0125627 79 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.70 vpr 62.26 MiB -1 -1 0.19 18092 1 0.03 -1 -1 30464 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63756 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.7 MiB 0.10 910 8827 2117 6350 360 62.3 MiB 0.09 0.00 3.42395 -99.0479 -3.42395 3.42395 0.70 0.000634764 0.000590863 0.028573 0.0266044 30 2013 21 6.65987e+06 380340 526063. 1820.29 0.82 0.103835 0.0911751 22546 126617 -1 1741 20 863 1480 83738 19960 3.04045 3.04045 -105.725 -3.04045 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0252795 0.0221136 123 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.92 vpr 62.25 MiB -1 -1 0.18 17968 1 0.03 -1 -1 30572 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.6 MiB 0.10 957 7871 1511 5756 604 62.2 MiB 0.07 0.00 3.00424 -87.8585 -3.00424 3.00424 0.70 0.000634792 0.000590393 0.0253732 0.0236437 28 2505 31 6.65987e+06 393018 500653. 1732.36 1.09 0.110972 0.0970125 21970 115934 -1 2081 18 1155 2089 145716 35993 3.16451 3.16451 -110.889 -3.16451 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0235481 0.0206291 128 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.71 vpr 62.40 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30548 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1074 11949 3257 7525 1167 62.4 MiB 0.12 0.00 3.32969 -104.177 -3.32969 3.32969 0.70 0.000677457 0.000630022 0.0427441 0.0397866 30 2213 23 6.65987e+06 329628 526063. 1820.29 0.83 0.1245 0.109908 22546 126617 -1 1886 20 1164 2098 114845 26808 3.53305 3.53305 -123.996 -3.53305 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0255666 0.0225778 125 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.76 vpr 62.18 MiB -1 -1 0.18 18032 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.7 MiB 0.06 866 10916 2732 6859 1325 62.2 MiB 0.10 0.00 2.29953 -83.7203 -2.29953 2.29953 0.73 0.000607226 0.000565032 0.0406589 0.0378306 32 1901 21 6.65987e+06 202848 554710. 1919.41 0.82 0.112117 0.0988611 22834 132086 -1 1727 20 990 1632 126507 28017 2.53451 2.53451 -99.3764 -2.53451 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.024042 0.0209295 101 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.58 vpr 61.95 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30416 -1 -1 23 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63440 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.4 MiB 0.09 692 12361 2896 8859 606 62.0 MiB 0.10 0.00 2.39767 -77.2396 -2.39767 2.39767 0.70 0.00056571 0.00052615 0.0393441 0.0366085 28 1643 31 6.65987e+06 291594 500653. 1732.36 0.78 0.113906 0.100189 21970 115934 -1 1528 20 927 1484 117915 26749 2.62051 2.62051 -95.7668 -2.62051 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0224901 0.0195597 97 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.60 vpr 62.08 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30344 -1 -1 23 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63572 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.5 MiB 0.05 705 13223 3574 8883 766 62.1 MiB 0.11 0.00 2.56864 -75.4387 -2.56864 2.56864 0.71 0.000563566 0.000517886 0.0428979 0.0398372 32 1753 19 6.65987e+06 291594 554710. 1919.41 0.78 0.106702 0.0942895 22834 132086 -1 1529 20 1007 1744 138697 31955 2.66765 2.66765 -91.152 -2.66765 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0222376 0.0193529 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.64 vpr 62.07 MiB -1 -1 0.18 17768 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.6 MiB 0.09 819 7103 1550 5206 347 62.1 MiB 0.07 0.00 2.87775 -89.6738 -2.87775 2.87775 0.71 0.000571726 0.000532345 0.0244554 0.022821 26 2055 23 6.65987e+06 240882 477104. 1650.88 0.87 0.0933608 0.0817924 21682 110474 -1 1792 17 1068 1711 119838 28277 2.94691 2.94691 -110.747 -2.94691 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0201479 0.0176482 110 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.43 vpr 62.12 MiB -1 -1 0.18 18172 1 0.03 -1 -1 30388 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.7 MiB 0.09 832 7125 1484 5327 314 62.1 MiB 0.04 0.00 2.64264 -81.6472 -2.64264 2.64264 0.65 0.000261069 0.000240578 0.0112153 0.0103616 30 1792 21 6.65987e+06 342306 526063. 1820.29 0.69 0.0585066 0.0509417 22546 126617 -1 1542 17 668 1119 54558 13506 2.58031 2.58031 -95.0459 -2.58031 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.020523 0.0179068 103 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.79 vpr 62.11 MiB -1 -1 0.18 18028 1 0.03 -1 -1 30612 -1 -1 25 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.6 MiB 0.21 867 12371 3225 7529 1617 62.1 MiB 0.11 0.00 2.43438 -81.2866 -2.43438 2.43438 0.70 0.000594495 0.000552545 0.0411059 0.0382096 32 1914 26 6.65987e+06 316950 554710. 1919.41 0.81 0.115532 0.101721 22834 132086 -1 1741 17 1025 1592 123437 28641 2.40471 2.40471 -95.403 -2.40471 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0210718 0.0184347 105 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.94 vpr 62.76 MiB -1 -1 0.20 18532 1 0.03 -1 -1 30744 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1197 11851 2939 7491 1421 62.8 MiB 0.12 0.00 3.51556 -102.262 -3.51556 3.51556 0.70 0.00073887 0.000687181 0.0399767 0.0372236 32 2723 20 6.65987e+06 469086 554710. 1919.41 0.85 0.127012 0.112135 22834 132086 -1 2372 20 1456 2441 174010 40584 4.02323 4.02323 -124.957 -4.02323 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0294621 0.0258197 150 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.99 vpr 62.67 MiB -1 -1 0.19 18296 1 0.03 -1 -1 30472 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.24 925 7988 1523 6148 317 62.7 MiB 0.11 0.01 2.98295 -101.27 -2.98295 2.98295 0.70 0.00236061 0.00223691 0.0277431 0.0254814 28 2363 28 6.65987e+06 456408 500653. 1732.36 0.91 0.126619 0.110422 21970 115934 -1 2011 20 1537 2339 153200 37299 3.07537 3.07537 -121.36 -3.07537 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0299588 0.0262262 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.50 vpr 62.19 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30280 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.7 MiB 0.24 930 12980 3848 7123 2009 62.2 MiB 0.12 0.00 3.35895 -103.085 -3.35895 3.35895 0.70 0.000590555 0.000550067 0.0469151 0.0436776 26 2332 35 6.65987e+06 215526 477104. 1650.88 1.48 0.130477 0.115082 21682 110474 -1 1961 20 1194 1729 141237 31441 3.24091 3.24091 -119.223 -3.24091 0 0 585099. 2024.56 0.17 0.07 0.11 -1 -1 0.17 0.0238056 0.0207336 109 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.94 vpr 62.57 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30644 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.0 MiB 0.23 984 9495 2466 6339 690 62.6 MiB 0.11 0.00 3.29135 -101.719 -3.29135 3.29135 0.70 0.000716425 0.000665831 0.0380669 0.0354019 32 2475 21 6.65987e+06 304272 554710. 1919.41 0.83 0.122817 0.108058 22834 132086 -1 2170 21 1651 2792 206343 47742 2.98997 2.98997 -114.32 -2.98997 0 0 701300. 2426.64 0.20 0.09 0.13 -1 -1 0.20 0.0300914 0.0262346 137 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.19 vpr 62.37 MiB -1 -1 0.21 18444 1 0.03 -1 -1 30580 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63864 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1325 15969 5079 8615 2275 62.4 MiB 0.17 0.00 4.59693 -140.865 -4.59693 4.59693 0.73 0.000727289 0.000675892 0.0613487 0.0570331 30 2958 22 6.65987e+06 342306 526063. 1820.29 0.91 0.148786 0.132092 22546 126617 -1 2380 20 1700 2534 131509 31814 4.59389 4.59389 -158.413 -4.59389 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0291377 0.0255391 170 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.06 vpr 62.88 MiB -1 -1 0.19 18328 1 0.03 -1 -1 30592 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 24.1 MiB 1.10 960 15493 5019 7264 3210 62.9 MiB 0.15 0.00 3.8685 -115.065 -3.8685 3.8685 0.70 0.000736293 0.000684215 0.0613631 0.0570644 32 2878 47 6.65987e+06 316950 554710. 1919.41 1.08 0.176821 0.155867 22834 132086 -1 2330 24 1912 2780 233466 55898 4.40017 4.40017 -146.35 -4.40017 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0342876 0.0299577 162 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.05 vpr 62.48 MiB -1 -1 0.19 18512 1 0.03 -1 -1 30748 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 24.1 MiB 0.21 986 10028 2689 6335 1004 62.5 MiB 0.11 0.00 3.49215 -105.367 -3.49215 3.49215 0.70 0.000710086 0.000660818 0.0367589 0.0341777 28 2535 23 6.65987e+06 367662 500653. 1732.36 1.01 0.121898 0.107205 21970 115934 -1 2276 22 1334 2285 219690 59229 3.02005 3.02005 -114.11 -3.02005 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0300771 0.0262873 133 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.05 vpr 62.39 MiB -1 -1 0.18 18036 1 0.03 -1 -1 30492 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.8 MiB 0.16 1047 12749 3689 7720 1340 62.4 MiB 0.11 0.00 3.22104 -94.436 -3.22104 3.22104 0.73 0.00061517 0.000572268 0.0437758 0.0407246 26 2795 37 6.65987e+06 278916 477104. 1650.88 1.11 0.131501 0.115671 21682 110474 -1 2250 21 1322 1960 153113 34401 3.50025 3.50025 -116.047 -3.50025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258989 0.0226123 118 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.38 vpr 62.71 MiB -1 -1 0.20 18612 1 0.03 -1 -1 30648 -1 -1 38 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1168 9860 2102 7315 443 62.7 MiB 0.11 0.00 3.94947 -127.563 -3.94947 3.94947 0.71 0.000868098 0.000807664 0.0390128 0.0363202 28 2967 42 6.65987e+06 481764 500653. 1732.36 1.20 0.167169 0.145952 21970 115934 -1 2541 25 1725 2721 190460 45250 4.24477 4.24477 -150.855 -4.24477 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0404772 0.0351768 172 84 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.71 vpr 62.01 MiB -1 -1 0.19 17972 1 0.03 -1 -1 30444 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63500 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.4 MiB 0.12 861 13992 4603 7259 2130 62.0 MiB 0.11 0.00 2.75978 -83.8234 -2.75978 2.75978 0.70 0.000563659 0.000524546 0.0451513 0.0420204 32 1898 22 6.65987e+06 266238 554710. 1919.41 0.81 0.114488 0.101263 22834 132086 -1 1766 23 1158 1957 156297 34534 2.86985 2.86985 -102.483 -2.86985 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0251351 0.0218384 101 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 6.41 vpr 62.66 MiB -1 -1 0.18 18564 1 0.03 -1 -1 30376 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1148 6512 1358 4648 506 62.7 MiB 0.08 0.00 4.03882 -119.799 -4.03882 4.03882 0.70 0.000681296 0.000634267 0.0260138 0.0242311 28 2868 41 6.65987e+06 291594 500653. 1732.36 3.43 0.204162 0.17624 21970 115934 -1 2485 17 1217 1779 143041 31543 4.12468 4.12468 -138.537 -4.12468 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0244515 0.0215169 142 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.66 vpr 62.68 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30448 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1060 10753 2622 7412 719 62.7 MiB 0.11 0.00 3.1757 -100.669 -3.1757 3.1757 0.70 0.000698236 0.000649102 0.0363208 0.0337843 26 2983 45 6.65987e+06 418374 477104. 1650.88 1.70 0.144294 0.126121 21682 110474 -1 2268 22 1353 2450 188068 40779 2.70651 2.70651 -111.494 -2.70651 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0294682 0.0257243 131 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 6.83 vpr 62.32 MiB -1 -1 0.17 17936 1 0.03 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.7 MiB 0.09 967 13153 4757 6487 1909 62.3 MiB 0.12 0.00 3.15084 -98.9488 -3.15084 3.15084 0.70 0.000626981 0.000583529 0.0444924 0.0414063 26 2667 45 6.65987e+06 304272 477104. 1650.88 3.77 0.242527 0.209909 21682 110474 -1 2145 51 2529 4794 862708 390829 3.92791 3.92791 -127.096 -3.92791 0 0 585099. 2024.56 0.17 0.27 0.10 -1 -1 0.17 0.0537981 0.04635 123 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.91 vpr 62.55 MiB -1 -1 0.20 18420 1 0.02 -1 -1 30532 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 24.1 MiB 0.32 1202 8969 2123 6204 642 62.6 MiB 0.11 0.00 3.4346 -106.55 -3.4346 3.4346 0.70 0.000697116 0.000648322 0.0356101 0.0331411 32 2679 18 6.65987e+06 278916 554710. 1919.41 0.80 0.114558 0.100902 22834 132086 -1 2409 21 1359 1905 156392 35686 3.28691 3.28691 -121.752 -3.28691 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0290215 0.0253828 136 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 6.11 vpr 62.50 MiB -1 -1 0.18 18512 1 0.03 -1 -1 30472 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1072 9383 2297 6524 562 62.5 MiB 0.10 0.00 2.9071 -99.894 -2.9071 2.9071 0.70 0.000715109 0.000664915 0.0335313 0.0311867 26 2747 23 6.65987e+06 393018 477104. 1650.88 3.05 0.221679 0.191666 21682 110474 -1 2295 19 1285 2126 156888 35268 2.95791 2.95791 -117.318 -2.95791 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0274105 0.0240173 132 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.97 vpr 62.55 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30460 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1116 12860 3688 8379 793 62.6 MiB 0.13 0.00 3.47495 -110.14 -3.47495 3.47495 0.70 0.0007408 0.000688387 0.043869 0.0407457 30 2366 22 6.65987e+06 456408 526063. 1820.29 0.80 0.131516 0.115952 22546 126617 -1 2115 18 988 1556 92982 20911 3.10831 3.10831 -120.195 -3.10831 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0271702 0.0238493 144 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.74 vpr 62.33 MiB -1 -1 0.19 18172 1 0.03 -1 -1 30628 -1 -1 29 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.10 924 12273 3344 8097 832 62.3 MiB 0.11 0.00 3.20104 -96.4277 -3.20104 3.20104 0.70 0.000640375 0.000595298 0.0396582 0.0369025 26 2446 22 6.65987e+06 367662 477104. 1650.88 0.85 0.116274 0.10255 21682 110474 -1 2042 22 1412 2311 175450 38932 3.52625 3.52625 -117.76 -3.52625 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0274912 0.0239708 122 21 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.71 vpr 62.58 MiB -1 -1 0.19 18448 1 0.03 -1 -1 30724 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1067 6615 1379 4941 295 62.6 MiB 0.08 0.00 3.95995 -116.796 -3.95995 3.95995 0.70 0.000664406 0.00061861 0.0250266 0.0233143 30 2430 22 6.65987e+06 291594 526063. 1820.29 0.84 0.103832 0.0910285 22546 126617 -1 1982 20 1089 1614 92426 22053 3.57737 3.57737 -126.577 -3.57737 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0265064 0.0232827 133 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.27 vpr 62.70 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1134 9725 2428 6723 574 62.7 MiB 0.11 0.00 3.79107 -114.561 -3.79107 3.79107 0.70 0.000725447 0.00067398 0.0398625 0.0370712 28 3021 25 6.65987e+06 291594 500653. 1732.36 1.15 0.131272 0.115162 21970 115934 -1 2492 22 1547 2380 178042 41007 4.12863 4.12863 -142.319 -4.12863 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0311744 0.0271983 146 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.77 vpr 62.52 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30596 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 24.1 MiB 0.16 992 7525 1849 5294 382 62.5 MiB 0.09 0.00 3.23098 -101.189 -3.23098 3.23098 0.71 0.000736883 0.000685089 0.0325015 0.0302292 30 2447 21 6.65987e+06 266238 526063. 1820.29 0.83 0.119979 0.105486 22546 126617 -1 2079 22 1266 2227 123966 29285 3.33485 3.33485 -120.708 -3.33485 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0316191 0.0276365 135 74 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.59 vpr 61.99 MiB -1 -1 0.18 18016 1 0.03 -1 -1 30452 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.4 MiB 0.09 842 16273 4951 9411 1911 62.0 MiB 0.13 0.00 2.59064 -82.427 -2.59064 2.59064 0.70 0.000558195 0.00051801 0.0487271 0.0451506 28 1769 21 6.65987e+06 304272 500653. 1732.36 0.76 0.114379 0.101252 21970 115934 -1 1635 22 847 1363 98388 21999 2.45425 2.45425 -93.8533 -2.45425 0 0 612192. 2118.31 0.18 0.06 0.11 -1 -1 0.18 0.0238956 0.0207501 97 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.11 vpr 62.74 MiB -1 -1 0.19 18416 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 24.3 MiB 0.14 886 10698 2989 7118 591 62.7 MiB 0.13 0.00 3.1319 -109.37 -3.1319 3.1319 0.70 0.000936679 0.000870497 0.0439752 0.0409171 26 2667 28 6.65987e+06 253560 477104. 1650.88 1.20 0.130608 0.114973 21682 110474 -1 2144 22 1417 1975 166305 38343 3.41097 3.41097 -134.694 -3.41097 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0286788 0.0249636 125 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.37 vpr 62.50 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30576 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1377 11477 3470 7138 869 62.5 MiB 0.13 0.00 4.23387 -131.466 -4.23387 4.23387 0.70 0.00076243 0.000706328 0.0450914 0.0419302 28 3259 26 6.65987e+06 354984 500653. 1732.36 1.38 0.14262 0.125745 21970 115934 -1 2687 23 1903 3049 203231 48577 4.40108 4.40108 -152.522 -4.40108 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0343223 0.0300661 168 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.77 vpr 62.29 MiB -1 -1 0.19 18284 1 0.03 -1 -1 30604 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 24.0 MiB 0.22 886 5927 992 4740 195 62.3 MiB 0.07 0.00 3.50546 -104.167 -3.50546 3.50546 0.70 0.000690129 0.0006416 0.0214055 0.0199619 30 1999 18 6.65987e+06 393018 526063. 1820.29 0.80 0.0996396 0.0871804 22546 126617 -1 1711 17 888 1497 73835 18170 2.82051 2.82051 -109.168 -2.82051 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0243344 0.021394 133 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.48 vpr 62.18 MiB -1 -1 0.17 17984 1 0.02 -1 -1 30612 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63668 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.7 MiB 0.06 831 14518 3974 8872 1672 62.2 MiB 0.12 0.00 2.66464 -84.2869 -2.66464 2.66464 0.70 0.000590237 0.0005493 0.0458785 0.0427282 20 2236 48 6.65987e+06 329628 394039. 1363.46 0.63 0.0950172 0.0848529 20530 87850 -1 1858 59 2005 3885 638165 251775 3.11945 3.11945 -108.491 -3.11945 0 0 477104. 1650.88 0.14 0.22 0.08 -1 -1 0.14 0.0571581 0.0489221 104 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.29 vpr 62.66 MiB -1 -1 0.21 18800 1 0.04 -1 -1 30508 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1380 7019 1377 5096 546 62.7 MiB 0.10 0.00 5.14349 -151.873 -5.14349 5.14349 0.70 0.000823777 0.000766273 0.0322577 0.0300687 30 3022 22 6.65987e+06 316950 526063. 1820.29 3.10 0.27891 0.24053 22546 126617 -1 2507 19 1506 2291 130776 30152 4.71608 4.71608 -161.332 -4.71608 0 0 666494. 2306.21 0.20 0.08 0.12 -1 -1 0.20 0.0323517 0.0283568 168 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.84 vpr 62.50 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30620 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.8 MiB 0.26 911 10608 2581 7229 798 62.5 MiB 0.10 0.00 3.55635 -107.972 -3.55635 3.55635 0.70 0.000685105 0.000637735 0.0356349 0.0331544 32 2143 19 6.65987e+06 405696 554710. 1919.41 0.81 0.114383 0.100759 22834 132086 -1 1896 23 1431 2136 136977 33335 3.50691 3.50691 -124.594 -3.50691 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0302997 0.0263865 130 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.02 MiB -1 -1 0.18 17720 1 0.02 -1 -1 30616 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63508 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.06 869 12183 3382 7024 1777 62.0 MiB 0.10 0.00 2.50867 -80.0561 -2.50867 2.50867 0.70 0.000533619 0.000497299 0.0358461 0.0334012 32 1873 26 6.65987e+06 291594 554710. 1919.41 0.79 0.102967 0.0906253 22834 132086 -1 1726 20 822 1472 111510 25136 2.63451 2.63451 -95.0296 -2.63451 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0212337 0.0185281 100 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 5.63 vpr 62.61 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30356 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.13 1138 13373 4018 8266 1089 62.6 MiB 0.13 0.00 4.55326 -113.354 -4.55326 4.55326 0.71 0.000703815 0.000654143 0.0467678 0.0434166 34 2488 22 6.65987e+06 431052 585099. 2024.56 2.64 0.220781 0.192039 23122 138558 -1 2231 19 1049 1991 125741 28966 4.19762 4.19762 -128.243 -4.19762 0 0 742403. 2568.87 0.21 0.07 0.13 -1 -1 0.21 0.0272491 0.0239182 139 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.54 vpr 61.99 MiB -1 -1 0.16 17848 1 0.03 -1 -1 30384 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.4 MiB 0.09 812 8502 2166 5475 861 62.0 MiB 0.08 0.00 2.66284 -83.6742 -2.66284 2.66284 0.70 0.000558051 0.000520404 0.0278982 0.0260027 30 1661 23 6.65987e+06 253560 526063. 1820.29 0.78 0.0962661 0.0846293 22546 126617 -1 1542 19 888 1565 80219 19669 2.55551 2.55551 -97.9957 -2.55551 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0213524 0.01863 104 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 61.98 MiB -1 -1 0.19 17916 1 0.03 -1 -1 30588 -1 -1 33 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63472 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.5 MiB 0.15 846 16727 5168 9107 2452 62.0 MiB 0.13 0.00 2.98169 -85.2128 -2.98169 2.98169 0.69 0.000594927 0.000554298 0.048261 0.0449239 26 2085 19 6.65987e+06 418374 477104. 1650.88 0.93 0.115622 0.102462 21682 110474 -1 1755 24 1157 1888 137039 31801 2.78545 2.78545 -101.852 -2.78545 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0269013 0.0233182 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.01 vpr 62.57 MiB -1 -1 0.20 18420 1 0.03 -1 -1 30520 -1 -1 24 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1044 15151 4487 8857 1807 62.6 MiB 0.16 0.00 3.37101 -100.513 -3.37101 3.37101 0.73 0.000694368 0.000645937 0.0592927 0.055169 30 2312 22 6.65987e+06 304272 526063. 1820.29 0.86 0.142491 0.126333 22546 126617 -1 1943 17 1062 1669 92178 23099 3.16643 3.16643 -112.783 -3.16643 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0247064 0.0217186 138 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.76 vpr 62.64 MiB -1 -1 0.19 18336 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.0 MiB 0.16 833 5938 1099 4238 601 62.6 MiB 0.07 0.00 3.6117 -107.299 -3.6117 3.6117 0.70 0.000706914 0.000656558 0.0239364 0.0222813 30 2019 19 6.65987e+06 304272 526063. 1820.29 0.81 0.104802 0.091739 22546 126617 -1 1606 20 1096 1611 85363 21160 3.27717 3.27717 -118.785 -3.27717 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0280692 0.0245616 130 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.95 vpr 62.69 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30476 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1104 13147 3623 8171 1353 62.7 MiB 0.13 0.00 3.63564 -112.148 -3.63564 3.63564 0.71 0.000701832 0.000653177 0.0478443 0.04452 28 2509 23 6.65987e+06 342306 500653. 1732.36 0.91 0.132855 0.117515 21970 115934 -1 2317 20 1274 2262 162904 36070 3.69051 3.69051 -133.294 -3.69051 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0283058 0.024782 132 48 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.79 vpr 62.17 MiB -1 -1 0.17 18200 1 0.03 -1 -1 30576 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.7 MiB 0.23 939 8336 2360 5186 790 62.2 MiB 0.09 0.00 3.5308 -105.476 -3.5308 3.5308 0.70 0.000598117 0.000557251 0.0308366 0.0287472 26 2192 21 6.65987e+06 202848 477104. 1650.88 0.88 0.102871 0.0904794 21682 110474 -1 1883 18 955 1271 91722 21488 3.40685 3.40685 -118.27 -3.40685 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0218563 0.0191336 103 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.84 vpr 62.32 MiB -1 -1 0.19 18168 1 0.03 -1 -1 30636 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.19 918 8982 2408 5984 590 62.3 MiB 0.09 0.00 2.85458 -96.7703 -2.85458 2.85458 0.70 0.000643625 0.000598503 0.0347256 0.032304 32 2180 23 6.65987e+06 240882 554710. 1919.41 0.84 0.112208 0.0986947 22834 132086 -1 1986 22 1477 2232 173314 39747 2.82905 2.82905 -112.221 -2.82905 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0273312 0.023796 111 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.80 vpr 62.43 MiB -1 -1 0.19 18452 1 0.03 -1 -1 30608 -1 -1 33 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.8 MiB 0.19 860 10031 2263 6771 997 62.4 MiB 0.09 0.00 2.55652 -74.3027 -2.55652 2.55652 0.70 0.000662767 0.000617039 0.0328362 0.0305629 30 1890 21 6.65987e+06 418374 526063. 1820.29 0.80 0.110236 0.0968535 22546 126617 -1 1652 15 768 1365 68376 16701 2.37799 2.37799 -89.0273 -2.37799 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0212052 0.0186494 123 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.91 vpr 62.17 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30612 -1 -1 35 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 945 15215 4217 9322 1676 62.2 MiB 0.12 0.00 3.3833 -85.6067 -3.3833 3.3833 0.70 0.000586619 0.000546007 0.043462 0.0404231 26 2204 22 6.65987e+06 443730 477104. 1650.88 1.08 0.116074 0.101846 21682 110474 -1 1888 19 931 1882 142353 31721 3.42917 3.42917 -103.987 -3.42917 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0223537 0.0194835 115 20 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.83 vpr 62.18 MiB -1 -1 0.19 18500 1 0.03 -1 -1 30600 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63676 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.7 MiB 0.21 843 12754 4375 6219 2160 62.2 MiB 0.12 0.00 3.17335 -94.2456 -3.17335 3.17335 0.70 0.000632111 0.000587996 0.0500294 0.0465643 32 2101 22 6.65987e+06 215526 554710. 1919.41 0.83 0.125603 0.111229 22834 132086 -1 1870 19 1160 1944 148226 34561 2.99911 2.99911 -110.442 -2.99911 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0241426 0.0210932 108 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.92 vpr 62.43 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30280 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.8 MiB 0.20 884 12345 4073 5681 2591 62.4 MiB 0.12 0.00 2.94464 -101.127 -2.94464 2.94464 0.70 0.000668117 0.000621126 0.0471955 0.043891 32 2421 24 6.65987e+06 253560 554710. 1919.41 0.85 0.128679 0.113671 22834 132086 -1 1963 18 1352 1965 152957 35475 3.09151 3.09151 -122.259 -3.09151 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.024356 0.0213122 120 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.89 vpr 62.29 MiB -1 -1 0.19 17792 1 0.03 -1 -1 30716 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63784 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.7 MiB 0.09 934 10679 2821 6816 1042 62.3 MiB 0.10 0.00 3.64047 -103.455 -3.64047 3.64047 0.70 0.000627853 0.000584707 0.0333645 0.0310557 28 2398 37 6.65987e+06 405696 500653. 1732.36 1.03 0.122664 0.10751 21970 115934 -1 2108 21 1320 2437 161664 38188 3.59343 3.59343 -119.279 -3.59343 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0260266 0.0227169 127 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.01 vpr 62.59 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30724 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1246 15395 4285 8888 2222 62.6 MiB 0.16 0.00 3.98521 -128.644 -3.98521 3.98521 0.70 0.000702837 0.000653863 0.0599213 0.0557745 30 2838 18 6.65987e+06 278916 526063. 1820.29 0.83 0.140124 0.124777 22546 126617 -1 2397 20 1257 1871 114605 25667 3.97311 3.97311 -143.584 -3.97311 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283501 0.0248426 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.01 vpr 62.48 MiB -1 -1 0.19 18508 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1111 10827 2825 7025 977 62.5 MiB 0.11 0.00 3.92821 -113.167 -3.92821 3.92821 0.70 0.000753231 0.00070058 0.0398504 0.0370337 32 2623 20 6.65987e+06 405696 554710. 1919.41 0.85 0.126307 0.111332 22834 132086 -1 2239 23 1350 2318 170568 39370 4.03443 4.03443 -134.132 -4.03443 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0328454 0.028651 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.21 vpr 62.71 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30448 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1136 17726 4984 10545 2197 62.7 MiB 0.16 0.00 3.46095 -113.37 -3.46095 3.46095 0.70 0.000747812 0.000695042 0.0592184 0.0550561 26 3208 29 6.65987e+06 469086 477104. 1650.88 2.08 0.159212 0.140865 21682 110474 -1 2516 21 1501 2612 203376 45858 3.65031 3.65031 -136.715 -3.65031 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0310186 0.027166 140 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.81 vpr 62.09 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30412 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63576 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.6 MiB 0.20 847 14081 4357 8035 1689 62.1 MiB 0.12 0.00 2.88069 -90.2947 -2.88069 2.88069 0.71 0.000581205 0.000541122 0.0490459 0.0455309 32 1784 21 6.65987e+06 240882 554710. 1919.41 0.79 0.118333 0.104906 22834 132086 -1 1614 21 1127 1909 118275 28215 2.46805 2.46805 -95.0418 -2.46805 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0241355 0.0209819 105 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.88 vpr 62.66 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30724 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 24.1 MiB 0.23 805 10523 2316 6417 1790 62.7 MiB 0.10 0.00 3.77847 -108.895 -3.77847 3.77847 0.71 0.000728114 0.000677059 0.0451855 0.0420863 32 2104 23 6.65987e+06 266238 554710. 1919.41 0.84 0.132428 0.116956 22834 132086 -1 1730 18 1480 2297 132924 35295 3.71443 3.71443 -129.474 -3.71443 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0266695 0.0234509 137 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.24 vpr 62.65 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30480 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1212 10813 2505 7054 1254 62.7 MiB 0.12 0.00 3.8156 -117.944 -3.8156 3.8156 0.71 0.000691322 0.000643185 0.0407835 0.0379482 28 2837 24 6.65987e+06 304272 500653. 1732.36 1.18 0.12521 0.110356 21970 115934 -1 2328 20 1385 2201 155395 34627 3.72871 3.72871 -134.912 -3.72871 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.027333 0.023921 138 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.04 vpr 62.52 MiB -1 -1 0.21 18432 1 0.03 -1 -1 30688 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1115 10495 2631 7096 768 62.5 MiB 0.11 0.00 4.22316 -125.353 -4.22316 4.22316 0.71 0.000680814 0.000633056 0.0375506 0.0349206 32 2594 22 6.65987e+06 354984 554710. 1919.41 0.85 0.119426 0.105195 22834 132086 -1 2251 21 1350 2174 157957 36215 4.15677 4.15677 -139.789 -4.15677 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.028582 0.025 146 43 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.60 vpr 62.67 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30696 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 24.1 MiB 0.86 996 15213 4356 8572 2285 62.7 MiB 0.14 0.00 3.46221 -106.407 -3.46221 3.46221 0.70 0.000722876 0.000672223 0.0546937 0.0508474 32 2336 24 6.65987e+06 393018 554710. 1919.41 0.88 0.142739 0.126282 22834 132086 -1 1985 18 1350 2197 147101 34716 3.21771 3.21771 -119.753 -3.21771 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0265621 0.0232811 133 78 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.94 vpr 62.48 MiB -1 -1 0.17 18568 1 0.03 -1 -1 30508 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 24.0 MiB 0.19 1047 15822 5099 8999 1724 62.5 MiB 0.16 0.00 3.76955 -112.057 -3.76955 3.76955 0.70 0.000713886 0.00066369 0.0645452 0.0600282 32 2621 23 6.65987e+06 253560 554710. 1919.41 0.86 0.151124 0.134328 22834 132086 -1 2255 24 1664 2914 222577 51080 3.68831 3.68831 -132.857 -3.68831 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0327241 0.028519 133 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.15 vpr 62.58 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30568 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.1 MiB 0.32 825 7728 1643 5706 379 62.6 MiB 0.09 0.00 3.57869 -98.8559 -3.57869 3.57869 0.70 0.000729438 0.000677684 0.0301413 0.0280164 26 2438 22 6.65987e+06 367662 477104. 1650.88 1.05 0.115836 0.101292 21682 110474 -1 2065 20 1422 2274 159043 39432 3.39151 3.39151 -115.352 -3.39151 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.028424 0.0248105 131 79 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.48 vpr 61.89 MiB -1 -1 0.17 17736 1 0.03 -1 -1 30616 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.3 MiB 0.09 828 9205 2583 6101 521 61.9 MiB 0.09 0.00 2.87075 -91.3007 -2.87075 2.87075 0.70 0.000555018 0.00051763 0.0320487 0.0298904 30 1715 19 6.65987e+06 190170 526063. 1820.29 0.75 0.0958486 0.0845565 22546 126617 -1 1572 23 711 1085 75447 17159 2.69545 2.69545 -103.149 -2.69545 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.024553 0.0213866 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.94 vpr 62.49 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30488 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1061 11809 2822 7993 994 62.5 MiB 0.12 0.00 3.4693 -111.628 -3.4693 3.4693 0.70 0.000725737 0.000674324 0.0428039 0.0397981 28 2480 23 6.65987e+06 380340 500653. 1732.36 0.86 0.130843 0.11542 21970 115934 -1 2149 20 1275 2014 143820 32619 3.57411 3.57411 -128.186 -3.57411 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0288404 0.0251653 130 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 5.83 vpr 62.69 MiB -1 -1 0.16 18328 1 0.03 -1 -1 30504 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 24.1 MiB 0.21 948 6123 1217 4347 559 62.7 MiB 0.08 0.00 3.74961 -115.204 -3.74961 3.74961 0.70 0.000755818 0.000701695 0.0284246 0.0264766 32 2779 21 6.65987e+06 253560 554710. 1919.41 2.82 0.25871 0.223084 22834 132086 -1 2390 24 2085 3362 280315 64271 3.89717 3.89717 -143.516 -3.89717 0 0 701300. 2426.64 0.22 0.11 0.12 -1 -1 0.22 0.0358393 0.0313559 147 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.67 vpr 62.28 MiB -1 -1 0.17 18024 1 0.03 -1 -1 30280 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1011 12863 4265 7083 1515 62.3 MiB 0.11 0.00 3.19629 -97.1478 -3.19629 3.19629 0.70 0.000577348 0.000537505 0.0434389 0.0404543 30 1978 17 6.65987e+06 240882 526063. 1820.29 0.74 0.10868 0.0963537 22546 126617 -1 1763 20 754 1015 63900 14607 2.93551 2.93551 -109.722 -2.93551 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0231158 0.0201952 111 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.65 vpr 61.95 MiB -1 -1 0.18 17852 1 0.03 -1 -1 30636 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63440 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.3 MiB 0.09 743 6672 1451 4770 451 62.0 MiB 0.07 0.00 2.90081 -86.2872 -2.90081 2.90081 0.71 0.000551078 0.000513645 0.0221067 0.0206151 26 1915 28 6.65987e+06 266238 477104. 1650.88 0.87 0.0937268 0.0818017 21682 110474 -1 1721 21 1181 1912 136419 32110 2.88291 2.88291 -103.759 -2.88291 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.022763 0.0198194 106 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.22 vpr 62.64 MiB -1 -1 0.19 18480 1 0.03 -1 -1 30680 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 23.9 MiB 0.15 1053 8603 1992 5978 633 62.6 MiB 0.10 0.00 3.91427 -122.672 -3.91427 3.91427 0.70 0.000698981 0.000650687 0.0328573 0.030595 26 3014 25 6.65987e+06 316950 477104. 1650.88 1.25 0.120274 0.105573 21682 110474 -1 2384 21 1817 2363 172808 40439 4.18083 4.18083 -150.212 -4.18083 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0292001 0.0255536 144 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.12 vpr 62.90 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30236 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 24.2 MiB 0.39 1192 11477 2917 7554 1006 62.9 MiB 0.12 0.00 4.05969 -124.506 -4.05969 4.05969 0.70 0.000696009 0.000645638 0.0415862 0.03869 30 2765 24 6.65987e+06 354984 526063. 1820.29 0.88 0.127736 0.112662 22546 126617 -1 2202 22 1255 1829 109752 25310 4.01736 4.01736 -141.125 -4.01736 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.03035 0.0265384 151 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.12 vpr 62.78 MiB -1 -1 0.19 18056 1 0.03 -1 -1 30432 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.0 MiB 0.06 1258 19356 5883 11076 2397 62.8 MiB 0.18 0.00 4.13461 -117.052 -4.13461 4.13461 0.70 0.000717532 0.00066773 0.0627099 0.0583029 28 2854 23 6.65987e+06 456408 500653. 1732.36 1.20 0.151235 0.134373 21970 115934 -1 2447 23 1738 3055 214230 50477 4.45217 4.45217 -141.908 -4.45217 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0320002 0.0279291 153 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.68 vpr 62.15 MiB -1 -1 0.19 18160 1 0.03 -1 -1 30424 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63644 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.6 MiB 0.20 866 9123 2033 6188 902 62.2 MiB 0.09 0.00 2.57493 -78.3377 -2.57493 2.57493 0.70 0.000641106 0.000596647 0.0301397 0.0280428 30 1915 21 6.65987e+06 393018 526063. 1820.29 0.78 0.105976 0.0930223 22546 126617 -1 1694 18 957 1658 89523 21348 2.60151 2.60151 -91.3892 -2.60151 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0234373 0.0204969 120 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.50 vpr 62.05 MiB -1 -1 0.18 18172 1 0.02 -1 -1 30784 -1 -1 21 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63536 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.5 MiB 0.05 779 12292 4104 6547 1641 62.0 MiB 0.10 0.00 2.8251 -81.7347 -2.8251 2.8251 0.70 0.000543283 0.000506103 0.0408416 0.0380534 30 1490 21 6.65987e+06 266238 526063. 1820.29 0.75 0.104918 0.0926755 22546 126617 -1 1347 17 599 897 48934 11876 2.61557 2.61557 -91.2188 -2.61557 0 0 666494. 2306.21 0.19 0.04 0.11 -1 -1 0.19 0.0194483 0.0170012 97 26 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.09 vpr 62.66 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30492 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1311 12150 3370 8077 703 62.7 MiB 0.14 0.00 3.3481 -113.494 -3.3481 3.3481 0.70 0.000810095 0.000749333 0.0517846 0.048028 32 3546 24 6.65987e+06 329628 554710. 1919.41 0.92 0.150347 0.132684 22834 132086 -1 2898 23 2191 3597 272634 62426 3.84297 3.84297 -135.639 -3.84297 0 0 701300. 2426.64 0.24 0.11 0.12 -1 -1 0.24 0.0360626 0.0314877 170 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.32 vpr 62.54 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30476 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 365 296 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.82 897 11064 2968 6739 1357 62.5 MiB 0.11 0.00 4.15967 -119.089 -4.15967 4.15967 0.70 0.000710049 0.000659929 0.0456053 0.0423774 34 2357 23 6.65987e+06 266238 585099. 2024.56 1.61 0.185273 0.161627 23122 138558 -1 1807 22 1526 2407 150426 39972 4.51549 4.51549 -146.066 -4.51549 0 0 742403. 2568.87 0.22 0.08 0.12 -1 -1 0.22 0.0327251 0.0287876 150 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.51 vpr 62.29 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30632 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 23.7 MiB 0.79 850 12542 3889 6331 2322 62.3 MiB 0.12 0.00 3.4165 -104.165 -3.4165 3.4165 0.71 0.000663185 0.00061666 0.0487305 0.0453071 32 2292 21 6.65987e+06 228204 554710. 1919.41 0.86 0.128468 0.113488 22834 132086 -1 1893 20 1367 1967 150786 35164 3.46357 3.46357 -126.69 -3.46357 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0262139 0.022895 126 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.76 vpr 62.62 MiB -1 -1 0.19 18064 1 0.03 -1 -1 30568 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 24.0 MiB 0.10 1056 15856 4646 9763 1447 62.6 MiB 0.15 0.00 3.7622 -100.633 -3.7622 3.7622 0.77 0.000668015 0.000621509 0.0520864 0.0484243 30 2128 20 6.65987e+06 380340 526063. 1820.29 0.79 0.129729 0.115062 22546 126617 -1 1848 14 789 1276 69124 16198 3.22665 3.22665 -111.579 -3.22665 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0211954 0.0187914 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.11 vpr 62.74 MiB -1 -1 0.21 18520 1 0.03 -1 -1 30420 -1 -1 33 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.21 925 10389 2486 6905 998 62.7 MiB 0.11 0.00 3.75769 -107.247 -3.75769 3.75769 0.70 0.000728534 0.000675927 0.0372764 0.0345984 26 2528 24 6.65987e+06 418374 477104. 1650.88 1.12 0.126832 0.111372 21682 110474 -1 2220 18 1280 2087 130178 32713 3.71677 3.71677 -130.591 -3.71677 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0271187 0.0238061 144 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.79 vpr 62.28 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30328 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.7 MiB 0.15 1025 13953 3561 8784 1608 62.3 MiB 0.12 0.00 2.8321 -90.0185 -2.8321 2.8321 0.71 0.000655025 0.000609065 0.0460537 0.0428415 32 2385 18 6.65987e+06 393018 554710. 1919.41 0.81 0.12023 0.106369 22834 132086 -1 2103 19 1207 2065 151119 34576 2.77691 2.77691 -105.324 -2.77691 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0252122 0.0220625 124 46 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 5.82 vpr 62.69 MiB -1 -1 0.19 18164 1 0.03 -1 -1 30464 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 23.9 MiB 0.16 1216 15883 4659 9054 2170 62.7 MiB 0.16 0.00 3.71795 -121.921 -3.71795 3.71795 0.70 0.000701075 0.000652129 0.0598744 0.0557042 34 2698 23 6.65987e+06 304272 585099. 2024.56 2.74 0.239264 0.208621 23122 138558 -1 2416 21 1848 2859 213424 46465 3.65777 3.65777 -134.65 -3.65777 0 0 742403. 2568.87 0.21 0.09 0.12 -1 -1 0.21 0.0295323 0.0258738 147 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.18 vpr 62.57 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30352 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1028 14048 3738 8905 1405 62.6 MiB 0.08 0.00 3.63475 -113.41 -3.63475 3.63475 0.69 0.000345104 0.000318434 0.0232489 0.0214336 26 2861 27 6.65987e+06 431052 477104. 1650.88 1.08 0.115668 0.100734 21682 110474 -1 2202 20 1382 2104 138137 33560 3.51817 3.51817 -129.734 -3.51817 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0297698 0.0260663 143 59 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.70 vpr 61.96 MiB -1 -1 0.19 18064 1 0.03 -1 -1 30616 -1 -1 17 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63448 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.3 MiB 0.12 565 12362 4398 5684 2280 62.0 MiB 0.13 0.00 2.88681 -83.7178 -2.88681 2.88681 0.70 0.000757189 0.000705309 0.0542533 0.0503222 32 1382 24 6.65987e+06 215526 554710. 1919.41 0.78 0.124799 0.110658 22834 132086 -1 1153 20 932 1332 93004 23524 2.80997 2.80997 -94.2255 -2.80997 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0228293 0.0198792 92 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.81 vpr 62.46 MiB -1 -1 0.19 18464 1 0.03 -1 -1 30652 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.9 MiB 0.23 958 12162 3433 7405 1324 62.5 MiB 0.12 0.00 3.1971 -103.621 -3.1971 3.1971 0.71 0.00064119 0.000596247 0.0444569 0.0413496 30 2011 19 6.65987e+06 253560 526063. 1820.29 0.80 0.116497 0.103 22546 126617 -1 1740 18 1065 1423 85453 19482 2.92237 2.92237 -113.59 -2.92237 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0234413 0.0204993 116 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.56 MiB -1 -1 0.20 18188 1 0.03 -1 -1 30584 -1 -1 37 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.0 MiB 0.11 1133 9612 2200 6367 1045 62.6 MiB 0.09 0.00 3.77961 -104.432 -3.77961 3.77961 0.70 0.000677974 0.000631155 0.0300201 0.0279282 26 2469 24 6.65987e+06 469086 477104. 1650.88 0.92 0.111659 0.0978969 21682 110474 -1 2208 20 1403 2497 200748 44368 3.97505 3.97505 -126.78 -3.97505 0 0 585099. 2024.56 0.17 0.08 0.11 -1 -1 0.17 0.026683 0.0232467 129 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.92 vpr 62.08 MiB -1 -1 0.19 18028 1 0.03 -1 -1 30616 -1 -1 21 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.6 MiB 0.19 892 9338 2370 6144 824 62.1 MiB 0.09 0.00 3.30615 -94.6201 -3.30615 3.30615 0.70 0.000570357 0.000531234 0.0316184 0.0294797 26 2152 30 6.65987e+06 266238 477104. 1650.88 1.01 0.106019 0.0929001 21682 110474 -1 1869 23 1135 1503 114473 26622 3.10937 3.10937 -106.71 -3.10937 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0252115 0.0219032 110 25 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.45 vpr 62.09 MiB -1 -1 0.18 17916 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63584 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.4 MiB 0.19 821 13840 5362 6683 1795 62.1 MiB 0.12 0.00 2.90269 -92.0687 -2.90269 2.90269 0.70 0.000600762 0.000559676 0.0503974 0.0469706 34 2034 33 6.65987e+06 202848 585099. 2024.56 1.43 0.153526 0.13481 23122 138558 -1 1691 22 1318 2278 173338 39123 2.87911 2.87911 -103.298 -2.87911 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0253407 0.0220199 109 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.91 vpr 62.63 MiB -1 -1 0.20 18488 1 0.03 -1 -1 30368 -1 -1 35 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1032 17648 5026 9849 2773 62.6 MiB 0.16 0.00 3.26641 -101.432 -3.26641 3.26641 0.70 0.00072782 0.000676876 0.0596656 0.0554166 30 1933 20 6.65987e+06 443730 526063. 1820.29 0.80 0.149139 0.132716 22546 126617 -1 1653 17 879 1373 66265 15890 2.80277 2.80277 -105.539 -2.80277 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0255535 0.0224662 135 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.66 vpr 62.23 MiB -1 -1 0.18 18220 1 0.03 -1 -1 30712 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63724 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 23.8 MiB 0.16 876 7914 1959 5549 406 62.2 MiB 0.08 0.00 3.0359 -96.9764 -3.0359 3.0359 0.70 0.000571454 0.000532311 0.0273665 0.0255059 32 1897 20 6.65987e+06 240882 554710. 1919.41 0.77 0.0937337 0.0823094 22834 132086 -1 1744 18 1007 1457 109679 25047 3.22197 3.22197 -117.24 -3.22197 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0212816 0.0186504 108 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.21 vpr 62.36 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30420 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.7 MiB 0.24 989 11327 3090 7557 680 62.4 MiB 0.11 0.00 2.82075 -94.6465 -2.82075 2.82075 0.70 0.000696094 0.000646055 0.0389038 0.0361244 26 2493 27 6.65987e+06 393018 477104. 1650.88 1.20 0.127386 0.111794 21682 110474 -1 2225 21 1345 2343 184535 39860 2.65071 2.65071 -106.878 -2.65071 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0285469 0.0249169 126 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.48 vpr 62.54 MiB -1 -1 0.21 18356 1 0.03 -1 -1 30668 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.1 MiB 0.78 1041 16511 4658 9476 2377 62.5 MiB 0.15 0.00 3.3843 -111.16 -3.3843 3.3843 0.70 0.000748489 0.000695249 0.0599254 0.0556824 28 2289 23 6.65987e+06 405696 500653. 1732.36 0.81 0.149726 0.132759 21970 115934 -1 2053 23 1475 2066 134160 31119 3.42003 3.42003 -128.98 -3.42003 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0327108 0.0285021 138 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.81 vpr 62.10 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30608 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.6 MiB 0.23 831 9881 2532 6649 700 62.1 MiB 0.09 0.00 2.54264 -84.8572 -2.54264 2.54264 0.70 0.000618598 0.000575557 0.0371926 0.0346281 32 1992 20 6.65987e+06 215526 554710. 1919.41 0.79 0.112408 0.0991301 22834 132086 -1 1827 18 978 1558 120107 27719 2.75671 2.75671 -104.514 -2.75671 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0226703 0.0198171 104 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.76 vpr 62.18 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30492 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.6 MiB 0.14 796 7823 1753 5709 361 62.2 MiB 0.08 0.00 3.23175 -99.8478 -3.23175 3.23175 0.69 0.000609393 0.000567348 0.028618 0.0266521 32 2281 32 6.65987e+06 240882 554710. 1919.41 0.85 0.110104 0.09632 22834 132086 -1 1866 22 1322 1949 139632 35265 3.02531 3.02531 -114.052 -3.02531 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0263294 0.0229607 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.77 vpr 62.53 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30664 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.9 MiB 0.12 1050 8024 1955 5521 548 62.5 MiB 0.10 0.00 3.7011 -114.174 -3.7011 3.7011 0.71 0.000657933 0.000612002 0.0340035 0.0315248 32 2490 23 6.65987e+06 278916 554710. 1919.41 0.81 0.113347 0.0996148 22834 132086 -1 2208 20 1538 2166 150871 36612 3.67951 3.67951 -128.09 -3.67951 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0266394 0.0233347 130 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.89 vpr 62.36 MiB -1 -1 0.22 18512 1 0.03 -1 -1 30472 -1 -1 28 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63856 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 933 11573 3234 7349 990 62.4 MiB 0.11 0.00 3.79367 -98.3368 -3.79367 3.79367 0.70 0.000656711 0.000611451 0.0404007 0.0376047 30 1829 13 6.65987e+06 354984 526063. 1820.29 0.74 0.10893 0.0963914 22546 126617 -1 1660 15 628 1094 58414 14253 3.17762 3.17762 -103.003 -3.17762 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0213271 0.0188305 121 49 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.07 vpr 62.55 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1168 16215 4927 8621 2667 62.6 MiB 0.17 0.00 4.06506 -132.319 -4.06506 4.06506 0.70 0.00075739 0.000703434 0.0665363 0.0618521 32 2854 31 6.65987e+06 291594 554710. 1919.41 0.92 0.166431 0.14767 22834 132086 -1 2436 23 1857 2664 198929 45549 3.80211 3.80211 -145.358 -3.80211 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0335224 0.0293041 153 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.45 vpr 61.86 MiB -1 -1 0.18 17844 1 0.02 -1 -1 30532 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63348 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.3 MiB 0.09 802 7081 1675 4994 412 61.9 MiB 0.07 0.00 2.79204 -80.9584 -2.79204 2.79204 0.71 0.000522473 0.000486488 0.0232582 0.0217033 26 1852 21 6.65987e+06 228204 477104. 1650.88 0.71 0.0861993 0.0754588 21682 110474 -1 1626 21 816 1293 88054 21184 2.97711 2.97711 -106.249 -2.97711 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0219175 0.0190773 96 -1 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.19 vpr 62.86 MiB -1 -1 0.20 18180 1 0.03 -1 -1 30552 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.2 MiB 0.39 975 7201 1499 5200 502 62.9 MiB 0.09 0.00 3.3223 -110.271 -3.3223 3.3223 0.70 0.000774267 0.000719809 0.0278327 0.0258991 26 2529 23 6.65987e+06 418374 477104. 1650.88 1.03 0.120838 0.105696 21682 110474 -1 2113 23 1697 2419 178174 41975 3.62857 3.62857 -136.661 -3.62857 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0340145 0.029649 144 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.91 vpr 62.48 MiB -1 -1 0.20 18536 1 0.03 -1 -1 30448 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.9 MiB 0.21 878 12120 3764 6684 1672 62.5 MiB 0.12 0.00 2.8021 -102.92 -2.8021 2.8021 0.70 0.000709285 0.000658192 0.0530314 0.0492934 32 1968 23 6.65987e+06 202848 554710. 1919.41 0.83 0.138598 0.122629 22834 132086 -1 1803 20 1398 2015 157275 35397 2.95797 2.95797 -119.544 -2.95797 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0282013 0.0246395 115 93 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.04 vpr 62.42 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30612 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.8 MiB 0.31 1063 16511 4807 9266 2438 62.4 MiB 0.16 0.00 3.33475 -107.829 -3.33475 3.33475 0.70 0.000706768 0.000656504 0.0577315 0.053598 32 2362 19 6.65987e+06 393018 554710. 1919.41 0.82 0.138957 0.123316 22834 132086 -1 1876 18 950 1365 92021 21331 3.21151 3.21151 -118.388 -3.21151 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0259671 0.0227768 130 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.09 vpr 62.57 MiB -1 -1 0.19 18512 1 0.03 -1 -1 30596 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 0.30 1291 16127 4492 9131 2504 62.6 MiB 0.17 0.00 5.00309 -154.994 -5.00309 5.00309 0.70 0.000773457 0.000718624 0.0662916 0.061666 30 2864 21 6.65987e+06 316950 526063. 1820.29 0.87 0.15784 0.140491 22546 126617 -1 2460 22 1473 2212 134740 30730 4.80714 4.80714 -163.843 -4.80714 0 0 666494. 2306.21 0.19 0.08 0.12 -1 -1 0.19 0.0336921 0.0295153 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.59 vpr 61.73 MiB -1 -1 0.18 18208 1 0.02 -1 -1 30448 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63208 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.2 MiB 0.16 605 8022 1727 6036 259 61.7 MiB 0.07 0.00 2.57364 -78.6499 -2.57364 2.57364 0.70 0.000499037 0.000464839 0.0254298 0.0237161 30 1539 18 6.65987e+06 215526 526063. 1820.29 0.77 0.0826173 0.0726397 22546 126617 -1 1298 19 620 790 54651 13021 2.16671 2.16671 -83.4036 -2.16671 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0191282 0.0166552 86 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.65 vpr 62.12 MiB -1 -1 0.18 18084 1 0.03 -1 -1 30776 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63608 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.4 MiB 0.11 652 12196 3867 6239 2090 62.1 MiB 0.11 0.00 3.32135 -96.7087 -3.32135 3.32135 0.70 0.000605157 0.000556374 0.0463723 0.0429371 30 1550 19 6.65987e+06 202848 526063. 1820.29 0.78 0.114604 0.101349 22546 126617 -1 1314 20 770 1284 86107 20118 2.91997 2.91997 -103.603 -2.91997 0 0 666494. 2306.21 0.20 0.06 0.12 -1 -1 0.20 0.0238914 0.0208589 92 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.74 vpr 62.17 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30224 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.7 MiB 0.06 869 13849 3984 8340 1525 62.2 MiB 0.13 0.00 2.77684 -95.9395 -2.77684 2.77684 0.71 0.000623923 0.000580629 0.0503482 0.0466909 32 2145 24 6.65987e+06 266238 554710. 1919.41 0.87 0.126775 0.112195 22834 132086 -1 1895 20 1355 2377 196232 43583 2.73351 2.73351 -110.058 -2.73351 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0248938 0.0217494 115 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.80 vpr 61.83 MiB -1 -1 0.18 18148 1 0.02 -1 -1 30580 -1 -1 27 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63312 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.2 MiB 0.08 478 8868 2718 4101 2049 61.8 MiB 0.06 0.00 2.55958 -60.0902 -2.55958 2.55958 0.70 0.000486431 0.000446307 0.0250318 0.0231705 28 1434 23 6.65987e+06 342306 500653. 1732.36 1.05 0.0842691 0.0735964 21970 115934 -1 1172 22 765 1251 85661 22931 2.61145 2.61145 -74.8159 -2.61145 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0206 0.0178887 89 19 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.96 vpr 62.52 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30576 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1085 13260 3957 7838 1465 62.5 MiB 0.15 0.00 3.13278 -104.836 -3.13278 3.13278 0.70 0.00072669 0.000671815 0.0554273 0.0513114 28 2690 21 6.65987e+06 253560 500653. 1732.36 0.94 0.140647 0.124353 21970 115934 -1 2387 23 1595 2902 207741 46934 3.34405 3.34405 -122.939 -3.34405 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0321394 0.0280323 135 69 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.14 vpr 62.97 MiB -1 -1 0.17 18464 1 0.03 -1 -1 30460 -1 -1 33 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 24.3 MiB 0.34 836 8199 1622 6097 480 63.0 MiB 0.09 0.00 3.44501 -110.865 -3.44501 3.44501 0.71 0.000766535 0.000712292 0.0314728 0.0292584 28 2396 36 6.65987e+06 418374 500653. 1732.36 1.01 0.138132 0.120572 21970 115934 -1 1994 23 1545 2355 167427 45876 3.42303 3.42303 -131.32 -3.42303 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0337388 0.0294381 142 86 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.48 vpr 63.24 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30320 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 24.7 MiB 2.08 881 11324 4027 5472 1825 63.2 MiB 0.11 0.00 4.4212 -127.091 -4.4212 4.4212 0.72 0.000706379 0.000656731 0.0516489 0.0480712 44 2954 25 6.95648e+06 188184 787024. 2723.27 2.40 0.165368 0.145421 27778 195446 -1 1961 21 1348 2056 173493 37179 4.51591 4.51591 -151.708 -4.51591 0 0 997811. 3452.63 0.29 0.08 0.17 -1 -1 0.29 0.0293401 0.0256943 81 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.06 vpr 63.21 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30720 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 30 32 363 293 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 1.88 791 11161 4642 5937 582 63.2 MiB 0.11 0.00 3.91237 -118.609 -3.91237 3.91237 0.73 0.000705441 0.000655291 0.0509293 0.0473875 46 2572 25 6.95648e+06 217135 828058. 2865.25 2.13 0.196204 0.171221 28066 200906 -1 1875 22 1686 2334 179728 43774 4.51161 4.51161 -149.921 -4.51161 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0305811 0.0267007 80 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.88 vpr 63.09 MiB -1 -1 0.19 18068 1 0.03 -1 -1 30440 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.6 MiB 1.04 1029 14613 5406 7620 1587 63.1 MiB 0.12 0.00 3.10314 -104.055 -3.10314 3.10314 0.71 0.000622726 0.000579539 0.056395 0.0525108 38 2691 47 6.95648e+06 217135 678818. 2348.85 3.92 0.286695 0.248403 26626 170182 -1 2191 19 1308 1807 146070 30319 3.71982 3.71982 -126.702 -3.71982 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0244089 0.0213794 76 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.46 vpr 63.03 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30652 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.6 MiB 0.32 622 14700 6434 7463 803 63.0 MiB 0.12 0.00 3.50318 -96.3161 -3.50318 3.50318 0.73 0.000634085 0.000590008 0.0565947 0.0526415 44 2209 30 6.95648e+06 275038 787024. 2723.27 2.12 0.169212 0.148736 27778 195446 -1 1538 23 1346 2236 164029 38162 3.90511 3.90511 -116.687 -3.90511 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0282845 0.0246311 71 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.93 vpr 63.07 MiB -1 -1 0.19 18560 1 0.03 -1 -1 30480 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.5 MiB 0.71 733 11604 4109 5030 2465 63.1 MiB 0.11 0.00 3.54539 -105.515 -3.54539 3.54539 0.72 0.000683181 0.00063413 0.0487242 0.0452398 44 2579 32 6.95648e+06 231611 787024. 2723.27 4.22 0.294549 0.25479 27778 195446 -1 1848 23 1504 2604 209832 45948 4.10911 4.10911 -131.405 -4.10911 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0303176 0.0264661 73 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.35 vpr 63.20 MiB -1 -1 0.20 18488 1 0.03 -1 -1 30616 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.6 MiB 0.93 987 14965 5506 7245 2214 63.2 MiB 0.13 0.00 2.5393 -98.6165 -2.5393 2.5393 0.72 0.000719254 0.000668386 0.0606604 0.0564025 38 2401 23 6.95648e+06 303989 678818. 2348.85 2.44 0.202444 0.177436 26626 170182 -1 2099 21 1441 2172 177294 35863 3.08702 3.08702 -122.788 -3.08702 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0295229 0.0257995 79 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 9.00 vpr 62.69 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30856 -1 -1 13 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 24.2 MiB 4.00 477 8714 3575 4627 512 62.7 MiB 0.07 0.00 2.92458 -77.1037 -2.92458 2.92458 0.72 0.000558359 0.000520545 0.0345614 0.0322389 36 1850 47 6.95648e+06 188184 648988. 2245.63 2.30 0.164842 0.142876 26050 158493 -1 1282 15 853 1249 97207 22149 3.27127 3.27127 -99.6089 -3.27127 0 0 828058. 2865.25 0.21 0.03 0.10 -1 -1 0.21 0.0105488 0.00945138 52 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 10.28 vpr 62.82 MiB -1 -1 0.14 17892 1 0.03 -1 -1 30404 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.4 MiB 0.35 690 11593 4487 6287 819 62.8 MiB 0.09 0.00 2.41395 -78.1025 -2.41395 2.41395 0.72 0.000602982 0.000554597 0.037989 0.0353465 38 2055 45 6.95648e+06 361892 678818. 2348.85 6.93 0.269885 0.232464 26626 170182 -1 1647 25 1219 1995 261944 101820 2.89252 2.89252 -101.632 -2.89252 0 0 902133. 3121.57 0.27 0.12 0.15 -1 -1 0.27 0.0323633 0.0280308 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 13.40 vpr 62.97 MiB -1 -1 0.19 18460 1 0.04 -1 -1 30440 -1 -1 11 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.5 MiB 1.81 559 10459 3193 5148 2118 63.0 MiB 0.09 0.00 2.76819 -92.7181 -2.76819 2.76819 0.72 0.000637776 0.00059329 0.0450177 0.0418938 50 1733 48 6.95648e+06 159232 902133. 3121.57 8.60 0.326082 0.280163 28642 213929 -1 1327 18 1225 1710 121401 30905 3.62166 3.62166 -116.92 -3.62166 0 0 1.08113e+06 3740.92 0.28 0.06 0.18 -1 -1 0.28 0.0234689 0.0205476 66 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.28 vpr 62.84 MiB -1 -1 0.18 17972 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.2 MiB 1.09 562 8444 2332 4810 1302 62.8 MiB 0.08 0.00 2.79018 -93.5495 -2.79018 2.79018 0.72 0.000623087 0.000580185 0.0362353 0.0337757 38 1809 45 6.95648e+06 144757 678818. 2348.85 2.33 0.179469 0.155794 26626 170182 -1 1357 20 1219 1735 135263 29671 3.05882 3.05882 -116.302 -3.05882 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0250256 0.0218864 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.97 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30368 -1 -1 12 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.4 MiB 1.61 504 10769 4526 5806 437 63.0 MiB 0.09 0.00 2.79013 -84.2419 -2.79013 2.79013 0.72 0.000611326 0.000568463 0.0447444 0.0416293 38 1861 50 6.95648e+06 173708 678818. 2348.85 1.74 0.175005 0.152209 26626 170182 -1 1379 20 1156 1548 128001 31410 3.47697 3.47697 -108.002 -3.47697 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0244822 0.0213324 55 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 8.46 vpr 63.07 MiB -1 -1 0.19 18152 1 0.03 -1 -1 30292 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 1.29 620 11079 4617 6106 356 63.1 MiB 0.09 0.00 2.85923 -95.6109 -2.85923 2.85923 0.72 0.00059112 0.000550112 0.0443054 0.041285 50 1896 21 6.95648e+06 144757 902133. 3121.57 4.19 0.225483 0.195115 28642 213929 -1 1384 21 1078 1380 116935 28257 3.16097 3.16097 -121.114 -3.16097 0 0 1.08113e+06 3740.92 0.29 0.07 0.18 -1 -1 0.29 0.0247114 0.0215827 62 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 9.02 vpr 63.23 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30532 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 1.74 1062 14613 6085 6336 2192 63.2 MiB 0.13 0.00 3.17248 -109.223 -3.17248 3.17248 0.72 0.000690372 0.000641875 0.0623896 0.0580359 44 3052 50 6.95648e+06 217135 787024. 2723.27 4.25 0.300545 0.260917 27778 195446 -1 2341 22 1914 2887 271839 54151 3.47286 3.47286 -131.109 -3.47286 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0300358 0.0262722 83 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.45 vpr 63.20 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30584 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.6 MiB 0.81 845 9158 2946 4721 1491 63.2 MiB 0.09 0.00 3.62058 -112.716 -3.62058 3.62058 0.74 0.000711895 0.000660847 0.0373271 0.0346707 38 2476 26 6.95648e+06 318465 678818. 2348.85 3.67 0.255379 0.22052 26626 170182 -1 1974 22 1640 2332 198942 41672 3.98916 3.98916 -138.422 -3.98916 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0302342 0.0263903 75 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.02 vpr 62.63 MiB -1 -1 0.18 18240 1 0.02 -1 -1 30660 -1 -1 13 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 1.15 467 9064 3757 4873 434 62.6 MiB 0.07 0.00 2.6566 -73.6859 -2.6566 2.6566 0.72 0.000542678 0.000505177 0.0334681 0.0311725 42 1988 50 6.95648e+06 188184 744469. 2576.02 2.01 0.162384 0.140484 27202 183097 -1 1248 20 984 1467 118591 30304 3.24647 3.24647 -97.9306 -3.24647 0 0 949917. 3286.91 0.25 0.06 0.19 -1 -1 0.25 0.0215698 0.0187874 55 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.25 vpr 63.23 MiB -1 -1 0.19 18480 1 0.03 -1 -1 30508 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 24.7 MiB 1.01 796 10931 4551 5944 436 63.2 MiB 0.10 0.00 2.6756 -95.5869 -2.6756 2.6756 0.72 0.000323579 0.000296772 0.0465049 0.0429081 40 2764 34 6.95648e+06 246087 706193. 2443.58 3.25 0.203137 0.176479 26914 176310 -1 2167 25 1771 2811 339595 87910 3.37557 3.37557 -133.176 -3.37557 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0342711 0.0298622 76 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 13.20 vpr 63.16 MiB -1 -1 0.18 18288 1 0.03 -1 -1 30360 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 1.82 759 12030 4233 5733 2064 63.2 MiB 0.11 0.00 3.53151 -110.805 -3.53151 3.53151 0.72 0.000684238 0.000636199 0.0521191 0.0485081 50 1944 27 6.95648e+06 202660 902133. 3121.57 8.34 0.329129 0.284212 28642 213929 -1 1444 23 1456 1956 123428 31783 3.56522 3.56522 -126.327 -3.56522 0 0 1.08113e+06 3740.92 0.29 0.08 0.19 -1 -1 0.29 0.0310772 0.0272102 79 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.15 vpr 63.15 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30464 -1 -1 9 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.5 MiB 0.81 689 11929 3554 6500 1875 63.1 MiB 0.11 0.00 1.91376 -77.1756 -1.91376 1.91376 0.72 0.000644891 0.000599755 0.0531498 0.0494419 40 1869 21 6.95648e+06 130281 706193. 2443.58 1.45 0.15511 0.136356 26914 176310 -1 1679 21 1204 1812 179129 35384 2.37413 2.37413 -100.79 -2.37413 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0265488 0.0230837 57 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.76 vpr 62.56 MiB -1 -1 0.18 18248 1 0.02 -1 -1 30304 -1 -1 9 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 222 206 1 116 71 17 17 289 -1 unnamed_device 23.9 MiB 0.33 394 7809 3226 4314 269 62.6 MiB 0.06 0.00 1.85256 -63.0645 -1.85256 1.85256 0.75 0.000501994 0.000466753 0.0283028 0.026358 38 1566 32 6.95648e+06 130281 678818. 2348.85 1.59 0.116404 0.100999 26626 170182 -1 1168 19 714 909 81267 19724 2.38308 2.38308 -87.5869 -2.38308 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0188874 0.016452 43 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.64 vpr 63.07 MiB -1 -1 0.19 18248 1 0.03 -1 -1 30592 -1 -1 12 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.6 MiB 1.98 875 8607 2665 5287 655 63.1 MiB 0.08 0.00 3.36378 -111.353 -3.36378 3.36378 0.72 0.000609119 0.000566528 0.0354297 0.0330249 38 2217 31 6.95648e+06 173708 678818. 2348.85 1.76 0.142313 0.124016 26626 170182 -1 1993 24 1683 2241 217544 45615 3.82376 3.82376 -141.858 -3.82376 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0282061 0.024534 69 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.10 MiB -1 -1 0.19 18280 1 0.03 -1 -1 30596 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.6 MiB 0.61 842 13992 5887 7784 321 63.1 MiB 0.12 0.00 3.04869 -102.648 -3.04869 3.04869 0.72 0.000694035 0.000645859 0.0556518 0.0517421 38 2286 23 6.95648e+06 289514 678818. 2348.85 1.75 0.165061 0.145323 26626 170182 -1 1899 24 1606 2296 186578 40289 4.18666 4.18666 -144.979 -4.18666 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0317939 0.0277441 75 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.79 vpr 63.33 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30524 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.7 MiB 1.29 847 14022 5063 6921 2038 63.3 MiB 0.13 0.00 3.8447 -112.293 -3.8447 3.8447 0.72 0.000724006 0.000673181 0.0642513 0.0598078 52 2740 34 6.95648e+06 202660 926341. 3205.33 2.36 0.19748 0.173579 29218 227130 -1 1734 25 1400 2221 222544 48207 4.12272 4.12272 -133.096 -4.12272 0 0 1.14541e+06 3963.36 0.30 0.09 0.22 -1 -1 0.30 0.0342612 0.0298771 82 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.68 vpr 62.59 MiB -1 -1 0.18 17756 1 0.02 -1 -1 30800 -1 -1 13 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 24.0 MiB 0.81 312 10291 4337 5270 684 62.6 MiB 0.07 0.00 1.86056 -53.1258 -1.86056 1.86056 0.72 0.00042529 0.000395436 0.0315426 0.0293482 38 969 28 6.95648e+06 188184 678818. 2348.85 3.08 0.172116 0.148281 26626 170182 -1 724 16 511 614 46505 11666 2.12038 2.12038 -68.9545 -2.12038 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0146698 0.0128506 44 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.17 vpr 62.93 MiB -1 -1 0.18 17936 1 0.03 -1 -1 30504 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.2 MiB 0.68 811 7684 1820 4857 1007 62.9 MiB 0.07 0.00 3.81446 -100.658 -3.81446 3.81446 0.72 0.000614852 0.000572682 0.0300559 0.0280286 36 2544 50 6.95648e+06 217135 648988. 2245.63 3.56 0.176977 0.153185 26050 158493 -1 2072 19 1274 2039 265006 60913 3.85816 3.85816 -128.839 -3.85816 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0240024 0.021023 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.38 vpr 62.25 MiB -1 -1 0.17 17520 1 0.02 -1 -1 30288 -1 -1 8 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.7 MiB 0.26 365 9757 3621 4371 1765 62.3 MiB 0.07 0.00 1.77736 -57.3321 -1.77736 1.77736 0.72 0.000420868 0.000390832 0.0290846 0.0270372 38 1099 22 6.95648e+06 115805 678818. 2348.85 1.36 0.11246 0.097954 26626 170182 -1 813 17 582 664 47768 12499 1.96508 1.96508 -71.9298 -1.96508 0 0 902133. 3121.57 0.23 0.04 0.14 -1 -1 0.23 0.0150755 0.0132115 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.64 vpr 62.88 MiB -1 -1 0.18 18268 1 0.03 -1 -1 30484 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.4 MiB 0.88 883 14444 4779 8276 1389 62.9 MiB 0.13 0.00 3.67085 -106.418 -3.67085 3.67085 0.73 0.000634833 0.000591197 0.0568734 0.0529698 38 2389 39 6.95648e+06 217135 678818. 2348.85 2.76 0.198444 0.17372 26626 170182 -1 1988 21 1377 2185 162042 33109 3.66336 3.66336 -126.291 -3.66336 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0263211 0.0229752 68 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 10.88 vpr 63.02 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30684 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.6 MiB 0.47 746 11803 4439 5667 1697 63.0 MiB 0.09 0.00 2.4561 -82.9741 -2.4561 2.4561 0.72 0.000634821 0.000589414 0.0427256 0.0397578 38 2445 43 6.95648e+06 303989 678818. 2348.85 7.52 0.30018 0.258865 26626 170182 -1 1671 19 1326 2076 151957 36256 3.05897 3.05897 -110.325 -3.05897 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0246455 0.0216219 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.78 vpr 63.10 MiB -1 -1 0.18 18440 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 817 15383 6608 8304 471 63.1 MiB 0.13 0.00 3.73483 -109.744 -3.73483 3.73483 0.72 0.000674271 0.000626467 0.0603895 0.0561872 46 2352 20 6.95648e+06 275038 828058. 2865.25 4.01 0.261139 0.226667 28066 200906 -1 1931 20 1279 1979 153982 33636 4.16181 4.16181 -134.311 -4.16181 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0270919 0.0236921 72 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 7.66 vpr 62.82 MiB -1 -1 0.16 18032 1 0.03 -1 -1 30416 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.3 MiB 0.83 539 12164 5242 6584 338 62.8 MiB 0.10 0.00 2.67985 -77.8742 -2.67985 2.67985 0.73 0.000602844 0.000560855 0.0495509 0.0461294 44 1941 44 6.95648e+06 144757 787024. 2723.27 3.94 0.246923 0.213682 27778 195446 -1 1407 21 1058 1591 115844 28423 3.08032 3.08032 -104.702 -3.08032 0 0 997811. 3452.63 0.26 0.06 0.16 -1 -1 0.26 0.0248658 0.0216707 55 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.72 vpr 62.74 MiB -1 -1 0.18 18024 1 0.03 -1 -1 30660 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.2 MiB 0.23 517 11776 4911 6304 561 62.7 MiB 0.09 0.00 2.86043 -80.4834 -2.86043 2.86043 0.72 0.000569386 0.000530249 0.0408494 0.0380468 40 1479 20 6.95648e+06 260562 706193. 2443.58 1.63 0.139591 0.122124 26914 176310 -1 1137 18 767 1099 99141 23483 2.79862 2.79862 -96.1847 -2.79862 0 0 926341. 3205.33 0.24 0.05 0.15 -1 -1 0.24 0.0207533 0.0181392 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.37 vpr 62.63 MiB -1 -1 0.18 18268 1 0.03 -1 -1 30380 -1 -1 16 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.2 MiB 0.45 455 11116 3646 5381 2089 62.6 MiB 0.09 0.00 2.5594 -73.0136 -2.5594 2.5594 0.72 0.000558803 0.000521236 0.0407685 0.0379227 52 1214 24 6.95648e+06 231611 926341. 3205.33 1.94 0.15188 0.13234 29218 227130 -1 986 22 972 1536 111428 29230 2.92252 2.92252 -90.5365 -2.92252 0 0 1.14541e+06 3963.36 0.31 0.06 0.19 -1 -1 0.31 0.0239255 0.0207844 57 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 12.68 vpr 62.71 MiB -1 -1 0.17 17740 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.2 MiB 0.41 548 8444 3460 4719 265 62.7 MiB 0.07 0.00 2.79923 -89.2107 -2.79923 2.79923 0.72 0.000566235 0.000527333 0.032887 0.0306399 44 1794 27 6.95648e+06 144757 787024. 2723.27 9.31 0.266844 0.229349 27778 195446 -1 1395 22 1100 1544 123864 30370 3.08097 3.08097 -114.745 -3.08097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0244379 0.021302 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.55 vpr 62.78 MiB -1 -1 0.19 18028 1 0.03 -1 -1 30336 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.35 577 10228 3042 5864 1322 62.8 MiB 0.08 0.00 2.5656 -81.1429 -2.5656 2.5656 0.72 0.000585714 0.000544914 0.0356125 0.033133 38 2108 48 6.95648e+06 275038 678818. 2348.85 2.32 0.149907 0.13031 26626 170182 -1 1401 20 1114 1761 149880 32897 3.12927 3.12927 -102.897 -3.12927 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0232766 0.0202715 61 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.18 vpr 62.80 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30600 -1 -1 12 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.2 MiB 1.09 664 12993 5517 6970 506 62.8 MiB 0.11 0.00 2.4721 -85.2591 -2.4721 2.4721 0.72 0.000599788 0.000557668 0.0532482 0.0495735 38 1998 25 6.95648e+06 173708 678818. 2348.85 2.19 0.166597 0.145978 26626 170182 -1 1654 21 1241 1730 136674 29942 2.50767 2.50767 -100.213 -2.50767 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0250845 0.0218809 61 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 19.74 vpr 63.50 MiB -1 -1 0.19 18352 1 0.03 -1 -1 30764 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.8 MiB 0.80 874 13105 5117 5856 2132 63.5 MiB 0.11 0.00 3.40128 -99.8589 -3.40128 3.40128 0.72 0.000737912 0.000684988 0.0543404 0.0505143 44 3059 45 6.95648e+06 303989 787024. 2723.27 15.92 0.384583 0.332438 27778 195446 -1 2082 23 1463 2388 191462 47690 4.25702 4.25702 -130.748 -4.25702 0 0 997811. 3452.63 0.27 0.09 0.17 -1 -1 0.27 0.0337588 0.0295236 84 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.96 vpr 63.23 MiB -1 -1 0.19 18312 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.6 MiB 1.02 755 13933 5264 6834 1835 63.2 MiB 0.13 0.00 2.81508 -97.5119 -2.81508 2.81508 0.72 0.000755956 0.000702164 0.0568841 0.0528043 40 2461 30 6.95648e+06 347416 706193. 2443.58 3.92 0.317295 0.274695 26914 176310 -1 2021 23 1826 2602 242811 54232 3.40952 3.40952 -127.912 -3.40952 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0333188 0.0290793 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 8.24 vpr 63.09 MiB -1 -1 0.18 18192 1 0.02 -1 -1 30336 -1 -1 11 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.5 MiB 1.69 792 9219 3785 5131 303 63.1 MiB 0.08 0.00 3.28867 -106.879 -3.28867 3.28867 0.72 0.000584073 0.000542681 0.0369447 0.0343693 42 2088 38 6.95648e+06 159232 744469. 2576.02 3.71 0.217794 0.187815 27202 183097 -1 1829 21 1291 1843 186624 36698 3.60242 3.60242 -129.586 -3.60242 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0247368 0.021549 63 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.46 vpr 63.25 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30612 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.7 MiB 0.78 911 11233 4701 6194 338 63.3 MiB 0.11 0.00 2.97779 -99.9314 -2.97779 2.97779 0.73 0.000717964 0.000666305 0.0505907 0.04704 44 2301 41 6.95648e+06 231611 787024. 2723.27 3.66 0.291492 0.252098 27778 195446 -1 1820 22 1456 2220 182899 38897 3.72277 3.72277 -117.881 -3.72277 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0309968 0.0270651 76 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 10.48 vpr 63.49 MiB -1 -1 0.21 18512 1 0.03 -1 -1 30580 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 24.9 MiB 2.07 974 13261 5378 6260 1623 63.5 MiB 0.13 0.00 4.64566 -142.703 -4.64566 4.64566 0.73 0.000728025 0.000676846 0.060453 0.0562664 58 2811 27 6.95648e+06 231611 997811. 3452.63 5.19 0.345934 0.299302 30370 251734 -1 2222 24 2205 3248 309776 64188 4.9514 4.9514 -171.596 -4.9514 0 0 1.25153e+06 4330.55 0.32 0.11 0.22 -1 -1 0.32 0.0341221 0.0298114 97 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 8.93 vpr 63.47 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30696 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64992 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 25.0 MiB 2.46 835 15120 6584 7826 710 63.5 MiB 0.14 0.00 3.83514 -120.302 -3.83514 3.83514 0.72 0.00073593 0.00068343 0.0687136 0.0638519 46 2905 44 6.95648e+06 231611 828058. 2865.25 3.42 0.239983 0.209951 28066 200906 -1 2169 20 1723 2475 204569 47805 4.47206 4.47206 -152.805 -4.47206 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0300913 0.0264061 88 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.60 vpr 63.10 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30604 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.6 MiB 1.19 826 14779 5675 7211 1893 63.1 MiB 0.13 0.00 3.44517 -107.539 -3.44517 3.44517 0.71 0.000697732 0.00064865 0.057978 0.0539333 46 2229 24 6.95648e+06 318465 828058. 2865.25 2.34 0.195981 0.171782 28066 200906 -1 1846 22 1419 2142 179229 38430 3.72146 3.72146 -129.009 -3.72146 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0298167 0.0260289 78 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 6.07 vpr 63.12 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30532 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.6 MiB 1.17 727 12860 4967 6188 1705 63.1 MiB 0.11 0.00 3.40898 -94.1517 -3.40898 3.40898 0.76 0.000617886 0.000574535 0.0502017 0.0466911 50 2215 27 6.95648e+06 202660 902133. 3121.57 1.84 0.152631 0.133932 28642 213929 -1 1688 20 1318 1806 154161 34797 3.83911 3.83911 -117.784 -3.83911 0 0 1.08113e+06 3740.92 0.29 0.07 0.18 -1 -1 0.29 0.0249812 0.0218501 71 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 8.97 vpr 63.84 MiB -1 -1 0.22 18740 1 0.03 -1 -1 30668 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 25.1 MiB 1.55 928 16907 6069 8568 2270 63.8 MiB 0.17 0.00 3.98456 -131.022 -3.98456 3.98456 0.73 0.000864731 0.000801476 0.0809124 0.0750666 48 2556 32 6.95648e+06 318465 865456. 2994.66 4.25 0.355564 0.308626 28354 207349 -1 2139 21 1826 2600 211155 47234 4.74831 4.74831 -158.896 -4.74831 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0355574 0.0310569 93 84 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.76 vpr 62.89 MiB -1 -1 0.18 18272 1 0.03 -1 -1 30440 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.3 MiB 0.72 518 10702 3038 5758 1906 62.9 MiB 0.08 0.00 2.73795 -79.0651 -2.73795 2.73795 0.72 0.000564923 0.000525523 0.038427 0.035769 38 1464 35 6.95648e+06 217135 678818. 2348.85 3.27 0.205798 0.177706 26626 170182 -1 1118 20 884 1268 74638 18791 3.19627 3.19627 -99.8734 -3.19627 0 0 902133. 3121.57 0.23 0.05 0.15 -1 -1 0.23 0.0225477 0.0196546 56 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 8.87 vpr 63.17 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30372 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.6 MiB 1.19 841 13358 5793 6972 593 63.2 MiB 0.12 0.00 3.94062 -121.693 -3.94062 3.94062 0.72 0.000686087 0.000637426 0.0573769 0.0533778 54 2286 33 6.95648e+06 217135 949917. 3286.91 4.55 0.272539 0.236816 29506 232905 -1 1689 24 1549 2242 204195 49066 4.53186 4.53186 -148.439 -4.53186 0 0 1.17392e+06 4061.99 0.32 0.09 0.20 -1 -1 0.32 0.028652 0.0253166 84 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 15.85 vpr 63.18 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30436 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.6 MiB 0.98 908 15656 6774 8530 352 63.2 MiB 0.16 0.00 2.70675 -96.0827 -2.70675 2.70675 0.72 0.000903459 0.000840746 0.0702813 0.0653196 40 2728 24 6.95648e+06 246087 706193. 2443.58 11.81 0.34501 0.298951 26914 176310 -1 2385 23 1734 2809 289244 59854 3.62752 3.62752 -129.787 -3.62752 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0306424 0.0267098 73 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 16.41 vpr 63.02 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30308 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 0.88 700 9712 2856 5070 1786 63.0 MiB 0.09 0.00 3.72678 -98.3034 -3.72678 3.72678 0.72 0.000630069 0.000586477 0.0376892 0.0351109 40 2439 39 6.95648e+06 231611 706193. 2443.58 12.55 0.312072 0.268735 26914 176310 -1 2029 24 1483 2574 322319 68559 4.04767 4.04767 -138.413 -4.04767 0 0 926341. 3205.33 0.24 0.10 0.17 -1 -1 0.24 0.0289887 0.0252564 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.56 vpr 63.18 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30560 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 2.46 839 12030 5018 6529 483 63.2 MiB 0.11 0.00 3.28085 -102.866 -3.28085 3.28085 0.72 0.000701258 0.000652174 0.0534918 0.0498087 44 2421 36 6.95648e+06 202660 787024. 2723.27 2.10 0.184563 0.161949 27778 195446 -1 1702 20 1243 1770 121559 29024 3.77596 3.77596 -132.051 -3.77596 0 0 997811. 3452.63 0.26 0.07 0.16 -1 -1 0.26 0.0281618 0.0246725 78 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 7.76 vpr 63.24 MiB -1 -1 0.16 18240 1 0.03 -1 -1 30524 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 24.7 MiB 1.62 708 11456 4717 6238 501 63.2 MiB 0.10 0.00 2.6085 -91.2293 -2.6085 2.6085 0.72 0.000713694 0.000658185 0.0490914 0.0456268 48 2258 49 6.95648e+06 246087 865456. 2994.66 3.10 0.218765 0.190429 28354 207349 -1 1692 42 1924 2976 498451 228292 3.03087 3.03087 -114.069 -3.03087 0 0 1.05005e+06 3633.38 0.27 0.18 0.18 -1 -1 0.27 0.051537 0.0445888 75 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.11 vpr 63.40 MiB -1 -1 0.19 18324 1 0.03 -1 -1 30508 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 24.8 MiB 0.89 975 15768 5178 8147 2443 63.4 MiB 0.14 0.00 3.29648 -110.565 -3.29648 3.29648 0.72 0.000754408 0.00070123 0.0609787 0.0566747 38 2851 39 6.95648e+06 376368 678818. 2348.85 3.30 0.197111 0.172895 26626 170182 -1 2138 20 1388 1989 159657 32059 3.61822 3.61822 -135.977 -3.61822 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0292685 0.0256076 83 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 12.82 vpr 62.97 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30536 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.5 MiB 0.93 793 12182 4369 5126 2687 63.0 MiB 0.10 0.00 3.63883 -97.2819 -3.63883 3.63883 0.73 0.000637038 0.000591612 0.0433617 0.0402859 40 2226 23 6.95648e+06 318465 706193. 2443.58 8.94 0.298841 0.257339 26914 176310 -1 1826 23 1317 2195 187871 40728 3.97337 3.97337 -124.1 -3.97337 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0283526 0.0247034 69 21 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.94 vpr 63.38 MiB -1 -1 0.18 18444 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.8 MiB 2.26 788 9694 3973 5384 337 63.4 MiB 0.09 0.00 3.53127 -106.53 -3.53127 3.53127 0.72 0.000657439 0.000611686 0.0415056 0.0386499 42 2902 43 6.95648e+06 188184 744469. 2576.02 1.72 0.167536 0.146333 27202 183097 -1 1900 24 1718 2264 191950 44133 4.27601 4.27601 -136.475 -4.27601 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.03033 0.0264459 79 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 20.39 vpr 63.41 MiB -1 -1 0.20 18536 1 0.03 -1 -1 30412 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.8 MiB 1.35 893 12196 5149 6693 354 63.4 MiB 0.12 0.00 3.65997 -117.175 -3.65997 3.65997 0.75 0.0007227 0.000671667 0.0551247 0.0512212 42 3295 33 6.95648e+06 217135 744469. 2576.02 15.88 0.342768 0.296258 27202 183097 -1 2387 34 2486 4053 636333 182141 4.75492 4.75492 -148.027 -4.75492 0 0 949917. 3286.91 0.25 0.19 0.16 -1 -1 0.25 0.04423 0.0383484 85 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 20.70 vpr 63.40 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30488 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 24.8 MiB 2.14 916 13280 4868 6811 1601 63.4 MiB 0.13 0.00 3.41 -113.664 -3.41 3.41 0.72 0.000738925 0.000686854 0.0629654 0.0585888 40 3047 26 6.95648e+06 188184 706193. 2443.58 15.50 0.367924 0.318937 26914 176310 -1 2664 21 1629 2691 344189 71528 4.52976 4.52976 -149.222 -4.52976 0 0 926341. 3205.33 0.24 0.11 0.16 -1 -1 0.24 0.0307123 0.0268476 76 74 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 7.00 vpr 62.61 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.1 MiB 0.26 611 11474 4764 6424 286 62.6 MiB 0.09 0.00 2.50468 -77.473 -2.50468 2.50468 0.74 0.000564143 0.000525161 0.0383063 0.0356505 42 1851 39 6.95648e+06 260562 744469. 2576.02 3.74 0.210609 0.181781 27202 183097 -1 1486 22 1108 1693 145640 31651 2.97582 2.97582 -100.577 -2.97582 0 0 949917. 3286.91 0.25 0.07 0.16 -1 -1 0.25 0.023809 0.020715 57 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 8.74 vpr 63.14 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30604 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.6 MiB 1.31 792 9676 3979 5527 170 63.1 MiB 0.09 0.00 3.24955 -116.703 -3.24955 3.24955 0.72 0.000678179 0.000630338 0.0431897 0.0402184 44 2608 45 6.95648e+06 173708 787024. 2723.27 4.48 0.316674 0.272744 27778 195446 -1 1903 19 1418 2009 174158 37150 3.60582 3.60582 -138.693 -3.60582 0 0 997811. 3452.63 0.26 0.07 0.16 -1 -1 0.26 0.02583 0.0225694 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 7.90 vpr 63.46 MiB -1 -1 0.20 18568 1 0.03 -1 -1 30540 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 25.0 MiB 1.71 1250 12120 4663 5914 1543 63.5 MiB 0.13 0.00 4.14402 -134.568 -4.14402 4.14402 0.71 0.000758289 0.000704444 0.0565615 0.0526271 44 3537 40 6.95648e+06 231611 787024. 2723.27 3.11 0.228447 0.199971 27778 195446 -1 2846 20 2033 3114 293040 57011 4.76326 4.76326 -166.453 -4.76326 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0310522 0.0272961 97 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 7.92 vpr 63.23 MiB -1 -1 0.19 18328 1 0.03 -1 -1 30616 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.7 MiB 0.90 703 15481 5944 6756 2781 63.2 MiB 0.13 0.00 3.65681 -114.437 -3.65681 3.65681 0.72 0.000688862 0.000639966 0.0635882 0.0591296 46 2252 28 6.95648e+06 246087 828058. 2865.25 4.03 0.273345 0.237894 28066 200906 -1 1648 21 1229 1690 132937 31354 3.61536 3.61536 -134.597 -3.61536 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0286203 0.0250323 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.77 vpr 62.95 MiB -1 -1 0.19 18064 1 0.03 -1 -1 30720 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.3 MiB 0.47 493 11296 4038 5246 2012 62.9 MiB 0.09 0.00 2.5502 -80.9265 -2.5502 2.5502 0.71 0.000592578 0.000550595 0.0398337 0.03711 44 1960 34 6.95648e+06 289514 787024. 2723.27 2.39 0.167958 0.146309 27778 195446 -1 1279 21 1070 1577 125992 31017 2.80037 2.80037 -101.151 -2.80037 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0242194 0.0210868 62 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.59 vpr 63.82 MiB -1 -1 0.21 18756 1 0.03 -1 -1 30608 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.3 MiB 1.70 1117 11740 3694 7229 817 63.8 MiB 0.13 0.00 4.77419 -139.583 -4.77419 4.77419 0.75 0.000829937 0.000771747 0.0607756 0.0565976 50 2648 38 6.95648e+06 217135 902133. 3121.57 4.74 0.355843 0.307879 28642 213929 -1 2158 23 1749 2623 223520 46967 5.36395 5.36395 -166.949 -5.36395 0 0 1.08113e+06 3740.92 0.28 0.10 0.18 -1 -1 0.28 0.0370061 0.0323728 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 8.10 vpr 63.13 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30664 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.6 MiB 1.23 744 13527 5190 6116 2221 63.1 MiB 0.12 0.00 3.8791 -110.943 -3.8791 3.8791 0.72 0.000686849 0.000638634 0.0509992 0.0474657 42 2283 42 6.95648e+06 332941 744469. 2576.02 3.89 0.298889 0.258908 27202 183097 -1 1805 22 1466 2135 169959 36873 4.12171 4.12171 -133.485 -4.12171 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0294647 0.0257565 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.02 vpr 62.54 MiB -1 -1 0.17 17748 1 0.02 -1 -1 30668 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.1 MiB 0.26 524 9531 3262 4735 1534 62.5 MiB 0.08 0.00 2.4091 -75.5035 -2.4091 2.4091 0.75 0.000537768 0.000500586 0.0332958 0.0310143 46 1392 22 6.95648e+06 188184 828058. 2865.25 3.80 0.197398 0.170053 28066 200906 -1 1045 23 989 1503 91421 23803 2.81257 2.81257 -90.1313 -2.81257 0 0 1.01997e+06 3529.29 0.28 0.06 0.18 -1 -1 0.28 0.0236589 0.0205555 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 6.07 vpr 63.15 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30416 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.6 MiB 0.51 970 15883 6338 7924 1621 63.2 MiB 0.14 0.00 4.09207 -110.193 -4.09207 4.09207 0.72 0.000707944 0.000655624 0.0601716 0.0558783 38 3230 45 6.95648e+06 347416 678818. 2348.85 2.55 0.19309 0.169597 26626 170182 -1 2467 23 1802 3231 310569 62185 4.82281 4.82281 -146.641 -4.82281 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0312975 0.0273141 80 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.40 vpr 62.81 MiB -1 -1 0.19 17956 1 0.03 -1 -1 30232 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.3 MiB 0.90 494 11366 4106 5307 1953 62.8 MiB 0.09 0.00 2.6034 -82.9973 -2.6034 2.6034 0.76 0.000561153 0.000522458 0.0399918 0.0372585 40 1684 28 6.95648e+06 202660 706193. 2443.58 3.55 0.230084 0.198528 26914 176310 -1 1403 23 1364 1889 151456 37747 3.32957 3.32957 -115.657 -3.32957 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0248199 0.0216055 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 11.13 vpr 63.02 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30756 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.4 MiB 0.88 571 9205 3778 5043 384 63.0 MiB 0.08 0.00 2.93563 -88.4965 -2.93563 2.93563 0.74 0.00059114 0.000550272 0.0342789 0.0319279 36 2429 43 6.95648e+06 246087 648988. 2245.63 7.33 0.236894 0.203647 26050 158493 -1 1611 22 1284 1918 176390 38340 3.09017 3.09017 -110.25 -3.09017 0 0 828058. 2865.25 0.27 0.08 0.14 -1 -1 0.27 0.0256626 0.0223477 60 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 6.71 vpr 63.24 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30620 -1 -1 16 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64760 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1011 13932 6097 7158 677 63.2 MiB 0.13 0.00 3.07379 -102.002 -3.07379 3.07379 0.72 0.000703226 0.000653864 0.0626687 0.0583748 40 2796 28 6.95648e+06 231611 706193. 2443.58 2.32 0.20449 0.179367 26914 176310 -1 2483 25 2060 3025 328085 64367 3.98003 3.98003 -141.2 -3.98003 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.0330468 0.0287871 80 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.06 vpr 63.16 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 24.6 MiB 1.20 672 12636 4375 5767 2494 63.2 MiB 0.11 0.00 3.91028 -109.879 -3.91028 3.91028 0.72 0.000709345 0.000659378 0.0543445 0.0505187 46 2098 39 6.95648e+06 231611 828058. 2865.25 1.83 0.196933 0.172204 28066 200906 -1 1545 46 1850 2726 182442 46154 4.34817 4.34817 -140.621 -4.34817 0 0 1.01997e+06 3529.29 0.26 0.12 0.17 -1 -1 0.26 0.054979 0.0474567 72 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 7.24 vpr 63.20 MiB -1 -1 0.18 18468 1 0.03 -1 -1 30576 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.7 MiB 1.71 818 11698 4892 6539 267 63.2 MiB 0.11 0.00 3.82419 -117.798 -3.82419 3.82419 0.72 0.000705468 0.000656433 0.0521226 0.0485175 40 2687 45 6.95648e+06 202660 706193. 2443.58 2.49 0.212902 0.185868 26914 176310 -1 2321 30 1929 3126 388375 95627 4.27456 4.27456 -149.788 -4.27456 0 0 926341. 3205.33 0.24 0.13 0.17 -1 -1 0.24 0.0389238 0.0337134 73 48 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 15.15 vpr 63.00 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30700 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.4 MiB 2.75 701 9374 3882 5196 296 63.0 MiB 0.09 0.00 3.30448 -104.32 -3.30448 3.30448 0.72 0.000587294 0.000546676 0.0378522 0.0352662 40 2064 28 6.95648e+06 144757 706193. 2443.58 9.47 0.269517 0.231827 26914 176310 -1 1607 30 1329 1705 312624 122777 3.73151 3.73151 -127.023 -3.73151 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0323515 0.0279837 61 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.02 vpr 62.98 MiB -1 -1 0.20 18376 1 0.03 -1 -1 30584 -1 -1 12 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.6 MiB 1.87 667 11135 4728 6057 350 63.0 MiB 0.10 0.00 3.15532 -100.248 -3.15532 3.15532 0.73 0.000637511 0.00059238 0.0477498 0.0444483 40 2412 30 6.95648e+06 173708 706193. 2443.58 2.16 0.180313 0.157109 26914 176310 -1 1950 23 1562 2232 202054 44201 3.34057 3.34057 -125.714 -3.34057 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0282706 0.0245938 68 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 6.47 vpr 63.11 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30632 -1 -1 22 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.6 MiB 0.76 713 11247 4291 5268 1688 63.1 MiB 0.09 0.00 2.4971 -77.8648 -2.4971 2.4971 0.74 0.000659635 0.000611222 0.0427813 0.0397625 36 2602 46 6.95648e+06 318465 648988. 2245.63 2.78 0.19065 0.165706 26050 158493 -1 1831 18 1231 1898 161672 35948 3.10397 3.10397 -107.14 -3.10397 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0242989 0.0212589 71 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 5.17 vpr 62.91 MiB -1 -1 0.19 18068 1 0.03 -1 -1 30512 -1 -1 28 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.5 MiB 0.54 709 9643 2719 5410 1514 62.9 MiB 0.08 0.00 2.98569 -81.1818 -2.98569 2.98569 0.72 0.000592429 0.00055217 0.031141 0.0289777 44 1705 23 6.95648e+06 405319 787024. 2723.27 1.73 0.137739 0.119786 27778 195446 -1 1389 21 1059 1739 119423 27856 3.68686 3.68686 -104.754 -3.68686 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0242667 0.0210989 72 20 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 5.30 vpr 62.96 MiB -1 -1 0.18 18564 1 0.03 -1 -1 30700 -1 -1 12 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.5 MiB 0.76 577 11234 4698 6083 453 63.0 MiB 0.10 0.00 2.79633 -89.5025 -2.79633 2.79633 0.72 0.000635133 0.000590545 0.0482624 0.0449048 38 2000 47 6.95648e+06 173708 678818. 2348.85 1.63 0.17518 0.152908 26626 170182 -1 1466 23 1401 1963 146027 33434 3.17412 3.17412 -114.274 -3.17412 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0281935 0.0245368 60 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.17 vpr 63.08 MiB -1 -1 0.18 18536 1 0.03 -1 -1 30384 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.6 MiB 1.44 653 12873 4955 6295 1623 63.1 MiB 0.11 0.00 2.80395 -98.1106 -2.80395 2.80395 0.73 0.000662006 0.000615205 0.0564508 0.0525095 50 2149 49 6.95648e+06 159232 902133. 3121.57 2.75 0.212641 0.185501 28642 213929 -1 1564 20 1386 2017 153228 37158 3.34557 3.34557 -120.281 -3.34557 0 0 1.08113e+06 3740.92 0.28 0.07 0.18 -1 -1 0.28 0.0266698 0.0233596 72 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 7.88 vpr 63.25 MiB -1 -1 0.18 17792 1 0.03 -1 -1 30736 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64768 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.8 MiB 0.39 742 12183 4232 5803 2148 63.2 MiB 0.09 0.00 3.89128 -102.316 -3.89128 3.89128 0.72 0.000629148 0.000585462 0.0422428 0.0393314 54 1930 25 6.95648e+06 347416 949917. 3286.91 4.43 0.262757 0.226779 29506 232905 -1 1578 22 1129 1938 170521 37801 3.79702 3.79702 -116.988 -3.79702 0 0 1.17392e+06 4061.99 0.30 0.08 0.20 -1 -1 0.30 0.0270437 0.0236048 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.07 vpr 63.32 MiB -1 -1 0.19 18472 1 0.03 -1 -1 30672 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 24.6 MiB 1.67 840 13606 5284 6859 1463 63.3 MiB 0.13 0.00 3.82007 -122.119 -3.82007 3.82007 0.72 0.000701198 0.000652031 0.0613559 0.057083 46 2670 28 6.95648e+06 188184 828058. 2865.25 2.35 0.205272 0.180057 28066 200906 -1 2077 19 1595 2349 192010 41280 4.21236 4.21236 -143.065 -4.21236 0 0 1.01997e+06 3529.29 0.27 0.08 0.19 -1 -1 0.27 0.027644 0.024239 82 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 6.48 vpr 63.41 MiB -1 -1 0.20 18524 1 0.03 -1 -1 30468 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.8 MiB 1.37 870 15883 5919 8257 1707 63.4 MiB 0.14 0.00 3.74653 -114.854 -3.74653 3.74653 0.72 0.000746197 0.000693705 0.0636109 0.0591606 46 2482 35 6.95648e+06 347416 828058. 2865.25 2.05 0.196352 0.172705 28066 200906 -1 1956 19 1416 2360 191992 39414 3.93386 3.93386 -137.244 -3.93386 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0283551 0.024856 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.63 vpr 63.32 MiB -1 -1 0.21 18276 1 0.03 -1 -1 30548 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.7 MiB 1.04 955 14295 5074 7318 1903 63.3 MiB 0.13 0.00 3.25852 -109.048 -3.25852 3.25852 0.74 0.000751868 0.000698018 0.0587098 0.0545044 46 2662 24 6.95648e+06 332941 828058. 2865.25 3.46 0.210069 0.184217 28066 200906 -1 2122 22 1768 2959 222118 47293 4.18576 4.18576 -145.977 -4.18576 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0318054 0.0277413 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 6.18 vpr 62.83 MiB -1 -1 0.18 18068 1 0.03 -1 -1 30388 -1 -1 12 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.2 MiB 0.82 559 10769 4024 4781 1964 62.8 MiB 0.09 0.00 3.09846 -87.7994 -3.09846 3.09846 0.72 0.000583895 0.00054369 0.042687 0.0397905 38 2063 36 6.95648e+06 173708 678818. 2348.85 2.52 0.169638 0.147614 26626 170182 -1 1586 20 1179 1788 137339 30112 3.70547 3.70547 -115.436 -3.70547 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0231522 0.0201724 57 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 5.70 vpr 63.23 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30576 -1 -1 14 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 0.92 657 10156 4222 5320 614 63.2 MiB 0.10 0.00 3.71763 -111.774 -3.71763 3.71763 0.72 0.000720911 0.000669805 0.0485397 0.0451453 52 2154 34 6.95648e+06 202660 926341. 3205.33 1.74 0.175176 0.153389 29218 227130 -1 1559 24 1755 2459 180447 42592 4.05667 4.05667 -134.056 -4.05667 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.033109 0.0288757 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 7.26 vpr 63.14 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30544 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.5 MiB 1.45 799 12196 5082 6479 635 63.1 MiB 0.11 0.00 4.0079 -117.648 -4.0079 4.0079 0.71 0.00068475 0.000636956 0.0530337 0.0493552 48 2260 30 6.95648e+06 202660 865456. 2994.66 2.78 0.198425 0.173308 28354 207349 -1 1871 25 1740 2640 230695 60053 4.82721 4.82721 -147.091 -4.82721 0 0 1.05005e+06 3633.38 0.27 0.10 0.19 -1 -1 0.27 0.0329711 0.0287527 80 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 18.68 vpr 63.18 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30600 -1 -1 14 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 1.87 804 10183 4196 5561 426 63.2 MiB 0.09 0.00 4.52776 -125.183 -4.52776 4.52776 0.72 0.000683494 0.000635389 0.0452172 0.042091 48 2284 24 6.95648e+06 202660 865456. 2994.66 13.83 0.322076 0.277687 28354 207349 -1 1812 19 1188 1826 176192 39926 4.21936 4.21936 -136.912 -4.21936 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0265558 0.0233221 79 43 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.59 vpr 63.16 MiB -1 -1 0.20 18484 1 0.03 -1 -1 30540 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64676 30 32 377 310 1 170 83 17 17 289 -1 unnamed_device 24.6 MiB 1.55 809 9983 3596 4533 1854 63.2 MiB 0.09 0.00 3.74802 -114.756 -3.74802 3.74802 0.72 0.000721708 0.00067069 0.0424457 0.0394902 46 2108 23 6.95648e+06 303989 828058. 2865.25 2.07 0.184599 0.160917 28066 200906 -1 1556 18 929 1435 106914 24310 3.44326 3.44326 -123.612 -3.44326 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0265197 0.0232645 74 78 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 6.27 vpr 63.22 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30512 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.7 MiB 1.04 723 9205 3074 4084 2047 63.2 MiB 0.09 0.00 3.77393 -113.966 -3.77393 3.77393 0.72 0.000713881 0.000663412 0.0429646 0.0399808 50 2211 37 6.95648e+06 188184 902133. 3121.57 2.20 0.178787 0.155908 28642 213929 -1 1862 20 1437 2391 222453 48483 3.76871 3.76871 -135.816 -3.76871 0 0 1.08113e+06 3740.92 0.28 0.09 0.18 -1 -1 0.28 0.0288665 0.0253056 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.42 vpr 63.18 MiB -1 -1 0.21 18512 1 0.03 -1 -1 30560 -1 -1 16 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.6 MiB 1.12 736 7738 3089 4238 411 63.2 MiB 0.08 0.00 3.39497 -102.397 -3.39497 3.39497 0.73 0.000719035 0.000668208 0.0367747 0.0342161 44 2468 44 6.95648e+06 231611 787024. 2723.27 2.33 0.173467 0.150723 27778 195446 -1 1774 21 1367 1952 159957 36415 3.76282 3.76282 -128.138 -3.76282 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0296078 0.025862 73 79 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 9.52 vpr 62.62 MiB -1 -1 0.18 17720 1 0.03 -1 -1 30576 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 24.2 MiB 0.77 622 9529 3978 5277 274 62.6 MiB 0.08 0.00 2.91658 -87.0574 -2.91658 2.91658 0.72 0.00055442 0.000514677 0.036108 0.0335532 38 1939 38 6.95648e+06 144757 678818. 2348.85 5.90 0.252251 0.216822 26626 170182 -1 1435 19 933 1378 124792 26905 3.22192 3.22192 -110.858 -3.22192 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0213067 0.0186421 53 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.75 vpr 63.21 MiB -1 -1 0.21 18564 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.6 MiB 2.96 778 15255 5840 6960 2455 63.2 MiB 0.14 0.00 3.94236 -111.1 -3.94236 3.94236 0.72 0.000732216 0.000677173 0.0606339 0.0561199 44 2453 45 6.95648e+06 332941 787024. 2723.27 2.72 0.229608 0.200626 27778 195446 -1 1717 21 1282 2075 181617 37354 3.95686 3.95686 -131.24 -3.95686 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0298543 0.0260927 76 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.74 vpr 63.43 MiB -1 -1 0.20 18340 1 0.03 -1 -1 30652 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.8 MiB 0.69 804 9205 3766 5160 279 63.4 MiB 0.10 0.00 3.49708 -114.018 -3.49708 3.49708 0.73 0.000764016 0.000709799 0.0459593 0.0427438 46 1994 37 6.95648e+06 188184 828058. 2865.25 2.02 0.210779 0.183485 28066 200906 -1 1735 23 1807 2671 166674 40834 4.04232 4.04232 -143.459 -4.04232 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0338926 0.0296099 78 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.45 vpr 63.14 MiB -1 -1 0.17 18148 1 0.03 -1 -1 30292 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.5 MiB 1.36 691 12399 5458 6668 273 63.1 MiB 0.10 0.00 3.40598 -100.425 -3.40598 3.40598 0.71 0.000579921 0.000539756 0.0478811 0.0445772 46 2086 27 6.95648e+06 159232 828058. 2865.25 4.18 0.247667 0.214215 28066 200906 -1 1506 20 1051 1314 130130 32252 3.68851 3.68851 -123.994 -3.68851 0 0 1.01997e+06 3529.29 0.27 0.07 0.17 -1 -1 0.27 0.0233776 0.0204268 68 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.46 vpr 62.69 MiB -1 -1 0.17 17844 1 0.03 -1 -1 30652 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.2 MiB 0.97 618 11756 4952 6427 377 62.7 MiB 0.09 0.00 2.67578 -85.6387 -2.67578 2.67578 0.71 0.000549925 0.000511728 0.0423953 0.0394975 38 1661 45 6.95648e+06 188184 678818. 2348.85 1.62 0.148623 0.129918 26626 170182 -1 1416 20 1130 1560 118500 28917 2.92562 2.92562 -108.655 -2.92562 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0220736 0.0192426 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.48 vpr 63.25 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30836 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.6 MiB 1.44 913 14613 6291 7910 412 63.3 MiB 0.13 0.00 3.87937 -127.143 -3.87937 3.87937 0.75 0.000319731 0.0002942 0.0649365 0.0602465 40 3281 46 6.95648e+06 217135 706193. 2443.58 2.92 0.228052 0.199526 26914 176310 -1 2558 30 2555 3384 510523 140772 4.71332 4.71332 -162.627 -4.71332 0 0 926341. 3205.33 0.24 0.16 0.16 -1 -1 0.24 0.0386578 0.0335738 85 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 7.64 vpr 63.24 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30536 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.6 MiB 1.03 848 11366 4803 6266 297 63.2 MiB 0.11 0.00 4.05782 -123.254 -4.05782 4.05782 0.72 0.000635681 0.000585108 0.0505493 0.0470007 46 2260 29 6.95648e+06 202660 828058. 2865.25 3.58 0.268129 0.231897 28066 200906 -1 1816 23 1446 2108 149241 32847 4.29036 4.29036 -142.411 -4.29036 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0314 0.0274248 82 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 15.18 vpr 63.21 MiB -1 -1 0.19 18024 1 0.03 -1 -1 30432 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.6 MiB 0.42 877 15656 6176 7184 2296 63.2 MiB 0.14 0.00 4.06272 -116.866 -4.06272 4.06272 0.72 0.000734201 0.000684193 0.0667795 0.0621382 50 2290 24 6.95648e+06 246087 902133. 3121.57 11.65 0.355631 0.309048 28642 213929 -1 1858 22 1539 2551 177339 42614 4.36406 4.36406 -146.123 -4.36406 0 0 1.08113e+06 3740.92 0.32 0.08 0.18 -1 -1 0.32 0.0311766 0.0273197 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 7.52 vpr 63.07 MiB -1 -1 0.19 18432 1 0.03 -1 -1 30432 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.5 MiB 0.83 680 12323 3535 6272 2516 63.1 MiB 0.09 0.00 2.83043 -80.1664 -2.83043 2.83043 0.72 0.000636958 0.000592612 0.0459894 0.0428118 52 1510 26 6.95648e+06 303989 926341. 3205.33 3.69 0.242443 0.210367 29218 227130 -1 1081 21 1172 1886 91089 24349 2.85037 2.85037 -92.2167 -2.85037 0 0 1.14541e+06 3963.36 0.30 0.06 0.19 -1 -1 0.30 0.0263831 0.0229673 69 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 8.54 vpr 62.84 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30948 -1 -1 14 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 24.4 MiB 0.42 413 9801 4107 5054 640 62.8 MiB 0.08 0.00 2.4231 -71.4569 -2.4231 2.4231 0.72 0.000545329 0.000507675 0.0375714 0.0350239 40 1254 24 6.95648e+06 202660 706193. 2443.58 5.20 0.273179 0.234296 26914 176310 -1 1092 48 1705 2128 379509 207911 3.00882 3.00882 -94.6303 -3.00882 0 0 926341. 3205.33 0.24 0.16 0.15 -1 -1 0.24 0.0444892 0.0381819 54 26 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.65 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30708 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1010 16076 6288 7576 2212 63.7 MiB 0.17 0.00 3.32755 -113.539 -3.32755 3.32755 0.75 0.000801866 0.000745248 0.0782277 0.0726909 48 3263 34 6.95648e+06 231611 865456. 2994.66 2.18 0.224317 0.197597 28354 207349 -1 2692 25 2350 3690 357917 75859 4.66302 4.66302 -150.477 -4.66302 0 0 1.05005e+06 3633.38 0.28 0.12 0.18 -1 -1 0.28 0.0384484 0.0334998 95 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 10.04 vpr 63.25 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30548 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 24.8 MiB 4.33 1000 11864 4270 5653 1941 63.2 MiB 0.11 0.00 4.51235 -130.083 -4.51235 4.51235 0.72 0.00079638 0.000733067 0.0502173 0.0465204 36 2949 43 6.95648e+06 217135 648988. 2245.63 2.71 0.184514 0.161334 26050 158493 -1 2481 23 1878 2886 329512 64057 4.84686 4.84686 -165.335 -4.84686 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0317738 0.0276916 82 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.29 vpr 63.00 MiB -1 -1 0.18 18168 1 0.03 -1 -1 30528 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.5 MiB 3.11 670 11135 4694 6130 311 63.0 MiB 0.10 0.00 3.05184 -103.57 -3.05184 3.05184 0.72 0.00066047 0.000609467 0.0487753 0.0453567 48 1975 27 6.95648e+06 159232 865456. 2994.66 4.17 0.273329 0.236173 28354 207349 -1 1575 20 1263 1748 164185 39051 3.54936 3.54936 -135.416 -3.54936 0 0 1.05005e+06 3633.38 0.28 0.07 0.19 -1 -1 0.28 0.0265802 0.0232374 70 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.81 vpr 63.12 MiB -1 -1 0.21 18092 1 0.03 -1 -1 30564 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.6 MiB 0.37 760 15395 5959 7790 1646 63.1 MiB 0.13 0.00 3.48277 -101.172 -3.48277 3.48277 0.72 0.000666752 0.000619303 0.0568151 0.0528337 46 2217 29 6.95648e+06 318465 828058. 2865.25 2.42 0.198225 0.173603 28066 200906 -1 1779 23 1315 2046 150580 33751 3.83271 3.83271 -126.006 -3.83271 0 0 1.01997e+06 3529.29 0.27 0.08 0.17 -1 -1 0.27 0.0296001 0.0257983 74 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.47 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30420 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64992 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 0.83 832 15103 4635 7782 2686 63.5 MiB 0.13 0.00 3.67183 -105.382 -3.67183 3.67183 0.72 0.000727161 0.000675485 0.0590803 0.0548921 38 2363 32 6.95648e+06 361892 678818. 2348.85 2.17 0.216538 0.189096 26626 170182 -1 1751 19 1282 1949 120425 27951 3.91517 3.91517 -129.684 -3.91517 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0283228 0.0248553 83 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.94 vpr 63.05 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30384 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.6 MiB 0.92 750 13026 5612 6791 623 63.1 MiB 0.11 0.00 2.87605 -84.9432 -2.87605 2.87605 0.71 0.000655661 0.000609495 0.053643 0.0498933 46 2066 24 6.95648e+06 231611 828058. 2865.25 2.08 0.1826 0.159704 28066 200906 -1 1554 19 1276 2041 135634 31231 2.90357 2.90357 -102.898 -2.90357 0 0 1.01997e+06 3529.29 0.29 0.07 0.18 -1 -1 0.29 0.0252535 0.0220898 68 46 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.16 vpr 63.35 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30668 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1053 11698 4858 6468 372 63.3 MiB 0.11 0.00 3.87497 -128.691 -3.87497 3.87497 0.72 0.000701186 0.000651756 0.0521631 0.0485419 50 2761 42 6.95648e+06 202660 902133. 3121.57 4.71 0.318813 0.275687 28642 213929 -1 2346 25 2076 3029 314404 70459 4.74756 4.74756 -160.47 -4.74756 0 0 1.08113e+06 3740.92 0.28 0.11 0.18 -1 -1 0.28 0.0336702 0.0293968 88 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 5.92 vpr 63.36 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.8 MiB 0.95 763 12542 4736 5981 1825 63.4 MiB 0.11 0.00 3.57533 -115.706 -3.57533 3.57533 0.72 0.000749042 0.000696331 0.0554774 0.0515816 50 2269 23 6.95648e+06 260562 902133. 3121.57 1.90 0.189276 0.166033 28642 213929 -1 1732 22 1465 1947 187105 43332 3.80192 3.80192 -137.088 -3.80192 0 0 1.08113e+06 3740.92 0.28 0.09 0.18 -1 -1 0.28 0.031765 0.0277381 80 59 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 8.45 vpr 62.78 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30592 -1 -1 12 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.3 MiB 3.95 493 11321 4784 6000 537 62.8 MiB 0.09 0.00 3.26591 -84.8562 -3.26591 3.26591 0.74 0.000577218 0.000537741 0.0452846 0.0422299 36 1440 25 6.95648e+06 173708 648988. 2245.63 1.61 0.160659 0.140199 26050 158493 -1 1164 20 845 1116 81285 19295 2.87142 2.87142 -99.3429 -2.87142 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0231259 0.0201755 53 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.95 vpr 63.25 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30484 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.6 MiB 1.05 679 9555 3926 5402 227 63.3 MiB 0.09 0.00 3.06285 -104.703 -3.06285 3.06285 0.72 0.000625821 0.000581683 0.0402076 0.0374263 40 2071 35 6.95648e+06 159232 706193. 2443.58 1.99 0.17426 0.151359 26914 176310 -1 1709 18 1225 1529 167966 35276 3.43512 3.43512 -127.186 -3.43512 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0230422 0.0201629 64 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 7.56 vpr 63.24 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64760 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.7 MiB 0.86 730 12182 3480 6577 2125 63.2 MiB 0.11 0.00 3.44822 -99.9114 -3.44822 3.44822 0.72 0.000665651 0.0006189 0.0452735 0.042087 40 2387 38 6.95648e+06 332941 706193. 2443.58 3.80 0.27781 0.240097 26914 176310 -1 1756 21 1450 2190 188169 42205 4.52046 4.52046 -140.692 -4.52046 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0275588 0.0240502 77 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 7.56 vpr 63.09 MiB -1 -1 0.18 18276 1 0.03 -1 -1 30524 -1 -1 13 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 1.41 675 9994 4196 5352 446 63.1 MiB 0.08 0.00 3.27767 -94.9092 -3.27767 3.27767 0.72 0.000563447 0.000524757 0.0382787 0.0356677 46 1747 21 6.95648e+06 188184 828058. 2865.25 3.27 0.199845 0.172798 28066 200906 -1 1385 20 1111 1388 96923 22814 3.44612 3.44612 -110.103 -3.44612 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0227334 0.0198277 67 25 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.31 vpr 62.82 MiB -1 -1 0.18 18268 1 0.04 -1 -1 30244 -1 -1 9 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 1.25 603 11625 5021 6321 283 62.8 MiB 0.10 0.00 3.19126 -90.7012 -3.19126 3.19126 0.71 0.000600712 0.000559041 0.0478861 0.0446233 38 1768 29 6.95648e+06 130281 678818. 2348.85 2.15 0.170991 0.149413 26626 170182 -1 1444 23 1284 1953 161594 34721 3.34342 3.34342 -111.976 -3.34342 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0263285 0.0228955 56 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 6.02 vpr 63.27 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30512 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.7 MiB 1.01 672 13911 4660 6298 2953 63.3 MiB 0.12 0.00 2.84333 -93.3919 -2.84333 2.84333 0.73 0.000723182 0.000671373 0.0549708 0.0510559 46 1893 25 6.95648e+06 347416 828058. 2865.25 1.96 0.198732 0.173773 28066 200906 -1 1422 22 1578 2107 123276 30833 3.02777 3.02777 -115.057 -3.02777 0 0 1.01997e+06 3529.29 0.29 0.07 0.17 -1 -1 0.29 0.031097 0.0271582 79 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.86 vpr 62.92 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30544 -1 -1 12 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.3 MiB 2.26 691 7817 3176 4379 262 62.9 MiB 0.07 0.00 3.35097 -98.8049 -3.35097 3.35097 0.72 0.000570412 0.00053084 0.0303016 0.0282441 44 2079 20 6.95648e+06 173708 787024. 2723.27 3.69 0.220334 0.189657 27778 195446 -1 1521 19 1052 1445 105288 23305 3.23762 3.23762 -113.263 -3.23762 0 0 997811. 3452.63 0.26 0.06 0.20 -1 -1 0.26 0.0220686 0.0192814 64 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.79 vpr 63.12 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.6 MiB 1.33 773 13883 5809 7746 328 63.1 MiB 0.12 0.00 2.7068 -91.7659 -2.7068 2.7068 0.72 0.000692205 0.000642428 0.0533204 0.049571 40 2150 46 6.95648e+06 318465 706193. 2443.58 2.36 0.212713 0.185405 26914 176310 -1 1778 42 1799 2936 603798 295375 3.04787 3.04787 -111.304 -3.04787 0 0 926341. 3205.33 0.24 0.21 0.15 -1 -1 0.24 0.0497568 0.0429588 71 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.02 vpr 63.26 MiB -1 -1 0.20 18560 1 0.03 -1 -1 30452 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.6 MiB 1.83 771 11698 4881 6335 482 63.3 MiB 0.11 0.00 3.3685 -110.341 -3.3685 3.3685 0.72 0.000746343 0.000692847 0.0554996 0.0515901 40 2555 33 6.95648e+06 217135 706193. 2443.58 4.16 0.313169 0.270792 26914 176310 -1 2096 25 1757 2334 242230 51294 4.11662 4.11662 -153.502 -4.11662 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0349502 0.0303932 73 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 8.02 vpr 62.93 MiB -1 -1 0.18 18244 1 0.03 -1 -1 30440 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 1.17 541 9994 3378 4996 1620 62.9 MiB 0.09 0.00 2.4011 -79.9159 -2.4011 2.4011 0.73 0.000620656 0.000576997 0.0421216 0.0391917 48 1376 19 6.95648e+06 144757 865456. 2994.66 3.91 0.245634 0.2119 28354 207349 -1 1113 21 987 1513 110419 26324 2.65607 2.65607 -93.2576 -2.65607 0 0 1.05005e+06 3633.38 0.28 0.06 0.18 -1 -1 0.28 0.0259362 0.0226388 57 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 6.24 vpr 62.92 MiB -1 -1 0.18 18052 1 0.03 -1 -1 30544 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.5 MiB 1.30 763 11451 3987 5787 1677 62.9 MiB 0.10 0.00 3.29168 -105.903 -3.29168 3.29168 0.72 0.000607519 0.000565027 0.0463081 0.0431161 46 2138 32 6.95648e+06 159232 828058. 2865.25 1.96 0.151757 0.132943 28066 200906 -1 1630 26 1505 2292 219208 71500 3.69952 3.69952 -127.957 -3.69952 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0288373 0.0252356 70 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 6.90 vpr 63.09 MiB -1 -1 0.18 18480 1 0.03 -1 -1 30596 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.5 MiB 1.98 761 11366 4697 6285 384 63.1 MiB 0.10 0.00 3.45418 -105.601 -3.45418 3.45418 0.73 0.000653804 0.000608405 0.0473053 0.0440123 40 2711 43 6.95648e+06 202660 706193. 2443.58 1.98 0.189218 0.165015 26914 176310 -1 2150 20 1752 2398 197719 45829 4.55981 4.55981 -144.931 -4.55981 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0265431 0.0232234 79 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.95 vpr 63.04 MiB -1 -1 0.18 18488 1 0.03 -1 -1 30308 -1 -1 21 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 1.07 694 11118 4579 5810 729 63.0 MiB 0.10 0.00 3.53128 -96.647 -3.53128 3.53128 0.72 0.000647562 0.000602251 0.0428797 0.0398983 48 1770 19 6.95648e+06 303989 865456. 2994.66 3.90 0.23684 0.204764 28354 207349 -1 1416 19 972 1486 116929 27421 3.68851 3.68851 -110.006 -3.68851 0 0 1.05005e+06 3633.38 0.27 0.06 0.18 -1 -1 0.27 0.0249276 0.0218243 71 49 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 19.42 vpr 63.36 MiB -1 -1 0.20 18416 1 0.04 -1 -1 30608 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.9 MiB 1.34 821 13026 5576 6908 542 63.4 MiB 0.13 0.00 4.0079 -127.527 -4.0079 4.0079 0.72 0.000754382 0.000700339 0.0620045 0.0576306 48 2744 39 6.95648e+06 202660 865456. 2994.66 14.96 0.38643 0.334159 28354 207349 -1 2229 23 2194 3161 317241 73347 4.91932 4.91932 -168.339 -4.91932 0 0 1.05005e+06 3633.38 0.27 0.11 0.18 -1 -1 0.27 0.0338513 0.029592 89 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 7.75 vpr 62.57 MiB -1 -1 0.18 17992 1 0.03 -1 -1 30548 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.1 MiB 1.22 634 12716 5415 6966 335 62.6 MiB 0.10 0.00 3.22974 -79.1074 -3.22974 3.22974 0.72 0.000532274 0.000495982 0.0441543 0.0411347 38 1849 33 6.95648e+06 188184 678818. 2348.85 3.65 0.207114 0.179328 26626 170182 -1 1473 21 956 1524 136628 28766 3.14442 3.14442 -105.258 -3.14442 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0218699 0.0190275 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 10.43 vpr 63.38 MiB -1 -1 0.18 18240 1 0.03 -1 -1 30452 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 24.7 MiB 1.05 1017 14741 4584 8890 1267 63.4 MiB 0.14 0.00 3.12589 -116.566 -3.12589 3.12589 0.72 0.000808269 0.000740482 0.0654338 0.0606959 36 2862 41 6.95648e+06 361892 648988. 2245.63 6.38 0.244154 0.213659 26050 158493 -1 2336 21 1696 2199 229393 45556 3.90496 3.90496 -154.25 -3.90496 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0315117 0.0274962 81 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.41 vpr 63.17 MiB -1 -1 0.20 18352 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.71 642 12009 5101 6643 265 63.2 MiB 0.11 0.00 2.45985 -92.7114 -2.45985 2.45985 0.72 0.000713293 0.000662426 0.0581779 0.0540969 44 2114 37 6.95648e+06 144757 787024. 2723.27 2.67 0.213395 0.186419 27778 195446 -1 1555 24 1684 2341 261863 57995 3.12182 3.12182 -124.188 -3.12182 0 0 997811. 3452.63 0.29 0.10 0.16 -1 -1 0.29 0.0322419 0.027994 61 93 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.02 vpr 63.14 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30636 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.6 MiB 1.14 712 11615 3691 5750 2174 63.1 MiB 0.11 0.00 3.41878 -102.947 -3.41878 3.41878 0.72 0.000712815 0.000662837 0.0461131 0.0429237 44 2413 26 6.95648e+06 318465 787024. 2723.27 3.85 0.266127 0.230274 27778 195446 -1 1704 24 1228 1838 151587 40356 3.71246 3.71246 -121.654 -3.71246 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0323328 0.0281842 75 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.99 vpr 63.45 MiB -1 -1 0.20 18524 1 0.03 -1 -1 30548 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.61 1143 13937 4789 6448 2700 63.4 MiB 0.14 0.00 5.15637 -149.807 -5.15637 5.15637 0.72 0.000775429 0.000721206 0.066688 0.0620589 48 2921 28 6.95648e+06 217135 865456. 2994.66 4.23 0.290286 0.253085 28354 207349 -1 2531 24 2081 2982 321624 63785 5.12135 5.12135 -168.677 -5.12135 0 0 1.05005e+06 3633.38 0.28 0.11 0.19 -1 -1 0.28 0.0364221 0.0318286 95 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 7.11 vpr 62.61 MiB -1 -1 0.18 18068 1 0.02 -1 -1 30324 -1 -1 11 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 24.0 MiB 2.18 518 11321 4853 6101 367 62.6 MiB 0.09 0.00 2.18845 -77.0562 -2.18845 2.18845 0.76 0.000500599 0.000466001 0.038952 0.0362492 36 1869 40 6.95648e+06 159232 648988. 2245.63 2.08 0.151051 0.131132 26050 158493 -1 1461 19 913 1164 133439 28116 2.82223 2.82223 -103.185 -2.82223 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0194088 0.0169533 52 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.06 vpr 62.83 MiB -1 -1 0.18 18196 1 0.03 -1 -1 30264 -1 -1 11 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64336 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 24.2 MiB 1.25 510 9041 3080 4595 1366 62.8 MiB 0.08 0.00 3.12499 -92.239 -3.12499 3.12499 0.73 0.000597547 0.000556077 0.0384727 0.0358533 38 1608 50 6.95648e+06 159232 678818. 2348.85 1.92 0.14809 0.129141 26626 170182 -1 1219 24 1146 1710 164803 37069 3.17613 3.17613 -113.731 -3.17613 0 0 902133. 3121.57 0.25 0.06 0.14 -1 -1 0.25 0.0223183 0.0194304 54 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.84 vpr 62.86 MiB -1 -1 0.18 17968 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.2 MiB 0.42 549 8754 2635 4376 1743 62.9 MiB 0.08 0.00 2.6818 -88.2907 -2.6818 2.6818 0.71 0.000619308 0.000576359 0.0373117 0.0347785 56 1502 28 6.95648e+06 144757 973134. 3367.25 2.40 0.163643 0.142368 29794 239141 -1 1053 20 1064 1671 128011 32216 3.05407 3.05407 -102.433 -3.05407 0 0 1.19926e+06 4149.71 0.31 0.07 0.21 -1 -1 0.31 0.0249442 0.0218158 59 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.28 vpr 62.56 MiB -1 -1 0.18 18148 1 0.02 -1 -1 30456 -1 -1 18 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.1 MiB 0.41 446 8449 3541 4299 609 62.6 MiB 0.06 0.00 2.72223 -61.9243 -2.72223 2.72223 0.72 0.000472523 0.000439281 0.0269754 0.0251195 38 1541 30 6.95648e+06 260562 678818. 2348.85 2.11 0.12629 0.109187 26626 170182 -1 1122 19 734 1137 84443 21378 2.72202 2.72202 -84.1919 -2.72202 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0185834 0.0162199 53 19 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 6.83 vpr 63.12 MiB -1 -1 0.20 18444 1 0.03 -1 -1 30580 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 24.6 MiB 1.61 822 10476 4359 5744 373 63.1 MiB 0.10 0.00 3.18195 -104.866 -3.18195 3.18195 0.72 0.000737342 0.000686018 0.0505671 0.0470216 46 2777 28 6.95648e+06 173708 828058. 2865.25 2.17 0.199265 0.174073 28066 200906 -1 2222 22 1621 2672 209420 46025 4.09782 4.09782 -139.548 -4.09782 0 0 1.01997e+06 3529.29 0.29 0.09 0.17 -1 -1 0.29 0.0313561 0.0274004 73 69 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.77 vpr 63.29 MiB -1 -1 0.21 18444 1 0.03 -1 -1 30532 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 24.7 MiB 1.05 837 10228 4047 4614 1567 63.3 MiB 0.10 0.00 3.44998 -116.134 -3.44998 3.44998 0.72 0.000770648 0.000716303 0.0485937 0.0452163 44 2355 44 6.95648e+06 246087 787024. 2723.27 3.61 0.301692 0.261002 27778 195446 -1 1822 22 1595 2127 181025 37814 3.50112 3.50112 -131.439 -3.50112 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0329414 0.028803 80 86 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 6.87 vpr 63.18 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30572 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.5 MiB 1.45 926 13768 5881 7534 353 63.2 MiB 0.13 0.00 4.0552 -122.973 -4.0552 4.0552 0.72 0.000702306 0.000652748 0.0617995 0.05747 44 2989 49 6.99608e+06 220735 787024. 2723.27 2.40 0.226969 0.19847 27778 195446 -1 2083 20 1530 2178 158554 33895 4.39761 4.39761 -147.709 -4.39761 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0281112 0.0246076 88 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 17.34 vpr 62.96 MiB -1 -1 0.17 18512 1 0.03 -1 -1 30616 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 24.4 MiB 1.24 903 11909 3621 5904 2384 63.0 MiB 0.11 0.00 4.2193 -125.516 -4.2193 4.2193 0.72 0.000702911 0.000652876 0.0525527 0.0489306 56 2482 26 6.99608e+06 250167 973134. 3367.25 12.93 0.366126 0.315405 29794 239141 -1 2041 21 2145 3170 294713 65301 4.95504 4.95504 -159.181 -4.95504 0 0 1.19926e+06 4149.71 0.31 0.10 0.21 -1 -1 0.31 0.0289898 0.0255428 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 6.00 vpr 62.93 MiB -1 -1 0.19 18200 1 0.04 -1 -1 30572 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.5 MiB 0.69 810 14188 4692 7635 1861 62.9 MiB 0.12 0.00 2.94444 -91.6196 -2.94444 2.94444 0.72 0.000623699 0.000580535 0.055627 0.0517679 40 2342 32 6.99608e+06 206020 706193. 2443.58 2.31 0.187775 0.164351 26914 176310 -1 2037 22 1489 2017 183672 41323 3.57051 3.57051 -123.05 -3.57051 0 0 926341. 3205.33 0.24 0.08 0.16 -1 -1 0.24 0.0271216 0.0235914 76 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.87 vpr 62.90 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30532 -1 -1 16 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 24.5 MiB 1.18 684 14095 4549 7189 2357 62.9 MiB 0.11 0.00 3.29948 -92.3743 -3.29948 3.29948 0.72 0.000638533 0.000594637 0.0576287 0.0536964 56 1665 27 6.99608e+06 235451 973134. 3367.25 2.70 0.230083 0.200342 29794 239141 -1 1288 20 1274 2057 133391 35259 3.83906 3.83906 -111.349 -3.83906 0 0 1.19926e+06 4149.71 0.30 0.07 0.21 -1 -1 0.30 0.0252935 0.0220996 78 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.43 vpr 63.04 MiB -1 -1 0.18 18408 1 0.03 -1 -1 30396 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 24.5 MiB 2.19 835 11034 4569 6032 433 63.0 MiB 0.10 0.00 3.76679 -115.017 -3.76679 3.76679 0.62 0.000686016 0.000637521 0.0480339 0.0446698 44 3317 40 6.99608e+06 206020 787024. 2723.27 3.30 0.202566 0.176701 27778 195446 -1 2217 28 1831 3085 271724 58599 4.65941 4.65941 -152.033 -4.65941 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0352947 0.0306904 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 7.39 vpr 63.18 MiB -1 -1 0.19 18488 1 0.03 -1 -1 30496 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.6 MiB 2.49 967 13381 3902 7326 2153 63.2 MiB 0.13 0.00 2.79566 -99.1044 -2.79566 2.79566 0.71 0.000716984 0.000666717 0.0574548 0.0534505 44 2805 30 6.99608e+06 250167 787024. 2723.27 1.91 0.205676 0.179897 27778 195446 -1 2032 20 1609 2479 151588 36625 3.62947 3.62947 -124.173 -3.62947 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0286776 0.0251092 97 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.96 vpr 62.68 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30996 -1 -1 15 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 1.32 558 10614 4418 5600 596 62.7 MiB 0.09 0.00 3.12612 -89.7746 -3.12612 3.12612 0.72 0.000555368 0.000517174 0.039881 0.0371654 36 1978 47 6.99608e+06 220735 648988. 2245.63 1.82 0.146216 0.127465 26050 158493 -1 1414 24 1288 1918 170503 36279 3.55316 3.55316 -116.323 -3.55316 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0253987 0.0219865 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.04 vpr 62.61 MiB -1 -1 0.19 17888 1 0.03 -1 -1 30308 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.33 650 13153 4892 6011 2250 62.6 MiB 0.10 0.00 2.2514 -72.6922 -2.2514 2.2514 0.72 0.000593061 0.00055154 0.0425462 0.0395628 46 1698 28 6.99608e+06 367892 828058. 2865.25 3.77 0.229158 0.198251 28066 200906 -1 1325 16 901 1480 78999 20991 3.09687 3.09687 -94.3886 -3.09687 0 0 1.01997e+06 3529.29 0.26 0.05 0.17 -1 -1 0.26 0.0199139 0.0174873 69 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 5.90 vpr 63.06 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30336 -1 -1 14 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 0.84 865 12791 5343 7084 364 63.1 MiB 0.11 0.00 2.71474 -97.6411 -2.71474 2.71474 0.72 0.000633612 0.000588285 0.0521183 0.0484333 44 2576 43 6.99608e+06 206020 787024. 2723.27 2.06 0.194604 0.169565 27778 195446 -1 1775 21 1507 2054 133182 30565 3.01841 3.01841 -113.302 -3.01841 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0265811 0.0231996 87 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 7.80 vpr 62.77 MiB -1 -1 0.18 18064 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.3 MiB 0.79 851 11813 4711 6193 909 62.8 MiB 0.11 0.00 3.18112 -111.904 -3.18112 3.18112 0.71 0.000628412 0.000585016 0.0474117 0.0441734 42 2279 44 6.99608e+06 191304 744469. 2576.02 4.05 0.27078 0.234047 27202 183097 -1 1873 27 1580 1986 304240 117881 3.48286 3.48286 -131.758 -3.48286 0 0 949917. 3286.91 0.25 0.11 0.16 -1 -1 0.25 0.0311927 0.0270522 75 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.42 vpr 62.95 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30552 -1 -1 14 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.5 MiB 0.72 738 11916 5062 6394 460 63.0 MiB 0.10 0.00 3.19389 -101.59 -3.19389 3.19389 0.72 0.000621708 0.00057851 0.0479196 0.044571 40 2457 35 6.99608e+06 206020 706193. 2443.58 2.75 0.179744 0.156494 26914 176310 -1 1937 21 1581 2149 169656 39984 3.69761 3.69761 -131.259 -3.69761 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0240513 0.0209886 83 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 5.91 vpr 62.79 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30268 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.1 MiB 0.62 683 5921 1326 4469 126 62.8 MiB 0.06 0.00 2.73588 -93.9348 -2.73588 2.73588 0.72 0.000595006 0.000554229 0.024161 0.0225335 40 2159 47 6.99608e+06 161872 706193. 2443.58 2.40 0.162001 0.139854 26914 176310 -1 1780 23 1400 1775 186972 42559 3.56317 3.56317 -123.526 -3.56317 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0261995 0.0227877 66 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 18.78 vpr 62.97 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30664 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.4 MiB 0.75 913 14275 6162 7632 481 63.0 MiB 0.13 0.00 3.18112 -107.408 -3.18112 3.18112 0.73 0.000695497 0.000646888 0.0614123 0.0571385 46 3111 46 6.99608e+06 220735 828058. 2865.25 14.98 0.359782 0.311114 28066 200906 -1 2162 20 1624 2328 189670 42175 3.60016 3.60016 -135.95 -3.60016 0 0 1.01997e+06 3529.29 0.27 0.08 0.17 -1 -1 0.27 0.0280671 0.0246156 87 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 8.36 vpr 63.17 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30640 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.5 MiB 1.27 938 12331 3531 6401 2399 63.2 MiB 0.12 0.00 3.86117 -115.133 -3.86117 3.86117 0.72 0.000717394 0.000667411 0.0528971 0.0492161 46 3178 50 6.99608e+06 250167 828058. 2865.25 4.05 0.225312 0.196436 28066 200906 -1 2217 23 1992 2715 218895 47939 4.38631 4.38631 -152.982 -4.38631 0 0 1.01997e+06 3529.29 0.27 0.09 0.18 -1 -1 0.27 0.0317857 0.0276311 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.75 vpr 62.58 MiB -1 -1 0.19 17916 1 0.03 -1 -1 30364 -1 -1 13 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 2.43 706 9839 3752 4683 1404 62.6 MiB 0.08 0.00 2.5552 -75.9155 -2.5552 2.5552 0.72 0.000538428 0.000501697 0.0361283 0.0336717 36 2181 25 6.99608e+06 191304 648988. 2245.63 2.44 0.145366 0.126426 26050 158493 -1 1711 24 1202 1686 175865 39377 2.95562 2.95562 -99.0205 -2.95562 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0247893 0.0214889 64 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.77 vpr 63.22 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30652 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.5 MiB 1.20 1214 13840 4053 8825 962 63.2 MiB 0.13 0.00 2.99159 -108.884 -2.99159 2.99159 0.72 0.000727168 0.000676223 0.0612921 0.0570403 40 3108 43 6.99608e+06 235451 706193. 2443.58 2.53 0.2267 0.19838 26914 176310 -1 2869 25 2353 3592 360619 70915 3.83501 3.83501 -145.825 -3.83501 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.034508 0.0300588 96 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 5.44 vpr 62.99 MiB -1 -1 0.15 18168 1 0.03 -1 -1 30304 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.5 MiB 0.69 1018 11571 4165 5957 1449 63.0 MiB 0.11 0.00 3.40815 -112.564 -3.40815 3.40815 0.72 0.000688648 0.00064087 0.0495624 0.0461986 44 2522 23 6.99608e+06 220735 787024. 2723.27 1.79 0.155866 0.137294 27778 195446 -1 1976 19 1443 1931 152017 31681 3.34956 3.34956 -130.36 -3.34956 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0265907 0.0233403 84 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.16 vpr 62.95 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30528 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.4 MiB 0.71 812 13937 4391 7676 1870 62.9 MiB 0.12 0.00 2.51429 -93.5184 -2.51429 2.51429 0.72 0.000647365 0.000601097 0.0556522 0.0517429 48 2128 25 6.99608e+06 220735 865456. 2994.66 2.34 0.184444 0.161305 28354 207349 -1 1594 20 1649 2067 157715 37424 2.92575 2.92575 -114.541 -2.92575 0 0 1.05005e+06 3633.38 0.29 0.09 0.18 -1 -1 0.29 0.0288746 0.0252573 89 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.36 vpr 62.69 MiB -1 -1 0.18 18208 1 0.02 -1 -1 30284 -1 -1 10 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 24.1 MiB 1.48 456 9012 3589 4747 676 62.7 MiB 0.07 0.00 1.95956 -70.1975 -1.95956 1.95956 0.72 0.000496648 0.000462809 0.0317007 0.029545 38 1116 20 6.99608e+06 147157 678818. 2348.85 2.07 0.127699 0.111062 26626 170182 -1 857 17 576 635 58471 16368 1.96713 1.96713 -81.5192 -1.96713 0 0 902133. 3121.57 0.23 0.04 0.15 -1 -1 0.23 0.0173335 0.0151775 52 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.59 vpr 62.82 MiB -1 -1 0.18 17904 1 0.02 -1 -1 30568 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.1 MiB 1.86 812 5196 1080 3811 305 62.8 MiB 0.06 0.00 3.01177 -99.2942 -3.01177 3.01177 0.72 0.000620279 0.000577973 0.0220446 0.0205574 38 2297 21 6.99608e+06 191304 678818. 2348.85 1.85 0.140503 0.121567 26626 170182 -1 1837 23 1358 1964 178884 37718 3.43406 3.43406 -128.208 -3.43406 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.026931 0.023423 72 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 18.67 vpr 63.04 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30700 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 780 15822 6491 7943 1388 63.0 MiB 0.14 0.00 3.25624 -105.717 -3.25624 3.25624 0.73 0.000699392 0.000650444 0.0618212 0.0573907 42 3129 45 6.99608e+06 294314 744469. 2576.02 14.47 0.366079 0.316563 27202 183097 -1 2180 19 1724 2514 258588 59935 4.1861 4.1861 -148.306 -4.1861 0 0 949917. 3286.91 0.25 0.09 0.16 -1 -1 0.25 0.0264852 0.0232031 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 7.60 vpr 63.42 MiB -1 -1 0.20 18436 1 0.03 -1 -1 30564 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.0 MiB 1.95 1194 12636 4193 7521 922 63.4 MiB 0.13 0.00 3.72134 -118.635 -3.72134 3.72134 0.72 0.000730295 0.00067937 0.0559784 0.0520509 44 3043 50 6.99608e+06 235451 787024. 2723.27 2.61 0.227603 0.198635 27778 195446 -1 2512 22 1937 2909 218486 44771 3.79851 3.79851 -137.077 -3.79851 0 0 997811. 3452.63 0.27 0.08 0.17 -1 -1 0.27 0.0248317 0.0221375 100 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.12 vpr 62.20 MiB -1 -1 0.18 17652 1 0.02 -1 -1 30732 -1 -1 13 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63696 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 23.6 MiB 1.76 394 9269 3865 4810 594 62.2 MiB 0.06 0.00 2.2286 -62.1105 -2.2286 2.2286 0.72 0.000426616 0.000396773 0.0286022 0.0266132 36 1412 41 6.99608e+06 191304 648988. 2245.63 1.62 0.110836 0.0963182 26050 158493 -1 880 21 736 809 56827 15047 2.50677 2.50677 -77.939 -2.50677 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0178894 0.015575 53 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.68 vpr 62.75 MiB -1 -1 0.18 17968 1 0.03 -1 -1 30504 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.1 MiB 0.83 699 9881 4045 5441 395 62.7 MiB 0.09 0.00 3.605 -91.5023 -3.605 3.605 0.72 0.000616901 0.000573659 0.0381686 0.0355101 42 2357 45 6.99608e+06 220735 744469. 2576.02 1.85 0.161326 0.140495 27202 183097 -1 1637 57 2364 4184 302242 67904 4.10866 4.10866 -119.381 -4.10866 0 0 949917. 3286.91 0.25 0.15 0.16 -1 -1 0.25 0.0583568 0.0501305 66 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.26 vpr 62.36 MiB -1 -1 0.15 17768 1 0.02 -1 -1 30224 -1 -1 8 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.9 MiB 0.19 380 9757 4064 5450 243 62.4 MiB 0.07 0.00 1.68521 -55.2113 -1.68521 1.68521 0.72 0.000424904 0.000394355 0.0289506 0.0269026 36 1314 42 6.99608e+06 117725 648988. 2245.63 1.35 0.106786 0.0931082 26050 158493 -1 880 18 622 717 57945 14846 2.22562 2.22562 -77.3593 -2.22562 0 0 828058. 2865.25 0.22 0.04 0.14 -1 -1 0.22 0.0155941 0.0136007 42 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 12.92 vpr 62.80 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30552 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.4 MiB 1.02 697 13192 4731 6534 1927 62.8 MiB 0.11 0.00 3.59843 -97.5949 -3.59843 3.59843 0.72 0.000638257 0.000594119 0.0525217 0.0488315 40 2841 46 6.99608e+06 206020 706193. 2443.58 8.99 0.329587 0.284396 26914 176310 -1 1936 25 1575 2328 227222 53192 4.44632 4.44632 -132.288 -4.44632 0 0 926341. 3205.33 0.23 0.06 0.10 -1 -1 0.23 0.0195899 0.0172036 73 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 5.45 vpr 62.91 MiB -1 -1 0.17 17956 1 0.03 -1 -1 30636 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.2 MiB 0.44 685 13105 4801 6110 2194 62.9 MiB 0.12 0.00 2.46605 -79.661 -2.46605 2.46605 0.71 0.000638146 0.00059299 0.0564516 0.052491 44 2328 45 6.99608e+06 309029 787024. 2723.27 2.09 0.183955 0.161394 27778 195446 -1 1490 19 1214 1922 118865 29948 2.67702 2.67702 -98.892 -2.67702 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0243293 0.0212979 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 7.28 vpr 62.98 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30672 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.4 MiB 1.32 847 11571 3857 5790 1924 63.0 MiB 0.11 0.00 3.45778 -102.251 -3.45778 3.45778 0.72 0.000679763 0.000632193 0.0490892 0.0457157 48 3035 44 6.99608e+06 220735 865456. 2994.66 2.94 0.203579 0.176946 28354 207349 -1 2180 24 1760 2675 231044 51361 3.99211 3.99211 -135.703 -3.99211 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0311772 0.0271798 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 7.88 vpr 62.80 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30400 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.2 MiB 2.02 686 11756 4961 6546 249 62.8 MiB 0.10 0.00 2.63455 -87.3526 -2.63455 2.63455 0.72 0.000608301 0.000566331 0.0463906 0.0431917 38 2296 34 6.99608e+06 176588 678818. 2348.85 2.94 0.175586 0.153003 26626 170182 -1 1689 22 1262 1775 170361 39113 2.92762 2.92762 -114 -2.92762 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0261704 0.0227475 69 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 6.72 vpr 62.62 MiB -1 -1 0.19 18144 1 0.03 -1 -1 30572 -1 -1 14 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.1 MiB 1.25 648 9196 3790 4996 410 62.6 MiB 0.08 0.00 3.17157 -90.6759 -3.17157 3.17157 0.74 0.000568366 0.000529306 0.0345525 0.0321951 46 1978 24 6.99608e+06 206020 828058. 2865.25 2.50 0.14746 0.128219 28066 200906 -1 1481 22 1137 1821 145971 33253 3.31801 3.31801 -110.862 -3.31801 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0240626 0.0209138 66 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.75 vpr 62.61 MiB -1 -1 0.18 17908 1 0.03 -1 -1 30464 -1 -1 18 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.1 MiB 0.71 570 9706 3978 5182 546 62.6 MiB 0.08 0.00 2.61364 -80.359 -2.61364 2.61364 0.72 0.000560022 0.000521367 0.0347974 0.0324165 40 1949 41 6.99608e+06 264882 706193. 2443.58 3.20 0.159949 0.138378 26914 176310 -1 1694 24 1354 2046 201637 49397 3.33981 3.33981 -116.476 -3.33981 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0259248 0.0224715 69 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.70 vpr 62.57 MiB -1 -1 0.17 17792 1 0.05 -1 -1 30564 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.1 MiB 0.33 583 11389 4822 6277 290 62.6 MiB 0.10 0.00 2.81485 -90.4029 -2.81485 2.81485 0.72 0.000571756 0.000532363 0.0453724 0.0423668 40 1795 29 6.99608e+06 147157 706193. 2443.58 1.44 0.140305 0.123339 26914 176310 -1 1493 20 1106 1596 123604 28576 3.08097 3.08097 -110.442 -3.08097 0 0 926341. 3205.33 0.24 0.06 0.15 -1 -1 0.24 0.0225064 0.0196274 58 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 11.19 vpr 62.68 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30368 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 24.1 MiB 0.78 817 9196 3779 5223 194 62.7 MiB 0.08 0.00 2.62898 -88.8953 -2.62898 2.62898 0.72 0.000584989 0.000544974 0.0357076 0.0332993 40 2041 22 6.99608e+06 191304 706193. 2443.58 7.55 0.262135 0.225371 26914 176310 -1 1871 23 1263 1813 164347 35889 3.13892 3.13892 -112.954 -3.13892 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0262197 0.0228136 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.85 vpr 62.75 MiB -1 -1 0.18 18068 1 0.03 -1 -1 30600 -1 -1 15 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.3 MiB 2.21 912 10476 3003 6543 930 62.8 MiB 0.09 0.00 2.43005 -86.9513 -2.43005 2.43005 0.72 0.000595531 0.000554154 0.0411819 0.0383588 36 2372 23 6.99608e+06 220735 648988. 2245.63 2.72 0.16207 0.140959 26050 158493 -1 2030 21 1419 1841 164287 34203 2.62572 2.62572 -106.555 -2.62572 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0250899 0.0218495 77 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 7.93 vpr 63.12 MiB -1 -1 0.20 18224 1 0.03 -1 -1 30612 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 1.04 1100 13840 5399 6347 2094 63.1 MiB 0.13 0.00 3.53733 -105.515 -3.53733 3.53733 0.72 0.000733267 0.000681962 0.0617446 0.0574543 44 3057 27 6.99608e+06 235451 787024. 2723.27 3.85 0.286844 0.24975 27778 195446 -1 2261 21 1482 2396 167411 36241 3.64357 3.64357 -126.607 -3.64357 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0309728 0.027202 92 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.78 vpr 63.23 MiB -1 -1 0.20 18312 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 24.8 MiB 1.38 1094 12503 4313 6328 1862 63.2 MiB 0.12 0.00 3.55446 -126.064 -3.55446 3.55446 0.72 0.000754288 0.000700749 0.0553821 0.0514565 40 3328 35 6.99608e+06 279598 706193. 2443.58 3.39 0.222284 0.193905 26914 176310 -1 2693 24 2627 3617 360103 79559 4.2804 4.2804 -159.512 -4.2804 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0346291 0.0302241 106 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 12.00 vpr 62.72 MiB -1 -1 0.19 18192 1 0.03 -1 -1 30328 -1 -1 11 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.1 MiB 1.11 904 12009 5044 6695 270 62.7 MiB 0.10 0.00 2.87547 -97.7608 -2.87547 2.87547 0.72 0.000604893 0.000563836 0.0483227 0.0450562 40 2079 45 6.99608e+06 161872 706193. 2443.58 8.02 0.301262 0.259698 26914 176310 -1 1868 19 1196 1738 168947 32570 3.32251 3.32251 -122.736 -3.32251 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.022723 0.0198445 66 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 6.39 vpr 63.29 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30588 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1020 15044 6472 8019 553 63.3 MiB 0.14 0.00 2.98339 -102.091 -2.98339 2.98339 0.71 0.000721901 0.000671246 0.065375 0.0607788 44 2978 32 6.99608e+06 250167 787024. 2723.27 1.97 0.192734 0.169535 27778 195446 -1 2053 24 1793 2478 198042 43059 3.40257 3.40257 -124.449 -3.40257 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0331359 0.028861 99 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 9.24 vpr 63.41 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30452 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 25.0 MiB 1.39 1077 10400 3926 4513 1961 63.4 MiB 0.11 0.00 4.14835 -131.391 -4.14835 4.14835 0.72 0.000743544 0.000691606 0.0478354 0.0445698 56 2682 27 6.99608e+06 250167 973134. 3367.25 4.64 0.265488 0.23063 29794 239141 -1 2411 27 2711 3909 483096 132561 4.9633 4.9633 -167.47 -4.9633 0 0 1.19926e+06 4149.71 0.30 0.15 0.21 -1 -1 0.30 0.0367067 0.0319617 104 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.89 vpr 63.25 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30784 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.8 MiB 2.81 984 10056 3405 4739 1912 63.3 MiB 0.10 0.00 4.27408 -130.809 -4.27408 4.27408 0.72 0.000732528 0.000680351 0.0449783 0.0418094 48 3062 38 6.99608e+06 264882 865456. 2994.66 3.01 0.209297 0.182048 28354 207349 -1 2367 22 1844 2634 233767 52747 4.5402 4.5402 -158.039 -4.5402 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0320394 0.028029 103 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.60 vpr 63.11 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30648 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64624 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.5 MiB 1.84 908 13599 5758 7306 535 63.1 MiB 0.13 0.00 3.12612 -102.126 -3.12612 3.12612 0.72 0.000698317 0.00064907 0.0587422 0.0546536 48 2794 41 6.99608e+06 235451 865456. 2994.66 2.69 0.216765 0.189588 28354 207349 -1 2211 21 1672 2239 235839 51460 3.41986 3.41986 -126.22 -3.41986 0 0 1.05005e+06 3633.38 0.27 0.09 0.19 -1 -1 0.27 0.0290816 0.0254331 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.22 vpr 62.80 MiB -1 -1 0.19 18052 1 0.03 -1 -1 30588 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 0.88 743 12528 4878 5586 2064 62.8 MiB 0.10 0.00 3.22248 -90.68 -3.22248 3.22248 0.72 0.000614805 0.000571846 0.0487085 0.0453318 44 2522 31 6.99608e+06 206020 787024. 2723.27 2.37 0.181351 0.158267 27778 195446 -1 1690 23 1302 1879 132545 30581 3.79676 3.79676 -116.671 -3.79676 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.027344 0.0238335 72 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 7.10 vpr 63.49 MiB -1 -1 0.20 18748 1 0.03 -1 -1 30776 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 25.2 MiB 1.20 1439 14407 4264 8501 1642 63.5 MiB 0.16 0.00 3.9997 -140.422 -3.9997 3.9997 0.72 0.000900308 0.000839715 0.0729511 0.0680712 44 4203 50 6.99608e+06 309029 787024. 2723.27 2.75 0.283348 0.248366 27778 195446 -1 3148 21 2507 3701 305712 61755 4.64614 4.64614 -172.8 -4.64614 0 0 997811. 3452.63 0.26 0.11 0.17 -1 -1 0.26 0.0357409 0.0312243 129 84 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.41 vpr 62.64 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30332 -1 -1 11 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 24.1 MiB 2.70 635 9064 3193 4575 1296 62.6 MiB 0.08 0.00 2.4909 -82.0802 -2.4909 2.4909 0.72 0.000561944 0.000522695 0.034842 0.0324475 36 2378 41 6.99608e+06 161872 648988. 2245.63 1.88 0.147199 0.12796 26050 158493 -1 1612 19 1318 1730 146064 33175 3.38757 3.38757 -115.953 -3.38757 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0216963 0.0189024 65 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.28 vpr 63.08 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30396 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.5 MiB 0.63 971 14188 5860 7557 771 63.1 MiB 0.13 0.00 3.70767 -121.086 -3.70767 3.70767 0.72 0.000692957 0.000645196 0.061879 0.0576475 44 3025 44 6.99608e+06 220735 787024. 2723.27 2.64 0.194328 0.1708 27778 195446 -1 2243 22 1729 2442 199152 40727 4.34761 4.34761 -148.448 -4.34761 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0293415 0.025647 85 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 6.45 vpr 63.02 MiB -1 -1 0.11 18464 1 0.03 -1 -1 30540 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1006 11402 4743 6382 277 63.0 MiB 0.11 0.00 3.25125 -106.732 -3.25125 3.25125 0.72 0.000692923 0.000644273 0.0491001 0.0456689 46 2849 35 6.99608e+06 220735 828058. 2865.25 2.42 0.198194 0.172923 28066 200906 -1 2104 18 1333 2054 157712 34318 3.52942 3.52942 -124.423 -3.52942 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0256595 0.0225112 91 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 15.06 vpr 62.77 MiB -1 -1 0.18 17968 1 0.03 -1 -1 30292 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.1 MiB 0.75 711 9712 3951 5467 294 62.8 MiB 0.09 0.00 3.61243 -99.7162 -3.61243 3.61243 0.72 0.000626126 0.000582442 0.0376531 0.0350653 46 2357 42 6.99608e+06 235451 828058. 2865.25 11.32 0.306934 0.26456 28066 200906 -1 1802 21 1221 2106 172625 39342 3.93417 3.93417 -125.536 -3.93417 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0261432 0.0228698 68 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.14 vpr 63.13 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30548 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 24.6 MiB 1.15 900 8698 2616 4261 1821 63.1 MiB 0.09 0.00 3.39715 -105.447 -3.39715 3.39715 0.75 0.000694897 0.000645743 0.0384285 0.0357774 38 2840 46 6.99608e+06 220735 678818. 2348.85 2.06 0.173017 0.150667 26626 170182 -1 1988 21 1484 2033 153531 34065 3.37856 3.37856 -122.477 -3.37856 0 0 902133. 3121.57 0.25 0.08 0.14 -1 -1 0.25 0.029371 0.0257323 90 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 6.56 vpr 63.34 MiB -1 -1 0.20 18476 1 0.03 -1 -1 30612 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.6 MiB 1.44 930 14444 6166 7835 443 63.3 MiB 0.14 0.00 3.02259 -101.51 -3.02259 3.02259 0.72 0.000714029 0.000663718 0.0638221 0.0593236 44 3446 32 6.99608e+06 220735 787024. 2723.27 2.10 0.186465 0.164238 27778 195446 -1 2212 20 1517 2217 154055 36013 3.78996 3.78996 -134.181 -3.78996 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0286755 0.0251423 92 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 7.92 vpr 63.44 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30524 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.8 MiB 2.13 1166 14528 6184 7653 691 63.4 MiB 0.14 0.00 2.93047 -104.411 -2.93047 2.93047 0.75 0.000746415 0.000692807 0.0655775 0.0608554 40 3066 30 6.99608e+06 235451 706193. 2443.58 2.63 0.220136 0.192578 26914 176310 -1 2757 21 2079 2701 259500 53405 3.62011 3.62011 -134.752 -3.62011 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.0308306 0.0270113 101 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.47 vpr 62.95 MiB -1 -1 0.18 18088 1 0.03 -1 -1 30500 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.4 MiB 0.85 764 11366 3709 5324 2333 62.9 MiB 0.12 0.00 3.71143 -99.1512 -3.71143 3.71143 0.72 0.000761711 0.000713558 0.0551943 0.0513862 46 2183 25 6.99608e+06 206020 828058. 2865.25 2.61 0.183434 0.160501 28066 200906 -1 1614 20 1114 1632 102518 26714 3.63722 3.63722 -119.972 -3.63722 0 0 1.01997e+06 3529.29 0.26 0.06 0.18 -1 -1 0.26 0.0257356 0.0225419 74 21 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.46 vpr 63.01 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30620 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 24.5 MiB 1.71 771 10835 3829 5240 1766 63.0 MiB 0.10 0.00 3.36978 -103.004 -3.36978 3.36978 0.72 0.000710941 0.000663679 0.0480658 0.0447208 42 2913 37 6.99608e+06 191304 744469. 2576.02 1.78 0.166269 0.145643 27202 183097 -1 1987 20 1749 2399 198190 45043 3.99832 3.99832 -134.019 -3.99832 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.026371 0.0230844 81 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.70 vpr 63.13 MiB -1 -1 0.19 18172 1 0.03 -1 -1 30532 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.7 MiB 0.84 962 10050 3332 4680 2038 63.1 MiB 0.10 0.00 3.56031 -110.868 -3.56031 3.56031 0.72 0.000718082 0.000667269 0.0453761 0.0422068 44 3708 39 6.99608e+06 235451 787024. 2723.27 2.83 0.189667 0.165468 27778 195446 -1 2447 23 2042 3120 248772 54216 4.59785 4.59785 -148.905 -4.59785 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0321673 0.0280766 99 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 20.36 vpr 63.20 MiB -1 -1 0.19 18140 1 0.03 -1 -1 30468 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.7 MiB 0.95 992 13324 4975 6120 2229 63.2 MiB 0.13 0.00 3.20742 -105.642 -3.20742 3.20742 0.71 0.000738416 0.000685789 0.0602451 0.0559261 50 3470 40 6.99608e+06 235451 902133. 3121.57 16.23 0.395382 0.341375 28642 213929 -1 2565 22 2215 3291 267985 63360 3.78081 3.78081 -134.02 -3.78081 0 0 1.08113e+06 3740.92 0.32 0.10 0.18 -1 -1 0.32 0.0319744 0.0279153 104 74 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 8.70 vpr 62.49 MiB -1 -1 0.16 18192 1 0.03 -1 -1 30284 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 24.0 MiB 0.55 668 9529 3846 4845 838 62.5 MiB 0.08 0.00 2.58978 -80.2469 -2.58978 2.58978 0.72 0.00055659 0.000517768 0.0362113 0.0337461 38 1916 26 6.99608e+06 147157 678818. 2348.85 5.35 0.240823 0.207143 26626 170182 -1 1493 23 1066 1469 118517 26555 3.00882 3.00882 -100.312 -3.00882 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0246195 0.0213877 60 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 5.71 vpr 63.00 MiB -1 -1 0.12 18512 1 0.03 -1 -1 30756 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 0.75 838 11571 4367 5381 1823 63.0 MiB 0.11 0.00 3.31348 -118.994 -3.31348 3.31348 0.72 0.000669107 0.000622131 0.0483142 0.0449511 42 3023 38 6.99608e+06 220735 744469. 2576.02 2.06 0.174188 0.152195 27202 183097 -1 2158 22 2051 2756 255018 54306 4.04565 4.04565 -147.861 -4.04565 0 0 949917. 3286.91 0.25 0.09 0.16 -1 -1 0.25 0.0288214 0.0251318 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 8.17 vpr 63.23 MiB -1 -1 0.20 18504 1 0.03 -1 -1 30640 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.8 MiB 0.93 1085 14700 5740 6772 2188 63.2 MiB 0.15 0.00 3.88084 -123.394 -3.88084 3.88084 0.72 0.000759102 0.00070523 0.0678012 0.0630308 50 2917 22 6.99608e+06 235451 902133. 3121.57 4.11 0.300171 0.261239 28642 213929 -1 2399 25 2205 3274 277140 55086 4.62916 4.62916 -153.677 -4.62916 0 0 1.08113e+06 3740.92 0.28 0.10 0.18 -1 -1 0.28 0.0364839 0.0318781 98 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.79 vpr 62.97 MiB -1 -1 0.19 18328 1 0.03 -1 -1 30656 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1033 10557 3204 6861 492 63.0 MiB 0.11 0.00 3.52245 -120.132 -3.52245 3.52245 0.72 0.000687028 0.000639356 0.0454696 0.0423446 38 2852 25 6.99608e+06 220735 678818. 2348.85 2.28 0.160995 0.141128 26626 170182 -1 2319 20 1571 2135 179749 36621 3.47186 3.47186 -139.883 -3.47186 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279446 0.0245262 85 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 6.16 vpr 62.64 MiB -1 -1 0.19 18208 1 0.03 -1 -1 30560 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 1.16 636 11830 4920 6431 479 62.6 MiB 0.09 0.00 3.02694 -91.2909 -3.02694 3.02694 0.72 0.000597 0.00055547 0.0417004 0.038818 42 2354 50 6.99608e+06 294314 744469. 2576.02 2.06 0.162204 0.141343 27202 183097 -1 1630 23 1231 1866 174117 47625 3.59861 3.59861 -121.821 -3.59861 0 0 949917. 3286.91 0.25 0.08 0.16 -1 -1 0.25 0.0259092 0.0224645 72 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 9.14 vpr 63.80 MiB -1 -1 0.11 18724 1 0.03 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 25.1 MiB 1.47 1456 15924 5304 8963 1657 63.8 MiB 0.17 0.00 4.89138 -154.94 -4.89138 4.89138 0.72 0.000824847 0.000767186 0.0766633 0.071294 48 3545 30 6.99608e+06 264882 865456. 2994.66 4.54 0.330193 0.287205 28354 207349 -1 3157 21 2611 3937 422588 85869 5.51149 5.51149 -189.931 -5.51149 0 0 1.05005e+06 3633.38 0.28 0.13 0.18 -1 -1 0.28 0.0345151 0.0302203 116 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.03 vpr 62.84 MiB -1 -1 0.19 18536 1 0.03 -1 -1 30660 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.3 MiB 0.60 921 13358 5636 7404 318 62.8 MiB 0.12 0.00 3.97864 -121.289 -3.97864 3.97864 0.72 0.000681119 0.00063351 0.0574946 0.0535097 40 2348 27 6.99608e+06 206020 706193. 2443.58 2.38 0.196662 0.172125 26914 176310 -1 2141 24 1820 2423 233391 48799 4.43025 4.43025 -149.227 -4.43025 0 0 926341. 3205.33 0.24 0.10 0.18 -1 -1 0.24 0.0316621 0.0276136 83 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 4.95 vpr 62.47 MiB -1 -1 0.17 18036 1 0.03 -1 -1 30752 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.8 MiB 0.22 492 9531 2918 4851 1762 62.5 MiB 0.07 0.00 2.5282 -75.3477 -2.5282 2.5282 0.72 0.000533713 0.000497329 0.0330515 0.0308156 48 1271 39 6.99608e+06 191304 865456. 2994.66 1.81 0.151019 0.131162 28354 207349 -1 1104 17 817 1272 97653 25659 3.05697 3.05697 -94.2221 -3.05697 0 0 1.05005e+06 3633.38 0.28 0.05 0.18 -1 -1 0.28 0.0187945 0.0164273 51 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.33 vpr 62.94 MiB -1 -1 0.20 18236 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1027 15904 6979 8337 588 62.9 MiB 0.15 0.00 4.00152 -109.799 -4.00152 4.00152 0.72 0.000704829 0.000654051 0.0678892 0.0630624 48 2971 29 6.99608e+06 235451 865456. 2994.66 2.08 0.186045 0.164185 28354 207349 -1 2420 23 1740 2975 314104 67407 4.65726 4.65726 -144.328 -4.65726 0 0 1.05005e+06 3633.38 0.29 0.11 0.18 -1 -1 0.29 0.0311579 0.0272291 85 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.26 vpr 62.50 MiB -1 -1 0.17 18036 1 0.03 -1 -1 30332 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.0 MiB 0.79 515 9872 3511 4486 1875 62.5 MiB 0.08 0.00 2.4469 -79.9782 -2.4469 2.4469 0.72 0.000554745 0.000516253 0.035015 0.0326195 44 1586 23 6.99608e+06 206020 787024. 2723.27 1.60 0.125177 0.109514 27778 195446 -1 1215 21 1143 1701 99961 26323 3.40987 3.40987 -109.018 -3.40987 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0229767 0.0200118 57 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 8.22 vpr 62.60 MiB -1 -1 0.19 18020 1 0.03 -1 -1 30720 -1 -1 13 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.0 MiB 0.55 667 9397 3887 5119 391 62.6 MiB 0.08 0.00 2.90847 -91.7989 -2.90847 2.90847 0.76 0.000590131 0.000549515 0.0372416 0.0346923 44 2181 23 6.99608e+06 191304 787024. 2723.27 4.68 0.271333 0.233294 27778 195446 -1 1553 24 1412 1948 157151 36039 3.11382 3.11382 -108.26 -3.11382 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.026922 0.0233845 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 9.16 vpr 63.08 MiB -1 -1 0.21 18512 1 0.03 -1 -1 30448 -1 -1 18 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.54 1150 11233 4622 6106 505 63.1 MiB 0.11 0.00 3.48226 -111.346 -3.48226 3.48226 0.77 0.000689544 0.000640703 0.0484465 0.0450639 44 3262 24 6.99608e+06 264882 787024. 2723.27 4.52 0.270732 0.234126 27778 195446 -1 2596 20 1903 2775 238735 47793 3.6667 3.6667 -134.647 -3.6667 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0281533 0.0246665 97 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.77 vpr 63.05 MiB -1 -1 0.19 18284 1 0.03 -1 -1 30512 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1209 12247 4067 6361 1819 63.1 MiB 0.12 0.00 3.50518 -122.328 -3.50518 3.50518 0.71 0.000704108 0.000654264 0.0537523 0.0499658 46 2626 22 6.99608e+06 220735 828058. 2865.25 3.44 0.259277 0.225194 28066 200906 -1 2229 20 1635 2285 166074 34350 3.99061 3.99061 -145.786 -3.99061 0 0 1.01997e+06 3529.29 0.30 0.08 0.17 -1 -1 0.30 0.0286906 0.0250817 93 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 8.37 vpr 63.05 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30592 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.5 MiB 1.90 1192 14106 4713 7609 1784 63.1 MiB 0.13 0.00 3.67287 -121.273 -3.67287 3.67287 0.72 0.000700357 0.000651373 0.060968 0.0567346 38 3149 39 6.99608e+06 220735 678818. 2348.85 3.48 0.217601 0.190515 26626 170182 -1 2674 23 1995 2800 234281 46483 4.52311 4.52311 -157.252 -4.52311 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0315234 0.0275273 90 48 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 9.12 vpr 62.74 MiB -1 -1 0.21 18020 1 0.03 -1 -1 30608 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.74 978 11609 3654 6422 1533 62.7 MiB 0.10 0.00 3.18112 -107.154 -3.18112 3.18112 0.76 0.00059597 0.000554933 0.0456985 0.0425895 36 2606 48 6.99608e+06 161872 648988. 2245.63 4.41 0.189063 0.164484 26050 158493 -1 2121 21 1267 1736 172056 33739 3.49486 3.49486 -125.648 -3.49486 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0245196 0.0213583 67 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.69 vpr 63.05 MiB -1 -1 0.20 18572 1 0.03 -1 -1 30608 -1 -1 14 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.5 MiB 0.82 841 12302 5190 6760 352 63.1 MiB 0.11 0.00 3.00077 -98.7175 -3.00077 3.00077 0.73 0.000641952 0.000596774 0.0507772 0.0472299 46 2343 25 6.99608e+06 206020 828058. 2865.25 3.84 0.237565 0.206071 28066 200906 -1 1849 19 1448 2084 150849 33414 3.32981 3.32981 -120.338 -3.32981 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0259594 0.0227918 86 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.32 vpr 63.32 MiB -1 -1 0.19 18344 1 0.03 -1 -1 30576 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.8 MiB 1.10 913 10231 3162 5342 1727 63.3 MiB 0.09 0.00 2.78804 -88.9625 -2.78804 2.78804 0.73 0.000655459 0.00060992 0.0407437 0.0379354 40 2552 33 6.99608e+06 279598 706193. 2443.58 2.28 0.172698 0.150311 26914 176310 -1 2165 19 1640 2412 221418 48040 2.97562 2.97562 -111.126 -2.97562 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0254527 0.022261 91 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.25 vpr 62.76 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30544 -1 -1 17 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.1 MiB 0.45 757 13443 5736 7022 685 62.8 MiB 0.11 0.00 3.06285 -88.8658 -3.06285 3.06285 0.72 0.000590825 0.000550194 0.0504835 0.0470011 40 2134 24 6.99608e+06 250167 706193. 2443.58 3.92 0.2589 0.223764 26914 176310 -1 1807 21 1315 1954 182571 38350 3.81422 3.81422 -114.162 -3.81422 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0244545 0.0213019 71 20 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.56 vpr 63.02 MiB -1 -1 0.19 17972 1 0.03 -1 -1 30600 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.5 MiB 1.69 788 12465 5261 6765 439 63.0 MiB 0.11 0.00 3.54051 -111.581 -3.54051 3.54051 0.72 0.000634125 0.000589038 0.0506121 0.0470956 46 2524 32 6.99608e+06 220735 828058. 2865.25 2.87 0.185179 0.161679 28066 200906 -1 1801 21 1647 2197 154192 34565 4.17095 4.17095 -141.556 -4.17095 0 0 1.01997e+06 3529.29 0.26 0.07 0.19 -1 -1 0.26 0.0263112 0.0229626 87 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.82 vpr 62.91 MiB -1 -1 0.19 18440 1 0.03 -1 -1 30336 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.3 MiB 0.80 1014 11698 4072 5758 1868 62.9 MiB 0.11 0.00 2.893 -100.015 -2.893 2.893 0.72 0.000663071 0.000616105 0.0492215 0.0457694 38 3089 42 6.99608e+06 206020 678818. 2348.85 4.07 0.269398 0.232905 26626 170182 -1 2430 21 1986 2728 250205 50305 3.12421 3.12421 -129.01 -3.12421 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0272762 0.0237886 93 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 7.56 vpr 62.82 MiB -1 -1 0.19 17736 1 0.03 -1 -1 30664 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.4 MiB 0.36 741 13143 5420 7092 631 62.8 MiB 0.11 0.00 3.86008 -101.496 -3.86008 3.86008 0.72 0.000631487 0.000587961 0.0453832 0.042269 50 1874 28 6.99608e+06 353176 902133. 3121.57 4.27 0.263206 0.227467 28642 213929 -1 1585 18 1026 1735 157993 38675 3.77787 3.77787 -117.286 -3.77787 0 0 1.08113e+06 3740.92 0.28 0.07 0.19 -1 -1 0.28 0.0230004 0.0201149 74 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 9.16 vpr 63.05 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30644 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.5 MiB 1.76 843 10370 4264 5677 429 63.0 MiB 0.10 0.00 3.51478 -115.311 -3.51478 3.51478 0.73 0.000702535 0.000652596 0.0448705 0.0416617 50 2684 23 6.99608e+06 206020 902133. 3121.57 4.36 0.274252 0.237144 28642 213929 -1 2156 21 1784 2618 222100 50655 4.33961 4.33961 -144.182 -4.33961 0 0 1.08113e+06 3740.92 0.28 0.09 0.18 -1 -1 0.28 0.0294035 0.02576 86 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 10.23 vpr 63.25 MiB -1 -1 0.19 18480 1 0.03 -1 -1 30624 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.8 MiB 0.71 1069 10581 3838 5377 1366 63.3 MiB 0.11 0.00 4.133 -132.102 -4.133 4.133 0.71 0.000745232 0.000692366 0.048709 0.0452659 40 3788 47 6.99608e+06 250167 706193. 2443.58 6.45 0.225495 0.196216 26914 176310 -1 2816 20 2292 3189 411754 81914 5.00604 5.00604 -173.535 -5.00604 0 0 926341. 3205.33 0.24 0.14 0.15 -1 -1 0.24 0.0323225 0.028322 102 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 5.90 vpr 63.21 MiB -1 -1 0.19 18548 1 0.03 -1 -1 30500 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.8 MiB 0.77 1077 10581 4112 5692 777 63.2 MiB 0.11 0.00 3.45716 -117.362 -3.45716 3.45716 0.73 0.000748723 0.000695794 0.0480022 0.0446194 42 3848 42 6.99608e+06 250167 744469. 2576.02 2.11 0.194786 0.170252 27202 183097 -1 2631 21 2010 2858 272380 56240 3.8842 3.8842 -147.288 -3.8842 0 0 949917. 3286.91 0.25 0.10 0.16 -1 -1 0.25 0.030787 0.0269332 104 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.60 vpr 62.79 MiB -1 -1 0.19 17972 1 0.03 -1 -1 30388 -1 -1 13 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.1 MiB 0.83 721 8607 2864 3900 1843 62.8 MiB 0.08 0.00 3.38615 -98.8809 -3.38615 3.38615 0.72 0.000581872 0.000541674 0.033795 0.0314841 38 2523 35 6.99608e+06 191304 678818. 2348.85 2.85 0.160117 0.138955 26626 170182 -1 1886 22 1344 1914 165374 35916 4.07636 4.07636 -133.945 -4.07636 0 0 902133. 3121.57 0.23 0.07 0.15 -1 -1 0.23 0.0251032 0.0217961 71 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.59 vpr 63.14 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30792 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.8 MiB 0.91 905 12292 4177 5959 2156 63.1 MiB 0.12 0.00 4.34696 -131.509 -4.34696 4.34696 0.72 0.000724946 0.000674098 0.0546431 0.050846 40 3259 41 6.99608e+06 264882 706193. 2443.58 3.68 0.222793 0.194431 26914 176310 -1 2560 24 2487 3522 333058 73752 5.24635 5.24635 -173.451 -5.24635 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.033433 0.0291552 104 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 8.16 vpr 62.95 MiB -1 -1 0.19 18416 1 0.03 -1 -1 30588 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.4 MiB 1.05 816 13524 5097 6748 1679 63.0 MiB 0.13 0.00 3.97864 -116.004 -3.97864 3.97864 0.72 0.000687461 0.000639534 0.0590941 0.0550408 44 2680 30 6.99608e+06 206020 787024. 2723.27 4.07 0.270821 0.235411 27778 195446 -1 1883 19 1574 2527 191148 42861 4.16265 4.16265 -137.527 -4.16265 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0265798 0.0233507 82 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.91 vpr 63.08 MiB -1 -1 0.21 18304 1 0.03 -1 -1 30308 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 24.5 MiB 1.12 851 10916 3649 5536 1731 63.1 MiB 0.10 0.00 4.26485 -118.03 -4.26485 4.26485 0.72 0.000683823 0.000635996 0.0458827 0.0427014 40 2541 34 6.99608e+06 250167 706193. 2443.58 2.82 0.191588 0.166865 26914 176310 -1 2160 27 1894 2795 380457 144715 4.41261 4.41261 -142.567 -4.41261 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0342749 0.0298009 87 43 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 7.26 vpr 63.31 MiB -1 -1 0.21 18444 1 0.03 -1 -1 30296 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 30 32 377 310 1 234 82 17 17 289 -1 unnamed_device 24.9 MiB 1.80 1005 15212 6051 7763 1398 63.3 MiB 0.14 0.00 3.39158 -108.32 -3.39158 3.39158 0.72 0.000719845 0.000669007 0.0641356 0.0596039 44 3009 41 6.99608e+06 294314 787024. 2723.27 2.40 0.195622 0.171814 27778 195446 -1 2190 21 2038 2881 243182 51461 3.7982 3.7982 -133.732 -3.7982 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0297469 0.025966 108 78 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 7.39 vpr 63.18 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30520 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1210 16531 6840 8472 1219 63.2 MiB 0.15 0.00 3.87837 -126.484 -3.87837 3.87837 0.74 0.000711277 0.000661081 0.0701155 0.0652178 40 3236 35 6.99608e+06 250167 706193. 2443.58 2.78 0.224341 0.19681 26914 176310 -1 2742 31 2388 3457 490645 157778 4.45255 4.45255 -159.06 -4.45255 0 0 926341. 3205.33 0.24 0.16 0.15 -1 -1 0.24 0.0403613 0.0350423 95 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 18.45 vpr 63.54 MiB -1 -1 0.21 18288 1 0.03 -1 -1 30536 -1 -1 20 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.1 MiB 2.20 1157 13906 5693 6420 1793 63.5 MiB 0.13 0.00 3.11675 -104.044 -3.11675 3.11675 0.72 0.000715381 0.000664674 0.0595474 0.0553616 40 3206 44 6.99608e+06 294314 706193. 2443.58 13.26 0.36453 0.314877 26914 176310 -1 2752 20 1941 2508 264929 53525 3.58241 3.58241 -128.348 -3.58241 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0288561 0.0252487 109 79 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.83 vpr 62.54 MiB -1 -1 0.17 17848 1 0.03 -1 -1 30712 -1 -1 10 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 23.9 MiB 1.05 628 9529 3942 5346 241 62.5 MiB 0.08 0.00 2.91658 -86.3379 -2.91658 2.91658 0.72 0.000560287 0.000522108 0.0363594 0.033912 38 1937 26 6.99608e+06 147157 678818. 2348.85 1.96 0.142821 0.124482 26626 170182 -1 1487 17 943 1440 108243 24445 3.09767 3.09767 -109.286 -3.09767 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0194433 0.0170492 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 8.51 vpr 63.37 MiB -1 -1 0.19 18284 1 0.03 -1 -1 30548 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 0.63 1015 14956 4846 7419 2691 63.4 MiB 0.14 0.00 4.09386 -129.395 -4.09386 4.09386 0.72 0.000724839 0.000673784 0.0647865 0.0602241 48 2821 34 6.99608e+06 250167 865456. 2994.66 4.74 0.29521 0.256548 28354 207349 -1 2371 25 2164 3020 400497 120826 4.85874 4.85874 -160.648 -4.85874 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.0342796 0.0298777 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 20.25 vpr 63.26 MiB -1 -1 0.18 18292 1 0.03 -1 -1 30552 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 24.7 MiB 0.89 1040 11806 4361 5302 2143 63.3 MiB 0.12 0.00 4.125 -138.924 -4.125 4.125 0.72 0.000756117 0.000702104 0.0544557 0.0506469 40 3707 42 6.99608e+06 250167 706193. 2443.58 16.29 0.39132 0.338 26914 176310 -1 2994 25 3131 4450 452262 93314 4.93994 4.93994 -179.233 -4.93994 0 0 926341. 3205.33 0.24 0.14 0.15 -1 -1 0.24 0.0360494 0.0314257 109 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 7.00 vpr 62.64 MiB -1 -1 0.18 18024 1 0.03 -1 -1 30312 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 24.1 MiB 0.90 748 9713 2664 5973 1076 62.6 MiB 0.10 0.00 3.15927 -95.7814 -3.15927 3.15927 0.72 0.000581348 0.000541818 0.0377947 0.0352044 36 2472 35 6.99608e+06 161872 648988. 2245.63 3.23 0.163403 0.142034 26050 158493 -1 1796 20 1266 1592 132457 27817 3.17921 3.17921 -114.143 -3.17921 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0233061 0.0203298 69 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.20 vpr 62.41 MiB -1 -1 0.18 17780 1 0.03 -1 -1 30580 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.0 MiB 0.43 468 10156 3469 4653 2034 62.4 MiB 0.08 0.00 2.91353 -84.1354 -2.91353 2.91353 0.72 0.000548265 0.000510172 0.036869 0.0343449 46 1618 36 6.99608e+06 191304 828058. 2865.25 3.85 0.214024 0.184599 28066 200906 -1 1213 37 1211 1778 114513 29720 3.33257 3.33257 -103.901 -3.33257 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0362276 0.0312978 56 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.55 vpr 62.93 MiB -1 -1 0.19 18332 1 0.03 -1 -1 30784 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.3 MiB 0.75 804 12923 3877 6748 2298 62.9 MiB 0.12 0.00 3.83011 -121.062 -3.83011 3.83011 0.72 0.000699933 0.000651029 0.0562284 0.0523125 44 3118 42 6.99608e+06 220735 787024. 2723.27 2.74 0.214715 0.187635 27778 195446 -1 1958 23 1813 2417 204891 44220 4.11585 4.11585 -142.125 -4.11585 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0309561 0.0270257 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 8.83 vpr 63.03 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30476 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 24.4 MiB 1.58 898 12247 5117 6687 443 63.0 MiB 0.12 0.00 3.76217 -112.114 -3.76217 3.76217 0.71 0.000711527 0.000661856 0.0541621 0.0504242 44 3188 38 6.99608e+06 220735 787024. 2723.27 4.20 0.311993 0.270128 27778 195446 -1 1966 22 1466 1994 149049 34408 4.16495 4.16495 -136.679 -4.16495 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0302028 0.0263884 95 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 6.02 vpr 62.97 MiB -1 -1 0.20 18136 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.5 MiB 0.38 909 15656 5573 7939 2144 63.0 MiB 0.14 0.00 3.77681 -110.691 -3.77681 3.77681 0.72 0.000713041 0.00066319 0.0665583 0.0619329 48 2583 45 6.99608e+06 250167 865456. 2994.66 2.61 0.231862 0.203278 28354 207349 -1 1954 23 1686 2916 208810 48734 4.68915 4.68915 -146.65 -4.68915 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0317774 0.0277581 83 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.63 vpr 62.98 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30316 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 1.02 841 8710 2966 4267 1477 63.0 MiB 0.08 0.00 3.00069 -86.6521 -3.00069 3.00069 0.72 0.000639184 0.000594843 0.0358167 0.0333602 38 2942 44 6.99608e+06 235451 678818. 2348.85 3.76 0.182696 0.158352 26626 170182 -1 2146 20 1619 2377 194192 42865 4.05861 4.05861 -122.066 -4.05861 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0255468 0.022307 86 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.33 vpr 62.76 MiB -1 -1 0.19 18064 1 0.02 -1 -1 30792 -1 -1 15 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 24.2 MiB 0.86 515 9839 4186 5007 646 62.8 MiB 0.08 0.00 2.96122 -84.6064 -2.96122 2.96122 0.72 0.000544157 0.000506199 0.036585 0.0340654 40 1548 28 6.99608e+06 220735 706193. 2443.58 1.59 0.148439 0.1289 26914 176310 -1 1295 22 995 1483 117752 29433 3.70502 3.70502 -116.289 -3.70502 0 0 926341. 3205.33 0.24 0.06 0.15 -1 -1 0.24 0.0233667 0.0202823 66 26 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 6.50 vpr 63.39 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.8 MiB 0.81 1227 16280 6634 7911 1735 63.4 MiB 0.17 0.00 3.52714 -118.035 -3.52714 3.52714 0.73 0.00080652 0.000748701 0.0767878 0.0713566 50 3591 23 6.99608e+06 264882 902133. 3121.57 2.48 0.237002 0.208026 28642 213929 -1 2787 21 2244 3432 281585 57798 4.49791 4.49791 -153.122 -4.49791 0 0 1.08113e+06 3740.92 0.30 0.10 0.18 -1 -1 0.30 0.0331961 0.029045 111 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.39 vpr 63.19 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30564 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1205 14528 5060 7601 1867 63.2 MiB 0.14 0.00 4.34903 -132.473 -4.34903 4.34903 0.72 0.00072319 0.000671868 0.0629299 0.058442 46 3056 23 6.99608e+06 250167 828058. 2865.25 2.68 0.203295 0.178489 28066 200906 -1 2632 21 2254 3137 287338 55505 4.65514 4.65514 -162.938 -4.65514 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0295496 0.0258609 100 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 5.84 vpr 63.00 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30596 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.4 MiB 0.86 925 14686 6380 8000 306 63.0 MiB 0.13 0.00 3.46994 -122.857 -3.46994 3.46994 0.72 0.000655461 0.00060889 0.0607261 0.0564647 46 2555 21 6.99608e+06 206020 828058. 2865.25 1.97 0.188944 0.165902 28066 200906 -1 1957 20 1420 1770 126465 28195 4.10401 4.10401 -149.126 -4.10401 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0263872 0.0230805 91 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 7.77 vpr 62.89 MiB -1 -1 0.18 18020 1 0.03 -1 -1 30656 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.4 MiB 0.60 874 12585 5353 6846 386 62.9 MiB 0.11 0.00 3.34348 -104.912 -3.34348 3.34348 0.72 0.000670823 0.0006234 0.052186 0.0485446 48 2349 21 6.99608e+06 220735 865456. 2994.66 4.18 0.239363 0.207587 28354 207349 -1 1874 19 1187 1642 145198 31041 3.61722 3.61722 -124.102 -3.61722 0 0 1.05005e+06 3633.38 0.28 0.07 0.18 -1 -1 0.28 0.0258437 0.0226703 81 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 6.77 vpr 63.28 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30420 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.6 MiB 1.26 951 12980 5469 6791 720 63.3 MiB 0.12 0.00 3.32588 -102.513 -3.32588 3.32588 0.73 0.000731974 0.000675326 0.0575278 0.0534889 46 2670 29 6.99608e+06 250167 828058. 2865.25 2.40 0.208324 0.182307 28066 200906 -1 1941 23 1753 2520 162291 37654 4.03962 4.03962 -124.439 -4.03962 0 0 1.01997e+06 3529.29 0.27 0.08 0.17 -1 -1 0.27 0.0324585 0.0283595 97 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 7.60 vpr 62.98 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30692 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 24.4 MiB 1.36 889 9374 3536 4551 1287 63.0 MiB 0.09 0.00 2.85029 -93.1822 -2.85029 2.85029 0.71 0.000650269 0.0006034 0.0388675 0.036141 40 2882 41 6.99608e+06 250167 706193. 2443.58 3.28 0.18524 0.160589 26914 176310 -1 2189 22 1611 2452 232661 52272 3.47636 3.47636 -119.008 -3.47636 0 0 926341. 3205.33 0.25 0.09 0.15 -1 -1 0.25 0.0279352 0.0243428 88 46 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 17.87 vpr 63.10 MiB -1 -1 0.19 18440 1 0.03 -1 -1 30576 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.5 MiB 0.76 888 10868 3889 5035 1944 63.1 MiB 0.10 0.00 3.62631 -117.578 -3.62631 3.62631 0.72 0.000700703 0.000651084 0.0484917 0.0451214 52 3038 45 6.99608e+06 206020 926341. 3205.33 13.97 0.352754 0.304359 29218 227130 -1 2025 20 1899 2857 228223 54438 4.25631 4.25631 -142.786 -4.25631 0 0 1.14541e+06 3963.36 0.30 0.09 0.19 -1 -1 0.30 0.0292717 0.025777 88 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 16.01 vpr 63.44 MiB -1 -1 0.18 18284 1 0.03 -1 -1 30416 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.9 MiB 2.28 1066 12636 4434 6563 1639 63.4 MiB 0.13 0.00 2.94423 -103.08 -2.94423 2.94423 0.74 0.000750131 0.000697879 0.0581077 0.0541214 40 3078 38 6.99608e+06 235451 706193. 2443.58 10.68 0.388697 0.334958 26914 176310 -1 2285 25 2331 3179 259357 63101 3.42177 3.42177 -131.43 -3.42177 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0354468 0.0309346 103 59 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.20 vpr 62.64 MiB -1 -1 0.15 18192 1 0.03 -1 -1 30508 -1 -1 14 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.1 MiB 1.16 650 10977 3650 5831 1496 62.6 MiB 0.09 0.00 3.50045 -98.6512 -3.50045 3.50045 0.72 0.000571704 0.000532427 0.0417932 0.0389441 36 2015 27 6.99608e+06 206020 648988. 2245.63 2.22 0.159307 0.138826 26050 158493 -1 1564 18 1316 1710 142095 31430 3.69246 3.69246 -122.507 -3.69246 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0207555 0.0181434 70 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 8.96 vpr 62.87 MiB -1 -1 0.19 17920 1 0.03 -1 -1 30676 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.4 MiB 1.92 769 12196 5195 6671 330 62.9 MiB 0.10 0.00 3.25048 -107.19 -3.25048 3.25048 0.72 0.000625423 0.000581374 0.0483945 0.0450165 48 2060 23 6.99608e+06 206020 865456. 2994.66 4.06 0.232937 0.201952 28354 207349 -1 1681 20 1451 1973 164311 36420 3.66195 3.66195 -130.681 -3.66195 0 0 1.05005e+06 3633.38 0.27 0.07 0.18 -1 -1 0.27 0.0249005 0.0217191 79 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.07 vpr 62.92 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30740 -1 -1 15 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 831 11366 4736 6148 482 62.9 MiB 0.10 0.00 3.28848 -100.76 -3.28848 3.28848 0.72 0.000670282 0.000623691 0.0483942 0.0450541 44 2772 38 6.99608e+06 220735 787024. 2723.27 2.27 0.172749 0.151695 27778 195446 -1 1865 22 1744 2544 188948 43398 4.20072 4.20072 -132.134 -4.20072 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0284567 0.0248041 80 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.37 vpr 62.54 MiB -1 -1 0.19 18092 1 0.03 -1 -1 30600 -1 -1 13 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.0 MiB 0.87 654 9064 2965 4896 1203 62.5 MiB 0.08 0.00 3.02297 -87.8415 -3.02297 3.02297 0.72 0.000567582 0.000529084 0.0348748 0.0325161 36 2241 42 6.99608e+06 191304 648988. 2245.63 3.62 0.163978 0.14209 26050 158493 -1 1778 23 1344 1716 170205 35845 3.45801 3.45801 -117.555 -3.45801 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0250448 0.021715 68 25 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.82 vpr 62.68 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30280 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.1 MiB 0.73 888 12076 5154 6742 180 62.7 MiB 0.11 0.00 3.53345 -112.872 -3.53345 3.53345 0.72 0.000596559 0.000555642 0.0469695 0.0437436 38 2683 38 6.99608e+06 176588 678818. 2348.85 2.18 0.153598 0.13452 26626 170182 -1 2120 22 1467 1971 213563 42556 3.50286 3.50286 -131.809 -3.50286 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0254454 0.0221741 73 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 15.19 vpr 63.23 MiB -1 -1 0.21 18236 1 0.03 -1 -1 30340 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1144 10400 2769 6600 1031 63.2 MiB 0.10 0.00 3.73911 -127.496 -3.73911 3.73911 0.72 0.00072935 0.000678393 0.0467326 0.0434775 40 3071 38 6.99608e+06 250167 706193. 2443.58 11.29 0.359192 0.309438 26914 176310 -1 2788 23 1944 2646 335078 87459 4.25225 4.25225 -158.055 -4.25225 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0324725 0.0283573 101 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 6.88 vpr 62.61 MiB -1 -1 0.18 18180 1 0.03 -1 -1 30600 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 0.73 837 12556 4321 5836 2399 62.6 MiB 0.10 0.00 3.10427 -99.3374 -3.10427 3.10427 0.72 0.000575032 0.0005358 0.0472844 0.0440939 36 2321 43 6.99608e+06 191304 648988. 2245.63 3.28 0.177575 0.154803 26050 158493 -1 2022 18 1182 1650 162606 31411 3.21722 3.21722 -121.081 -3.21722 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0211619 0.0185056 71 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.02 vpr 63.10 MiB -1 -1 0.18 18312 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.5 MiB 0.98 1090 10388 4056 5260 1072 63.1 MiB 0.10 0.00 2.87229 -101.232 -2.87229 2.87229 0.75 0.000705657 0.000656169 0.0458125 0.0426219 40 2532 23 6.99608e+06 220735 706193. 2443.58 2.01 0.184185 0.160655 26914 176310 -1 2269 21 1369 1842 168849 34530 3.39306 3.39306 -126.308 -3.39306 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0286485 0.0250221 91 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 10.09 vpr 63.41 MiB -1 -1 0.21 18356 1 0.03 -1 -1 30516 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64928 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 2.35 1308 5303 1208 3731 364 63.4 MiB 0.07 0.00 3.75392 -131.868 -3.75392 3.75392 0.72 0.000748268 0.000695264 0.0254883 0.0237697 52 3345 30 6.99608e+06 294314 926341. 3205.33 4.63 0.25532 0.219622 29218 227130 -1 2857 20 2233 3155 294305 57702 4.37679 4.37679 -163.088 -4.37679 0 0 1.14541e+06 3963.36 0.30 0.10 0.21 -1 -1 0.30 0.0301327 0.0263338 113 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 15.53 vpr 63.03 MiB -1 -1 0.18 18216 1 0.03 -1 -1 30560 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.5 MiB 1.63 764 10156 4157 5666 333 63.0 MiB 0.09 0.00 2.76294 -92.5206 -2.76294 2.76294 0.71 0.000617403 0.000574079 0.0414925 0.0386035 50 2340 47 6.99608e+06 176588 902133. 3121.57 10.95 0.320323 0.274879 28642 213929 -1 1835 20 1555 2030 187608 43500 3.29176 3.29176 -121.438 -3.29176 0 0 1.08113e+06 3740.92 0.28 0.08 0.18 -1 -1 0.28 0.0256562 0.0224103 80 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.06 vpr 62.73 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30544 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 24.1 MiB 0.64 734 11609 4434 6017 1158 62.7 MiB 0.10 0.00 3.13712 -100.014 -3.13712 3.13712 0.72 0.000609262 0.000567078 0.0469105 0.043644 46 1965 32 6.99608e+06 161872 828058. 2865.25 2.46 0.175024 0.152528 28066 200906 -1 1523 19 1111 1683 112241 28049 3.20826 3.20826 -116.621 -3.20826 0 0 1.01997e+06 3529.29 0.26 0.06 0.17 -1 -1 0.26 0.0235351 0.020601 72 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.24 vpr 63.04 MiB -1 -1 0.19 18332 1 0.03 -1 -1 30452 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.5 MiB 1.28 730 11200 4643 6059 498 63.0 MiB 0.10 0.00 3.36978 -102.448 -3.36978 3.36978 0.72 0.000651848 0.000606219 0.0465679 0.0433193 46 2448 29 6.99608e+06 206020 828058. 2865.25 1.95 0.158122 0.138674 28066 200906 -1 1811 25 1727 2403 162881 40213 4.08442 4.08442 -134.015 -4.08442 0 0 1.01997e+06 3529.29 0.27 0.08 0.17 -1 -1 0.27 0.0313117 0.02733 79 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.14 vpr 63.07 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30504 -1 -1 18 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.5 MiB 1.30 818 9712 3543 4628 1541 63.1 MiB 0.09 0.00 2.89747 -87.6659 -2.89747 2.89747 0.72 0.000650939 0.00060565 0.0397228 0.0369559 44 2557 25 6.99608e+06 264882 787024. 2723.27 3.89 0.262261 0.225937 27778 195446 -1 1791 22 1503 2136 150837 35366 3.35181 3.35181 -109.115 -3.35181 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0282428 0.0246444 88 49 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 10.87 vpr 63.59 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30672 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 25.1 MiB 1.31 1179 12506 4345 6140 2021 63.6 MiB 0.13 0.00 4.35209 -140.414 -4.35209 4.35209 0.72 0.000753904 0.000700972 0.0568635 0.0529104 38 4236 34 6.99608e+06 250167 678818. 2348.85 6.54 0.224199 0.196273 26626 170182 -1 2955 21 2310 3429 306663 63002 5.1706 5.1706 -183.076 -5.1706 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0313631 0.0274697 105 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.44 vpr 62.51 MiB -1 -1 0.17 17848 1 0.02 -1 -1 30588 -1 -1 13 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.8 MiB 0.73 515 10796 4505 5832 459 62.5 MiB 0.08 0.00 2.70223 -72.5255 -2.70223 2.70223 0.72 0.000526804 0.000490379 0.0373883 0.0348401 38 2085 49 6.99608e+06 191304 678818. 2348.85 2.83 0.162581 0.141026 26626 170182 -1 1329 22 1091 1674 123632 29587 2.82427 2.82427 -96.6806 -2.82427 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0225613 0.0196109 54 -1 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 9.09 vpr 63.41 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30624 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.9 MiB 2.40 1193 14907 5421 6863 2623 63.4 MiB 0.14 0.00 3.87123 -134.568 -3.87123 3.87123 0.72 0.000773969 0.000718478 0.0664117 0.0617211 40 3861 45 6.99608e+06 294314 706193. 2443.58 3.58 0.24401 0.213383 26914 176310 -1 3164 24 2777 3583 406998 82135 5.4273 5.4273 -187.608 -5.4273 0 0 926341. 3205.33 0.24 0.13 0.17 -1 -1 0.24 0.035665 0.0310387 116 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 8.01 vpr 63.48 MiB -1 -1 0.19 18236 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1232 14184 4360 8265 1559 63.5 MiB 0.13 0.00 3.58352 -134.543 -3.58352 3.58352 0.72 0.000708384 0.000658347 0.0612239 0.0569096 46 3160 21 6.99608e+06 235451 828058. 2865.25 4.14 0.276795 0.239952 28066 200906 -1 2627 22 2658 3400 272589 54408 4.50285 4.50285 -167.849 -4.50285 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0304856 0.0266037 110 93 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.74 vpr 63.08 MiB -1 -1 0.18 18500 1 0.03 -1 -1 30572 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.5 MiB 1.25 918 10557 4140 5242 1175 63.1 MiB 0.10 0.00 3.04477 -99.9251 -3.04477 3.04477 0.72 0.000715505 0.000662473 0.0470522 0.0437766 44 3012 35 6.99608e+06 220735 787024. 2723.27 2.45 0.199567 0.17392 27778 195446 -1 2136 35 1843 2588 383760 157992 3.11591 3.11591 -117.344 -3.11591 0 0 997811. 3452.63 0.26 0.15 0.17 -1 -1 0.26 0.043642 0.0378087 94 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 8.15 vpr 63.23 MiB -1 -1 0.15 18356 1 0.03 -1 -1 30692 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.7 MiB 0.93 1051 14444 6185 7899 360 63.2 MiB 0.15 0.00 4.77898 -139.772 -4.77898 4.77898 0.72 0.000774946 0.000720111 0.0691994 0.0643622 46 3142 24 6.99608e+06 220735 828058. 2865.25 4.16 0.276996 0.241774 28066 200906 -1 2425 21 2118 3228 263273 54535 4.58151 4.58151 -156.243 -4.58151 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0325183 0.0285406 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.75 vpr 62.39 MiB -1 -1 0.18 18212 1 0.02 -1 -1 30520 -1 -1 12 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 23.7 MiB 0.58 521 10924 4716 5844 364 62.4 MiB 0.08 0.00 2.28455 -80.8169 -2.28455 2.28455 0.75 0.000448031 0.000409371 0.037068 0.0345056 38 1459 25 6.99608e+06 176588 678818. 2348.85 3.31 0.180453 0.155787 26626 170182 -1 1203 23 816 1030 93181 19930 2.43742 2.43742 -94.4687 -2.43742 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0218394 0.0189196 53 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.40 vpr 62.75 MiB -1 -1 0.18 18020 1 0.03 -1 -1 30268 -1 -1 14 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.1 MiB 2.98 573 11916 4017 5855 2044 62.8 MiB 0.10 0.00 3.02532 -92.758 -3.02532 3.02532 0.74 0.000594088 0.000552975 0.0464731 0.0432642 38 1755 32 6.99608e+06 206020 678818. 2348.85 1.51 0.149861 0.131236 26626 170182 -1 1290 22 1154 1693 101313 25974 3.06486 3.06486 -112.746 -3.06486 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0255317 0.0221472 68 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.39 vpr 62.85 MiB -1 -1 0.18 18216 1 0.03 -1 -1 30628 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.4 MiB 0.56 833 11631 4811 6474 346 62.9 MiB 0.10 0.00 3.05994 -98.063 -3.05994 3.05994 0.71 0.000619604 0.000576184 0.0434263 0.0404105 40 2641 28 6.99608e+06 250167 706193. 2443.58 2.88 0.169988 0.148144 26914 176310 -1 2281 20 1550 2402 280792 65737 3.88021 3.88021 -140.516 -3.88021 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0245042 0.0213683 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.09 vpr 62.52 MiB -1 -1 0.18 17904 1 0.02 -1 -1 30492 -1 -1 16 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 24.0 MiB 0.89 493 7825 3175 3963 687 62.5 MiB 0.06 0.00 2.77723 -63.8343 -2.77723 2.77723 0.72 0.000475767 0.000442566 0.0260532 0.0242653 38 1760 39 6.99608e+06 235451 678818. 2348.85 2.39 0.13191 0.113853 26626 170182 -1 1181 23 911 1230 90497 21861 3.10392 3.10392 -82.9122 -3.10392 0 0 902133. 3121.57 0.23 0.05 0.14 -1 -1 0.23 0.0211022 0.0183055 59 19 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 20.68 vpr 63.20 MiB -1 -1 0.19 18512 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.8 MiB 2.54 1233 8306 3267 4753 286 63.2 MiB 0.09 0.00 3.12752 -109.156 -3.12752 3.12752 0.72 0.000727946 0.000672837 0.0371602 0.0344553 38 3790 49 6.99608e+06 250167 678818. 2348.85 15.17 0.340404 0.293065 26626 170182 -1 2766 21 2082 3035 252984 51401 3.78602 3.78602 -136.861 -3.78602 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0300875 0.0262892 103 69 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.88 vpr 63.48 MiB -1 -1 0.21 18296 1 0.03 -1 -1 30644 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.8 MiB 2.07 1169 15568 5847 7166 2555 63.5 MiB 0.15 0.00 3.58081 -120.268 -3.58081 3.58081 0.72 0.000765442 0.000710956 0.0699246 0.0649918 46 3103 32 6.99608e+06 279598 828058. 2865.25 2.75 0.232403 0.203578 28066 200906 -1 2397 27 2340 3249 269632 57427 4.07395 4.07395 -145.445 -4.07395 0 0 1.01997e+06 3529.29 0.26 0.11 0.17 -1 -1 0.26 0.038679 0.0336623 117 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 22.20 vpr 62.77 MiB -1 -1 0.27 18496 14 0.26 -1 -1 33044 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 24.2 MiB 1.49 1308 12503 3439 7458 1606 62.8 MiB 0.13 0.00 6.81046 -148.448 -6.81046 6.81046 0.72 0.00089231 0.000825686 0.0655573 0.0607847 30 3613 50 6.79088e+06 255968 556674. 1926.21 17.48 0.421637 0.364199 24526 138013 -1 2898 20 1471 3991 213195 48783 6.97496 6.97496 -166.993 -6.97496 0 0 706193. 2443.58 0.20 0.09 0.12 -1 -1 0.20 0.0370638 0.0325468 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.45 vpr 62.79 MiB -1 -1 0.26 18252 14 0.28 -1 -1 32980 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 24.3 MiB 2.04 987 12856 4258 6017 2581 62.8 MiB 0.13 0.00 6.5228 -130.939 -6.5228 6.5228 0.71 0.000899319 0.000830369 0.0689577 0.0639663 36 3294 45 6.79088e+06 255968 648988. 2245.63 3.13 0.262829 0.229422 25390 158009 -1 2391 22 1430 3767 219937 51906 7.08203 7.08203 -152.764 -7.08203 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0396338 0.0347198 125 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 10.20 vpr 62.76 MiB -1 -1 0.24 18160 11 0.22 -1 -1 33248 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 2.92 1215 9623 2464 6253 906 62.8 MiB 0.10 0.00 5.81004 -125.511 -5.81004 5.81004 0.71 0.000901112 0.000835721 0.0517891 0.0479922 44 3158 24 6.79088e+06 255968 787024. 2723.27 4.05 0.307054 0.265307 27118 194962 -1 2449 17 1048 3162 161110 35653 6.02144 6.02144 -141.401 -6.02144 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0335992 0.0296341 130 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 6.64 vpr 62.75 MiB -1 -1 0.25 18284 12 0.32 -1 -1 33076 -1 -1 24 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 24.2 MiB 0.98 1205 4735 902 3492 341 62.8 MiB 0.06 0.00 6.04387 -121.809 -6.04387 6.04387 0.71 0.000907584 0.000842512 0.0267851 0.0248946 36 3181 22 6.79088e+06 323328 648988. 2245.63 2.37 0.199253 0.172138 25390 158009 -1 2621 18 1277 3657 199892 44048 6.36938 6.36938 -139.453 -6.36938 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0350787 0.0309335 136 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 8.71 vpr 62.91 MiB -1 -1 0.28 18320 13 0.29 -1 -1 32960 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1376 7457 1622 5300 535 62.9 MiB 0.09 0.00 6.88531 -145.593 -6.88531 6.88531 0.71 0.000990677 0.000919681 0.0429137 0.0398287 36 3939 39 6.79088e+06 296384 648988. 2245.63 3.84 0.325591 0.281274 25390 158009 -1 3261 16 1546 3970 244243 54906 7.13591 7.13591 -170.682 -7.13591 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0346418 0.0306456 152 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 9.72 vpr 62.87 MiB -1 -1 0.28 18324 13 0.24 -1 -1 33084 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.43 1386 10163 2383 6165 1615 62.9 MiB 0.11 0.00 6.20837 -131.908 -6.20837 6.20837 0.72 0.000939381 0.000870681 0.0574389 0.0532725 38 3829 36 6.79088e+06 255968 678818. 2348.85 4.92 0.265947 0.231219 25966 169698 -1 3134 18 1546 4755 271590 58038 6.61998 6.61998 -153.93 -6.61998 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0358557 0.0315403 137 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 5.23 vpr 62.30 MiB -1 -1 0.18 17984 12 0.19 -1 -1 32772 -1 -1 21 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63800 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 23.7 MiB 1.23 872 7820 1817 5275 728 62.3 MiB 0.07 0.00 5.64903 -104.094 -5.64903 5.64903 0.72 0.000740844 0.000687829 0.036479 0.0338956 30 2559 23 6.79088e+06 282912 556674. 1926.21 0.98 0.127366 0.111797 24526 138013 -1 1993 17 1026 2304 114847 27698 5.74632 5.74632 -119.842 -5.74632 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.027048 0.023895 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 18.65 vpr 62.43 MiB -1 -1 0.26 18060 12 0.19 -1 -1 32896 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 23.8 MiB 2.56 1125 12980 4524 6312 2144 62.4 MiB 0.12 0.00 5.27734 -112.121 -5.27734 5.27734 0.72 0.000733583 0.000679735 0.0584026 0.0541474 34 3378 43 6.79088e+06 229024 618332. 2139.56 12.95 0.400494 0.345525 25102 150614 -1 2632 17 1122 2843 187805 41761 5.73934 5.73934 -130.418 -5.73934 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0282128 0.0248756 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 18.02 vpr 62.28 MiB -1 -1 0.25 17988 12 0.16 -1 -1 32904 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 23.8 MiB 2.70 1174 6023 1348 4455 220 62.3 MiB 0.07 0.00 5.75058 -120.671 -5.75058 5.75058 0.74 0.000750573 0.00069644 0.0281312 0.0260833 40 2822 30 6.79088e+06 269440 706193. 2443.58 12.18 0.325778 0.279659 26254 175826 -1 2674 17 1119 2792 187023 40698 6.12648 6.12648 -144.416 -6.12648 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0277613 0.0245299 113 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 8.55 vpr 62.40 MiB -1 -1 0.23 18048 13 0.19 -1 -1 32828 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 24.0 MiB 1.87 1155 8698 2213 5493 992 62.4 MiB 0.09 0.00 6.20493 -139.642 -6.20493 6.20493 0.74 0.000805453 0.000747622 0.0447086 0.0415307 38 3092 49 6.79088e+06 202080 678818. 2348.85 3.46 0.241908 0.209659 25966 169698 -1 2418 17 1147 2731 156825 35141 6.53044 6.53044 -160.428 -6.53044 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0298424 0.0263263 106 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 8.00 vpr 62.24 MiB -1 -1 0.25 18112 12 0.20 -1 -1 32520 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 23.7 MiB 1.52 994 11909 3483 6895 1531 62.2 MiB 0.06 0.00 5.77859 -122.735 -5.77859 5.77859 0.68 0.000324704 0.000292459 0.0245765 0.0225807 30 2523 24 6.79088e+06 229024 556674. 1926.21 3.50 0.15698 0.135549 24526 138013 -1 2015 18 865 2142 104684 24483 5.99348 5.99348 -140.36 -5.99348 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0268233 0.023621 96 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 7.74 vpr 62.29 MiB -1 -1 0.24 18236 12 0.15 -1 -1 32872 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 23.7 MiB 2.08 938 8306 2004 4749 1553 62.3 MiB 0.09 0.00 5.18431 -123.522 -5.18431 5.18431 0.72 0.000745752 0.000682472 0.0389854 0.0360366 38 2703 21 6.79088e+06 229024 678818. 2348.85 2.60 0.185398 0.160893 25966 169698 -1 2122 14 992 2624 142222 32509 5.43491 5.43491 -137.539 -5.43491 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0237074 0.0210342 101 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 9.31 vpr 62.79 MiB -1 -1 0.29 18280 13 0.24 -1 -1 32676 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 24.2 MiB 1.69 1281 8502 2309 5272 921 62.8 MiB 0.10 0.00 6.81035 -142.418 -6.81035 6.81035 0.72 0.000919741 0.000852898 0.0465961 0.0432379 38 3376 37 6.79088e+06 269440 678818. 2348.85 4.32 0.374544 0.322993 25966 169698 -1 2726 16 1189 3179 169069 37175 6.81035 6.81035 -155.965 -6.81035 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0323777 0.0286646 134 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 6.88 vpr 62.80 MiB -1 -1 0.27 18256 14 0.30 -1 -1 33008 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 24.4 MiB 1.72 1358 9725 2367 6684 674 62.8 MiB 0.11 0.00 7.18641 -152.563 -7.18641 7.18641 0.72 0.000968739 0.000897467 0.0539504 0.049978 36 3687 29 6.79088e+06 296384 648988. 2245.63 1.77 0.219665 0.191503 25390 158009 -1 3002 19 1380 3534 194862 45758 7.56231 7.56231 -171.906 -7.56231 0 0 828058. 2865.25 0.22 0.09 0.15 -1 -1 0.22 0.0392629 0.034495 151 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 13.06 vpr 62.47 MiB -1 -1 0.22 18200 11 0.17 -1 -1 32800 -1 -1 21 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63968 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 24.1 MiB 2.13 1008 11474 3962 5684 1828 62.5 MiB 0.10 0.00 5.53913 -115.559 -5.53913 5.53913 0.72 0.00072645 0.000673851 0.0497165 0.0461207 30 3137 47 6.79088e+06 282912 556674. 1926.21 7.90 0.279609 0.24229 24526 138013 -1 2258 20 1098 2631 144999 33196 5.91503 5.91503 -135.732 -5.91503 0 0 706193. 2443.58 0.20 0.07 0.13 -1 -1 0.20 0.0298482 0.0262139 106 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 8.86 vpr 63.14 MiB -1 -1 0.27 18336 12 0.27 -1 -1 33104 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 1.27 1184 13933 4215 7193 2525 63.1 MiB 0.15 0.00 6.12997 -131.562 -6.12997 6.12997 0.71 0.000978621 0.000906752 0.0759602 0.0702977 44 3395 35 6.79088e+06 323328 787024. 2723.27 4.18 0.375714 0.325945 27118 194962 -1 2785 20 1520 4818 252182 57717 6.12997 6.12997 -146.249 -6.12997 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0404299 0.0355562 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 23.70 vpr 62.78 MiB -1 -1 0.27 18468 14 0.24 -1 -1 32888 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 24.1 MiB 2.07 1398 10163 2620 6464 1079 62.8 MiB 0.11 0.00 6.59895 -143.217 -6.59895 6.59895 0.72 0.000906221 0.00083605 0.0543891 0.0502572 40 3622 42 6.79088e+06 255968 706193. 2443.58 18.26 0.443224 0.380626 26254 175826 -1 3245 27 1489 4114 402607 128656 6.84955 6.84955 -164.27 -6.84955 0 0 926341. 3205.33 0.24 0.14 0.17 -1 -1 0.24 0.0466621 0.0405828 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 5.99 vpr 62.33 MiB -1 -1 0.24 18044 12 0.16 -1 -1 32652 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 23.7 MiB 1.56 1008 12247 3930 6656 1661 62.3 MiB 0.11 0.00 5.84017 -132.888 -5.84017 5.84017 0.74 0.000758385 0.000689741 0.0568615 0.0526096 30 2844 27 6.79088e+06 202080 556674. 1926.21 1.32 0.152969 0.134851 24526 138013 -1 2214 15 902 2373 129243 28987 5.84017 5.84017 -146.705 -5.84017 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0271132 0.02402 105 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 6.70 vpr 61.90 MiB -1 -1 0.15 17936 10 0.10 -1 -1 32560 -1 -1 13 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63384 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 23.3 MiB 1.80 724 8449 2861 4213 1375 61.9 MiB 0.07 0.00 4.17056 -100.044 -4.17056 4.17056 0.73 0.000561362 0.000521805 0.0322551 0.0300002 36 1937 26 6.79088e+06 175136 648988. 2245.63 2.04 0.146986 0.127249 25390 158009 -1 1582 17 642 1464 94162 21191 4.29586 4.29586 -113.495 -4.29586 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0201461 0.0176621 66 84 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.65 vpr 62.44 MiB -1 -1 0.25 18208 13 0.18 -1 -1 32940 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 23.8 MiB 1.93 989 12156 3421 6632 2103 62.4 MiB 0.11 0.00 6.04392 -128.115 -6.04392 6.04392 0.75 0.000763917 0.000708404 0.0558321 0.0517677 36 2679 26 6.79088e+06 242496 648988. 2245.63 3.53 0.26317 0.229071 25390 158009 -1 2241 20 1131 2749 163083 37048 6.70613 6.70613 -148.732 -6.70613 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0309902 0.0271931 107 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 8.44 vpr 62.96 MiB -1 -1 0.26 18308 13 0.27 -1 -1 32836 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 24.3 MiB 1.67 1271 11989 3165 6783 2041 63.0 MiB 0.13 0.00 6.54158 -141.689 -6.54158 6.54158 0.74 0.000954493 0.000884514 0.0662288 0.0613667 38 3456 32 6.79088e+06 282912 678818. 2348.85 3.33 0.272192 0.237235 25966 169698 -1 2917 21 1669 4499 230867 52665 6.75652 6.75652 -157.223 -6.75652 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0409425 0.0359597 143 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 18.06 vpr 62.86 MiB -1 -1 0.28 18252 13 0.31 -1 -1 32652 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 24.5 MiB 2.05 1349 13291 3884 7004 2403 62.9 MiB 0.14 0.00 6.09082 -137.698 -6.09082 6.09082 0.73 0.00092191 0.000854494 0.0697285 0.0645462 38 3691 20 6.79088e+06 282912 678818. 2348.85 12.58 0.402989 0.348541 25966 169698 -1 2885 18 1319 3951 204559 45792 6.46672 6.46672 -157.069 -6.46672 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0360271 0.0317863 141 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 6.47 vpr 61.86 MiB -1 -1 0.20 17848 9 0.11 -1 -1 32456 -1 -1 18 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63344 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 23.3 MiB 1.02 709 10956 3561 6029 1366 61.9 MiB 0.08 0.00 3.8527 -78.9118 -3.8527 3.8527 0.71 0.000520141 0.000484271 0.0372186 0.0346672 34 1609 19 6.79088e+06 242496 618332. 2139.56 2.58 0.17763 0.153437 25102 150614 -1 1446 14 591 1420 93146 20619 4.2286 4.2286 -92.3725 -4.2286 0 0 787024. 2723.27 0.21 0.04 0.15 -1 -1 0.21 0.0162136 0.0142753 67 69 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 8.75 vpr 62.72 MiB -1 -1 0.25 18108 13 0.28 -1 -1 33004 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1233 8535 2116 6136 283 62.7 MiB 0.10 0.00 6.87423 -140.611 -6.87423 6.87423 0.71 0.000935742 0.000858735 0.0460791 0.0426284 44 3255 21 6.79088e+06 309856 787024. 2723.27 3.69 0.3023 0.261036 27118 194962 -1 2592 18 1346 3775 193962 43587 7.12483 7.12483 -156.606 -7.12483 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0353576 0.0311718 136 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.67 vpr 61.74 MiB -1 -1 0.18 17628 8 0.09 -1 -1 32808 -1 -1 11 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63220 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 23.2 MiB 1.76 579 9397 2173 7053 171 61.7 MiB 0.07 0.00 3.54052 -79.0018 -3.54052 3.54052 0.72 0.00050741 0.000472244 0.0317782 0.0295603 36 1784 21 6.79088e+06 148192 648988. 2245.63 3.06 0.158424 0.137028 25390 158009 -1 1409 17 711 1569 87713 21700 3.75192 3.75192 -94.0984 -3.75192 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0182128 0.0159427 60 59 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 9.69 vpr 62.59 MiB -1 -1 0.24 18116 15 0.23 -1 -1 32944 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 24.0 MiB 2.00 1148 14322 4374 7798 2150 62.6 MiB 0.14 0.00 7.39781 -147.331 -7.39781 7.39781 0.75 0.000862898 0.000797551 0.0727881 0.0674858 44 3130 20 6.79088e+06 242496 787024. 2723.27 4.34 0.310683 0.270568 27118 194962 -1 2469 16 1172 3308 178088 40286 7.52311 7.52311 -162.829 -7.52311 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0295221 0.0260376 121 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 8.52 vpr 62.53 MiB -1 -1 0.25 18028 13 0.22 -1 -1 33020 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 24.1 MiB 1.67 1208 10050 2840 5062 2148 62.5 MiB 0.12 0.00 5.65334 -125.269 -5.65334 5.65334 0.72 0.000852547 0.000790925 0.0614499 0.0570179 38 3331 27 6.79088e+06 242496 678818. 2348.85 3.60 0.238851 0.208362 25966 169698 -1 2715 17 1286 3640 208333 46132 5.94309 5.94309 -142.338 -5.94309 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0319706 0.0281831 117 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 8.99 vpr 62.70 MiB -1 -1 0.26 18312 13 0.26 -1 -1 33092 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 24.1 MiB 1.42 1115 8270 2033 5478 759 62.7 MiB 0.09 0.00 6.62352 -137.043 -6.62352 6.62352 0.72 0.000927208 0.000862034 0.04716 0.0438946 46 2801 16 6.79088e+06 242496 828058. 2865.25 4.28 0.314169 0.272093 27406 200422 -1 2184 14 1169 3271 157006 39002 6.87412 6.87412 -152.79 -6.87412 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0293036 0.0259962 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 8.29 vpr 62.56 MiB -1 -1 0.23 18000 12 0.16 -1 -1 32792 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.9 MiB 1.75 1022 10916 2904 6051 1961 62.6 MiB 0.10 0.00 5.73944 -127.146 -5.73944 5.73944 0.72 0.000745382 0.000690295 0.0503688 0.0466821 44 2424 19 6.79088e+06 215552 787024. 2723.27 3.39 0.264354 0.229007 27118 194962 -1 2042 15 888 2092 106511 25257 5.73944 5.73944 -138.502 -5.73944 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0252628 0.0223752 103 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 8.24 vpr 62.14 MiB -1 -1 0.23 18120 11 0.15 -1 -1 32988 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63628 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 23.6 MiB 1.71 1022 10056 2935 5541 1580 62.1 MiB 0.09 0.00 5.32424 -117.518 -5.32424 5.32424 0.71 0.000685177 0.000635975 0.0427816 0.0396927 36 2592 23 6.79088e+06 242496 648988. 2245.63 3.51 0.212629 0.184438 25390 158009 -1 2257 16 1038 2598 165831 36628 5.69238 5.69238 -133.339 -5.69238 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0241339 0.0212679 95 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 6.59 vpr 62.27 MiB -1 -1 0.23 18232 11 0.17 -1 -1 32740 -1 -1 21 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63760 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.41 957 13381 4392 7027 1962 62.3 MiB 0.12 0.00 5.74283 -111.724 -5.74283 5.74283 0.72 0.000745047 0.000689032 0.0598993 0.055459 38 2183 21 6.79088e+06 282912 678818. 2348.85 2.07 0.205183 0.17985 25966 169698 -1 1958 16 1003 2649 127486 30016 5.86813 5.86813 -124.733 -5.86813 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0256502 0.0227192 109 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 16.50 vpr 62.53 MiB -1 -1 0.21 18204 12 0.20 -1 -1 32884 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 24.0 MiB 2.26 1136 9531 3089 4626 1816 62.5 MiB 0.10 0.00 5.73939 -133.709 -5.73939 5.73939 0.72 0.000867527 0.000804585 0.0502927 0.0466747 40 2806 31 6.79088e+06 229024 706193. 2443.58 11.06 0.411127 0.353362 26254 175826 -1 2683 17 1426 3404 215945 48924 6.07958 6.07958 -157.503 -6.07958 0 0 926341. 3205.33 0.25 0.09 0.15 -1 -1 0.25 0.0325263 0.0287575 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 8.62 vpr 62.41 MiB -1 -1 0.22 18232 12 0.16 -1 -1 32976 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 23.7 MiB 2.01 1117 6788 1655 4473 660 62.4 MiB 0.07 0.00 5.70363 -121.279 -5.70363 5.70363 0.72 0.00075327 0.0006989 0.0326536 0.0303334 36 2884 31 6.79088e+06 229024 648988. 2245.63 3.54 0.25212 0.21719 25390 158009 -1 2377 23 1400 3792 223482 48145 6.24403 6.24403 -143.535 -6.24403 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0338695 0.0295966 101 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 6.16 vpr 62.30 MiB -1 -1 0.25 18332 10 0.14 -1 -1 32836 -1 -1 17 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63800 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 23.7 MiB 1.37 1007 7050 1619 5025 406 62.3 MiB 0.07 0.00 5.11278 -113.885 -5.11278 5.11278 0.72 0.000723184 0.0006675 0.0334903 0.03104 38 2461 19 6.79088e+06 229024 678818. 2348.85 1.73 0.171889 0.149181 25966 169698 -1 2056 14 860 2400 126837 28484 5.23808 5.23808 -125.914 -5.23808 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.023208 0.0205568 103 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 7.40 vpr 63.25 MiB -1 -1 0.29 18672 13 0.31 -1 -1 33060 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 24.8 MiB 1.66 1291 13849 4144 7035 2670 63.2 MiB 0.15 0.00 6.7635 -141.207 -6.7635 6.7635 0.72 0.00100651 0.000931676 0.0788239 0.0729636 38 3676 42 6.79088e+06 282912 678818. 2348.85 2.31 0.289602 0.253145 25966 169698 -1 2783 19 1426 4078 207155 46672 6.8888 6.8888 -155.169 -6.8888 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0404399 0.0356209 149 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 11.80 vpr 62.79 MiB -1 -1 0.27 18860 14 0.30 -1 -1 33608 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 24.2 MiB 1.93 1346 5956 1162 4491 303 62.8 MiB 0.08 0.00 6.74118 -147.766 -6.74118 6.74118 0.72 0.000927275 0.000860257 0.0348181 0.0323251 36 4217 48 6.79088e+06 242496 648988. 2245.63 6.44 0.260413 0.225211 25390 158009 -1 3168 31 1723 5182 603606 247817 7.24238 7.24238 -174.109 -7.24238 0 0 828058. 2865.25 0.22 0.20 0.14 -1 -1 0.22 0.0537927 0.0468894 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 8.70 vpr 62.39 MiB -1 -1 0.25 18032 12 0.15 -1 -1 32816 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 23.7 MiB 1.92 1110 6670 1695 4386 589 62.4 MiB 0.07 0.00 5.61409 -130.442 -5.61409 5.61409 0.72 0.000754997 0.000691321 0.0333126 0.0308179 36 2926 29 6.79088e+06 215552 648988. 2245.63 3.73 0.243691 0.210001 25390 158009 -1 2467 15 990 2611 173545 37239 6.45548 6.45548 -154.989 -6.45548 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0250655 0.0221972 101 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 22.33 vpr 62.95 MiB -1 -1 0.29 18252 12 0.29 -1 -1 33084 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1421 7383 1747 4941 695 62.9 MiB 0.09 0.00 5.84361 -128.46 -5.84361 5.84361 0.77 0.000989223 0.000918048 0.0422824 0.0391863 44 3628 47 6.79088e+06 323328 787024. 2723.27 16.58 0.453036 0.389687 27118 194962 -1 2884 27 1451 4339 480728 210632 6.21951 6.21951 -145.239 -6.21951 0 0 997811. 3452.63 0.26 0.18 0.16 -1 -1 0.26 0.0509039 0.0444862 146 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 6.90 vpr 62.86 MiB -1 -1 0.28 18576 14 0.33 -1 -1 33348 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 24.2 MiB 1.23 1348 9757 2851 6010 896 62.9 MiB 0.11 0.00 6.92457 -142.937 -6.92457 6.92457 0.72 0.000971985 0.000895022 0.0544529 0.0505123 36 3289 25 6.79088e+06 296384 648988. 2245.63 2.28 0.250784 0.218659 25390 158009 -1 2960 19 1314 3681 215789 49456 7.39 7.39 -162.514 -7.39 0 0 828058. 2865.25 0.22 0.09 0.15 -1 -1 0.22 0.038231 0.0335934 142 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 9.04 vpr 62.61 MiB -1 -1 0.28 18704 13 0.25 -1 -1 32956 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 24.0 MiB 1.85 1258 5000 959 3649 392 62.6 MiB 0.06 0.00 6.93576 -140.519 -6.93576 6.93576 0.72 0.000896421 0.000831349 0.0283921 0.0263533 38 3249 27 6.79088e+06 309856 678818. 2348.85 3.93 0.30732 0.264385 25966 169698 -1 2778 15 1279 3342 179605 40326 7.31166 7.31166 -158.086 -7.31166 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0302928 0.0268221 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 9.35 vpr 62.68 MiB -1 -1 0.30 18472 13 0.25 -1 -1 33256 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 24.1 MiB 1.73 1271 12345 3880 6110 2355 62.7 MiB 0.12 0.00 6.59208 -134.695 -6.59208 6.59208 0.73 0.00087817 0.000813591 0.062916 0.0582307 44 3366 29 6.79088e+06 282912 787024. 2723.27 4.21 0.318793 0.276223 27118 194962 -1 2750 17 1190 3570 216310 46376 6.96798 6.96798 -153.842 -6.96798 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0342584 0.0303918 125 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 8.58 vpr 62.65 MiB -1 -1 0.23 18208 12 0.18 -1 -1 32976 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 24.2 MiB 1.79 1027 12292 4424 5699 2169 62.6 MiB 0.12 0.00 5.64559 -121.396 -5.64559 5.64559 0.72 0.000831161 0.000771548 0.0624344 0.0579462 44 2483 20 6.79088e+06 215552 787024. 2723.27 3.59 0.29882 0.259206 27118 194962 -1 2059 14 933 2563 124857 29935 5.77089 5.77089 -132.885 -5.77089 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0267435 0.0236682 111 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 9.25 vpr 63.14 MiB -1 -1 0.31 19076 14 0.39 -1 -1 33044 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1602 11617 2988 7134 1495 63.1 MiB 0.14 0.00 6.97147 -147.929 -6.97147 6.97147 0.72 0.00103445 0.00095728 0.0693139 0.0640868 46 4015 27 6.79088e+06 282912 828058. 2865.25 4.56 0.374747 0.324684 27406 200422 -1 3211 15 1462 4488 242837 52961 7.34737 7.34737 -166.309 -7.34737 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0357332 0.0317244 159 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.72 vpr 62.50 MiB -1 -1 0.23 18044 11 0.19 -1 -1 32620 -1 -1 16 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1123 6501 1465 4777 259 62.5 MiB 0.08 0.00 5.35574 -117.745 -5.35574 5.35574 0.72 0.000806779 0.000749078 0.0349885 0.0323579 44 2994 20 6.79088e+06 215552 787024. 2723.27 3.58 0.257492 0.221367 27118 194962 -1 2525 17 1194 3457 192093 42721 5.60634 5.60634 -133.608 -5.60634 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0295139 0.0259885 112 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.62 vpr 62.75 MiB -1 -1 0.27 18344 13 0.27 -1 -1 33540 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1211 13763 4864 7006 1893 62.8 MiB 0.14 0.00 6.63471 -140.446 -6.63471 6.63471 0.72 0.000908546 0.000841082 0.0734122 0.0679659 44 2818 18 6.79088e+06 269440 787024. 2723.27 3.68 0.322943 0.280275 27118 194962 -1 2312 16 1047 3287 160111 36931 7.01061 7.01061 -153.059 -7.01061 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0322523 0.0284818 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 9.41 vpr 62.82 MiB -1 -1 0.26 18256 12 0.25 -1 -1 33140 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 24.3 MiB 1.74 1189 13663 4685 6789 2189 62.8 MiB 0.15 0.00 5.95428 -128.957 -5.95428 5.95428 0.72 0.000962428 0.000891683 0.0749511 0.0692245 46 3217 17 6.79088e+06 282912 828058. 2865.25 4.23 0.327497 0.284483 27406 200422 -1 2611 15 1318 4203 208392 48267 6.20832 6.20832 -146.347 -6.20832 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.032989 0.0291977 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 8.23 vpr 62.64 MiB -1 -1 0.23 18176 13 0.24 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 24.1 MiB 1.25 1212 5756 1277 4235 244 62.6 MiB 0.07 0.00 6.2722 -135.755 -6.2722 6.2722 0.72 0.000900162 0.000835813 0.0308872 0.0286639 36 3126 25 6.79088e+06 296384 648988. 2245.63 3.80 0.287538 0.246802 25390 158009 -1 2617 18 1190 3034 174362 39302 6.8987 6.8987 -156.288 -6.8987 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0340885 0.029958 131 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 10.39 vpr 62.60 MiB -1 -1 0.27 18444 13 0.21 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 24.1 MiB 2.35 1214 11296 3419 5607 2270 62.6 MiB 0.12 0.00 6.00816 -131.728 -6.00816 6.00816 0.72 0.00087164 0.000808651 0.0585563 0.0542907 38 3793 26 6.79088e+06 242496 678818. 2348.85 4.82 0.340418 0.294187 25966 169698 -1 2708 16 1319 3492 214153 47382 6.20837 6.20837 -147.488 -6.20837 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0308282 0.027232 124 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 8.86 vpr 62.77 MiB -1 -1 0.28 18596 12 0.24 -1 -1 33224 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 24.1 MiB 1.82 1416 8319 2136 5392 791 62.8 MiB 0.10 0.00 6.28677 -138.289 -6.28677 6.28677 0.71 0.00092557 0.00085689 0.0459268 0.0425598 38 3867 32 6.79088e+06 269440 678818. 2348.85 3.77 0.249799 0.21694 25966 169698 -1 2892 17 1326 4189 218979 47870 6.53737 6.53737 -155.612 -6.53737 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0346573 0.0305072 140 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 8.28 vpr 62.96 MiB -1 -1 0.27 18684 13 0.29 -1 -1 33228 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1369 7221 1614 5114 493 63.0 MiB 0.10 0.00 6.63122 -144.8 -6.63122 6.63122 0.72 0.000988164 0.000915217 0.0446775 0.0414027 38 3654 46 6.79088e+06 269440 678818. 2348.85 3.52 0.275335 0.23813 25966 169698 -1 2837 19 1395 3986 206468 47184 6.97141 6.97141 -160.674 -6.97141 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0394264 0.0347078 145 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 14.44 vpr 62.69 MiB -1 -1 0.23 18116 14 0.27 -1 -1 33260 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 1.33 1202 14724 4723 8104 1897 62.7 MiB 0.14 0.00 6.71317 -139.764 -6.71317 6.71317 0.71 0.000856334 0.000794129 0.0725802 0.0672752 38 3015 22 6.79088e+06 269440 678818. 2348.85 9.84 0.385192 0.333418 25966 169698 -1 2513 19 1171 3266 165065 37674 7.13591 7.13591 -156.704 -7.13591 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0343076 0.0301806 125 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 14.88 vpr 62.70 MiB -1 -1 0.25 18348 13 0.26 -1 -1 32996 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 24.1 MiB 2.02 1303 12547 3717 6932 1898 62.7 MiB 0.13 0.00 6.51285 -132.31 -6.51285 6.51285 0.72 0.000928885 0.000861162 0.0663985 0.0615762 38 3378 19 6.79088e+06 282912 678818. 2348.85 9.51 0.387253 0.335127 25966 169698 -1 2799 18 1454 4054 205787 46866 6.51285 6.51285 -149.174 -6.51285 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0357681 0.031445 136 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 7.41 vpr 62.92 MiB -1 -1 0.29 18420 13 0.27 -1 -1 33160 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 24.3 MiB 1.70 1463 9051 2579 5538 934 62.9 MiB 0.10 0.00 6.58432 -145.283 -6.58432 6.58432 0.72 0.000965484 0.000895439 0.0515844 0.0478619 40 3242 23 6.79088e+06 282912 706193. 2443.58 2.29 0.251659 0.219141 26254 175826 -1 3264 21 1769 5061 361035 77278 7.21082 7.21082 -165.669 -7.21082 0 0 926341. 3205.33 0.26 0.13 0.15 -1 -1 0.26 0.0417262 0.0366682 144 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.20 vpr 62.87 MiB -1 -1 0.28 18572 12 0.29 -1 -1 33020 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.4 MiB 1.44 1364 12919 3724 7480 1715 62.9 MiB 0.14 0.00 6.73769 -142.342 -6.73769 6.73769 0.71 0.0009814 0.000899639 0.0722578 0.0667932 40 3429 27 6.79088e+06 282912 706193. 2443.58 3.31 0.27136 0.237162 26254 175826 -1 3286 31 1572 4293 487323 182013 6.93216 6.93216 -160.166 -6.93216 0 0 926341. 3205.33 0.24 0.18 0.15 -1 -1 0.24 0.0557667 0.0485279 147 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 5.67 vpr 62.28 MiB -1 -1 0.21 17952 11 0.13 -1 -1 32880 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 23.8 MiB 1.14 822 6220 1320 4797 103 62.3 MiB 0.06 0.00 5.15198 -107.843 -5.15198 5.15198 0.72 0.000683584 0.000633858 0.0282528 0.0262176 34 2469 25 6.79088e+06 188608 618332. 2139.56 1.55 0.141201 0.122502 25102 150614 -1 1970 17 1002 2363 146532 35866 5.56359 5.56359 -133.292 -5.56359 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0250092 0.0220129 91 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 8.38 vpr 62.52 MiB -1 -1 0.25 18600 13 0.21 -1 -1 33160 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 24.0 MiB 1.66 1244 5940 1302 4273 365 62.5 MiB 0.07 0.00 6.37292 -138.877 -6.37292 6.37292 0.72 0.000827303 0.000766794 0.031079 0.0287422 36 3177 30 6.79088e+06 269440 648988. 2245.63 3.55 0.206793 0.17844 25390 158009 -1 2629 18 1219 3214 198353 44390 6.49822 6.49822 -156.598 -6.49822 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0316513 0.0277321 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 8.49 vpr 63.11 MiB -1 -1 0.28 19000 14 0.42 -1 -1 33096 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 1.19 1472 8083 1852 5981 250 63.1 MiB 0.11 0.00 7.68335 -155.146 -7.68335 7.68335 0.72 0.00108423 0.0010042 0.0509167 0.0471048 46 3801 22 6.79088e+06 323328 828058. 2865.25 3.69 0.269765 0.234352 27406 200422 -1 3257 18 1774 5089 254076 57663 7.93395 7.93395 -171.295 -7.93395 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0418728 0.0370115 171 243 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 17.97 vpr 62.89 MiB -1 -1 0.26 18476 13 0.29 -1 -1 32924 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 24.3 MiB 1.46 1318 8641 2302 5377 962 62.9 MiB 0.09 0.00 6.42331 -142.952 -6.42331 6.42331 0.72 0.000887128 0.000822493 0.0448876 0.0416622 40 2974 16 6.79088e+06 282912 706193. 2443.58 13.19 0.397692 0.341849 26254 175826 -1 2889 17 1376 3593 239593 53436 6.97141 6.97141 -166.683 -6.97141 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0328367 0.0289327 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 6.99 vpr 62.57 MiB -1 -1 0.24 18172 11 0.17 -1 -1 32976 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 24.0 MiB 0.66 954 4980 1041 3690 249 62.6 MiB 0.06 0.00 5.61753 -120.383 -5.61753 5.61753 0.71 0.000724066 0.000671426 0.0243024 0.0225755 36 2524 21 6.79088e+06 229024 648988. 2245.63 3.32 0.168968 0.146121 25390 158009 -1 2198 20 1028 2850 166211 37226 5.689 5.689 -133.666 -5.689 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0299064 0.0262374 101 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 20.47 vpr 63.38 MiB -1 -1 0.30 19088 15 0.49 -1 -1 33164 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 24.7 MiB 1.04 1586 10979 3032 6976 971 63.4 MiB 0.13 0.00 7.98095 -163.689 -7.98095 7.98095 0.71 0.00112047 0.00103703 0.0667993 0.0617513 38 4273 30 6.79088e+06 336800 678818. 2348.85 15.70 0.520166 0.44966 25966 169698 -1 3458 22 1990 5698 310134 70419 8.3376 8.3376 -186.882 -8.3376 0 0 902133. 3121.57 0.23 0.13 0.15 -1 -1 0.23 0.0508416 0.0445543 179 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 8.08 vpr 62.83 MiB -1 -1 0.26 18324 13 0.30 -1 -1 33084 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.05 1318 7953 1924 5245 784 62.8 MiB 0.09 0.00 6.80691 -147.77 -6.80691 6.80691 0.71 0.000956643 0.00088707 0.0455882 0.0422317 36 3592 31 6.79088e+06 269440 648988. 2245.63 3.60 0.322011 0.277761 25390 158009 -1 2997 28 1481 4013 600539 290449 6.97141 6.97141 -167.604 -6.97141 0 0 828058. 2865.25 0.22 0.20 0.15 -1 -1 0.22 0.0509153 0.0443532 139 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.53 vpr 62.29 MiB -1 -1 0.22 18036 11 0.13 -1 -1 32568 -1 -1 13 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 23.7 MiB 1.15 1107 11813 3755 6385 1673 62.3 MiB 0.11 0.00 5.65673 -121.476 -5.65673 5.65673 0.72 0.000722317 0.000669321 0.0553347 0.0512544 30 2712 19 6.79088e+06 175136 556674. 1926.21 1.40 0.141064 0.124895 24526 138013 -1 2328 19 971 2477 152584 33187 5.90733 5.90733 -142.283 -5.90733 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0288126 0.0253595 94 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 18.20 vpr 63.04 MiB -1 -1 0.26 18440 12 0.29 -1 -1 33084 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1451 8868 2481 5589 798 63.0 MiB 0.10 0.00 6.21186 -135.883 -6.21186 6.21186 0.72 0.000958825 0.000886887 0.0505626 0.0467685 38 3664 43 6.79088e+06 269440 678818. 2348.85 13.78 0.417 0.358723 25966 169698 -1 3015 18 1381 4414 233479 51121 6.63466 6.63466 -157.868 -6.63466 0 0 902133. 3121.57 0.23 0.10 0.15 -1 -1 0.23 0.0380261 0.0333906 146 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 16.52 vpr 62.44 MiB -1 -1 0.22 17732 12 0.19 -1 -1 33040 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 24.0 MiB 1.12 1116 12008 4379 6168 1461 62.4 MiB 0.11 0.00 6.07963 -127.977 -6.07963 6.07963 0.71 0.00079899 0.000741416 0.056343 0.0522715 38 2899 44 6.79088e+06 242496 678818. 2348.85 12.27 0.391972 0.338315 25966 169698 -1 2272 14 1143 2975 149892 34749 6.20493 6.20493 -141.571 -6.20493 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0253267 0.0224731 113 148 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 5.87 vpr 62.40 MiB -1 -1 0.24 18164 12 0.18 -1 -1 33108 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 23.8 MiB 0.90 922 5825 1352 4298 175 62.4 MiB 0.06 0.00 6.13346 -120.57 -6.13346 6.13346 0.72 0.000749036 0.000694489 0.0288017 0.0267278 36 2494 32 6.79088e+06 229024 648988. 2245.63 1.85 0.167266 0.145128 25390 158009 -1 2216 17 947 2673 155718 35496 6.38406 6.38406 -140.851 -6.38406 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0276933 0.0243761 106 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 9.14 vpr 62.66 MiB -1 -1 0.28 18280 12 0.26 -1 -1 32976 -1 -1 26 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 24.0 MiB 1.94 1216 7767 1963 5054 750 62.7 MiB 0.08 0.00 6.36943 -122.839 -6.36943 6.36943 0.71 0.000907912 0.000841877 0.0404365 0.0375406 40 2769 18 6.79088e+06 350272 706193. 2443.58 3.91 0.336058 0.288704 26254 175826 -1 2649 20 1395 4361 254183 54975 6.57729 6.57729 -136.076 -6.57729 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.037696 0.0330688 140 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.41 vpr 63.36 MiB -1 -1 0.27 18572 13 0.33 -1 -1 32972 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 24.6 MiB 0.96 1484 9303 2676 5892 735 63.4 MiB 0.11 0.00 6.50936 -139.884 -6.50936 6.50936 0.72 0.00103329 0.000958293 0.0544153 0.0504332 38 3887 25 6.79088e+06 309856 678818. 2348.85 3.04 0.264963 0.230585 25966 169698 -1 3189 22 2118 5250 283079 62904 7.12467 7.12467 -164.193 -7.12467 0 0 902133. 3121.57 0.23 0.12 0.14 -1 -1 0.23 0.0461078 0.0405112 160 235 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 12.02 vpr 62.84 MiB -1 -1 0.26 18568 12 0.22 -1 -1 33100 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 24.2 MiB 1.20 1346 7587 1864 5250 473 62.8 MiB 0.09 0.00 6.25876 -139.945 -6.25876 6.25876 0.75 0.000958572 0.000877828 0.0430338 0.0399097 36 4007 46 6.79088e+06 269440 648988. 2245.63 7.42 0.275238 0.239006 25390 158009 -1 3210 34 2418 7409 736719 261527 7.03857 7.03857 -166.902 -7.03857 0 0 828058. 2865.25 0.22 0.23 0.13 -1 -1 0.22 0.0582921 0.0506139 140 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 8.40 vpr 62.34 MiB -1 -1 0.23 18032 12 0.15 -1 -1 32648 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 23.8 MiB 1.75 970 7346 1525 5434 387 62.3 MiB 0.07 0.00 6.12227 -129.212 -6.12227 6.12227 0.72 0.000700121 0.000649312 0.0328972 0.0304954 36 2586 19 6.79088e+06 202080 648988. 2245.63 3.56 0.217314 0.187866 25390 158009 -1 2186 15 836 2194 134715 29755 6.37287 6.37287 -144.123 -6.37287 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0233558 0.0206413 93 119 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 7.84 vpr 62.69 MiB -1 -1 0.25 18032 12 0.21 -1 -1 32852 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.30 1082 11830 3208 6442 2180 62.7 MiB 0.11 0.00 5.97433 -125.288 -5.97433 5.97433 0.72 0.00078307 0.000726405 0.0552639 0.0512775 36 2885 22 6.79088e+06 255968 648988. 2245.63 3.38 0.243536 0.211724 25390 158009 -1 2455 17 1011 2832 179158 39034 6.26408 6.26408 -144.204 -6.26408 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0287916 0.0254106 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 8.65 vpr 62.59 MiB -1 -1 0.26 18308 11 0.18 -1 -1 32956 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 24.1 MiB 1.33 1165 9694 2744 5668 1282 62.6 MiB 0.10 0.00 5.62872 -114.976 -5.62872 5.62872 0.72 0.00086931 0.000805419 0.0508085 0.0470671 38 3003 30 6.79088e+06 269440 678818. 2348.85 4.19 0.33553 0.288888 25966 169698 -1 2556 14 1084 3291 171032 37938 5.87932 5.87932 -133.465 -5.87932 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0280307 0.02479 125 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 5.66 vpr 62.65 MiB -1 -1 0.24 18116 11 0.20 -1 -1 32904 -1 -1 19 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 24.2 MiB 1.15 1057 8022 1921 5271 830 62.6 MiB 0.08 0.00 5.35574 -105.27 -5.35574 5.35574 0.72 0.000835482 0.000767236 0.0419029 0.038771 30 2875 38 6.79088e+06 255968 556674. 1926.21 1.47 0.159996 0.139615 24526 138013 -1 2337 17 1117 3248 174852 39811 5.60634 5.60634 -124.305 -5.60634 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0299782 0.0263537 116 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 6.58 vpr 62.45 MiB -1 -1 0.25 18056 13 0.20 -1 -1 32936 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63952 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 23.8 MiB 1.62 1049 12464 3944 6305 2215 62.5 MiB 0.11 0.00 5.9509 -122.905 -5.9509 5.9509 0.71 0.000756834 0.000701177 0.057974 0.053761 36 3007 33 6.79088e+06 242496 648988. 2245.63 1.85 0.189381 0.166198 25390 158009 -1 2357 15 956 2699 171307 37642 6.2015 6.2015 -138.994 -6.2015 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0258296 0.0228939 108 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 16.35 vpr 62.71 MiB -1 -1 0.25 18600 12 0.22 -1 -1 33152 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1277 7736 1993 5023 720 62.7 MiB 0.08 0.00 5.66792 -135.227 -5.66792 5.66792 0.72 0.00085371 0.000789918 0.0406524 0.0377159 36 3321 31 6.79088e+06 242496 648988. 2245.63 11.22 0.356547 0.306837 25390 158009 -1 2788 15 1221 3147 191941 42342 6.54502 6.54502 -163.999 -6.54502 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.029177 0.0258101 120 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.92 vpr 62.75 MiB -1 -1 0.26 18300 13 0.31 -1 -1 32964 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1259 6489 1523 4389 577 62.8 MiB 0.08 0.00 7.05336 -143.086 -7.05336 7.05336 0.71 0.000902533 0.000837439 0.0357801 0.0332151 36 3066 24 6.79088e+06 282912 648988. 2245.63 2.19 0.218759 0.189329 25390 158009 -1 2602 17 1140 3207 176107 40347 7.39006 7.39006 -159.105 -7.39006 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0332454 0.029341 137 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 8.71 vpr 62.86 MiB -1 -1 0.26 18376 14 0.28 -1 -1 33000 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 24.3 MiB 1.23 1355 7770 1977 5250 543 62.9 MiB 0.09 0.00 7.26476 -153.3 -7.26476 7.26476 0.75 0.000941587 0.000873461 0.0435289 0.0404024 36 3533 41 6.79088e+06 269440 648988. 2245.63 4.17 0.258376 0.22376 25390 158009 -1 2935 19 1424 4113 260675 55366 7.51535 7.51535 -168.793 -7.51535 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0371702 0.0326694 132 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 7.85 vpr 62.75 MiB -1 -1 0.27 18696 14 0.24 -1 -1 33064 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.94 1157 12856 4285 6371 2200 62.8 MiB 0.13 0.00 6.58781 -134.152 -6.58781 6.58781 0.71 0.000871457 0.000808532 0.0675892 0.0627078 36 3381 30 6.79088e+06 229024 648988. 2245.63 2.49 0.236217 0.206543 25390 158009 -1 2832 35 1902 6156 810596 348240 6.96371 6.96371 -155.557 -6.96371 0 0 828058. 2865.25 0.22 0.25 0.17 -1 -1 0.22 0.0552506 0.04785 122 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.61 vpr 63.03 MiB -1 -1 0.28 18796 13 0.32 -1 -1 33000 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 24.5 MiB 1.64 1370 8213 1994 5808 411 63.0 MiB 0.10 0.00 6.79927 -143.422 -6.79927 6.79927 0.71 0.000963245 0.000888841 0.0458351 0.0423398 44 3449 31 6.79088e+06 296384 787024. 2723.27 2.56 0.247872 0.214981 27118 194962 -1 2753 18 1272 3578 192768 42587 7.38657 7.38657 -158.315 -7.38657 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0368103 0.0324393 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 7.58 vpr 62.34 MiB -1 -1 0.24 18012 13 0.18 -1 -1 32672 -1 -1 18 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.87 872 8336 2050 4953 1333 62.3 MiB 0.08 0.00 5.79327 -120.614 -5.79327 5.79327 0.72 0.000757248 0.000696263 0.0394008 0.0365311 36 2768 24 6.79088e+06 242496 648988. 2245.63 2.60 0.191356 0.166289 25390 158009 -1 2175 19 1148 3017 165064 39016 6.29098 6.29098 -139.485 -6.29098 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0334674 0.0295006 104 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 7.43 vpr 62.95 MiB -1 -1 0.30 18704 13 0.44 -1 -1 33144 -1 -1 22 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 24.5 MiB 1.62 1256 13992 3923 8012 2057 63.0 MiB 0.15 0.00 6.7243 -138.855 -6.7243 6.7243 0.72 0.000969261 0.000898873 0.0783225 0.0726552 40 3328 21 6.79088e+06 296384 706193. 2443.58 2.24 0.267835 0.234684 26254 175826 -1 3067 18 1602 4249 257275 58840 7.1002 7.1002 -159.163 -7.1002 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.037434 0.0330248 145 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 20.06 vpr 62.86 MiB -1 -1 0.27 18296 14 0.33 -1 -1 33000 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 24.2 MiB 1.50 1366 12364 3411 7240 1713 62.9 MiB 0.11 0.00 7.00723 -147.781 -7.00723 7.00723 0.72 0.00089309 0.00082721 0.0505173 0.0467584 38 3558 32 6.79088e+06 242496 678818. 2348.85 15.16 0.396451 0.341021 25966 169698 -1 2838 17 1350 3949 220099 48032 7.17168 7.17168 -166.496 -7.17168 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0329402 0.0290051 128 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 15.80 vpr 62.66 MiB -1 -1 0.27 18248 13 0.22 -1 -1 32892 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 24.1 MiB 1.68 1219 11474 3054 6396 2024 62.7 MiB 0.12 0.00 6.25189 -137.129 -6.25189 6.25189 0.72 0.000863454 0.00080072 0.0591499 0.0549098 36 3507 42 6.79088e+06 255968 648988. 2245.63 10.94 0.382093 0.329645 25390 158009 -1 2837 18 1469 3994 239835 52361 6.62779 6.62779 -155.214 -6.62779 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0330588 0.0290476 124 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 8.82 vpr 62.89 MiB -1 -1 0.27 18308 13 0.21 -1 -1 32964 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1162 9531 2678 5129 1724 62.9 MiB 0.10 0.00 6.43207 -124.687 -6.43207 6.43207 0.71 0.000859443 0.000797705 0.0502903 0.0466004 40 2851 22 6.79088e+06 255968 706193. 2443.58 3.99 0.331585 0.285944 26254 175826 -1 2673 29 1443 4028 440435 176949 6.62347 6.62347 -141.161 -6.62347 0 0 926341. 3205.33 0.24 0.16 0.15 -1 -1 0.24 0.0470999 0.0409728 121 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 8.52 vpr 62.93 MiB -1 -1 0.27 18484 14 0.38 -1 -1 32904 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1520 6409 1385 4431 593 62.9 MiB 0.08 0.00 7.13597 -149.1 -7.13597 7.13597 0.72 0.00101597 0.000930831 0.0387715 0.0358397 40 3791 20 6.79088e+06 282912 706193. 2443.58 3.46 0.236687 0.205183 26254 175826 -1 3481 38 2161 7072 689746 244668 7.80167 7.80167 -175.646 -7.80167 0 0 926341. 3205.33 0.24 0.23 0.15 -1 -1 0.24 0.0678518 0.058912 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 9.92 vpr 62.63 MiB -1 -1 0.19 18380 11 0.27 -1 -1 33056 -1 -1 23 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1039 10149 2321 6487 1341 62.6 MiB 0.10 0.00 6.16912 -116.909 -6.16912 6.16912 0.71 0.000869851 0.00080724 0.0518884 0.0480847 38 2961 31 6.79088e+06 309856 678818. 2348.85 4.84 0.357614 0.308283 25966 169698 -1 2412 17 1253 3710 180719 42196 6.36933 6.36933 -134.453 -6.36933 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0322264 0.0283587 136 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.59 vpr 62.23 MiB -1 -1 0.21 17956 13 0.16 -1 -1 32868 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63720 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 23.7 MiB 2.67 946 7548 1695 5631 222 62.2 MiB 0.08 0.00 5.82554 -132.39 -5.82554 5.82554 0.71 0.000703151 0.000650534 0.0355444 0.0329558 36 2990 33 6.79088e+06 188608 648988. 2245.63 3.87 0.192719 0.167414 25390 158009 -1 2294 30 1154 2574 265521 102153 6.31555 6.31555 -159.729 -6.31555 0 0 828058. 2865.25 0.22 0.12 0.14 -1 -1 0.22 0.040103 0.0348924 98 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.51 vpr 62.79 MiB -1 -1 0.25 18276 14 0.24 -1 -1 32836 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1142 7431 1676 5509 246 62.8 MiB 0.09 0.00 6.92457 -144.109 -6.92457 6.92457 0.71 0.000873668 0.000807625 0.0406352 0.0376284 36 3212 37 6.79088e+06 229024 648988. 2245.63 3.77 0.240369 0.208124 25390 158009 -1 2713 18 1283 3246 194728 43816 7.08907 7.08907 -163.504 -7.08907 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0330093 0.0290078 122 172 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.57 vpr 63.19 MiB -1 -1 0.28 18604 15 0.41 -1 -1 33036 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1468 5655 1104 4288 263 63.2 MiB 0.08 0.00 7.76944 -159.998 -7.76944 7.76944 0.73 0.00108338 0.000999568 0.0378232 0.0351093 38 4182 48 6.79088e+06 309856 678818. 2348.85 2.57 0.255541 0.221569 25966 169698 -1 3380 23 2110 5688 317939 70393 8.27064 8.27064 -184.578 -8.27064 0 0 902133. 3121.57 0.23 0.13 0.14 -1 -1 0.23 0.0493359 0.0433757 163 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 6.68 vpr 62.48 MiB -1 -1 0.24 18016 11 0.17 -1 -1 32864 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 23.9 MiB 1.48 1051 8867 2440 4963 1464 62.5 MiB 0.08 0.00 5.75402 -124.321 -5.75402 5.75402 0.73 0.000707815 0.000655377 0.0399429 0.0370288 34 2592 29 6.79088e+06 202080 618332. 2139.56 2.11 0.187718 0.163156 25102 150614 -1 2282 16 941 2392 153334 34118 5.95423 5.95423 -139.343 -5.95423 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0246972 0.0217793 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 15.17 vpr 62.54 MiB -1 -1 0.23 18240 12 0.19 -1 -1 33028 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 24.0 MiB 1.43 1173 7132 1772 4712 648 62.5 MiB 0.08 0.00 5.73934 -130.419 -5.73934 5.73934 0.72 0.000791109 0.000729216 0.0358855 0.033195 38 3115 29 6.79088e+06 229024 678818. 2348.85 10.60 0.316311 0.27205 25966 169698 -1 2629 22 1444 3991 212596 47863 6.03684 6.03684 -144.918 -6.03684 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344936 0.0301868 112 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 15.27 vpr 62.91 MiB -1 -1 0.27 18324 12 0.29 -1 -1 32952 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 24.5 MiB 1.13 1308 4403 844 3337 222 62.9 MiB 0.07 0.00 6.46241 -139.971 -6.46241 6.46241 0.72 0.000979296 0.000906803 0.0283879 0.0264159 34 4293 34 6.79088e+06 255968 618332. 2139.56 10.81 0.348195 0.299201 25102 150614 -1 3479 18 1717 4980 343032 74054 6.67381 6.67381 -160.89 -6.67381 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0376702 0.0332066 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 10.33 vpr 62.70 MiB -1 -1 0.27 18480 12 0.23 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1432 7914 1958 4935 1021 62.7 MiB 0.09 0.00 6.07958 -134.767 -6.07958 6.07958 0.71 0.000893415 0.000825111 0.0433057 0.0400908 44 3557 42 6.79088e+06 242496 787024. 2723.27 5.20 0.317743 0.27422 27118 194962 -1 2946 17 1230 3634 217913 46174 6.70957 6.70957 -153.455 -6.70957 0 0 997811. 3452.63 0.26 0.09 0.20 -1 -1 0.26 0.0328196 0.0289723 130 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 9.15 vpr 63.23 MiB -1 -1 0.26 18916 14 0.45 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 24.6 MiB 1.66 1375 5378 1012 4203 163 63.2 MiB 0.07 0.00 7.3152 -150.198 -7.3152 7.3152 0.72 0.00106482 0.000981547 0.034807 0.0322018 44 3659 20 6.79088e+06 296384 787024. 2723.27 3.83 0.340765 0.293477 27118 194962 -1 2939 17 1646 4942 247531 56395 7.4405 7.4405 -163.821 -7.4405 0 0 997811. 3452.63 0.29 0.10 0.16 -1 -1 0.29 0.0397023 0.0350669 167 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 8.34 vpr 62.65 MiB -1 -1 0.25 18496 12 0.21 -1 -1 33052 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.45 1043 10406 3634 4844 1928 62.6 MiB 0.10 0.00 5.94658 -115.53 -5.94658 5.94658 0.72 0.000826599 0.000767175 0.0523596 0.0485671 36 3217 40 6.79088e+06 255968 648988. 2245.63 3.76 0.240587 0.209122 25390 158009 -1 2375 18 1207 3466 189796 43542 6.19718 6.19718 -131.512 -6.19718 0 0 828058. 2865.25 0.23 0.05 0.13 -1 -1 0.23 0.0193987 0.0175362 121 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 6.01 vpr 62.41 MiB -1 -1 0.23 18112 11 0.18 -1 -1 32964 -1 -1 19 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.7 MiB 1.82 930 10370 3065 5403 1902 62.4 MiB 0.09 0.00 6.04382 -110.353 -6.04382 6.04382 0.73 0.000709846 0.000657971 0.0475889 0.0441973 30 2517 28 6.79088e+06 255968 556674. 1926.21 1.14 0.139982 0.123264 24526 138013 -1 2074 16 973 2420 120904 28571 6.29442 6.29442 -126.606 -6.29442 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0250438 0.0220906 104 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 10.08 vpr 63.54 MiB -1 -1 0.30 19040 13 0.41 -1 -1 32996 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 25.0 MiB 1.48 1668 11346 2946 7300 1100 63.5 MiB 0.14 0.00 6.55742 -139.517 -6.55742 6.55742 0.71 0.00116937 0.00108163 0.0722252 0.0668287 40 4512 46 6.79088e+06 350272 706193. 2443.58 4.66 0.348765 0.303696 26254 175826 -1 4267 46 2296 7376 1146213 514010 7.24997 7.24997 -163.25 -7.24997 0 0 926341. 3205.33 0.24 0.38 0.15 -1 -1 0.24 0.0948332 0.0822075 188 285 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 11.83 vpr 62.80 MiB -1 -1 0.28 18280 14 0.25 -1 -1 33424 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 24.3 MiB 1.60 1179 6781 1531 4436 814 62.8 MiB 0.08 0.00 6.928 -140.763 -6.928 6.928 0.73 0.000887109 0.000822171 0.0360534 0.0334144 30 3281 40 6.79088e+06 296384 556674. 1926.21 7.07 0.298828 0.257235 24526 138013 -1 2535 14 1160 3148 148221 35129 7.1786 7.1786 -157.301 -7.1786 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.028737 0.0254694 130 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 11.22 vpr 62.34 MiB -1 -1 0.26 18424 12 0.16 -1 -1 32860 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 23.7 MiB 1.51 1083 7380 1749 5397 234 62.3 MiB 0.08 0.00 6.02467 -131.016 -6.02467 6.02467 0.71 0.000767882 0.000702827 0.0342674 0.031766 34 3052 46 6.79088e+06 242496 618332. 2139.56 6.62 0.297402 0.255995 25102 150614 -1 2550 17 1077 2616 204138 44871 6.40057 6.40057 -154.976 -6.40057 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0275532 0.0242984 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 8.76 vpr 62.75 MiB -1 -1 0.25 18488 13 0.27 -1 -1 33064 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 24.2 MiB 1.29 1283 11296 3359 5947 1990 62.8 MiB 0.12 0.00 6.83846 -143.904 -6.83846 6.83846 0.72 0.000871224 0.000808219 0.058971 0.054725 36 3441 24 6.79088e+06 242496 648988. 2245.63 4.19 0.236884 0.206675 25390 158009 -1 2845 16 1226 3267 207875 45323 7.71556 7.71556 -167.246 -7.71556 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0341608 0.0303409 128 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 7.57 vpr 63.04 MiB -1 -1 0.28 18508 13 0.31 -1 -1 32992 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1403 6423 1369 4680 374 63.0 MiB 0.09 0.00 6.20144 -130.326 -6.20144 6.20144 0.75 0.00103851 0.000962037 0.0390459 0.0361701 38 4216 31 6.79088e+06 323328 678818. 2348.85 2.57 0.213478 0.185385 25966 169698 -1 3238 20 1722 4979 274412 61026 6.33018 6.33018 -148.998 -6.33018 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0424234 0.0373018 157 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 6.93 vpr 62.70 MiB -1 -1 0.26 18492 11 0.25 -1 -1 33136 -1 -1 22 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1269 6672 1513 4513 646 62.7 MiB 0.08 0.00 5.62872 -119.968 -5.62872 5.62872 0.72 0.000913112 0.000846414 0.0373935 0.0347207 36 3317 37 6.79088e+06 296384 648988. 2245.63 2.16 0.205374 0.178079 25390 158009 -1 2819 19 1333 4245 237903 53552 6.04376 6.04376 -138.669 -6.04376 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0364371 0.0320328 141 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 7.48 vpr 62.96 MiB -1 -1 0.28 18388 15 0.33 -1 -1 32932 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 24.6 MiB 1.36 1355 10103 2815 6633 655 63.0 MiB 0.11 0.00 7.17871 -154.666 -7.17871 7.17871 0.72 0.000963904 0.000891774 0.0553589 0.0511712 38 3700 45 6.79088e+06 296384 678818. 2348.85 2.73 0.233512 0.203461 25966 169698 -1 3009 20 1382 4233 232897 50899 7.47272 7.47272 -174.962 -7.47272 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0401243 0.0352717 147 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 7.59 vpr 62.83 MiB -1 -1 0.28 18588 13 0.31 -1 -1 32968 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 24.2 MiB 1.81 1344 7339 1804 5002 533 62.8 MiB 0.09 0.00 6.54861 -144.766 -6.54861 6.54861 0.72 0.00093564 0.000866953 0.0409508 0.0378849 36 3772 41 6.79088e+06 282912 648988. 2245.63 2.38 0.218496 0.189792 25390 158009 -1 3004 17 1346 3923 217399 49252 6.92451 6.92451 -166.986 -6.92451 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.035001 0.0309114 143 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 8.05 vpr 62.35 MiB -1 -1 0.24 18092 12 0.19 -1 -1 32908 -1 -1 18 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63848 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 23.7 MiB 1.52 953 5994 1224 4510 260 62.4 MiB 0.07 0.00 6.04731 -121.276 -6.04731 6.04731 0.71 0.000768264 0.000712646 0.0304047 0.0282274 44 2854 22 6.79088e+06 242496 787024. 2723.27 3.36 0.244844 0.211324 27118 194962 -1 2038 18 1009 2522 131570 31084 6.71301 6.71301 -141.64 -6.71301 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0295429 0.0260899 111 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 6.39 vpr 62.55 MiB -1 -1 0.24 18044 11 0.16 -1 -1 33092 -1 -1 14 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 24.0 MiB 1.45 1029 6386 1473 4559 354 62.6 MiB 0.07 0.00 5.49223 -122.531 -5.49223 5.49223 0.75 0.00074855 0.000690399 0.0314916 0.0290976 30 3015 31 6.79088e+06 188608 556674. 1926.21 1.89 0.134074 0.117183 24526 138013 -1 2362 18 1072 2600 145934 33290 5.90384 5.90384 -144.108 -5.90384 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0279883 0.0246072 98 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 8.40 vpr 62.85 MiB -1 -1 0.25 18380 13 0.31 -1 -1 32888 -1 -1 21 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.07 1338 9600 2499 5756 1345 62.8 MiB 0.11 0.00 6.6851 -135.894 -6.6851 6.6851 0.71 0.000947307 0.000871784 0.0542879 0.0501311 44 3199 21 6.79088e+06 282912 787024. 2723.27 3.90 0.324637 0.279975 27118 194962 -1 2764 19 1551 4746 254762 56758 6.9357 6.9357 -148.913 -6.9357 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0411568 0.036429 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 11.39 vpr 62.58 MiB -1 -1 0.20 18064 10 0.16 -1 -1 32864 -1 -1 17 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 24.0 MiB 1.69 988 5058 1160 3582 316 62.6 MiB 0.05 0.00 4.95172 -105.077 -4.95172 4.95172 0.71 0.000705923 0.000654468 0.0243026 0.022562 30 2622 46 6.79088e+06 229024 556674. 1926.21 6.75 0.230337 0.198013 24526 138013 -1 2182 20 1009 2519 132209 30176 5.32762 5.32762 -127.248 -5.32762 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0292707 0.0256369 101 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 9.18 vpr 62.54 MiB -1 -1 0.20 18116 14 0.20 -1 -1 32740 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 23.9 MiB 2.45 933 12898 3769 6963 2166 62.5 MiB 0.12 0.00 6.49828 -129.336 -6.49828 6.49828 0.72 0.000764309 0.000708191 0.0584895 0.0541711 38 2659 31 6.79088e+06 242496 678818. 2348.85 3.59 0.281499 0.244372 25966 169698 -1 2112 16 1092 2831 142210 33962 6.62358 6.62358 -146.713 -6.62358 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0270516 0.0239338 110 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 9.87 vpr 62.66 MiB -1 -1 0.29 18648 13 0.29 -1 -1 32940 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 24.1 MiB 2.23 1267 8363 2102 5398 863 62.7 MiB 0.09 0.00 6.42326 -138.516 -6.42326 6.42326 0.72 0.000867578 0.000804916 0.0439278 0.0407806 44 3173 20 6.79088e+06 269440 787024. 2723.27 4.25 0.259854 0.224985 27118 194962 -1 2463 20 1128 3043 164836 36401 6.72425 6.72425 -156.003 -6.72425 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.035828 0.0314785 125 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 9.47 vpr 62.25 MiB -1 -1 0.23 18012 12 0.15 -1 -1 32872 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63740 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 23.7 MiB 3.06 872 7648 2130 4159 1359 62.2 MiB 0.07 0.00 5.70363 -118.952 -5.70363 5.70363 0.71 0.000711533 0.000659423 0.0345437 0.0320038 44 2205 20 6.79088e+06 229024 787024. 2723.27 3.30 0.23873 0.20589 27118 194962 -1 1776 14 850 2210 111045 26972 5.91503 5.91503 -131.168 -5.91503 0 0 997811. 3452.63 0.26 0.06 0.16 -1 -1 0.26 0.0230133 0.0203979 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 7.08 vpr 62.84 MiB -1 -1 0.26 18300 12 0.19 -1 -1 33064 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1139 8448 1976 6216 256 62.8 MiB 0.11 0.00 6.07958 -131.841 -6.07958 6.07958 0.72 0.000902682 0.000835868 0.0524995 0.0482209 38 2949 29 6.79088e+06 242496 678818. 2348.85 2.10 0.239954 0.207707 25966 169698 -1 2405 15 1195 3403 168983 39830 6.45548 6.45548 -148.427 -6.45548 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0307528 0.0271899 130 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 8.29 vpr 62.94 MiB -1 -1 0.29 18864 13 0.28 -1 -1 32948 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 24.5 MiB 1.04 1350 7103 1668 4953 482 62.9 MiB 0.08 0.00 6.60438 -142.417 -6.60438 6.60438 0.71 0.000930782 0.000862975 0.0405208 0.0376209 44 3230 23 6.79088e+06 269440 787024. 2723.27 3.93 0.302546 0.261437 27118 194962 -1 2647 18 1162 3325 170328 38664 6.60438 6.60438 -154.862 -6.60438 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0355118 0.0312948 143 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 7.08 vpr 62.42 MiB -1 -1 0.24 18232 11 0.17 -1 -1 32876 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 23.8 MiB 1.75 984 12636 3994 6254 2388 62.4 MiB 0.12 0.00 5.1955 -121.732 -5.1955 5.1955 0.72 0.000746558 0.000688338 0.0579421 0.0534441 46 2641 17 6.79088e+06 215552 828058. 2865.25 2.13 0.199587 0.174355 27406 200422 -1 2200 14 1034 2719 144670 33286 5.4461 5.4461 -139.329 -5.4461 0 0 1.01997e+06 3529.29 0.27 0.06 0.17 -1 -1 0.27 0.0241657 0.0214501 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 9.18 vpr 62.56 MiB -1 -1 0.24 18160 13 0.21 -1 -1 32800 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 24.1 MiB 2.31 1069 12923 4695 6129 2099 62.6 MiB 0.13 0.00 6.33372 -138.057 -6.33372 6.33372 0.72 0.000827559 0.000767397 0.0667954 0.0619587 38 3059 37 6.79088e+06 202080 678818. 2348.85 3.65 0.254198 0.222275 25966 169698 -1 2374 16 1100 2930 152488 34973 6.58432 6.58432 -153.688 -6.58432 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0293787 0.0258428 113 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 16.26 vpr 62.82 MiB -1 -1 0.25 18328 13 0.26 -1 -1 33088 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 24.3 MiB 1.08 1281 8723 2468 5410 845 62.8 MiB 0.10 0.00 6.57319 -147.944 -6.57319 6.57319 0.73 0.000923026 0.000849966 0.0483584 0.0447165 36 3731 34 6.79088e+06 255968 648988. 2245.63 11.90 0.379639 0.32679 25390 158009 -1 3010 17 1428 3760 240286 53067 6.65153 6.65153 -162.453 -6.65153 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0337627 0.0298155 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 7.91 vpr 62.46 MiB -1 -1 0.26 18468 11 0.19 -1 -1 32764 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 24.0 MiB 1.87 1006 11604 4252 5643 1709 62.5 MiB 0.11 0.00 5.00754 -104.951 -5.00754 5.00754 0.72 0.000797832 0.000739672 0.0572285 0.0529921 38 2930 27 6.79088e+06 255968 678818. 2348.85 2.86 0.222616 0.193746 25966 169698 -1 2256 15 1082 3063 164829 37917 5.63404 5.63404 -122.348 -5.63404 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0271491 0.023976 116 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 9.00 vpr 63.00 MiB -1 -1 0.28 18996 14 0.31 -1 -1 33484 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 24.5 MiB 1.38 1360 7767 1748 4876 1143 63.0 MiB 0.10 0.00 7.31171 -157.174 -7.31171 7.31171 0.74 0.00102742 0.000952282 0.0464847 0.0429076 34 4188 37 6.79088e+06 309856 618332. 2139.56 4.21 0.371568 0.319867 25102 150614 -1 3324 18 1808 4504 270301 61326 7.68761 7.68761 -181.729 -7.68761 0 0 787024. 2723.27 0.22 0.11 0.14 -1 -1 0.22 0.0396485 0.0349775 159 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 20.86 vpr 62.63 MiB -1 -1 0.22 17936 12 0.15 -1 -1 32916 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 24.0 MiB 2.04 1058 14144 4654 7267 2223 62.6 MiB 0.12 0.00 5.70019 -131.82 -5.70019 5.70019 0.72 0.000716013 0.000661443 0.0596605 0.0551433 36 3155 44 6.79088e+06 255968 648988. 2245.63 15.78 0.377271 0.325582 25390 158009 -1 2474 25 1135 2695 274953 102478 5.82549 5.82549 -144.246 -5.82549 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0345807 0.0302059 106 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 10.44 vpr 62.69 MiB -1 -1 0.29 18860 13 0.29 -1 -1 32952 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1257 6672 1505 4334 833 62.7 MiB 0.08 0.00 7.16403 -147.507 -7.16403 7.16403 0.71 0.00090734 0.000841177 0.036792 0.0341607 36 3734 24 6.79088e+06 269440 648988. 2245.63 5.90 0.229048 0.198272 25390 158009 -1 3093 16 1449 4011 227398 51528 7.16403 7.16403 -164.795 -7.16403 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0326645 0.0288812 136 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.47 vpr 62.36 MiB -1 -1 0.25 18436 13 0.18 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 23.7 MiB 1.06 1087 13992 4322 7441 2229 62.4 MiB 0.12 0.00 6.46246 -142.744 -6.46246 6.46246 0.72 0.000754979 0.000698957 0.0606214 0.0561703 36 2939 19 6.79088e+06 269440 648988. 2245.63 3.23 0.209462 0.183584 25390 158009 -1 2323 21 1059 2755 153399 35534 6.83836 6.83836 -163.626 -6.83836 0 0 828058. 2865.25 0.23 0.08 0.15 -1 -1 0.23 0.0322022 0.0282545 107 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 7.64 vpr 62.69 MiB -1 -1 0.26 18468 12 0.21 -1 -1 32988 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.1 MiB 1.42 1275 7283 1750 5148 385 62.7 MiB 0.08 0.00 6.08307 -135.922 -6.08307 6.08307 0.72 0.000889721 0.000823151 0.0403792 0.0373236 36 3353 40 6.79088e+06 255968 648988. 2245.63 3.02 0.241664 0.20894 25390 158009 -1 2842 17 1342 3802 228235 50084 6.62347 6.62347 -155.572 -6.62347 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0331086 0.0290428 128 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 10.00 vpr 63.40 MiB -1 -1 0.30 18956 15 0.47 -1 -1 33640 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1577 12761 3228 7341 2192 63.4 MiB 0.15 0.00 7.81291 -164.314 -7.81291 7.81291 0.79 0.00114024 0.00105477 0.0784087 0.0725565 40 4196 27 6.79088e+06 336800 706193. 2443.58 5.04 0.325772 0.285127 26254 175826 -1 3744 20 1999 6039 398858 94740 8.30292 8.30292 -188.595 -8.30292 0 0 926341. 3205.33 0.24 0.14 0.15 -1 -1 0.24 0.0473965 0.041657 183 255 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 6.12 vpr 61.86 MiB -1 -1 0.22 17752 10 0.10 -1 -1 32480 -1 -1 12 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63348 30 32 172 204 1 133 74 17 17 289 -1 unnamed_device 23.2 MiB 1.41 807 5654 1363 3953 338 61.9 MiB 0.05 0.00 4.08102 -101.595 -4.08102 4.08102 0.72 0.000564635 0.000524481 0.0224875 0.0209045 34 2108 27 6.79088e+06 161664 618332. 2139.56 1.84 0.115099 0.0997314 25102 150614 -1 1863 14 732 1676 117071 25383 4.25666 4.25666 -117.258 -4.25666 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0180142 0.0159092 66 81 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 6.78 vpr 62.38 MiB -1 -1 0.24 18044 13 0.18 -1 -1 32880 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.7 MiB 1.44 1014 7853 1939 4885 1029 62.4 MiB 0.08 0.00 6.47021 -136.266 -6.47021 6.47021 0.72 0.000749768 0.000696078 0.0378999 0.035196 34 3007 48 6.79088e+06 229024 618332. 2139.56 2.24 0.198595 0.172676 25102 150614 -1 2500 18 1143 2868 173713 39160 6.59551 6.59551 -154.959 -6.59551 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.02853 0.025176 103 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.76 vpr 62.62 MiB -1 -1 0.23 18304 12 0.20 -1 -1 32932 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 24.1 MiB 1.81 1199 7736 2108 5011 617 62.6 MiB 0.08 0.00 5.91852 -134.148 -5.91852 5.91852 0.72 0.000842077 0.000780944 0.0400312 0.0371254 44 2887 18 6.79088e+06 242496 787024. 2723.27 3.78 0.267103 0.230368 27118 194962 -1 2416 16 1032 2533 141367 31321 6.16912 6.16912 -153.508 -6.16912 0 0 997811. 3452.63 0.26 0.07 0.16 -1 -1 0.26 0.0296104 0.0261472 117 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 5.39 vpr 61.93 MiB -1 -1 0.22 17888 9 0.13 -1 -1 32768 -1 -1 18 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63412 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 23.5 MiB 0.82 748 12557 4155 7233 1169 61.9 MiB 0.10 0.00 4.14599 -82.3614 -4.14599 4.14599 0.72 0.000603606 0.000560161 0.0502884 0.046656 34 2158 31 6.79088e+06 242496 618332. 2139.56 1.62 0.150287 0.131554 25102 150614 -1 1748 16 725 1992 128026 28296 4.307 4.307 -98.6707 -4.307 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0213092 0.0187147 86 102 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 7.01 vpr 62.88 MiB -1 -1 0.27 18424 12 0.27 -1 -1 32940 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 24.3 MiB 1.45 1348 13291 3597 7574 2120 62.9 MiB 0.15 0.00 6.29447 -138.979 -6.29447 6.29447 0.72 0.00096228 0.000888301 0.0724605 0.0669395 44 3662 25 6.79088e+06 282912 787024. 2723.27 2.15 0.235572 0.206585 27118 194962 -1 2913 19 1443 3976 219611 48603 6.54507 6.54507 -159.017 -6.54507 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0376763 0.0331368 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 9.39 vpr 62.84 MiB -1 -1 0.29 18860 13 0.33 -1 -1 33020 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1247 13291 4075 7108 2108 62.8 MiB 0.14 0.00 7.1786 -147.221 -7.1786 7.1786 0.72 0.000965084 0.000888998 0.0720045 0.0666966 44 3406 22 6.79088e+06 296384 787024. 2723.27 4.04 0.318195 0.276577 27118 194962 -1 2751 19 1309 3793 212290 48022 7.3039 7.3039 -162.927 -7.3039 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0380452 0.0334524 147 197 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 7.15 vpr 62.99 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30204 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.4 MiB 2.76 1177 14964 4681 8716 1567 63.0 MiB 0.15 0.00 4.34064 -135.503 -4.34064 4.34064 0.72 0.000699856 0.000650197 0.0543234 0.0504781 34 2950 23 6.87369e+06 363320 618332. 2139.56 1.45 0.190757 0.166776 25762 151098 -1 2371 21 1557 2369 157588 37354 4.78725 4.78725 -158.821 -4.78725 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0282498 0.0246 142 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.56 vpr 62.86 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30592 -1 -1 24 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 30 32 363 293 1 199 86 17 17 289 -1 unnamed_device 24.3 MiB 2.18 922 10481 2952 6350 1179 62.9 MiB 0.11 0.00 3.52915 -107.744 -3.52915 3.52915 0.72 0.000703637 0.000654446 0.0412809 0.0383922 34 2524 25 6.87369e+06 335372 618332. 2139.56 1.47 0.180086 0.156552 25762 151098 -1 2066 22 1929 2944 194944 48191 3.96276 3.96276 -135.901 -3.96276 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0292082 0.0253587 138 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.49 vpr 62.79 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30560 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.3 MiB 2.20 992 11617 3428 6996 1193 62.8 MiB 0.11 0.00 3.45035 -98.6494 -3.45035 3.45035 0.72 0.000630222 0.000587028 0.0411932 0.0383342 34 2564 29 6.87369e+06 293451 618332. 2139.56 1.37 0.168862 0.146878 25762 151098 -1 2034 20 1206 1613 112248 27011 3.85476 3.85476 -121.707 -3.85476 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0243458 0.0211979 124 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.27 vpr 62.58 MiB -1 -1 0.19 17976 1 0.03 -1 -1 30572 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.2 MiB 0.88 898 16572 4449 11023 1100 62.6 MiB 0.14 0.00 3.56482 -101.305 -3.56482 3.56482 0.72 0.000632806 0.000588573 0.0542386 0.0503535 34 2203 34 6.87369e+06 405241 618332. 2139.56 1.47 0.18977 0.1654 25762 151098 -1 1858 21 1501 2743 175077 41281 3.6681 3.6681 -118.243 -3.6681 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.025266 0.0219228 124 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.09 vpr 62.93 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.4 MiB 1.10 1028 16819 5296 9779 1744 62.9 MiB 0.16 0.00 3.70412 -112.048 -3.70412 3.70412 0.72 0.000692688 0.00063745 0.0588128 0.0545622 34 2749 29 6.87369e+06 377294 618332. 2139.56 3.00 0.270431 0.234707 25762 151098 -1 2114 22 1634 3322 218917 54159 3.5961 3.5961 -127.474 -3.5961 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0284033 0.0246932 131 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.67 vpr 62.89 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30492 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.4 MiB 1.28 986 15643 5357 7618 2668 62.9 MiB 0.15 0.00 2.80487 -97.9383 -2.80487 2.80487 0.72 0.000716299 0.000664988 0.0552263 0.0513245 32 3053 41 6.87369e+06 419215 586450. 2029.24 1.42 0.189472 0.166103 25474 144626 -1 2140 20 1386 2148 177357 41669 3.24391 3.24391 -122.815 -3.24391 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0274448 0.0238812 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.50 vpr 62.35 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30856 -1 -1 19 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.90 652 9374 2426 6061 887 62.3 MiB 0.08 0.00 2.94598 -86.1959 -2.94598 2.94598 0.72 0.000562002 0.000524527 0.0330306 0.030801 28 1770 28 6.87369e+06 265503 531479. 1839.03 0.82 0.103814 0.0909577 24610 126494 -1 1514 20 1105 1829 127512 29678 3.04626 3.04626 -104.55 -3.04626 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0214873 0.018578 97 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.43 vpr 62.47 MiB -1 -1 0.18 17908 1 0.03 -1 -1 30296 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.9 MiB 0.77 999 14999 4064 8375 2560 62.5 MiB 0.12 0.00 2.74825 -87.8958 -2.74825 2.74825 0.72 0.000596933 0.000555428 0.0432974 0.0402296 28 2236 24 6.87369e+06 447163 531479. 1839.03 0.81 0.11537 0.101808 24610 126494 -1 2119 21 1207 2123 171998 37626 2.80696 2.80696 -104.336 -2.80696 0 0 648988. 2245.63 0.18 0.07 0.12 -1 -1 0.18 0.0238849 0.0206527 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.15 vpr 62.67 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30312 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.0 MiB 2.03 917 8852 1937 6476 439 62.7 MiB 0.09 0.00 2.65757 -94.7492 -2.65757 2.65757 0.72 0.00063378 0.000589787 0.034688 0.0322779 34 2324 20 6.87369e+06 237555 618332. 2139.56 1.33 0.155562 0.135074 25762 151098 -1 2068 19 1286 1856 150540 35070 3.29721 3.29721 -124.075 -3.29721 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.023529 0.0204592 113 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.48 vpr 62.57 MiB -1 -1 0.18 18032 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 3.29 889 10056 2818 6482 756 62.6 MiB 0.10 0.00 3.21683 -110.53 -3.21683 3.21683 0.72 0.000624133 0.000580984 0.038408 0.0357503 34 2148 23 6.87369e+06 223581 618332. 2139.56 1.32 0.160157 0.139381 25762 151098 -1 1812 23 1307 2199 155101 36550 2.96796 2.96796 -121.872 -2.96796 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0269623 0.0233269 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.85 vpr 62.58 MiB -1 -1 0.20 18032 1 0.03 -1 -1 30552 -1 -1 16 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 24.1 MiB 2.65 737 12694 3600 8055 1039 62.6 MiB 0.11 0.00 3.28893 -98.4024 -3.28893 3.28893 0.78 0.000617334 0.000574938 0.0488246 0.0454638 34 1798 23 6.87369e+06 223581 618332. 2139.56 1.28 0.167884 0.146407 25762 151098 -1 1581 21 939 1568 113243 26788 3.05756 3.05756 -108.79 -3.05756 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0243573 0.0210856 98 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.13 vpr 62.55 MiB -1 -1 0.17 18012 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 24.0 MiB 1.99 867 9181 2335 6374 472 62.6 MiB 0.09 0.00 2.8828 -91.9305 -2.8828 2.8828 0.73 0.000600866 0.000555199 0.0328934 0.0306081 34 2205 22 6.87369e+06 237555 618332. 2139.56 1.36 0.14872 0.129021 25762 151098 -1 1826 23 1149 1650 126856 30658 3.05561 3.05561 -113.435 -3.05561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0258532 0.0224469 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 7.63 vpr 62.87 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30412 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.3 MiB 3.17 1138 15447 4537 8733 2177 62.9 MiB 0.16 0.00 3.36593 -113.586 -3.36593 3.36593 0.72 0.000702591 0.000645234 0.0590272 0.0546232 34 2827 22 6.87369e+06 321398 618332. 2139.56 1.55 0.193226 0.169094 25762 151098 -1 2408 22 1999 3058 237230 53073 3.09131 3.09131 -125.777 -3.09131 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.029128 0.0253151 142 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.57 vpr 62.85 MiB -1 -1 0.20 18364 1 0.03 -1 -1 30564 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.3 MiB 2.05 998 10895 2604 7465 826 62.9 MiB 0.12 0.00 3.88148 -119.939 -3.88148 3.88148 0.72 0.000712021 0.000662201 0.0380286 0.0353666 34 2295 22 6.87369e+06 433189 618332. 2139.56 2.66 0.211907 0.18343 25762 151098 -1 1954 23 1499 2363 146835 35748 3.76516 3.76516 -133.631 -3.76516 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0301851 0.0261947 133 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.98 vpr 62.36 MiB -1 -1 0.18 17916 1 0.03 -1 -1 30364 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63852 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 23.9 MiB 1.41 770 7992 2105 5116 771 62.4 MiB 0.07 0.00 2.63557 -83.4646 -2.63557 2.63557 0.72 0.000542377 0.000505142 0.0268127 0.0249818 32 2046 21 6.87369e+06 265503 586450. 2029.24 0.81 0.0902929 0.0791096 25474 144626 -1 1695 18 1016 1613 130031 30124 2.82401 2.82401 -98.8448 -2.82401 0 0 744469. 2576.02 0.20 0.06 0.13 -1 -1 0.20 0.0193083 0.0167539 94 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.12 vpr 63.19 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30624 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.7 MiB 1.73 1005 16858 5571 8447 2840 63.2 MiB 0.16 0.00 2.9366 -101.257 -2.9366 2.9366 0.72 0.00071762 0.000666781 0.0643841 0.0598432 34 2615 23 6.87369e+06 335372 618332. 2139.56 1.44 0.204171 0.178987 25762 151098 -1 2111 22 1670 2831 207727 47732 2.90526 2.90526 -117.397 -2.90526 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0298746 0.0259423 135 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.81 vpr 62.92 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30212 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.3 MiB 3.38 1188 11617 3111 7417 1089 62.9 MiB 0.12 0.00 3.24063 -110.851 -3.24063 3.24063 0.72 0.000684145 0.00063662 0.0447158 0.041627 34 2815 23 6.87369e+06 293451 618332. 2139.56 1.51 0.177722 0.154957 25762 151098 -1 2427 18 1520 2195 166823 37457 3.34391 3.34391 -129.771 -3.34391 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0244766 0.0213898 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 5.81 vpr 62.66 MiB -1 -1 0.19 18480 1 0.03 -1 -1 30492 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 2.13 863 15410 4744 8645 2021 62.7 MiB 0.13 0.00 2.46506 -93.4938 -2.46506 2.46506 0.72 0.000646795 0.000601232 0.0501193 0.0466055 28 2118 19 6.87369e+06 391268 531479. 1839.03 0.88 0.123583 0.109397 24610 126494 -1 1943 20 1199 1980 156797 35614 2.18787 2.18787 -104.976 -2.18787 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0248147 0.0215088 109 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.73 vpr 62.47 MiB -1 -1 0.17 18084 1 0.03 -1 -1 30252 -1 -1 14 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.9 MiB 0.51 462 11276 4737 5817 722 62.5 MiB 0.08 0.00 2.10903 -68.8572 -2.10903 2.10903 0.72 0.000504379 0.000469709 0.0365049 0.0339693 34 1336 22 6.87369e+06 195634 618332. 2139.56 1.46 0.132689 0.115555 25762 151098 -1 1011 16 637 870 62266 15976 2.06882 2.06882 -81.5805 -2.06882 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0161078 0.0140096 71 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 8.57 vpr 62.79 MiB -1 -1 0.18 18192 1 0.03 -1 -1 30584 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.3 MiB 2.51 918 11830 3707 7291 832 62.8 MiB 0.12 0.00 3.93483 -123.602 -3.93483 3.93483 0.72 0.000617114 0.000575306 0.0429537 0.0400482 36 2129 22 6.87369e+06 265503 648988. 2245.63 3.16 0.215428 0.186519 26050 158493 -1 1766 18 1103 1637 105746 25456 3.6883 3.6883 -135.471 -3.6883 0 0 828058. 2865.25 0.22 0.06 0.15 -1 -1 0.22 0.0219601 0.0191465 116 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 4.71 vpr 62.97 MiB -1 -1 0.19 18508 1 0.03 -1 -1 30600 -1 -1 35 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.4 MiB 0.76 1067 18111 5017 10898 2196 63.0 MiB 0.15 0.00 3.37999 -112.727 -3.37999 3.37999 0.74 0.000696336 0.000647026 0.0575234 0.0533857 32 2532 41 6.87369e+06 489084 586450. 2029.24 1.00 0.159144 0.140009 25474 144626 -1 2136 22 1506 2214 174905 39489 3.8346 3.8346 -136.202 -3.8346 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0285876 0.0248405 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 6.33 vpr 63.22 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30456 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.4 MiB 1.84 1218 14639 4247 8257 2135 63.2 MiB 0.15 0.00 3.42215 -109.966 -3.42215 3.42215 0.72 0.000723272 0.000672705 0.0588903 0.0547739 34 3066 24 6.87369e+06 307425 618332. 2139.56 1.53 0.203599 0.178433 25762 151098 -1 2545 22 1819 2879 240277 54156 3.96426 3.96426 -135.625 -3.96426 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0299486 0.0260171 142 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.90 vpr 62.10 MiB -1 -1 0.17 17928 1 0.02 -1 -1 30756 -1 -1 17 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.6 MiB 1.50 412 9871 4066 5118 687 62.1 MiB 0.07 0.00 2.06503 -58.1579 -2.06503 2.06503 0.73 0.000439917 0.000409719 0.0288063 0.0268585 28 1134 24 6.87369e+06 237555 531479. 1839.03 1.72 0.137092 0.118475 24610 126494 -1 1087 20 741 1041 80665 21140 2.25347 2.25347 -77.4595 -2.25347 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0167213 0.0144885 67 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.27 vpr 62.61 MiB -1 -1 0.19 17936 1 0.03 -1 -1 30504 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.9 MiB 0.92 851 10455 2880 5513 2062 62.6 MiB 0.10 0.00 3.55682 -101.679 -3.55682 3.55682 0.72 0.000617028 0.000574457 0.0357415 0.0332109 34 2342 24 6.87369e+06 321398 618332. 2139.56 1.51 0.157859 0.137124 25762 151098 -1 1982 23 1582 2812 218884 51102 3.7494 3.7494 -122.479 -3.7494 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0264751 0.022939 119 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.05 vpr 62.02 MiB -1 -1 0.16 17564 1 0.02 -1 -1 30224 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.6 MiB 0.38 551 10636 4310 5626 700 62.0 MiB 0.08 0.00 2.08703 -66.4743 -2.08703 2.08703 0.75 0.000360568 0.000336731 0.0296286 0.0275578 28 1424 19 6.87369e+06 167686 531479. 1839.03 0.94 0.0795384 0.0701899 24610 126494 -1 1252 16 678 820 70120 16830 2.11712 2.11712 -83.4216 -2.11712 0 0 648988. 2245.63 0.18 0.04 0.11 -1 -1 0.18 0.0139492 0.0121852 65 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.37 vpr 62.56 MiB -1 -1 0.18 18088 1 0.03 -1 -1 30256 -1 -1 30 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.2 MiB 0.73 1022 16495 4394 10232 1869 62.6 MiB 0.14 0.00 3.51652 -104.603 -3.51652 3.51652 0.72 0.000631307 0.000587605 0.0508408 0.0472989 28 2188 21 6.87369e+06 419215 531479. 1839.03 0.81 0.124337 0.110019 24610 126494 -1 1988 17 1039 1647 109659 24604 3.7681 3.7681 -122.522 -3.7681 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0217588 0.0189942 120 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.39 vpr 62.89 MiB -1 -1 0.16 17964 1 0.03 -1 -1 30576 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.4 MiB 0.76 1024 14783 4090 8961 1732 62.9 MiB 0.13 0.00 2.75925 -91.8235 -2.75925 2.75925 0.72 0.000636231 0.000592104 0.045636 0.0423339 30 2175 20 6.87369e+06 433189 556674. 1926.21 0.81 0.119131 0.105244 25186 138497 -1 1823 21 1078 2028 111889 25961 2.65466 2.65466 -104.746 -2.65466 0 0 706193. 2443.58 0.22 0.06 0.12 -1 -1 0.22 0.0254841 0.0221322 130 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.97 vpr 62.72 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30544 -1 -1 28 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.2 MiB 1.53 1103 17066 5052 9903 2111 62.7 MiB 0.16 0.00 3.71518 -110.968 -3.71518 3.71518 0.72 0.00068115 0.000633558 0.058425 0.0543519 34 2625 22 6.87369e+06 391268 618332. 2139.56 1.50 0.196231 0.171986 25762 151098 -1 2235 19 1417 2436 183131 42063 3.80346 3.80346 -132.835 -3.80346 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0250078 0.021765 131 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.43 vpr 62.50 MiB -1 -1 0.18 17948 1 0.02 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 0.78 765 12636 4413 6263 1960 62.5 MiB 0.11 0.00 2.61357 -91.4633 -2.61357 2.61357 0.72 0.000600302 0.00055839 0.0460249 0.0428487 30 1900 19 6.87369e+06 223581 556674. 1926.21 0.82 0.114265 0.101063 25186 138497 -1 1499 21 799 1262 87120 19538 2.77401 2.77401 -105.721 -2.77401 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0239457 0.0207437 99 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.83 vpr 62.39 MiB -1 -1 0.18 18216 1 0.03 -1 -1 30728 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.9 MiB 1.05 576 12958 3695 6144 3119 62.4 MiB 0.09 0.00 2.60257 -78.4361 -2.60257 2.60257 0.72 0.000564975 0.000525768 0.039302 0.0365515 36 1694 24 6.87369e+06 363320 648988. 2245.63 1.92 0.151312 0.13163 26050 158493 -1 1275 29 1006 1512 107303 26395 3.24221 3.24221 -96.0765 -3.24221 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0291682 0.0251156 97 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 6.04 vpr 62.35 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30312 -1 -1 18 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.8 MiB 0.80 771 12362 3683 7395 1284 62.3 MiB 0.11 0.00 2.8296 -86.1817 -2.8296 2.8296 0.72 0.000562222 0.000523995 0.0435488 0.0405676 30 1871 20 6.87369e+06 251529 556674. 1926.21 2.40 0.176127 0.152797 25186 138497 -1 1584 22 956 1785 111795 25605 2.85696 2.85696 -104.067 -2.85696 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0231688 0.0200372 95 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 4.36 vpr 62.38 MiB -1 -1 0.17 17892 1 0.03 -1 -1 30488 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.64 713 9881 2413 7196 272 62.4 MiB 0.09 0.00 3.20393 -96.1649 -3.20393 3.20393 0.74 0.000574702 0.00053571 0.0340945 0.0317726 32 2175 31 6.87369e+06 237555 586450. 2029.24 0.89 0.109349 0.0960154 25474 144626 -1 1762 16 1194 1912 141952 33861 3.11056 3.11056 -116.835 -3.11056 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.0184613 0.0161095 101 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.66 vpr 62.52 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30436 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 24.0 MiB 0.77 695 8009 1713 6016 280 62.5 MiB 0.08 0.00 2.8296 -86.9587 -2.8296 2.8296 0.75 0.000583997 0.000544025 0.0258551 0.0240972 28 2039 23 6.87369e+06 363320 531479. 1839.03 1.07 0.0956472 0.083538 24610 126494 -1 1726 20 1136 1856 143414 34393 3.15891 3.15891 -112.231 -3.15891 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0223548 0.0193713 102 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.70 vpr 62.57 MiB -1 -1 0.19 18152 1 0.03 -1 -1 30656 -1 -1 25 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 24.2 MiB 2.55 738 14072 4747 6705 2620 62.6 MiB 0.12 0.00 2.42106 -79.5498 -2.42106 2.42106 0.72 0.000595854 0.000553786 0.0463785 0.0431364 34 1923 22 6.87369e+06 349346 618332. 2139.56 1.29 0.162642 0.141832 25762 151098 -1 1553 19 1141 1677 116300 28633 2.44477 2.44477 -95.6331 -2.44477 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219432 0.0190278 106 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.28 vpr 63.14 MiB -1 -1 0.19 18520 1 0.03 -1 -1 30724 -1 -1 40 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.4 MiB 3.01 1219 13280 3569 8194 1517 63.1 MiB 0.13 0.00 3.29679 -102.41 -3.29679 3.29679 0.72 0.000737549 0.000685753 0.0423869 0.0393501 28 3012 26 6.87369e+06 558954 531479. 1839.03 1.39 0.134984 0.118747 24610 126494 -1 2654 20 1517 2894 220462 48588 3.8687 3.8687 -131.572 -3.8687 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0281483 0.0245062 156 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.61 vpr 63.12 MiB -1 -1 0.20 18412 1 0.03 -1 -1 30492 -1 -1 38 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.5 MiB 2.75 940 17714 5616 9200 2898 63.1 MiB 0.16 0.00 3.23878 -109.846 -3.23878 3.23878 0.72 0.000756619 0.000703069 0.0588934 0.0544883 30 2389 38 6.87369e+06 531006 556674. 1926.21 0.93 0.166007 0.146221 25186 138497 -1 1913 21 1547 2625 142956 33947 3.01676 3.01676 -118.283 -3.01676 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0296485 0.0257309 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.03 vpr 62.59 MiB -1 -1 0.19 18152 1 0.03 -1 -1 30412 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 24.0 MiB 1.78 810 13206 4271 6460 2475 62.6 MiB 0.12 0.00 3.19663 -96.9818 -3.19663 3.19663 0.72 0.000590333 0.00054897 0.0464189 0.0432137 34 2132 23 6.87369e+06 251529 618332. 2139.56 1.37 0.161899 0.141381 25762 151098 -1 1763 23 1364 2089 166599 39337 3.16261 3.16261 -113.075 -3.16261 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0254054 0.0219762 109 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 7.30 vpr 63.01 MiB -1 -1 0.20 18312 1 0.03 -1 -1 30596 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.5 MiB 2.19 936 14939 5428 6883 2628 63.0 MiB 0.14 0.00 2.9989 -97.2544 -2.9989 2.9989 0.74 0.000729854 0.000678491 0.0567142 0.0527099 36 2302 20 6.87369e+06 363320 648988. 2245.63 2.13 0.196241 0.171666 26050 158493 -1 1870 20 1415 2462 146616 36799 2.90256 2.90256 -110.86 -2.90256 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0274423 0.0238668 136 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.29 vpr 62.96 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30488 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.6 MiB 3.44 1289 8863 2179 6088 596 63.0 MiB 0.10 0.00 4.27988 -132.997 -4.27988 4.27988 0.72 0.000729809 0.000678661 0.035464 0.0329729 34 3473 31 6.87369e+06 349346 618332. 2139.56 1.88 0.186793 0.161958 25762 151098 -1 2757 22 2178 3165 236598 56035 5.0337 5.0337 -171.16 -5.0337 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.030367 0.0264245 159 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 7.56 vpr 62.91 MiB -1 -1 0.16 18540 1 0.03 -1 -1 30672 -1 -1 27 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.3 MiB 3.00 1042 16773 5823 7847 3103 62.9 MiB 0.17 0.00 4.46114 -135.657 -4.46114 4.46114 0.72 0.000738355 0.00068606 0.0642789 0.0597357 34 2929 43 6.87369e+06 377294 618332. 2139.56 1.64 0.229922 0.200813 25762 151098 -1 2184 21 1727 2765 201262 46464 4.79045 4.79045 -157.869 -4.79045 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0295039 0.0256679 152 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.39 vpr 62.90 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30660 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 2.47 1050 11203 3066 7252 885 62.9 MiB 0.12 0.00 3.22963 -108.037 -3.22963 3.22963 0.72 0.000694969 0.000646301 0.0422894 0.0392983 32 3042 36 6.87369e+06 349346 586450. 2029.24 0.99 0.139083 0.122159 25474 144626 -1 2428 21 1644 2693 221872 51883 3.47821 3.47821 -131.713 -3.47821 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0279422 0.0242961 131 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.59 vpr 62.76 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30644 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.0 MiB 2.24 966 14724 5049 7601 2074 62.8 MiB 0.13 0.00 3.40015 -96.0689 -3.40015 3.40015 0.73 0.00061556 0.000572834 0.0516111 0.0480468 34 2448 33 6.87369e+06 279477 618332. 2139.56 1.45 0.182524 0.159357 25762 151098 -1 1996 17 1245 1807 125104 29755 3.84676 3.84676 -119.621 -3.84676 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0210714 0.0183869 119 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.83 vpr 63.43 MiB -1 -1 0.21 18620 1 0.03 -1 -1 30600 -1 -1 38 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.8 MiB 2.91 1258 20094 5516 12437 2141 63.4 MiB 0.20 0.00 3.82038 -129.116 -3.82038 3.82038 0.72 0.00086136 0.000801326 0.0754702 0.070187 30 2983 21 6.87369e+06 531006 556674. 1926.21 0.90 0.17529 0.155598 25186 138497 -1 2417 21 1435 2404 143015 32491 3.78616 3.78616 -145.162 -3.78616 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0339858 0.0294803 173 84 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.16 vpr 62.37 MiB -1 -1 0.14 18064 1 0.03 -1 -1 30364 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 23.9 MiB 1.47 856 12733 3747 7816 1170 62.4 MiB 0.10 0.00 2.78925 -88.0035 -2.78925 2.78925 0.73 0.000565901 0.000526508 0.0404125 0.0376087 32 2008 33 6.87369e+06 307425 586450. 2029.24 0.87 0.116182 0.101951 25474 144626 -1 1686 18 1004 1727 126067 29185 2.83131 2.83131 -103.977 -2.83131 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0201888 0.0174916 96 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.27 vpr 62.89 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30412 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.4 MiB 2.01 1182 10670 2923 6871 876 62.9 MiB 0.11 0.00 3.78918 -119.277 -3.78918 3.78918 0.72 0.000683934 0.000636766 0.0407454 0.037934 28 2979 32 6.87369e+06 321398 531479. 1839.03 1.39 0.132943 0.116887 24610 126494 -1 2619 21 1862 2740 244588 56108 4.48596 4.48596 -151.855 -4.48596 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0272435 0.0236744 140 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.09 vpr 62.99 MiB -1 -1 0.19 18332 1 0.03 -1 -1 30548 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.4 MiB 1.67 1105 14988 3782 9101 2105 63.0 MiB 0.14 0.00 2.9146 -97.0245 -2.9146 2.9146 0.71 0.000693338 0.000644487 0.0497019 0.0461994 26 3076 33 6.87369e+06 447163 503264. 1741.40 1.53 0.144575 0.127349 24322 120374 -1 2624 27 1830 3092 315215 68063 3.60981 3.60981 -128.662 -3.60981 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0335926 0.0289909 132 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 4.90 vpr 62.68 MiB -1 -1 0.18 18064 1 0.03 -1 -1 30408 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.2 MiB 0.60 1053 12954 3412 7612 1930 62.7 MiB 0.12 0.00 3.37079 -108.14 -3.37079 3.37079 0.72 0.000624643 0.000580843 0.0421755 0.0392016 34 2459 20 6.87369e+06 363320 618332. 2139.56 1.43 0.162562 0.141911 25762 151098 -1 2119 21 1363 2538 175278 40186 3.6931 3.6931 -126.597 -3.6931 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.025279 0.0219876 123 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 6.59 vpr 62.86 MiB -1 -1 0.20 18508 1 0.03 -1 -1 30612 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.3 MiB 2.61 1001 10670 2489 7335 846 62.9 MiB 0.11 0.00 3.93315 -118.621 -3.93315 3.93315 0.72 0.000706814 0.000656306 0.0421998 0.0391946 30 2885 44 6.87369e+06 307425 556674. 1926.21 1.09 0.148102 0.129569 25186 138497 -1 2025 18 1169 1613 101360 24333 3.3472 3.3472 -126.208 -3.3472 0 0 706193. 2443.58 0.22 0.07 0.12 -1 -1 0.22 0.0265728 0.0233668 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.26 vpr 62.93 MiB -1 -1 0.19 18416 1 0.03 -1 -1 30544 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.66 1088 15426 3940 9450 2036 62.9 MiB 0.14 0.00 2.9366 -100.974 -2.9366 2.9366 0.72 0.000713008 0.000663044 0.0525854 0.0488823 26 2931 30 6.87369e+06 447163 503264. 1741.40 1.71 0.147083 0.129752 24322 120374 -1 2584 19 1463 2480 236942 51657 3.52851 3.52851 -136.814 -3.52851 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0263822 0.0229645 136 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 8.38 vpr 63.02 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30520 -1 -1 35 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.4 MiB 2.63 1013 17883 5563 9623 2697 63.0 MiB 0.17 0.00 3.24063 -107.437 -3.24063 3.24063 0.72 0.00074124 0.000688799 0.0606067 0.0563033 34 2632 22 6.87369e+06 489084 618332. 2139.56 2.77 0.271928 0.236323 25762 151098 -1 2202 21 1627 2726 196513 45959 3.14961 3.14961 -120.64 -3.14961 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0292318 0.0254082 144 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.68 vpr 62.66 MiB -1 -1 0.17 18268 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.2 MiB 0.76 757 10087 2459 6728 900 62.7 MiB 0.10 0.00 3.39279 -97.1142 -3.39279 3.39279 0.72 0.000541178 0.000495196 0.0309423 0.0287535 28 2338 24 6.87369e+06 461137 531479. 1839.03 1.09 0.105665 0.0926521 24610 126494 -1 1994 25 1500 2556 193346 46668 3.9847 3.9847 -129.78 -3.9847 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.029251 0.0252811 124 21 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.20 vpr 62.71 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30612 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.2 MiB 1.87 1007 11237 3132 6686 1419 62.7 MiB 0.11 0.00 3.84368 -111.209 -3.84368 3.84368 0.72 0.000660536 0.000614723 0.0411309 0.0382721 34 2649 30 6.87369e+06 307425 618332. 2139.56 1.43 0.175759 0.152946 25762 151098 -1 2320 21 1658 2398 177291 40708 3.88976 3.88976 -130.334 -3.88976 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.026322 0.0228957 135 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 6.38 vpr 62.93 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30540 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.4 MiB 1.84 1151 11989 3426 7634 929 62.9 MiB 0.13 0.00 3.72318 -120.154 -3.72318 3.72318 0.72 0.000723162 0.000672412 0.048673 0.045259 34 3113 22 6.87369e+06 307425 618332. 2139.56 1.59 0.188067 0.164005 25762 151098 -1 2505 22 1926 3128 250894 57245 4.04495 4.04495 -142.073 -4.04495 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0297963 0.0258783 141 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 6.86 vpr 63.08 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30528 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1074 11989 3630 7470 889 63.1 MiB 0.13 0.00 3.65075 -114.941 -3.65075 3.65075 0.74 0.000740554 0.000688646 0.050183 0.0466818 36 2741 22 6.87369e+06 293451 648988. 2245.63 1.53 0.192419 0.168022 26050 158493 -1 2410 20 1430 2585 182613 42805 3.84276 3.84276 -135.768 -3.84276 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0283585 0.0246576 135 74 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.33 vpr 62.67 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30328 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 24.2 MiB 0.63 717 9914 2744 6845 325 62.7 MiB 0.09 0.00 2.7886 -85.2361 -2.7886 2.7886 0.72 0.000560493 0.000522459 0.0309164 0.0287546 26 2065 26 6.87369e+06 307425 503264. 1741.40 0.95 0.100086 0.0876916 24322 120374 -1 1697 19 1005 1595 121348 28760 3.27516 3.27516 -110.461 -3.27516 0 0 618332. 2139.56 0.17 0.06 0.11 -1 -1 0.17 0.0204825 0.017767 93 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.07 vpr 62.80 MiB -1 -1 0.19 18168 1 0.03 -1 -1 30564 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.4 MiB 1.52 938 15746 5585 7504 2657 62.8 MiB 0.15 0.00 3.03076 -108.923 -3.03076 3.03076 0.72 0.000675549 0.000628246 0.0614955 0.0571811 34 2705 23 6.87369e+06 251529 618332. 2139.56 1.59 0.193526 0.169594 25762 151098 -1 2220 20 1685 2386 209367 47064 3.4791 3.4791 -132.243 -3.4791 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0259436 0.0225494 124 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 6.71 vpr 63.10 MiB -1 -1 0.20 18436 1 0.03 -1 -1 30512 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.6 MiB 2.57 1393 14908 4083 9263 1562 63.1 MiB 0.16 0.00 4.25892 -132.142 -4.25892 4.25892 0.72 0.000764333 0.000710155 0.0607736 0.0564766 30 3393 36 6.87369e+06 335372 556674. 1926.21 1.21 0.167259 0.147662 25186 138497 -1 2626 23 1845 2920 173337 39801 4.5848 4.5848 -157.373 -4.5848 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0328246 0.0285625 166 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.27 vpr 62.91 MiB -1 -1 0.19 18296 1 0.03 -1 -1 30564 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 2.57 927 12698 3514 7971 1213 62.9 MiB 0.12 0.00 3.22801 -103.996 -3.22801 3.22801 0.71 0.000692657 0.000644603 0.0411795 0.0382546 28 2164 31 6.87369e+06 475111 531479. 1839.03 0.86 0.131623 0.115667 24610 126494 -1 1881 21 1273 2127 123850 31619 2.89296 2.89296 -118.381 -2.89296 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0274772 0.0238339 137 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 5.90 vpr 62.42 MiB -1 -1 0.18 18196 1 0.03 -1 -1 30680 -1 -1 25 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 23.9 MiB 0.66 784 13143 3024 9531 588 62.4 MiB 0.11 0.00 2.9769 -91.7545 -2.9769 2.9769 0.72 0.000586715 0.00054653 0.0421246 0.0392371 26 2158 27 6.87369e+06 349346 503264. 1741.40 2.46 0.177984 0.154266 24322 120374 -1 1852 21 1286 2066 171153 40521 3.06361 3.06361 -112.97 -3.06361 0 0 618332. 2139.56 0.19 0.04 0.11 -1 -1 0.19 0.0142018 0.0123954 104 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.26 vpr 63.33 MiB -1 -1 0.20 18748 1 0.03 -1 -1 30508 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.9 MiB 4.39 1310 8603 2176 5830 597 63.3 MiB 0.11 0.00 4.70105 -142.304 -4.70105 4.70105 0.72 0.00082824 0.000770673 0.0389049 0.0362215 34 3409 23 6.87369e+06 349346 618332. 2139.56 1.87 0.209048 0.181484 25762 151098 -1 2865 22 2251 3354 274898 63208 5.3081 5.3081 -173.611 -5.3081 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0342667 0.0297681 171 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.89 vpr 63.13 MiB -1 -1 0.20 18588 1 0.03 -1 -1 30608 -1 -1 35 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.6 MiB 2.80 1041 13323 3588 8422 1313 63.1 MiB 0.12 0.00 3.77632 -116.628 -3.77632 3.77632 0.74 0.000681419 0.000645338 0.042445 0.0394498 32 2591 27 6.87369e+06 489084 586450. 2029.24 0.94 0.12819 0.112684 25474 144626 -1 2167 22 1562 2508 205225 46521 3.7091 3.7091 -131.268 -3.7091 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0303811 0.0264672 135 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.72 vpr 62.40 MiB -1 -1 0.18 17748 1 0.02 -1 -1 30708 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.9 MiB 0.60 843 11008 2960 7021 1027 62.4 MiB 0.10 0.00 2.8436 -88.6655 -2.8436 2.8436 0.72 0.000534512 0.00049818 0.0321593 0.0299745 34 1850 23 6.87369e+06 335372 618332. 2139.56 1.30 0.136309 0.118391 25762 151098 -1 1581 24 1001 1724 126213 29359 2.80501 2.80501 -99.8548 -2.80501 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236631 0.0204311 94 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.46 vpr 62.93 MiB -1 -1 0.19 18292 1 0.03 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.3 MiB 1.84 1133 16081 4558 9456 2067 62.9 MiB 0.14 0.00 4.20067 -115.124 -4.20067 4.20067 0.72 0.000714613 0.000663782 0.0507102 0.0471243 28 2739 25 6.87369e+06 517032 531479. 1839.03 2.82 0.233531 0.20322 24610 126494 -1 2450 21 1618 2952 223718 50009 4.69315 4.69315 -141.351 -4.69315 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0280223 0.0243556 145 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.69 vpr 62.48 MiB -1 -1 0.16 17732 1 0.03 -1 -1 30388 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 24.0 MiB 0.67 837 11423 2732 7756 935 62.5 MiB 0.10 0.00 2.9879 -96.4611 -2.9879 2.9879 0.72 0.000554966 0.000517117 0.0369299 0.0343814 34 2043 21 6.87369e+06 265503 618332. 2139.56 1.29 0.144426 0.125921 25762 151098 -1 1827 21 1294 2185 159643 36795 2.87696 2.87696 -111.799 -2.87696 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0223314 0.0193176 98 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.87 vpr 62.86 MiB -1 -1 0.19 18020 1 0.03 -1 -1 30536 -1 -1 34 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 24.2 MiB 2.19 873 13455 3329 8557 1569 62.9 MiB 0.11 0.00 3.10428 -96.9072 -3.10428 3.10428 0.74 0.000590438 0.000550338 0.0380433 0.0354023 32 2045 23 6.87369e+06 475111 586450. 2029.24 0.84 0.108491 0.0954975 25474 144626 -1 1707 19 1066 1813 132059 30568 3.12126 3.12126 -114.171 -3.12126 0 0 744469. 2576.02 0.21 0.06 0.13 -1 -1 0.21 0.021611 0.0187352 109 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.09 vpr 63.00 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30480 -1 -1 24 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64512 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 3.31 1111 11803 3377 7224 1202 63.0 MiB 0.12 0.00 3.21063 -102.762 -3.21063 3.21063 0.72 0.000692064 0.000643341 0.0461384 0.0429174 30 2770 21 6.87369e+06 335372 556674. 1926.21 0.92 0.127451 0.112413 25186 138497 -1 2314 20 1539 2420 156669 35999 3.35291 3.35291 -122.376 -3.35291 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0265498 0.0230479 138 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.20 vpr 63.01 MiB -1 -1 0.18 18564 1 0.03 -1 -1 30596 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.5 MiB 1.92 960 8934 2030 6386 518 63.0 MiB 0.09 0.00 3.61045 -115.819 -3.61045 3.61045 0.73 0.000703 0.000653836 0.0335795 0.0312272 34 2341 28 6.87369e+06 363320 618332. 2139.56 1.39 0.175675 0.15235 25762 151098 -1 1975 21 1623 2519 169338 39478 3.81446 3.81446 -135.374 -3.81446 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0282539 0.0245698 132 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 5.84 vpr 62.84 MiB -1 -1 0.19 18188 1 0.03 -1 -1 30616 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.3 MiB 1.93 1046 10699 2953 7193 553 62.8 MiB 0.11 0.00 3.81848 -115.7 -3.81848 3.81848 0.72 0.000709125 0.000659593 0.0393835 0.0366219 32 3092 31 6.87369e+06 377294 586450. 2029.24 1.02 0.131428 0.115363 25474 144626 -1 2324 23 1662 2896 252187 58974 4.44296 4.44296 -143.14 -4.44296 0 0 744469. 2576.02 0.20 0.10 0.13 -1 -1 0.20 0.0303015 0.0263162 133 48 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.79 vpr 62.56 MiB -1 -1 0.18 18156 1 0.03 -1 -1 30524 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 24.0 MiB 2.90 855 12585 3056 8946 583 62.6 MiB 0.11 0.00 3.86982 -111.321 -3.86982 3.86982 0.72 0.000596937 0.000556439 0.0460402 0.0428981 32 2454 42 6.87369e+06 209608 586450. 2029.24 0.99 0.133865 0.117764 25474 144626 -1 1954 21 1151 1566 137559 32114 3.36391 3.36391 -124.085 -3.36391 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0237523 0.0205748 103 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 6.66 vpr 62.83 MiB -1 -1 0.19 18336 1 0.03 -1 -1 30732 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 24.4 MiB 2.28 956 13152 3679 7997 1476 62.8 MiB 0.12 0.00 2.99776 -102.176 -2.99776 2.99776 0.75 0.000648659 0.000603273 0.0518916 0.0483019 34 2323 22 6.87369e+06 237555 618332. 2139.56 1.41 0.175793 0.153623 25762 151098 -1 1954 20 1368 2024 151439 35180 3.12491 3.12491 -119.233 -3.12491 0 0 787024. 2723.27 0.23 0.07 0.13 -1 -1 0.23 0.0245611 0.0213098 114 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 5.68 vpr 62.80 MiB -1 -1 0.20 18348 1 0.03 -1 -1 30720 -1 -1 34 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.3 MiB 2.19 964 18492 5749 10217 2526 62.8 MiB 0.15 0.00 2.73725 -85.4924 -2.73725 2.73725 0.72 0.000657965 0.000611758 0.0578534 0.053727 28 2199 20 6.87369e+06 475111 531479. 1839.03 0.66 0.0955413 0.0860166 24610 126494 -1 1904 19 1025 1970 126735 29748 2.69866 2.69866 -100.014 -2.69866 0 0 648988. 2245.63 0.18 0.06 0.11 -1 -1 0.18 0.0240497 0.0208762 124 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.29 vpr 62.61 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30656 -1 -1 35 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 23.9 MiB 1.61 886 11975 3085 7922 968 62.6 MiB 0.10 0.00 3.27479 -88.43 -3.27479 3.27479 0.72 0.00058513 0.0005447 0.0343241 0.0319163 26 2216 21 6.87369e+06 489084 503264. 1741.40 0.90 0.102743 0.0902878 24322 120374 -1 1982 19 1216 2292 185690 41463 3.5961 3.5961 -109.364 -3.5961 0 0 618332. 2139.56 0.17 0.07 0.11 -1 -1 0.17 0.0215151 0.0186361 117 20 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.61 vpr 62.50 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30640 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64004 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 2.40 960 10895 3313 6159 1423 62.5 MiB 0.10 0.00 3.16363 -101.296 -3.16363 3.16363 0.72 0.000633538 0.000588156 0.0429274 0.0398898 34 2099 20 6.87369e+06 237555 618332. 2139.56 1.33 0.163635 0.142584 25762 151098 -1 1865 21 1264 2224 167685 38027 2.97396 2.97396 -117.733 -2.97396 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.025359 0.0219566 105 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 6.80 vpr 62.77 MiB -1 -1 0.19 18516 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.3 MiB 2.45 987 10581 2919 7096 566 62.8 MiB 0.11 0.00 2.9238 -103 -2.9238 2.9238 0.72 0.00066159 0.000615109 0.0421174 0.0391513 34 2474 22 6.87369e+06 237555 618332. 2139.56 1.46 0.169835 0.147729 25762 151098 -1 2187 21 1409 2099 181195 40114 3.09061 3.09061 -123.781 -3.09061 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0263745 0.0228838 122 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.54 vpr 62.71 MiB -1 -1 0.18 17780 1 0.03 -1 -1 30632 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.2 MiB 0.70 957 11596 2935 7302 1359 62.7 MiB 0.11 0.00 3.60082 -105.594 -3.60082 3.60082 0.73 0.000628741 0.000585532 0.0362961 0.0337065 32 2632 33 6.87369e+06 433189 586450. 2029.24 1.00 0.121039 0.106099 25474 144626 -1 2218 21 1379 2384 195165 44210 3.7231 3.7231 -125.998 -3.7231 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0251024 0.0218027 129 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 7.53 vpr 63.16 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30592 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.6 MiB 2.86 1122 16407 5547 8280 2580 63.2 MiB 0.17 0.00 3.78918 -125.016 -3.78918 3.78918 0.72 0.000704729 0.000653834 0.0625314 0.0581864 34 3110 27 6.87369e+06 321398 618332. 2139.56 1.68 0.204618 0.179535 25762 151098 -1 2637 21 1818 2722 242998 54207 4.26936 4.26936 -155.095 -4.26936 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0282456 0.024596 147 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.53 vpr 62.98 MiB -1 -1 0.20 18440 1 0.03 -1 -1 30568 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 3.32 986 13324 3459 8273 1592 63.0 MiB 0.12 0.00 4.24987 -125.238 -4.24987 4.24987 0.72 0.00074637 0.000692911 0.0453657 0.0420629 30 3101 29 6.87369e+06 503058 556674. 1926.21 1.30 0.140235 0.123232 25186 138497 -1 2162 21 1347 2376 143471 35818 4.04135 4.04135 -143.219 -4.04135 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0294302 0.0255902 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.46 vpr 63.05 MiB -1 -1 0.19 18292 1 0.03 -1 -1 30516 -1 -1 41 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.4 MiB 2.70 1125 15172 4039 10091 1042 63.1 MiB 0.14 0.00 3.57582 -118.165 -3.57582 3.57582 0.72 0.000756738 0.000703427 0.0487574 0.0451758 28 3038 23 6.87369e+06 572927 531479. 1839.03 2.81 0.241777 0.209796 24610 126494 -1 2498 23 1753 3325 265804 59653 3.7707 3.7707 -142.916 -3.7707 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0316763 0.0274761 148 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.34 vpr 62.35 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30496 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 2.12 859 12247 3852 6988 1407 62.3 MiB 0.11 0.00 3.16363 -98.3665 -3.16363 3.16363 0.75 0.000585003 0.000544406 0.0440346 0.040968 34 2030 21 6.87369e+06 237555 618332. 2139.56 1.33 0.156522 0.1364 25762 151098 -1 1762 21 1073 1851 129569 30888 2.96596 2.96596 -109.861 -2.96596 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0232757 0.0201849 99 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.70 vpr 62.98 MiB -1 -1 0.20 18472 1 0.03 -1 -1 30692 -1 -1 22 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.5 MiB 2.99 900 8319 2009 5604 706 63.0 MiB 0.10 0.00 3.55872 -111.72 -3.55872 3.55872 0.72 0.000730393 0.000680132 0.0354776 0.0330418 30 2262 20 6.87369e+06 307425 556674. 1926.21 0.88 0.119133 0.104742 25186 138497 -1 1838 20 1385 2277 131276 30483 3.64 3.64 -132.034 -3.64 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0279666 0.0243556 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 6.94 vpr 62.84 MiB -1 -1 0.20 18540 1 0.03 -1 -1 30512 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.3 MiB 2.22 1105 11991 3322 7906 763 62.8 MiB 0.12 0.00 4.00821 -122.526 -4.00821 4.00821 0.72 0.000691062 0.000643197 0.0454151 0.0422504 34 2703 24 6.87369e+06 321398 618332. 2139.56 1.79 0.180638 0.157478 25762 151098 -1 2133 23 1712 2748 193880 46425 3.97266 3.97266 -135.375 -3.97266 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0295606 0.025694 140 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 6.84 vpr 63.10 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30464 -1 -1 28 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.5 MiB 2.06 1096 17431 4997 10162 2272 63.1 MiB 0.16 0.00 4.30764 -123.969 -4.30764 4.30764 0.72 0.00068566 0.000638301 0.0603554 0.0561287 34 2797 23 6.87369e+06 391268 618332. 2139.56 1.78 0.198766 0.174217 25762 151098 -1 2409 20 1644 2615 203619 47194 4.6569 4.6569 -148.656 -4.6569 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0265124 0.0230903 141 43 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.11 vpr 62.91 MiB -1 -1 0.21 18464 1 0.03 -1 -1 30580 -1 -1 32 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 30 32 377 310 1 183 94 17 17 289 -1 unnamed_device 24.3 MiB 2.28 1024 10105 2227 7187 691 62.9 MiB 0.11 0.00 3.82048 -117.366 -3.82048 3.82048 0.72 0.000734309 0.000683942 0.0369339 0.0343908 32 2536 21 6.87369e+06 447163 586450. 2029.24 0.87 0.120638 0.106093 25474 144626 -1 2107 21 1302 2069 152365 36629 3.46156 3.46156 -125.934 -3.46156 0 0 744469. 2576.02 0.20 0.08 0.17 -1 -1 0.20 0.0276316 0.0240023 135 78 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 6.56 vpr 62.75 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.2 MiB 2.01 1096 15895 4990 8981 1924 62.8 MiB 0.16 0.00 3.73418 -119.337 -3.73418 3.73418 0.76 0.000714048 0.000663539 0.0632153 0.0587656 34 2789 23 6.87369e+06 293451 618332. 2139.56 1.54 0.202006 0.176955 25762 151098 -1 2405 21 1669 2933 217069 50225 3.93276 3.93276 -140.697 -3.93276 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0283591 0.0246495 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.59 vpr 63.12 MiB -1 -1 0.20 18488 1 0.03 -1 -1 30504 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.4 MiB 2.30 875 9336 2208 5958 1170 63.1 MiB 0.10 0.00 3.31093 -98.9141 -3.31093 3.31093 0.72 0.000713009 0.000663012 0.0356042 0.0331399 34 2325 21 6.87369e+06 405241 618332. 2139.56 1.41 0.17167 0.148902 25762 151098 -1 1998 22 1659 2755 196794 46277 3.38116 3.38116 -116.308 -3.38116 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0295951 0.0256877 132 79 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.60 vpr 62.34 MiB -1 -1 0.17 17956 1 0.03 -1 -1 30620 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.9 MiB 0.58 680 6206 1366 4606 234 62.3 MiB 0.07 0.00 3.18563 -97.0202 -3.18563 3.18563 0.72 0.000550803 0.00051355 0.021307 0.0198639 34 1816 17 6.87369e+06 237555 618332. 2139.56 1.23 0.125278 0.108364 25762 151098 -1 1430 19 852 1269 83174 20183 2.82671 2.82671 -104.501 -2.82671 0 0 787024. 2723.27 0.22 0.05 0.13 -1 -1 0.22 0.0205452 0.0178552 96 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 7.84 vpr 62.99 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30640 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.4 MiB 3.89 1063 13823 3432 9345 1046 63.0 MiB 0.13 0.00 3.63082 -117.153 -3.63082 3.63082 0.71 0.00073544 0.000675209 0.0469666 0.0435372 28 2540 21 6.87369e+06 475111 531479. 1839.03 1.01 0.131396 0.115876 24610 126494 -1 2230 22 1690 2952 229323 52413 3.8604 3.8604 -139.193 -3.8604 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0298393 0.0258972 137 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 7.90 vpr 62.89 MiB -1 -1 0.18 18520 1 0.03 -1 -1 30596 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.3 MiB 3.40 1064 15151 4363 8958 1830 62.9 MiB 0.16 0.00 3.54952 -124.108 -3.54952 3.54952 0.72 0.000764258 0.000709818 0.0649383 0.0602414 34 2761 21 6.87369e+06 293451 618332. 2139.56 1.59 0.210898 0.184724 25762 151098 -1 2176 23 1955 3292 237984 53517 3.8264 3.8264 -147.815 -3.8264 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0326183 0.0283465 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.87 vpr 62.44 MiB -1 -1 0.18 18196 1 0.03 -1 -1 30344 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 23.9 MiB 2.73 977 10228 3025 6510 693 62.4 MiB 0.10 0.00 3.47382 -102.761 -3.47382 3.47382 0.71 0.000584506 0.000544004 0.0363489 0.0338535 34 2311 22 6.87369e+06 223581 618332. 2139.56 1.30 0.149851 0.129893 25762 151098 -1 1913 20 1054 1388 100603 24226 3.3655 3.3655 -119.286 -3.3655 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0224998 0.0195412 106 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.20 vpr 62.36 MiB -1 -1 0.19 17968 1 0.03 -1 -1 30620 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63852 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.9 MiB 0.63 711 9443 2322 6140 981 62.4 MiB 0.09 0.00 3.29993 -97.497 -3.29993 3.29993 0.73 0.000552264 0.000514832 0.030574 0.0284973 30 1838 20 6.87369e+06 279477 556674. 1926.21 0.81 0.0949587 0.0835227 25186 138497 -1 1561 19 921 1550 101453 22571 2.85496 2.85496 -107.149 -2.85496 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0204786 0.0177685 99 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.16 vpr 62.87 MiB -1 -1 0.20 18472 1 0.03 -1 -1 30652 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.3 MiB 2.60 1233 13335 4039 7970 1326 62.9 MiB 0.13 0.00 3.74338 -123.587 -3.74338 3.74338 0.72 0.000703526 0.000654677 0.0511569 0.0475937 34 2865 21 6.87369e+06 321398 618332. 2139.56 1.59 0.185678 0.162308 25762 151098 -1 2320 23 1988 2680 196092 45109 4.21336 4.21336 -154.145 -4.21336 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0305251 0.0264833 145 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 6.83 vpr 62.86 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30536 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.2 MiB 2.27 1147 14779 3833 9717 1229 62.9 MiB 0.15 0.00 4.30764 -131.579 -4.30764 4.30764 0.73 0.00070786 0.000658378 0.0537396 0.050028 34 3136 28 6.87369e+06 377294 618332. 2139.56 1.56 0.195804 0.171041 25762 151098 -1 2420 23 1775 2656 207147 47897 4.73225 4.73225 -154.308 -4.73225 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.030143 0.0261739 142 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 4.53 vpr 63.23 MiB -1 -1 0.19 18028 1 0.03 -1 -1 30352 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.6 MiB 0.70 1216 19820 6259 10393 3168 63.2 MiB 0.19 0.00 4.13357 -122.153 -4.13357 4.13357 0.72 0.000716465 0.000665669 0.0635477 0.0590463 30 2557 20 6.87369e+06 503058 556674. 1926.21 0.90 0.145938 0.129744 25186 138497 -1 2097 20 1173 2148 108567 26517 4.18865 4.18865 -141.74 -4.18865 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0276492 0.0240892 157 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 5.72 vpr 62.71 MiB -1 -1 0.19 18532 1 0.03 -1 -1 30512 -1 -1 34 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.3 MiB 2.05 854 10827 2658 6758 1411 62.7 MiB 0.10 0.00 2.83325 -87.5435 -2.83325 2.83325 0.72 0.000643174 0.0005986 0.0334764 0.0311207 30 1858 23 6.87369e+06 475111 556674. 1926.21 0.83 0.112197 0.0984028 25186 138497 -1 1566 22 1235 2288 120782 28916 2.67036 2.67036 -97.8092 -2.67036 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0262092 0.0227028 119 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 5.35 vpr 62.65 MiB -1 -1 0.18 18092 1 0.03 -1 -1 30776 -1 -1 21 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 24.2 MiB 0.83 676 11432 3253 7293 886 62.6 MiB 0.09 0.00 2.8908 -83.2138 -2.8908 2.8908 0.72 0.000545285 0.000507855 0.0380083 0.0354051 30 1535 23 6.87369e+06 293451 556674. 1926.21 1.76 0.162039 0.140487 25186 138497 -1 1301 23 883 1383 78841 18613 2.85796 2.85796 -96.4129 -2.85796 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0234596 0.0202076 96 26 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 8.74 vpr 63.42 MiB -1 -1 0.21 18360 1 0.03 -1 -1 30504 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.7 MiB 3.18 1387 16468 5744 8350 2374 63.4 MiB 0.18 0.00 3.46315 -115.657 -3.46315 3.46315 0.75 0.000804859 0.000747635 0.070895 0.0658649 34 3805 37 6.87369e+06 335372 618332. 2139.56 2.41 0.248152 0.216877 25762 151098 -1 3013 22 2160 3632 310893 68626 4.10736 4.10736 -146.09 -4.10736 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0360524 0.0313521 165 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.44 vpr 63.06 MiB -1 -1 0.20 18500 1 0.03 -1 -1 30500 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 365 296 1 203 85 17 17 289 -1 unnamed_device 24.4 MiB 3.62 1232 14407 3986 8615 1806 63.1 MiB 0.14 0.00 4.58967 -140.335 -4.58967 4.58967 0.72 0.000708965 0.00065915 0.0572443 0.0532381 36 2681 22 6.87369e+06 307425 648988. 2245.63 1.87 0.195125 0.170821 26050 158493 -1 2288 23 1668 2637 193893 43312 4.70395 4.70395 -163.552 -4.70395 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0305707 0.0266492 139 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.05 vpr 62.90 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30580 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 24.5 MiB 3.80 1002 9160 2342 6168 650 62.9 MiB 0.09 0.00 3.45235 -120.781 -3.45235 3.45235 0.72 0.000662112 0.000615758 0.0360202 0.033483 34 2490 22 6.87369e+06 251529 618332. 2139.56 1.36 0.164001 0.142115 25762 151098 -1 2103 19 1299 1949 140631 32977 3.48086 3.48086 -138.58 -3.48086 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.018636 0.0162969 118 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.78 vpr 62.94 MiB -1 -1 0.18 18180 1 0.03 -1 -1 30616 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.5 MiB 0.99 917 17635 5196 9844 2595 62.9 MiB 0.16 0.00 3.85785 -108.09 -3.85785 3.85785 0.72 0.000671952 0.000625172 0.0556039 0.0516542 30 2311 25 6.87369e+06 461137 556674. 1926.21 0.88 0.137949 0.121878 25186 138497 -1 1779 21 960 1597 93352 22881 3.3692 3.3692 -117.252 -3.3692 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0264443 0.0230105 129 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.95 vpr 63.13 MiB -1 -1 0.20 18568 1 0.03 -1 -1 30420 -1 -1 34 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.5 MiB 1.74 940 11419 3124 7358 937 63.1 MiB 0.12 0.00 3.46135 -102.065 -3.46135 3.46135 0.76 0.000743563 0.000691144 0.0404653 0.037581 26 2802 38 6.87369e+06 475111 503264. 1741.40 1.25 0.145621 0.12737 24322 120374 -1 2514 20 1607 2557 192246 46797 4.32596 4.32596 -141.836 -4.32596 0 0 618332. 2139.56 0.17 0.08 0.11 -1 -1 0.17 0.0282154 0.0245541 149 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.46 vpr 62.64 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30492 -1 -1 31 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.2 MiB 1.87 964 17523 5920 8995 2608 62.6 MiB 0.16 0.00 2.8846 -85.9929 -2.8846 2.8846 0.76 0.000656347 0.000609607 0.0566378 0.0525826 34 2508 22 6.87369e+06 433189 618332. 2139.56 1.58 0.183645 0.160291 25762 151098 -1 2010 22 1297 2306 166398 38884 3.32521 3.32521 -107.483 -3.32521 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0271439 0.0235424 124 46 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 9.67 vpr 62.99 MiB -1 -1 0.19 18356 1 0.05 -1 -1 30588 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 24.4 MiB 2.86 1189 16907 6706 8302 1899 63.0 MiB 0.17 0.00 3.82834 -123.217 -3.82834 3.82834 0.72 0.000702344 0.000653146 0.0653456 0.0607734 34 3797 41 6.87369e+06 307425 618332. 2139.56 3.75 0.227171 0.199016 25762 151098 -1 2800 24 2282 3458 366584 79331 4.40825 4.40825 -154.118 -4.40825 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0313923 0.0272089 148 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.13 vpr 63.07 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30436 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 2.80 1085 18660 5981 10128 2551 63.1 MiB 0.17 0.00 3.24063 -111.672 -3.24063 3.24063 0.72 0.000745095 0.000692597 0.0622675 0.0578312 34 2515 23 6.87369e+06 503058 618332. 2139.56 1.37 0.207553 0.181902 25762 151098 -1 2038 22 1565 2561 186051 41862 2.90401 2.90401 -118.158 -2.90401 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0305378 0.0265368 147 59 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.30 vpr 62.38 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30608 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63876 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.9 MiB 1.61 727 10400 2733 6686 981 62.4 MiB 0.09 0.00 3.00718 -93.0274 -3.00718 3.00718 0.72 0.000575004 0.000535485 0.036416 0.0339169 32 1733 45 6.87369e+06 265503 586450. 2029.24 0.88 0.123993 0.108545 25474 144626 -1 1461 19 1099 1581 106947 24689 2.84686 2.84686 -107.362 -2.84686 0 0 744469. 2576.02 0.20 0.06 0.13 -1 -1 0.20 0.021162 0.0183498 101 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 5.70 vpr 62.61 MiB -1 -1 0.18 18028 1 0.03 -1 -1 30612 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 23.9 MiB 1.44 991 14256 4439 8053 1764 62.6 MiB 0.13 0.00 3.4413 -101.958 -3.4413 3.4413 0.72 0.000627118 0.000583196 0.0532224 0.0494926 34 2305 21 6.87369e+06 237555 618332. 2139.56 1.36 0.173446 0.151569 25762 151098 -1 1975 19 1215 1680 148375 32446 3.20325 3.20325 -120.513 -3.20325 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.023202 0.0201432 112 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 5.87 vpr 62.87 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30624 -1 -1 39 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.43 963 17952 5040 10040 2872 62.9 MiB 0.15 0.00 3.57582 -103.412 -3.57582 3.57582 0.72 0.00066616 0.000619827 0.0522988 0.0485588 26 2656 28 6.87369e+06 544980 503264. 1741.40 1.56 0.138891 0.122593 24322 120374 -1 2362 22 1610 2880 254961 58116 4.1633 4.1633 -134.267 -4.1633 0 0 618332. 2139.56 0.17 0.09 0.11 -1 -1 0.17 0.0273724 0.0237328 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.96 vpr 62.45 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30604 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63944 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 2.84 813 13152 4600 6508 2044 62.4 MiB 0.11 0.00 3.82778 -104.205 -3.82778 3.82778 0.72 0.000561003 0.000522354 0.0446331 0.0415859 34 2019 22 6.87369e+06 265503 618332. 2139.56 1.33 0.154084 0.134358 25762 151098 -1 1727 18 1121 1461 102527 25557 3.69946 3.69946 -114.726 -3.69946 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0201078 0.0174896 107 25 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 6.93 vpr 62.48 MiB -1 -1 0.17 18192 1 0.03 -1 -1 30300 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 23.9 MiB 2.76 881 10726 2943 7045 738 62.5 MiB 0.10 0.00 3.31093 -106.227 -3.31093 3.31093 0.72 0.000608674 0.000566503 0.0396615 0.0369734 34 2207 25 6.87369e+06 209608 618332. 2139.56 1.36 0.158168 0.13789 25762 151098 -1 1874 23 1446 2476 194574 43239 3.09026 3.09026 -116.889 -3.09026 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0255356 0.0220799 101 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.00 vpr 62.98 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30384 -1 -1 37 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.4 MiB 2.50 889 19356 5605 10910 2841 63.0 MiB 0.18 0.00 2.98998 -97.1408 -2.98998 2.98998 0.76 0.000731932 0.00068033 0.0632627 0.0586849 34 2182 23 6.87369e+06 517032 618332. 2139.56 1.45 0.204907 0.179225 25762 151098 -1 1786 20 1551 2533 165776 39053 2.92456 2.92456 -110.031 -2.92456 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.027543 0.0239349 141 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.91 vpr 62.53 MiB -1 -1 0.14 18028 1 0.03 -1 -1 30580 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 24.0 MiB 2.61 737 10916 2353 7901 662 62.5 MiB 0.09 0.00 2.9066 -90.8364 -2.9066 2.9066 0.72 0.000591342 0.000551828 0.0393072 0.0367026 36 1997 18 6.87369e+06 237555 648988. 2245.63 1.46 0.148383 0.12954 26050 158493 -1 1727 19 1197 1748 125773 30471 3.23391 3.23391 -112.772 -3.23391 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.021288 0.0184994 105 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.73 vpr 62.85 MiB -1 -1 0.19 18252 1 0.04 -1 -1 30248 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.4 MiB 2.52 970 16511 4188 11219 1104 62.8 MiB 0.15 0.00 2.9036 -95.172 -2.9036 2.9036 0.72 0.000693981 0.000645214 0.0552056 0.0512807 28 2459 22 6.87369e+06 433189 531479. 1839.03 1.31 0.137937 0.122057 24610 126494 -1 2199 23 1311 2146 178252 39142 2.99431 2.99431 -114.985 -2.99431 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0295577 0.0256318 129 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.18 MiB -1 -1 0.20 18500 1 0.03 -1 -1 30472 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.91 1026 15863 4088 9399 2376 63.2 MiB 0.15 0.00 2.9696 -104.532 -2.9696 2.9696 0.72 0.000745201 0.000692073 0.0576023 0.0535754 28 2474 23 6.87369e+06 447163 531479. 1839.03 0.95 0.146588 0.129612 24610 126494 -1 2132 21 1777 2709 196220 44917 3.01826 3.01826 -124.868 -3.01826 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0345503 0.0301353 137 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 7.47 vpr 62.62 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30508 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 24.1 MiB 2.02 761 8336 2081 5922 333 62.6 MiB 0.08 0.00 2.8516 -89.7025 -2.8516 2.8516 0.72 0.000618797 0.000574169 0.0318388 0.0295645 34 2030 23 6.87369e+06 223581 618332. 2139.56 2.63 0.210495 0.180951 25762 151098 -1 1722 17 967 1510 109853 26189 3.05561 3.05561 -111.743 -3.05561 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0209671 0.0182414 99 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 5.73 vpr 62.62 MiB -1 -1 0.19 18308 1 0.03 -1 -1 30516 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 24.0 MiB 1.42 828 9160 2302 6414 444 62.6 MiB 0.09 0.00 3.23579 -99.4646 -3.23579 3.23579 0.72 0.000613797 0.000572096 0.0333913 0.0311091 34 2351 29 6.87369e+06 251529 618332. 2139.56 1.46 0.158049 0.137162 25762 151098 -1 1967 21 1545 2311 171147 44077 3.47821 3.47821 -128.832 -3.47821 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0244821 0.0212432 114 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.63 vpr 62.85 MiB -1 -1 0.19 18168 1 0.03 -1 -1 30568 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.3 MiB 2.32 862 8213 1954 5814 445 62.9 MiB 0.09 0.00 3.86978 -107.982 -3.86978 3.86978 0.73 0.000654255 0.0006087 0.0305468 0.028396 34 2611 27 6.87369e+06 307425 618332. 2139.56 1.47 0.162824 0.141167 25762 151098 -1 2018 21 1577 2223 149519 36599 3.92706 3.92706 -129.881 -3.92706 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0264486 0.0230237 132 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 62.68 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30356 -1 -1 29 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.2 MiB 2.37 981 11547 3132 7358 1057 62.7 MiB 0.11 0.00 3.20763 -96.8878 -3.20763 3.20763 0.74 0.000650912 0.000605713 0.039387 0.0366757 34 2192 20 6.87369e+06 405241 618332. 2139.56 1.25 0.162978 0.142002 25762 151098 -1 1884 23 1087 1854 121476 29886 3.18361 3.18361 -107.464 -3.18361 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0277117 0.0239534 123 49 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 7.38 vpr 63.13 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30564 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.5 MiB 2.62 1049 17285 5493 8978 2814 63.1 MiB 0.18 0.00 4.14151 -132.858 -4.14151 4.14151 0.74 0.000754469 0.000700812 0.0715842 0.0664799 34 2942 44 6.87369e+06 307425 618332. 2139.56 1.74 0.241322 0.211224 25762 151098 -1 2364 19 1702 2565 203410 47137 4.45586 4.45586 -156.094 -4.45586 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0279331 0.0243754 151 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.66 vpr 62.34 MiB -1 -1 0.19 17964 1 0.02 -1 -1 30576 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.9 MiB 0.61 833 5756 1336 3888 532 62.3 MiB 0.06 0.00 2.9769 -93.5698 -2.9769 2.9769 0.72 0.000532546 0.000496647 0.0197137 0.0184163 34 1854 20 6.87369e+06 237555 618332. 2139.56 1.23 0.121052 0.104479 25762 151098 -1 1671 19 946 1480 107025 24964 2.80501 2.80501 -105.211 -2.80501 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0197358 0.017111 92 -1 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.58 vpr 63.06 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30580 -1 -1 35 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1011 13323 3692 8630 1001 63.1 MiB 0.13 0.00 3.50715 -117.312 -3.50715 3.50715 0.71 0.000777242 0.000722164 0.0477825 0.0443807 28 2582 36 6.87369e+06 489084 531479. 1839.03 1.00 0.154738 0.135932 24610 126494 -1 2237 21 1575 2284 159044 37688 4.07906 4.07906 -145.706 -4.07906 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0378411 0.0333338 145 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.10 vpr 62.72 MiB -1 -1 0.18 18180 1 0.03 -1 -1 30284 -1 -1 16 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.78 902 13152 4220 7456 1476 62.7 MiB 0.13 0.00 2.9898 -111.455 -2.9898 2.9898 0.72 0.000717164 0.000666098 0.0565136 0.0524984 34 2203 31 6.87369e+06 223581 618332. 2139.56 1.40 0.20333 0.177431 25762 151098 -1 1903 22 1532 2217 172015 38749 3.26576 3.26576 -132.892 -3.26576 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291601 0.0252671 114 93 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.87 vpr 62.87 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30192 -1 -1 32 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.4 MiB 2.54 956 9294 2311 5989 994 62.9 MiB 0.09 0.00 3.24063 -102.007 -3.24063 3.24063 0.72 0.000707754 0.00065858 0.0323173 0.0300533 34 2365 24 6.87369e+06 447163 618332. 2139.56 1.40 0.170617 0.147985 25762 151098 -1 1938 19 1241 1961 123198 30463 2.99901 2.99901 -110.468 -2.99901 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0268881 0.0234953 134 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.47 vpr 63.35 MiB -1 -1 0.21 18348 1 0.03 -1 -1 30704 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.9 MiB 3.55 1379 16721 5012 9437 2272 63.4 MiB 0.18 0.00 4.69005 -144.837 -4.69005 4.69005 0.72 0.00077223 0.000717097 0.06817 0.0633885 34 3558 43 6.87369e+06 349346 618332. 2139.56 1.85 0.243123 0.212706 25762 151098 -1 2804 20 2283 3478 284609 64828 5.2001 5.2001 -168.661 -5.2001 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0298708 0.0260757 171 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.12 vpr 62.25 MiB -1 -1 0.17 17904 1 0.02 -1 -1 30328 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.6 MiB 1.11 757 10020 3099 5507 1414 62.2 MiB 0.08 0.00 2.53052 -83.7398 -2.53052 2.53052 0.72 0.00049945 0.000465291 0.0322843 0.0300635 34 1775 21 6.87369e+06 209608 618332. 2139.56 1.24 0.128516 0.111578 25762 151098 -1 1551 16 749 991 90377 20099 2.30547 2.30547 -95.4661 -2.30547 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0163594 0.0142221 81 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.07 vpr 62.47 MiB -1 -1 0.19 17960 1 0.03 -1 -1 30488 -1 -1 19 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 24.0 MiB 0.98 840 12856 3983 7186 1687 62.5 MiB 0.11 0.00 3.14163 -101.894 -3.14163 3.14163 0.72 0.000602955 0.000561422 0.0461667 0.0430057 34 1871 18 6.87369e+06 265503 618332. 2139.56 1.27 0.158397 0.138351 25762 151098 -1 1665 19 1120 1617 126015 27402 2.90001 2.90001 -113.149 -2.90001 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0222347 0.0193148 105 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 4.73 vpr 62.70 MiB -1 -1 0.18 17972 1 0.03 -1 -1 30512 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.1 MiB 0.88 778 10647 2780 7468 399 62.7 MiB 0.10 0.00 2.9879 -97.5378 -2.9879 2.9879 0.72 0.000623622 0.000578699 0.0363604 0.033784 32 2552 44 6.87369e+06 321398 586450. 2029.24 1.02 0.129429 0.113163 25474 144626 -1 2050 20 1378 2473 221941 50248 3.12786 3.12786 -121.543 -3.12786 0 0 744469. 2576.02 0.21 0.08 0.13 -1 -1 0.21 0.0237088 0.0205713 109 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.21 vpr 62.41 MiB -1 -1 0.19 17972 1 0.02 -1 -1 30464 -1 -1 29 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63904 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.9 MiB 0.66 543 11426 3816 5149 2461 62.4 MiB 0.08 0.00 2.9029 -68.67 -2.9029 2.9029 0.72 0.000474531 0.000440808 0.0301977 0.0280674 28 1446 21 6.87369e+06 405241 531479. 1839.03 0.84 0.0856996 0.0752054 24610 126494 -1 1315 21 890 1554 106352 26352 2.99956 2.99956 -80.7435 -2.99956 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.018997 0.0163877 87 19 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.89 vpr 63.05 MiB -1 -1 0.20 18484 1 0.03 -1 -1 30612 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 2.29 1099 14724 4570 7816 2338 63.1 MiB 0.15 0.00 3.64275 -112.763 -3.64275 3.64275 0.72 0.00072479 0.000673748 0.0607796 0.0563797 34 2933 22 6.87369e+06 279477 618332. 2139.56 1.67 0.200512 0.175412 25762 151098 -1 2405 18 1390 2402 163983 39623 4.07536 4.07536 -138.378 -4.07536 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0255858 0.0222999 133 69 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 7.02 vpr 63.07 MiB -1 -1 0.21 18508 1 0.03 -1 -1 30420 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.4 MiB 2.60 1019 16921 4513 10430 1978 63.1 MiB 0.16 0.00 3.35493 -114.687 -3.35493 3.35493 0.72 0.000770523 0.000715719 0.0633489 0.0588417 34 2378 23 6.87369e+06 433189 618332. 2139.56 1.42 0.209374 0.183455 25762 151098 -1 2119 17 1513 2382 157716 36537 2.98801 2.98801 -121.953 -2.98801 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0257989 0.0225419 143 86 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.97 vpr 62.73 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30252 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.2 MiB 2.31 1282 16858 5181 9399 2278 62.7 MiB 0.17 0.00 4.26107 -126.766 -4.26107 4.26107 0.76 0.000702327 0.000652633 0.0633553 0.0588678 34 2855 41 6.89349e+06 338252 618332. 2139.56 1.65 0.21922 0.191566 25762 151098 -1 2371 18 1499 2140 146492 35504 4.38335 4.38335 -148.631 -4.38335 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0249388 0.0217595 149 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.12 vpr 62.71 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30524 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 30 32 363 293 1 228 88 17 17 289 -1 unnamed_device 24.2 MiB 1.47 1141 14908 4583 7972 2353 62.7 MiB 0.15 0.00 3.89968 -120.67 -3.89968 3.89968 0.72 0.000713412 0.000663573 0.0563465 0.0523638 34 3050 22 6.89349e+06 366440 618332. 2139.56 1.69 0.192825 0.168525 25762 151098 -1 2467 22 2059 3065 227416 50895 4.16954 4.16954 -145.797 -4.16954 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0293659 0.0255181 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 5.98 vpr 62.58 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30484 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.0 MiB 1.67 1122 12547 3748 7678 1121 62.6 MiB 0.12 0.00 3.52869 -104.289 -3.52869 3.52869 0.76 0.000630918 0.000587147 0.0442 0.0410885 34 2557 21 6.89349e+06 295971 618332. 2139.56 1.42 0.164925 0.143509 25762 151098 -1 2171 19 1153 1582 117858 26876 3.7184 3.7184 -120.609 -3.7184 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0231427 0.0201102 125 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 5.70 vpr 62.52 MiB -1 -1 0.20 17916 1 0.03 -1 -1 30648 -1 -1 24 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 23.9 MiB 1.48 1048 11989 3269 7239 1481 62.5 MiB 0.11 0.00 3.79798 -106.429 -3.79798 3.79798 0.73 0.000633138 0.000589449 0.0428114 0.0398188 34 2435 22 6.89349e+06 338252 618332. 2139.56 1.33 0.164914 0.14354 25762 151098 -1 2024 21 1364 2167 127303 31378 3.83266 3.83266 -123.171 -3.83266 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0254496 0.0220953 134 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.59 vpr 62.76 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30596 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.3 MiB 1.28 1113 9687 2811 4973 1903 62.8 MiB 0.10 0.00 4.11871 -120.09 -4.11871 4.11871 0.72 0.000687907 0.000639855 0.0366698 0.0341156 34 3543 28 6.89349e+06 324158 618332. 2139.56 2.37 0.146209 0.127651 25762 151098 -1 2562 22 1858 3357 311422 65962 4.21699 4.21699 -144.706 -4.21699 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.028219 0.0245091 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.97 vpr 62.94 MiB -1 -1 0.19 18340 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.3 MiB 1.84 1347 20299 6513 11395 2391 62.9 MiB 0.19 0.00 3.29756 -107.356 -3.29756 3.29756 0.75 0.00072162 0.000670529 0.0680459 0.0631729 36 3058 31 6.89349e+06 465097 648988. 2245.63 2.06 0.2022 0.177483 26050 158493 -1 2605 20 1466 2473 186415 39503 3.37665 3.37665 -128.967 -3.37665 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0273269 0.0237774 162 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.46 vpr 62.39 MiB -1 -1 0.18 18300 1 0.03 -1 -1 30844 -1 -1 21 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.13 791 14356 4437 8294 1625 62.4 MiB 0.12 0.00 3.25123 -92.2102 -3.25123 3.25123 0.72 0.000556692 0.000518263 0.0482301 0.044936 34 1824 42 6.89349e+06 295971 618332. 2139.56 1.52 0.172635 0.150529 25762 151098 -1 1601 17 1119 1577 110338 25031 3.01346 3.01346 -104.396 -3.01346 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0188275 0.0163635 107 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.87 vpr 62.40 MiB -1 -1 0.18 17764 1 0.03 -1 -1 30368 -1 -1 32 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.9 MiB 0.66 956 15431 4732 8249 2450 62.4 MiB 0.12 0.00 2.5388 -83.2332 -2.5388 2.5388 0.74 0.000594945 0.000553816 0.044376 0.0412363 34 2188 20 6.89349e+06 451003 618332. 2139.56 1.29 0.1327 0.116547 25762 151098 -1 1844 18 1060 1807 119784 27301 2.59831 2.59831 -95.463 -2.59831 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208008 0.0180565 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.08 vpr 62.59 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30520 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 317 271 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1124 11783 3262 6577 1944 62.6 MiB 0.11 0.00 2.92775 -102.768 -2.92775 2.92775 0.72 0.000636155 0.000591365 0.0436107 0.0405534 36 2609 24 6.89349e+06 281877 648988. 2245.63 1.68 0.165671 0.144379 26050 158493 -1 2262 22 1709 2305 210567 43477 2.85291 2.85291 -117.189 -2.85291 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0263553 0.0228328 130 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.00 vpr 62.57 MiB -1 -1 0.18 18252 1 0.03 -1 -1 30336 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 24.0 MiB 1.84 829 5778 1188 4223 367 62.6 MiB 0.07 0.00 3.15648 -104.088 -3.15648 3.15648 0.72 0.000625097 0.000581915 0.0221482 0.0206259 34 2273 22 6.89349e+06 253689 618332. 2139.56 1.33 0.143385 0.123877 25762 151098 -1 1911 21 1285 1678 117092 27908 3.1804 3.1804 -122.989 -3.1804 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0246639 0.021393 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.98 vpr 62.46 MiB -1 -1 0.18 18172 1 0.03 -1 -1 30452 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 23.9 MiB 1.87 1020 13403 3453 8147 1803 62.5 MiB 0.12 0.00 3.58297 -108.094 -3.58297 3.58297 0.72 0.000614901 0.000572461 0.0478029 0.0445081 36 2256 22 6.89349e+06 295971 648988. 2245.63 3.17 0.216703 0.18777 26050 158493 -1 2029 19 1252 1641 122484 26862 3.72535 3.72535 -126.117 -3.72535 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0226881 0.0197463 124 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.65 vpr 62.41 MiB -1 -1 0.19 18308 1 0.03 -1 -1 30260 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.37 941 14081 4779 7456 1846 62.4 MiB 0.12 0.00 2.911 -94.18 -2.911 2.911 0.72 0.000596708 0.000556089 0.0494373 0.046066 34 2326 21 6.89349e+06 239595 618332. 2139.56 1.39 0.162707 0.142432 25762 151098 -1 1986 17 952 1336 102885 23516 2.97146 2.97146 -112.656 -2.97146 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0200002 0.0174111 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 6.62 vpr 62.57 MiB -1 -1 0.19 18364 1 0.03 -1 -1 30536 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.1 MiB 1.83 1102 16599 6496 8060 2043 62.6 MiB 0.16 0.00 3.19568 -105.717 -3.19568 3.19568 0.71 0.000694619 0.000645758 0.0622585 0.0578727 34 3189 27 6.89349e+06 324158 618332. 2139.56 1.83 0.202999 0.177735 25762 151098 -1 2456 22 1914 2963 259377 55624 3.29551 3.29551 -121.551 -3.29551 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0286741 0.0249178 143 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.17 vpr 62.79 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30540 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1254 16078 4483 9843 1752 62.8 MiB 0.16 0.00 4.41637 -133.893 -4.41637 4.41637 0.72 0.00071399 0.000663611 0.0612209 0.0568813 34 2903 23 6.89349e+06 338252 618332. 2139.56 1.59 0.200365 0.175438 25762 151098 -1 2565 23 1780 2479 193370 42693 4.34695 4.34695 -152.833 -4.34695 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0306484 0.0266132 153 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.72 vpr 62.30 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30636 -1 -1 18 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.62 851 9543 2409 6304 830 62.3 MiB 0.08 0.00 2.55142 -81.1964 -2.55142 2.55142 0.72 0.000540508 0.000503637 0.0321718 0.029963 34 1919 23 6.89349e+06 253689 618332. 2139.56 1.30 0.115948 0.101024 25762 151098 -1 1647 21 873 1218 89874 20178 2.61456 2.61456 -94.1401 -2.61456 0 0 787024. 2723.27 0.22 0.05 0.13 -1 -1 0.22 0.0216832 0.0187731 102 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.47 vpr 62.78 MiB -1 -1 0.11 18484 1 0.03 -1 -1 30424 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.3 MiB 1.96 1285 15103 4244 8933 1926 62.8 MiB 0.15 0.00 3.4692 -110.521 -3.4692 3.4692 0.74 0.0007213 0.000670698 0.0584245 0.0542662 34 3561 31 6.89349e+06 338252 618332. 2139.56 1.62 0.207375 0.181152 25762 151098 -1 2819 23 2173 3443 288106 63850 4.18655 4.18655 -140.928 -4.18655 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309345 0.0268675 159 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.31 vpr 62.59 MiB -1 -1 0.20 18484 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.2 MiB 1.71 1148 12560 3519 7659 1382 62.6 MiB 0.12 0.00 3.18768 -107.076 -3.18768 3.18768 0.72 0.000680905 0.00063386 0.0474524 0.0441626 34 2755 30 6.89349e+06 310065 618332. 2139.56 1.70 0.188073 0.164011 25762 151098 -1 2314 19 1426 2122 176499 37768 3.05071 3.05071 -119.849 -3.05071 0 0 787024. 2723.27 0.22 0.08 0.15 -1 -1 0.22 0.025615 0.0222722 142 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.22 vpr 62.62 MiB -1 -1 0.18 18180 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.2 MiB 1.55 1179 11803 3445 7602 756 62.6 MiB 0.12 0.00 2.80245 -104.108 -2.80245 2.80245 0.72 0.000647935 0.000602633 0.0431611 0.0401401 36 2562 49 6.89349e+06 295971 648988. 2245.63 1.81 0.194048 0.168447 26050 158493 -1 2335 20 1602 2151 177004 37869 2.90116 2.90116 -120.918 -2.90116 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0248665 0.0216138 131 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.87 vpr 62.05 MiB -1 -1 0.18 18196 1 0.02 -1 -1 30348 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63536 30 32 222 206 1 141 77 17 17 289 -1 unnamed_device 23.5 MiB 0.90 635 6923 1558 5008 357 62.0 MiB 0.06 0.00 2.15123 -72.8102 -2.15123 2.15123 0.72 0.000498839 0.000464922 0.0226131 0.0210803 34 1608 23 6.89349e+06 211408 618332. 2139.56 1.22 0.119477 0.103313 25762 151098 -1 1291 17 624 738 53255 12974 2.09912 2.09912 -86.7964 -2.09912 0 0 787024. 2723.27 0.21 0.04 0.13 -1 -1 0.21 0.0168672 0.0146804 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.68 vpr 62.30 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30400 -1 -1 19 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63792 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.8 MiB 1.90 965 9694 2612 6447 635 62.3 MiB 0.10 0.00 3.72732 -115.029 -3.72732 3.72732 0.72 0.000609776 0.000567786 0.0351467 0.0327379 30 2316 28 6.89349e+06 267783 556674. 1926.21 0.93 0.112954 0.0990151 25186 138497 -1 1894 21 1136 1774 125927 28457 3.5703 3.5703 -131.741 -3.5703 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0244722 0.0212165 117 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.49 vpr 62.73 MiB -1 -1 0.19 18352 1 0.03 -1 -1 30628 -1 -1 34 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.2 MiB 0.95 1118 8648 1733 6594 321 62.7 MiB 0.09 0.00 3.84343 -123.676 -3.84343 3.84343 0.75 0.00069223 0.000643863 0.0311148 0.0289468 34 2772 22 6.89349e+06 479191 618332. 2139.56 1.66 0.164644 0.142811 25762 151098 -1 2264 21 1517 2242 158521 36710 4.51744 4.51744 -154.159 -4.51744 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0274162 0.0238113 151 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.23 vpr 62.85 MiB -1 -1 0.21 18356 1 0.03 -1 -1 30532 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1293 15831 5294 8250 2287 62.9 MiB 0.17 0.00 3.66325 -116.141 -3.66325 3.66325 0.73 0.000726885 0.000676001 0.0625169 0.058092 34 3456 36 6.89349e+06 324158 618332. 2139.56 2.05 0.186873 0.164172 25762 151098 -1 2667 22 1971 3001 237936 52252 3.8549 3.8549 -137.784 -3.8549 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300607 0.0261416 155 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.25 vpr 62.14 MiB -1 -1 0.18 17800 1 0.02 -1 -1 30804 -1 -1 19 26 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63632 26 32 190 182 1 126 77 17 17 289 -1 unnamed_device 23.5 MiB 1.05 418 11487 4750 5672 1065 62.1 MiB 0.08 0.00 2.07721 -57.7283 -2.07721 2.07721 0.72 0.000429799 0.000399341 0.0316143 0.0293977 34 1518 20 6.89349e+06 267783 618332. 2139.56 1.40 0.113992 0.0991708 25762 151098 -1 1051 31 976 1165 181493 82113 2.13352 2.13352 -69.5306 -2.13352 0 0 787024. 2723.27 0.23 0.08 0.14 -1 -1 0.23 0.0238258 0.0205163 76 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 4.61 vpr 62.45 MiB -1 -1 0.16 17848 1 0.03 -1 -1 30656 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 23.9 MiB 0.75 890 10455 2852 5890 1713 62.4 MiB 0.10 0.00 3.52907 -102.015 -3.52907 3.52907 0.72 0.000638193 0.000592387 0.0358898 0.0334196 30 2447 41 6.89349e+06 324158 556674. 1926.21 1.06 0.126472 0.110759 25186 138497 -1 1838 22 1043 1843 114348 27171 3.51805 3.51805 -118.53 -3.51805 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0252934 0.0219177 119 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.79 vpr 62.03 MiB -1 -1 0.11 17772 1 0.02 -1 -1 30284 -1 -1 12 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.6 MiB 0.32 593 9676 3705 4147 1824 62.0 MiB 0.07 0.00 1.84932 -63.6612 -1.84932 1.84932 0.72 0.000424389 0.000393609 0.0268402 0.0249637 30 1390 43 6.89349e+06 169126 556674. 1926.21 0.82 0.0902872 0.0790871 25186 138497 -1 1148 18 564 743 53256 12634 1.97176 1.97176 -76.462 -1.97176 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0149513 0.0130038 65 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.92 vpr 62.43 MiB -1 -1 0.19 17900 1 0.03 -1 -1 30360 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 1.47 1097 8868 2472 5861 535 62.4 MiB 0.09 0.00 3.87678 -114.73 -3.87678 3.87678 0.72 0.000633207 0.000589464 0.0326954 0.0304523 36 2304 19 6.89349e+06 281877 648988. 2245.63 1.62 0.15353 0.133336 26050 158493 -1 1968 20 1036 1606 103352 24380 3.58206 3.58206 -122.031 -3.58206 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0245921 0.0214577 125 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.66 vpr 62.47 MiB -1 -1 0.18 17752 1 0.03 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.9 MiB 0.64 999 13919 3835 8609 1475 62.5 MiB 0.12 0.00 2.6813 -88.0594 -2.6813 2.6813 0.72 0.000634652 0.000590029 0.0430503 0.0399506 26 2420 28 6.89349e+06 436909 503264. 1741.40 1.21 0.124104 0.109205 24322 120374 -1 2279 21 1394 2508 215710 48896 3.10781 3.10781 -111.059 -3.10781 0 0 618332. 2139.56 0.17 0.08 0.11 -1 -1 0.17 0.0253937 0.0220518 130 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.74 vpr 62.64 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30596 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.2 MiB 1.95 1221 15447 4850 8084 2513 62.6 MiB 0.15 0.00 3.79978 -111.515 -3.79978 3.79978 0.75 0.000679636 0.000632141 0.0567963 0.052831 34 3216 24 6.89349e+06 324158 618332. 2139.56 1.84 0.191414 0.167463 25762 151098 -1 2458 23 1694 2620 208196 45880 3.97096 3.97096 -133.93 -3.97096 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291905 0.0252432 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.11 vpr 62.27 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30368 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.8 MiB 1.53 1015 13031 4907 6151 1973 62.3 MiB 0.12 0.00 2.9839 -102 -2.9839 2.9839 0.77 0.000608155 0.000566609 0.0471784 0.0439393 34 2260 36 6.89349e+06 239595 618332. 2139.56 1.54 0.17716 0.154376 25762 151098 -1 1919 19 1212 1753 127911 29486 2.98246 2.98246 -116.031 -2.98246 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0226443 0.0196852 112 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.98 vpr 62.35 MiB -1 -1 0.18 18020 1 0.03 -1 -1 30400 -1 -1 17 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.9 MiB 1.64 782 13092 4071 7234 1787 62.3 MiB 0.11 0.00 3.26582 -93.307 -3.26582 3.26582 0.72 0.000570348 0.000531663 0.0460174 0.0429025 34 1938 49 6.89349e+06 239595 618332. 2139.56 1.47 0.15226 0.133317 25762 151098 -1 1720 20 954 1578 117150 27760 3.57956 3.57956 -111.526 -3.57956 0 0 787024. 2723.27 0.21 0.06 0.11 -1 -1 0.21 0.0218489 0.018933 104 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.04 vpr 62.25 MiB -1 -1 0.18 18244 1 0.03 -1 -1 30328 -1 -1 20 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.8 MiB 1.44 750 12120 5092 6252 776 62.2 MiB 0.10 0.00 3.40424 -95.7275 -3.40424 3.40424 0.72 0.00055483 0.000515976 0.0407915 0.0379161 34 2286 36 6.89349e+06 281877 618332. 2139.56 1.79 0.160414 0.139202 25762 151098 -1 1742 21 1175 1962 189873 41798 3.57705 3.57705 -113.796 -3.57705 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.022411 0.0194016 107 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 4.29 vpr 62.27 MiB -1 -1 0.18 17956 1 0.03 -1 -1 30520 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.6 MiB 0.54 896 10756 2987 7083 686 62.3 MiB 0.09 0.00 2.99448 -96.0518 -2.99448 2.99448 0.72 0.00057268 0.000533001 0.0366058 0.0340409 32 2245 27 6.89349e+06 239595 586450. 2029.24 0.89 0.108329 0.0952869 25474 144626 -1 1886 21 1249 2082 170163 38072 2.87896 2.87896 -114.345 -2.87896 0 0 744469. 2576.02 0.24 0.07 0.15 -1 -1 0.24 0.0235287 0.0203924 101 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.62 vpr 62.24 MiB -1 -1 0.19 17916 1 0.03 -1 -1 30540 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 1.38 837 9881 2778 6078 1025 62.2 MiB 0.09 0.00 2.82865 -88.3089 -2.82865 2.82865 0.72 0.000581611 0.000541912 0.0346162 0.0322484 34 2190 28 6.89349e+06 253689 618332. 2139.56 1.40 0.152496 0.132395 25762 151098 -1 1851 23 1263 1866 144188 33955 2.99541 2.99541 -108.317 -2.99541 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0251335 0.0217387 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.79 vpr 62.52 MiB -1 -1 0.19 18092 1 0.03 -1 -1 30556 -1 -1 22 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 23.9 MiB 1.65 968 9803 2327 6931 545 62.5 MiB 0.09 0.00 2.84275 -85.71 -2.84275 2.84275 0.72 0.00060239 0.000561073 0.0343579 0.0319803 36 2106 26 6.89349e+06 310065 648988. 2245.63 3.33 0.202649 0.174465 26050 158493 -1 1812 17 1004 1403 100296 23063 2.57622 2.57622 -99.1307 -2.57622 0 0 828058. 2865.25 0.22 0.05 0.14 -1 -1 0.22 0.0203631 0.0177176 120 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.13 vpr 62.79 MiB -1 -1 0.20 18480 1 0.03 -1 -1 30624 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.3 MiB 1.47 1299 17117 5782 9189 2146 62.8 MiB 0.18 0.00 3.60205 -110.804 -3.60205 3.60205 0.72 0.000737357 0.000685651 0.0661637 0.0615547 34 3208 38 6.89349e+06 352346 618332. 2139.56 1.68 0.226863 0.198856 25762 151098 -1 2563 21 1356 2329 201557 41883 4.12356 4.12356 -131.95 -4.12356 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291567 0.0253555 159 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 7.02 vpr 63.09 MiB -1 -1 0.20 18460 1 0.03 -1 -1 30536 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.5 MiB 1.80 1273 16663 4876 9595 2192 63.1 MiB 0.19 0.00 3.70207 -127.177 -3.70207 3.70207 0.72 0.000757421 0.000703989 0.066933 0.0621974 36 3169 24 6.89349e+06 338252 648988. 2245.63 2.17 0.216004 0.189557 26050 158493 -1 2831 21 2266 3128 253517 54196 3.72935 3.72935 -145.916 -3.72935 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0300873 0.0262073 168 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 7.25 vpr 62.26 MiB -1 -1 0.20 18092 1 0.03 -1 -1 30272 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.8 MiB 1.10 821 11981 3395 6671 1915 62.3 MiB 0.11 0.00 3.09348 -96.3304 -3.09348 3.09348 0.73 0.000589395 0.00054884 0.0422219 0.0393237 36 1979 22 6.89349e+06 253689 648988. 2245.63 3.25 0.203032 0.175755 26050 158493 -1 1691 20 1108 1704 126078 28670 2.87136 2.87136 -106.013 -2.87136 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0226791 0.0196715 109 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.47 vpr 62.92 MiB -1 -1 0.21 18572 1 0.03 -1 -1 30648 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.3 MiB 1.91 1276 14128 4201 7880 2047 62.9 MiB 0.14 0.00 3.29719 -108.579 -3.29719 3.29719 0.72 0.00072387 0.000673241 0.0547983 0.0509655 34 3111 36 6.89349e+06 352346 618332. 2139.56 1.55 0.209466 0.182713 25762 151098 -1 2538 22 1628 2537 190413 41989 3.582 3.582 -133.509 -3.582 0 0 787024. 2723.27 0.23 0.11 0.13 -1 -1 0.23 0.0367364 0.0319393 160 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 7.82 vpr 62.80 MiB -1 -1 0.21 18468 1 0.03 -1 -1 30464 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.27 1274 17248 7062 8900 1286 62.8 MiB 0.18 0.00 4.54467 -133.388 -4.54467 4.54467 0.72 0.000731661 0.00067995 0.0668895 0.0621904 36 3362 36 6.89349e+06 352346 648988. 2245.63 2.56 0.225592 0.197557 26050 158493 -1 2636 20 2044 2974 222236 48830 4.63628 4.63628 -159.735 -4.63628 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0280995 0.0244737 163 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 7.00 vpr 62.91 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30624 -1 -1 25 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.4 MiB 1.91 1255 16858 6090 7529 3239 62.9 MiB 0.17 0.00 4.87148 -144.46 -4.87148 4.87148 0.72 0.000740168 0.000687924 0.0663897 0.0616797 34 3479 45 6.89349e+06 352346 618332. 2139.56 2.03 0.235015 0.205341 25762 151098 -1 2673 21 1994 2981 245889 56312 5.05624 5.05624 -166.711 -5.05624 0 0 787024. 2723.27 0.25 0.07 0.13 -1 -1 0.25 0.0221797 0.0193784 166 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.33 vpr 62.85 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30744 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1258 16791 5122 9331 2338 62.9 MiB 0.17 0.00 3.17668 -104.664 -3.17668 3.17668 0.72 0.000697242 0.000648608 0.0631103 0.0586774 34 3048 45 6.89349e+06 338252 618332. 2139.56 1.59 0.222165 0.194175 25762 151098 -1 2542 22 1892 2815 216900 47634 3.09936 3.09936 -120.261 -3.09936 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0290192 0.025254 148 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.14 vpr 62.50 MiB -1 -1 0.18 18068 1 0.03 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.9 MiB 1.63 1011 14724 5720 7303 1701 62.5 MiB 0.13 0.00 3.54595 -98.0074 -3.54595 3.54595 0.75 0.000616881 0.000574023 0.0517183 0.0481399 34 2399 21 6.89349e+06 281877 618332. 2139.56 1.62 0.170899 0.149547 25762 151098 -1 1948 22 1190 1662 141680 31386 3.9151 3.9151 -119.291 -3.9151 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0255296 0.0221555 120 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 7.82 vpr 63.18 MiB -1 -1 0.22 18832 1 0.03 -1 -1 30564 -1 -1 31 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.6 MiB 1.98 1674 20831 6675 11879 2277 63.2 MiB 0.24 0.00 4.28981 -142.961 -4.28981 4.28981 0.72 0.000860412 0.000800419 0.0858105 0.079754 34 4255 40 6.89349e+06 436909 618332. 2139.56 2.72 0.280044 0.245239 25762 151098 -1 3406 21 2666 4001 302196 64755 4.47919 4.47919 -163.386 -4.47919 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0344999 0.0299564 203 84 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.64 vpr 62.27 MiB -1 -1 0.18 18188 1 0.03 -1 -1 30332 -1 -1 18 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 1.49 970 13556 4106 7339 2111 62.3 MiB 0.12 0.00 2.974 -93.2373 -2.974 2.974 0.72 0.000564453 0.00052468 0.0458214 0.0426466 34 2171 25 6.89349e+06 253689 618332. 2139.56 1.31 0.158567 0.138282 25762 151098 -1 1960 18 991 1315 100525 22726 2.95071 2.95071 -107.339 -2.95071 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0200923 0.0174465 106 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 5.22 vpr 62.54 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30420 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1143 11426 3180 6652 1594 62.5 MiB 0.12 0.00 3.75642 -117.13 -3.75642 3.75642 0.73 0.000684443 0.00063714 0.0432614 0.0402624 30 2961 23 6.89349e+06 324158 556674. 1926.21 0.99 0.124547 0.109876 25186 138497 -1 2317 19 1323 2069 139386 31118 3.7955 3.7955 -131.935 -3.7955 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0251322 0.0219152 140 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.24 vpr 62.83 MiB -1 -1 0.20 18484 1 0.03 -1 -1 30648 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.3 MiB 1.90 1262 16407 5394 8590 2423 62.8 MiB 0.16 0.00 3.53859 -108.537 -3.53859 3.53859 0.72 0.000698516 0.000649463 0.0617836 0.0574165 36 3025 28 6.89349e+06 324158 648988. 2245.63 3.38 0.259533 0.225702 26050 158493 -1 2712 25 1671 2724 271715 75836 3.41395 3.41395 -124.681 -3.41395 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0319596 0.0276926 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 4.22 vpr 62.53 MiB -1 -1 0.19 18036 1 0.03 -1 -1 30276 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.0 MiB 0.51 988 12954 3861 7047 2046 62.5 MiB 0.12 0.00 3.37229 -105.584 -3.37229 3.37229 0.72 0.000624465 0.000579699 0.0419265 0.0389439 30 2478 22 6.89349e+06 366440 556674. 1926.21 0.87 0.115622 0.101907 25186 138497 -1 2004 20 1134 2123 142255 31657 3.4337 3.4337 -119.873 -3.4337 0 0 706193. 2443.58 0.19 0.07 0.13 -1 -1 0.19 0.0238472 0.0206855 123 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.26 vpr 62.71 MiB -1 -1 0.19 18476 1 0.03 -1 -1 30552 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.2 MiB 1.56 1205 13911 4891 6884 2136 62.7 MiB 0.14 0.00 3.42271 -106.786 -3.42271 3.42271 0.72 0.00069732 0.000648154 0.0527856 0.0490931 34 2989 49 6.89349e+06 324158 618332. 2139.56 1.75 0.215824 0.187708 25762 151098 -1 2430 17 1601 2212 178859 40307 3.14666 3.14666 -120.979 -3.14666 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0241672 0.0210978 148 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 6.52 vpr 62.86 MiB -1 -1 0.20 18472 1 0.03 -1 -1 30736 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1247 16273 5230 8426 2617 62.9 MiB 0.16 0.00 3.31619 -107.864 -3.31619 3.31619 0.72 0.000708299 0.000658569 0.0613785 0.057066 34 3215 26 6.89349e+06 338252 618332. 2139.56 1.74 0.203371 0.178049 25762 151098 -1 2541 19 1533 2340 194443 42301 3.6646 3.6646 -129.529 -3.6646 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0263158 0.0229253 154 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.33 vpr 62.86 MiB -1 -1 0.19 18316 1 0.05 -1 -1 30504 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 24.2 MiB 1.60 1426 13356 3645 7813 1898 62.9 MiB 0.14 0.00 3.19568 -109.525 -3.19568 3.19568 0.72 0.000738691 0.000686617 0.0513319 0.0477027 34 3264 23 6.89349e+06 366440 618332. 2139.56 1.71 0.196694 0.171778 25762 151098 -1 2775 21 2071 2850 222669 49858 3.51395 3.51395 -133.962 -3.51395 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0297464 0.0258935 164 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.73 vpr 62.53 MiB -1 -1 0.18 17968 1 0.03 -1 -1 30500 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 23.9 MiB 1.42 959 13849 3617 9052 1180 62.5 MiB 0.13 0.00 3.61195 -106.605 -3.61195 3.61195 0.72 0.000644224 0.000599813 0.0499748 0.0465029 34 2359 20 6.89349e+06 295971 618332. 2139.56 1.38 0.171751 0.150226 25762 151098 -1 1933 22 1250 1982 123171 30150 3.6482 3.6482 -124.171 -3.6482 0 0 787024. 2723.27 0.21 0.07 0.16 -1 -1 0.21 0.0264583 0.0229538 128 21 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.04 vpr 62.55 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30588 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 23.9 MiB 1.43 1018 15206 4361 8400 2445 62.6 MiB 0.14 0.00 3.93308 -114.051 -3.93308 3.93308 0.72 0.000659788 0.000613674 0.0545858 0.0507462 34 2634 42 6.89349e+06 310065 618332. 2139.56 2.71 0.273003 0.23631 25762 151098 -1 2246 21 1535 2251 168608 38814 3.92976 3.92976 -131.742 -3.92976 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.026047 0.0226298 135 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.57 vpr 63.07 MiB -1 -1 0.18 18444 1 0.03 -1 -1 30624 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 24.5 MiB 1.17 1359 11991 3353 7500 1138 63.1 MiB 0.13 0.00 3.69042 -117.294 -3.69042 3.69042 0.72 0.000725255 0.000670057 0.0474554 0.0441198 34 3282 20 6.89349e+06 338252 618332. 2139.56 1.49 0.185016 0.161348 25762 151098 -1 2712 19 1621 2516 173648 39493 3.94606 3.94606 -142.4 -3.94606 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.026555 0.0231108 156 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 6.92 vpr 62.96 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1307 11375 3187 7519 669 63.0 MiB 0.13 0.00 3.68195 -114.484 -3.68195 3.68195 0.72 0.000742091 0.000689433 0.0449308 0.0417118 34 3606 25 6.89349e+06 352346 618332. 2139.56 1.72 0.190559 0.165732 25762 151098 -1 2729 23 2026 3008 204588 47026 4.00006 4.00006 -139.201 -4.00006 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0321687 0.0278086 166 74 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.04 vpr 62.22 MiB -1 -1 0.18 18220 1 0.03 -1 -1 30256 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63716 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.6 MiB 1.41 886 12416 3486 7835 1095 62.2 MiB 0.11 0.00 2.79059 -92.6319 -2.79059 2.79059 0.72 0.000561364 0.000522659 0.0427801 0.0398441 30 2059 20 6.89349e+06 211408 556674. 1926.21 0.81 0.107117 0.0947364 25186 138497 -1 1723 17 840 1319 76308 18261 2.47721 2.47721 -101.267 -2.47721 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0188653 0.0164259 96 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 5.40 vpr 62.72 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30692 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.3 MiB 1.14 1086 13992 4212 8069 1711 62.7 MiB 0.08 0.00 3.33199 -120.259 -3.33199 3.33199 0.72 0.000303661 0.00027885 0.0249502 0.0229267 34 2809 37 6.89349e+06 281877 618332. 2139.56 1.38 0.108809 0.0942674 25762 151098 -1 2319 23 2075 2815 212103 47466 3.6301 3.6301 -145.756 -3.6301 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291554 0.0252874 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.80 vpr 62.86 MiB -1 -1 0.21 18460 1 0.03 -1 -1 30572 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.3 MiB 1.55 1352 16523 6310 8350 1863 62.9 MiB 0.18 0.00 4.36852 -132.857 -4.36852 4.36852 0.72 0.000768116 0.000711223 0.0661228 0.0612125 34 3549 33 6.89349e+06 352346 618332. 2139.56 2.29 0.227698 0.199117 25762 151098 -1 2745 21 1932 2994 232252 51482 4.5366 4.5366 -153.998 -4.5366 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0304028 0.0264841 168 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.07 vpr 62.73 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30664 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 24.2 MiB 1.62 1112 15773 5448 7805 2520 62.7 MiB 0.15 0.00 3.53796 -115.247 -3.53796 3.53796 0.72 0.000690195 0.000641718 0.0597846 0.0556149 34 2912 23 6.89349e+06 310065 618332. 2139.56 1.53 0.194638 0.170383 25762 151098 -1 2330 19 1683 2484 197944 44230 3.24686 3.24686 -126.919 -3.24686 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0256561 0.0223027 144 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.56 vpr 62.64 MiB -1 -1 0.18 18168 1 0.03 -1 -1 30560 -1 -1 27 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 24.1 MiB 1.24 943 16325 5444 8309 2572 62.6 MiB 0.14 0.00 3.42624 -106.158 -3.42624 3.42624 0.72 0.000590434 0.00054961 0.0505192 0.0470154 34 2282 22 6.89349e+06 380534 618332. 2139.56 1.41 0.139638 0.122807 25762 151098 -1 1906 20 1220 1942 153861 33819 3.34045 3.34045 -120.558 -3.34045 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0226111 0.0195998 118 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 9.45 vpr 63.32 MiB -1 -1 0.21 18552 1 0.03 -1 -1 30584 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.7 MiB 2.80 1500 8251 1895 5784 572 63.3 MiB 0.11 0.00 5.28925 -153.561 -5.28925 5.28925 0.72 0.000833627 0.00077519 0.0360543 0.033553 36 3536 29 6.89349e+06 380534 648988. 2245.63 3.65 0.281896 0.242783 26050 158493 -1 3025 20 2314 3647 278886 59588 5.15773 5.15773 -173.787 -5.15773 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0317025 0.0275945 188 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.68 vpr 62.62 MiB -1 -1 0.17 18164 1 0.03 -1 -1 30592 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 23.9 MiB 1.25 1155 15151 5020 8318 1813 62.6 MiB 0.15 0.00 3.69702 -118.898 -3.69702 3.69702 0.74 0.000698332 0.000650219 0.0587247 0.0546921 34 2758 23 6.89349e+06 295971 618332. 2139.56 1.54 0.198458 0.174131 25762 151098 -1 2216 19 1578 2221 157957 35342 3.7563 3.7563 -133.952 -3.7563 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0253141 0.0220489 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.68 vpr 62.14 MiB -1 -1 0.17 17748 1 0.02 -1 -1 30736 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.5 MiB 0.51 839 14323 3511 9263 1549 62.1 MiB 0.11 0.00 2.8828 -88.6493 -2.8828 2.8828 0.72 0.000536772 0.0005003 0.0410345 0.0382288 34 1934 22 6.89349e+06 338252 618332. 2139.56 1.39 0.144754 0.12624 25762 151098 -1 1609 18 758 1377 102863 22938 2.69891 2.69891 -99.9696 -2.69891 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0186212 0.0161436 94 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.31 vpr 62.76 MiB -1 -1 0.19 18164 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1304 14487 4749 7643 2095 62.8 MiB 0.14 0.00 4.19497 -118.988 -4.19497 4.19497 0.73 0.000705184 0.00065594 0.055523 0.0516329 34 3066 29 6.89349e+06 324158 618332. 2139.56 1.65 0.200615 0.175188 25762 151098 -1 2529 22 1606 2884 217062 48162 4.47475 4.47475 -141.66 -4.47475 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.029121 0.0252924 149 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.81 vpr 62.25 MiB -1 -1 0.18 17936 1 0.03 -1 -1 30324 -1 -1 19 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.6 MiB 0.57 917 10703 2499 7304 900 62.2 MiB 0.09 0.00 2.81765 -93.3738 -2.81765 2.81765 0.72 0.000555132 0.000517199 0.0346562 0.0322478 34 2126 33 6.89349e+06 267783 618332. 2139.56 1.43 0.152403 0.132212 25762 151098 -1 1830 21 1147 2134 169792 37150 2.82116 2.82116 -108.027 -2.82116 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0221674 0.0191925 98 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 4.98 vpr 62.30 MiB -1 -1 0.18 18088 1 0.03 -1 -1 30580 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.8 MiB 1.20 830 9694 2630 6313 751 62.3 MiB 0.10 0.00 3.17368 -94.9673 -3.17368 3.17368 0.75 0.000600719 0.00056014 0.0344353 0.0320797 30 2072 25 6.89349e+06 281877 556674. 1926.21 0.88 0.108072 0.0946975 25186 138497 -1 1799 22 1140 1657 117936 26975 3.15781 3.15781 -112.189 -3.15781 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0245183 0.0212542 113 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 7.14 vpr 62.82 MiB -1 -1 0.20 18320 1 0.03 -1 -1 30472 -1 -1 26 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 24.3 MiB 2.65 1107 10455 2737 7033 685 62.8 MiB 0.11 0.00 3.60013 -105.333 -3.60013 3.60013 0.72 0.000695052 0.000646625 0.0398139 0.0370147 34 2860 33 6.89349e+06 366440 618332. 2139.56 1.59 0.18571 0.161122 25762 151098 -1 2187 20 1519 2226 153135 36463 3.87824 3.87824 -127.577 -3.87824 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0266286 0.0231748 154 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.42 vpr 62.67 MiB -1 -1 0.19 18568 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1221 16529 5593 8865 2071 62.7 MiB 0.17 0.00 3.99304 -131.657 -3.99304 3.99304 0.72 0.00070456 0.000654417 0.0639703 0.059439 34 3277 48 6.89349e+06 310065 618332. 2139.56 1.85 0.227928 0.199048 25762 151098 -1 2682 21 1997 2944 211280 47897 4.60305 4.60305 -156.591 -4.60305 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.028023 0.0243508 151 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.06 vpr 62.83 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30196 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.3 MiB 1.42 1324 13911 4330 7522 2059 62.8 MiB 0.14 0.00 4.28447 -126.633 -4.28447 4.28447 0.72 0.000706224 0.00065612 0.0536516 0.0496549 34 3146 33 6.89349e+06 324158 618332. 2139.56 1.75 0.200944 0.17512 25762 151098 -1 2665 22 2037 2966 231768 52411 4.85149 4.85149 -159.385 -4.85149 0 0 787024. 2723.27 0.22 0.06 0.13 -1 -1 0.22 0.018966 0.016812 150 48 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.91 vpr 62.39 MiB -1 -1 0.19 18036 1 0.03 -1 -1 30560 -1 -1 15 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.9 MiB 1.44 1012 12247 3759 7237 1251 62.4 MiB 0.11 0.00 3.42271 -102.592 -3.42271 3.42271 0.72 0.000595345 0.000554546 0.044656 0.0415918 34 2325 25 6.89349e+06 211408 618332. 2139.56 1.58 0.162151 0.141543 25762 151098 -1 1954 18 1114 1629 144576 30864 3.06636 3.06636 -113.464 -3.06636 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.021139 0.0183598 105 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.06 vpr 62.61 MiB -1 -1 0.19 18416 1 0.03 -1 -1 30612 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 24.0 MiB 1.41 1110 14843 5163 7748 1932 62.6 MiB 0.14 0.00 2.90565 -101.475 -2.90565 2.90565 0.72 0.000639992 0.000595387 0.0552754 0.0513901 36 2580 23 6.89349e+06 281877 648988. 2245.63 1.77 0.179759 0.157197 26050 158493 -1 2206 19 1259 1769 139520 30740 3.03905 3.03905 -120.444 -3.03905 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0238302 0.0207364 131 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.50 vpr 62.57 MiB -1 -1 0.20 18396 1 0.03 -1 -1 30548 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 24.1 MiB 1.88 1141 16468 6347 8227 1894 62.6 MiB 0.15 0.00 3.1616 -93.7201 -3.1616 3.1616 0.72 0.000657261 0.000611144 0.0577363 0.0537025 34 2615 34 6.89349e+06 366440 618332. 2139.56 1.71 0.201894 0.176361 25762 151098 -1 2164 19 1433 2113 149759 34644 3.12581 3.12581 -109.824 -3.12581 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0244244 0.0212605 142 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.39 vpr 62.36 MiB -1 -1 0.19 18064 1 0.03 -1 -1 30800 -1 -1 23 28 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 23.8 MiB 1.15 828 14303 4124 8061 2118 62.4 MiB 0.12 0.00 3.50175 -88.7191 -3.50175 3.50175 0.72 0.000586421 0.000546252 0.0485228 0.045179 34 2148 21 6.89349e+06 324158 618332. 2139.56 1.40 0.169193 0.147903 25762 151098 -1 1780 18 1162 1974 145873 32434 3.8218 3.8218 -109.096 -3.8218 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0208383 0.0181165 119 20 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.67 vpr 62.85 MiB -1 -1 0.18 18336 1 0.03 -1 -1 30516 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 24.2 MiB 2.08 1107 15563 4839 9013 1711 62.9 MiB 0.15 0.00 3.67032 -115.689 -3.67032 3.67032 0.72 0.000639599 0.000594568 0.0573335 0.0533289 34 2711 39 6.89349e+06 295971 618332. 2139.56 1.70 0.196748 0.171909 25762 151098 -1 2340 21 1787 2594 215392 46750 3.99785 3.99785 -144.751 -3.99785 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0256117 0.0222493 130 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.40 vpr 62.75 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30388 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1267 5757 1225 4188 344 62.8 MiB 0.07 0.00 3.03554 -109.467 -3.03554 3.03554 0.72 0.000665992 0.000619618 0.0230197 0.0214267 34 3006 49 6.89349e+06 281877 618332. 2139.56 1.74 0.148407 0.128359 25762 151098 -1 2505 20 1653 2264 190745 40585 3.24755 3.24755 -130.669 -3.24755 0 0 787024. 2723.27 0.21 0.08 0.15 -1 -1 0.21 0.0256533 0.0222875 138 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.55 vpr 62.45 MiB -1 -1 0.19 17936 1 0.03 -1 -1 30712 -1 -1 31 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63952 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 23.9 MiB 0.60 1059 15217 4153 8755 2309 62.5 MiB 0.13 0.00 3.71042 -110.148 -3.71042 3.71042 0.72 0.000637299 0.000593646 0.0473647 0.0440438 28 2568 28 6.89349e+06 436909 531479. 1839.03 1.06 0.127059 0.112124 24610 126494 -1 2330 20 1382 2480 202980 42594 3.9537 3.9537 -131.984 -3.9537 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293698 0.0254757 129 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.16 vpr 62.72 MiB -1 -1 0.19 18484 1 0.03 -1 -1 30572 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1073 15063 4870 7370 2823 62.7 MiB 0.15 0.00 3.78342 -120.78 -3.78342 3.78342 0.72 0.000703925 0.0006547 0.0573269 0.0533176 36 2936 23 6.89349e+06 324158 648988. 2245.63 2.45 0.196193 0.171888 26050 158493 -1 2391 22 1798 2715 219505 47578 4.1124 4.1124 -143.437 -4.1124 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0292473 0.025453 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 8.25 vpr 62.91 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30644 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 24.3 MiB 1.65 1387 15799 4762 8190 2847 62.9 MiB 0.16 0.00 4.36821 -138.443 -4.36821 4.36821 0.73 0.000750256 0.000697689 0.0599894 0.0557828 38 2889 24 6.89349e+06 380534 678818. 2348.85 3.59 0.272078 0.236791 26626 170182 -1 2348 23 1627 2307 163827 36470 4.53739 4.53739 -159.167 -4.53739 0 0 902133. 3121.57 0.24 0.09 0.15 -1 -1 0.24 0.0322077 0.0280067 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.49 vpr 63.02 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30636 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.4 MiB 1.71 1342 10743 2957 7146 640 63.0 MiB 0.12 0.00 3.66297 -120.899 -3.66297 3.66297 0.72 0.000747861 0.000695359 0.0423369 0.0393531 36 3103 24 6.89349e+06 366440 648988. 2245.63 1.83 0.189361 0.164984 26050 158493 -1 2582 20 1626 2478 178258 39446 3.7254 3.7254 -135.313 -3.7254 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0286673 0.0249824 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.34 vpr 62.43 MiB -1 -1 0.18 18180 1 0.03 -1 -1 30388 -1 -1 21 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.9 MiB 1.67 968 15383 4647 8807 1929 62.4 MiB 0.13 0.00 3.29223 -102.411 -3.29223 3.29223 0.72 0.000583071 0.000541693 0.0520539 0.0482878 36 2190 19 6.89349e+06 295971 648988. 2245.63 1.81 0.162299 0.141983 26050 158493 -1 2031 20 1151 1606 148899 30616 3.26201 3.26201 -116.836 -3.26201 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0224393 0.01949 112 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.67 vpr 62.80 MiB -1 -1 0.13 18164 1 0.03 -1 -1 30600 -1 -1 26 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 24.3 MiB 2.32 1197 11398 2996 7446 956 62.8 MiB 0.12 0.00 4.33827 -131.668 -4.33827 4.33827 0.72 0.000730992 0.000679971 0.045068 0.0419172 34 2940 24 6.89349e+06 366440 618332. 2139.56 1.53 0.189079 0.164717 25762 151098 -1 2376 20 1871 2624 165482 39107 4.27099 4.27099 -148.989 -4.27099 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0278114 0.0242028 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.91 vpr 62.75 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30536 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.3 MiB 1.15 1230 15063 4319 8605 2139 62.8 MiB 0.15 0.00 4.07275 -124.439 -4.07275 4.07275 0.74 0.000691031 0.000643108 0.0564908 0.0525693 34 2743 27 6.89349e+06 324158 618332. 2139.56 1.78 0.196626 0.172156 25762 151098 -1 2366 22 1686 2962 269384 56653 3.96996 3.96996 -140.904 -3.96996 0 0 787024. 2723.27 0.22 0.10 0.14 -1 -1 0.22 0.0283701 0.0246288 139 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 62.61 MiB -1 -1 0.21 18464 1 0.03 -1 -1 30620 -1 -1 23 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1144 13883 4639 7082 2162 62.6 MiB 0.13 0.00 3.97284 -116.981 -3.97284 3.97284 0.72 0.000678747 0.000631143 0.052108 0.0484638 34 2763 25 6.89349e+06 324158 618332. 2139.56 1.54 0.187015 0.163485 25762 151098 -1 2186 20 1432 2197 157217 36537 4.27215 4.27215 -138.56 -4.27215 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0262257 0.0228264 142 43 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.59 vpr 62.99 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30560 -1 -1 27 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 377 310 1 241 89 17 17 289 -1 unnamed_device 24.4 MiB 1.81 1288 16523 5813 8348 2362 63.0 MiB 0.17 0.00 3.74362 -113.362 -3.74362 3.74362 0.72 0.000733702 0.000682634 0.0625611 0.0581022 34 3352 38 6.89349e+06 380534 618332. 2139.56 1.80 0.219098 0.191251 25762 151098 -1 2673 22 2084 2971 231213 50791 3.72525 3.72525 -136.707 -3.72525 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0299869 0.0260432 162 78 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.31 vpr 62.90 MiB -1 -1 0.19 18460 1 0.03 -1 -1 30548 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.3 MiB 2.52 1281 17559 5546 9777 2236 62.9 MiB 0.17 0.00 4.15477 -125.508 -4.15477 4.15477 0.72 0.000716669 0.000665997 0.0680514 0.0632956 34 3358 44 6.89349e+06 324158 618332. 2139.56 1.84 0.230886 0.201973 25762 151098 -1 2492 20 1822 2616 184370 43864 4.42119 4.42119 -148.983 -4.42119 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0277031 0.0241634 155 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.61 vpr 62.85 MiB -1 -1 0.15 18412 1 0.03 -1 -1 30444 -1 -1 30 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1211 11719 2797 8026 896 62.8 MiB 0.13 0.00 3.56259 -107.488 -3.56259 3.56259 0.72 0.000723438 0.000672667 0.0436672 0.0406144 36 3036 22 6.89349e+06 422815 648988. 2245.63 3.22 0.240756 0.208304 26050 158493 -1 2534 23 1897 2633 188784 42014 3.4901 3.4901 -124.469 -3.4901 0 0 828058. 2865.25 0.26 0.09 0.14 -1 -1 0.26 0.0313513 0.0272537 166 79 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.59 vpr 62.34 MiB -1 -1 0.17 17912 1 0.03 -1 -1 30596 -1 -1 17 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.7 MiB 0.47 759 9356 2634 6117 605 62.3 MiB 0.10 0.00 3.26403 -97.6755 -3.26403 3.26403 0.74 0.000553952 0.000516565 0.0321476 0.0299822 34 1764 34 6.89349e+06 239595 618332. 2139.56 1.28 0.149355 0.129659 25762 151098 -1 1480 15 659 1048 64070 16316 2.81871 2.81871 -104.448 -2.81871 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0170826 0.0149559 96 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.47 vpr 62.82 MiB -1 -1 0.19 18180 1 0.03 -1 -1 30620 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1282 15731 4568 8627 2536 62.8 MiB 0.16 0.00 4.4438 -134.87 -4.4438 4.4438 0.77 0.000734148 0.000683438 0.0609916 0.0567735 34 3359 44 6.89349e+06 352346 618332. 2139.56 1.85 0.19677 0.172835 25762 151098 -1 2666 20 1920 2696 245803 52145 4.60498 4.60498 -160.195 -4.60498 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0278319 0.0242348 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 9.05 vpr 62.88 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.2 MiB 2.75 1372 13157 3946 7330 1881 62.9 MiB 0.14 0.00 4.29117 -140.966 -4.29117 4.29117 0.72 0.000781777 0.00072804 0.0545425 0.050759 36 2921 24 6.89349e+06 352346 648988. 2245.63 3.42 0.263054 0.228529 26050 158493 -1 2628 20 1781 2548 183716 41423 4.35068 4.35068 -156.812 -4.35068 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0293032 0.025552 171 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.81 vpr 62.46 MiB -1 -1 0.18 18280 1 0.03 -1 -1 30340 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.9 MiB 2.19 938 8982 2267 6010 705 62.5 MiB 0.09 0.00 3.14102 -93.1669 -3.14102 3.14102 0.72 0.000582151 0.000542602 0.0310794 0.0289619 30 2192 25 6.89349e+06 253689 556674. 1926.21 0.83 0.102246 0.0896355 25186 138497 -1 1741 22 894 1238 80608 19884 2.80591 2.80591 -104.257 -2.80591 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0242019 0.020996 108 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.20 vpr 62.19 MiB -1 -1 0.18 17732 1 0.03 -1 -1 30552 -1 -1 20 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63680 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.5 MiB 0.52 828 12143 3254 7489 1400 62.2 MiB 0.11 0.00 3.20583 -99.6169 -3.20583 3.20583 0.73 0.000552819 0.00051503 0.0388629 0.0361906 32 1992 17 6.89349e+06 281877 586450. 2029.24 0.83 0.0998098 0.0881899 25474 144626 -1 1821 21 1109 1896 144686 32278 2.95221 2.95221 -111.902 -2.95221 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.0218993 0.0189238 99 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.09 vpr 62.93 MiB -1 -1 0.18 18172 1 0.03 -1 -1 30672 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.5 MiB 1.72 1025 8535 1932 5828 775 62.9 MiB 0.09 0.00 3.58702 -113.647 -3.58702 3.58702 0.72 0.000702771 0.000653947 0.0332764 0.0309723 34 2683 24 6.89349e+06 324158 618332. 2139.56 1.51 0.17092 0.148299 25762 151098 -1 2194 20 1735 2522 200263 43680 3.84155 3.84155 -138.654 -3.84155 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269144 0.0234343 145 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.99 vpr 62.88 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30480 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.4 MiB 1.66 1120 13143 3558 7385 2200 62.9 MiB 0.13 0.00 3.87394 -116.512 -3.87394 3.87394 0.72 0.000708418 0.000656749 0.0505042 0.0467841 38 2518 41 6.89349e+06 324158 678818. 2348.85 3.37 0.270508 0.233986 26626 170182 -1 2250 24 1603 2369 164152 36647 4.30409 4.30409 -141.34 -4.30409 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0309485 0.026817 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 4.58 vpr 62.73 MiB -1 -1 0.19 18044 1 0.03 -1 -1 30372 -1 -1 36 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.2 MiB 0.59 1214 16572 4991 9564 2017 62.7 MiB 0.16 0.00 4.13991 -122.514 -4.13991 4.13991 0.72 0.000729487 0.000676091 0.0535136 0.0495302 32 3149 38 6.89349e+06 507378 586450. 2029.24 1.03 0.155161 0.136658 25474 144626 -1 2513 24 1996 3634 284397 62498 4.42309 4.42309 -146.498 -4.42309 0 0 744469. 2576.02 0.20 0.10 0.13 -1 -1 0.20 0.0314718 0.0272858 157 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.59 vpr 62.70 MiB -1 -1 0.20 18532 1 0.03 -1 -1 30292 -1 -1 25 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.3 MiB 1.28 1075 11607 3465 6924 1218 62.7 MiB 0.11 0.00 2.95499 -90.2016 -2.95499 2.95499 0.73 0.000646057 0.000601723 0.0408983 0.0380567 34 2586 26 6.89349e+06 352346 618332. 2139.56 1.43 0.168647 0.146677 25762 151098 -1 2123 20 1742 2576 185777 41762 3.08576 3.08576 -105.51 -3.08576 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0245591 0.0213394 136 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 7.21 vpr 62.30 MiB -1 -1 0.19 18152 1 0.03 -1 -1 30944 -1 -1 20 27 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63796 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.9 MiB 1.20 693 12754 5353 6316 1085 62.3 MiB 0.10 0.00 3.41829 -89.7991 -3.41829 3.41829 0.72 0.00054607 0.000503803 0.0424754 0.0395063 38 1629 18 6.89349e+06 281877 678818. 2348.85 3.17 0.189047 0.16366 26626 170182 -1 1355 23 1054 1555 112032 26263 3.43875 3.43875 -103.847 -3.43875 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0235409 0.0203343 106 26 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 7.76 vpr 63.38 MiB -1 -1 0.20 18460 1 0.04 -1 -1 30552 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.7 MiB 2.50 1535 16003 4670 9574 1759 63.4 MiB 0.17 0.00 3.70245 -121.975 -3.70245 3.70245 0.72 0.000806122 0.000749246 0.0658866 0.0612186 36 3640 23 6.89349e+06 380534 648988. 2245.63 2.17 0.223898 0.196113 26050 158493 -1 3090 20 1973 3104 213639 47652 4.16595 4.16595 -145.747 -4.16595 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0309992 0.0269974 185 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.45 vpr 62.90 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30440 -1 -1 24 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.3 MiB 1.71 1113 16215 4583 8770 2862 62.9 MiB 0.16 0.00 4.58387 -129.571 -4.58387 4.58387 0.72 0.000710951 0.000660868 0.0628277 0.0584299 34 3171 24 6.89349e+06 338252 618332. 2139.56 1.80 0.204675 0.179262 25762 151098 -1 2417 23 2011 2819 200313 46132 4.71448 4.71448 -156.762 -4.71448 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0307625 0.0267508 155 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.36 vpr 62.61 MiB -1 -1 0.20 18568 1 0.03 -1 -1 30728 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 24.2 MiB 1.71 1107 15151 5070 7519 2562 62.6 MiB 0.14 0.00 3.54959 -117.566 -3.54959 3.54959 0.72 0.000659358 0.000610577 0.0556216 0.0516951 34 2932 23 6.89349e+06 295971 618332. 2139.56 1.76 0.187367 0.163915 25762 151098 -1 2399 20 1742 2365 217609 44498 3.6675 3.6675 -137.365 -3.6675 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0254082 0.0221104 137 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 7.27 vpr 62.62 MiB -1 -1 0.19 18340 1 0.03 -1 -1 30556 -1 -1 21 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 23.9 MiB 1.73 1026 7153 1674 5058 421 62.6 MiB 0.08 0.00 4.09751 -116.291 -4.09751 4.09751 0.74 0.000672815 0.000626382 0.0280536 0.0261155 30 2638 22 6.89349e+06 295971 556674. 1926.21 2.73 0.201821 0.174028 25186 138497 -1 2012 19 1007 1526 92110 22521 3.65706 3.65706 -128.457 -3.65706 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.02466 0.0214887 135 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.09 vpr 62.90 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30472 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.4 MiB 1.63 1220 14543 5101 6905 2537 62.9 MiB 0.15 0.00 3.52995 -105.888 -3.52995 3.52995 0.72 0.000734753 0.000682961 0.0563677 0.0524235 34 3001 23 6.89349e+06 366440 618332. 2139.56 1.53 0.190628 0.166828 25762 151098 -1 2517 23 2081 3196 225855 52392 3.71135 3.71135 -129.415 -3.71135 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0314257 0.0272275 163 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 5.97 vpr 62.62 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30380 -1 -1 24 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1075 9725 2643 6461 621 62.6 MiB 0.10 0.00 3.38329 -98.1242 -3.38329 3.38329 0.72 0.000660121 0.00061365 0.0355858 0.0330936 34 2839 24 6.89349e+06 338252 618332. 2139.56 1.51 0.164786 0.142566 25762 151098 -1 2270 21 1463 2407 160557 37157 3.4108 3.4108 -114.758 -3.4108 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0260296 0.0225898 140 46 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.60 vpr 62.76 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30520 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.3 MiB 2.12 1060 9914 2713 6681 520 62.8 MiB 0.11 0.00 3.88598 -121.634 -3.88598 3.88598 0.72 0.000714532 0.000665774 0.0395671 0.0368537 36 2780 26 6.89349e+06 310065 648988. 2245.63 1.56 0.160409 0.139957 26050 158493 -1 2269 21 1551 2494 185666 41537 4.3158 4.3158 -143.413 -4.3158 0 0 828058. 2865.25 0.22 0.08 0.15 -1 -1 0.22 0.028022 0.0243591 148 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 7.57 vpr 62.82 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.3 MiB 2.22 1107 17979 7353 8414 2212 62.8 MiB 0.17 0.00 3.22388 -105.206 -3.22388 3.22388 0.72 0.000750526 0.000697631 0.0696902 0.0647589 36 3602 38 6.89349e+06 366440 648988. 2245.63 2.33 0.214965 0.188767 26050 158493 -1 2542 18 1905 2568 247860 66711 3.53236 3.53236 -135.12 -3.53236 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0267187 0.0233592 167 59 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.30 vpr 62.37 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30484 -1 -1 20 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.9 MiB 1.15 663 6381 1362 4156 863 62.4 MiB 0.06 0.00 3.27503 -96.719 -3.27503 3.27503 0.74 0.000577411 0.000537073 0.022738 0.0211656 34 1742 21 6.89349e+06 281877 618332. 2139.56 1.32 0.133486 0.115007 25762 151098 -1 1376 20 1195 1550 90780 23839 3.11761 3.11761 -110.014 -3.11761 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0221983 0.0192698 110 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.56 vpr 62.61 MiB -1 -1 0.18 18420 1 0.03 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 24.0 MiB 1.04 1097 14907 4140 9276 1491 62.6 MiB 0.14 0.00 3.55759 -114.415 -3.55759 3.55759 0.72 0.000631776 0.000587776 0.053575 0.0498406 34 2600 25 6.89349e+06 281877 618332. 2139.56 1.65 0.178535 0.156079 25762 151098 -1 2211 20 1517 2091 180595 39061 3.5311 3.5311 -128.714 -3.5311 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0241035 0.0209266 125 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 5.78 vpr 62.62 MiB -1 -1 0.20 18372 1 0.03 -1 -1 30696 -1 -1 22 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1112 16453 5727 8522 2204 62.6 MiB 0.16 0.00 3.81078 -113.364 -3.81078 3.81078 0.72 0.000663036 0.000616888 0.061015 0.0567583 34 2658 30 6.89349e+06 310065 618332. 2139.56 1.51 0.202144 0.177216 25762 151098 -1 2234 23 1637 2663 191282 43679 3.84466 3.84466 -130.456 -3.84466 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0284819 0.0247185 137 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 6.67 vpr 62.20 MiB -1 -1 0.18 18028 1 0.03 -1 -1 30628 -1 -1 19 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63696 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 2.46 872 12980 4374 6580 2026 62.2 MiB 0.11 0.00 3.36962 -96.2497 -3.36962 3.36962 0.72 0.000759846 0.000702727 0.0447032 0.0415657 34 2124 25 6.89349e+06 267783 618332. 2139.56 1.37 0.156539 0.136393 25762 151098 -1 1795 19 937 1305 94658 22505 2.94585 2.94585 -103.264 -2.94585 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.020792 0.0180415 108 25 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.99 vpr 62.28 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30360 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.70 862 9872 2312 7175 385 62.3 MiB 0.09 0.00 3.39233 -105.873 -3.39233 3.39233 0.73 0.000596115 0.000555104 0.0348883 0.0325112 34 2333 18 6.89349e+06 253689 618332. 2139.56 1.47 0.146944 0.127859 25762 151098 -1 1988 21 1521 2195 186409 40761 3.01341 3.01341 -115.971 -3.01341 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0236694 0.0205333 114 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.01 vpr 62.79 MiB -1 -1 0.20 18412 1 0.03 -1 -1 30456 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 24.2 MiB 1.47 1258 11969 3393 7716 860 62.8 MiB 0.13 0.00 3.60497 -117.87 -3.60497 3.60497 0.72 0.000897867 0.000836487 0.0472099 0.0438976 34 3048 23 6.89349e+06 366440 618332. 2139.56 1.59 0.188673 0.164569 25762 151098 -1 2583 20 1850 2615 204523 44922 3.69605 3.69605 -141.672 -3.69605 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0280403 0.0244515 160 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.91 vpr 62.25 MiB -1 -1 0.19 18032 1 0.05 -1 -1 30612 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.7 MiB 1.68 891 9540 2209 6800 531 62.2 MiB 0.09 0.00 2.80665 -91.3749 -2.80665 2.80665 0.73 0.000574505 0.000535319 0.0336098 0.0313151 34 2191 24 6.89349e+06 239595 618332. 2139.56 1.36 0.146801 0.127113 25762 151098 -1 1899 21 1386 1972 148508 33395 2.76806 2.76806 -107.182 -2.76806 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0227307 0.0196987 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.83 vpr 62.75 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30304 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.2 MiB 1.62 1248 15206 4757 8131 2318 62.8 MiB 0.14 0.00 3.27699 -103.317 -3.27699 3.27699 0.72 0.000691095 0.000642615 0.0580092 0.0539459 36 2918 22 6.89349e+06 310065 648988. 2245.63 3.29 0.263862 0.228904 26050 158493 -1 2533 19 1432 2074 160397 34735 3.6343 3.6343 -132.038 -3.6343 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0256614 0.0223336 146 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.11 vpr 62.91 MiB -1 -1 0.19 18292 1 0.03 -1 -1 30476 -1 -1 26 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1329 17909 6207 9283 2419 62.9 MiB 0.19 0.00 3.81048 -125.137 -3.81048 3.81048 0.72 0.00074645 0.000693493 0.0700821 0.0651197 36 3330 23 6.89349e+06 366440 648988. 2245.63 2.39 0.21787 0.191229 26050 158493 -1 2810 24 2428 3445 282007 57910 3.90149 3.90149 -148.065 -3.90149 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0330133 0.0286351 170 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.84 vpr 62.69 MiB -1 -1 0.17 18148 1 0.03 -1 -1 30484 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1153 14322 4756 7487 2079 62.7 MiB 0.13 0.00 3.0513 -100.067 -3.0513 3.0513 0.72 0.000620376 0.000577021 0.052119 0.0484872 34 2612 50 6.89349e+06 253689 618332. 2139.56 1.78 0.19689 0.171579 25762 151098 -1 2231 20 1456 1961 176343 37238 3.2214 3.2214 -120.58 -3.2214 0 0 787024. 2723.27 0.24 0.07 0.13 -1 -1 0.24 0.0239009 0.0207357 124 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 7.07 vpr 62.40 MiB -1 -1 0.17 18304 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.9 MiB 0.97 866 7558 1797 5447 314 62.4 MiB 0.08 0.00 3.24503 -99.305 -3.24503 3.24503 0.71 0.00060846 0.000566453 0.027829 0.0259148 36 2195 21 6.89349e+06 253689 648988. 2245.63 3.26 0.194526 0.167378 26050 158493 -1 1849 19 1382 2053 141599 35691 3.26576 3.26576 -120.558 -3.26576 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.022646 0.0197066 115 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.76 vpr 62.52 MiB -1 -1 0.19 18456 1 0.02 -1 -1 30700 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.1 MiB 1.48 991 8780 2200 5577 1003 62.5 MiB 0.09 0.00 3.98738 -113.412 -3.98738 3.98738 0.72 0.000654226 0.000608859 0.0323703 0.0301313 34 2671 28 6.89349e+06 310065 618332. 2139.56 1.53 0.165808 0.143881 25762 151098 -1 2194 20 1396 1985 140041 32549 3.90626 3.90626 -129.711 -3.90626 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0252021 0.0219073 133 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 7.71 vpr 62.66 MiB -1 -1 0.20 18512 1 0.03 -1 -1 30424 -1 -1 25 29 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 1.68 1061 12182 3224 7129 1829 62.7 MiB 0.12 0.00 3.15468 -90.2902 -3.15468 3.15468 0.72 0.000648988 0.000604162 0.0439955 0.0409804 36 2330 19 6.89349e+06 352346 648988. 2245.63 3.17 0.22014 0.190757 26050 158493 -1 1962 16 1257 1811 115271 27035 3.07746 3.07746 -104.488 -3.07746 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0213624 0.0186827 138 49 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 7.34 vpr 62.92 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30560 -1 -1 24 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.3 MiB 1.71 1369 17053 5029 10705 1319 62.9 MiB 0.18 0.00 4.55604 -149.34 -4.55604 4.55604 0.72 0.000758017 0.000703908 0.0682967 0.0634539 34 3495 43 6.89349e+06 338252 618332. 2139.56 2.45 0.227568 0.199414 25762 151098 -1 2877 43 3013 4771 833044 313365 4.44118 4.44118 -162.019 -4.44118 0 0 787024. 2723.27 0.22 0.25 0.13 -1 -1 0.22 0.0540634 0.0465734 166 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.97 vpr 62.12 MiB -1 -1 0.17 17940 1 0.02 -1 -1 30544 -1 -1 17 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.5 MiB 0.48 834 6616 1486 4552 578 62.1 MiB 0.06 0.00 2.72825 -89.6146 -2.72825 2.72825 0.73 0.000527887 0.000492168 0.0219057 0.0204206 30 1848 20 6.89349e+06 239595 556674. 1926.21 0.79 0.0827478 0.0722643 25186 138497 -1 1560 16 630 969 60688 14248 2.47026 2.47026 -97.6313 -2.47026 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0171306 0.0149274 92 -1 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 8.19 vpr 63.22 MiB -1 -1 0.17 18276 1 0.03 -1 -1 30572 -1 -1 27 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.3 MiB 1.69 1492 18859 6392 9640 2827 63.2 MiB 0.19 0.00 4.49353 -146.184 -4.49353 4.49353 0.74 0.000774957 0.000720456 0.0742065 0.0689205 36 3310 25 6.89349e+06 380534 648988. 2245.63 3.44 0.302098 0.263077 26050 158493 -1 2850 21 2123 2873 237412 49975 4.83204 4.83204 -172.546 -4.83204 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0307963 0.0268083 175 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.78 vpr 62.85 MiB -1 -1 0.19 18400 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.3 MiB 1.88 1341 14871 4444 8491 1936 62.9 MiB 0.15 0.00 3.86068 -134.852 -3.86068 3.86068 0.72 0.000712856 0.00066193 0.0571679 0.0530686 34 3335 45 6.89349e+06 324158 618332. 2139.56 1.96 0.219636 0.191375 25762 151098 -1 2659 24 2696 3443 262859 58747 4.42073 4.42073 -164.718 -4.42073 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0328125 0.0284982 160 93 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.26 vpr 62.76 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30464 -1 -1 22 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.3 MiB 1.66 1276 16340 4864 9817 1659 62.8 MiB 0.16 0.00 3.22388 -105.825 -3.22388 3.22388 0.72 0.000710032 0.000660124 0.0636337 0.0591678 36 2694 20 6.89349e+06 310065 648988. 2245.63 1.65 0.199018 0.174598 26050 158493 -1 2352 21 1475 2088 154158 33894 3.13401 3.13401 -118.204 -3.13401 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0282348 0.0245532 152 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.92 vpr 62.91 MiB -1 -1 0.20 18532 1 0.03 -1 -1 30716 -1 -1 26 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.3 MiB 2.14 1353 11145 2615 6808 1722 62.9 MiB 0.13 0.00 4.7155 -144.713 -4.7155 4.7155 0.73 0.000784176 0.000728611 0.0456123 0.0424237 34 3307 30 6.89349e+06 366440 618332. 2139.56 1.80 0.206202 0.179689 25762 151098 -1 2756 22 2180 3408 263738 57038 4.6589 4.6589 -162.414 -4.6589 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0327177 0.0284963 172 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.78 vpr 62.11 MiB -1 -1 0.17 18200 1 0.02 -1 -1 30360 -1 -1 15 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 224 207 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 0.79 795 11813 3897 6288 1628 62.1 MiB 0.09 0.00 2.38626 -79.468 -2.38626 2.38626 0.72 0.000498696 0.000464319 0.0381213 0.0355358 34 1763 16 6.89349e+06 211408 618332. 2139.56 1.23 0.130689 0.114107 25762 151098 -1 1574 15 675 922 81691 17248 2.07402 2.07402 -89.7432 -2.07402 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0157446 0.0137342 82 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 7.23 vpr 62.40 MiB -1 -1 0.19 18048 1 0.03 -1 -1 30704 -1 -1 20 30 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.9 MiB 1.05 927 11652 3264 6943 1445 62.4 MiB 0.11 0.00 3.59859 -111.607 -3.59859 3.59859 0.72 0.000604637 0.00056323 0.0415691 0.0387478 36 2007 23 6.89349e+06 281877 648988. 2245.63 3.24 0.207831 0.179746 26050 158493 -1 1820 21 1260 1889 150797 32661 3.59915 3.59915 -129.53 -3.59915 0 0 828058. 2865.25 0.22 0.07 0.14 -1 -1 0.22 0.0241616 0.020923 119 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 8.22 vpr 62.44 MiB -1 -1 0.16 18012 1 0.03 -1 -1 30716 -1 -1 18 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 23.8 MiB 1.61 984 12542 4726 6312 1504 62.4 MiB 0.12 0.00 3.53059 -112.398 -3.53059 3.53059 0.72 0.000616136 0.000573198 0.0454697 0.0422985 36 2829 30 6.89349e+06 253689 648988. 2245.63 3.70 0.237023 0.204778 26050 158493 -1 2228 18 1379 2510 204088 44671 3.4139 3.4139 -131.296 -3.4139 0 0 828058. 2865.25 0.23 0.08 0.15 -1 -1 0.23 0.0218345 0.0189858 120 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.12 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30588 -1 -1 21 25 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.4 MiB 1.00 589 11200 4364 4465 2371 62.1 MiB 0.08 0.00 3.0161 -72.6138 -3.0161 3.0161 0.72 0.000474362 0.000441327 0.0334326 0.0311196 34 1730 27 6.89349e+06 295971 618332. 2139.56 1.27 0.108715 0.0949609 25762 151098 -1 1364 18 813 1196 89489 21449 2.82421 2.82421 -81.1402 -2.82421 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0170355 0.0147655 92 19 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.12 vpr 62.96 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30556 -1 -1 23 32 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.4 MiB 2.02 1314 9495 2410 6520 565 63.0 MiB 0.12 0.00 3.59585 -110.102 -3.59585 3.59585 0.75 0.000727994 0.000676486 0.0389066 0.0361541 34 3403 35 6.89349e+06 324158 618332. 2139.56 2.09 0.195785 0.169651 25762 151098 -1 2671 27 2047 3024 265659 80373 3.91316 3.91316 -133.055 -3.91316 0 0 787024. 2723.27 0.22 0.11 0.13 -1 -1 0.22 0.0351312 0.0303711 161 69 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.65 vpr 63.16 MiB -1 -1 0.20 18440 1 0.03 -1 -1 30492 -1 -1 29 31 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.5 MiB 1.89 1428 17480 5123 10265 2092 63.2 MiB 0.20 0.00 3.87458 -129.852 -3.87458 3.87458 0.72 0.000772804 0.000714066 0.072039 0.0664544 34 3272 36 6.89349e+06 408721 618332. 2139.56 1.70 0.23604 0.206151 25762 151098 -1 2745 20 2162 2972 212806 48757 4.24784 4.24784 -150.445 -4.24784 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0295979 0.0257945 179 86 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt index 9f9dcae9220..f04f60e4574 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ - 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 total_power routing_power_perc clock_power_perc tile_power_perc - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.43 vpr 66.49 MiB -1 -1 0.25 21160 3 0.09 -1 -1 37088 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68088 99 130 343 473 1 230 298 12 12 144 clb auto 27.8 MiB 0.08 558 74923 22789 38020 14114 66.5 MiB 0.20 0.00 1.62851 -110.149 -1.62851 1.62851 0.35 0.000736888 0.000680142 0.0580226 0.0536729 48 1179 18 5.66058e+06 4.21279e+06 394078. 2736.65 0.85 0.207297 0.187296 13382 75762 -1 1090 9 434 665 36996 11403 1.92455 1.92455 -134.684 -1.92455 -0.437866 -0.177205 503207. 3494.49 0.14 0.03 0.08 -1 -1 0.14 0.0196182 0.0182505 0.01033 0.2476 0.08271 0.6697 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.26 vpr 69.89 MiB -1 -1 0.43 25860 15 0.35 -1 -1 37736 -1 -1 38 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71564 162 96 994 935 1 693 301 16 16 256 mult_36 auto 31.7 MiB 0.25 5466 90013 30073 52877 7063 69.9 MiB 0.53 0.01 19.5693 -1612.19 -19.5693 19.5693 0.71 0.00229609 0.00211354 0.219122 0.201629 54 11212 44 1.21132e+07 4.02797e+06 835850. 3265.04 3.78 0.852334 0.779548 26248 167850 -1 9496 15 2890 5963 1912516 499024 22.8085 22.8085 -1834.28 -22.8085 0 0 1.08614e+06 4242.72 0.34 0.48 0.17 -1 -1 0.34 0.104061 0.0971793 0.007704 0.3773 0.01773 0.605 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 621.05 vpr 464.54 MiB -1 -1 61.92 338868 122 73.25 -1 -1 83072 -1 -1 1377 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 475688 114 102 21867 21777 1 11713 1646 50 50 2500 memory auto 194.1 MiB 19.17 157972 1070186 384543 664599 21044 464.5 MiB 22.80 0.19 68.0283 -49980 -68.0283 68.0283 27.64 0.045983 0.0391823 5.65842 4.68393 94 241223 42 1.47946e+08 1.02043e+08 1.55181e+07 6207.23 321.82 23.0361 19.3789 341268 3271592 -1 216858 20 43122 165625 47382766 12201531 78.6609 78.6609 -67524.1 -78.6609 -12.3069 -0.299894 1.95446e+07 7817.85 8.50 18.80 3.90 -1 -1 8.50 3.4645 3.01925 0.08184 0.4301 0.01161 0.5583 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.40 vpr 66.22 MiB -1 -1 0.27 20820 3 0.10 -1 -1 36848 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67808 99 130 343 473 1 232 298 12 12 144 clb auto 27.8 MiB 0.10 628 72933 22467 37459 13007 66.2 MiB 0.20 0.00 1.62851 -110.561 -1.62851 1.62851 0.35 0.000730901 0.000674119 0.0568295 0.0523389 36 1527 15 5.66058e+06 4.21279e+06 305235. 2119.69 0.75 0.209392 0.189254 12238 58442 -1 1324 11 427 665 33957 10562 2.04994 2.04994 -145.267 -2.04994 -0.86181 -0.318417 378970. 2631.74 0.12 0.04 0.06 -1 -1 0.12 0.0228091 0.0210639 0.01089 0.2226 0.06435 0.7131 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 13.22 vpr 69.85 MiB -1 -1 0.41 26104 15 0.37 -1 -1 37900 -1 -1 38 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71528 162 96 994 935 1 693 301 16 16 256 mult_36 auto 31.8 MiB 0.36 5237 72877 22812 43241 6824 69.9 MiB 0.43 0.01 20.0218 -1605.51 -20.0218 20.0218 0.71 0.00226173 0.00207701 0.172882 0.158886 52 12497 42 1.21132e+07 4.02797e+06 805949. 3148.24 6.92 0.823744 0.753249 25992 162577 -1 9749 18 3091 6552 1555697 414226 22.5197 22.5197 -1814.14 -22.5197 0 0 1.06067e+06 4143.25 0.32 0.42 0.17 -1 -1 0.32 0.113197 0.105721 0.007971 0.3571 0.0171 0.6258 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 677.27 vpr 463.68 MiB -1 -1 60.28 338804 122 75.17 -1 -1 83172 -1 -1 1266 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 474812 114 102 21867 21777 1 11313 1535 50 50 2500 memory auto 192.8 MiB 36.29 154164 983996 352664 609436 21896 463.7 MiB 21.74 0.18 68.0905 -47855.5 -68.0905 68.0905 27.58 0.0450276 0.0384161 5.7023 4.73179 98 235504 48 1.47946e+08 9.60601e+07 1.60641e+07 6425.63 355.33 26.2148 21.9862 348768 3430976 -1 207765 20 42710 163367 49657573 12827698 80.0855 80.0855 -62686.5 -80.0855 -15.2001 -0.295467 2.03677e+07 8147.07 10.25 22.63 4.07 -1 -1 10.25 3.82467 3.29987 0.08386 0.4273 0.01133 0.5614 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.63 vpr 66.64 MiB -1 -1 0.26 21272 3 0.09 -1 -1 36648 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68240 99 130 343 473 1 228 298 12 12 144 clb auto 28.0 MiB 0.12 546 73928 22148 38204 13576 66.6 MiB 0.20 0.00 1.47901 -109.674 -1.47901 1.47901 0.35 0.000816969 0.00070654 0.0576112 0.0530498 54 1142 10 5.66058e+06 4.21279e+06 454457. 3155.95 0.91 0.203627 0.184224 14444 91044 -1 976 11 370 594 24419 7706 1.9169 1.9169 -133.624 -1.9169 -1.00302 -0.321515 590251. 4098.96 0.17 0.04 0.10 -1 -1 0.17 0.0228847 0.0211049 0.01055 0.2457 0.08683 0.6674 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.74 vpr 69.52 MiB -1 -1 0.43 25920 15 0.39 -1 -1 37832 -1 -1 38 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71192 162 96 994 935 1 696 301 16 16 256 mult_36 auto 31.3 MiB 0.96 5204 86989 27647 51853 7489 69.5 MiB 0.51 0.01 19.9737 -1635.86 -19.9737 19.9737 0.75 0.00224377 0.00206253 0.208889 0.192138 50 12377 41 1.21132e+07 4.02797e+06 817349. 3192.77 6.45 0.857667 0.78536 26464 163948 -1 9546 22 3259 6670 1619356 451171 23.0842 23.0842 -1909.81 -23.0842 0 0 1.05038e+06 4103.04 0.33 0.45 0.16 -1 -1 0.33 0.12871 0.119427 0.00777 0.357 0.01613 0.6269 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1055.97 vpr 495.43 MiB -1 -1 60.06 338936 122 75.77 -1 -1 82692 -1 -1 1285 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 507316 114 102 21867 21777 1 11916 1554 50 50 2500 memory auto 191.9 MiB 348.79 163092 991224 346859 620460 23905 495.4 MiB 24.89 0.21 67.129 -48054.2 -67.129 67.129 32.15 0.051619 0.0419139 6.16231 5.11615 100 237294 31 1.47946e+08 9.70841e+07 1.70584e+07 6823.36 418.43 22.7329 19.1466 363360 3730996 -1 215612 20 39922 154406 39473761 9672846 79.7977 79.7977 -65515.4 -79.7977 -15.6201 -0.295467 2.14473e+07 8578.92 9.37 14.99 4.49 -1 -1 9.37 3.04058 2.69454 0.0877 0.4265 0.01141 0.562 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.47 vpr 66.37 MiB -1 -1 0.28 21116 3 0.10 -1 -1 36744 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67960 99 130 343 473 1 225 298 12 12 144 clb auto 27.9 MiB 0.12 528 73928 24553 36249 13126 66.4 MiB 0.19 0.00 1.50426 -108.188 -1.50426 1.50426 0.36 0.000751906 0.000693911 0.0576982 0.0531402 34 1429 12 5.66058e+06 4.21279e+06 307677. 2136.65 0.76 0.208692 0.188592 12584 59343 -1 1269 12 431 642 30020 10024 1.93601 1.93601 -140.412 -1.93601 -0.836645 -0.29768 377431. 2621.05 0.12 0.04 0.06 -1 -1 0.12 0.0239813 0.0221065 0.01133 0.2039 0.06435 0.7317 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.19 vpr 70.14 MiB -1 -1 0.41 25712 15 0.37 -1 -1 37688 -1 -1 38 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71820 162 96 994 935 1 695 301 16 16 256 mult_36 auto 32.1 MiB 0.77 5514 77917 21981 48452 7484 70.1 MiB 0.45 0.01 20.0909 -1642.51 -20.0909 20.0909 0.71 0.00225015 0.00206523 0.183701 0.169328 44 12969 42 1.21132e+07 4.02797e+06 727469. 2841.68 5.37 0.821326 0.751878 25696 150430 -1 9885 20 3085 6145 1781382 507017 22.4675 22.4675 -1905.57 -22.4675 0 0 947281. 3700.32 0.30 0.47 0.15 -1 -1 0.30 0.120022 0.111703 0.008121 0.3382 0.01556 0.6463 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 949.20 vpr 495.94 MiB -1 -1 61.63 338720 122 73.20 -1 -1 82788 -1 -1 1189 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 507840 114 102 21867 21777 1 11141 1458 50 50 2500 memory auto 192.1 MiB 328.37 154833 860914 284962 556439 19513 495.9 MiB 24.93 0.21 67.0299 -50441 -67.0299 67.0299 33.25 0.0543223 0.0476931 6.73012 5.5756 98 230399 30 1.47946e+08 9.19101e+07 1.67994e+07 6719.74 334.06 28.0596 23.2187 360864 3674624 -1 204927 22 39078 156384 35109104 8233906 78.6477 78.6477 -62827.7 -78.6477 -19.6551 -0.171467 2.12220e+07 8488.81 9.65 14.24 4.20 -1 -1 9.65 3.62685 3.14136 0.08857 0.4125 0.01145 0.5761 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.83 vpr 66.44 MiB -1 -1 0.31 20860 3 0.10 -1 -1 36892 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68036 99 130 343 473 1 229 298 12 12 144 clb auto 28.1 MiB 0.14 562 75918 23527 38597 13794 66.4 MiB 0.21 0.00 1.47901 -107.3 -1.47901 1.47901 0.40 0.000738618 0.000683165 0.06135 0.0565159 40 1325 13 5.66058e+06 4.21279e+06 362583. 2517.93 0.86 0.216068 0.195786 13576 72659 -1 1210 20 441 684 41563 14070 2.00134 2.00134 -136.216 -2.00134 -0.800971 -0.298787 454087. 3153.38 0.16 0.05 0.08 -1 -1 0.16 0.03533 0.0324021 0.009923 0.24 0.07656 0.6834 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 13.51 vpr 69.98 MiB -1 -1 0.43 26008 15 0.39 -1 -1 37448 -1 -1 36 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71664 162 96 994 935 1 695 299 16 16 256 mult_36 auto 31.8 MiB 1.05 5587 88211 27454 53988 6769 70.0 MiB 0.54 0.01 19.7602 -1590.84 -19.7602 19.7602 0.79 0.00223569 0.00204166 0.217844 0.200374 46 14009 28 1.21132e+07 3.92018e+06 791147. 3090.42 5.99 0.697636 0.639775 26792 163197 -1 10514 17 3162 6487 1768324 427173 22.5439 22.5439 -1892.07 -22.5439 0 0 1.01637e+06 3970.19 0.32 0.48 0.16 -1 -1 0.32 0.113927 0.10636 0.008038 0.3604 0.01615 0.6235 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1319.56 vpr 544.10 MiB -1 -1 61.21 338832 122 75.25 -1 -1 83188 -1 -1 1284 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 557160 114 102 21867 21777 1 11781 1553 50 50 2500 memory auto 191.6 MiB 454.93 160636 999332 350641 625854 22837 544.1 MiB 26.41 0.21 68.1488 -47280.7 -68.1488 68.1488 35.51 0.0508698 0.0414613 6.53011 5.36638 98 240394 47 1.47946e+08 9.70302e+07 1.74237e+07 6969.48 564.45 27.3748 22.8404 371232 3885440 -1 211868 18 38064 151490 43925901 11022594 80.4553 80.4553 -64837.7 -80.4553 -20.7307 -0.295467 2.19566e+07 8782.65 9.59 17.36 4.62 -1 -1 9.59 3.082 2.71187 0.09037 0.415 0.0116 0.5734 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.68 vpr 66.87 MiB -1 -1 0.29 21240 3 0.10 -1 -1 36892 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68476 99 130 343 473 1 229 298 12 12 144 clb auto 28.5 MiB 0.14 562 75918 23527 38597 13794 66.9 MiB 0.18 0.00 1.47901 -107.3 -1.47901 1.47901 0.36 0.000664105 0.000604626 0.0546635 0.0501933 46 1156 21 5.66058e+06 4.21279e+06 410918. 2853.60 0.88 0.212009 0.191515 14148 82751 -1 1077 12 374 577 24392 7773 1.82159 1.82159 -130.115 -1.82159 -1.13405 -0.320482 527087. 3660.32 0.16 0.04 0.08 -1 -1 0.16 0.024923 0.0230102 0.01224 0.2095 0.07348 0.717 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 11.89 vpr 70.11 MiB -1 -1 0.39 25868 15 0.37 -1 -1 37696 -1 -1 36 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71792 162 96 994 935 1 695 299 16 16 256 mult_36 auto 31.9 MiB 1.11 5657 74225 20683 46584 6958 70.1 MiB 0.45 0.01 19.6248 -1595.85 -19.6248 19.6248 0.77 0.00216212 0.00198363 0.176807 0.162496 46 11779 24 1.21132e+07 3.92018e+06 791147. 3090.42 4.46 0.619285 0.568801 26792 163197 -1 10013 17 3079 6358 2222037 555690 21.9962 21.9962 -1849.85 -21.9962 0 0 1.01637e+06 3970.19 0.32 0.56 0.16 -1 -1 0.32 0.11186 0.10451 0.008402 0.3427 0.0158 0.6415 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1122.10 vpr 527.74 MiB -1 -1 59.48 338824 122 75.77 -1 -1 83236 -1 -1 1172 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 540408 114 102 21867 21777 1 10748 1441 50 50 2500 memory auto 191.3 MiB 446.45 144463 896401 311669 564736 19996 527.7 MiB 23.45 0.19 67.2894 -46558.8 -67.2894 67.2894 35.77 0.0488771 0.0422266 6.03039 5.07223 90 216215 45 1.47946e+08 9.09939e+07 1.62125e+07 6485.01 384.43 27.3875 22.9053 356236 3531108 -1 193984 18 35406 146636 37213174 9180894 78.188 78.188 -63965.6 -78.188 -30.7831 -0.293253 2.01810e+07 8072.38 9.29 15.51 3.95 -1 -1 9.29 3.47472 3.02841 0.08896 0.3857 0.01185 0.6025 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.79 vpr 66.44 MiB -1 -1 0.30 21184 3 0.10 -1 -1 37100 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68032 99 130 343 473 1 228 298 12 12 144 clb auto 27.7 MiB 0.13 566 73928 24365 36275 13288 66.4 MiB 0.21 0.00 1.47901 -107.356 -1.47901 1.47901 0.38 0.000784899 0.000718709 0.0621149 0.0571159 48 1091 15 5.66058e+06 4.21279e+06 394078. 2736.65 0.92 0.224857 0.203364 13382 75762 -1 1126 13 443 672 32456 10890 1.86809 1.86809 -129.554 -1.86809 -0.846557 -0.29768 503207. 3494.49 0.15 0.04 0.08 -1 -1 0.15 0.0254914 0.023453 0.0107 0.2478 0.08231 0.6699 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 12.56 vpr 69.83 MiB -1 -1 0.44 25832 15 0.40 -1 -1 37996 -1 -1 37 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71508 162 96 994 935 1 696 300 16 16 256 mult_36 auto 31.6 MiB 0.61 5334 82546 24215 51015 7316 69.8 MiB 0.50 0.01 20.0859 -1625.62 -20.0859 20.0859 0.76 0.00231806 0.00212308 0.201382 0.185213 50 11997 28 1.21132e+07 3.97408e+06 780512. 3048.87 5.66 0.800595 0.732802 25484 153448 -1 9641 15 2961 5861 1644922 437381 22.362 22.362 -1836.35 -22.362 0 0 1.00276e+06 3917.05 0.31 0.43 0.16 -1 -1 0.31 0.102012 0.095505 0.007747 0.3596 0.01665 0.6237 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1180.68 vpr 462.72 MiB -1 -1 58.56 338756 122 75.55 -1 -1 83172 -1 -1 1319 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 473824 114 102 21867 21777 1 11967 1588 50 50 2500 memory auto 192.0 MiB 247.48 166044 1011037 350626 638414 21997 462.7 MiB 28.01 0.24 67.6585 -49030.6 -67.6585 67.6585 29.12 0.0623887 0.0560392 7.60573 6.26099 100 253589 44 1.47946e+08 9.89166e+07 1.63173e+07 6526.93 643.15 29.2882 24.2021 351264 3480436 -1 224919 21 45778 171171 45207329 10711549 79.5239 79.5239 -66730.1 -79.5239 -16.8281 -0.296573 2.05845e+07 8233.80 9.76 18.29 4.02 -1 -1 9.76 3.51728 3.0368 0.08478 0.437 0.01147 0.5516 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.77 vpr 66.55 MiB -1 -1 0.31 21200 3 0.10 -1 -1 36744 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68144 99 130 343 473 1 225 298 12 12 144 clb auto 28.1 MiB 0.13 557 75918 24305 38523 13090 66.5 MiB 0.20 0.00 1.47813 -107.774 -1.47813 1.47813 0.36 0.000762218 0.00070103 0.0603836 0.0554945 48 1283 19 5.66058e+06 4.21279e+06 394078. 2736.65 0.92 0.226761 0.205176 13382 75762 -1 1147 9 351 537 28244 8500 1.93197 1.93197 -134.551 -1.93197 -1.17725 -0.29768 503207. 3494.49 0.16 0.03 0.08 -1 -1 0.16 0.0220382 0.0204694 0.01165 0.2184 0.07307 0.7086 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.54 vpr 69.66 MiB -1 -1 0.42 26192 15 0.36 -1 -1 37840 -1 -1 37 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71332 162 96 994 935 1 695 300 16 16 256 mult_36 auto 31.4 MiB 0.60 5334 94582 32842 54095 7645 69.7 MiB 0.56 0.01 20.063 -1601.01 -20.063 20.063 0.69 0.00230053 0.00209576 0.224986 0.206735 50 11798 34 1.21132e+07 3.97408e+06 780512. 3048.87 5.82 0.837805 0.766896 25484 153448 -1 9732 17 3201 6306 2027732 493670 21.8619 21.8619 -1865.76 -21.8619 0 0 1.00276e+06 3917.05 0.30 0.49 0.16 -1 -1 0.30 0.108625 0.101092 0.008175 0.3476 0.01611 0.6363 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1150.44 vpr 462.61 MiB -1 -1 60.23 338732 122 76.48 -1 -1 82600 -1 -1 1218 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 473712 114 102 21867 21777 1 11178 1487 50 50 2500 memory auto 191.3 MiB 263.32 155003 900791 303474 574797 22520 462.6 MiB 24.44 0.20 67.5465 -47786 -67.5465 67.5465 29.65 0.0534337 0.0468693 6.9956 5.82605 98 241136 34 1.47946e+08 9.34731e+07 1.60641e+07 6425.63 593.93 30.6833 25.3497 348768 3430976 -1 211511 23 44006 168763 45356106 11781849 79.4778 79.4778 -64625.7 -79.4778 -16.1411 -0.293253 2.03677e+07 8147.07 10.27 20.84 4.08 -1 -1 10.27 4.22605 3.62498 0.08529 0.422 0.01145 0.5666 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.53 vpr 66.48 MiB -1 -1 0.29 21220 3 0.10 -1 -1 37240 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68072 99 130 343 473 1 229 298 12 12 144 clb auto 27.8 MiB 0.13 557 74923 22966 38336 13621 66.5 MiB 0.20 0.00 1.47813 -110.217 -1.47813 1.47813 0.35 0.000695376 0.000643006 0.0588613 0.0541045 42 1402 12 5.66058e+06 4.21279e+06 345702. 2400.71 0.81 0.208927 0.188838 12810 66778 -1 1274 11 446 696 47442 14245 2.02151 2.02151 -140.385 -2.02151 -0.908004 -0.29768 434679. 3018.61 0.13 0.04 0.07 -1 -1 0.13 0.0227462 0.0210411 0.01004 0.2568 0.07633 0.6668 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.90 vpr 69.83 MiB -1 -1 0.40 25796 15 0.36 -1 -1 37668 -1 -1 36 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71504 162 96 994 935 1 692 299 16 16 256 mult_36 auto 31.6 MiB 0.74 5300 88211 28227 53519 6465 69.8 MiB 0.54 0.01 19.7748 -1549.87 -19.7748 19.7748 0.71 0.00234168 0.00215198 0.223729 0.20558 46 13089 38 1.21132e+07 3.92018e+06 727248. 2840.81 6.11 0.778056 0.712743 24972 144857 -1 9840 16 3255 6605 1721832 424465 22.2951 22.2951 -1776.26 -22.2951 0 0 934704. 3651.19 0.32 0.48 0.15 -1 -1 0.32 0.120097 0.112483 0.007827 0.351 0.01656 0.6324 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 950.07 vpr 462.60 MiB -1 -1 60.10 338800 122 76.08 -1 -1 82868 -1 -1 1300 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 473700 114 102 21867 21777 1 11836 1569 50 50 2500 memory auto 191.8 MiB 264.64 157435 1022225 365981 635991 20253 462.6 MiB 27.52 0.22 66.8909 -48010.2 -66.8909 66.8909 28.99 0.0529446 0.0466681 7.29295 6.1145 98 240686 35 1.47946e+08 9.78926e+07 1.60641e+07 6425.63 389.51 30.6828 25.6867 348768 3430976 -1 214568 21 44715 169112 47543300 12569964 78.8951 78.8951 -65146.7 -78.8951 -36.7791 -0.295467 2.03677e+07 8147.07 10.37 21.54 3.95 -1 -1 10.37 3.94837 3.43198 0.08527 0.4261 0.01169 0.5622 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.69 vpr 66.39 MiB -1 -1 0.30 21248 3 0.10 -1 -1 37004 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67988 99 130 343 473 1 229 298 12 12 144 clb auto 28.0 MiB 0.14 557 74923 22966 38336 13621 66.4 MiB 0.21 0.00 1.47813 -110.217 -1.47813 1.47813 0.38 0.000742521 0.000681654 0.0614498 0.0564563 42 1428 17 5.66058e+06 4.21279e+06 345702. 2400.71 0.83 0.216612 0.195319 12810 66778 -1 1265 11 442 682 46997 14196 2.02151 2.02151 -140.857 -2.02151 -0.908004 -0.29768 434679. 3018.61 0.15 0.04 0.08 -1 -1 0.15 0.0245542 0.0227498 0.01126 0.2256 0.06805 0.7064 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.80 vpr 69.91 MiB -1 -1 0.42 25952 15 0.39 -1 -1 37780 -1 -1 36 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71592 162 96 994 935 1 692 299 16 16 256 mult_36 auto 31.7 MiB 0.76 5244 79220 22649 49589 6982 69.9 MiB 0.47 0.01 19.799 -1553.65 -19.799 19.799 0.71 0.00229922 0.00210317 0.190189 0.174893 50 10718 33 1.21132e+07 3.92018e+06 780512. 3048.87 3.94 0.7731 0.70665 25484 153448 -1 9451 18 3082 6185 1718586 431190 21.9908 21.9908 -1758.73 -21.9908 0 0 1.00276e+06 3917.05 0.30 0.43 0.15 -1 -1 0.30 0.111588 0.104223 0.00827 0.3443 0.01584 0.6399 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 779.11 vpr 463.22 MiB -1 -1 59.71 337884 122 73.72 -1 -1 82768 -1 -1 1196 114 45 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:51 gh-actions-runner-vtr-auto-spawned205 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 474336 114 102 21867 21777 1 11032 1465 50 50 2500 memory auto 191.9 MiB 265.54 147775 932969 331990 578708 22271 463.2 MiB 21.66 0.19 67.3294 -48449 -67.3294 67.3294 28.04 0.0488102 0.0420934 5.83913 4.88775 98 222635 33 1.47946e+08 9.22874e+07 1.60641e+07 6425.63 236.27 24.29 20.4687 348768 3430976 -1 199507 20 41668 162108 36305341 9055188 78.9424 78.9424 -62000.9 -78.9424 -32.123 -0.293253 2.03677e+07 8147.07 9.45 14.06 4.12 -1 -1 9.45 3.03707 2.67511 0.08607 0.413 0.01165 0.5753 +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 total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.90 vpr 64.46 MiB -1 -1 0.35 18716 3 0.09 -1 -1 33488 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66004 99 130 343 473 1 230 298 12 12 144 clb auto 25.6 MiB 0.09 544 74923 23851 37473 13599 64.5 MiB 0.27 0.00 1.63028 -109.274 -1.63028 1.63028 0.29 0.00128865 0.00122109 0.100655 0.0952744 50 1182 19 5.66058e+06 4.21279e+06 406292. 2821.48 1.93 0.434504 0.398877 13526 77840 -1 1163 7 385 614 37572 11061 1.99287 1.99287 -138.562 -1.99287 -0.226375 -0.0753565 520805. 3616.70 0.11 0.04 0.08 -1 -1 0.11 0.0249771 0.0231764 0.01009 0.2536 0.08046 0.6659 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.73 vpr 67.61 MiB -1 -1 0.49 23520 15 0.32 -1 -1 34788 -1 -1 38 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69236 162 96 994 935 1 693 301 16 16 256 mult_36 auto 29.4 MiB 0.25 5466 90013 30073 52877 7063 67.6 MiB 0.66 0.01 19.5693 -1612.19 -19.5693 19.5693 0.59 0.00338384 0.00317834 0.314055 0.295054 54 11332 42 1.21132e+07 4.02797e+06 835850. 3265.04 4.03 1.18663 1.09337 26248 167850 -1 9449 17 2913 6131 1914054 502130 22.8129 22.8129 -1837.11 -22.8129 0 0 1.08614e+06 4242.72 0.26 0.56 0.17 -1 -1 0.26 0.144848 0.134916 0.007701 0.3771 0.01773 0.6051 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 644.09 vpr 461.65 MiB -1 -1 63.41 336492 122 55.99 -1 -1 78760 -1 -1 1377 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 472732 114 102 21867 21777 1 11713 1646 50 50 2500 memory auto 191.3 MiB 18.15 162710 1079900 383996 673708 22196 461.7 MiB 22.44 0.19 68.1233 -47065.4 -68.1233 68.1233 20.58 0.0605955 0.0491755 7.15632 5.91825 94 254469 44 1.47946e+08 1.02043e+08 1.55181e+07 6207.23 375.59 26.2344 21.8192 341268 3271592 -1 223335 20 44151 168967 47352216 11955555 79.1513 79.1513 -61673.1 -79.1513 -7.45362 -0.295467 1.95446e+07 7817.85 5.77 16.55 3.04 -1 -1 5.77 3.30854 2.85339 0.08188 0.4314 0.01155 0.557 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.59 vpr 64.30 MiB -1 -1 0.37 18660 3 0.08 -1 -1 33344 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65840 99 130 343 473 1 232 298 12 12 144 clb auto 25.9 MiB 0.11 615 72933 20941 38592 13400 64.3 MiB 0.26 0.00 1.62851 -109.502 -1.62851 1.62851 0.32 0.00127528 0.00120784 0.0977407 0.0924796 46 1262 8 5.66058e+06 4.21279e+06 378970. 2631.74 1.60 0.493095 0.452088 13238 73581 -1 1223 11 416 669 30315 9236 2.03998 2.03998 -140.312 -2.03998 -1.11797 -0.320482 486261. 3376.82 0.10 0.05 0.08 -1 -1 0.10 0.0332326 0.0306732 0.01109 0.2243 0.07167 0.704 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 12.54 vpr 67.82 MiB -1 -1 0.49 23444 15 0.32 -1 -1 34924 -1 -1 38 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69448 162 96 994 935 1 693 301 16 16 256 mult_36 auto 29.6 MiB 0.32 5237 72877 22812 43241 6824 67.8 MiB 0.53 0.01 20.0218 -1605.51 -20.0218 20.0218 0.58 0.00333622 0.00312138 0.254459 0.239271 52 12314 33 1.21132e+07 4.02797e+06 805949. 3148.24 6.05 1.07636 0.991487 25992 162577 -1 9628 20 3215 6888 1698140 464995 22.5291 22.5291 -1792.89 -22.5291 0 0 1.06067e+06 4143.25 0.24 0.49 0.15 -1 -1 0.24 0.149798 0.138758 0.007964 0.3566 0.01711 0.6263 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 467.93 vpr 462.82 MiB -1 -1 61.99 336996 122 58.07 -1 -1 78812 -1 -1 1266 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 473924 114 102 21867 21777 1 11313 1535 50 50 2500 memory auto 192.0 MiB 33.52 154905 975145 345666 610484 18995 462.8 MiB 20.98 0.17 68.3496 -47605.4 -68.3496 68.3496 20.51 0.0564419 0.0492477 6.99983 5.83758 98 234138 25 1.47946e+08 9.60601e+07 1.60641e+07 6425.63 184.93 25.4268 21.2142 348768 3430976 -1 209841 21 42594 162845 36460152 8488302 78.7408 78.7408 -65032.1 -78.7408 -27.9804 -0.29436 2.03677e+07 8147.07 6.52 15.07 3.58 -1 -1 6.52 3.98119 3.38427 0.08439 0.4277 0.0114 0.5609 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.99 vpr 64.65 MiB -1 -1 0.35 18632 3 0.08 -1 -1 33388 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66200 99 130 343 473 1 228 298 12 12 144 clb auto 25.8 MiB 0.12 546 73928 22148 38204 13576 64.6 MiB 0.27 0.00 1.47901 -109.674 -1.47901 1.47901 0.32 0.00129182 0.00122367 0.099582 0.0942779 54 1133 9 5.66058e+06 4.21279e+06 454457. 3155.95 0.96 0.34724 0.319122 14444 91044 -1 977 10 382 605 25675 8169 1.9169 1.9169 -133.298 -1.9169 -1.00302 -0.321515 590251. 4098.96 0.12 0.05 0.09 -1 -1 0.12 0.0312451 0.0288905 0.01056 0.2458 0.08678 0.6674 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 15.72 vpr 67.75 MiB -1 -1 0.48 23576 15 0.32 -1 -1 34816 -1 -1 38 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69372 162 96 994 935 1 696 301 16 16 256 mult_36 auto 29.6 MiB 0.72 5160 86989 26481 52706 7802 67.7 MiB 0.64 0.01 19.9022 -1613.14 -19.9022 19.9022 0.61 0.00335097 0.00315147 0.309581 0.291196 54 11545 36 1.21132e+07 4.02797e+06 875436. 3419.67 8.65 1.71226 1.57421 27228 179190 -1 9019 19 3012 6297 1602041 442630 22.5282 22.5282 -1836.67 -22.5282 0 0 1.13617e+06 4438.18 0.26 0.47 0.16 -1 -1 0.26 0.145887 0.135336 0.007981 0.3628 0.01745 0.6197 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 648.61 vpr 493.18 MiB -1 -1 63.03 336444 122 59.70 -1 -1 78748 -1 -1 1285 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 505012 114 102 21867 21777 1 11916 1554 50 50 2500 memory auto 189.6 MiB 237.10 156086 991224 356446 615949 18829 493.2 MiB 22.33 0.19 67.7498 -48352.3 -67.7498 67.7498 23.63 0.0631768 0.0512635 7.28912 6.02364 98 228375 23 1.47946e+08 9.70841e+07 1.67994e+07 6719.74 154.16 24.716 20.556 360864 3674624 -1 206417 18 39092 151633 42690266 10891118 78.9831 78.9831 -61461.1 -78.9831 -24.1711 -0.293253 2.12220e+07 8488.81 6.65 14.76 3.41 -1 -1 6.65 3.06644 2.65834 0.08717 0.4215 0.01153 0.567 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.70 vpr 64.36 MiB -1 -1 0.35 18512 3 0.09 -1 -1 33464 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65908 99 130 343 473 1 225 298 12 12 144 clb auto 25.8 MiB 0.12 528 73928 24553 36249 13126 64.4 MiB 0.26 0.00 1.50426 -108.188 -1.50426 1.50426 0.31 0.00127183 0.00120229 0.099254 0.0938163 34 1411 13 5.66058e+06 4.21279e+06 307677. 2136.65 0.80 0.353088 0.324871 12584 59343 -1 1225 11 443 691 31148 10241 1.93601 1.93601 -143.858 -1.93601 -0.836645 -0.29768 377431. 2621.05 0.09 0.05 0.06 -1 -1 0.09 0.033439 0.0308739 0.01122 0.1961 0.06498 0.739 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 11.67 vpr 67.84 MiB -1 -1 0.48 23612 15 0.33 -1 -1 34828 -1 -1 38 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69464 162 96 994 935 1 695 301 16 16 256 mult_36 auto 29.7 MiB 0.63 5506 77917 21060 49201 7656 67.8 MiB 0.56 0.01 19.9999 -1653 -19.9999 19.9999 0.60 0.00331609 0.00311658 0.270506 0.254241 44 11899 26 1.21132e+07 4.02797e+06 727469. 2841.68 4.72 1.03927 0.95732 25696 150430 -1 9838 20 3380 6941 2069439 590818 22.6088 22.6088 -1930.69 -22.6088 0 0 947281. 3700.32 0.23 0.58 0.14 -1 -1 0.23 0.152497 0.141345 0.008097 0.3394 0.01552 0.645 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 719.95 vpr 501.86 MiB -1 -1 62.96 336528 122 60.29 -1 -1 78684 -1 -1 1189 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 513904 114 102 21867 21777 1 11141 1458 50 50 2500 memory auto 189.8 MiB 242.03 151671 877442 294631 565026 17785 501.9 MiB 20.36 0.17 66.7393 -48653.4 -66.7393 66.7393 24.26 0.0581963 0.0507924 7.01141 5.81821 98 227164 48 1.47946e+08 9.19101e+07 1.67994e+07 6719.74 220.91 29.8183 24.8525 360864 3674624 -1 202153 20 38608 153593 41535943 10313911 79.2169 79.2169 -64118.2 -79.2169 -17.5534 -0.293253 2.12220e+07 8488.81 7.12 13.91 3.39 -1 -1 7.12 3.25603 2.83749 0.08839 0.4125 0.01141 0.5761 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.91 vpr 64.72 MiB -1 -1 0.35 18516 3 0.09 -1 -1 33484 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66272 99 130 343 473 1 229 298 12 12 144 clb auto 26.1 MiB 0.13 562 75918 23527 38597 13794 64.7 MiB 0.27 0.00 1.47901 -107.3 -1.47901 1.47901 0.31 0.00128865 0.00122097 0.1023 0.0965068 40 1324 13 5.66058e+06 4.21279e+06 362583. 2517.93 0.86 0.357407 0.32855 13576 72659 -1 1180 20 431 672 41695 14172 2.00134 2.00134 -135.604 -2.00134 -0.800971 -0.298787 454087. 3153.38 0.11 0.08 0.07 -1 -1 0.11 0.0523674 0.048081 0.009853 0.2346 0.07711 0.6883 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.63 vpr 67.95 MiB -1 -1 0.48 23612 15 0.32 -1 -1 34840 -1 -1 36 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69580 162 96 994 935 1 695 299 16 16 256 mult_36 auto 29.9 MiB 0.77 5573 88211 29377 52457 6377 67.9 MiB 0.65 0.01 19.759 -1545.48 -19.759 19.759 0.62 0.00331757 0.00311481 0.305844 0.287257 46 12951 37 1.21132e+07 3.92018e+06 791147. 3090.42 5.47 0.965427 0.890559 26792 163197 -1 10199 18 3457 7204 2092901 497930 22.2343 22.2343 -1778.65 -22.2343 0 0 1.01637e+06 3970.19 0.23 0.55 0.14 -1 -1 0.23 0.138909 0.128846 0.008071 0.3566 0.01629 0.6271 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 849.72 vpr 542.13 MiB -1 -1 61.19 336332 122 61.15 -1 -1 78824 -1 -1 1284 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 555144 114 102 21867 21777 1 11781 1553 50 50 2500 memory auto 189.6 MiB 303.18 163312 1008321 351993 634238 22090 542.1 MiB 22.71 0.19 68.219 -49596.7 -68.219 68.219 27.02 0.0589925 0.0514004 7.29579 6.16201 98 241351 21 1.47946e+08 9.70302e+07 1.74237e+07 6969.48 284.53 26.9969 22.6534 371232 3885440 -1 215516 19 38020 149899 41854049 9964223 80.4095 80.4095 -67234.6 -80.4095 -20.3631 -0.317384 2.19566e+07 8782.65 6.67 13.79 3.63 -1 -1 6.67 3.03513 2.63884 0.09062 0.4169 0.01157 0.5715 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.97 vpr 64.46 MiB -1 -1 0.35 18708 3 0.11 -1 -1 33340 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66012 99 130 343 473 1 229 298 12 12 144 clb auto 25.9 MiB 0.13 562 75918 23527 38597 13794 64.5 MiB 0.27 0.00 1.47901 -107.3 -1.47901 1.47901 0.31 0.00128422 0.00121735 0.102297 0.0965198 46 1160 20 5.66058e+06 4.21279e+06 410918. 2853.60 0.93 0.370877 0.341064 14148 82751 -1 1097 12 373 570 24285 7764 1.82159 1.82159 -133.333 -1.82159 -1.13405 -0.320482 527087. 3660.32 0.12 0.05 0.08 -1 -1 0.12 0.0354336 0.0326913 0.01229 0.2125 0.07318 0.7144 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 11.80 vpr 68.16 MiB -1 -1 0.48 23684 15 0.32 -1 -1 34884 -1 -1 36 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69792 162 96 994 935 1 695 299 16 16 256 mult_36 auto 30.0 MiB 0.83 5657 74225 20683 46584 6958 68.2 MiB 0.55 0.01 19.6248 -1595.85 -19.6248 19.6248 0.62 0.00332687 0.00311747 0.262029 0.245561 46 12167 24 1.21132e+07 3.92018e+06 791147. 3090.42 4.63 0.878469 0.810931 26792 163197 -1 10022 18 3008 6207 2156117 538661 22.1167 22.1167 -1848.22 -22.1167 0 0 1.01637e+06 3970.19 0.23 0.56 0.14 -1 -1 0.23 0.13887 0.128848 0.008369 0.3427 0.01579 0.6415 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 874.39 vpr 525.92 MiB -1 -1 61.47 336372 122 60.69 -1 -1 78864 -1 -1 1172 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 538540 114 102 21867 21777 1 10748 1441 50 50 2500 memory auto 189.6 MiB 294.94 146870 896401 314539 559645 22217 525.9 MiB 21.29 0.18 67.5469 -48315.6 -67.5469 67.5469 28.37 0.0618058 0.0513724 7.3404 6.10737 88 224953 37 1.47946e+08 9.09939e+07 1.59255e+07 6370.18 320.17 24.3034 20.1874 353736 3474828 -1 197064 20 39063 159216 38171439 9600414 78.8565 78.8565 -65767.2 -78.8565 -15.4361 -0.295467 1.98712e+07 7948.47 5.78 12.40 2.98 -1 -1 5.78 3.06512 2.65011 0.08849 0.3838 0.01182 0.6044 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.78 vpr 64.45 MiB -1 -1 0.34 18520 3 0.08 -1 -1 33480 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66000 99 130 343 473 1 228 298 12 12 144 clb auto 25.6 MiB 0.12 566 73928 24365 36275 13288 64.5 MiB 0.27 0.00 1.47901 -107.356 -1.47901 1.47901 0.29 0.00128863 0.00121177 0.100342 0.094676 48 1115 15 5.66058e+06 4.21279e+06 394078. 2736.65 0.88 0.358722 0.329897 13382 75762 -1 1121 12 449 694 33310 11070 1.86809 1.86809 -134.536 -1.86809 -0.846557 -0.29768 503207. 3494.49 0.13 0.05 0.08 -1 -1 0.13 0.0352542 0.0325204 0.01066 0.2455 0.08256 0.672 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 11.82 vpr 67.51 MiB -1 -1 0.49 23640 15 0.32 -1 -1 34932 -1 -1 37 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69128 162 96 994 935 1 696 300 16 16 256 mult_36 auto 29.4 MiB 0.48 5334 82546 24215 51015 7316 67.5 MiB 0.60 0.01 20.0859 -1625.62 -20.0859 20.0859 0.58 0.00333443 0.0031292 0.28816 0.270637 50 11681 30 1.21132e+07 3.97408e+06 780512. 3048.87 5.18 1.07865 0.994093 25484 153448 -1 9584 18 3013 6008 1705854 456599 22.331 22.331 -1828.16 -22.331 0 0 1.00276e+06 3917.05 0.23 0.48 0.14 -1 -1 0.23 0.138474 0.128499 0.007755 0.3595 0.01666 0.6239 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 918.04 vpr 460.86 MiB -1 -1 62.40 336720 122 63.04 -1 -1 78776 -1 -1 1319 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 471924 114 102 21867 21777 1 11967 1588 50 50 2500 memory auto 189.9 MiB 171.64 164746 1011037 348759 641651 20627 460.9 MiB 22.24 0.18 68.4163 -48167.3 -68.4163 68.4163 21.30 0.0579775 0.0505698 7.15784 5.99644 100 247488 32 1.47946e+08 9.89166e+07 1.63173e+07 6526.93 489.49 27.203 22.5948 351264 3480436 -1 221248 21 45562 172200 45407958 11286767 79.3602 79.3602 -66131.6 -79.3602 -40.3462 -0.198764 2.05845e+07 8233.80 6.16 14.46 3.36 -1 -1 6.16 3.25324 2.81173 0.08475 0.4363 0.01149 0.5522 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.96 vpr 64.24 MiB -1 -1 0.34 18604 3 0.09 -1 -1 33392 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65780 99 130 343 473 1 225 298 12 12 144 clb auto 25.6 MiB 0.12 528 75918 21822 40797 13299 64.2 MiB 0.27 0.00 1.47813 -108.74 -1.47813 1.47813 0.29 0.00128271 0.0012157 0.102011 0.0963015 46 1171 13 5.66058e+06 4.21279e+06 378970. 2631.74 0.76 0.269507 0.248946 13238 73581 -1 1035 11 397 627 25800 8390 1.85992 1.85992 -133.635 -1.85992 -1.12208 -0.320482 486261. 3376.82 0.10 0.05 0.08 -1 -1 0.10 0.0331552 0.0306031 0.01193 0.21 0.07296 0.717 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.04 vpr 67.72 MiB -1 -1 0.48 23608 15 0.32 -1 -1 34824 -1 -1 37 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69344 162 96 994 935 1 695 300 16 16 256 mult_36 auto 29.5 MiB 0.48 5334 94582 32842 54095 7645 67.7 MiB 0.69 0.01 20.063 -1601.01 -20.063 20.063 0.59 0.00331846 0.00312238 0.326432 0.306658 50 11603 31 1.21132e+07 3.97408e+06 780512. 3048.87 5.24 1.12601 1.03903 25484 153448 -1 9665 17 3178 6302 1975109 484356 21.8861 21.8861 -1852.62 -21.8861 0 0 1.00276e+06 3917.05 0.23 0.52 0.14 -1 -1 0.23 0.132922 0.123413 0.008172 0.3478 0.0161 0.6361 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 674.17 vpr 461.14 MiB -1 -1 61.54 336900 122 61.32 -1 -1 78740 -1 -1 1218 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 472212 114 102 21867 21777 1 11178 1487 50 50 2500 memory auto 190.2 MiB 184.92 152237 909275 307296 580523 21456 461.1 MiB 19.94 0.17 68.7763 -48444.9 -68.7763 68.7763 20.58 0.0606051 0.0491968 6.93021 5.72645 94 239602 41 1.47946e+08 9.34731e+07 1.55181e+07 6207.23 235.15 26.6999 22.1067 341268 3271592 -1 209840 21 43593 168291 46545278 11074733 79.2182 79.2182 -68890.1 -79.2182 -11.5842 -0.341744 1.95446e+07 7817.85 5.87 16.48 3.06 -1 -1 5.87 3.47492 2.97968 0.08413 0.4136 0.01157 0.5749 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.97 vpr 64.64 MiB -1 -1 0.34 18808 3 0.09 -1 -1 33348 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66188 99 130 343 473 1 229 298 12 12 144 clb auto 25.8 MiB 0.12 557 74923 22966 38336 13621 64.6 MiB 0.27 0.00 1.47813 -110.217 -1.47813 1.47813 0.29 0.00128644 0.00121897 0.101223 0.0955831 42 1426 11 5.66058e+06 4.21279e+06 345702. 2400.71 0.84 0.351309 0.323248 12810 66778 -1 1309 11 439 670 47893 14490 2.02151 2.02151 -143.942 -2.02151 -0.908004 -0.29768 434679. 3018.61 0.10 0.05 0.07 -1 -1 0.10 0.0330479 0.0305083 0.01006 0.2583 0.07617 0.6656 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 13.70 vpr 67.84 MiB -1 -1 0.49 23696 15 0.36 -1 -1 34848 -1 -1 36 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69472 162 96 994 935 1 692 299 16 16 256 mult_36 auto 29.7 MiB 0.62 5300 88211 28227 53519 6465 67.8 MiB 0.64 0.01 19.7748 -1549.87 -19.7748 19.7748 0.59 0.00331514 0.00311564 0.30708 0.288507 48 11536 26 1.21132e+07 3.92018e+06 756778. 2956.16 6.86 1.35509 1.24751 25228 149258 -1 9590 19 3125 6305 1517507 378106 22.1996 22.1996 -1759.12 -22.1996 0 0 968034. 3781.38 0.22 0.44 0.14 -1 -1 0.22 0.144326 0.133895 0.007864 0.3519 0.0168 0.6313 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 655.52 vpr 460.18 MiB -1 -1 61.90 336656 122 58.36 -1 -1 78808 -1 -1 1300 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 471224 114 102 21867 21777 1 11836 1569 50 50 2500 memory auto 189.5 MiB 177.69 160200 1022225 364221 635845 22159 460.2 MiB 23.05 0.18 67.9504 -47486.5 -67.9504 67.9504 21.38 0.059942 0.0524043 7.50842 6.25178 96 248638 40 1.47946e+08 9.78926e+07 1.58254e+07 6330.17 221.29 25.8127 21.5236 343768 3324272 -1 218442 20 45159 171148 42998225 11001164 79.8479 79.8479 -62563.8 -79.8479 -26.3242 -0.29436 1.97871e+07 7914.84 5.95 16.20 3.20 -1 -1 5.95 3.45564 2.97194 0.08444 0.4226 0.01165 0.5658 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.01 vpr 64.29 MiB -1 -1 0.29 18624 3 0.09 -1 -1 33572 -1 -1 68 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65828 99 130 343 473 1 229 298 12 12 144 clb auto 25.7 MiB 0.12 557 74923 22966 38336 13621 64.3 MiB 0.27 0.00 1.47813 -110.217 -1.47813 1.47813 0.29 0.0012857 0.00121864 0.10076 0.0951497 42 1410 31 5.66058e+06 4.21279e+06 345702. 2400.71 0.90 0.392809 0.360873 12810 66778 -1 1268 10 422 650 44532 13601 2.02151 2.02151 -139.946 -2.02151 -0.908004 -0.29768 434679. 3018.61 0.10 0.05 0.07 -1 -1 0.10 0.0308303 0.0284813 0.01128 0.2269 0.06795 0.7052 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.83 vpr 68.07 MiB -1 -1 0.47 23796 15 0.32 -1 -1 34860 -1 -1 36 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69704 162 96 994 935 1 692 299 16 16 256 mult_36 auto 29.9 MiB 0.59 5244 79220 22649 49589 6982 68.1 MiB 0.58 0.01 19.799 -1553.65 -19.799 19.799 0.59 0.00329666 0.00309669 0.277492 0.260839 50 10456 23 1.21132e+07 3.92018e+06 780512. 3048.87 4.13 1.04066 0.959757 25484 153448 -1 9482 18 2974 5954 1664462 413623 22.1319 22.1319 -1798.66 -22.1319 0 0 1.00276e+06 3917.05 0.23 0.47 0.14 -1 -1 0.23 0.140364 0.130243 0.008245 0.3449 0.01579 0.6393 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 568.05 vpr 460.13 MiB -1 -1 60.06 336732 122 62.17 -1 -1 78772 -1 -1 1196 114 45 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 471172 114 102 21867 21777 1 11032 1465 50 50 2500 memory auto 188.8 MiB 182.84 146858 932969 336312 574348 22309 460.1 MiB 20.39 0.16 68.0761 -45552 -68.0761 68.0761 20.42 0.0573135 0.0499387 7.08067 5.9018 92 225299 37 1.47946e+08 9.22874e+07 1.52089e+07 6083.58 131.75 25.1862 20.9981 338772 3221652 -1 202542 23 47644 183855 42074841 10268024 80.6793 80.6793 -60044.2 -80.6793 -31.6165 -0.199574 1.93279e+07 7731.17 6.07 15.37 3.00 -1 -1 6.07 3.57543 3.06982 0.08438 0.4051 0.01147 0.5834 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt index caef1f593e3..3039e538e22 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt @@ -1,20 +1,20 @@ 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 -k6_N10_40nm.xml alu4.pre-vpr.blif common 5.62 vpr 64.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66356 14 8 926 934 0 478 118 12 12 144 clb auto 27.3 MiB 0.39 4890 8499 1547 6397 555 64.8 MiB 0.18 0.00 4.30411 -31.1204 -4.30411 nan 0.37 0.00207758 0.00179123 0.0796669 0.0709205 46 7481 41 5.3894e+06 5.17382e+06 394751. 2741.33 2.17 0.594842 0.517234 11608 77537 -1 6887 22 4011 15773 516109 90362 4.67591 nan -33.9187 -4.67591 0 0 505417. 3509.84 0.17 0.31 0.08 -1 -1 0.17 0.151642 0.136395 -k6_N10_40nm.xml apex2.pre-vpr.blif common 12.22 vpr 67.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68652 39 3 1113 1117 0 655 156 13 13 169 clb auto 29.6 MiB 0.56 7935 15659 2991 11028 1640 67.0 MiB 0.34 0.01 4.92741 -14.6454 -4.92741 nan 0.46 0.0031688 0.00265493 0.138517 0.120778 68 13030 33 6.52117e+06 6.14392e+06 686008. 4059.22 8.10 1.52644 1.31539 16038 133463 -1 11835 21 6567 33176 1277336 184624 5.27803 nan -15.6183 -5.27803 0 0 842935. 4987.78 0.27 0.46 0.13 -1 -1 0.27 0.140689 0.126267 -k6_N10_40nm.xml apex4.pre-vpr.blif common 8.13 vpr 65.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67128 9 19 897 916 0 536 123 12 12 144 clb auto 27.8 MiB 0.46 6438 8968 1701 6804 463 65.6 MiB 0.21 0.01 4.47343 -73.0574 -4.47343 nan 0.38 0.00268472 0.00225931 0.0911222 0.0806535 62 11039 50 5.3894e+06 5.11993e+06 523024. 3632.11 4.53 0.993696 0.860544 13040 101000 -1 9472 26 6626 34582 1376638 204970 4.82975 nan -79.6217 -4.82975 0 0 643745. 4470.45 0.22 0.54 0.10 -1 -1 0.22 0.166159 0.148678 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 11.78 vpr 66.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68452 263 197 1372 1603 1 490 554 17 17 289 io auto 28.9 MiB 0.33 4418 171104 52785 107808 10511 66.8 MiB 0.79 0.02 2.50072 -621.681 -2.50072 2.50072 0.94 0.00286546 0.00254929 0.254097 0.227315 36 7542 36 1.21262e+07 5.06604e+06 690635. 2389.74 6.74 1.47724 1.31687 21654 134225 -1 7060 19 2486 11874 613324 117315 2.78085 2.78085 -723.103 -2.78085 0 0 848598. 2936.33 0.35 0.32 0.12 -1 -1 0.35 0.144506 0.131421 -k6_N10_40nm.xml clma.pre-vpr.blif common 32.59 vpr 91.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93476 383 82 3674 4077 1 2327 845 22 22 484 clb auto 54.0 MiB 1.73 31267 412124 152635 204610 54879 91.3 MiB 4.60 0.05 7.47585 -312.521 -7.47585 7.47585 1.75 0.010442 0.00932226 1.21775 1.00997 84 53656 50 2.15576e+07 2.04797e+07 2.51888e+06 5204.31 14.30 3.61495 3.01009 52004 527324 -1 45510 31 23367 107028 5021544 674019 7.8817 7.8817 -343.677 -7.8817 0 0 3.18804e+06 6586.86 0.86 1.44 0.31 -1 -1 0.86 0.466806 0.410076 -k6_N10_40nm.xml des.pre-vpr.blif common 10.18 vpr 64.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 256 245 954 1199 0 610 600 18 18 324 io auto 26.3 MiB 0.25 5170 154869 45044 102028 7797 64.5 MiB 0.62 0.01 3.62435 -664.313 -3.62435 nan 1.08 0.00276066 0.00256029 0.180969 0.16834 34 8174 25 1.37969e+07 5.33551e+06 748928. 2311.50 5.03 0.953533 0.884487 24000 145208 -1 7456 24 2752 6594 388502 81269 4.34006 nan -764.522 -4.34006 0 0 917842. 2832.85 0.38 0.29 0.13 -1 -1 0.38 0.159148 0.148998 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.49 vpr 65.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67204 64 39 1371 1410 1 553 200 12 12 144 clb auto 27.7 MiB 0.35 3803 26480 5673 19127 1680 65.6 MiB 0.32 0.01 4.81228 -954.181 -4.81228 4.81228 0.39 0.00260356 0.00234012 0.138032 0.121769 42 5586 22 5.3894e+06 5.22772e+06 360275. 2501.91 3.35 0.924429 0.803324 11180 70362 -1 4978 23 3033 10025 379090 65211 5.41396 5.41396 -1077.53 -5.41396 0 0 451357. 3134.42 0.16 0.27 0.07 -1 -1 0.16 0.153469 0.136879 -k6_N10_40nm.xml dsip.pre-vpr.blif common 7.41 vpr 66.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68184 229 197 1370 1567 1 535 521 16 16 256 io auto 28.6 MiB 0.33 4719 161836 50938 103448 7450 66.6 MiB 0.79 0.01 2.55942 -628.566 -2.55942 2.55942 0.77 0.00310499 0.00274419 0.248186 0.221639 36 8208 25 1.05632e+07 5.11993e+06 605313. 2364.50 2.64 0.818457 0.733718 19136 117450 -1 7476 24 2889 11085 601661 118409 3.08179 3.08179 -752.817 -3.08179 0 0 744064. 2906.50 0.29 0.36 0.11 -1 -1 0.29 0.176148 0.159857 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 23.14 vpr 78.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80324 131 114 3421 3535 1 1217 475 18 18 324 clb auto 41.2 MiB 1.04 11253 126411 35653 84646 6112 78.4 MiB 1.39 0.02 6.86727 -3961.07 -6.86727 6.86727 1.10 0.00686081 0.00612294 0.539197 0.463662 50 18798 30 1.37969e+07 1.23956e+07 1.02665e+06 3168.68 6.56 2.26669 1.95198 27232 203968 -1 16839 30 8794 41217 1812646 269971 7.43094 7.43094 -4578.41 -7.43094 0 0 1.31637e+06 4062.87 0.53 1.09 0.19 -1 -1 0.53 0.560039 0.492854 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 27.64 vpr 82.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84008 10 10 2659 2669 0 1417 322 20 20 400 clb auto 45.6 MiB 1.58 27044 60987 17180 41783 2024 82.0 MiB 1.50 0.02 6.33128 -61.2732 -6.33128 nan 1.43 0.00848918 0.00692837 0.552211 0.465632 92 46231 38 1.74617e+07 1.6276e+07 2.23535e+06 5588.37 17.03 3.10167 2.63376 44892 464844 -1 41031 23 12315 74941 3786397 446925 6.7446 nan -64.6536 -6.7446 0 0 2.81709e+06 7042.72 0.76 1.04 0.28 -1 -1 0.76 0.311605 0.27712 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 7.02 vpr 63.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65496 8 63 761 824 0 443 149 11 11 121 clb auto 26.1 MiB 0.34 4386 12363 2288 9164 911 64.0 MiB 0.19 0.00 3.57272 -159.885 -3.57272 nan 0.30 0.0017518 0.00151413 0.0768384 0.0680081 60 6581 25 4.36541e+06 4.20373e+06 415439. 3433.38 4.22 0.935921 0.810497 10782 80709 -1 6074 24 4603 21281 754452 122569 4.15666 nan -180.098 -4.15666 0 0 519794. 4295.81 0.16 0.31 0.09 -1 -1 0.16 0.115862 0.104363 -k6_N10_40nm.xml frisc.pre-vpr.blif common 23.98 vpr 78.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80080 20 116 3175 3291 1 1254 376 18 18 324 clb auto 41.2 MiB 0.98 15316 84448 21608 57191 5649 78.2 MiB 1.20 0.02 8.10215 -4225.02 -8.10215 8.10215 1.06 0.00678124 0.00608609 0.459185 0.401493 64 24240 38 1.37969e+07 1.29346e+07 1.31637e+06 4062.87 8.85 2.58275 2.21621 30460 263268 -1 21638 31 9039 38390 1872289 276520 8.94296 8.94296 -4800.31 -8.94296 0 0 1.63962e+06 5060.55 0.64 1.00 0.28 -1 -1 0.64 0.487622 0.427911 -k6_N10_40nm.xml misex3.pre-vpr.blif common 8.96 vpr 64.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66088 14 14 828 842 0 488 115 12 12 144 clb auto 26.8 MiB 0.36 4825 7927 1280 6128 519 64.5 MiB 0.18 0.00 4.14228 -53.1378 -4.14228 nan 0.38 0.00183841 0.00158874 0.0794201 0.0704541 60 7402 27 5.3894e+06 4.68878e+06 505417. 3509.84 5.42 1.09222 0.945297 12896 98790 -1 6820 27 5624 26487 956143 146571 4.40603 nan -57.9879 -4.40603 0 0 632511. 4392.44 0.20 0.41 0.09 -1 -1 0.20 0.143802 0.129014 -k6_N10_40nm.xml pdc.pre-vpr.blif common 30.57 vpr 82.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84896 16 40 2839 2879 0 1501 363 20 20 400 clb auto 46.4 MiB 1.33 24742 75415 21527 50762 3126 82.9 MiB 1.57 0.02 6.09076 -226.074 -6.09076 nan 1.40 0.00788467 0.00640777 0.549585 0.458565 82 41591 49 1.74617e+07 1.65455e+07 2.00877e+06 5021.92 16.38 3.5999 2.99525 42096 413520 -1 36583 23 13448 77785 3454726 451976 6.817 nan -248.809 -6.817 0 0 2.51236e+06 6280.89 1.06 1.63 0.45 -1 -1 1.06 0.558085 0.491409 -k6_N10_40nm.xml s298.pre-vpr.blif common 5.56 vpr 63.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64904 4 6 726 732 1 378 87 11 11 121 clb auto 25.7 MiB 0.33 3794 4887 737 3962 188 63.4 MiB 0.14 0.00 5.75107 -47.4803 -5.75107 5.75107 0.30 0.00206572 0.00180799 0.06924 0.0621571 44 6402 37 4.36541e+06 4.14984e+06 309216. 2555.51 2.21 0.57592 0.504839 9582 61621 -1 5464 31 4013 21407 843648 129067 6.53551 6.53551 -54.1344 -6.53551 0 0 401578. 3318.83 0.13 0.38 0.06 -1 -1 0.13 0.149211 0.133771 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 37.89 vpr 87.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89760 39 304 4677 4982 1 2229 711 22 22 484 clb auto 50.3 MiB 1.19 16540 260815 76679 170596 13540 87.7 MiB 2.54 0.03 4.30486 -2914.55 -4.30486 4.30486 1.75 0.00890903 0.0079919 0.804071 0.684575 50 23250 29 2.15576e+07 1.9833e+07 1.57675e+06 3257.74 16.35 4.7809 4.07222 40896 315528 -1 21935 24 12300 34302 1482300 264679 5.38319 5.38319 -3311.71 -5.38319 0 0 2.02322e+06 4180.21 0.85 1.00 0.31 -1 -1 0.85 0.559897 0.489084 -k6_N10_40nm.xml seq.pre-vpr.blif common 9.34 vpr 66.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67724 41 35 1006 1041 0 588 179 13 13 169 clb auto 28.6 MiB 0.49 6805 20339 4089 14118 2132 66.1 MiB 0.35 0.01 4.30872 -124.209 -4.30872 nan 0.47 0.00288552 0.00245834 0.138198 0.121117 58 12595 48 6.52117e+06 5.55108e+06 584019. 3455.73 5.16 1.17514 1.02484 15030 115912 -1 10412 27 6403 30982 1209689 183801 4.5826 nan -137.56 -4.5826 0 0 741857. 4389.69 0.25 0.53 0.11 -1 -1 0.25 0.184766 0.165359 -k6_N10_40nm.xml spla.pre-vpr.blif common 29.70 vpr 77.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79076 16 46 2232 2278 0 1154 307 18 18 324 clb auto 40.2 MiB 1.04 16792 54127 13369 38397 2361 77.2 MiB 1.05 0.02 5.72007 -192.648 -5.72007 nan 1.09 0.00671319 0.00549092 0.387252 0.326682 70 27913 31 1.37969e+07 1.3204e+07 1.42834e+06 4408.47 19.32 3.67179 3.09826 31752 286880 -1 24212 20 9068 51429 2055146 284738 6.33879 nan -215.924 -6.33879 0 0 1.78317e+06 5503.60 0.71 0.91 0.30 -1 -1 0.71 0.302668 0.271065 -k6_N10_40nm.xml tseng.pre-vpr.blif common 15.82 vpr 66.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success 5bc8820-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-10T19:48:13 gh-actions-runner-vtr-auto-spawned44 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67704 52 122 1461 1583 1 509 284 13 13 169 clb auto 28.3 MiB 0.31 3040 50666 12428 35214 3024 66.1 MiB 0.39 0.01 4.35011 -1184.05 -4.35011 4.35011 0.47 0.00246561 0.00222714 0.150264 0.134178 182 3991 21 6.52117e+06 5.92834e+06 1.59512e+06 9438.56 10.68 1.50844 1.30907 28470 343752 -1 3959 62 2500 7090 410715 53869 4.65244 4.65244 -1282.16 -4.65244 0 0 2.00730e+06 11877.5 0.70 0.43 0.48 -1 -1 0.70 0.286095 0.252927 +k6_N10_40nm.xml alu4.pre-vpr.blif common 5.47 vpr 62.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64392 14 8 926 934 0 478 118 12 12 144 clb auto 25.3 MiB 0.31 4883 9366 1630 7102 634 62.9 MiB 0.19 0.00 4.28812 -30.9258 -4.28812 nan 0.27 0.00235926 0.00208792 0.0929837 0.083737 46 7615 33 5.3894e+06 5.17382e+06 394751. 2741.33 2.26 0.648748 0.553702 11608 77537 -1 6996 25 4856 19700 686382 115972 4.71098 nan -33.985 -4.71098 0 0 505417. 3509.84 0.11 0.32 0.06 -1 -1 0.11 0.140071 0.123075 +k6_N10_40nm.xml apex2.pre-vpr.blif common 7.66 vpr 64.81 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66364 39 3 1113 1117 0 655 156 13 13 169 clb auto 27.0 MiB 0.42 7913 17335 3246 12395 1694 64.8 MiB 0.33 0.01 4.97634 -14.8471 -4.97634 nan 0.35 0.00281011 0.00247529 0.132512 0.119044 64 12995 30 6.52117e+06 6.14392e+06 645515. 3819.62 3.64 0.883083 0.754547 15702 127304 -1 12306 28 7937 40377 1683171 240757 5.62482 nan -16.314 -5.62482 0 0 804841. 4762.37 0.17 0.56 0.10 -1 -1 0.17 0.182849 0.160736 +k6_N10_40nm.xml apex4.pre-vpr.blif common 8.05 vpr 62.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 9 19 897 916 0 536 123 12 12 144 clb auto 25.1 MiB 0.36 6363 8053 1451 6205 397 63.0 MiB 0.17 0.01 4.45266 -73.0877 -4.45266 nan 0.29 0.00238476 0.00210993 0.0809935 0.0730864 64 10297 33 5.3894e+06 5.11993e+06 539713. 3748.01 4.85 0.967167 0.823096 13324 105965 -1 9735 29 5866 29084 1229091 187607 5.16608 nan -82.7106 -5.16608 0 0 673071. 4674.10 0.14 0.43 0.09 -1 -1 0.14 0.154448 0.135446 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 7.76 vpr 64.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65832 263 197 1372 1603 1 490 554 17 17 289 io auto 26.5 MiB 0.27 4583 173378 53848 108921 10609 64.3 MiB 0.85 0.02 2.51577 -623.394 -2.51577 2.51577 0.63 0.00420788 0.00390998 0.333291 0.309852 36 7726 30 1.21262e+07 5.06604e+06 690635. 2389.74 3.35 1.31662 1.20514 21654 134225 -1 7365 18 2574 12370 616429 120582 2.91748 2.91748 -755.09 -2.91748 0 0 848598. 2936.33 0.22 0.31 0.10 -1 -1 0.22 0.164905 0.151855 +k6_N10_40nm.xml clma.pre-vpr.blif common 45.07 vpr 98.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100420 383 82 3674 4077 1 2327 845 22 22 484 clb auto 51.8 MiB 1.34 30606 412124 150163 207700 54261 88.2 MiB 3.77 0.04 7.51325 -315.281 -7.51325 7.51325 1.16 0.00995033 0.00862175 1.01453 0.879072 86 49587 37 2.15576e+07 2.04797e+07 2.58188e+06 5334.46 26.81 5.96035 5.05798 52488 536144 -1 44160 27 22932 103421 4545548 614980 7.76019 7.76019 -348.538 -7.76019 0 0 3.23937e+06 6692.90 0.85 1.83 0.45 -1 -1 0.85 0.640679 0.561158 +k6_N10_40nm.xml des.pre-vpr.blif common 9.46 vpr 62.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63840 256 245 954 1199 0 610 600 18 18 324 io auto 24.5 MiB 0.22 5153 154869 42679 104131 8059 62.3 MiB 0.72 0.01 3.39358 -650.111 -3.39358 nan 0.75 0.00420026 0.00400889 0.27019 0.257454 36 7884 27 1.37969e+07 5.33551e+06 781479. 2411.97 5.03 1.63016 1.5341 24324 152120 -1 7167 21 2741 6934 358607 73986 4.07861 nan -750.338 -4.07861 0 0 959866. 2962.55 0.26 0.28 0.12 -1 -1 0.26 0.184167 0.173696 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 6.58 vpr 63.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 64 39 1371 1410 1 553 200 12 12 144 clb auto 25.8 MiB 0.28 3803 24144 4932 17893 1319 63.6 MiB 0.28 0.01 4.78075 -957.298 -4.78075 4.78075 0.27 0.00280509 0.00250329 0.13428 0.120994 44 5237 28 5.3894e+06 5.22772e+06 376278. 2613.04 2.98 1.00747 0.865978 11464 75372 -1 4806 17 2884 9056 307867 53644 5.27496 5.27496 -1061.97 -5.27496 0 0 488429. 3391.87 0.11 0.20 0.06 -1 -1 0.11 0.114687 0.102165 +k6_N10_40nm.xml dsip.pre-vpr.blif common 7.82 vpr 64.16 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65704 229 197 1370 1567 1 535 521 16 16 256 io auto 26.4 MiB 0.28 4527 159741 48351 103227 8163 64.2 MiB 0.88 0.01 2.55942 -626.866 -2.55942 2.55942 0.55 0.00417212 0.00389673 0.335749 0.311719 36 8225 26 1.05632e+07 5.11993e+06 605313. 2364.50 3.53 1.32166 1.20899 19136 117450 -1 7393 18 2976 11188 657349 131548 2.85702 2.85702 -739.427 -2.85702 0 0 744064. 2906.50 0.19 0.32 0.09 -1 -1 0.19 0.172307 0.158692 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 22.27 vpr 75.88 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77700 131 114 3421 3535 1 1217 475 18 18 324 clb auto 38.7 MiB 0.77 11626 122707 35259 81883 5565 75.9 MiB 1.17 0.02 6.53723 -3985.25 -6.53723 6.53723 0.71 0.00639436 0.0056452 0.48239 0.426869 60 17649 25 1.37969e+07 1.23956e+07 1.23138e+06 3800.55 10.10 3.1102 2.67508 29492 245544 -1 16435 23 7995 36403 1514518 219517 7.19713 7.19713 -4487.25 -7.19713 0 0 1.54106e+06 4756.35 0.38 0.71 0.20 -1 -1 0.38 0.362442 0.321106 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 27.57 vpr 79.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81812 10 10 2659 2669 0 1417 322 20 20 400 clb auto 43.4 MiB 1.23 26641 60987 16496 42484 2007 79.9 MiB 1.09 0.02 6.29976 -60.6106 -6.29976 nan 0.92 0.00594384 0.00512905 0.386472 0.338587 88 50531 50 1.74617e+07 1.6276e+07 2.14967e+06 5374.18 17.06 2.60074 2.20278 43692 443252 -1 42150 23 13756 83881 4620701 547846 6.66403 nan -64.6106 -6.66403 0 0 2.68685e+06 6717.13 0.65 1.48 0.39 -1 -1 0.65 0.416317 0.366009 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 4.69 vpr 61.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63208 8 63 761 824 0 443 149 11 11 121 clb auto 24.1 MiB 0.26 4410 11575 2278 8438 859 61.7 MiB 0.17 0.00 3.74623 -161.99 -3.74623 nan 0.22 0.00203176 0.00181942 0.0756251 0.0686818 56 6622 40 4.36541e+06 4.20373e+06 384634. 3178.79 2.17 0.631124 0.542084 10422 75339 -1 6418 25 4478 20301 788176 130441 4.2427 nan -184.712 -4.2427 0 0 491412. 4061.26 0.10 0.30 0.06 -1 -1 0.10 0.118128 0.104231 +k6_N10_40nm.xml frisc.pre-vpr.blif common 22.88 vpr 76.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77860 20 116 3175 3291 1 1254 376 18 18 324 clb auto 38.6 MiB 0.78 15365 85804 22720 57215 5869 76.0 MiB 1.07 0.02 7.89593 -4249.8 -7.89593 7.89593 0.72 0.00632175 0.00563732 0.451817 0.401004 66 25126 32 1.37969e+07 1.29346e+07 1.36437e+06 4211.00 11.30 3.0903 2.65254 30784 270180 -1 21586 29 9180 39028 1867434 273807 8.56586 8.56586 -4729.24 -8.56586 0 0 1.68162e+06 5190.19 0.39 0.81 0.19 -1 -1 0.39 0.40166 0.353316 +k6_N10_40nm.xml misex3.pre-vpr.blif common 7.07 vpr 62.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63744 14 14 828 842 0 488 115 12 12 144 clb auto 24.4 MiB 0.29 4815 8206 1401 6230 575 62.2 MiB 0.16 0.00 4.13595 -53.855 -4.13595 nan 0.27 0.002181 0.00193973 0.0794981 0.0719701 48 8115 45 5.3894e+06 4.68878e+06 408411. 2836.19 3.87 0.84269 0.717839 11752 79838 -1 7167 37 5919 26811 1037569 163917 4.60602 nan -59.9732 -4.60602 0 0 523024. 3632.11 0.12 0.46 0.06 -1 -1 0.12 0.171762 0.149645 +k6_N10_40nm.xml pdc.pre-vpr.blif common 35.59 vpr 82.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84572 16 40 2839 2879 0 1501 363 20 20 400 clb auto 44.2 MiB 1.05 25138 74121 20955 50142 3024 80.5 MiB 1.21 0.02 6.09592 -219.8 -6.09592 nan 0.92 0.00617888 0.0052984 0.418838 0.366244 86 44801 49 1.74617e+07 1.65455e+07 2.10771e+06 5269.28 23.53 4.31361 3.63751 43296 436264 -1 38349 25 14603 86548 4239816 521326 6.62511 nan -238.851 -6.62511 0 0 2.64451e+06 6611.28 0.63 1.42 0.36 -1 -1 0.63 0.442436 0.389306 +k6_N10_40nm.xml s298.pre-vpr.blif common 6.05 vpr 61.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62700 4 6 726 732 1 378 87 11 11 121 clb auto 23.5 MiB 0.25 3807 4695 667 3828 200 61.2 MiB 0.12 0.00 5.57995 -45.7771 -5.57995 5.57995 0.22 0.00208714 0.00187722 0.0635179 0.0580816 46 5778 27 4.36541e+06 4.14984e+06 324627. 2682.87 3.18 0.769713 0.658418 9702 63375 -1 5459 23 3676 19081 682135 104789 6.57636 6.57636 -54.5026 -6.57636 0 0 415439. 3433.38 0.09 0.27 0.05 -1 -1 0.09 0.111805 0.099032 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 30.75 vpr 85.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87048 39 304 4677 4982 1 2229 711 22 22 484 clb auto 48.0 MiB 0.96 16466 241783 71390 157436 12957 85.0 MiB 2.04 0.03 4.53005 -2909.39 -4.53005 4.53005 1.15 0.00840437 0.00730659 0.69838 0.613582 46 25151 41 2.15576e+07 1.9833e+07 1.47372e+06 3044.87 11.60 4.20455 3.62278 39928 297508 -1 22705 28 12867 35674 1526688 272502 5.35198 5.35198 -3307.36 -5.35198 0 0 1.89173e+06 3908.53 0.48 0.93 0.23 -1 -1 0.48 0.551261 0.485748 +k6_N10_40nm.xml seq.pre-vpr.blif common 6.65 vpr 63.63 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 41 35 1006 1041 0 588 179 13 13 169 clb auto 26.0 MiB 0.37 6804 19331 3948 13272 2111 63.6 MiB 0.28 0.01 4.28358 -123.827 -4.28358 nan 0.33 0.00256389 0.00227378 0.11675 0.105311 58 12308 40 6.52117e+06 5.55108e+06 584019. 3455.73 2.92 0.761972 0.6558 15030 115912 -1 10225 36 6349 30076 1168998 179003 4.84926 nan -138.062 -4.84926 0 0 741857. 4389.69 0.17 0.50 0.09 -1 -1 0.17 0.201727 0.176741 +k6_N10_40nm.xml spla.pre-vpr.blif common 17.57 vpr 75.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77172 16 46 2232 2278 0 1154 307 18 18 324 clb auto 38.2 MiB 0.79 16948 53092 13536 36559 2997 75.4 MiB 0.83 0.01 5.83538 -192.429 -5.83538 nan 0.72 0.00511794 0.00442275 0.30544 0.269537 68 29987 38 1.37969e+07 1.3204e+07 1.39738e+06 4312.90 8.08 1.9614 1.67044 31108 275828 -1 25260 26 10107 57352 2408049 326904 6.29819 nan -215.569 -6.29819 0 0 1.71505e+06 5293.36 0.42 1.01 0.25 -1 -1 0.42 0.364738 0.321223 +k6_N10_40nm.xml tseng.pre-vpr.blif common 8.56 vpr 63.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 52 122 1461 1583 1 509 284 13 13 169 clb auto 25.2 MiB 0.26 3177 47867 11740 33135 2992 63.2 MiB 0.37 0.01 4.30477 -1189.46 -4.30477 4.30477 0.33 0.00289104 0.00262839 0.164785 0.14924 32 5609 42 6.52117e+06 5.92834e+06 352895. 2088.14 4.89 1.49094 1.29231 12174 67024 -1 4707 49 3188 9858 396519 77824 5.10662 5.10662 -1338.65 -5.10662 0 0 431135. 2551.09 0.11 0.38 0.05 -1 -1 0.11 0.259103 0.22653 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 2c0305c87ea..8825364be69 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.37 vpr 64.99 MiB 0.02 7264 -1 -1 14 0.31 -1 -1 36404 -1 -1 26 32 0 0 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 66548 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 26.3 MiB 0.29 1380 9939 2582 6063 1294 65.0 MiB 0.08 0.00 6.7601 -135.498 -6.7601 6.7601 0.88 0.000623967 0.0005679 0.0343195 0.0310522 28 3556 42 6.55708e+06 313430 500653. 1732.36 1.92 0.16476 0.146654 21310 115450 -1 3136 19 1530 4669 269667 62377 7.4003 7.4003 -165.114 -7.4003 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0303917 0.0272247 186 185 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 7.88 vpr 64.97 MiB 0.02 6992 -1 -1 14 0.36 -1 -1 36656 -1 -1 30 30 0 0 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 66532 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 26.5 MiB 0.51 1267 11684 3159 7206 1319 65.0 MiB 0.10 0.00 7.18744 -144.203 -7.18744 7.18744 0.96 0.000641805 0.000584295 0.0400875 0.0364405 30 3175 37 6.55708e+06 361650 526063. 1820.29 3.91 0.270143 0.236729 21886 126133 -1 2730 31 1526 4359 355584 147639 7.46703 7.46703 -159.014 -7.46703 0 0 666494. 2306.21 0.27 0.14 0.12 -1 -1 0.27 0.0417345 0.0368432 189 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.42 vpr 64.75 MiB 0.02 7160 -1 -1 11 0.27 -1 -1 36372 -1 -1 25 32 0 0 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 66300 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 26.4 MiB 0.42 1326 14543 4293 7829 2421 64.7 MiB 0.12 0.00 5.36852 -114.919 -5.36852 5.36852 0.94 0.000576202 0.000513962 0.047706 0.0429365 34 4009 47 6.55708e+06 301375 585099. 2024.56 2.69 0.202653 0.178219 22462 138074 -1 3134 17 1380 4391 277940 66246 5.77092 5.77092 -138.074 -5.77092 0 0 742403. 2568.87 0.31 0.09 0.13 -1 -1 0.31 0.0281747 0.0253355 180 179 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 8.21 vpr 64.73 MiB 0.02 7192 -1 -1 12 0.44 -1 -1 36400 -1 -1 29 29 0 0 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 66288 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1337 8532 2110 5618 804 64.7 MiB 0.08 0.00 6.34804 -120.709 -6.34804 6.34804 0.93 0.000662016 0.000592345 0.0316346 0.0287153 36 3330 21 6.55708e+06 349595 612192. 2118.31 4.33 0.232265 0.202823 22750 144809 -1 3033 22 1502 4721 263466 60335 7.24852 7.24852 -143.619 -7.24852 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0330039 0.029398 185 180 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 10.45 vpr 65.05 MiB 0.02 6944 -1 -1 13 0.40 -1 -1 36884 -1 -1 32 32 0 0 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 66612 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 26.4 MiB 0.53 1615 9732 2439 6417 876 65.1 MiB 0.10 0.00 6.38724 -139.576 -6.38724 6.38724 0.94 0.000742306 0.000674166 0.0374026 0.033793 30 4317 28 6.55708e+06 385760 526063. 1820.29 6.46 0.294662 0.258235 21886 126133 -1 3456 21 1818 5373 270238 62237 6.86804 6.86804 -160.542 -6.86804 0 0 666494. 2306.21 0.28 0.10 0.13 -1 -1 0.28 0.0377157 0.0337846 223 222 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 6.70 vpr 64.74 MiB 0.02 7060 -1 -1 12 0.35 -1 -1 36544 -1 -1 34 32 0 0 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 66292 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 26.3 MiB 0.56 1549 10898 2830 6790 1278 64.7 MiB 0.10 0.00 6.03124 -125.938 -6.03124 6.03124 0.92 0.000704685 0.000628961 0.0376943 0.0341227 34 4051 29 6.55708e+06 409870 585099. 2024.56 2.71 0.180249 0.159375 22462 138074 -1 3467 19 1691 5246 326356 72435 6.39184 6.39184 -151.393 -6.39184 0 0 742403. 2568.87 0.30 0.10 0.14 -1 -1 0.30 0.0327466 0.029422 209 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 7.51 vpr 63.90 MiB 0.02 6960 -1 -1 12 0.22 -1 -1 36228 -1 -1 27 27 0 0 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 65432 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 25.6 MiB 0.31 1026 4811 1068 3438 305 63.9 MiB 0.04 0.00 5.81578 -105.725 -5.81578 5.81578 0.94 0.000510267 0.000464333 0.0156521 0.0143047 26 3023 25 6.55708e+06 325485 477104. 1650.88 4.09 0.163816 0.142285 21022 109990 -1 2451 18 1224 3483 215097 49024 6.09798 6.09798 -124.034 -6.09798 0 0 585099. 2024.56 0.25 0.07 0.12 -1 -1 0.25 0.0224601 0.020074 136 125 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 6.59 vpr 64.61 MiB 0.02 6996 -1 -1 11 0.21 -1 -1 36708 -1 -1 28 31 0 0 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 66164 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1212 11719 2859 7078 1782 64.6 MiB 0.09 0.00 5.46178 -109.851 -5.46178 5.46178 0.88 0.000580309 0.000527524 0.0363368 0.0330002 36 3152 19 6.55708e+06 337540 612192. 2118.31 3.19 0.185814 0.164644 22750 144809 -1 2527 15 1178 3693 191043 45020 5.58198 5.58198 -123.343 -5.58198 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0251513 0.0227875 175 171 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 5.13 vpr 64.43 MiB 0.02 6892 -1 -1 12 0.21 -1 -1 35984 -1 -1 25 31 0 0 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 65976 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 26.0 MiB 0.38 1241 8668 2210 5476 982 64.4 MiB 0.07 0.00 5.61718 -124.779 -5.61718 5.61718 0.95 0.000535723 0.000485666 0.0274885 0.0249999 28 3130 20 6.55708e+06 301375 500653. 1732.36 1.57 0.104685 0.0924868 21310 115450 -1 2819 16 1130 2870 187006 42651 5.97778 5.97778 -141.936 -5.97778 0 0 612192. 2118.31 0.28 0.07 0.11 -1 -1 0.28 0.0237083 0.0213991 145 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 9.63 vpr 64.59 MiB 0.02 6940 -1 -1 13 0.24 -1 -1 36092 -1 -1 25 32 0 0 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 66136 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 26.1 MiB 0.49 1223 15929 4797 8703 2429 64.6 MiB 0.13 0.00 6.22784 -140.147 -6.22784 6.22784 0.95 0.000595001 0.000532318 0.0499737 0.0451725 30 3189 19 6.55708e+06 301375 526063. 1820.29 5.87 0.207172 0.182069 21886 126133 -1 2590 15 1076 3024 160661 36805 6.66944 6.66944 -157.179 -6.66944 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0246801 0.022292 162 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 5.39 vpr 64.14 MiB 0.02 6916 -1 -1 12 0.22 -1 -1 36444 -1 -1 22 30 0 0 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 65684 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 25.6 MiB 0.39 1088 9234 2413 5439 1382 64.1 MiB 0.07 0.00 5.86924 -122.016 -5.86924 5.86924 0.94 0.000506532 0.000461393 0.0285397 0.0259593 28 3075 44 6.55708e+06 265210 500653. 1732.36 1.86 0.12385 0.10923 21310 115450 -1 2575 23 1085 2767 257663 90628 5.98944 5.98944 -139.708 -5.98944 0 0 612192. 2118.31 0.27 0.10 0.12 -1 -1 0.27 0.0270098 0.0240776 132 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 7.75 vpr 64.27 MiB 0.02 7032 -1 -1 12 0.18 -1 -1 36360 -1 -1 21 32 0 0 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 65808 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 25.7 MiB 0.21 1009 12919 4052 6455 2412 64.3 MiB 0.09 0.00 5.45978 -119.39 -5.45978 5.45978 0.91 0.000481799 0.000429031 0.0365152 0.0328719 34 3034 37 6.55708e+06 253155 585099. 2024.56 4.42 0.225054 0.196019 22462 138074 -1 2318 14 955 2730 160319 38053 5.78118 5.78118 -138.193 -5.78118 0 0 742403. 2568.87 0.31 0.06 0.13 -1 -1 0.31 0.0196868 0.0177427 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.59 vpr 64.96 MiB 0.02 7128 -1 -1 13 0.34 -1 -1 36740 -1 -1 30 32 0 0 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 66524 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 26.5 MiB 0.39 1482 4993 817 3942 234 65.0 MiB 0.05 0.00 6.4407 -133.91 -6.4407 6.4407 0.94 0.000680215 0.000620102 0.020959 0.019044 28 4011 40 6.55708e+06 361650 500653. 1732.36 2.86 0.151418 0.133753 21310 115450 -1 3390 17 1615 4492 255601 59750 6.6811 6.6811 -151.058 -6.6811 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0315716 0.0284857 212 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 12.60 vpr 64.96 MiB 0.02 7044 -1 -1 14 0.41 -1 -1 36532 -1 -1 29 32 0 0 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 66516 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 26.4 MiB 0.54 1516 9333 2256 5804 1273 65.0 MiB 0.09 0.00 7.33662 -150.961 -7.33662 7.33662 0.90 0.000730582 0.000653654 0.0359968 0.0326244 30 4143 31 6.55708e+06 349595 526063. 1820.29 8.72 0.267562 0.235564 21886 126133 -1 3114 21 1486 4290 204559 49211 7.68555 7.68555 -171.606 -7.68555 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0323093 0.0289795 208 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.17 vpr 64.50 MiB 0.02 6792 -1 -1 11 0.21 -1 -1 36076 -1 -1 29 29 0 0 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 66052 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 26.1 MiB 0.25 1080 10944 3016 6546 1382 64.5 MiB 0.08 0.00 5.24892 -104.397 -5.24892 5.24892 0.89 0.000523896 0.000475995 0.0319221 0.0289994 34 2754 47 6.55708e+06 349595 585099. 2024.56 1.85 0.169463 0.149299 22462 138074 -1 2353 17 1031 2964 157468 37912 5.51626 5.51626 -122.162 -5.51626 0 0 742403. 2568.87 0.29 0.06 0.12 -1 -1 0.29 0.0234069 0.0209736 160 149 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.55 vpr 65.04 MiB 0.02 7016 -1 -1 12 0.35 -1 -1 36528 -1 -1 34 32 0 0 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 66600 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 26.6 MiB 0.64 1606 6398 1139 4832 427 65.0 MiB 0.07 0.00 6.4407 -134.488 -6.4407 6.4407 0.95 0.00072284 0.000661707 0.0246501 0.0224417 30 4336 33 6.55708e+06 409870 526063. 1820.29 3.42 0.147576 0.130929 21886 126133 -1 3616 32 1681 5505 519084 206895 6.6027 6.6027 -152.989 -6.6027 0 0 666494. 2306.21 0.28 0.19 0.12 -1 -1 0.28 0.0505778 0.0450491 213 211 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 15.96 vpr 65.19 MiB 0.02 7020 -1 -1 13 0.33 -1 -1 36832 -1 -1 32 32 0 0 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 66752 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 26.6 MiB 0.35 1462 14988 3978 8216 2794 65.2 MiB 0.13 0.00 6.5961 -139.227 -6.5961 6.5961 0.93 0.000698663 0.00062539 0.0527432 0.0475063 28 4473 41 6.55708e+06 385760 500653. 1732.36 12.24 0.323237 0.28453 21310 115450 -1 3296 16 1401 3942 224479 53254 7.0769 7.0769 -165.493 -7.0769 0 0 612192. 2118.31 0.27 0.09 0.11 -1 -1 0.27 0.0337322 0.0305583 217 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.80 vpr 64.07 MiB 0.02 6992 -1 -1 12 0.19 -1 -1 36060 -1 -1 22 32 0 0 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 65608 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 25.7 MiB 0.60 978 4811 917 3822 72 64.1 MiB 0.05 0.00 5.8815 -128.892 -5.8815 5.8815 0.94 0.000552052 0.000494697 0.0167364 0.0152662 30 2606 19 6.55708e+06 265210 526063. 1820.29 1.09 0.0886652 0.0779731 21886 126133 -1 2095 17 930 2720 123332 31349 6.0827 6.0827 -143.678 -6.0827 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0232135 0.0207807 139 135 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 6.45 vpr 64.02 MiB 0.02 6872 -1 -1 10 0.12 -1 -1 35832 -1 -1 20 30 0 0 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 65560 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 25.4 MiB 0.13 840 7202 1727 4951 524 64.0 MiB 0.05 0.00 4.32286 -100.168 -4.32286 4.32286 0.93 0.000414187 0.000378126 0.0183106 0.0166616 34 1991 29 6.55708e+06 241100 585099. 2024.56 3.30 0.143717 0.124495 22462 138074 -1 1778 16 657 1635 102388 23778 4.63 4.63 -114.8 -4.63 0 0 742403. 2568.87 0.31 0.04 0.14 -1 -1 0.31 0.0163513 0.01459 96 85 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.62 vpr 64.42 MiB 0.02 6880 -1 -1 13 0.21 -1 -1 36704 -1 -1 24 31 0 0 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 65968 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 26.0 MiB 0.38 1072 5271 984 4138 149 64.4 MiB 0.05 0.00 6.10764 -127.105 -6.10764 6.10764 0.91 0.000509493 0.000462069 0.017163 0.0156171 36 2480 36 6.55708e+06 289320 612192. 2118.31 4.06 0.189627 0.164844 22750 144809 -1 2140 20 899 2448 130981 30705 6.94904 6.94904 -151.983 -6.94904 0 0 782063. 2706.10 0.33 0.06 0.14 -1 -1 0.33 0.0267951 0.0240451 139 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.60 vpr 64.77 MiB 0.02 6916 -1 -1 13 0.37 -1 -1 36832 -1 -1 31 32 0 0 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 66328 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 26.2 MiB 0.42 1431 10031 2391 6840 800 64.8 MiB 0.09 0.00 6.2813 -129.016 -6.2813 6.2813 0.91 0.000706412 0.00063816 0.0346463 0.0314086 30 3800 31 6.55708e+06 373705 526063. 1820.29 1.81 0.153853 0.136559 21886 126133 -1 3108 18 1737 5658 294463 70037 6.63224 6.63224 -148.556 -6.63224 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0334632 0.0302238 208 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 21.88 vpr 65.07 MiB 0.02 7048 -1 -1 13 0.37 -1 -1 36416 -1 -1 34 32 0 0 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 66632 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 26.5 MiB 0.54 1583 7523 1609 5516 398 65.1 MiB 0.08 0.00 6.4779 -134.545 -6.4779 6.4779 0.91 0.0006831 0.000608191 0.0269805 0.0244209 30 4335 33 6.55708e+06 409870 526063. 1820.29 17.97 0.31885 0.278764 21886 126133 -1 3353 17 1486 4870 251001 56993 6.7595 6.7595 -152.626 -6.7595 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.032286 0.0292347 207 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 7.37 vpr 63.77 MiB 0.02 6888 -1 -1 9 0.11 -1 -1 36040 -1 -1 21 26 0 0 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 65296 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 25.2 MiB 0.33 680 10726 2923 7065 738 63.8 MiB 0.06 0.00 3.89854 -76.9721 -3.89854 3.89854 0.91 0.000344494 0.000314624 0.023102 0.0209939 26 2072 41 6.55708e+06 253155 477104. 1650.88 4.13 0.132686 0.115446 21022 109990 -1 1763 24 704 1856 231405 90820 4.18074 4.18074 -92.9238 -4.18074 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0179427 0.0157968 83 66 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.91 vpr 64.88 MiB 0.02 6876 -1 -1 13 0.39 -1 -1 36396 -1 -1 30 32 0 0 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 66436 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 26.5 MiB 0.24 1524 4780 758 3645 377 64.9 MiB 0.05 0.00 6.4407 -127.972 -6.4407 6.4407 0.90 0.000679793 0.000609603 0.019082 0.0173064 28 4450 37 6.55708e+06 361650 500653. 1732.36 2.40 0.147813 0.13113 21310 115450 -1 3581 18 1573 4298 275280 61387 7.2429 7.2429 -152.324 -7.2429 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0320111 0.0287353 211 209 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.73 vpr 63.62 MiB 0.02 6820 -1 -1 8 0.11 -1 -1 36076 -1 -1 17 32 0 0 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 65148 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 25.2 MiB 0.23 441 6206 1431 3752 1023 63.6 MiB 0.04 0.00 3.84606 -73.0632 -3.84606 3.84606 0.93 0.000202573 0.000185022 0.0135401 0.0123356 34 1322 39 6.55708e+06 204935 585099. 2024.56 1.54 0.0788137 0.0683827 22462 138074 -1 1097 15 584 1208 62846 18221 3.9958 3.9958 -86.6926 -3.9958 0 0 742403. 2568.87 0.31 0.04 0.14 -1 -1 0.31 0.0139398 0.0124546 77 60 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 6.04 vpr 64.48 MiB 0.02 6956 -1 -1 15 0.30 -1 -1 36448 -1 -1 25 32 0 0 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 66024 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 26.0 MiB 0.27 1150 9989 2700 5290 1999 64.5 MiB 0.08 0.00 7.16816 -137.524 -7.16816 7.16816 0.94 0.000596536 0.000542198 0.0340305 0.0310385 36 2905 25 6.55708e+06 301375 612192. 2118.31 2.40 0.192317 0.170133 22750 144809 -1 2260 19 1086 3414 163630 39251 7.68815 7.68815 -156.125 -7.68815 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0283819 0.0253976 161 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.65 vpr 64.84 MiB 0.02 6916 -1 -1 12 0.30 -1 -1 36568 -1 -1 31 32 0 0 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 66396 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 26.4 MiB 0.26 1614 12839 3319 7842 1678 64.8 MiB 0.11 0.00 6.01898 -135.231 -6.01898 6.01898 0.89 0.000695538 0.000632926 0.0453569 0.0412015 36 3912 22 6.55708e+06 373705 612192. 2118.31 4.14 0.231664 0.206382 22750 144809 -1 3359 15 1355 4266 253119 55863 6.61998 6.61998 -155.905 -6.61998 0 0 782063. 2706.10 0.31 0.09 0.13 -1 -1 0.31 0.0295321 0.026673 218 214 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 6.26 vpr 64.95 MiB 0.02 7104 -1 -1 13 0.35 -1 -1 36732 -1 -1 28 32 0 0 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 66508 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1369 7337 1601 5319 417 64.9 MiB 0.07 0.00 6.0017 -129.994 -6.0017 6.0017 0.91 0.000651149 0.000595517 0.0262974 0.0238982 34 3705 47 6.55708e+06 337540 585099. 2024.56 2.50 0.203999 0.178985 22462 138074 -1 3138 17 1386 4216 240411 55729 6.3623 6.3623 -150.592 -6.3623 0 0 742403. 2568.87 0.32 0.08 0.14 -1 -1 0.32 0.0296191 0.0265843 196 194 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 5.22 vpr 64.29 MiB 0.02 6768 -1 -1 12 0.20 -1 -1 36136 -1 -1 22 32 0 0 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 65832 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1153 6512 1507 4771 234 64.3 MiB 0.06 0.00 5.68792 -124.55 -5.68792 5.68792 0.92 0.00054624 0.00049695 0.0220236 0.0200319 28 3199 41 6.55708e+06 265210 500653. 1732.36 1.80 0.121784 0.107019 21310 115450 -1 2657 15 1024 2830 173962 39967 5.68792 5.68792 -142.06 -5.68792 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0225505 0.0203718 146 144 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 7.81 vpr 64.18 MiB 0.02 6828 -1 -1 11 0.19 -1 -1 36380 -1 -1 23 30 0 0 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 65724 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 25.6 MiB 0.22 1036 12733 3325 7717 1691 64.2 MiB 0.09 0.00 5.08892 -111.207 -5.08892 5.08892 0.94 0.000508996 0.000460984 0.0358776 0.032519 26 2842 28 6.55708e+06 277265 477104. 1650.88 4.50 0.183829 0.161091 21022 109990 -1 2358 17 968 2547 162099 37004 5.68992 5.68992 -134.123 -5.68992 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0209241 0.0187405 128 122 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.23 vpr 64.38 MiB 0.02 6824 -1 -1 11 0.20 -1 -1 36672 -1 -1 27 28 0 0 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 65920 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1054 6615 1537 4510 568 64.4 MiB 0.05 0.00 5.43786 -108.333 -5.43786 5.43786 0.91 0.000528026 0.000476575 0.0194805 0.0177539 28 3176 35 6.55708e+06 325485 500653. 1732.36 2.88 0.109676 0.0968438 21310 115450 -1 2689 16 1139 3195 201426 45525 5.62118 5.62118 -127.027 -5.62118 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0222712 0.0201146 142 134 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 9.90 vpr 64.98 MiB 0.02 6788 -1 -1 12 0.23 -1 -1 35904 -1 -1 28 32 0 0 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 66544 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1295 5888 1128 4476 284 65.0 MiB 0.06 0.00 5.86924 -134.818 -5.86924 5.86924 0.93 0.000604153 0.000548518 0.0210568 0.0191374 28 3554 23 6.55708e+06 337540 500653. 1732.36 6.49 0.190014 0.16607 21310 115450 -1 3017 19 1484 4003 247169 57541 6.14178 6.14178 -155.322 -6.14178 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0303047 0.027247 180 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.90 vpr 64.50 MiB 0.02 6840 -1 -1 11 0.21 -1 -1 36276 -1 -1 23 31 0 0 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 66052 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 26.1 MiB 0.32 1038 5756 1149 4354 253 64.5 MiB 0.05 0.00 5.55546 -115.085 -5.55546 5.55546 0.96 0.000540011 0.000489013 0.0205643 0.0187742 28 2684 21 6.55708e+06 277265 500653. 1732.36 1.36 0.106173 0.0942427 21310 115450 -1 2412 27 1494 4183 303735 100743 5.71746 5.71746 -136.924 -5.71746 0 0 612192. 2118.31 0.27 0.12 0.11 -1 -1 0.27 0.0379711 0.0339661 147 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 4.52 vpr 64.18 MiB 0.02 6868 -1 -1 10 0.17 -1 -1 36472 -1 -1 24 29 0 0 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 65720 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 25.6 MiB 0.26 922 12919 4233 6349 2337 64.2 MiB 0.09 0.00 4.93152 -102.351 -4.93152 4.93152 0.94 0.000504425 0.00045833 0.0388765 0.0352237 28 2419 20 6.55708e+06 289320 500653. 1732.36 1.17 0.109901 0.097134 21310 115450 -1 2062 17 820 2352 129992 31316 5.51826 5.51826 -122.471 -5.51826 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0224309 0.0201036 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 8.95 vpr 65.15 MiB 0.02 7168 -1 -1 13 0.41 -1 -1 37112 -1 -1 33 32 0 0 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 66716 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 26.7 MiB 0.39 1600 7867 1616 5265 986 65.2 MiB 0.08 0.00 6.2003 -127.213 -6.2003 6.2003 0.90 0.00074666 0.000675697 0.0305352 0.0276564 36 4038 30 6.55708e+06 397815 612192. 2118.31 5.09 0.308857 0.271179 22750 144809 -1 3296 16 1418 4842 286197 63074 6.69838 6.69838 -147.615 -6.69838 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0336475 0.030542 239 238 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 8.79 vpr 64.94 MiB 0.02 7184 -1 -1 13 0.40 -1 -1 36676 -1 -1 29 32 0 0 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 66500 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 26.4 MiB 0.46 1457 11643 3194 6725 1724 64.9 MiB 0.10 0.00 6.4387 -138.634 -6.4387 6.4387 0.91 0.000625106 0.000552651 0.039929 0.0358854 38 3845 35 6.55708e+06 349595 638502. 2209.35 4.89 0.323383 0.281516 23326 155178 -1 3097 23 1423 4704 231842 52852 6.74784 6.74784 -154.577 -6.74784 0 0 851065. 2944.86 0.34 0.09 0.14 -1 -1 0.34 0.0361854 0.0322925 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 7.62 vpr 64.26 MiB 0.02 6796 -1 -1 12 0.19 -1 -1 36380 -1 -1 25 31 0 0 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 65800 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 25.7 MiB 0.35 1172 12763 3429 7032 2302 64.3 MiB 0.10 0.00 5.38078 -117.485 -5.38078 5.38078 0.93 0.000559223 0.000510074 0.037776 0.0342989 36 2800 19 6.55708e+06 301375 612192. 2118.31 4.05 0.189212 0.165524 22750 144809 -1 2379 14 965 2717 149166 34781 5.70218 5.70218 -135.131 -5.70218 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0209534 0.0189041 150 141 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.03 vpr 65.13 MiB 0.02 7000 -1 -1 12 0.32 -1 -1 36884 -1 -1 34 31 0 0 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 66696 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 26.5 MiB 0.25 1498 13639 3602 7690 2347 65.1 MiB 0.12 0.00 6.7157 -136.315 -6.7157 6.7157 0.93 0.000745838 0.00067933 0.0484267 0.0437694 30 3986 44 6.55708e+06 409870 526063. 1820.29 2.42 0.18123 0.160531 21886 126133 -1 3088 17 1439 4416 219814 51952 6.9561 6.9561 -153.642 -6.9561 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0311043 0.0280846 219 217 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.95 vpr 64.78 MiB 0.02 7292 -1 -1 14 0.45 -1 -1 36564 -1 -1 28 31 0 0 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 66332 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 26.4 MiB 0.25 1377 5191 959 3975 257 64.8 MiB 0.06 0.00 6.5543 -130.969 -6.5543 6.5543 0.94 0.000681644 0.000623624 0.0212414 0.0193379 36 3474 18 6.55708e+06 337540 612192. 2118.31 2.20 0.17249 0.15135 22750 144809 -1 2910 21 1343 3995 214457 50558 7.0371 7.0371 -149.953 -7.0371 0 0 782063. 2706.10 0.31 0.09 0.14 -1 -1 0.31 0.0344598 0.0308162 194 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.71 vpr 64.78 MiB 0.02 7036 -1 -1 13 0.33 -1 -1 37172 -1 -1 28 31 0 0 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 66336 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 26.1 MiB 0.29 1398 6007 1206 4131 670 64.8 MiB 0.06 0.00 6.38724 -133.891 -6.38724 6.38724 0.91 0.00062708 0.000563765 0.0217817 0.0198094 36 3395 19 6.55708e+06 337540 612192. 2118.31 2.12 0.162923 0.142325 22750 144809 -1 2838 18 1197 3326 176849 41128 6.69638 6.69638 -149.107 -6.69638 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0283951 0.0254358 181 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 7.12 vpr 64.94 MiB 0.02 7072 -1 -1 12 0.31 -1 -1 36732 -1 -1 30 31 0 0 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 66496 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 26.5 MiB 0.62 1442 6603 1399 4594 610 64.9 MiB 0.07 0.00 5.74138 -121.999 -5.74138 5.74138 0.95 0.000660459 0.000595107 0.0249177 0.0225965 34 3717 28 6.55708e+06 361650 585099. 2024.56 3.11 0.166247 0.147058 22462 138074 -1 3282 22 1336 4316 259789 58459 6.10198 6.10198 -143.253 -6.10198 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0332314 0.0297314 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.71 vpr 64.57 MiB 0.02 7252 -1 -1 12 0.23 -1 -1 36504 -1 -1 24 32 0 0 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 66116 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 26.1 MiB 0.31 1295 9448 2427 5651 1370 64.6 MiB 0.08 0.00 5.95224 -122.374 -5.95224 5.95224 0.96 0.000618066 0.00056163 0.0321573 0.0291514 28 3531 43 6.55708e+06 289320 500653. 1732.36 2.14 0.15428 0.136709 21310 115450 -1 2992 20 1445 4359 328975 81140 6.23184 6.23184 -144.382 -6.23184 0 0 612192. 2118.31 0.27 0.11 0.11 -1 -1 0.27 0.0305835 0.027429 172 169 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 10.88 vpr 64.88 MiB 0.02 7196 -1 -1 14 0.58 -1 -1 36268 -1 -1 34 32 0 0 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 66440 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 26.7 MiB 0.43 1760 11348 2999 7324 1025 64.9 MiB 0.11 0.00 6.7209 -144.486 -6.7209 6.7209 0.96 0.000726182 0.000657921 0.0423887 0.0382171 36 4433 33 6.55708e+06 409870 612192. 2118.31 6.73 0.252313 0.222473 22750 144809 -1 3892 18 1676 5702 338292 74124 7.03204 7.03204 -161.195 -7.03204 0 0 782063. 2706.10 0.31 0.11 0.14 -1 -1 0.31 0.0368213 0.0333502 245 244 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 6.97 vpr 64.45 MiB 0.02 6932 -1 -1 11 0.25 -1 -1 36396 -1 -1 26 31 0 0 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 65992 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 26.0 MiB 0.28 1226 12167 3233 7670 1264 64.4 MiB 0.10 0.00 5.58198 -116.131 -5.58198 5.58198 0.89 0.000574235 0.000515912 0.0387619 0.0350647 38 2760 20 6.55708e+06 313430 638502. 2209.35 3.48 0.224687 0.196839 23326 155178 -1 2414 19 1078 3083 155384 35589 5.62318 5.62318 -126.898 -5.62318 0 0 851065. 2944.86 0.32 0.07 0.14 -1 -1 0.32 0.0269605 0.0241791 160 153 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.88 vpr 64.59 MiB 0.02 7088 -1 -1 13 0.35 -1 -1 36940 -1 -1 27 31 0 0 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 66136 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 26.2 MiB 0.47 1313 8934 2207 5709 1018 64.6 MiB 0.08 0.00 6.33076 -127.182 -6.33076 6.33076 0.94 0.000640405 0.000580586 0.0316186 0.0287421 30 3423 23 6.55708e+06 325485 526063. 1820.29 2.03 0.129716 0.115067 21886 126133 -1 2804 17 1239 4027 190404 45209 6.45096 6.45096 -143.57 -6.45096 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0289131 0.0261396 177 175 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 8.26 vpr 65.05 MiB 0.02 7120 -1 -1 12 0.31 -1 -1 36240 -1 -1 34 32 0 0 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 66616 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 26.4 MiB 0.42 1583 9323 2187 6162 974 65.1 MiB 0.08 0.00 6.05818 -133.31 -6.05818 6.05818 0.92 0.000768754 0.000694638 0.0325649 0.0293556 34 4150 47 6.55708e+06 409870 585099. 2024.56 4.54 0.306755 0.269169 22462 138074 -1 3504 16 1356 4671 258614 59249 6.41878 6.41878 -152.04 -6.41878 0 0 742403. 2568.87 0.30 0.08 0.13 -1 -1 0.30 0.0297282 0.0268807 227 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 10.75 vpr 64.67 MiB 0.02 7020 -1 -1 13 0.31 -1 -1 36616 -1 -1 28 32 0 0 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 66220 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 26.3 MiB 0.22 1331 10442 2617 6656 1169 64.7 MiB 0.09 0.00 6.26964 -131.303 -6.26964 6.26964 0.95 0.000670933 0.000603735 0.0368791 0.0335486 28 3805 28 6.55708e+06 337540 500653. 1732.36 7.14 0.255417 0.225911 21310 115450 -1 3210 24 1607 4674 385018 117254 6.93938 6.93938 -159.905 -6.93938 0 0 612192. 2118.31 0.27 0.14 0.11 -1 -1 0.27 0.0382036 0.0341942 184 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 10.89 vpr 64.52 MiB 0.02 7052 -1 -1 13 0.28 -1 -1 36228 -1 -1 25 32 0 0 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 66068 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 26.0 MiB 0.36 1292 9593 2136 5944 1513 64.5 MiB 0.08 0.00 6.22984 -132.494 -6.22984 6.22984 0.92 0.000599441 0.000539345 0.0328133 0.0297478 30 3003 22 6.55708e+06 301375 526063. 1820.29 7.28 0.231202 0.202097 21886 126133 -1 2713 17 1129 3284 167387 39059 6.6027 6.6027 -152.044 -6.6027 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0286482 0.0258701 175 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.95 vpr 64.80 MiB 0.02 7208 -1 -1 12 0.34 -1 -1 36940 -1 -1 31 32 0 0 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 66360 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 26.3 MiB 0.80 1500 8951 2009 6311 631 64.8 MiB 0.08 0.00 5.77858 -125.487 -5.77858 5.77858 0.94 0.00066343 0.000600265 0.0319751 0.0289117 30 3716 39 6.55708e+06 373705 526063. 1820.29 1.80 0.155507 0.137415 21886 126133 -1 2983 18 1273 4619 217735 50074 6.06278 6.06278 -143.72 -6.06278 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0326252 0.0293529 205 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.32 vpr 64.93 MiB 0.02 7020 -1 -1 13 0.34 -1 -1 37100 -1 -1 29 32 0 0 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 66484 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 26.4 MiB 0.42 1477 11853 3106 7365 1382 64.9 MiB 0.11 0.00 6.0801 -127.286 -6.0801 6.0801 0.95 0.000781348 0.000695913 0.0430425 0.0388855 30 3982 35 6.55708e+06 349595 526063. 1820.29 2.50 0.176218 0.156875 21886 126133 -1 3095 21 1515 4715 226913 52988 6.71064 6.71064 -149.7 -6.71064 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0343151 0.0306832 205 204 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.22 vpr 64.59 MiB 0.02 7056 -1 -1 14 0.34 -1 -1 36452 -1 -1 25 32 0 0 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 66144 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 26.1 MiB 0.48 1172 9989 2644 5964 1381 64.6 MiB 0.09 0.00 6.5961 -134.271 -6.5961 6.5961 0.91 0.00062305 0.000557648 0.0332586 0.0301379 30 2975 38 6.55708e+06 301375 526063. 1820.29 1.44 0.135913 0.119699 21886 126133 -1 2458 16 1119 3482 157693 38657 6.8803 6.8803 -154.727 -6.8803 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0246966 0.0221878 167 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.05 vpr 64.71 MiB 0.02 7236 -1 -1 13 0.35 -1 -1 36552 -1 -1 30 32 0 0 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 66260 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 26.4 MiB 0.63 1485 8614 1939 6164 511 64.7 MiB 0.08 0.00 7.09116 -142.125 -7.09116 7.09116 0.91 0.000615392 0.000565635 0.0297151 0.026932 30 3769 30 6.55708e+06 361650 526063. 1820.29 2.06 0.13685 0.120914 21886 126133 -1 3167 21 1634 5081 283406 70433 7.57196 7.57196 -163.668 -7.57196 0 0 666494. 2306.21 0.27 0.10 0.13 -1 -1 0.27 0.0340987 0.0305839 199 198 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 7.81 vpr 64.92 MiB 0.02 7068 -1 -1 13 0.37 -1 -1 36328 -1 -1 32 31 0 0 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 66476 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1516 10895 2711 6792 1392 64.9 MiB 0.10 0.00 6.84616 -142.487 -6.84616 6.84616 0.94 0.000708575 0.000629871 0.0406472 0.0367093 36 3729 18 6.55708e+06 385760 612192. 2118.31 4.03 0.280341 0.246273 22750 144809 -1 3149 17 1371 4312 222858 51956 7.56736 7.56736 -161.561 -7.56736 0 0 782063. 2706.10 0.31 0.08 0.13 -1 -1 0.31 0.0324771 0.0293145 221 218 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 18.61 vpr 65.38 MiB 0.02 7052 -1 -1 12 0.40 -1 -1 36684 -1 -1 32 32 0 0 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 66948 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 26.7 MiB 0.51 1580 9951 2182 6412 1357 65.4 MiB 0.09 0.00 6.18804 -132.867 -6.18804 6.18804 0.92 0.000703602 0.000637348 0.0364156 0.0330551 30 4338 44 6.55708e+06 385760 526063. 1820.29 14.68 0.282547 0.246833 21886 126133 -1 3418 20 1711 5360 272112 63103 6.55324 6.55324 -155.943 -6.55324 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0345999 0.0310884 231 229 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 6.95 vpr 63.95 MiB 0.02 6940 -1 -1 11 0.16 -1 -1 36244 -1 -1 19 32 0 0 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 65480 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 25.5 MiB 0.24 956 8183 1868 5372 943 63.9 MiB 0.07 0.00 5.04006 -110.276 -5.04006 5.04006 0.95 0.000497446 0.00045468 0.0259608 0.0236951 30 2497 49 6.55708e+06 229045 526063. 1820.29 3.57 0.219396 0.192008 21886 126133 -1 2017 17 915 2489 117959 28883 5.16026 5.16026 -126.773 -5.16026 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0236824 0.0213027 127 121 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 12.40 vpr 64.68 MiB 0.02 6900 -1 -1 13 0.24 -1 -1 36088 -1 -1 27 32 0 0 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 66232 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 26.1 MiB 0.57 1291 4579 795 3577 207 64.7 MiB 0.05 0.00 6.22584 -136.991 -6.22584 6.22584 0.93 0.000591101 0.000527588 0.0168415 0.0153297 28 3707 31 6.55708e+06 325485 500653. 1732.36 8.65 0.192069 0.167035 21310 115450 -1 2967 25 1487 4426 328468 92298 7.03004 7.03004 -164.383 -7.03004 0 0 612192. 2118.31 0.26 0.11 0.12 -1 -1 0.26 0.032359 0.0286853 156 150 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.89 vpr 65.07 MiB 0.02 7216 -1 -1 14 0.57 -1 -1 36572 -1 -1 36 32 0 0 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 66636 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 26.8 MiB 0.47 1820 8916 1912 6150 854 65.1 MiB 0.09 0.00 7.24596 -154.69 -7.24596 7.24596 0.93 0.000824183 0.000744973 0.0355674 0.0321669 30 4723 38 6.55708e+06 433980 526063. 1820.29 2.75 0.181232 0.160415 21886 126133 -1 3915 18 1837 5694 296672 66851 7.60916 7.60916 -172.264 -7.60916 0 0 666494. 2306.21 0.29 0.11 0.12 -1 -1 0.29 0.0390848 0.0354294 267 266 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 11.15 vpr 65.02 MiB 0.02 6944 -1 -1 13 0.42 -1 -1 36660 -1 -1 31 32 0 0 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 66584 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 26.3 MiB 0.55 1481 8519 1873 6026 620 65.0 MiB 0.08 0.00 6.26904 -138.988 -6.26904 6.26904 0.92 0.000738138 0.000652353 0.0325731 0.0292489 26 4742 48 6.55708e+06 373705 477104. 1650.88 7.06 0.291501 0.25601 21022 109990 -1 3709 41 2654 8504 739890 265236 6.8013 6.8013 -164.866 -6.8013 0 0 585099. 2024.56 0.26 0.25 0.11 -1 -1 0.26 0.0643378 0.0570351 224 223 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.22 vpr 64.38 MiB 0.02 6868 -1 -1 11 0.21 -1 -1 36408 -1 -1 23 30 0 0 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 65920 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 25.7 MiB 0.24 1060 10315 2490 5888 1937 64.4 MiB 0.07 0.00 5.54218 -112.466 -5.54218 5.54218 0.93 0.000476011 0.000430919 0.0300842 0.0272881 34 2635 29 6.55708e+06 277265 585099. 2024.56 3.81 0.205754 0.179071 22462 138074 -1 2267 15 926 2797 162441 36960 5.98378 5.98378 -128.141 -5.98378 0 0 742403. 2568.87 0.30 0.06 0.14 -1 -1 0.30 0.021442 0.0193841 137 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.16 vpr 65.16 MiB 0.02 7192 -1 -1 15 0.56 -1 -1 37344 -1 -1 33 32 0 0 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 66724 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 26.7 MiB 0.42 1721 4981 814 3655 512 65.2 MiB 0.06 0.00 7.32495 -150.565 -7.32495 7.32495 0.91 0.000801502 0.000724289 0.0220804 0.0200395 34 4766 26 6.55708e+06 397815 585099. 2024.56 4.09 0.18388 0.161769 22462 138074 -1 3862 21 2293 7386 431745 95756 7.68555 7.68555 -173.02 -7.68555 0 0 742403. 2568.87 0.30 0.13 0.13 -1 -1 0.30 0.0406927 0.0363244 241 240 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.81 vpr 64.93 MiB 0.02 7016 -1 -1 13 0.39 -1 -1 36636 -1 -1 29 32 0 0 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 66492 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 26.4 MiB 0.43 1544 13533 3609 7429 2495 64.9 MiB 0.12 0.00 6.6811 -133.732 -6.6811 6.6811 0.95 0.000676521 0.000612937 0.048382 0.0437434 36 4052 43 6.55708e+06 349595 612192. 2118.31 2.86 0.219455 0.194939 22750 144809 -1 3238 16 1396 4030 239099 52835 7.2821 7.2821 -156.754 -7.2821 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0331177 0.0300736 207 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 5.84 vpr 64.09 MiB 0.02 7000 -1 -1 11 0.16 -1 -1 36176 -1 -1 24 32 0 0 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 65632 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 25.8 MiB 0.26 1224 7888 1831 5054 1003 64.1 MiB 0.07 0.00 5.37818 -114.048 -5.37818 5.37818 0.95 0.000549305 0.000490757 0.0254198 0.0230891 28 3126 43 6.55708e+06 289320 500653. 1732.36 2.47 0.132149 0.116751 21310 115450 -1 2669 16 1171 3418 205917 47118 5.69958 5.69958 -133.106 -5.69958 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0240532 0.021628 149 143 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 8.48 vpr 64.83 MiB 0.02 7308 -1 -1 12 0.37 -1 -1 36748 -1 -1 31 32 0 0 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 66384 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 26.4 MiB 0.40 1445 8303 1760 5821 722 64.8 MiB 0.08 0.00 5.91244 -124.224 -5.91244 5.91244 0.95 0.000686643 0.000619749 0.0306982 0.0278761 36 3667 37 6.55708e+06 373705 612192. 2118.31 4.57 0.274007 0.239324 22750 144809 -1 3061 19 1751 5669 333523 73249 6.39124 6.39124 -143.812 -6.39124 0 0 782063. 2706.10 0.32 0.11 0.14 -1 -1 0.32 0.0340915 0.0306568 217 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 12.46 vpr 64.64 MiB 0.02 6908 -1 -1 12 0.24 -1 -1 36428 -1 -1 26 32 0 0 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 66196 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1134 5919 1133 4668 118 64.6 MiB 0.06 0.00 6.0409 -121.631 -6.0409 6.0409 0.92 0.000603991 0.000547368 0.0207739 0.0189066 34 3405 39 6.55708e+06 313430 585099. 2024.56 8.96 0.323257 0.282042 22462 138074 -1 2632 19 1243 3419 190007 45840 6.59044 6.59044 -145.896 -6.59044 0 0 742403. 2568.87 0.31 0.07 0.14 -1 -1 0.31 0.0276806 0.0248736 164 158 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.91 vpr 63.97 MiB 0.02 7040 -1 -1 12 0.23 -1 -1 36520 -1 -1 21 30 0 0 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 65504 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1029 7463 1773 5054 636 64.0 MiB 0.06 0.00 5.78824 -121.367 -5.78824 5.78824 0.94 0.000536617 0.000482499 0.0256823 0.0232399 26 3015 29 6.55708e+06 253155 477104. 1650.88 2.53 0.113976 0.100389 21022 109990 -1 2422 16 978 2757 169712 38531 6.26904 6.26904 -139.534 -6.26904 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0230084 0.0206851 139 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.62 vpr 64.86 MiB 0.02 7268 -1 -1 12 0.34 -1 -1 36676 -1 -1 32 29 0 0 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 66416 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 26.4 MiB 0.32 1336 16893 4738 9260 2895 64.9 MiB 0.14 0.00 5.81778 -111.525 -5.81778 5.81778 0.95 0.000681976 0.000613558 0.0589226 0.0531613 32 4064 38 6.55708e+06 385760 554710. 1919.41 3.78 0.272321 0.23916 22174 131602 -1 3320 19 1635 5127 359846 80153 6.31284 6.31284 -128.708 -6.31284 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0341457 0.0307309 208 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 8.09 vpr 65.25 MiB 0.02 7160 -1 -1 14 0.40 -1 -1 36328 -1 -1 32 32 0 0 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 66820 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 26.6 MiB 0.64 1551 9732 2255 6890 587 65.3 MiB 0.09 0.00 6.7581 -140.801 -6.7581 6.7581 0.91 0.000716847 0.000650364 0.0361224 0.0327131 30 3812 21 6.55708e+06 385760 526063. 1820.29 4.02 0.293389 0.256506 21886 126133 -1 3217 18 1669 4702 217266 52065 7.26844 7.26844 -162.303 -7.26844 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0336677 0.0303444 227 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.06 vpr 64.83 MiB 0.02 7024 -1 -1 12 0.29 -1 -1 36640 -1 -1 27 32 0 0 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 66384 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 26.4 MiB 0.44 1425 15187 4302 8195 2690 64.8 MiB 0.12 0.00 6.02864 -130.772 -6.02864 6.02864 0.87 0.000617067 0.000562152 0.0509208 0.0460722 30 3622 26 6.55708e+06 325485 526063. 1820.29 1.42 0.152204 0.135115 21886 126133 -1 2941 21 1320 3743 184738 42646 6.50944 6.50944 -153.806 -6.50944 0 0 666494. 2306.21 0.27 0.08 0.13 -1 -1 0.27 0.0324234 0.0289001 192 191 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.52 vpr 64.21 MiB 0.02 6896 -1 -1 12 0.18 -1 -1 36488 -1 -1 23 32 0 0 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 65748 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 25.7 MiB 0.49 1126 8727 1952 5643 1132 64.2 MiB 0.07 0.00 5.73938 -123.055 -5.73938 5.73938 0.93 0.000511621 0.000465424 0.0259392 0.023696 36 2594 20 6.55708e+06 277265 612192. 2118.31 3.90 0.165287 0.144447 22750 144809 -1 2215 13 774 2315 129196 29489 6.09998 6.09998 -136.573 -6.09998 0 0 782063. 2706.10 0.32 0.05 0.14 -1 -1 0.32 0.0191196 0.0172976 133 126 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.66 vpr 64.62 MiB 0.02 6920 -1 -1 12 0.27 -1 -1 35944 -1 -1 25 31 0 0 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 66176 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1210 11593 2972 6433 2188 64.6 MiB 0.10 0.00 6.1611 -122.975 -6.1611 6.1611 0.94 0.00058137 0.000529832 0.0390159 0.0354885 28 3556 25 6.55708e+06 301375 500653. 1732.36 2.10 0.13873 0.123542 21310 115450 -1 2961 19 1280 3401 206644 48784 6.63224 6.63224 -145.128 -6.63224 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0302881 0.0272307 170 168 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 6.60 vpr 64.49 MiB 0.02 6924 -1 -1 11 0.24 -1 -1 36300 -1 -1 28 30 0 0 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 66040 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 25.9 MiB 0.28 1197 13758 3727 8097 1934 64.5 MiB 0.12 0.00 5.41232 -108.488 -5.41232 5.41232 0.94 0.000624978 0.000563645 0.0462833 0.0417003 36 3362 30 6.55708e+06 337540 612192. 2118.31 2.95 0.2025 0.177829 22750 144809 -1 2874 16 1217 4103 239751 53931 5.77292 5.77292 -128.276 -5.77292 0 0 782063. 2706.10 0.33 0.09 0.14 -1 -1 0.33 0.0308966 0.028034 189 186 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 11.60 vpr 64.72 MiB 0.02 7056 -1 -1 11 0.25 -1 -1 36492 -1 -1 28 28 0 0 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 66276 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 26.1 MiB 0.38 1173 11398 2791 7434 1173 64.7 MiB 0.09 0.00 5.38078 -98.8334 -5.38078 5.38078 0.93 0.000615982 0.000560231 0.0363597 0.0328778 34 3321 37 6.55708e+06 337540 585099. 2024.56 7.99 0.282703 0.247379 22462 138074 -1 2708 15 1242 3997 250085 56769 5.62118 5.62118 -116.901 -5.62118 0 0 742403. 2568.87 0.30 0.08 0.13 -1 -1 0.30 0.0235597 0.021176 171 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.96 vpr 64.46 MiB 0.02 7060 -1 -1 13 0.23 -1 -1 36124 -1 -1 25 30 0 0 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 66004 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 26.1 MiB 0.53 1075 13143 3746 7099 2298 64.5 MiB 0.09 0.00 6.5589 -124.27 -6.5589 6.5589 0.94 0.000510222 0.000462032 0.0382355 0.0347096 30 2602 16 6.55708e+06 301375 526063. 1820.29 3.24 0.20884 0.18323 21886 126133 -1 2170 15 972 2505 119042 29218 6.7601 6.7601 -139.268 -6.7601 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0218082 0.0197256 142 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 8.27 vpr 64.59 MiB 0.02 6788 -1 -1 12 0.24 -1 -1 36288 -1 -1 27 32 0 0 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 66140 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 26.0 MiB 0.42 1277 6007 1257 4285 465 64.6 MiB 0.06 0.00 5.94764 -130.114 -5.94764 5.94764 0.94 0.000620159 0.000562906 0.0216342 0.0196865 30 3064 23 6.55708e+06 325485 526063. 1820.29 4.60 0.20072 0.176195 21886 126133 -1 2553 17 1174 3239 146543 35806 6.05818 6.05818 -143.601 -6.05818 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0282868 0.0255807 180 174 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 6.94 vpr 64.68 MiB 0.02 7184 -1 -1 13 0.35 -1 -1 36420 -1 -1 30 31 0 0 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 66232 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 26.2 MiB 0.44 1202 11643 3098 6957 1588 64.7 MiB 0.10 0.00 6.6811 -126.413 -6.6811 6.6811 0.99 0.000672523 0.000606915 0.039394 0.0355663 36 3125 21 6.55708e+06 361650 612192. 2118.31 3.04 0.196627 0.173182 22750 144809 -1 2620 20 1409 4161 209451 51190 6.9215 6.9215 -142.327 -6.9215 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0320353 0.0286514 195 190 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 10.93 vpr 64.76 MiB 0.02 7040 -1 -1 14 0.36 -1 -1 37040 -1 -1 31 32 0 0 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 66316 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1421 10247 2480 6789 978 64.8 MiB 0.09 0.00 6.62564 -136.156 -6.62564 6.62564 0.92 0.00068497 0.000619723 0.0372455 0.0336992 28 3923 28 6.55708e+06 373705 500653. 1732.36 7.19 0.252774 0.221337 21310 115450 -1 3219 24 1711 5692 443344 139312 7.13598 7.13598 -162.615 -7.13598 0 0 612192. 2118.31 0.26 0.14 0.11 -1 -1 0.26 0.0397422 0.0354558 215 213 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.35 vpr 64.95 MiB 0.02 7100 -1 -1 14 0.33 -1 -1 36588 -1 -1 27 32 0 0 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 66504 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 26.4 MiB 0.51 1373 8047 1828 5829 390 64.9 MiB 0.08 0.00 6.4367 -125.847 -6.4367 6.4367 0.93 0.000649512 0.00058955 0.0292977 0.0265871 36 3375 23 6.55708e+06 325485 612192. 2118.31 3.43 0.193785 0.171378 22750 144809 -1 2906 19 1449 4912 268314 62237 6.74784 6.74784 -142.447 -6.74784 0 0 782063. 2706.10 0.32 0.09 0.14 -1 -1 0.32 0.0312926 0.0282204 183 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 11.63 vpr 65.06 MiB 0.02 7028 -1 -1 13 0.44 -1 -1 37300 -1 -1 27 32 0 0 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 66620 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 26.5 MiB 0.47 1415 13351 3374 8127 1850 65.1 MiB 0.12 0.00 6.48756 -131.843 -6.48756 6.48756 0.95 0.000693654 0.000627163 0.048243 0.0436148 36 3403 19 6.55708e+06 325485 612192. 2118.31 7.59 0.304278 0.266284 22750 144809 -1 2962 14 1263 3869 215899 49120 7.08856 7.08856 -154.863 -7.08856 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0260223 0.0235125 195 193 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 6.60 vpr 64.33 MiB 0.02 7032 -1 -1 13 0.22 -1 -1 36496 -1 -1 24 30 0 0 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 65872 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 26.0 MiB 0.31 1085 9914 2521 5942 1451 64.3 MiB 0.08 0.00 6.5177 -133.323 -6.5177 6.5177 0.92 0.000546932 0.000494447 0.03107 0.0282072 30 2547 20 6.55708e+06 289320 526063. 1820.29 3.11 0.179604 0.156559 21886 126133 -1 2167 16 993 2571 113882 28491 6.70664 6.70664 -147.535 -6.70664 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0225858 0.0202591 146 139 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 13.19 vpr 64.92 MiB 0.02 7012 -1 -1 13 0.56 -1 -1 36720 -1 -1 31 30 0 0 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 66480 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1441 7863 1766 5061 1036 64.9 MiB 0.08 0.00 6.61036 -130.67 -6.61036 6.61036 0.93 0.000695727 0.000639835 0.0298981 0.0271567 28 4343 42 6.55708e+06 373705 500653. 1732.36 9.26 0.26271 0.230415 21310 115450 -1 3395 18 1668 4824 274752 64604 7.49556 7.49556 -166.586 -7.49556 0 0 612192. 2118.31 0.25 0.09 0.11 -1 -1 0.25 0.031537 0.0283695 208 203 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 8.66 vpr 65.03 MiB 0.02 7224 -1 -1 14 0.37 -1 -1 36428 -1 -1 30 32 0 0 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 66592 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 26.5 MiB 0.40 1329 10744 2540 7052 1152 65.0 MiB 0.10 0.00 6.25798 -133.908 -6.25798 6.25798 0.93 0.000648622 0.000578363 0.0361005 0.0326472 34 3399 50 6.55708e+06 361650 585099. 2024.56 4.78 0.310034 0.272138 22462 138074 -1 2975 19 1653 5523 315805 70971 6.64812 6.64812 -153.36 -6.64812 0 0 742403. 2568.87 0.32 0.11 0.14 -1 -1 0.32 0.0367729 0.0332085 184 181 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 7.57 vpr 65.09 MiB 0.02 7124 -1 -1 12 0.31 -1 -1 36540 -1 -1 32 31 0 0 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 66656 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 26.5 MiB 0.29 1414 5279 910 4135 234 65.1 MiB 0.05 0.00 6.8777 -136.484 -6.8777 6.8777 0.92 0.00062293 0.000559892 0.0194295 0.017589 36 3523 39 6.55708e+06 385760 612192. 2118.31 4.01 0.252842 0.221435 22750 144809 -1 2857 14 1228 3634 198887 46676 7.1971 7.1971 -152.134 -7.1971 0 0 782063. 2706.10 0.32 0.07 0.13 -1 -1 0.32 0.0257868 0.0233054 203 200 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 8.56 vpr 64.69 MiB 0.02 6968 -1 -1 13 0.31 -1 -1 36364 -1 -1 28 30 0 0 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 66244 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 26.1 MiB 0.30 1289 6723 1311 4981 431 64.7 MiB 0.06 0.00 6.2421 -114.622 -6.2421 6.2421 0.94 0.000624009 0.000567019 0.0246618 0.0225093 34 3348 45 6.55708e+06 337540 585099. 2024.56 4.93 0.274036 0.239348 22462 138074 -1 2879 20 1292 3756 210980 49070 6.63224 6.63224 -131.959 -6.63224 0 0 742403. 2568.87 0.31 0.08 0.14 -1 -1 0.31 0.0317149 0.0285119 186 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 8.27 vpr 65.11 MiB 0.02 7016 -1 -1 14 0.46 -1 -1 36984 -1 -1 32 32 0 0 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 66676 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 26.5 MiB 0.58 1501 7761 1798 5436 527 65.1 MiB 0.08 0.00 7.17982 -144.412 -7.17982 7.17982 0.95 0.000704032 0.000637462 0.029622 0.0268214 32 4294 36 6.55708e+06 385760 554710. 1919.41 4.13 0.310871 0.273688 22174 131602 -1 3653 16 1557 4521 286845 66626 7.52815 7.52815 -165.887 -7.52815 0 0 701300. 2426.64 0.30 0.10 0.13 -1 -1 0.30 0.0331421 0.0300542 220 215 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.90 vpr 64.61 MiB 0.02 7148 -1 -1 11 0.36 -1 -1 36520 -1 -1 29 29 0 0 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 66160 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 26.0 MiB 0.40 1220 6522 1299 4436 787 64.6 MiB 0.06 0.00 5.51064 -108.632 -5.51064 5.51064 0.92 0.000613701 0.000557107 0.023086 0.020974 28 3318 27 6.55708e+06 349595 500653. 1732.36 2.20 0.122541 0.108231 21310 115450 -1 2923 14 1177 3705 216501 49337 5.87124 5.87124 -129.169 -5.87124 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0247164 0.0224441 174 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 7.67 vpr 64.41 MiB 0.02 6980 -1 -1 13 0.20 -1 -1 36268 -1 -1 23 32 0 0 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 65952 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 26.1 MiB 0.40 1104 8919 1998 5788 1133 64.4 MiB 0.07 0.00 6.1983 -135.763 -6.1983 6.1983 0.95 0.000554285 0.000503675 0.02794 0.0254471 26 3196 44 6.55708e+06 277265 477104. 1650.88 4.17 0.20213 0.177542 21022 109990 -1 2563 16 1158 2876 181672 41958 6.6791 6.6791 -159.22 -6.6791 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0222948 0.0200609 142 130 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 9.86 vpr 64.52 MiB 0.02 7204 -1 -1 14 0.29 -1 -1 36368 -1 -1 27 32 0 0 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 66068 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 26.2 MiB 0.29 1343 8455 1791 5776 888 64.5 MiB 0.08 0.00 6.57116 -134.157 -6.57116 6.57116 0.92 0.000638288 0.00058069 0.0300607 0.0272356 28 3627 33 6.55708e+06 325485 500653. 1732.36 6.35 0.261387 0.228004 21310 115450 -1 3030 18 1293 3494 198075 46643 6.81156 6.81156 -152.482 -6.81156 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0282868 0.0254464 183 178 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.31 vpr 64.95 MiB 0.02 6944 -1 -1 15 0.47 -1 -1 36768 -1 -1 32 32 0 0 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 66508 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 26.6 MiB 0.66 1596 8199 1748 5624 827 64.9 MiB 0.10 0.00 7.85521 -161.425 -7.85521 7.85521 0.91 0.000743255 0.000679043 0.0381479 0.0348609 30 3852 17 6.55708e+06 385760 526063. 1820.29 1.17 0.135971 0.121045 21886 126133 -1 3281 18 1514 4261 192201 46760 8.05641 8.05641 -180.75 -8.05641 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0331674 0.0298637 228 227 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 7.56 vpr 63.99 MiB 0.02 6828 -1 -1 11 0.20 -1 -1 36420 -1 -1 22 32 0 0 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 65524 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 25.5 MiB 0.73 924 8402 1871 6371 160 64.0 MiB 0.07 0.00 5.35124 -108.779 -5.35124 5.35124 0.89 0.00046546 0.000424071 0.0238743 0.0215696 32 2723 44 6.55708e+06 265210 554710. 1919.41 3.75 0.206505 0.179767 22174 131602 -1 2222 19 966 2778 244537 73022 5.91304 5.91304 -132.471 -5.91304 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0235876 0.0211256 126 123 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.11 vpr 64.55 MiB 0.02 6816 -1 -1 12 0.23 -1 -1 36292 -1 -1 26 31 0 0 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 66096 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 26.1 MiB 0.46 1250 8207 1908 5219 1080 64.5 MiB 0.07 0.00 6.07044 -129.079 -6.07044 6.07044 0.94 0.000581991 0.000527474 0.0266368 0.0241333 36 2950 27 6.55708e+06 313430 612192. 2118.31 2.41 0.180925 0.159603 22750 144809 -1 2578 17 1074 3143 169709 38930 6.22984 6.22984 -144.594 -6.22984 0 0 782063. 2706.10 0.33 0.07 0.13 -1 -1 0.33 0.0261721 0.0236243 157 151 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.22 vpr 64.86 MiB 0.02 7144 -1 -1 12 0.39 -1 -1 36496 -1 -1 31 32 0 0 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 66416 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 26.4 MiB 0.43 1495 8951 2218 5801 932 64.9 MiB 0.09 0.00 6.1611 -137.527 -6.1611 6.1611 0.94 0.000699854 0.000634982 0.0331902 0.0300915 28 4194 37 6.55708e+06 373705 500653. 1732.36 2.40 0.158669 0.140654 21310 115450 -1 3458 15 1508 4398 252427 58120 6.2813 6.2813 -159.614 -6.2813 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0285159 0.0257426 209 206 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 21.41 vpr 65.02 MiB 0.02 7024 -1 -1 12 0.31 -1 -1 36452 -1 -1 28 32 0 0 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 66584 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 26.2 MiB 0.57 1496 10649 2728 6324 1597 65.0 MiB 0.09 0.00 6.38924 -134.971 -6.38924 6.38924 0.95 0.000631699 0.000569101 0.0363421 0.0329588 28 4682 46 6.55708e+06 337540 500653. 1732.36 17.49 0.267733 0.236163 21310 115450 -1 3710 22 1864 5749 407349 92655 6.66884 6.66884 -164.014 -6.66884 0 0 612192. 2118.31 0.25 0.12 0.11 -1 -1 0.25 0.0334689 0.0299332 186 183 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 8.18 vpr 65.23 MiB 0.02 7304 -1 -1 14 0.58 -1 -1 36860 -1 -1 35 32 0 0 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 66796 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 26.8 MiB 0.34 1647 12411 3008 7932 1471 65.2 MiB 0.12 0.00 7.32696 -151.807 -7.32696 7.32696 0.95 0.000771978 0.000700995 0.0469042 0.0425208 36 4388 37 6.55708e+06 421925 612192. 2118.31 4.06 0.259393 0.229306 22750 144809 -1 3691 18 1714 5336 301957 68995 7.52815 7.52815 -165.857 -7.52815 0 0 782063. 2706.10 0.33 0.11 0.14 -1 -1 0.33 0.0387544 0.0350658 241 238 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.51 vpr 64.75 MiB 0.02 7112 -1 -1 11 0.29 -1 -1 36568 -1 -1 27 30 0 0 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 66308 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 26.2 MiB 0.54 1294 13553 3631 7670 2252 64.8 MiB 0.11 0.00 5.55184 -108.109 -5.55184 5.55184 0.95 0.000610175 0.000553168 0.0456428 0.0414365 28 4047 44 6.55708e+06 325485 500653. 1732.36 2.58 0.159948 0.141311 21310 115450 -1 3090 21 1634 5141 339920 74010 5.83404 5.83404 -130.254 -5.83404 0 0 612192. 2118.31 0.28 0.11 0.12 -1 -1 0.28 0.0317831 0.0282937 176 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.50 vpr 64.04 MiB 0.02 6980 -1 -1 11 0.21 -1 -1 36472 -1 -1 25 27 0 0 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 65580 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 25.5 MiB 0.27 904 7221 1742 4800 679 64.0 MiB 0.06 0.00 5.29918 -99.4913 -5.29918 5.29918 0.94 0.000534208 0.000486486 0.0232954 0.0211868 26 2491 22 6.55708e+06 301375 477104. 1650.88 1.16 0.10021 0.0884562 21022 109990 -1 2107 15 944 2599 145439 34323 5.50038 5.50038 -114.074 -5.50038 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0217969 0.0196032 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.94 vpr 65.21 MiB 0.02 7364 -1 -1 13 0.55 -1 -1 36756 -1 -1 40 32 0 0 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 66776 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 27.1 MiB 0.33 1869 9620 2275 6325 1020 65.2 MiB 0.10 0.00 6.54924 -135.588 -6.54924 6.54924 0.92 0.000850068 0.000763731 0.0386222 0.03486 34 5680 37 6.55708e+06 482200 585099. 2024.56 4.85 0.270498 0.238755 22462 138074 -1 4464 21 2506 8596 557624 123721 6.90018 6.90018 -159.284 -6.90018 0 0 742403. 2568.87 0.31 0.17 0.14 -1 -1 0.31 0.0477416 0.0432083 280 278 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 7.78 vpr 64.72 MiB 0.02 7188 -1 -1 14 0.35 -1 -1 36780 -1 -1 26 31 0 0 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 66276 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 26.1 MiB 0.31 1284 9593 2195 6437 961 64.7 MiB 0.09 0.00 6.92456 -139.428 -6.92456 6.92456 0.94 0.000635975 0.000581923 0.0344926 0.0313935 36 3045 26 6.55708e+06 313430 612192. 2118.31 4.03 0.233632 0.204956 22750 144809 -1 2590 19 1167 3412 174525 41426 7.24856 7.24856 -155.97 -7.24856 0 0 782063. 2706.10 0.33 0.07 0.14 -1 -1 0.33 0.0300755 0.0270288 178 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 7.90 vpr 64.48 MiB 0.02 6968 -1 -1 12 0.19 -1 -1 36412 -1 -1 27 32 0 0 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 66028 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 26.1 MiB 0.45 1202 13147 3375 7497 2275 64.5 MiB 0.10 0.00 6.01498 -136.633 -6.01498 6.01498 0.91 0.000527172 0.000479095 0.0373189 0.0339011 36 2986 29 6.55708e+06 325485 612192. 2118.31 4.27 0.193571 0.16913 22750 144809 -1 2556 16 995 2792 163694 36835 6.61598 6.61598 -157.989 -6.61598 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0225065 0.0201802 144 133 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 6.95 vpr 64.68 MiB 0.02 7164 -1 -1 13 0.38 -1 -1 36668 -1 -1 25 32 0 0 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 66232 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 26.1 MiB 0.52 1271 6227 1298 4334 595 64.7 MiB 0.06 0.00 6.3205 -125.028 -6.3205 6.3205 0.92 0.00064228 0.000578984 0.0236313 0.0214449 36 3215 48 6.55708e+06 301375 612192. 2118.31 3.04 0.203868 0.17908 22750 144809 -1 2706 18 1261 3932 209667 49344 6.8033 6.8033 -145.074 -6.8033 0 0 782063. 2706.10 0.32 0.08 0.14 -1 -1 0.32 0.0290799 0.0261626 172 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 13.53 vpr 65.20 MiB 0.02 7144 -1 -1 13 0.37 -1 -1 37120 -1 -1 35 31 0 0 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 66760 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 26.8 MiB 0.38 1672 9998 2281 7007 710 65.2 MiB 0.09 0.00 6.0781 -130.807 -6.0781 6.0781 0.91 0.000737162 0.0006668 0.0345433 0.0312202 36 4027 16 6.55708e+06 421925 612192. 2118.31 9.75 0.326632 0.286342 22750 144809 -1 3553 16 1652 5133 282342 64582 6.7993 6.7993 -152.989 -6.7993 0 0 782063. 2706.10 0.32 0.10 0.13 -1 -1 0.32 0.033096 0.0299802 235 232 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 7.94 vpr 64.58 MiB 0.02 7212 -1 -1 11 0.29 -1 -1 36580 -1 -1 32 30 0 0 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 66132 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 26.2 MiB 0.48 1393 6484 1238 4828 418 64.6 MiB 0.06 0.00 5.79284 -117.238 -5.79284 5.79284 0.94 0.000656872 0.000586924 0.0238637 0.0215334 36 3433 23 6.55708e+06 385760 612192. 2118.31 4.10 0.264253 0.232585 22750 144809 -1 2926 16 1185 4071 219147 49411 6.15084 6.15084 -135.007 -6.15084 0 0 782063. 2706.10 0.33 0.08 0.14 -1 -1 0.33 0.0309313 0.0280259 199 196 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.53 vpr 64.92 MiB 0.02 7148 -1 -1 15 0.41 -1 -1 36772 -1 -1 29 32 0 0 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 66480 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 26.4 MiB 0.38 1440 9543 2254 5965 1324 64.9 MiB 0.09 0.00 7.33722 -153.632 -7.33722 7.33722 0.94 0.000688079 0.000624923 0.0350281 0.0317195 34 4220 36 6.55708e+06 349595 585099. 2024.56 2.65 0.207163 0.182388 22462 138074 -1 3258 16 1399 4256 254571 58264 7.93821 7.93821 -173.369 -7.93821 0 0 742403. 2568.87 0.30 0.08 0.14 -1 -1 0.30 0.0293523 0.0264774 203 202 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 8.38 vpr 65.08 MiB 0.02 6984 -1 -1 13 0.41 -1 -1 36632 -1 -1 32 32 0 0 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 66640 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1549 11703 2904 7439 1360 65.1 MiB 0.11 0.00 6.3577 -137.811 -6.3577 6.3577 0.95 0.000701722 0.000634246 0.0427262 0.0387103 34 4081 42 6.55708e+06 385760 585099. 2024.56 4.59 0.315946 0.277023 22462 138074 -1 3322 21 1638 5031 271510 62839 6.7621 6.7621 -158.491 -6.7621 0 0 742403. 2568.87 0.31 0.10 0.14 -1 -1 0.31 0.0391704 0.0352911 217 216 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.97 vpr 64.59 MiB 0.02 6804 -1 -1 12 0.25 -1 -1 36148 -1 -1 29 29 0 0 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 66136 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 26.1 MiB 0.53 1143 7728 1821 5116 791 64.6 MiB 0.07 0.00 5.65838 -122.207 -5.65838 5.65838 0.94 0.000582303 0.000521363 0.0246778 0.0224897 26 3489 43 6.55708e+06 349595 477104. 1650.88 4.28 0.190454 0.166493 21022 109990 -1 2766 25 1502 3883 317668 98664 6.26138 6.26138 -147.884 -6.26138 0 0 585099. 2024.56 0.24 0.11 0.11 -1 -1 0.24 0.031182 0.0277046 159 147 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 7.78 vpr 64.23 MiB 0.02 6940 -1 -1 11 0.19 -1 -1 36456 -1 -1 22 32 0 0 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 65772 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 25.9 MiB 0.47 1049 8213 1798 6131 284 64.2 MiB 0.07 0.00 5.63084 -118.475 -5.63084 5.63084 0.94 0.000545121 0.00049004 0.0256838 0.0231883 36 2762 19 6.55708e+06 265210 612192. 2118.31 4.11 0.224646 0.196081 22750 144809 -1 2327 16 1002 2719 138572 33894 5.99144 5.99144 -138.907 -5.99144 0 0 782063. 2706.10 0.32 0.06 0.14 -1 -1 0.32 0.0223363 0.0199881 138 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.54 vpr 64.97 MiB 0.02 7004 -1 -1 13 0.39 -1 -1 36976 -1 -1 31 31 0 0 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 66528 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 26.4 MiB 0.44 1362 7549 1607 5468 474 65.0 MiB 0.07 0.00 6.78504 -137.898 -6.78504 6.78504 0.92 0.000677238 0.000611003 0.0277091 0.0250563 30 3554 25 6.55708e+06 373705 526063. 1820.29 1.74 0.129095 0.113737 21886 126133 -1 2907 18 1407 4468 214530 51194 6.9959 6.9959 -155.051 -6.9959 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0305241 0.0274378 204 201 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 7.17 vpr 64.44 MiB 0.02 6872 -1 -1 10 0.22 -1 -1 36220 -1 -1 24 29 0 0 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 65984 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 25.9 MiB 0.26 1038 9199 2235 5441 1523 64.4 MiB 0.07 0.00 4.88972 -100.056 -4.88972 4.88972 0.93 0.000493611 0.00044469 0.0273793 0.0248005 30 2482 38 6.55708e+06 289320 526063. 1820.29 3.78 0.21646 0.188094 21886 126133 -1 2024 16 880 2475 112758 27755 5.26458 5.26458 -114.663 -5.26458 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0220265 0.0198177 138 132 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 7.39 vpr 64.30 MiB 0.02 6976 -1 -1 14 0.23 -1 -1 36112 -1 -1 24 32 0 0 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 65848 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 25.9 MiB 0.54 1104 9643 2259 5449 1935 64.3 MiB 0.08 0.00 6.6399 -136.092 -6.6399 6.6399 0.94 0.000552818 0.000504237 0.0308261 0.0280754 34 2852 20 6.55708e+06 289320 585099. 2024.56 3.62 0.207209 0.180975 22462 138074 -1 2349 15 933 2780 150434 35481 6.6399 6.6399 -148.559 -6.6399 0 0 742403. 2568.87 0.31 0.06 0.14 -1 -1 0.31 0.0224053 0.0202087 149 145 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 6.11 vpr 64.70 MiB 0.02 7144 -1 -1 12 0.40 -1 -1 36592 -1 -1 29 31 0 0 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 66256 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 26.3 MiB 0.38 1340 9821 2515 6151 1155 64.7 MiB 0.09 0.00 6.2787 -130.261 -6.2787 6.2787 0.94 0.000674472 0.000613255 0.036296 0.0328609 36 3111 15 6.55708e+06 349595 612192. 2118.31 2.20 0.187843 0.165909 22750 144809 -1 2829 16 1291 4192 228248 52713 6.62964 6.62964 -148.757 -6.62964 0 0 782063. 2706.10 0.32 0.08 0.15 -1 -1 0.32 0.0293179 0.0265472 201 199 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 5.22 vpr 64.19 MiB 0.02 6976 -1 -1 12 0.19 -1 -1 36064 -1 -1 23 31 0 0 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 65732 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 25.8 MiB 0.38 1126 6134 1174 4650 310 64.2 MiB 0.05 0.00 5.61918 -122.046 -5.61918 5.61918 0.92 0.000493931 0.00044776 0.0189657 0.0172575 28 3255 43 6.55708e+06 277265 500653. 1732.36 1.74 0.116391 0.102552 21310 115450 -1 2716 25 1053 2778 260394 85422 5.98178 5.98178 -140.716 -5.98178 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0292492 0.0259883 141 136 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 5.25 vpr 64.88 MiB 0.02 7228 -1 -1 12 0.24 -1 -1 36684 -1 -1 27 32 0 0 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 66440 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 26.2 MiB 0.34 1363 7843 1797 5442 604 64.9 MiB 0.07 0.00 5.82038 -126.658 -5.82038 5.82038 0.94 0.00062081 0.000559924 0.0286713 0.0258782 30 3561 49 6.55708e+06 325485 526063. 1820.29 1.63 0.152768 0.134318 21886 126133 -1 2844 18 1219 3836 196733 44856 6.34038 6.34038 -146.497 -6.34038 0 0 666494. 2306.21 0.30 0.08 0.12 -1 -1 0.30 0.0296437 0.026662 188 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 5.70 vpr 64.81 MiB 0.02 7164 -1 -1 13 0.35 -1 -1 36552 -1 -1 29 31 0 0 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 66364 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 26.3 MiB 0.35 1324 6923 1551 4414 958 64.8 MiB 0.07 0.00 6.1591 -129.623 -6.1591 6.1591 0.94 0.000645147 0.000585085 0.0247802 0.0225247 30 3538 38 6.55708e+06 349595 526063. 1820.29 1.96 0.13476 0.118853 21886 126133 -1 2925 17 1332 3936 201229 46729 6.3995 6.3995 -149.915 -6.3995 0 0 666494. 2306.21 0.28 0.07 0.13 -1 -1 0.28 0.0269528 0.0241818 179 176 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 11.80 vpr 64.49 MiB 0.02 6916 -1 -1 11 0.21 -1 -1 36456 -1 -1 27 32 0 0 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 66040 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 26.0 MiB 0.29 1252 6823 1345 4982 496 64.5 MiB 0.06 0.00 5.59164 -121.723 -5.59164 5.59164 0.92 0.000552977 0.000505025 0.0206843 0.0188431 30 3124 19 6.55708e+06 325485 526063. 1820.29 8.38 0.230605 0.200735 21886 126133 -1 2610 16 1082 3309 163238 38423 5.63544 5.63544 -135.442 -5.63544 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0236809 0.0213538 148 142 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 7.08 vpr 64.46 MiB 0.02 6924 -1 -1 13 0.25 -1 -1 36408 -1 -1 27 32 0 0 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 66004 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 26.0 MiB 0.30 1255 11515 2790 7390 1335 64.5 MiB 0.09 0.00 6.38524 -135.012 -6.38524 6.38524 0.91 0.000549383 0.000502542 0.0368162 0.0334289 30 2955 17 6.55708e+06 325485 526063. 1820.29 3.59 0.216925 0.190054 21886 126133 -1 2514 14 980 2739 140083 32885 6.62564 6.62564 -149.011 -6.62564 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0236679 0.0214364 167 164 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 4.98 vpr 64.99 MiB 0.02 7164 -1 -1 13 0.31 -1 -1 36512 -1 -1 27 32 0 0 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 66552 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1447 9883 2771 5881 1231 65.0 MiB 0.09 0.00 6.37196 -131.547 -6.37196 6.37196 0.92 0.000637896 0.000578865 0.03379 0.0307017 30 3781 24 6.55708e+06 325485 526063. 1820.29 1.41 0.131143 0.116273 21886 126133 -1 3115 17 1373 3977 200864 46766 6.97296 6.97296 -153.132 -6.97296 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0280417 0.0253079 184 182 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 5.86 vpr 64.55 MiB 0.02 7068 -1 -1 11 0.27 -1 -1 36352 -1 -1 28 29 0 0 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 66100 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 26.1 MiB 0.40 1158 12167 3308 6389 2470 64.6 MiB 0.09 0.00 5.44952 -104.688 -5.44952 5.44952 0.92 0.000587216 0.000532252 0.0382152 0.0346259 34 2969 20 6.55708e+06 337540 585099. 2024.56 2.04 0.172084 0.151259 22462 138074 -1 2635 30 1303 4246 467896 196541 5.84932 5.84932 -122.806 -5.84932 0 0 742403. 2568.87 0.32 0.17 0.14 -1 -1 0.32 0.0380436 0.033777 162 156 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.74 vpr 65.34 MiB 0.02 7280 -1 -1 14 0.38 -1 -1 37284 -1 -1 32 32 0 0 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 66912 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 26.6 MiB 0.44 1601 8199 1723 5717 759 65.3 MiB 0.08 0.00 6.98322 -149.58 -6.98322 6.98322 0.92 0.000661114 0.00057995 0.0306656 0.0277194 36 4146 23 6.55708e+06 385760 612192. 2118.31 2.91 0.200178 0.176091 22750 144809 -1 3464 17 1570 4652 252207 58281 7.22362 7.22362 -166.317 -7.22362 0 0 782063. 2706.10 0.31 0.09 0.15 -1 -1 0.31 0.0335574 0.0301627 225 221 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 5.11 vpr 64.43 MiB 0.02 6812 -1 -1 12 0.19 -1 -1 36288 -1 -1 28 31 0 0 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 65972 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 26.0 MiB 0.49 1042 8863 2205 5322 1336 64.4 MiB 0.07 0.00 5.43224 -114.074 -5.43224 5.43224 0.94 0.000539874 0.000491587 0.0256835 0.0233058 30 2873 35 6.55708e+06 337540 526063. 1820.29 1.47 0.119866 0.106017 21886 126133 -1 2154 17 988 2638 125540 30840 5.55244 5.55244 -128.37 -5.55244 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0232746 0.0209202 145 137 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 7.57 vpr 64.85 MiB 0.02 7048 -1 -1 13 0.35 -1 -1 37020 -1 -1 27 32 0 0 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 66408 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 26.5 MiB 0.44 1431 5599 1064 3987 548 64.9 MiB 0.06 0.00 6.50944 -129.672 -6.50944 6.50944 0.94 0.000655481 0.000596944 0.0216316 0.0197159 30 3317 20 6.55708e+06 325485 526063. 1820.29 3.79 0.234071 0.205359 21886 126133 -1 2846 16 1270 4021 200341 45512 6.50944 6.50944 -143.913 -6.50944 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0278433 0.0251728 189 187 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.34 vpr 64.25 MiB 0.02 6892 -1 -1 13 0.23 -1 -1 36312 -1 -1 25 32 0 0 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 65796 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 25.9 MiB 0.46 1113 12365 3461 6577 2327 64.3 MiB 0.09 0.00 6.30884 -134.257 -6.30884 6.30884 0.93 0.000529301 0.000476643 0.0365211 0.033134 28 3251 42 6.55708e+06 301375 500653. 1732.36 1.70 0.136837 0.120719 21310 115450 -1 2533 17 1141 2919 165013 40554 6.78964 6.78964 -155.929 -6.78964 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0226797 0.020283 146 140 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 12.32 vpr 64.41 MiB 0.02 7176 -1 -1 12 0.27 -1 -1 36564 -1 -1 26 32 0 0 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 65956 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 25.9 MiB 0.38 1206 5517 1016 4177 324 64.4 MiB 0.05 0.00 6.0821 -125.095 -6.0821 6.0821 0.96 0.000620666 0.0005654 0.0204863 0.0187047 26 3730 45 6.55708e+06 313430 477104. 1650.88 8.70 0.227742 0.199348 21022 109990 -1 2869 24 1417 4513 309839 70165 6.75184 6.75184 -150.99 -6.75184 0 0 585099. 2024.56 0.26 0.10 0.10 -1 -1 0.26 0.0331235 0.0294658 172 170 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.09 vpr 65.21 MiB 0.02 7364 -1 -1 15 0.58 -1 -1 36692 -1 -1 34 32 0 0 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 66776 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 27.0 MiB 0.36 1706 9773 2264 6646 863 65.2 MiB 0.10 0.00 7.45942 -149.096 -7.45942 7.45942 0.93 0.000785892 0.000711127 0.0390114 0.0352877 36 4457 27 6.55708e+06 409870 612192. 2118.31 5.04 0.237965 0.209469 22750 144809 -1 3739 17 1812 5753 310932 72001 7.82001 7.82001 -169.418 -7.82001 0 0 782063. 2706.10 0.31 0.10 0.14 -1 -1 0.31 0.0361068 0.0326169 250 249 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.15 vpr 63.79 MiB 0.02 6892 -1 -1 10 0.11 -1 -1 35852 -1 -1 16 30 0 0 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 65324 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 25.3 MiB 0.34 657 5722 1277 4285 160 63.8 MiB 0.04 0.00 4.40126 -96.7004 -4.40126 4.40126 0.91 0.000390287 0.000353845 0.0153217 0.013937 30 1589 14 6.55708e+06 192880 526063. 1820.29 0.89 0.0634333 0.0557051 21886 126133 -1 1456 13 548 1296 71678 17576 4.64166 4.64166 -113.649 -4.64166 0 0 666494. 2306.21 0.27 0.04 0.12 -1 -1 0.27 0.0145928 0.0131658 92 82 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.42 vpr 64.16 MiB 0.02 6952 -1 -1 13 0.22 -1 -1 36300 -1 -1 29 30 0 0 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 65704 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 25.8 MiB 0.24 1134 7027 1670 4551 806 64.2 MiB 0.06 0.00 6.2375 -126.903 -6.2375 6.2375 0.94 0.000567397 0.000497133 0.0215565 0.0196182 30 2518 17 6.55708e+06 349595 526063. 1820.29 1.02 0.0915042 0.0807713 21886 126133 -1 2273 16 909 2531 117073 28568 6.4779 6.4779 -142.931 -6.4779 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0226406 0.0203558 150 138 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.57 vpr 64.50 MiB 0.02 6884 -1 -1 12 0.24 -1 -1 36356 -1 -1 23 32 0 0 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 66052 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 26.0 MiB 0.37 1242 6999 1430 4516 1053 64.5 MiB 0.07 0.00 5.66498 -124.229 -5.66498 5.66498 0.92 0.000595864 0.000533236 0.0254474 0.0230422 36 2891 15 6.55708e+06 277265 612192. 2118.31 1.96 0.132193 0.115964 22750 144809 -1 2539 15 1105 3101 158889 37878 5.90538 5.90538 -141.884 -5.90538 0 0 782063. 2706.10 0.32 0.07 0.14 -1 -1 0.32 0.0252774 0.0228467 167 166 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.43 vpr 63.94 MiB 0.02 6872 -1 -1 9 0.16 -1 -1 36008 -1 -1 25 25 0 0 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 65476 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 25.5 MiB 0.20 819 11652 3252 6639 1761 63.9 MiB 0.08 0.00 4.55866 -86.4056 -4.55866 4.55866 0.94 0.000420173 0.000378431 0.03083 0.0278955 26 2214 25 6.55708e+06 301375 477104. 1650.88 1.20 0.0969873 0.0855425 21022 109990 -1 1858 16 830 2327 125984 29716 4.80106 4.80106 -100.644 -4.80106 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0178168 0.0158707 112 103 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 8.87 vpr 64.62 MiB 0.02 7012 -1 -1 12 0.32 -1 -1 36208 -1 -1 34 32 0 0 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 66172 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 26.0 MiB 0.69 1676 7973 1663 5689 621 64.6 MiB 0.08 0.00 6.3205 -139.133 -6.3205 6.3205 0.96 0.000698174 0.000633739 0.028747 0.0260712 38 3806 32 6.55708e+06 409870 638502. 2209.35 4.71 0.269355 0.236382 23326 155178 -1 3250 17 1462 4323 208136 48366 6.63224 6.63224 -157.424 -6.63224 0 0 851065. 2944.86 0.34 0.08 0.15 -1 -1 0.34 0.0309474 0.027974 209 207 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.82 vpr 65.03 MiB 0.02 7100 -1 -1 14 0.40 -1 -1 36904 -1 -1 29 31 0 0 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 66588 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 26.5 MiB 0.53 1367 13754 3548 7597 2609 65.0 MiB 0.12 0.00 7.02242 -137.908 -7.02242 7.02242 0.92 0.000685557 0.000622722 0.0494778 0.0446841 36 3559 22 6.55708e+06 349595 612192. 2118.31 3.78 0.274646 0.240171 22750 144809 -1 2823 20 1180 3614 185719 44327 7.17216 7.17216 -152.054 -7.17216 0 0 782063. 2706.10 0.31 0.08 0.14 -1 -1 0.31 0.0364256 0.0328299 204 202 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.21 vpr 65.20 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34020 -1 -1 36 32 0 0 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 66764 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 26.9 MiB 0.11 940 12396 3110 7978 1308 65.2 MiB 0.12 0.00 3.40616 -114.923 -3.40616 3.40616 0.93 0.000589881 0.000527695 0.0337176 0.0307508 32 2548 22 6.64007e+06 452088 554710. 1919.41 1.03 0.108379 0.0954485 22834 132086 -1 2174 22 1870 3090 206097 47904 3.69943 3.69943 -139.504 -3.69943 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.028028 0.0248206 153 80 32 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.27 vpr 65.02 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34028 -1 -1 23 30 0 0 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 66584 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 26.2 MiB 0.19 959 13291 4221 6457 2613 65.0 MiB 0.12 0.00 3.72596 -114.095 -3.72596 3.72596 0.91 0.00053882 0.000490195 0.0415116 0.0378515 32 2438 28 6.64007e+06 288834 554710. 1919.41 1.04 0.119143 0.105091 22834 132086 -1 2023 22 1709 2936 178948 42961 3.61442 3.61442 -132.572 -3.61442 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0269549 0.0238774 142 78 30 30 89 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 6.87 vpr 65.13 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33912 -1 -1 35 32 0 0 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 66696 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 26.5 MiB 0.10 931 8991 1923 6602 466 65.1 MiB 0.08 0.00 3.13925 -105.417 -3.13925 3.13925 0.94 0.000546348 0.000500611 0.0240354 0.0218913 24 3242 49 6.64007e+06 439530 448715. 1552.65 3.84 0.146648 0.12779 21394 104001 -1 2400 22 1692 2712 268591 56760 3.88703 3.88703 -141.948 -3.88703 0 0 554710. 1919.41 0.22 0.08 0.09 -1 -1 0.22 0.023767 0.0209482 142 50 54 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.29 vpr 64.89 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34140 -1 -1 24 29 0 0 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 66448 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 26.3 MiB 0.07 996 16081 5140 8933 2008 64.9 MiB 0.15 0.00 3.58556 -108.327 -3.58556 3.58556 0.95 0.000508879 0.000463668 0.0497475 0.0454358 26 2457 21 6.64007e+06 301392 477104. 1650.88 1.17 0.119046 0.105745 21682 110474 -1 2135 20 1712 2921 203141 45874 3.80683 3.80683 -134.843 -3.80683 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0229688 0.0204155 138 25 87 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.16 vpr 65.24 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34060 -1 -1 22 32 0 0 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 66804 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 26.6 MiB 0.09 1039 12938 3395 8690 853 65.2 MiB 0.12 0.00 3.30796 -117.815 -3.30796 3.30796 0.93 0.000560425 0.000510024 0.0375062 0.0340726 32 2591 22 6.64007e+06 276276 554710. 1919.41 1.01 0.105919 0.0931255 22834 132086 -1 2192 21 1998 3633 244050 54779 3.84763 3.84763 -144.227 -3.84763 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0250408 0.0221855 153 31 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.25 vpr 65.26 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34152 -1 -1 39 32 0 0 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 66828 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 26.8 MiB 0.12 992 19624 5740 11235 2649 65.3 MiB 0.17 0.00 2.7819 -96.9768 -2.7819 2.7819 0.94 0.000558553 0.000508979 0.046961 0.0427462 32 2317 19 6.64007e+06 489762 554710. 1919.41 0.99 0.117298 0.103765 22834 132086 -1 1856 20 1398 2312 133949 33288 2.70657 2.70657 -110.122 -2.70657 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0256069 0.0226797 156 61 63 32 63 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.87 vpr 64.34 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33984 -1 -1 20 27 0 0 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 65884 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 26.0 MiB 0.09 734 10388 3326 6105 957 64.3 MiB 0.08 0.00 3.0775 -85.9753 -3.0775 3.0775 0.93 0.000400835 0.000366506 0.0273401 0.0250103 28 1618 22 6.64007e+06 251160 500653. 1732.36 0.88 0.0793206 0.069963 21970 115934 -1 1493 20 813 1464 96740 22850 2.79977 2.79977 -98.9991 -2.79977 0 0 612192. 2118.31 0.28 0.05 0.11 -1 -1 0.28 0.0186742 0.0165472 96 26 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.08 vpr 65.09 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33604 -1 -1 34 31 0 0 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 66652 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 26.5 MiB 0.08 1037 12973 3452 8106 1415 65.1 MiB 0.11 0.00 2.9483 -95.6493 -2.9483 2.9483 0.95 0.000477146 0.00043471 0.0302599 0.0276775 32 2269 19 6.64007e+06 426972 554710. 1919.41 0.94 0.0893183 0.0789247 22834 132086 -1 2019 20 1253 2108 136453 30839 2.77497 2.77497 -107.827 -2.77497 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0213286 0.0189036 140 -1 115 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.06 vpr 64.77 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33820 -1 -1 17 31 0 0 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 66320 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 26.0 MiB 0.14 813 8336 2254 4620 1462 64.8 MiB 0.07 0.00 2.69519 -86.3861 -2.69519 2.69519 0.94 0.000487764 0.000436445 0.024573 0.0224668 32 1832 17 6.64007e+06 213486 554710. 1919.41 0.95 0.0832391 0.0733223 22834 132086 -1 1660 19 961 1558 117471 26713 2.76197 2.76197 -100.107 -2.76197 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0212958 0.0189066 106 81 0 0 84 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.16 vpr 64.92 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33688 -1 -1 17 32 0 0 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 66480 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 26.2 MiB 0.14 858 12506 3688 7273 1545 64.9 MiB 0.10 0.00 2.7849 -102.219 -2.7849 2.7849 0.92 0.000438115 0.000399572 0.0349763 0.0319615 32 1974 22 6.64007e+06 213486 554710. 1919.41 0.99 0.097787 0.0865251 22834 132086 -1 1832 19 1374 2063 153070 33666 2.97697 2.97697 -123.12 -2.97697 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0210675 0.0187901 121 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.08 vpr 65.00 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33428 -1 -1 18 30 0 0 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 66564 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 26.2 MiB 0.14 738 12120 3363 8072 685 65.0 MiB 0.10 0.00 2.80139 -91.9352 -2.80139 2.80139 0.94 0.000478085 0.000435395 0.034771 0.0317907 32 1746 18 6.64007e+06 226044 554710. 1919.41 0.92 0.0917123 0.0809232 22834 132086 -1 1575 19 1079 1508 104198 24692 2.85597 2.85597 -111.981 -2.85597 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0208629 0.0185178 110 58 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.05 vpr 64.87 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33696 -1 -1 29 32 0 0 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 66424 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 26.1 MiB 0.10 814 9963 2256 7305 402 64.9 MiB 0.09 0.00 2.6877 -91.3221 -2.6877 2.6877 0.94 0.000465332 0.000422493 0.0248998 0.0226733 30 1974 18 6.64007e+06 364182 526063. 1820.29 0.96 0.0842773 0.0741228 22546 126617 -1 1685 20 1044 1717 101257 23034 2.64137 2.64137 -109.69 -2.64137 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0217275 0.0192118 114 57 25 25 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.32 vpr 65.10 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33936 -1 -1 34 32 0 0 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 66660 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 26.4 MiB 0.19 953 18998 6107 10302 2589 65.1 MiB 0.16 0.00 2.8189 -100.107 -2.8189 2.8189 0.93 0.000563265 0.000513628 0.0500809 0.0456094 32 2483 21 6.64007e+06 426972 554710. 1919.41 1.01 0.120125 0.106224 22834 132086 -1 2011 20 1643 2870 188513 43053 2.83157 2.83157 -117.242 -2.83157 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0244656 0.0215997 145 55 64 32 57 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.80 vpr 65.16 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 33960 -1 -1 36 32 0 0 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 66728 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 26.7 MiB 0.13 1027 12860 3255 7884 1721 65.2 MiB 0.12 0.00 3.40616 -119.112 -3.40616 3.40616 0.93 0.000594466 0.000540433 0.0333578 0.030442 26 3111 26 6.64007e+06 452088 477104. 1650.88 1.67 0.121053 0.107125 21682 110474 -1 2423 19 1786 2758 214212 46320 3.76663 3.76663 -147.755 -3.76663 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0256484 0.0228115 158 60 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.91 vpr 64.45 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33920 -1 -1 19 29 0 0 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 66000 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 26.0 MiB 0.10 882 11948 3221 7009 1718 64.5 MiB 0.09 0.00 2.7049 -87.2042 -2.7049 2.7049 0.93 0.000412933 0.000378719 0.0299059 0.0273401 28 1883 23 6.64007e+06 238602 500653. 1732.36 0.89 0.0847841 0.0747746 21970 115934 -1 1711 19 950 1611 108009 24871 2.70957 2.70957 -102.377 -2.70957 0 0 612192. 2118.31 0.27 0.05 0.11 -1 -1 0.27 0.0184944 0.0163749 108 21 58 29 24 24 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.94 vpr 65.26 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34040 -1 -1 22 32 0 0 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 66828 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 26.5 MiB 0.15 1105 14450 4624 7653 2173 65.3 MiB 0.13 0.00 2.82639 -103.29 -2.82639 2.82639 0.93 0.000565359 0.000512887 0.0432859 0.0393793 34 2396 28 6.64007e+06 276276 585099. 2024.56 1.72 0.170659 0.149433 23122 138558 -1 2171 19 1553 2744 192871 41708 2.96197 2.96197 -121.816 -2.96197 0 0 742403. 2568.87 0.31 0.07 0.13 -1 -1 0.31 0.0240061 0.0212701 147 60 64 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 6.39 vpr 65.31 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33980 -1 -1 36 32 0 0 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 66876 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 26.6 MiB 0.15 1055 16804 4937 9541 2326 65.3 MiB 0.14 0.00 2.9051 -104.799 -2.9051 2.9051 0.92 0.000540765 0.000485914 0.0415838 0.0379906 34 2160 21 6.64007e+06 452088 585099. 2024.56 3.17 0.174764 0.152828 23122 138558 -1 1941 20 1179 1784 131097 29652 2.87877 2.87877 -117.12 -2.87877 0 0 742403. 2568.87 0.30 0.06 0.14 -1 -1 0.30 0.0237408 0.0210022 144 54 64 32 56 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.10 vpr 64.97 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 33820 -1 -1 31 32 0 0 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 66528 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 26.4 MiB 0.12 916 11111 2887 6946 1278 65.0 MiB 0.09 0.00 2.26464 -84.6836 -2.26464 2.26464 0.95 0.000482699 0.000437943 0.0275377 0.0250736 32 2021 20 6.64007e+06 389298 554710. 1919.41 0.94 0.0873791 0.0767485 22834 132086 -1 1790 20 1180 1890 132657 29535 2.13951 2.13951 -97.9627 -2.13951 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.020969 0.0185037 119 62 29 29 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.90 vpr 64.29 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 33524 -1 -1 15 30 0 0 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 65836 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.8 MiB 0.04 659 9857 3750 4636 1471 64.3 MiB 0.06 0.00 2.12244 -71.4892 -2.12244 2.12244 0.96 0.000361651 0.000329515 0.0236397 0.0215621 32 1416 21 6.64007e+06 188370 554710. 1919.41 0.91 0.0680274 0.0597149 22834 132086 -1 1280 20 759 1096 91199 20571 1.91011 1.91011 -80.0114 -1.91011 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0152258 0.0133692 85 29 24 24 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.08 vpr 64.63 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 34012 -1 -1 17 31 0 0 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 66184 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 25.9 MiB 0.12 791 11260 3917 5279 2064 64.6 MiB 0.09 0.00 3.39356 -100.857 -3.39356 3.39356 0.95 0.000486563 0.000443641 0.0333135 0.0304025 32 1874 23 6.64007e+06 213486 554710. 1919.41 0.93 0.0955142 0.0842739 22834 132086 -1 1654 17 826 1230 87694 20541 3.35923 3.35923 -120.167 -3.35923 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0198125 0.0176666 113 55 31 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.19 vpr 65.16 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33704 -1 -1 36 32 0 0 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 66728 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 26.5 MiB 0.09 957 14716 3898 8652 2166 65.2 MiB 0.12 0.00 3.37436 -112.852 -3.37436 3.37436 0.95 0.000540598 0.000492558 0.0357112 0.0325525 32 2333 21 6.64007e+06 452088 554710. 1919.41 0.98 0.103387 0.0912296 22834 132086 -1 2062 19 1595 2295 160899 37221 3.75403 3.75403 -134.062 -3.75403 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0238834 0.0213147 147 31 91 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 5.26 vpr 65.02 MiB 0.02 7396 -1 -1 1 0.04 -1 -1 34216 -1 -1 38 32 0 0 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 66576 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 26.7 MiB 0.20 1045 10336 2316 7561 459 65.0 MiB 0.10 0.00 3.01205 -102.424 -3.01205 3.01205 0.97 0.000614373 0.00055068 0.0293144 0.026611 26 3152 26 6.64007e+06 477204 477104. 1650.88 1.95 0.117374 0.103135 21682 110474 -1 2439 19 1499 2412 201240 44279 3.71983 3.71983 -136.461 -3.71983 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0269608 0.0238823 150 108 0 0 125 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.87 vpr 63.89 MiB 0.01 6872 -1 -1 1 0.03 -1 -1 34000 -1 -1 17 26 0 0 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 65428 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.6 MiB 0.08 460 10661 3396 6323 942 63.9 MiB 0.06 0.00 2.13964 -57.6102 -2.13964 2.13964 0.98 0.000323496 0.000295506 0.0228232 0.02083 28 1171 18 6.64007e+06 213486 500653. 1732.36 0.88 0.0610298 0.0537 21970 115934 -1 997 14 482 684 44298 11598 1.86491 1.86491 -68.5461 -1.86491 0 0 612192. 2118.31 0.27 0.03 0.11 -1 -1 0.27 0.0114241 0.0101981 77 21 26 26 22 22 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.19 vpr 64.77 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 33776 -1 -1 22 32 0 0 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 66324 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 26.3 MiB 0.07 966 13694 4000 7434 2260 64.8 MiB 0.12 0.00 3.59776 -112.749 -3.59776 3.59776 0.97 0.000476565 0.000432643 0.0386397 0.0353255 32 2315 22 6.64007e+06 276276 554710. 1919.41 1.00 0.106444 0.0943386 22834 132086 -1 2056 21 1608 2801 179556 42423 3.88183 3.88183 -138.533 -3.88183 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0238204 0.0211284 138 -1 122 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.83 vpr 64.03 MiB 0.02 6704 -1 -1 1 0.03 -1 -1 34020 -1 -1 13 32 0 0 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 65568 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.6 MiB 0.04 738 11650 4187 6337 1126 64.0 MiB 0.07 0.00 1.98053 -74.6663 -1.98053 1.98053 0.92 0.000298539 0.000273162 0.0235366 0.02151 26 1521 19 6.64007e+06 163254 477104. 1650.88 0.94 0.0684781 0.0606999 21682 110474 -1 1376 19 621 849 72449 16746 1.91011 1.91011 -84.589 -1.91011 0 0 585099. 2024.56 0.26 0.04 0.11 -1 -1 0.26 0.0148153 0.0131557 81 -1 53 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 65.01 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34236 -1 -1 35 32 0 0 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 66568 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.3 MiB 0.07 1045 19935 6966 10554 2415 65.0 MiB 0.16 0.00 3.34716 -118.75 -3.34716 3.34716 0.92 0.000528204 0.000479372 0.0492417 0.044756 32 2472 22 6.64007e+06 439530 554710. 1919.41 1.03 0.122135 0.108301 22834 132086 -1 2148 20 1733 2585 191114 41804 3.81183 3.81183 -143.661 -3.81183 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.024922 0.0221953 153 21 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.09 vpr 65.40 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 34024 -1 -1 37 32 0 0 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 66972 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 26.6 MiB 0.09 1078 12556 3215 8276 1065 65.4 MiB 0.11 0.00 2.8281 -101.368 -2.8281 2.8281 0.93 0.000471871 0.000426966 0.0284533 0.0259082 32 2401 22 6.64007e+06 464646 554710. 1919.41 0.95 0.091745 0.0806769 22834 132086 -1 2109 22 1591 2551 178686 41388 2.84217 2.84217 -116.664 -2.84217 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0242214 0.0214012 152 -1 124 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.18 vpr 65.31 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34132 -1 -1 37 32 0 0 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 66876 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.8 MiB 0.08 1107 16786 4660 10331 1795 65.3 MiB 0.15 0.00 3.43916 -120.992 -3.43916 3.43916 0.92 0.0005529 0.000499371 0.0418062 0.0381345 32 2605 23 6.64007e+06 464646 554710. 1919.41 1.01 0.114809 0.101301 22834 132086 -1 2223 24 1966 3112 212365 47204 3.76663 3.76663 -144.701 -3.76663 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0291532 0.0256658 155 54 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.94 vpr 64.84 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34096 -1 -1 16 32 0 0 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 66392 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 26.1 MiB 0.06 883 6788 1443 4591 754 64.8 MiB 0.06 0.00 2.45379 -88.0962 -2.45379 2.45379 0.93 0.000434443 0.000396073 0.019383 0.0177467 26 2026 20 6.64007e+06 200928 477104. 1650.88 0.98 0.0774014 0.0680423 21682 110474 -1 1850 19 1049 1712 128972 28406 2.78297 2.78297 -110.872 -2.78297 0 0 585099. 2024.56 0.25 0.05 0.11 -1 -1 0.25 0.0191829 0.0169758 107 31 54 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.06 vpr 64.80 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33684 -1 -1 19 30 0 0 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 66360 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.2 MiB 0.08 885 12331 4112 6539 1680 64.8 MiB 0.10 0.00 2.7739 -95.2054 -2.7739 2.7739 0.95 0.000458105 0.000417206 0.0335721 0.0306921 32 1832 21 6.64007e+06 238602 554710. 1919.41 0.95 0.0904058 0.0799497 22834 132086 -1 1569 21 1151 1681 103872 23476 2.65457 2.65457 -107.291 -2.65457 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0202999 0.0179106 115 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.03 vpr 64.61 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 33860 -1 -1 20 28 0 0 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 66156 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 26.1 MiB 0.08 709 11604 3401 6165 2038 64.6 MiB 0.09 0.00 2.7097 -82.3302 -2.7097 2.7097 0.93 0.000420142 0.000381996 0.0304506 0.0278206 32 1736 21 6.64007e+06 251160 554710. 1919.41 0.94 0.0832674 0.073414 22834 132086 -1 1526 20 1220 2014 115081 27307 2.84797 2.84797 -100.66 -2.84797 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0184121 0.0162388 107 27 56 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.08 vpr 64.59 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33792 -1 -1 18 32 0 0 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 66144 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 0.08 802 15746 4832 8534 2380 64.6 MiB 0.12 0.00 2.8039 -97.2121 -2.8039 2.8039 0.93 0.000437039 0.000392063 0.0412125 0.037636 32 2031 21 6.64007e+06 226044 554710. 1919.41 0.97 0.0970835 0.0860612 22834 132086 -1 1802 20 1480 2389 171433 40323 3.20937 3.20937 -123.701 -3.20937 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0202517 0.0179132 125 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.07 vpr 64.81 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 34056 -1 -1 31 31 0 0 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 66368 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.2 MiB 0.05 798 17134 4773 10047 2314 64.8 MiB 0.14 0.00 2.7427 -94.3449 -2.7427 2.7427 0.98 0.000452042 0.000413312 0.0384785 0.0350888 30 1861 21 6.64007e+06 389298 526063. 1820.29 0.93 0.0961914 0.0849439 22546 126617 -1 1640 19 1053 1747 104459 24030 2.80297 2.80297 -109.059 -2.80297 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0196066 0.0174292 119 26 61 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.07 vpr 64.59 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33860 -1 -1 31 29 0 0 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 66140 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 26.2 MiB 0.12 815 13961 3491 8938 1532 64.6 MiB 0.11 0.00 2.26464 -77.4691 -2.26464 2.26464 0.96 0.000450878 0.000406501 0.0331479 0.0300419 32 1849 19 6.64007e+06 389298 554710. 1919.41 0.93 0.0890352 0.078373 22834 132086 -1 1578 19 1077 1705 108326 25222 2.22951 2.22951 -89.4698 -2.22951 0 0 701300. 2426.64 0.30 0.05 0.12 -1 -1 0.30 0.0189633 0.0167827 110 55 29 29 57 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.38 vpr 65.17 MiB 0.03 7216 -1 -1 1 0.04 -1 -1 34148 -1 -1 41 32 0 0 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 66732 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 27.0 MiB 0.16 1240 16654 4157 10533 1964 65.2 MiB 0.16 0.00 3.41716 -120.482 -3.41716 3.41716 0.95 0.000667784 0.000609547 0.0444948 0.0406668 26 3676 29 6.64007e+06 514878 477104. 1650.88 2.07 0.138298 0.122779 21682 110474 -1 2824 23 1961 3484 286420 59289 4.03123 4.03123 -148.527 -4.03123 0 0 585099. 2024.56 0.25 0.10 0.11 -1 -1 0.25 0.0313171 0.0278046 181 26 128 32 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.21 vpr 65.39 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34096 -1 -1 37 32 0 0 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 66956 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1047 13966 3755 8826 1385 65.4 MiB 0.12 0.00 2.8611 -103.198 -2.8611 2.8611 0.95 0.000624984 0.000567168 0.034653 0.0314176 30 2183 22 6.64007e+06 464646 526063. 1820.29 0.99 0.109269 0.0961054 22546 126617 -1 1936 20 1651 2499 131652 31056 2.87197 2.87197 -118.521 -2.87197 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0254575 0.0225453 154 62 62 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.70 vpr 64.97 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 34240 -1 -1 29 31 0 0 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 66528 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 26.2 MiB 0.18 653 7958 1641 6002 315 65.0 MiB 0.07 0.00 2.9621 -88.3938 -2.9621 2.9621 0.93 0.000479772 0.000436754 0.0207634 0.0189655 26 2295 50 6.64007e+06 364182 477104. 1650.88 1.68 0.110053 0.0961632 21682 110474 -1 1715 19 1168 1892 131866 31907 3.11417 3.11417 -115.304 -3.11417 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0218789 0.0194307 114 77 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.19 vpr 65.12 MiB 0.02 7464 -1 -1 1 0.03 -1 -1 34064 -1 -1 24 31 0 0 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 66684 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1072 9495 2347 6456 692 65.1 MiB 0.09 0.00 2.9211 -97.283 -2.9211 2.9211 0.94 0.000539096 0.000493151 0.0296646 0.0271208 32 2422 22 6.64007e+06 301392 554710. 1919.41 1.01 0.0997763 0.0878185 22834 132086 -1 2166 22 1621 2759 223639 47089 2.87197 2.87197 -115.141 -2.87197 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0260963 0.0230745 149 59 60 30 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.11 vpr 65.33 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33864 -1 -1 23 31 0 0 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 66900 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 26.7 MiB 0.35 950 7646 1733 5487 426 65.3 MiB 0.09 0.00 4.33141 -122.046 -4.33141 4.33141 0.95 0.000615039 0.00056138 0.0273002 0.0249703 26 2947 43 6.64007e+06 288834 477104. 1650.88 1.72 0.132998 0.116867 21682 110474 -1 2290 21 1252 2180 145281 36230 4.26108 4.26108 -150.999 -4.26108 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0297784 0.0264387 150 111 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.27 vpr 65.01 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33876 -1 -1 23 31 0 0 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 66572 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 26.2 MiB 0.19 1040 14828 4594 8679 1555 65.0 MiB 0.14 0.00 4.04401 -111.298 -4.04401 4.04401 0.95 0.000582025 0.000530742 0.0467982 0.0427389 28 2547 23 6.64007e+06 288834 500653. 1732.36 0.99 0.121384 0.107362 21970 115934 -1 2234 21 1209 2034 142673 32215 4.09488 4.09488 -137.029 -4.09488 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0263294 0.0233186 144 86 31 31 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.27 vpr 65.23 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33688 -1 -1 35 31 0 0 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 66800 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1050 18998 5381 11592 2025 65.2 MiB 0.16 0.00 2.8409 -98.7901 -2.8409 2.8409 0.95 0.000531827 0.000485862 0.0490138 0.044427 26 2570 21 6.64007e+06 439530 477104. 1650.88 1.05 0.12384 0.109715 21682 110474 -1 2149 19 1505 2522 167931 38238 3.13357 3.13357 -118.135 -3.13357 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0246844 0.0219091 148 58 60 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.39 vpr 65.52 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34344 -1 -1 37 32 0 0 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 67096 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 26.7 MiB 0.10 941 17491 5412 9228 2851 65.5 MiB 0.15 0.00 3.40616 -115.148 -3.40616 3.40616 0.96 0.000553445 0.000503431 0.044004 0.0401884 32 2637 24 6.64007e+06 464646 554710. 1919.41 1.12 0.125227 0.111043 22834 132086 -1 2109 20 1812 2882 228233 50367 3.76963 3.76963 -141.754 -3.76963 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0260716 0.0231491 156 42 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.55 vpr 65.51 MiB 0.02 7492 -1 -1 1 0.04 -1 -1 34152 -1 -1 42 32 0 0 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 67084 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 27.2 MiB 0.16 1108 19606 5465 11405 2736 65.5 MiB 0.18 0.00 3.33916 -115.146 -3.33916 3.33916 0.97 0.000654834 0.000596743 0.0532233 0.0484069 28 2935 22 6.64007e+06 527436 500653. 1732.36 1.23 0.145632 0.12921 21970 115934 -1 2359 18 1758 2723 173149 40345 3.59263 3.59263 -139.108 -3.59263 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0282167 0.0251793 186 91 62 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.09 vpr 64.87 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33800 -1 -1 18 31 0 0 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 66424 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 26.1 MiB 0.09 854 13031 4053 6734 2244 64.9 MiB 0.10 0.00 3.0453 -99.8437 -3.0453 3.0453 0.96 0.000475721 0.00043451 0.036274 0.0331848 32 1900 21 6.64007e+06 226044 554710. 1919.41 0.97 0.0952311 0.0842026 22834 132086 -1 1692 20 1330 2114 144883 33443 2.95797 2.95797 -117.951 -2.95797 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0208385 0.0185513 116 24 62 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.23 vpr 65.35 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33800 -1 -1 38 31 0 0 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 66920 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1083 13026 3155 8902 969 65.4 MiB 0.12 0.00 3.54836 -118.93 -3.54836 3.54836 0.93 0.000548169 0.00049678 0.0329774 0.0300314 32 2704 18 6.64007e+06 477204 554710. 1919.41 0.99 0.103492 0.0909564 22834 132086 -1 2255 22 1761 2660 185940 42788 3.86663 3.86663 -142.486 -3.86663 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.027637 0.0245326 152 59 62 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.23 vpr 65.18 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34036 -1 -1 34 32 0 0 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 66748 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 26.7 MiB 0.11 877 6623 1217 4877 529 65.2 MiB 0.08 0.00 2.9951 -93.7453 -2.9951 2.9951 0.94 0.000545545 0.000496793 0.0188736 0.0172321 32 3074 28 6.64007e+06 426972 554710. 1919.41 1.05 0.0956229 0.0835344 22834 132086 -1 2197 21 1761 3018 197706 47253 2.96197 2.96197 -117.79 -2.96197 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0285882 0.0254433 149 54 62 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.26 vpr 64.88 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33496 -1 -1 22 32 0 0 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 66440 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 26.2 MiB 0.08 1009 15773 6181 7786 1806 64.9 MiB 0.15 0.00 3.30796 -116.733 -3.30796 3.30796 0.96 0.000513739 0.000470383 0.0450864 0.0411656 32 2651 24 6.64007e+06 276276 554710. 1919.41 1.06 0.115932 0.102909 22834 132086 -1 2207 20 1883 3281 228186 50021 3.64643 3.64643 -139.594 -3.64643 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.022787 0.0201986 151 -1 128 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.39 vpr 65.09 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33924 -1 -1 35 32 0 0 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 66652 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 26.3 MiB 0.17 988 18567 6270 9721 2576 65.1 MiB 0.16 0.00 2.7537 -98.5892 -2.7537 2.7537 0.93 0.0005243 0.000476523 0.0483542 0.0439065 32 2689 25 6.64007e+06 439530 554710. 1919.41 1.07 0.127584 0.11258 22834 132086 -1 2090 20 1412 2118 145101 33094 2.97117 2.97117 -118.956 -2.97117 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0259649 0.023074 146 81 25 25 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.44 vpr 65.23 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34052 -1 -1 37 32 0 0 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 66796 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 26.5 MiB 0.17 1081 12791 3249 8303 1239 65.2 MiB 0.12 0.00 2.7537 -100.152 -2.7537 2.7537 0.91 0.000551557 0.000504021 0.0325589 0.0296965 26 2835 24 6.64007e+06 464646 477104. 1650.88 1.32 0.11227 0.0992292 21682 110474 -1 2267 18 1328 2276 179653 37195 2.78757 2.78757 -117.667 -2.78757 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0243992 0.0217563 148 58 64 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.27 vpr 65.16 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 34152 -1 -1 39 32 0 0 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 66720 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 26.6 MiB 0.13 1040 12635 3533 8104 998 65.2 MiB 0.11 0.00 2.9061 -100.233 -2.9061 2.9061 0.95 0.000584593 0.000530805 0.0319905 0.0291113 32 2501 22 6.64007e+06 489762 554710. 1919.41 1.01 0.105153 0.0925253 22834 132086 -1 2223 21 1949 3171 216041 47844 2.93777 2.93777 -119.814 -2.93777 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0274399 0.0243228 157 61 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.09 vpr 65.27 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34108 -1 -1 37 32 0 0 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 66836 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 26.5 MiB 0.07 1029 17961 4987 10986 1988 65.3 MiB 0.15 0.00 3.39516 -118.131 -3.39516 3.39516 0.92 0.000576422 0.000526243 0.0424147 0.0387432 30 2349 21 6.64007e+06 464646 526063. 1820.29 0.98 0.110715 0.0980667 22546 126617 -1 1995 19 1402 2183 125056 28680 3.45323 3.45323 -136.49 -3.45323 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0222139 0.0197814 152 21 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.25 vpr 65.37 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34324 -1 -1 39 32 0 0 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 66940 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 26.8 MiB 0.13 1052 10466 2495 6919 1052 65.4 MiB 0.10 0.00 3.35816 -119.082 -3.35816 3.35816 0.98 0.000562359 0.000511907 0.027469 0.0250851 30 2400 24 6.64007e+06 489762 526063. 1820.29 1.00 0.101526 0.0892783 22546 126617 -1 2072 22 1632 2648 163736 35886 3.43723 3.43723 -140.693 -3.43723 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0267433 0.0236311 155 50 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.18 vpr 65.28 MiB 0.02 7572 -1 -1 1 0.03 -1 -1 33936 -1 -1 36 31 0 0 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 66844 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 26.6 MiB 0.20 1096 8763 1807 6408 548 65.3 MiB 0.09 0.00 3.76575 -112.348 -3.76575 3.76575 0.98 0.000630145 0.000575056 0.0261131 0.0238527 26 3045 38 6.64007e+06 452088 477104. 1650.88 1.89 0.126112 0.110679 21682 110474 -1 2379 20 1396 2566 180404 40584 4.05323 4.05323 -138.323 -4.05323 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0273261 0.0242025 147 110 0 0 122 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.31 vpr 65.38 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34124 -1 -1 22 32 0 0 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 66944 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 26.8 MiB 0.15 1073 15584 5296 8546 1742 65.4 MiB 0.15 0.00 3.56755 -111.768 -3.56755 3.56755 0.93 0.000602803 0.000550284 0.0506873 0.0462212 32 2540 19 6.64007e+06 276276 554710. 1919.41 1.02 0.125276 0.110915 22834 132086 -1 2250 22 1524 2845 190917 42032 3.46323 3.46323 -130.442 -3.46323 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0282699 0.0249968 151 86 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.12 vpr 64.90 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33924 -1 -1 31 32 0 0 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 66460 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 26.3 MiB 0.06 800 15215 3397 11373 445 64.9 MiB 0.12 0.00 2.7537 -96.232 -2.7537 2.7537 0.94 0.000455714 0.000415722 0.0351902 0.0321343 32 2081 29 6.64007e+06 389298 554710. 1919.41 1.00 0.101536 0.089356 22834 132086 -1 1729 21 1321 2064 127711 30928 2.84177 2.84177 -115.472 -2.84177 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219705 0.0195168 125 20 63 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.16 vpr 65.02 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33796 -1 -1 18 32 0 0 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 66580 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.4 MiB 0.17 929 15212 4670 8561 1981 65.0 MiB 0.12 0.00 2.7819 -100.47 -2.7819 2.7819 0.93 0.000494319 0.000452024 0.0431528 0.0393634 32 2261 24 6.64007e+06 226044 554710. 1919.41 0.96 0.110498 0.0976626 22834 132086 -1 1907 23 1471 2392 187242 41122 2.87477 2.87477 -115.972 -2.87477 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0253192 0.0223413 121 91 0 0 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.74 vpr 65.42 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34164 -1 -1 42 32 0 0 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 66988 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 27.2 MiB 0.10 1365 19856 5441 12477 1938 65.4 MiB 0.19 0.00 3.90442 -137.532 -3.90442 3.90442 0.94 0.000527919 0.000482409 0.0539901 0.0490838 26 3532 31 6.64007e+06 527436 477104. 1650.88 2.54 0.164047 0.145969 21682 110474 -1 2874 22 2546 4136 275179 64637 4.89989 4.89989 -180.688 -4.89989 0 0 585099. 2024.56 0.26 0.10 0.11 -1 -1 0.26 0.0334047 0.0298083 189 53 96 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.13 vpr 64.98 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 32 0 0 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 66536 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1120 15637 4376 9366 1895 65.0 MiB 0.13 0.00 2.9051 -105.705 -2.9051 2.9051 0.95 0.000548042 0.000499059 0.0402324 0.0367197 28 2597 30 6.64007e+06 414414 500653. 1732.36 0.97 0.115965 0.102281 21970 115934 -1 2303 19 1367 2044 142982 32578 3.23277 3.23277 -128.269 -3.23277 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0225322 0.019983 148 31 92 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 4.07 vpr 64.68 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33776 -1 -1 31 30 0 0 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 66232 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 25.8 MiB 0.11 842 13953 3493 8766 1694 64.7 MiB 0.11 0.00 2.7317 -94.0437 -2.7317 2.7317 0.95 0.000434398 0.000396484 0.0319934 0.0292636 32 1817 21 6.64007e+06 389298 554710. 1919.41 0.94 0.0891656 0.0788862 22834 132086 -1 1658 18 1008 1421 99095 21752 2.79857 2.79857 -111.108 -2.79857 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0186752 0.0165744 116 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.82 vpr 65.57 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34356 -1 -1 45 32 0 0 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 67140 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 27.3 MiB 0.30 1222 15969 4320 10020 1629 65.6 MiB 0.15 0.00 4.01362 -137.521 -4.01362 4.01362 0.96 0.000718693 0.000651059 0.0447284 0.0405414 26 3491 30 6.64007e+06 565110 477104. 1650.88 2.33 0.152784 0.135097 21682 110474 -1 2808 18 2043 3083 247308 52363 4.61129 4.61129 -171.777 -4.61129 0 0 585099. 2024.56 0.28 0.09 0.11 -1 -1 0.28 0.0301205 0.0269539 188 109 32 32 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.36 vpr 65.11 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33844 -1 -1 38 32 0 0 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 66668 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 26.4 MiB 0.16 1076 17714 5714 9723 2277 65.1 MiB 0.14 0.00 3.57956 -123.728 -3.57956 3.57956 0.96 0.000337567 0.000310758 0.0421376 0.0384458 32 2490 25 6.64007e+06 477204 554710. 1919.41 1.02 0.115256 0.101988 22834 132086 -1 2183 20 1742 2534 204595 43310 3.79363 3.79363 -144.995 -3.79363 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0252418 0.0224642 153 31 96 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.02 vpr 64.93 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33916 -1 -1 32 32 0 0 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 66484 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 26.3 MiB 0.07 854 11922 2836 7681 1405 64.9 MiB 0.10 0.00 2.8629 -101.978 -2.8629 2.8629 0.95 0.000441025 0.000401725 0.0260567 0.0238521 30 2010 24 6.64007e+06 401856 526063. 1820.29 0.94 0.0840477 0.0740267 22546 126617 -1 1696 20 1107 1684 99268 22146 2.58817 2.58817 -111.201 -2.58817 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0198069 0.0176073 124 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.44 vpr 65.30 MiB 0.02 7340 -1 -1 1 0.04 -1 -1 34288 -1 -1 43 32 0 0 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 66868 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 27.1 MiB 0.12 1466 20094 5632 12510 1952 65.3 MiB 0.18 0.00 4.23382 -146.107 -4.23382 4.23382 0.95 0.000625601 0.00057124 0.0525543 0.047967 32 3266 20 6.64007e+06 539994 554710. 1919.41 1.10 0.134493 0.119515 22834 132086 -1 2874 22 2350 3759 332928 65246 4.90469 4.90469 -184.023 -4.90469 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0305332 0.0271212 190 26 128 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.08 vpr 64.54 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 33600 -1 -1 17 32 0 0 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 66092 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 26.0 MiB 0.08 880 11456 3267 7000 1189 64.5 MiB 0.10 0.00 2.7849 -102.041 -2.7849 2.7849 0.96 0.00044944 0.000409346 0.0311128 0.0284652 32 2083 20 6.64007e+06 213486 554710. 1919.41 0.97 0.087863 0.0777901 22834 132086 -1 1873 21 1479 2398 180404 39848 2.92977 2.92977 -123.133 -2.92977 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0205621 0.0182164 121 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.09 vpr 64.92 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34128 -1 -1 32 30 0 0 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 66476 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 26.3 MiB 0.11 795 12661 3190 8803 668 64.9 MiB 0.10 0.00 2.7427 -90.8284 -2.7427 2.7427 0.98 0.000450387 0.000412426 0.0289768 0.0264111 30 1832 21 6.64007e+06 401856 526063. 1820.29 0.97 0.0887366 0.0783296 22546 126617 -1 1535 21 1038 1752 104512 23921 2.61057 2.61057 -104.849 -2.61057 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0207566 0.0183817 114 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.02 vpr 65.13 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 33708 -1 -1 34 29 0 0 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 66692 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 26.4 MiB 0.16 993 17375 5006 10012 2357 65.1 MiB 0.15 0.00 2.9591 -89.4376 -2.9591 2.9591 0.92 0.00053418 0.000487831 0.0463038 0.0421266 28 2344 19 6.64007e+06 426972 500653. 1732.36 0.89 0.108062 0.095576 21970 115934 -1 1969 21 1349 2292 145772 33119 3.10217 3.10217 -109.829 -3.10217 0 0 612192. 2118.31 0.25 0.06 0.11 -1 -1 0.25 0.0234348 0.0207567 134 81 29 29 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.19 vpr 65.25 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 34280 -1 -1 22 32 0 0 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 66816 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 26.5 MiB 0.12 973 8780 2241 6161 378 65.2 MiB 0.09 0.00 3.37836 -118.862 -3.37836 3.37836 0.94 0.00056911 0.000519861 0.0290301 0.0265932 32 2327 22 6.64007e+06 276276 554710. 1919.41 1.00 0.101166 0.0892354 22834 132086 -1 2122 24 2204 3430 266486 58123 3.78683 3.78683 -146.317 -3.78683 0 0 701300. 2426.64 0.27 0.09 0.13 -1 -1 0.27 0.029771 0.0263217 152 53 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.77 vpr 65.26 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33824 -1 -1 36 32 0 0 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 66828 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 26.4 MiB 0.20 897 6364 1022 5084 258 65.3 MiB 0.07 0.00 3.30796 -112.285 -3.30796 3.30796 0.95 0.000565287 0.00051574 0.0181974 0.0166378 28 2855 28 6.64007e+06 452088 500653. 1732.36 1.56 0.109449 0.0965351 21970 115934 -1 2307 21 1845 3143 210087 50449 3.76663 3.76663 -147.987 -3.76663 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0276683 0.0245086 154 55 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.14 vpr 65.05 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34076 -1 -1 32 32 0 0 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 66612 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 26.4 MiB 0.13 823 18054 6069 9478 2507 65.1 MiB 0.14 0.00 2.8739 -100.633 -2.8739 2.8739 0.95 0.00048098 0.000438201 0.0434747 0.0396991 32 2014 22 6.64007e+06 401856 554710. 1919.41 0.93 0.105326 0.0931602 22834 132086 -1 1744 19 1217 1715 117803 27432 2.95177 2.95177 -119.805 -2.95177 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0200191 0.0177338 122 55 32 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.13 vpr 64.91 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34056 -1 -1 17 31 0 0 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 66464 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 26.1 MiB 0.16 786 8336 2113 5824 399 64.9 MiB 0.08 0.00 2.9591 -92.2852 -2.9591 2.9591 0.95 0.000489947 0.000446962 0.0261474 0.02391 32 1925 22 6.64007e+06 213486 554710. 1919.41 0.96 0.0892187 0.078508 22834 132086 -1 1655 21 1154 2067 140473 32344 3.13217 3.13217 -111.4 -3.13217 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.021916 0.0193381 109 82 0 0 89 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.51 vpr 65.00 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33996 -1 -1 35 30 0 0 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 66564 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 26.3 MiB 0.13 1012 12085 3115 7960 1010 65.0 MiB 0.11 0.00 2.8519 -97.0487 -2.8519 2.8519 0.96 0.000525954 0.00047881 0.0315191 0.0287626 26 2525 33 6.64007e+06 439530 477104. 1650.88 1.34 0.113402 0.0998296 21682 110474 -1 2241 21 1411 2180 155396 36213 2.97117 2.97117 -117.955 -2.97117 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0247661 0.0218876 139 52 60 30 57 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.64 vpr 64.87 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33972 -1 -1 32 28 0 0 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 66424 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 26.2 MiB 0.08 1057 14582 3837 9093 1652 64.9 MiB 0.13 0.00 3.77576 -108.081 -3.77576 3.77576 0.96 0.000480958 0.000438573 0.0366167 0.033468 26 2531 26 6.64007e+06 401856 477104. 1650.88 1.56 0.109897 0.0973479 21682 110474 -1 2197 21 1614 2571 186257 41612 3.61362 3.61362 -127.14 -3.61362 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0221551 0.0195997 134 20 84 28 28 28 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 64.92 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33856 -1 -1 19 30 0 0 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 66480 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 26.1 MiB 0.17 660 14606 4689 7861 2056 64.9 MiB 0.12 0.00 2.8131 -90.6242 -2.8131 2.8131 0.94 0.000462351 0.000421732 0.0409438 0.0374254 32 1830 22 6.64007e+06 238602 554710. 1919.41 0.96 0.101513 0.0897823 22834 132086 -1 1614 21 1304 2174 143162 34019 2.93897 2.93897 -108.956 -2.93897 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0204152 0.0179666 114 58 30 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.18 vpr 64.86 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33776 -1 -1 17 32 0 0 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 66412 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 26.1 MiB 0.16 961 10056 2531 6387 1138 64.9 MiB 0.09 0.00 2.9653 -96.595 -2.9653 2.9653 0.97 0.000437247 0.000400619 0.0314148 0.02865 32 2135 22 6.64007e+06 213486 554710. 1919.41 0.98 0.0979576 0.0863733 22834 132086 -1 1866 19 1098 1864 136579 30166 2.80097 2.80097 -110.355 -2.80097 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0223176 0.0198529 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.85 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33896 -1 -1 37 31 0 0 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 66408 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 26.3 MiB 0.08 1027 19356 5642 11067 2647 64.9 MiB 0.16 0.00 3.39516 -114.318 -3.39516 3.39516 0.93 0.000497221 0.000454339 0.0435277 0.0397317 32 2466 21 6.64007e+06 464646 554710. 1919.41 0.96 0.10618 0.0941406 22834 132086 -1 2072 18 1626 2644 174044 39117 3.82563 3.82563 -139.43 -3.82563 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0214783 0.0190648 152 -1 124 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.37 vpr 65.25 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33964 -1 -1 36 32 0 0 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 66820 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 26.8 MiB 0.17 971 17964 4986 11031 1947 65.3 MiB 0.16 0.00 3.39516 -117.047 -3.39516 3.39516 0.96 0.000578896 0.000527049 0.0467717 0.0425944 32 2363 21 6.64007e+06 452088 554710. 1919.41 1.01 0.119816 0.105969 22834 132086 -1 1945 21 1569 2893 171682 40793 3.71343 3.71343 -140.795 -3.71343 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0276459 0.0245578 155 57 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.48 vpr 65.40 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34064 -1 -1 36 32 0 0 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 66968 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 26.7 MiB 0.16 978 9844 2053 7367 424 65.4 MiB 0.10 0.00 3.30796 -115.17 -3.30796 3.30796 0.94 0.000575051 0.000524742 0.0270457 0.0247009 30 2808 24 6.64007e+06 452088 526063. 1820.29 1.26 0.109137 0.0967347 22546 126617 -1 2178 19 1519 2575 136177 33401 3.61523 3.61523 -144.314 -3.61523 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0253795 0.0225898 153 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 7.38 vpr 65.28 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33824 -1 -1 38 32 0 0 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 66844 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 26.7 MiB 0.14 1131 12954 3693 8509 752 65.3 MiB 0.12 0.00 3.37316 -115.481 -3.37316 3.37316 0.94 0.000604326 0.000548926 0.0333558 0.0304344 24 3581 46 6.64007e+06 477204 448715. 1552.65 4.21 0.17409 0.152228 21394 104001 -1 2523 25 1935 3371 266248 58453 4.04642 4.04642 -144.177 -4.04642 0 0 554710. 1919.41 0.23 0.10 0.10 -1 -1 0.23 0.0302534 0.0267568 149 62 60 30 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.06 vpr 64.92 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33820 -1 -1 19 30 0 0 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 66480 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 26.1 MiB 0.10 766 12856 3852 6755 2249 64.9 MiB 0.11 0.00 2.7709 -91.1747 -2.7709 2.7709 0.94 0.000448884 0.000404721 0.0345571 0.0315859 30 2018 20 6.64007e+06 238602 526063. 1820.29 0.95 0.0892397 0.0788715 22546 126617 -1 1695 22 1187 1971 126951 28592 2.75977 2.75977 -107.673 -2.75977 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0216978 0.0191625 113 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.20 vpr 64.91 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 33944 -1 -1 24 30 0 0 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 66464 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 26.2 MiB 0.15 996 14072 3942 7868 2262 64.9 MiB 0.13 0.00 3.35636 -111.778 -3.35636 3.35636 0.93 0.000542401 0.000494095 0.0429718 0.0392676 32 2339 20 6.64007e+06 301392 554710. 1919.41 1.00 0.111199 0.0984051 22834 132086 -1 2098 22 1859 2794 200496 46242 3.89303 3.89303 -140.397 -3.89303 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0270876 0.0240518 146 58 60 30 60 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.44 vpr 65.24 MiB 0.03 7476 -1 -1 1 0.03 -1 -1 34248 -1 -1 41 32 0 0 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 66804 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 26.8 MiB 0.21 1114 19618 5705 11084 2829 65.2 MiB 0.18 0.00 3.55936 -123.276 -3.55936 3.55936 0.95 0.000609609 0.000552881 0.0509813 0.0463616 30 2625 22 6.64007e+06 514878 526063. 1820.29 1.08 0.128728 0.113677 22546 126617 -1 2088 21 1595 2679 149045 37992 3.75743 3.75743 -144.587 -3.75743 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0271313 0.0239339 156 106 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.27 vpr 65.31 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33852 -1 -1 33 31 0 0 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 66880 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 26.9 MiB 0.11 1093 18273 6027 9750 2496 65.3 MiB 0.15 0.00 3.39516 -115.658 -3.39516 3.39516 0.94 0.000595346 0.000541055 0.0495126 0.0450759 32 2583 23 6.64007e+06 414414 554710. 1919.41 1.03 0.124973 0.110486 22834 132086 -1 2296 19 1468 2447 198546 41697 3.76763 3.76763 -137.598 -3.76763 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0265832 0.0236831 148 79 31 31 93 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.09 vpr 65.27 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 33896 -1 -1 32 30 0 0 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 66832 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 26.5 MiB 0.14 1017 15643 4345 8942 2356 65.3 MiB 0.13 0.00 3.0133 -94.5657 -3.0133 3.0133 0.92 0.00055862 0.000508322 0.0433762 0.0394269 32 2371 20 6.64007e+06 401856 554710. 1919.41 0.95 0.111317 0.0983686 22834 132086 -1 1985 18 1345 2137 135392 31669 3.07836 3.07836 -114.756 -3.07836 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0226573 0.020111 138 83 26 26 90 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.38 vpr 65.12 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34100 -1 -1 22 32 0 0 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 66680 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 26.3 MiB 0.23 962 13316 3602 8252 1462 65.1 MiB 0.13 0.00 3.35816 -115.716 -3.35816 3.35816 0.95 0.000573933 0.000523029 0.0429731 0.039264 32 2713 26 6.64007e+06 276276 554710. 1919.41 1.04 0.121841 0.107737 22834 132086 -1 2223 21 1836 3141 217511 51230 3.60843 3.60843 -140.692 -3.60843 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.026671 0.023682 155 58 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.19 vpr 65.12 MiB 0.02 7468 -1 -1 1 0.03 -1 -1 34160 -1 -1 36 29 0 0 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 66688 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 26.4 MiB 0.14 941 12751 3356 8285 1110 65.1 MiB 0.11 0.00 2.7969 -89.7256 -2.7969 2.7969 0.95 0.000568468 0.000491271 0.0329257 0.0298334 32 2057 20 6.64007e+06 452088 554710. 1919.41 0.97 0.0987545 0.0867401 22834 132086 -1 1724 20 1335 2241 142239 32650 2.84017 2.84017 -102.909 -2.84017 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0241979 0.0214031 136 81 26 26 85 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.01 vpr 64.65 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33956 -1 -1 17 32 0 0 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 66200 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 26.1 MiB 0.05 718 9531 2404 5950 1177 64.6 MiB 0.09 0.00 2.8911 -99.8907 -2.8911 2.8911 0.94 0.000436428 0.00039826 0.0262662 0.0240735 32 1822 23 6.64007e+06 213486 554710. 1919.41 0.96 0.0835029 0.0736761 22834 132086 -1 1632 22 1399 2184 148752 36197 2.98597 2.98597 -118.1 -2.98597 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0209037 0.0185157 115 -1 96 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.37 vpr 65.09 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33780 -1 -1 35 32 0 0 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 66648 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 26.5 MiB 0.24 1081 19251 5709 11317 2225 65.1 MiB 0.16 0.00 3.34716 -118.991 -3.34716 3.34716 0.94 0.000567028 0.000515827 0.0493833 0.044901 32 2592 21 6.64007e+06 439530 554710. 1919.41 1.01 0.12219 0.107971 22834 132086 -1 2235 19 1665 2566 157856 37118 3.66543 3.66543 -144.709 -3.66543 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0255156 0.0226711 152 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.37 vpr 65.54 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33876 -1 -1 23 32 0 0 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 67116 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 26.9 MiB 0.16 1046 16599 5779 8561 2259 65.5 MiB 0.15 0.00 3.49856 -121.361 -3.49856 3.49856 0.96 0.000575016 0.000526266 0.0510054 0.0465774 32 2544 25 6.64007e+06 288834 554710. 1919.41 1.05 0.126568 0.112008 22834 132086 -1 2109 23 2090 3232 229614 52459 3.78983 3.78983 -142.28 -3.78983 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.028242 0.0249429 158 62 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.40 vpr 64.80 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33960 -1 -1 30 32 0 0 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 66360 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.0 MiB 0.14 713 10531 2217 6977 1337 64.8 MiB 0.07 0.00 3.0463 -90.8984 -3.0463 3.0463 0.96 0.000465941 0.000424209 0.0251834 0.0229166 28 2081 49 6.64007e+06 376740 500653. 1732.36 1.28 0.106834 0.0934845 21970 115934 -1 1621 20 1112 1883 134078 34181 3.18037 3.18037 -111.254 -3.18037 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0190076 0.016765 112 47 32 32 54 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.07 vpr 64.24 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33632 -1 -1 18 31 0 0 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 65780 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.8 MiB 0.08 872 12681 4214 6652 1815 64.2 MiB 0.10 0.00 2.8321 -99.9661 -2.8321 2.8321 0.95 0.000417427 0.000380627 0.0327084 0.0299237 32 2009 20 6.64007e+06 226044 554710. 1919.41 0.95 0.0867973 0.0767941 22834 132086 -1 1888 21 1434 2289 176293 39816 2.97017 2.97017 -119.155 -2.97017 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0201237 0.0178432 118 -1 93 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.20 vpr 64.89 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 33744 -1 -1 33 32 0 0 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 66448 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 26.2 MiB 0.14 955 13639 3310 8000 2329 64.9 MiB 0.12 0.00 3.36036 -111.093 -3.36036 3.36036 0.94 0.000544268 0.000496174 0.0360098 0.0328884 32 2253 19 6.64007e+06 414414 554710. 1919.41 0.98 0.103585 0.0915877 22834 132086 -1 2023 20 1590 2382 167805 38545 3.55743 3.55743 -130.84 -3.55743 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0238945 0.021238 139 56 60 32 58 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.29 vpr 65.17 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 33980 -1 -1 32 32 0 0 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 66732 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1048 17397 5297 9397 2703 65.2 MiB 0.16 0.00 3.61156 -111.72 -3.61156 3.61156 0.94 0.000544503 0.000499072 0.0475939 0.0434597 28 2632 23 6.64007e+06 401856 500653. 1732.36 1.13 0.124606 0.110447 21970 115934 -1 2127 22 1491 2454 169071 37849 3.82802 3.82802 -131.076 -3.82802 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0272207 0.0240363 136 81 28 28 88 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.96 vpr 64.86 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 33912 -1 -1 37 32 0 0 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 66412 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 26.6 MiB 0.09 1319 14201 4126 9212 863 64.9 MiB 0.14 0.00 3.98862 -138.158 -3.98862 3.98862 0.94 0.000585669 0.000526837 0.0363965 0.0331778 26 3865 42 6.64007e+06 464646 477104. 1650.88 2.80 0.141163 0.124569 21682 110474 -1 2874 20 2037 3258 233632 52331 4.76369 4.76369 -170.196 -4.76369 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0273873 0.024414 179 -1 156 32 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 6.82 vpr 65.18 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33900 -1 -1 34 30 0 0 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 66748 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 26.5 MiB 0.14 933 11922 3200 7973 749 65.2 MiB 0.11 0.00 3.0493 -94.9385 -3.0493 3.0493 0.92 0.000514938 0.000466886 0.0311489 0.0283145 26 2651 31 6.64007e+06 426972 477104. 1650.88 3.75 0.178066 0.155136 21682 110474 -1 2030 22 1390 2312 168853 38118 3.09237 3.09237 -116.883 -3.09237 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0251833 0.0223122 138 47 60 30 56 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.00 vpr 64.34 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34236 -1 -1 21 27 0 0 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 65884 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 25.9 MiB 0.09 618 12636 5283 6147 1206 64.3 MiB 0.09 0.00 2.7691 -80.1779 -2.7691 2.7691 0.95 0.000395932 0.000360974 0.0323393 0.0296206 30 1375 18 6.64007e+06 263718 526063. 1820.29 0.95 0.0834817 0.0739959 22546 126617 -1 1206 20 939 1388 84539 19952 2.73477 2.73477 -93.1667 -2.73477 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0183983 0.0163303 107 26 54 27 27 27 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 5.07 vpr 65.51 MiB 0.03 7632 -1 -1 1 0.04 -1 -1 33988 -1 -1 42 32 0 0 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 67084 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 27.2 MiB 0.15 1408 20856 5903 12498 2455 65.5 MiB 0.20 0.00 3.68056 -120.284 -3.68056 3.68056 0.94 0.000660674 0.000601637 0.0575726 0.0524257 28 3946 28 6.64007e+06 527436 500653. 1732.36 1.72 0.163255 0.145394 21970 115934 -1 3006 21 2130 3749 271684 59812 3.98803 3.98803 -149.212 -3.98803 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0347886 0.0310246 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.39 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 34288 -1 -1 22 31 0 0 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 66964 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 26.8 MiB 0.22 998 13663 3314 9461 888 65.4 MiB 0.13 0.00 3.64105 -116.247 -3.64105 3.64105 0.95 0.000592076 0.00053866 0.0465174 0.042497 32 2331 21 6.64007e+06 276276 554710. 1919.41 0.98 0.121199 0.107285 22834 132086 -1 2069 19 1523 2519 169710 38930 3.69562 3.69562 -138.912 -3.69562 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0260079 0.0231594 145 105 0 0 124 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.36 vpr 64.72 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33792 -1 -1 16 32 0 0 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 66276 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 25.9 MiB 0.20 889 14012 4590 7312 2110 64.7 MiB 0.12 0.00 2.9543 -94.0722 -2.9543 2.9543 0.97 0.000496614 0.000453829 0.0436952 0.0399931 32 1911 47 6.64007e+06 200928 554710. 1919.41 1.09 0.130591 0.11528 22834 132086 -1 1742 18 923 1539 116093 25491 2.87317 2.87317 -110.366 -2.87317 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202673 0.0179394 108 86 0 0 89 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.75 vpr 65.23 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33828 -1 -1 33 32 0 0 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 66800 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 26.5 MiB 0.07 864 10975 2845 7130 1000 65.2 MiB 0.11 0.00 3.67756 -111.982 -3.67756 3.67756 0.99 0.000515936 0.000471663 0.0285105 0.0260452 30 2711 43 6.64007e+06 414414 526063. 1820.29 1.60 0.126936 0.112072 22546 126617 -1 1915 21 1213 1855 107006 26074 3.70982 3.70982 -134.556 -3.70982 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.023049 0.0203973 147 31 90 30 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.30 vpr 65.16 MiB 0.02 7492 -1 -1 1 0.04 -1 -1 34336 -1 -1 38 31 0 0 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 66724 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 27.0 MiB 0.11 1111 19841 6069 11064 2708 65.2 MiB 0.19 0.00 3.59955 -116.274 -3.59955 3.59955 0.94 0.000609845 0.00055598 0.0547794 0.0499521 32 2687 22 6.64007e+06 477204 554710. 1919.41 1.02 0.130896 0.115739 22834 132086 -1 2292 21 1957 2934 187606 43131 3.64343 3.64343 -139.081 -3.64343 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0280943 0.0248972 173 50 87 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.47 vpr 65.01 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33968 -1 -1 34 30 0 0 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 66572 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 26.3 MiB 0.10 969 9513 2227 6493 793 65.0 MiB 0.09 0.00 2.9811 -89.5745 -2.9811 2.9811 0.95 0.000527333 0.000482936 0.0254611 0.0232496 26 2880 29 6.64007e+06 426972 477104. 1650.88 1.38 0.1067 0.0938413 21682 110474 -1 2312 18 1405 2359 169899 38918 3.22356 3.22356 -115.994 -3.22356 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0228798 0.0204434 135 50 58 30 58 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.81 vpr 65.12 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33808 -1 -1 43 32 0 0 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 66684 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 26.8 MiB 0.12 965 13263 3254 9396 613 65.1 MiB 0.13 0.00 3.47836 -117.279 -3.47836 3.47836 0.96 0.000643122 0.000589206 0.0330395 0.0301382 28 2906 30 6.64007e+06 539994 500653. 1732.36 1.57 0.13009 0.115665 21970 115934 -1 2341 24 1900 3180 283149 60976 4.15723 4.15723 -155.322 -4.15723 0 0 612192. 2118.31 0.27 0.10 0.11 -1 -1 0.27 0.0299106 0.0263948 158 61 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.30 vpr 65.27 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33952 -1 -1 40 32 0 0 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 66832 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1032 16452 4878 8879 2695 65.3 MiB 0.15 0.00 2.7929 -99.564 -2.7929 2.7929 0.95 0.000576528 0.000523173 0.0420417 0.0383177 32 2478 22 6.64007e+06 502320 554710. 1919.41 1.05 0.118795 0.105023 22834 132086 -1 1961 22 1619 2500 155113 36536 2.71977 2.71977 -115.518 -2.71977 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0278149 0.0245832 157 61 63 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.07 vpr 64.27 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33540 -1 -1 18 29 0 0 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 65808 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 25.8 MiB 0.08 517 13937 6032 7011 894 64.3 MiB 0.09 0.00 2.9573 -85.052 -2.9573 2.9573 0.93 0.000425912 0.000388017 0.0366579 0.0334627 32 1761 28 6.64007e+06 226044 554710. 1919.41 1.00 0.0947155 0.083439 22834 132086 -1 1497 28 1290 1775 162971 39536 3.21037 3.21037 -109.405 -3.21037 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0254077 0.0223076 95 28 58 29 29 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.01 vpr 64.98 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33668 -1 -1 19 32 0 0 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 66536 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 26.2 MiB 0.15 875 12683 4694 6141 1848 65.0 MiB 0.10 0.00 3.16516 -91.0125 -3.16516 3.16516 0.93 0.000479962 0.000437163 0.0345009 0.0314392 30 1772 17 6.64007e+06 238602 526063. 1820.29 0.90 0.0900484 0.0794412 22546 126617 -1 1511 14 704 952 61196 13853 2.79097 2.79097 -103.725 -2.79097 0 0 666494. 2306.21 0.27 0.04 0.12 -1 -1 0.27 0.0159466 0.0142025 112 79 0 0 82 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 5.43 vpr 65.05 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33812 -1 -1 38 31 0 0 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 66612 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 26.4 MiB 0.10 958 13966 3381 9663 922 65.1 MiB 0.12 0.00 3.98015 -119.136 -3.98015 3.98015 0.91 0.000520929 0.000470427 0.0331677 0.03027 26 3147 31 6.64007e+06 477204 477104. 1650.88 2.36 0.113081 0.0995504 21682 110474 -1 2536 20 1825 2896 240815 60565 4.26643 4.26643 -160.507 -4.26643 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0238065 0.0210771 151 29 93 31 31 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.90 vpr 64.69 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33788 -1 -1 31 29 0 0 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 66244 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 25.9 MiB 0.17 701 10442 2795 6859 788 64.7 MiB 0.08 0.00 2.9591 -82.01 -2.9591 2.9591 0.91 0.000407332 0.000369663 0.0228696 0.0207868 26 1730 18 6.64007e+06 389298 477104. 1650.88 0.85 0.0725828 0.063378 21682 110474 -1 1619 23 1131 1782 123067 28462 2.89177 2.89177 -100.555 -2.89177 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0214282 0.01888 108 48 29 29 52 26 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 64.94 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33656 -1 -1 17 32 0 0 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 66496 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 26.2 MiB 0.13 979 10581 3043 6568 970 64.9 MiB 0.09 0.00 2.8409 -104.795 -2.8409 2.8409 0.94 0.000462283 0.000423848 0.0297815 0.0271976 32 2118 20 6.64007e+06 213486 554710. 1919.41 0.97 0.0880849 0.0777592 22834 132086 -1 1940 21 1444 2432 160512 35979 2.92677 2.92677 -122.689 -2.92677 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219428 0.0194382 118 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.06 vpr 65.28 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33652 -1 -1 38 31 0 0 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 66848 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 26.5 MiB 0.13 951 13026 3274 8671 1081 65.3 MiB 0.12 0.00 2.8673 -99.0299 -2.8673 2.8673 0.94 0.000558843 0.000507446 0.033275 0.0302957 26 2244 25 6.64007e+06 477204 477104. 1650.88 0.94 0.106912 0.0940788 21682 110474 -1 1904 23 1797 2587 172527 39981 2.99217 2.99217 -117.812 -2.99217 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0262671 0.0231518 144 60 58 31 62 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.85 vpr 64.58 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33764 -1 -1 17 31 0 0 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 66132 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 26.1 MiB 0.12 895 11260 3325 6929 1006 64.6 MiB 0.09 0.00 2.70619 -87.3021 -2.70619 2.70619 0.89 0.000450117 0.000410264 0.0319105 0.0291339 30 1913 21 6.64007e+06 213486 526063. 1820.29 0.90 0.0896096 0.0789172 22546 126617 -1 1608 18 720 1232 69133 15870 2.87597 2.87597 -105.289 -2.87597 0 0 666494. 2306.21 0.29 0.04 0.11 -1 -1 0.29 0.0188555 0.0167543 106 49 31 31 53 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.45 vpr 65.20 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33880 -1 -1 33 32 0 0 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 66764 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 26.5 MiB 0.13 884 11419 2752 8105 562 65.2 MiB 0.11 0.00 2.7379 -92.1963 -2.7379 2.7379 0.92 0.000519815 0.000474313 0.0295083 0.0269271 28 2480 22 6.64007e+06 414414 500653. 1732.36 1.35 0.102 0.0898171 21970 115934 -1 2039 21 1281 2246 186075 40809 2.82377 2.82377 -114.141 -2.82377 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0249769 0.0220992 137 56 52 26 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.29 vpr 65.31 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 33824 -1 -1 37 31 0 0 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 66880 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 26.8 MiB 0.23 968 9844 2332 6781 731 65.3 MiB 0.10 0.00 3.0995 -98.8191 -3.0995 3.0995 0.93 0.000586079 0.00053241 0.0282676 0.0257087 32 2266 20 6.64007e+06 464646 554710. 1919.41 0.99 0.0988684 0.0868864 22834 132086 -1 1924 18 1525 2239 142799 34093 3.22856 3.22856 -118.161 -3.22856 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0238419 0.0212546 149 88 31 31 92 31 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.03 vpr 64.84 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34080 -1 -1 18 32 0 0 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 66400 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 26.0 MiB 0.11 888 11118 3018 7466 634 64.8 MiB 0.09 0.00 2.44279 -88.8016 -2.44279 2.44279 0.91 0.000443955 0.000403919 0.030458 0.0277566 32 2009 23 6.64007e+06 226044 554710. 1919.41 0.96 0.0952468 0.0839304 22834 132086 -1 1762 17 1025 1591 107873 25091 2.65757 2.65757 -108.136 -2.65757 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0202168 0.0180091 115 54 32 32 60 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.19 vpr 64.70 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33780 -1 -1 18 32 0 0 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 66256 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 25.9 MiB 0.16 915 15746 5631 7943 2172 64.7 MiB 0.13 0.00 2.7819 -100.951 -2.7819 2.7819 0.94 0.000485307 0.000442343 0.0444417 0.0405492 32 2224 22 6.64007e+06 226044 554710. 1919.41 0.98 0.107008 0.0946282 22834 132086 -1 2025 19 1334 2171 165434 36634 2.89697 2.89697 -118.409 -2.89697 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0208388 0.0184325 121 60 32 32 62 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.32 vpr 65.18 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 34168 -1 -1 38 32 0 0 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 66748 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1027 15334 3953 9399 1982 65.2 MiB 0.13 0.00 3.40436 -120.119 -3.40436 3.40436 0.94 0.000580096 0.00052952 0.0392675 0.0358793 32 2401 30 6.64007e+06 477204 554710. 1919.41 1.05 0.119 0.104807 22834 132086 -1 2200 24 2092 3146 241008 52478 3.72443 3.72443 -143.36 -3.72443 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0294963 0.0260744 156 49 64 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.04 vpr 65.18 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33820 -1 -1 34 29 0 0 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 66748 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 26.4 MiB 0.12 894 9599 2158 6891 550 65.2 MiB 0.09 0.00 3.00358 -88.3006 -3.00358 3.00358 0.96 0.000525281 0.00048044 0.0260329 0.0238373 30 1988 19 6.64007e+06 426972 526063. 1820.29 0.93 0.0904917 0.0797169 22546 126617 -1 1734 18 939 1533 81151 19811 3.04717 3.04717 -108.483 -3.04717 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0210476 0.0186934 135 54 56 29 58 29 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.39 vpr 65.25 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34124 -1 -1 39 32 0 0 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 66812 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 0.23 1020 10707 2395 7696 616 65.2 MiB 0.11 0.00 3.41536 -117.479 -3.41536 3.41536 0.97 0.000622194 0.000566754 0.0298129 0.027121 32 2505 20 6.64007e+06 489762 554710. 1919.41 1.02 0.106349 0.0932958 22834 132086 -1 2245 23 1996 3077 218231 50464 3.71343 3.71343 -143.899 -3.71343 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0304198 0.0267934 158 117 0 0 128 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.97 vpr 64.33 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33968 -1 -1 17 31 0 0 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 65876 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 25.9 MiB 0.07 760 12292 4714 5795 1783 64.3 MiB 0.09 0.00 2.46479 -83.7107 -2.46479 2.46479 0.93 0.000398694 0.000364852 0.030996 0.0283927 32 1717 23 6.64007e+06 213486 554710. 1919.41 0.93 0.0838415 0.0741724 22834 132086 -1 1507 22 1060 1706 113073 25778 2.63957 2.63957 -102.332 -2.63957 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0195877 0.0173111 106 -1 85 31 0 0 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.86 vpr 65.35 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33724 -1 -1 35 32 0 0 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 66916 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 26.6 MiB 0.12 957 19251 5608 11130 2513 65.3 MiB 0.16 0.00 3.43436 -113.195 -3.43436 3.43436 0.96 0.0005788 0.000527591 0.0501183 0.0456114 26 2710 23 6.64007e+06 439530 477104. 1650.88 1.67 0.132898 0.117915 21682 110474 -1 2100 22 1546 2353 203730 49708 4.01943 4.01943 -140.648 -4.01943 0 0 585099. 2024.56 0.26 0.08 0.10 -1 -1 0.26 0.0270253 0.0238892 144 89 28 28 92 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.14 vpr 65.01 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33652 -1 -1 17 32 0 0 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 66572 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 26.2 MiB 0.23 675 13206 3667 7716 1823 65.0 MiB 0.10 0.00 2.8021 -94.9866 -2.8021 2.8021 0.92 0.000515611 0.000469056 0.041431 0.0377609 32 1603 25 6.64007e+06 213486 554710. 1919.41 0.98 0.110114 0.0969023 22834 132086 -1 1318 22 1344 1975 121995 29399 2.90497 2.90497 -109.736 -2.90497 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0223385 0.0196957 114 93 0 0 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.21 vpr 65.34 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33828 -1 -1 37 32 0 0 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 66908 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 26.8 MiB 0.14 1132 10676 2588 7124 964 65.3 MiB 0.10 0.00 2.7537 -100.873 -2.7537 2.7537 0.95 0.000596562 0.000546312 0.0294729 0.0269344 30 2311 21 6.64007e+06 464646 526063. 1820.29 0.97 0.104464 0.0921827 22546 126617 -1 1977 21 1082 1600 100078 22380 2.71937 2.71937 -116.351 -2.71937 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0268939 0.0239408 151 59 61 32 64 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.74 vpr 65.23 MiB 0.02 7384 -1 -1 1 0.04 -1 -1 34472 -1 -1 45 32 0 0 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 66796 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 26.9 MiB 0.20 1247 16489 4467 10039 1983 65.2 MiB 0.15 0.00 4.01362 -138.867 -4.01362 4.01362 0.92 0.000637283 0.000583273 0.0442148 0.0402762 28 3259 26 6.64007e+06 565110 500653. 1732.36 3.43 0.229716 0.200453 21970 115934 -1 2648 23 2241 3589 278927 57980 4.57229 4.57229 -168.929 -4.57229 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0325547 0.0287854 188 81 64 32 96 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.79 vpr 64.27 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33480 -1 -1 15 30 0 0 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 65808 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.8 MiB 0.06 450 11161 2819 7941 401 64.3 MiB 0.07 0.00 2.34384 -68.5346 -2.34384 2.34384 0.93 0.00033898 0.000306231 0.0256722 0.0233652 32 1244 19 6.64007e+06 188370 554710. 1919.41 0.86 0.0685642 0.0601722 22834 132086 -1 1071 20 692 957 65639 16994 1.93691 1.93691 -77.215 -1.93691 0 0 701300. 2426.64 0.29 0.04 0.12 -1 -1 0.29 0.0159798 0.01406 83 51 0 0 53 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.15 vpr 64.28 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33908 -1 -1 17 30 0 0 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 65824 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 25.8 MiB 0.08 554 11909 4981 5787 1141 64.3 MiB 0.08 0.00 2.9603 -88.207 -2.9603 2.9603 0.94 0.000443262 0.000404467 0.0326462 0.0298713 32 1763 35 6.64007e+06 213486 554710. 1919.41 1.05 0.100747 0.0887985 22834 132086 -1 1328 20 1101 1552 132316 31914 3.07317 3.07317 -107.45 -3.07317 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0216316 0.0192352 97 29 60 30 30 30 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.18 vpr 65.07 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 33400 -1 -1 18 32 0 0 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 66636 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 26.3 MiB 0.09 809 14500 4701 7312 2487 65.1 MiB 0.12 0.00 2.7647 -96.8383 -2.7647 2.7647 0.95 0.000460393 0.000419509 0.0399445 0.0365021 32 2306 23 6.64007e+06 226044 554710. 1919.41 1.02 0.101492 0.0897342 22834 132086 -1 1931 21 1515 2667 169319 40743 3.05797 3.05797 -120.933 -3.05797 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0222675 0.0197068 126 31 64 32 32 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.61 vpr 64.52 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33912 -1 -1 34 25 0 0 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 66064 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 26.1 MiB 0.05 734 14371 3886 8696 1789 64.5 MiB 0.09 0.00 2.6877 -74.8543 -2.6877 2.6877 0.89 0.000398021 0.000363076 0.0281432 0.0256497 26 1647 20 6.64007e+06 426972 477104. 1650.88 0.80 0.0738999 0.0651065 21682 110474 -1 1456 21 999 1485 102873 22826 2.72157 2.72157 -89.0263 -2.72157 0 0 585099. 2024.56 0.24 0.04 0.10 -1 -1 0.24 0.0162736 0.0143902 103 19 50 25 25 25 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.35 vpr 65.45 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34168 -1 -1 22 32 0 0 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 67020 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 26.9 MiB 0.14 1040 15017 5305 7078 2634 65.4 MiB 0.15 0.00 3.50535 -114.203 -3.50535 3.50535 0.97 0.000598691 0.000546791 0.0496452 0.0454146 32 2704 19 6.64007e+06 276276 554710. 1919.41 1.03 0.127407 0.113356 22834 132086 -1 2212 20 1704 3068 191466 44574 3.53723 3.53723 -134.546 -3.53723 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0267177 0.0237409 149 84 32 32 94 32 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.22 vpr 65.38 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33908 -1 -1 39 31 0 0 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 66952 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 26.9 MiB 0.15 1002 13430 3324 8974 1132 65.4 MiB 0.12 0.00 2.8721 -100.605 -2.8721 2.8721 0.93 0.000575482 0.000524927 0.0344688 0.0313014 26 2553 20 6.64007e+06 489762 477104. 1650.88 1.07 0.109688 0.0967504 21682 110474 -1 2200 20 1687 2668 182842 41173 3.16477 3.16477 -119.952 -3.16477 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0253142 0.0223638 148 88 29 29 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.56 vpr 65.04 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34244 -1 -1 34 32 0 0 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 66604 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 26.7 MiB 0.23 986 10448 2384 7525 539 65.0 MiB 0.11 0.00 3.15264 -109.774 -3.15264 3.15264 0.95 0.000606276 0.000553452 0.0307582 0.0280778 28 3049 39 6.65987e+06 431052 500653. 1732.36 2.27 0.131433 0.115852 21970 115934 -1 2366 24 1871 3187 290615 64577 3.87251 3.87251 -142.939 -3.87251 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0305871 0.0270934 151 80 32 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.51 vpr 65.16 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 33876 -1 -1 21 30 0 0 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 66720 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 26.4 MiB 0.38 820 8723 2048 5614 1061 65.2 MiB 0.09 0.00 3.4945 -99.7351 -3.4945 3.4945 0.97 0.000568764 0.000519013 0.0301968 0.0276163 32 2388 23 6.65987e+06 266238 554710. 1919.41 1.01 0.105277 0.0927355 22834 132086 -1 1927 23 1944 3283 215404 53102 3.63251 3.63251 -126.601 -3.63251 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0284647 0.0251935 140 78 30 30 89 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.17 vpr 65.09 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34100 -1 -1 34 32 0 0 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 66648 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 26.4 MiB 0.11 1020 12923 3600 8556 767 65.1 MiB 0.11 0.00 2.72347 -97.3331 -2.72347 2.72347 0.93 0.000554187 0.000499842 0.0340728 0.0310601 28 2593 29 6.65987e+06 431052 500653. 1732.36 1.05 0.11392 0.100352 21970 115934 -1 2326 23 1553 2573 203434 46390 3.57725 3.57725 -126.257 -3.57725 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0287782 0.0255378 141 50 54 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.20 vpr 64.99 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33900 -1 -1 22 29 0 0 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 66548 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 26.3 MiB 0.09 1030 14303 4432 7818 2053 65.0 MiB 0.13 0.00 3.4563 -105.804 -3.4563 3.4563 0.95 0.00048071 0.000439375 0.0417106 0.0381677 28 2460 23 6.65987e+06 278916 500653. 1732.36 1.05 0.108761 0.096305 21970 115934 -1 2253 24 1724 3036 252148 55938 3.77471 3.77471 -134.188 -3.77471 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.026022 0.0230161 138 25 87 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.34 vpr 64.98 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33968 -1 -1 20 32 0 0 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 66536 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1002 9600 2619 6430 551 65.0 MiB 0.10 0.00 3.30796 -116.492 -3.30796 3.30796 0.93 0.000552739 0.000504892 0.0315651 0.0288964 32 3027 21 6.65987e+06 253560 554710. 1919.41 1.07 0.102625 0.0907346 22834 132086 -1 2464 20 2001 3619 269205 63797 3.86363 3.86363 -151.124 -3.86363 0 0 701300. 2426.64 0.30 0.08 0.12 -1 -1 0.30 0.0254362 0.0226032 151 31 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.42 vpr 64.89 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34144 -1 -1 37 32 0 0 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 66444 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 26.6 MiB 0.21 1018 9501 1932 7142 427 64.9 MiB 0.09 0.00 2.66064 -94.5007 -2.66064 2.66064 0.93 0.000529701 0.000480397 0.0245459 0.0223644 26 3020 31 6.65987e+06 469086 477104. 1650.88 1.20 0.109063 0.0957418 21682 110474 -1 2223 21 1707 2797 228202 52856 2.88991 2.88991 -118.021 -2.88991 0 0 585099. 2024.56 0.26 0.09 0.10 -1 -1 0.26 0.028817 0.0257474 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.20 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34388 -1 -1 19 27 0 0 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 65736 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 25.7 MiB 0.18 581 13026 5446 6285 1295 64.2 MiB 0.09 0.00 3.0353 -79.6884 -3.0353 3.0353 0.91 0.000338119 0.000310458 0.0307817 0.0281594 32 1512 23 6.65987e+06 240882 554710. 1919.41 0.91 0.0802385 0.0708694 22834 132086 -1 1346 22 1124 1952 136687 33454 2.98997 2.98997 -98.0645 -2.98997 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0185814 0.0164231 96 26 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.01 vpr 64.72 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33808 -1 -1 33 31 0 0 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 66276 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 26.1 MiB 0.14 1025 11046 2936 7024 1086 64.7 MiB 0.09 0.00 2.73284 -90.0098 -2.73284 2.73284 0.91 0.000467058 0.000425429 0.0251246 0.0228891 32 2398 23 6.65987e+06 418374 554710. 1919.41 0.93 0.0846979 0.0742995 22834 132086 -1 2074 21 1287 2226 164909 37739 2.74691 2.74691 -104.448 -2.74691 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0224114 0.0198316 139 -1 115 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.05 vpr 64.83 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33860 -1 -1 16 31 0 0 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 66388 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 26.0 MiB 0.28 806 7853 2025 5355 473 64.8 MiB 0.07 0.00 2.45267 -82.8473 -2.45267 2.45267 0.92 0.000464225 0.000422785 0.0240409 0.0220103 28 1930 19 6.65987e+06 202848 500653. 1732.36 0.89 0.0821856 0.0723295 21970 115934 -1 1727 16 868 1371 106279 24266 2.49925 2.49925 -99.1116 -2.49925 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0184798 0.0164532 105 81 0 0 84 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.16 vpr 64.79 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33688 -1 -1 16 32 0 0 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 66344 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.26 884 7992 2012 5204 776 64.8 MiB 0.07 0.00 2.7537 -99.6086 -2.7537 2.7537 0.92 0.000456819 0.000417073 0.0234796 0.0215139 32 1954 22 6.65987e+06 202848 554710. 1919.41 0.95 0.0826095 0.0727729 22834 132086 -1 1812 18 1320 2013 144270 32719 2.93777 2.93777 -121.166 -2.93777 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0199583 0.0177689 121 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.03 vpr 64.77 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33800 -1 -1 17 30 0 0 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 66324 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 25.9 MiB 0.24 653 12078 2741 8673 664 64.8 MiB 0.09 0.00 2.80139 -89.1444 -2.80139 2.80139 0.88 0.000469292 0.000426559 0.0359596 0.0327096 32 1867 20 6.65987e+06 215526 554710. 1919.41 0.99 0.0891724 0.0787875 22834 132086 -1 1510 20 1083 1540 105689 26343 2.93697 2.93697 -110.785 -2.93697 0 0 701300. 2426.64 0.27 0.05 0.12 -1 -1 0.27 0.0199034 0.0176021 110 58 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.27 vpr 64.85 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 33604 -1 -1 29 32 0 0 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 66408 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 26.2 MiB 0.24 834 10383 2397 7480 506 64.9 MiB 0.09 0.00 2.44518 -85.204 -2.44518 2.44518 0.93 0.000485552 0.000443435 0.0262195 0.023916 30 2002 23 6.65987e+06 367662 526063. 1820.29 1.05 0.0915151 0.080616 22546 126617 -1 1675 23 1113 1889 126325 28658 2.52325 2.52325 -100.98 -2.52325 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0236105 0.0208392 114 57 25 25 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.74 vpr 64.90 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33888 -1 -1 32 32 0 0 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 66460 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 26.5 MiB 0.41 763 12360 3452 7421 1487 64.9 MiB 0.12 0.00 2.8739 -95.0908 -2.8739 2.8739 0.95 0.000577381 0.000528708 0.0345921 0.0316264 36 2138 26 6.65987e+06 405696 612192. 2118.31 2.27 0.176658 0.155948 23410 145293 -1 1545 20 1364 2275 124900 32766 2.90617 2.90617 -106.851 -2.90617 0 0 782063. 2706.10 0.33 0.06 0.14 -1 -1 0.33 0.0259374 0.0231149 143 55 64 32 57 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.35 vpr 64.79 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33932 -1 -1 34 32 0 0 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 66344 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 26.6 MiB 0.26 1041 9098 2060 6457 581 64.8 MiB 0.09 0.00 3.1647 -112.627 -3.1647 3.1647 0.93 0.000491955 0.000448424 0.0253221 0.0231295 32 2545 24 6.65987e+06 431052 554710. 1919.41 1.02 0.0992 0.0871656 22834 132086 -1 2298 22 2111 3292 261887 58773 3.60317 3.60317 -141.375 -3.60317 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.028771 0.025562 156 60 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.03 vpr 64.41 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 34092 -1 -1 18 29 0 0 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 65960 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 25.8 MiB 0.16 671 8191 2023 5330 838 64.4 MiB 0.07 0.00 2.43238 -74.1781 -2.43238 2.43238 0.93 0.000410309 0.000374642 0.0217606 0.0199352 32 1782 19 6.65987e+06 228204 554710. 1919.41 0.92 0.0731551 0.0644053 22834 132086 -1 1585 19 1120 1889 130649 31584 2.65545 2.65545 -93.8497 -2.65545 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.019183 0.0170711 107 21 58 29 24 24 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.19 vpr 65.21 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34016 -1 -1 20 32 0 0 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 66772 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 26.6 MiB 0.25 1053 10149 2578 6717 854 65.2 MiB 0.10 0.00 2.7929 -102.809 -2.7929 2.7929 0.91 0.00051395 0.000471437 0.0313435 0.0287266 32 2702 22 6.65987e+06 253560 554710. 1919.41 0.99 0.102182 0.0902875 22834 132086 -1 2335 20 1706 2946 234827 53733 3.09017 3.09017 -125.908 -3.09017 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0249461 0.0222373 146 60 64 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 65.00 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33908 -1 -1 34 32 0 0 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 66564 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 26.4 MiB 0.37 1040 14048 4104 8684 1260 65.0 MiB 0.12 0.00 2.8109 -102.334 -2.8109 2.8109 0.92 0.000547468 0.000498481 0.0370155 0.0337742 28 2299 20 6.65987e+06 431052 500653. 1732.36 1.08 0.111166 0.0985299 21970 115934 -1 2026 22 1492 2254 150832 34900 2.69057 2.69057 -116.697 -2.69057 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0267433 0.0237179 142 54 64 32 56 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.15 vpr 64.80 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 33700 -1 -1 30 32 0 0 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 66356 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 26.1 MiB 0.21 768 16495 5830 8068 2597 64.8 MiB 0.13 0.00 2.23864 -80.9004 -2.23864 2.23864 0.92 0.000484418 0.000441522 0.0393323 0.0358134 32 2034 22 6.65987e+06 380340 554710. 1919.41 0.94 0.100467 0.0886279 22834 132086 -1 1699 20 1154 1758 138154 33434 2.36891 2.36891 -94.5597 -2.36891 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0218429 0.0193289 118 62 29 29 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.95 vpr 64.14 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33820 -1 -1 15 30 0 0 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 65684 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 25.6 MiB 0.12 718 10672 3411 5794 1467 64.1 MiB 0.07 0.00 1.99938 -69.5127 -1.99938 1.99938 0.92 0.000365759 0.000335078 0.0254517 0.0233226 32 1518 17 6.65987e+06 190170 554710. 1919.41 0.88 0.0686488 0.0605909 22834 132086 -1 1404 18 703 1018 89197 20043 1.83285 1.83285 -80.9655 -1.83285 0 0 701300. 2426.64 0.29 0.04 0.13 -1 -1 0.29 0.0147245 0.0130184 85 29 24 24 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.27 vpr 64.73 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33940 -1 -1 16 31 0 0 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 66284 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 25.9 MiB 0.24 750 13937 4328 7755 1854 64.7 MiB 0.12 0.00 3.15104 -96.608 -3.15104 3.15104 0.96 0.000487397 0.000445953 0.0427009 0.039168 32 1839 21 6.65987e+06 202848 554710. 1919.41 0.95 0.105573 0.0938242 22834 132086 -1 1610 20 891 1341 100686 23506 3.10865 3.10865 -109.492 -3.10865 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0230058 0.0204145 113 55 31 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.09 vpr 64.83 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33692 -1 -1 34 32 0 0 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 66384 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 26.1 MiB 0.06 984 9773 2309 7055 409 64.8 MiB 0.09 0.00 3.1409 -107.335 -3.1409 3.1409 0.92 0.000553876 0.000505209 0.0262245 0.0239275 30 2274 23 6.65987e+06 431052 526063. 1820.29 1.03 0.0982204 0.0863512 22546 126617 -1 1887 21 1393 2031 119120 27812 3.31397 3.31397 -122.736 -3.31397 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0248862 0.0220796 145 31 91 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.48 vpr 65.11 MiB 0.02 7320 -1 -1 1 0.04 -1 -1 34312 -1 -1 36 32 0 0 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 66668 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 26.7 MiB 0.35 1164 11004 2782 7289 933 65.1 MiB 0.12 0.00 2.67564 -97.2858 -2.67564 2.67564 0.92 0.000681608 0.000624681 0.0333596 0.0304406 32 2648 25 6.65987e+06 456408 554710. 1919.41 1.03 0.116662 0.102724 22834 132086 -1 2230 22 1652 2569 174522 40894 3.22165 3.22165 -122.816 -3.22165 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0294367 0.0261231 149 108 0 0 125 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.95 vpr 63.98 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34196 -1 -1 17 26 0 0 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 65520 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 25.5 MiB 0.18 559 10661 3192 6660 809 64.0 MiB 0.07 0.00 2.01838 -57.8284 -2.01838 2.01838 0.92 0.000308635 0.00028163 0.0231411 0.0211898 32 1254 18 6.65987e+06 215526 554710. 1919.41 0.89 0.0619415 0.0547363 22834 132086 -1 1125 16 515 764 53290 12542 1.87605 1.87605 -68.8375 -1.87605 0 0 701300. 2426.64 0.29 0.03 0.13 -1 -1 0.29 0.0126127 0.011225 77 21 26 26 22 22 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.22 vpr 64.88 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33728 -1 -1 20 32 0 0 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 66432 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 26.2 MiB 0.13 1077 13626 4613 7246 1767 64.9 MiB 0.12 0.00 3.30433 -110.393 -3.30433 3.30433 0.92 0.000503245 0.000459686 0.0397214 0.0363104 32 2574 28 6.65987e+06 253560 554710. 1919.41 1.04 0.109156 0.096448 22834 132086 -1 2194 23 1709 2924 217942 49980 3.71657 3.71657 -135.35 -3.71657 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0263744 0.0233796 137 -1 122 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 64.02 MiB 0.02 6700 -1 -1 1 0.03 -1 -1 33608 -1 -1 13 32 0 0 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 65556 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 25.5 MiB 0.04 741 11650 4026 6299 1325 64.0 MiB 0.07 0.00 1.76538 -70.1149 -1.76538 1.76538 0.89 0.000316004 0.00028812 0.0245754 0.0225266 26 1563 18 6.65987e+06 164814 477104. 1650.88 0.95 0.0672361 0.0596806 21682 110474 -1 1430 21 732 967 80136 18272 2.01205 2.01205 -85.1213 -2.01205 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0152061 0.0134522 81 -1 53 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.25 vpr 64.67 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34156 -1 -1 33 32 0 0 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 66220 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 26.2 MiB 0.06 1100 19633 6390 10972 2271 64.7 MiB 0.16 0.00 3.2039 -113.493 -3.2039 3.2039 0.94 0.000506073 0.000461512 0.04922 0.0448932 32 2587 27 6.65987e+06 418374 554710. 1919.41 1.04 0.124595 0.110434 22834 132086 -1 2277 24 1978 2941 244980 54270 3.64237 3.64237 -140.765 -3.64237 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0287118 0.0254554 151 21 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.14 vpr 65.00 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 34000 -1 -1 35 32 0 0 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 66560 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 26.2 MiB 0.14 1098 12411 3107 8122 1182 65.0 MiB 0.11 0.00 2.67564 -97.1126 -2.67564 2.67564 0.92 0.000494532 0.000450963 0.0295706 0.0270591 32 2414 17 6.65987e+06 443730 554710. 1919.41 0.95 0.0905336 0.080073 22834 132086 -1 2158 19 1508 2439 173898 40283 2.66331 2.66331 -113.596 -2.66331 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0231571 0.0205679 150 -1 124 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.30 vpr 64.72 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34024 -1 -1 35 32 0 0 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 66272 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 26.5 MiB 0.13 996 11955 2998 8493 464 64.7 MiB 0.12 0.00 3.19664 -109.91 -3.19664 3.19664 0.96 0.000545971 0.000497105 0.0322149 0.0294185 30 2430 22 6.65987e+06 443730 526063. 1820.29 1.06 0.106779 0.0943213 22546 126617 -1 2085 21 1612 2773 147236 36173 3.31371 3.31371 -131.88 -3.31371 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0272429 0.0242025 153 54 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.85 vpr 64.36 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 34116 -1 -1 15 32 0 0 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 65908 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 25.8 MiB 0.05 876 9374 2633 6149 592 64.4 MiB 0.08 0.00 2.30182 -84.3634 -2.30182 2.30182 0.89 0.000440116 0.00040259 0.0260915 0.0239065 32 2055 21 6.65987e+06 190170 554710. 1919.41 0.91 0.0815196 0.0720711 22834 132086 -1 1872 22 1111 1835 171931 38585 2.57851 2.57851 -102.663 -2.57851 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0219023 0.0192801 106 31 54 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.09 vpr 64.37 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33788 -1 -1 19 30 0 0 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 65912 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 26.0 MiB 0.12 755 12681 3724 7149 1808 64.4 MiB 0.09 0.00 2.8721 -94.5402 -2.8721 2.8721 0.94 0.00040967 0.000375892 0.033757 0.0308787 32 1747 20 6.65987e+06 240882 554710. 1919.41 0.92 0.0897973 0.0793019 22834 132086 -1 1663 19 1185 1675 117098 27780 3.08837 3.08837 -114.677 -3.08837 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0200318 0.0177778 115 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.13 vpr 64.36 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 33640 -1 -1 20 28 0 0 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 65908 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 25.8 MiB 0.14 776 13668 4128 7791 1749 64.4 MiB 0.11 0.00 2.7097 -85.6959 -2.7097 2.7097 0.95 0.000420605 0.000384929 0.0357848 0.0327492 32 1929 22 6.65987e+06 253560 554710. 1919.41 0.96 0.0904554 0.0799535 22834 132086 -1 1743 21 1285 2181 174336 40572 3.06731 3.06731 -110.042 -3.06731 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.02004 0.0177233 107 27 56 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.05 vpr 64.81 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33932 -1 -1 18 32 0 0 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 66364 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 26.1 MiB 0.11 702 4888 903 3308 677 64.8 MiB 0.04 0.00 2.7647 -95.1525 -2.7647 2.7647 0.97 0.000439055 0.000400349 0.0143295 0.0131451 30 2090 27 6.65987e+06 228204 526063. 1820.29 1.00 0.0757486 0.0663333 22546 126617 -1 1607 18 1136 1831 109609 26872 2.83491 2.83491 -113.342 -2.83491 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0187533 0.0167362 125 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.06 vpr 64.55 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33964 -1 -1 31 31 0 0 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 66104 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 26.1 MiB 0.08 805 17134 4862 9825 2447 64.6 MiB 0.13 0.00 2.66578 -92.343 -2.66578 2.66578 0.92 0.000438425 0.000399906 0.0388349 0.0354761 32 2053 21 6.65987e+06 393018 554710. 1919.41 0.96 0.0967255 0.0857276 22834 132086 -1 1823 19 1259 2078 158398 37305 2.90565 2.90565 -109.413 -2.90565 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0195733 0.0173214 119 26 61 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.98 vpr 64.64 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 33668 -1 -1 30 29 0 0 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 66196 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 26.2 MiB 0.24 754 9475 2385 6417 673 64.6 MiB 0.09 0.00 2.17493 -72.8492 -2.17493 2.17493 0.94 0.00045927 0.000413146 0.02329 0.0212174 28 1715 23 6.65987e+06 380340 500653. 1732.36 2.78 0.141074 0.122424 21970 115934 -1 1604 18 1016 1689 106182 25720 2.10931 2.10931 -84.2442 -2.10931 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0177134 0.0157132 109 55 29 29 57 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.52 vpr 65.04 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34208 -1 -1 39 32 0 0 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 66604 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 26.9 MiB 0.32 1243 12153 3283 7976 894 65.0 MiB 0.13 0.00 3.41716 -119.933 -3.41716 3.41716 0.95 0.000617546 0.000565313 0.0335657 0.0306439 28 3140 23 6.65987e+06 494442 500653. 1732.36 1.06 0.114905 0.101476 21970 115934 -1 2730 21 1892 3203 228209 51294 3.86363 3.86363 -147.962 -3.86363 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0292678 0.0260487 179 26 128 32 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.26 vpr 65.28 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34236 -1 -1 35 32 0 0 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 66848 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 26.6 MiB 0.26 1019 10359 2493 7168 698 65.3 MiB 0.10 0.00 2.8501 -99.3889 -2.8501 2.8501 0.93 0.000560945 0.000508006 0.0293881 0.0267017 32 2305 17 6.65987e+06 443730 554710. 1919.41 0.98 0.097589 0.0861288 22834 132086 -1 1999 18 1734 2587 171137 40845 2.85397 2.85397 -116.782 -2.85397 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0238954 0.0213146 152 62 62 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.38 vpr 64.77 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34172 -1 -1 28 31 0 0 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 66328 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 26.2 MiB 0.36 747 9067 1968 6729 370 64.8 MiB 0.08 0.00 2.46718 -83.3743 -2.46718 2.46718 0.96 0.000495877 0.00045379 0.0246469 0.0225504 28 2145 23 6.65987e+06 354984 500653. 1732.36 1.03 0.0927202 0.0816707 21970 115934 -1 1761 21 1136 1727 132241 31254 2.73245 2.73245 -107.467 -2.73245 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0233966 0.0207121 113 77 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.39 vpr 64.99 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 34008 -1 -1 21 31 0 0 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 66552 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 26.3 MiB 0.24 1141 14724 4281 8560 1883 65.0 MiB 0.14 0.00 2.7709 -97.8546 -2.7709 2.7709 0.95 0.000540041 0.000484605 0.0465243 0.0424734 28 2744 33 6.65987e+06 266238 500653. 1732.36 1.06 0.12696 0.11212 21970 115934 -1 2449 22 1693 2768 200848 45205 2.87785 2.87785 -117.435 -2.87785 0 0 612192. 2118.31 0.28 0.08 0.11 -1 -1 0.28 0.0272927 0.0242744 148 59 60 30 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.42 vpr 64.96 MiB 0.02 7564 -1 -1 1 0.03 -1 -1 33808 -1 -1 21 31 0 0 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 66516 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 26.3 MiB 0.34 1077 8868 1863 6519 486 65.0 MiB 0.09 0.00 3.96764 -116.375 -3.96764 3.96764 0.95 0.000605106 0.000544066 0.032179 0.0293362 30 2447 20 6.65987e+06 266238 526063. 1820.29 1.06 0.109787 0.0968817 22546 126617 -1 2085 17 1088 1721 105849 24147 3.60071 3.60071 -128.401 -3.60071 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0248793 0.0222438 149 111 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.56 vpr 65.08 MiB 0.02 7488 -1 -1 1 0.04 -1 -1 33896 -1 -1 21 31 0 0 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 66640 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 26.3 MiB 0.46 939 9600 2615 6358 627 65.1 MiB 0.09 0.00 3.8015 -105.375 -3.8015 3.8015 0.97 0.000584266 0.000531592 0.0313403 0.0286584 32 2613 23 6.65987e+06 266238 554710. 1919.41 1.02 0.106682 0.0940752 22834 132086 -1 2097 19 1467 2428 187680 43713 3.86037 3.86037 -130.777 -3.86037 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0250598 0.0223592 143 86 31 31 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.24 vpr 64.81 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 33880 -1 -1 33 31 0 0 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 66368 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 26.7 MiB 0.25 1014 15645 4615 8488 2542 64.8 MiB 0.14 0.00 2.62144 -91.6007 -2.62144 2.62144 0.89 0.000526672 0.000479557 0.0410054 0.0373044 32 2482 24 6.65987e+06 418374 554710. 1919.41 1.00 0.111771 0.0986698 22834 132086 -1 2203 20 1609 2625 198778 45896 2.99211 2.99211 -115.058 -2.99211 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0246226 0.0217839 146 58 60 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.24 vpr 64.94 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34428 -1 -1 35 32 0 0 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 66500 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 26.7 MiB 0.11 1114 9675 2104 6817 754 64.9 MiB 0.10 0.00 3.07644 -110.228 -3.07644 3.07644 0.93 0.000544397 0.000494365 0.0269166 0.0245785 32 2887 22 6.65987e+06 443730 554710. 1919.41 1.01 0.0991941 0.08718 22834 132086 -1 2453 24 2056 3085 245715 55020 3.74731 3.74731 -140.186 -3.74731 0 0 701300. 2426.64 0.29 0.09 0.14 -1 -1 0.29 0.0313989 0.0279456 154 42 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 6.51 vpr 65.25 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34024 -1 -1 40 32 0 0 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 66812 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 27.0 MiB 0.28 1087 10840 2392 7745 703 65.2 MiB 0.12 0.00 3.3161 -111.319 -3.3161 3.3161 0.94 0.000659155 0.000599187 0.0327919 0.0299255 30 2664 22 6.65987e+06 507120 526063. 1820.29 3.16 0.213413 0.185612 22546 126617 -1 2176 18 1624 2615 127690 31819 3.56837 3.56837 -134.654 -3.56837 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0287009 0.0257197 184 91 62 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.11 vpr 64.40 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 34072 -1 -1 18 31 0 0 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 65944 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 26.0 MiB 0.13 883 9881 2666 5798 1417 64.4 MiB 0.09 0.00 2.83398 -94.3561 -2.83398 2.83398 0.93 0.000454637 0.000416167 0.0280113 0.0256768 28 1997 20 6.65987e+06 228204 500653. 1732.36 1.03 0.0877441 0.0777113 21970 115934 -1 1892 20 1313 2018 149206 34145 2.68245 2.68245 -114.097 -2.68245 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0211535 0.0187601 116 24 62 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.49 vpr 64.88 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34072 -1 -1 36 31 0 0 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 66432 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 26.6 MiB 0.29 1236 18111 5153 10456 2502 64.9 MiB 0.14 0.00 3.4271 -115.947 -3.4271 3.4271 0.92 0.000532674 0.00048566 0.0456013 0.0415973 32 2754 28 6.65987e+06 456408 554710. 1919.41 1.11 0.122421 0.108129 22834 132086 -1 2574 22 1774 2780 275281 57161 4.01617 4.01617 -142.903 -4.01617 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0264703 0.0233846 150 59 62 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.48 vpr 64.70 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34072 -1 -1 33 32 0 0 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 66248 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1114 19411 5694 11116 2601 64.7 MiB 0.17 0.00 2.90504 -97.9863 -2.90504 2.90504 0.93 0.000531959 0.000485068 0.0507759 0.0462656 28 2674 24 6.65987e+06 418374 500653. 1732.36 1.31 0.129299 0.114557 21970 115934 -1 2308 19 1285 2335 165019 37209 3.00411 3.00411 -117.288 -3.00411 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0237696 0.0211063 148 54 62 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.28 vpr 64.73 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33380 -1 -1 20 32 0 0 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 66284 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 26.2 MiB 0.15 1089 14907 4588 8751 1568 64.7 MiB 0.14 0.00 3.30796 -119.004 -3.30796 3.30796 0.92 0.000496442 0.00045372 0.043681 0.0400282 32 2876 24 6.65987e+06 253560 554710. 1919.41 1.05 0.111839 0.0992713 22834 132086 -1 2483 23 2134 3743 310020 70636 3.86663 3.86663 -150.713 -3.86663 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0262621 0.0232903 150 -1 128 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.34 vpr 64.94 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 33736 -1 -1 34 32 0 0 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 66496 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 26.7 MiB 0.33 1043 17423 4926 9715 2782 64.9 MiB 0.16 0.00 2.54238 -93.6622 -2.54238 2.54238 0.90 0.000550978 0.000497877 0.0461434 0.0420149 28 2426 17 6.65987e+06 431052 500653. 1732.36 1.05 0.118397 0.105096 21970 115934 -1 2102 21 1456 2214 150653 35143 3.04485 3.04485 -117.439 -3.04485 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0266083 0.0235201 145 81 25 25 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.82 vpr 64.86 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 33720 -1 -1 35 32 0 0 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 66412 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 26.6 MiB 0.32 987 9903 2078 7336 489 64.9 MiB 0.09 0.00 2.8739 -100.942 -2.8739 2.8739 0.93 0.000529775 0.000487626 0.0266001 0.0242756 28 2781 34 6.65987e+06 443730 500653. 1732.36 1.47 0.115282 0.101351 21970 115934 -1 2258 24 1496 2500 177238 42020 3.07197 3.07197 -124.473 -3.07197 0 0 612192. 2118.31 0.28 0.08 0.12 -1 -1 0.28 0.0294878 0.0261161 146 58 64 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.25 vpr 64.98 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34020 -1 -1 37 32 0 0 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 66540 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 26.5 MiB 0.25 1114 15846 4290 10313 1243 65.0 MiB 0.14 0.00 2.63244 -96.3801 -2.63244 2.63244 0.93 0.000556685 0.000503179 0.041534 0.0376436 30 2334 22 6.65987e+06 469086 526063. 1820.29 0.96 0.11443 0.100877 22546 126617 -1 2053 20 1475 2326 130041 29853 2.64219 2.64219 -110.905 -2.64219 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0261792 0.0233266 155 61 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.56 vpr 64.82 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33844 -1 -1 35 32 0 0 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 66372 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 26.6 MiB 0.06 1044 18111 5689 9985 2437 64.8 MiB 0.16 0.00 3.1757 -112.337 -3.1757 3.1757 0.94 0.000548203 0.00050101 0.0455336 0.0415844 28 2692 22 6.65987e+06 443730 500653. 1732.36 1.42 0.1209 0.107366 21970 115934 -1 2274 20 1710 2840 211785 47286 3.96497 3.96497 -136.828 -3.96497 0 0 612192. 2118.31 0.27 0.07 0.11 -1 -1 0.27 0.0240892 0.0213512 150 21 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.27 vpr 64.89 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 34256 -1 -1 37 32 0 0 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 66448 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 26.6 MiB 0.15 870 13731 3659 8227 1845 64.9 MiB 0.12 0.00 3.18084 -106.536 -3.18084 3.18084 0.92 0.000545067 0.000497632 0.0347769 0.0317326 30 2510 24 6.65987e+06 469086 526063. 1820.29 1.07 0.108284 0.0955091 22546 126617 -1 1868 24 1736 2692 153450 38076 3.61311 3.61311 -134.35 -3.61311 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0287307 0.0253606 153 50 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.85 vpr 65.05 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 34172 -1 -1 34 31 0 0 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 66608 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 26.6 MiB 0.40 1064 10531 2702 7276 553 65.0 MiB 0.11 0.00 3.40198 -100.358 -3.40198 3.40198 0.94 0.000586827 0.000532388 0.0312295 0.0284219 26 3304 42 6.65987e+06 431052 477104. 1650.88 2.43 0.133269 0.116825 21682 110474 -1 2524 23 1478 2830 258159 57167 3.60525 3.60525 -131.216 -3.60525 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.028868 0.0254918 145 110 0 0 122 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.50 vpr 64.85 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33792 -1 -1 20 32 0 0 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 66408 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 26.6 MiB 0.25 1098 15639 5253 8536 1850 64.9 MiB 0.15 0.00 3.20378 -103.942 -3.20378 3.20378 0.96 0.000576805 0.000525756 0.0520755 0.0474164 32 2775 27 6.65987e+06 253560 554710. 1919.41 1.09 0.131549 0.116255 22834 132086 -1 2484 22 1739 3148 260661 56552 3.50705 3.50705 -131.097 -3.50705 0 0 701300. 2426.64 0.28 0.09 0.13 -1 -1 0.28 0.0284551 0.0251063 149 86 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.81 vpr 64.22 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 34048 -1 -1 30 32 0 0 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 65760 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 25.9 MiB 0.05 869 16495 5012 9026 2457 64.2 MiB 0.11 0.00 2.55038 -93.1364 -2.55038 2.55038 0.89 0.000421052 0.000385612 0.0349042 0.0319194 30 2077 20 6.65987e+06 380340 526063. 1820.29 0.90 0.0897908 0.0792059 22546 126617 -1 1813 17 1002 1593 92048 22051 2.60725 2.60725 -108.161 -2.60725 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0189186 0.0168632 124 20 63 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.31 vpr 64.86 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33728 -1 -1 18 32 0 0 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 66412 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 26.2 MiB 0.28 909 9872 2816 6407 649 64.9 MiB 0.09 0.00 2.66064 -96.9536 -2.66064 2.66064 0.97 0.000521279 0.000475968 0.0312867 0.0286099 32 2063 24 6.65987e+06 228204 554710. 1919.41 0.96 0.0991314 0.0872921 22834 132086 -1 1863 22 1445 2249 168128 38666 2.87891 2.87891 -118.972 -2.87891 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0243928 0.0215498 121 91 0 0 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.55 vpr 64.95 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34008 -1 -1 40 32 0 0 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 66508 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 26.7 MiB 0.15 1300 12060 3036 8187 837 64.9 MiB 0.12 0.00 3.7069 -130.393 -3.7069 3.7069 0.93 0.000593858 0.000539434 0.0330844 0.0301308 28 3288 21 6.65987e+06 507120 500653. 1732.36 1.33 0.121321 0.107432 21970 115934 -1 2701 22 2355 3866 254308 60548 4.49691 4.49691 -164.002 -4.49691 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0309269 0.0274957 187 53 96 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.33 vpr 65.07 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34068 -1 -1 31 32 0 0 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 66628 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 26.6 MiB 0.24 1092 12407 3099 7758 1550 65.1 MiB 0.11 0.00 2.7929 -102.208 -2.7929 2.7929 0.96 0.00050679 0.000460168 0.0329495 0.0300799 32 2372 21 6.65987e+06 393018 554710. 1919.41 0.98 0.102665 0.0905871 22834 132086 -1 2130 21 1559 2289 180554 40886 2.96317 2.96317 -121.025 -2.96317 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0264927 0.0235237 146 31 92 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 6.31 vpr 64.64 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 33728 -1 -1 30 30 0 0 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 66192 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 26.3 MiB 0.11 859 16031 4317 10378 1336 64.6 MiB 0.12 0.00 2.8189 -96.1115 -2.8189 2.8189 0.92 0.000446328 0.000405478 0.0371541 0.0339321 34 1749 31 6.65987e+06 380340 585099. 2024.56 3.16 0.158848 0.138293 23122 138558 -1 1615 21 1071 1736 112929 26083 2.67837 2.67837 -105.444 -2.67837 0 0 742403. 2568.87 0.30 0.05 0.14 -1 -1 0.30 0.0207455 0.0184148 115 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 11.71 vpr 65.41 MiB 0.02 7564 -1 -1 1 0.04 -1 -1 34384 -1 -1 43 32 0 0 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 66984 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 27.1 MiB 0.61 1274 20347 5387 12678 2282 65.4 MiB 0.21 0.00 3.8913 -134.724 -3.8913 3.8913 0.95 0.000700594 0.000638785 0.0606297 0.0553013 26 3758 42 6.65987e+06 545154 477104. 1650.88 7.86 0.319248 0.28328 21682 110474 -1 3074 23 2670 4165 332612 74204 5.01177 5.01177 -183.315 -5.01177 0 0 585099. 2024.56 0.26 0.12 0.11 -1 -1 0.26 0.0370052 0.0329627 186 109 32 32 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.27 vpr 64.54 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 34012 -1 -1 36 32 0 0 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 66088 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 26.3 MiB 0.26 875 6596 1108 5120 368 64.5 MiB 0.07 0.00 3.42816 -115.392 -3.42816 3.42816 0.92 0.000534295 0.000488801 0.0178798 0.0164367 32 2465 20 6.65987e+06 456408 554710. 1919.41 1.01 0.0859689 0.0754578 22834 132086 -1 2041 23 1951 2790 181831 44603 3.85863 3.85863 -143.967 -3.85863 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0275985 0.0245305 151 31 96 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.20 vpr 64.88 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33736 -1 -1 31 32 0 0 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 66432 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 26.2 MiB 0.05 751 18023 5925 9230 2868 64.9 MiB 0.14 0.00 2.8629 -98.7325 -2.8629 2.8629 0.96 0.000446374 0.000407551 0.0394047 0.0360336 32 2375 27 6.65987e+06 393018 554710. 1919.41 1.07 0.100768 0.0893119 22834 132086 -1 1878 21 1461 2257 157809 39023 2.98297 2.98297 -119.441 -2.98297 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0203336 0.0180322 123 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.98 vpr 65.16 MiB 0.02 7192 -1 -1 1 0.04 -1 -1 34088 -1 -1 41 32 0 0 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 66724 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 26.9 MiB 0.18 1281 18877 5636 10574 2667 65.2 MiB 0.18 0.00 3.75196 -130.392 -3.75196 3.75196 0.96 0.000602424 0.000547486 0.0498535 0.0454866 28 3179 27 6.65987e+06 519798 500653. 1732.36 1.64 0.141191 0.125464 21970 115934 -1 2708 19 2131 3583 245090 56101 4.51123 4.51123 -162.665 -4.51123 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0275041 0.024572 188 26 128 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 64.32 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 33680 -1 -1 16 32 0 0 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 65864 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 26.0 MiB 0.13 898 11776 3483 6378 1915 64.3 MiB 0.10 0.00 2.7537 -99.1188 -2.7537 2.7537 0.91 0.000441398 0.000402746 0.0320208 0.0293149 32 2083 22 6.65987e+06 202848 554710. 1919.41 0.99 0.0891261 0.0787567 22834 132086 -1 1935 21 1542 2468 189932 43449 2.98991 2.98991 -120.447 -2.98991 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0193651 0.0171779 121 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.25 vpr 64.45 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 33980 -1 -1 31 30 0 0 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 65996 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 26.0 MiB 0.23 850 12903 3416 8586 901 64.4 MiB 0.10 0.00 2.7427 -92.992 -2.7427 2.7427 0.92 0.000475722 0.000432694 0.0288388 0.0262516 26 2078 22 6.65987e+06 393018 477104. 1650.88 1.13 0.0904941 0.079938 21682 110474 -1 1885 20 1221 1935 154768 34728 2.82897 2.82897 -112.932 -2.82897 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0200298 0.0177365 113 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.32 vpr 64.95 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34004 -1 -1 33 29 0 0 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 66508 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 26.5 MiB 0.32 974 16921 5061 8933 2927 64.9 MiB 0.15 0.00 2.85398 -92.0118 -2.85398 2.85398 0.93 0.000539297 0.00049051 0.0433924 0.0394743 30 2031 19 6.65987e+06 418374 526063. 1820.29 0.97 0.110902 0.098026 22546 126617 -1 1705 17 995 1669 85878 20717 2.66437 2.66437 -102.751 -2.66437 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0217218 0.0194069 133 81 29 29 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.22 vpr 64.89 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34108 -1 -1 20 32 0 0 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 66448 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 26.3 MiB 0.12 1014 15090 4607 8313 2170 64.9 MiB 0.13 0.00 3.2179 -113.316 -3.2179 3.2179 0.91 0.000561073 0.000513619 0.0483666 0.0442326 28 2660 25 6.65987e+06 253560 500653. 1732.36 1.08 0.124486 0.110276 21970 115934 -1 2282 20 1734 2607 243294 50515 3.74057 3.74057 -145.649 -3.74057 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0267796 0.0238644 151 53 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.57 vpr 64.91 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 34008 -1 -1 34 32 0 0 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 66464 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 26.6 MiB 0.45 1086 14948 4139 9456 1353 64.9 MiB 0.13 0.00 3.1867 -115.378 -3.1867 3.1867 0.92 0.000527898 0.00048295 0.0377008 0.0344325 28 2627 22 6.65987e+06 431052 500653. 1732.36 1.13 0.115879 0.102482 21970 115934 -1 2353 21 1803 2948 215806 47268 3.37377 3.37377 -138.459 -3.37377 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0286179 0.0254672 152 55 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.24 vpr 64.71 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 34288 -1 -1 30 32 0 0 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 66268 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 26.0 MiB 0.24 854 13513 3736 7436 2341 64.7 MiB 0.10 0.00 2.74164 -99.019 -2.74164 2.74164 0.95 0.00049922 0.000454116 0.0331569 0.0303056 32 2038 23 6.65987e+06 380340 554710. 1919.41 0.97 0.0964748 0.0850873 22834 132086 -1 1796 23 1484 2272 175390 39919 2.81651 2.81651 -115.849 -2.81651 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0241346 0.0212366 120 55 32 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.22 vpr 64.61 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34144 -1 -1 17 31 0 0 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 66156 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 25.8 MiB 0.32 846 12292 3483 6896 1913 64.6 MiB 0.10 0.00 2.74778 -87.7105 -2.74778 2.74778 0.91 0.000431204 0.000395126 0.036151 0.0330844 32 2084 20 6.65987e+06 215526 554710. 1919.41 0.95 0.0975451 0.0861598 22834 132086 -1 1828 20 1147 2050 150827 35502 2.90065 2.90065 -108.249 -2.90065 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0224628 0.0199006 109 82 0 0 89 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.21 vpr 64.80 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33852 -1 -1 33 30 0 0 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 66360 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 26.1 MiB 0.21 982 9815 2378 6551 886 64.8 MiB 0.10 0.00 2.61044 -85.5322 -2.61044 2.61044 0.94 0.000531298 0.00048561 0.0269499 0.0246397 32 2336 23 6.65987e+06 418374 554710. 1919.41 0.96 0.0965245 0.0850617 22834 132086 -1 2114 22 1391 2306 179010 39709 3.04811 3.04811 -111.403 -3.04811 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0254953 0.0225468 137 52 60 30 57 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.34 vpr 64.82 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33752 -1 -1 31 28 0 0 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 66372 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 26.1 MiB 0.09 960 15799 4505 9290 2004 64.8 MiB 0.13 0.00 3.41304 -101.557 -3.41304 3.41304 0.94 0.000473622 0.000432541 0.0382637 0.0349077 26 2476 22 6.65987e+06 393018 477104. 1650.88 1.23 0.106872 0.0947998 21682 110474 -1 2202 22 1617 2467 194178 44199 3.93297 3.93297 -130.845 -3.93297 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0226765 0.0199974 133 20 84 28 28 28 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.29 vpr 64.98 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 34128 -1 -1 18 30 0 0 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 66540 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 26.1 MiB 0.33 788 13324 4213 7397 1714 65.0 MiB 0.11 0.00 2.8131 -94.3504 -2.8131 2.8131 0.92 0.000468678 0.00042753 0.039002 0.0356185 32 1933 17 6.65987e+06 228204 554710. 1919.41 0.94 0.0963498 0.0851379 22834 132086 -1 1723 21 1341 2155 165107 38194 2.87997 2.87997 -110.596 -2.87997 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0215651 0.0190844 114 58 30 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.23 vpr 64.84 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33732 -1 -1 16 32 0 0 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 66392 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 26.2 MiB 0.30 929 13668 3858 8031 1779 64.8 MiB 0.12 0.00 2.72278 -88.6199 -2.72278 2.72278 0.94 0.000503971 0.000458913 0.0428573 0.0391013 30 1855 17 6.65987e+06 202848 526063. 1820.29 0.94 0.10453 0.0927029 22546 126617 -1 1619 20 929 1552 91308 21126 2.43825 2.43825 -98.7471 -2.43825 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0216064 0.0190755 113 88 0 0 91 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 6.52 vpr 64.80 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33972 -1 -1 35 31 0 0 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 66352 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 26.3 MiB 0.11 1017 10223 2483 7014 726 64.8 MiB 0.10 0.00 3.33845 -110.482 -3.33845 3.33845 0.93 0.00051346 0.000468062 0.0250238 0.022885 34 2635 19 6.65987e+06 443730 585099. 2024.56 3.36 0.16169 0.140925 23122 138558 -1 2193 23 1649 2680 184498 44084 3.74563 3.74563 -135.234 -3.74563 0 0 742403. 2568.87 0.30 0.07 0.14 -1 -1 0.30 0.0256572 0.0227 150 -1 124 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 5.22 vpr 64.98 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34112 -1 -1 34 32 0 0 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 66540 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 26.7 MiB 0.23 1089 14273 4310 8986 977 65.0 MiB 0.14 0.00 3.1977 -114.63 -3.1977 3.1977 0.88 0.000516743 0.000469832 0.0394317 0.0360383 26 3162 30 6.65987e+06 431052 477104. 1650.88 2.06 0.128433 0.114018 21682 110474 -1 2515 21 1827 3139 272111 61224 3.80257 3.80257 -147.189 -3.80257 0 0 585099. 2024.56 0.24 0.09 0.10 -1 -1 0.24 0.0258505 0.0228954 153 57 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.81 vpr 64.96 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33888 -1 -1 34 32 0 0 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 66524 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 26.7 MiB 0.32 1012 18098 5939 9761 2398 65.0 MiB 0.16 0.00 3.39516 -117.412 -3.39516 3.39516 0.92 0.000573053 0.00052479 0.0490681 0.0447384 28 2955 24 6.65987e+06 431052 500653. 1732.36 1.48 0.124949 0.110932 21970 115934 -1 2290 20 1746 2941 206478 47678 3.86663 3.86663 -149.576 -3.86663 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0244039 0.0216324 151 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.77 vpr 64.94 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33868 -1 -1 37 32 0 0 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 66500 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 26.3 MiB 0.26 1069 17021 4782 9262 2977 64.9 MiB 0.15 0.00 3.02144 -104.149 -3.02144 3.02144 0.92 0.000576552 0.000526387 0.0443939 0.0405575 28 3014 27 6.65987e+06 469086 500653. 1732.36 1.45 0.132729 0.11792 21970 115934 -1 2420 20 1729 2946 213661 49264 3.65931 3.65931 -135.851 -3.65931 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.025636 0.0228117 148 62 60 30 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.02 vpr 64.39 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33756 -1 -1 18 30 0 0 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 65936 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 26.0 MiB 0.20 869 10916 3008 6667 1241 64.4 MiB 0.09 0.00 2.7709 -94.7681 -2.7709 2.7709 0.91 0.000427858 0.00039154 0.02958 0.027066 28 2080 18 6.65987e+06 228204 500653. 1732.36 0.93 0.0840576 0.0742619 21970 115934 -1 1864 19 1111 1825 124856 28750 2.89377 2.89377 -114.112 -2.89377 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0194005 0.0172538 112 29 60 30 30 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.32 vpr 64.66 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34164 -1 -1 22 30 0 0 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 66212 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 25.9 MiB 0.25 899 9051 2518 5752 781 64.7 MiB 0.09 0.00 3.35636 -107.378 -3.35636 3.35636 0.93 0.000557822 0.000507278 0.0288875 0.0264001 32 2379 25 6.65987e+06 278916 554710. 1919.41 0.99 0.100985 0.0888861 22834 132086 -1 2088 18 1680 2523 181073 42810 3.62143 3.62143 -132.321 -3.62143 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0232699 0.02071 145 58 60 30 60 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.74 vpr 65.11 MiB 0.02 7472 -1 -1 1 0.04 -1 -1 34080 -1 -1 39 32 0 0 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 66676 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 26.9 MiB 0.30 1092 13117 3120 8277 1720 65.1 MiB 0.12 0.00 3.10658 -110.926 -3.10658 3.10658 0.96 0.000603818 0.000549134 0.03522 0.0320474 28 2702 24 6.65987e+06 494442 500653. 1732.36 1.34 0.120625 0.106305 21970 115934 -1 2340 23 1808 2893 208134 47307 3.39365 3.39365 -136.708 -3.39365 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0298091 0.0262902 154 106 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.33 vpr 64.82 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33868 -1 -1 31 31 0 0 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 66380 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 26.6 MiB 0.23 1073 12874 3585 7940 1349 64.8 MiB 0.12 0.00 3.14164 -108.479 -3.14164 3.14164 0.94 0.000596081 0.000541281 0.0378971 0.0344952 28 2806 22 6.65987e+06 393018 500653. 1732.36 1.04 0.112814 0.0995242 21970 115934 -1 2474 21 1639 2632 209460 47956 3.89371 3.89371 -144.796 -3.89371 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0267346 0.0235745 146 79 31 31 93 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.50 vpr 65.10 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34212 -1 -1 30 30 0 0 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 66660 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 26.4 MiB 0.32 967 10235 2384 7200 651 65.1 MiB 0.10 0.00 3.0133 -92.0766 -3.0133 3.0133 0.97 0.000571608 0.000515262 0.0307826 0.0281373 26 2622 35 6.65987e+06 380340 477104. 1650.88 1.14 0.119186 0.104526 21682 110474 -1 2152 22 1502 2522 183943 43716 3.05517 3.05517 -113.169 -3.05517 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0261201 0.0230312 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.68 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34172 -1 -1 21 32 0 0 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 66228 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 26.5 MiB 0.22 1128 14593 4018 8697 1878 64.7 MiB 0.13 0.00 3.2069 -115.79 -3.2069 3.2069 0.93 0.000579386 0.00052644 0.0434652 0.0397378 32 2903 20 6.65987e+06 266238 554710. 1919.41 1.03 0.117273 0.103844 22834 132086 -1 2517 21 1994 3447 255995 57875 3.69751 3.69751 -145.551 -3.69751 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0270051 0.0239967 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 65.11 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33872 -1 -1 34 29 0 0 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 66672 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 26.6 MiB 0.20 927 18023 5543 9908 2572 65.1 MiB 0.14 0.00 2.58364 -84.2114 -2.58364 2.58364 0.92 0.000501333 0.00045802 0.0451102 0.041036 32 2118 21 6.65987e+06 431052 554710. 1919.41 0.91 0.110828 0.0980721 22834 132086 -1 1810 20 1420 2222 152877 36437 2.65771 2.65771 -99.0609 -2.65771 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.023999 0.0211407 134 81 26 26 85 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.09 vpr 64.55 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 33924 -1 -1 16 32 0 0 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 66104 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 26.2 MiB 0.09 914 14700 4993 8210 1497 64.6 MiB 0.12 0.00 2.7819 -101.63 -2.7819 2.7819 0.94 0.000446408 0.000407256 0.0398977 0.0365085 32 2040 23 6.65987e+06 202848 554710. 1919.41 0.97 0.0990373 0.087952 22834 132086 -1 1857 23 1447 2247 177620 40701 2.87497 2.87497 -119.475 -2.87497 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0218039 0.0192666 116 -1 96 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 5.42 vpr 64.91 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33708 -1 -1 33 32 0 0 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 66468 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 26.7 MiB 0.38 873 19633 6384 9822 3427 64.9 MiB 0.16 0.00 3.37316 -113.592 -3.37316 3.37316 0.94 0.000582235 0.000530746 0.053633 0.0488968 32 3026 46 6.65987e+06 418374 554710. 1919.41 1.92 0.182684 0.160624 22834 132086 -1 2193 22 1952 2990 265433 61346 4.05203 4.05203 -146.846 -4.05203 0 0 701300. 2426.64 0.29 0.09 0.13 -1 -1 0.29 0.0273328 0.0241806 150 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.21 vpr 65.05 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34040 -1 -1 21 32 0 0 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 66608 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 26.4 MiB 0.27 836 11803 3439 7281 1083 65.0 MiB 0.12 0.00 3.37836 -114.253 -3.37836 3.37836 0.89 0.000550694 0.00050322 0.0368711 0.0337534 32 2505 26 6.65987e+06 266238 554710. 1919.41 1.00 0.113139 0.100153 22834 132086 -1 1986 23 2273 3493 223820 57061 3.83283 3.83283 -146.358 -3.83283 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.029836 0.026572 157 62 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 64.50 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33976 -1 -1 29 32 0 0 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 66044 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 25.7 MiB 0.23 882 17313 5947 9030 2336 64.5 MiB 0.13 0.00 2.72758 -89.4265 -2.72758 2.72758 0.97 0.000451181 0.000410714 0.0394515 0.0359128 28 1990 20 6.65987e+06 367662 500653. 1732.36 0.97 0.0976717 0.0863481 21970 115934 -1 1766 22 1100 1700 136516 32000 2.66025 2.66025 -105.307 -2.66025 0 0 612192. 2118.31 0.26 0.06 0.12 -1 -1 0.26 0.0224321 0.0198218 111 47 32 32 54 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.14 vpr 64.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33764 -1 -1 18 31 0 0 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 66120 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 25.9 MiB 0.11 866 13381 4040 7461 1880 64.6 MiB 0.10 0.00 2.7317 -96.1605 -2.7317 2.7317 0.96 0.000426161 0.000389238 0.0349493 0.032017 32 2071 24 6.65987e+06 228204 554710. 1919.41 0.97 0.0920896 0.0815733 22834 132086 -1 1857 20 1367 2133 169724 38707 2.94197 2.94197 -116.157 -2.94197 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0195607 0.0174126 118 -1 93 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.32 vpr 64.85 MiB 0.03 7348 -1 -1 1 0.03 -1 -1 33604 -1 -1 32 32 0 0 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 66408 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 26.2 MiB 0.31 1021 6666 1326 4871 469 64.9 MiB 0.07 0.00 3.1709 -105.975 -3.1709 3.1709 0.97 0.000535427 0.000487187 0.0194365 0.0177885 26 2496 23 6.65987e+06 405696 477104. 1650.88 0.99 0.090933 0.0797472 21682 110474 -1 2185 23 1675 2497 183141 41998 3.48611 3.48611 -129.612 -3.48611 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0276264 0.0245312 138 56 60 32 58 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.99 vpr 64.82 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33608 -1 -1 30 32 0 0 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 66376 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 26.6 MiB 0.26 1096 9892 2319 6657 916 64.8 MiB 0.10 0.00 3.39104 -106.86 -3.39104 3.39104 0.97 0.000564591 0.000519958 0.0292741 0.0267925 26 2809 50 6.65987e+06 380340 477104. 1650.88 1.67 0.134208 0.118184 21682 110474 -1 2348 21 1527 2547 238284 57259 3.87985 3.87985 -135.797 -3.87985 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0258177 0.0228544 134 81 28 28 88 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.48 vpr 64.64 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 33980 -1 -1 35 32 0 0 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 66196 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 26.5 MiB 0.07 1311 12639 3746 7797 1096 64.6 MiB 0.13 0.00 3.85936 -131.205 -3.85936 3.85936 0.91 0.000588232 0.000538551 0.0354601 0.0324906 28 3436 23 6.65987e+06 443730 500653. 1732.36 1.41 0.118998 0.105966 21970 115934 -1 2946 23 2274 3666 288079 63728 4.53837 4.53837 -163.093 -4.53837 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0298836 0.0265717 177 -1 156 32 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.31 vpr 65.14 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 34208 -1 -1 32 30 0 0 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 66700 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 26.4 MiB 0.29 852 10531 2468 6673 1390 65.1 MiB 0.11 0.00 2.92804 -87.4282 -2.92804 2.92804 0.92 0.000513148 0.000467898 0.0290033 0.026446 32 2323 23 6.65987e+06 405696 554710. 1919.41 1.00 0.0963042 0.0846947 22834 132086 -1 1889 19 1544 2365 158330 39083 3.09011 3.09011 -111.13 -3.09011 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0228886 0.02035 136 47 60 30 56 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.99 vpr 64.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 34348 -1 -1 20 27 0 0 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 65632 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 25.6 MiB 0.12 815 13261 4493 6919 1849 64.1 MiB 0.09 0.00 2.6767 -81.2154 -2.6767 2.6767 0.93 0.000411946 0.000376661 0.0341408 0.0312725 32 1591 23 6.65987e+06 253560 554710. 1919.41 0.92 0.0867936 0.0767994 22834 132086 -1 1429 18 959 1370 92178 22095 2.67357 2.67357 -94.797 -2.67357 0 0 701300. 2426.64 0.29 0.04 0.14 -1 -1 0.29 0.0176278 0.015649 107 26 54 27 27 27 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 12.22 vpr 65.18 MiB 0.02 7548 -1 -1 1 0.04 -1 -1 33976 -1 -1 40 32 0 0 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 66748 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 26.9 MiB 0.20 1354 11328 2738 7936 654 65.2 MiB 0.12 0.00 3.43804 -112.167 -3.43804 3.43804 0.93 0.000724319 0.000659879 0.0328116 0.0299022 36 3326 24 6.65987e+06 507120 612192. 2118.31 8.88 0.296555 0.258947 23410 145293 -1 2722 24 2109 3851 268375 59549 3.71631 3.71631 -139.357 -3.71631 0 0 782063. 2706.10 0.33 0.10 0.14 -1 -1 0.33 0.0345417 0.0306752 184 85 62 31 95 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.26 vpr 65.23 MiB 0.02 7272 -1 -1 1 0.04 -1 -1 33888 -1 -1 21 31 0 0 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 66796 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 26.5 MiB 0.38 929 6123 1394 4376 353 65.2 MiB 0.07 0.00 3.51179 -107.602 -3.51179 3.51179 0.88 0.000581608 0.000532014 0.0222837 0.0204898 28 2557 23 6.65987e+06 266238 500653. 1732.36 1.01 0.10504 0.0929267 21970 115934 -1 2059 21 1451 2267 164003 37748 3.65231 3.65231 -136.756 -3.65231 0 0 612192. 2118.31 0.25 0.07 0.10 -1 -1 0.25 0.0286503 0.0255808 144 105 0 0 124 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.24 vpr 64.63 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33716 -1 -1 16 32 0 0 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 66180 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 25.8 MiB 0.31 838 9368 2497 6439 432 64.6 MiB 0.09 0.00 2.71178 -89.3198 -2.71178 2.71178 0.92 0.000498218 0.000453359 0.0293082 0.0268109 32 2067 22 6.65987e+06 202848 554710. 1919.41 0.97 0.0936865 0.0825076 22834 132086 -1 1784 20 1068 1648 148491 33260 2.85991 2.85991 -111.673 -2.85991 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0224895 0.0198893 109 86 0 0 89 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.05 vpr 64.83 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33760 -1 -1 32 32 0 0 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 66384 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 26.2 MiB 0.10 1147 11703 3012 7514 1177 64.8 MiB 0.11 0.00 3.45859 -111.897 -3.45859 3.45859 0.92 0.000544195 0.000496583 0.0301885 0.0276125 30 2293 18 6.65987e+06 405696 526063. 1820.29 0.94 0.0942033 0.0831913 22546 126617 -1 2118 22 1301 2032 124385 28262 3.50517 3.50517 -130.557 -3.50517 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0254673 0.0226131 146 31 90 30 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.31 vpr 64.95 MiB 0.02 7496 -1 -1 1 0.04 -1 -1 34336 -1 -1 36 31 0 0 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 66508 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 26.8 MiB 0.15 1164 14007 3953 8601 1453 64.9 MiB 0.14 0.00 3.34904 -108.149 -3.34904 3.34904 0.96 0.000622443 0.000567923 0.0406641 0.0371636 32 2619 23 6.65987e+06 456408 554710. 1919.41 1.00 0.119442 0.105554 22834 132086 -1 2374 21 1929 2858 212743 49462 3.60131 3.60131 -134.237 -3.60131 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0295142 0.0262575 171 50 87 31 62 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.72 vpr 65.31 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34212 -1 -1 33 30 0 0 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 66876 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 26.5 MiB 0.13 1047 10463 2875 6751 837 65.3 MiB 0.10 0.00 2.89104 -91.5915 -2.89104 2.89104 0.95 0.000524306 0.00047823 0.0281921 0.0257891 26 2759 18 6.65987e+06 418374 477104. 1650.88 1.58 0.100368 0.0890004 21682 110474 -1 2296 20 1359 2451 198172 43238 2.99011 2.99011 -110.507 -2.99011 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0237219 0.0209712 134 50 58 30 58 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.78 vpr 64.77 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34028 -1 -1 42 32 0 0 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 66320 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 26.4 MiB 0.27 1201 18106 5117 10567 2422 64.8 MiB 0.16 0.00 3.4773 -121.155 -3.4773 3.4773 0.95 0.000592612 0.000529619 0.0434547 0.0395765 28 2936 23 6.65987e+06 532476 500653. 1732.36 1.37 0.121649 0.107491 21970 115934 -1 2432 22 2004 3418 265933 57809 3.59057 3.59057 -140.993 -3.59057 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0281848 0.0249497 157 61 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.44 vpr 64.70 MiB 0.02 7396 -1 -1 1 0.03 -1 -1 34140 -1 -1 38 32 0 0 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 66256 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 26.4 MiB 0.26 1059 16286 4227 9665 2394 64.7 MiB 0.14 0.00 2.67164 -96.406 -2.67164 2.67164 0.94 0.000567181 0.000517182 0.0421355 0.0384485 32 2427 25 6.65987e+06 481764 554710. 1919.41 1.04 0.118594 0.10475 22834 132086 -1 2102 25 1693 2540 187278 44411 2.78671 2.78671 -116.651 -2.78671 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0295151 0.0260164 155 61 63 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.86 vpr 64.23 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33744 -1 -1 16 29 0 0 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 65768 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 25.7 MiB 0.12 501 12791 3242 7910 1639 64.2 MiB 0.08 0.00 3.0383 -84.7632 -3.0383 3.0383 0.88 0.000406994 0.00037113 0.0342852 0.0314221 30 1555 27 6.65987e+06 202848 526063. 1820.29 0.94 0.0927229 0.0820218 22546 126617 -1 1149 19 739 1082 69513 17123 2.64337 2.64337 -95.7239 -2.64337 0 0 666494. 2306.21 0.27 0.04 0.11 -1 -1 0.27 0.0174501 0.0154899 93 28 58 29 29 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.25 vpr 64.79 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34064 -1 -1 17 32 0 0 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 66344 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 26.0 MiB 0.32 804 12331 3861 6416 2054 64.8 MiB 0.09 0.00 2.97218 -85.5063 -2.97218 2.97218 0.89 0.000385189 0.00035337 0.0325473 0.0297923 28 1960 24 6.65987e+06 215526 500653. 1732.36 1.11 0.100251 0.0888013 21970 115934 -1 1636 17 899 1220 96454 22618 2.81791 2.81791 -104.576 -2.81791 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.0182951 0.0163378 111 79 0 0 82 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 7.19 vpr 64.93 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 34104 -1 -1 37 31 0 0 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 66492 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 26.6 MiB 0.13 1045 13092 3525 8663 904 64.9 MiB 0.12 0.00 3.57824 -112.58 -3.57824 3.57824 0.93 0.000537548 0.000490101 0.0320304 0.0292622 28 2491 31 6.65987e+06 469086 500653. 1732.36 4.03 0.180381 0.158016 21970 115934 -1 2279 22 1722 2775 212026 48126 3.82457 3.82457 -136.527 -3.82457 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0258212 0.0228988 150 29 93 31 31 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.03 vpr 64.72 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33888 -1 -1 31 29 0 0 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 66272 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 26.1 MiB 0.30 790 16859 4749 10321 1789 64.7 MiB 0.12 0.00 2.86104 -80.1683 -2.86104 2.86104 0.88 0.00041874 0.000382151 0.0361703 0.0330739 26 1866 22 6.65987e+06 393018 477104. 1650.88 0.85 0.0905269 0.0800359 21682 110474 -1 1655 25 1105 1722 123102 29320 2.72945 2.72945 -101.003 -2.72945 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0226936 0.019975 108 48 29 29 52 26 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.18 vpr 64.83 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33752 -1 -1 16 32 0 0 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 66388 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 26.0 MiB 0.21 899 14356 4505 7887 1964 64.8 MiB 0.12 0.00 2.7929 -100.752 -2.7929 2.7929 0.95 0.000461325 0.000420676 0.0417059 0.0381875 30 1976 21 6.65987e+06 202848 526063. 1820.29 0.95 0.102264 0.0906714 22546 126617 -1 1680 16 1032 1656 85849 21044 2.87877 2.87877 -119.131 -2.87877 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.018139 0.0162029 119 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.18 vpr 64.96 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33812 -1 -1 36 31 0 0 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 66516 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 26.4 MiB 0.22 978 12639 3240 8418 981 65.0 MiB 0.11 0.00 2.7739 -97.576 -2.7739 2.7739 0.93 0.000537496 0.000490639 0.0335903 0.0306051 26 2333 19 6.65987e+06 456408 477104. 1650.88 0.98 0.104712 0.092465 21682 110474 -1 2022 19 1540 2146 145965 34401 2.93897 2.93897 -118.169 -2.93897 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0241868 0.021526 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.66 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33824 -1 -1 16 31 0 0 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 66216 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 25.9 MiB 0.32 844 11740 3321 6720 1699 64.7 MiB 0.09 0.00 2.49487 -81.8696 -2.49487 2.49487 0.92 0.000439383 0.000401657 0.0326961 0.0299135 32 1776 19 6.65987e+06 202848 554710. 1919.41 0.91 0.0878393 0.0776068 22834 132086 -1 1672 19 947 1580 123020 27938 2.46805 2.46805 -98.9533 -2.46805 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0195018 0.0173225 105 49 31 31 53 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.44 vpr 64.98 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34208 -1 -1 32 32 0 0 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 66544 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 26.3 MiB 0.24 946 12141 3259 8024 858 65.0 MiB 0.11 0.00 2.6767 -90.0875 -2.6767 2.6767 0.93 0.000546611 0.000494405 0.0315578 0.0287024 26 2634 36 6.65987e+06 405696 477104. 1650.88 4.24 0.192519 0.16815 21682 110474 -1 2083 18 1130 2027 169453 35941 2.90797 2.90797 -111.767 -2.90797 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0223168 0.0198258 136 56 52 26 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.90 vpr 65.46 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33860 -1 -1 36 31 0 0 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 67036 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 26.7 MiB 0.72 1011 17883 5036 10585 2262 65.5 MiB 0.16 0.00 3.0233 -98.7764 -3.0233 3.0233 0.95 0.000572983 0.000521768 0.0483065 0.0437696 32 2256 24 6.65987e+06 456408 554710. 1919.41 1.02 0.124433 0.109857 22834 132086 -1 2014 22 1731 2471 198347 45002 3.04917 3.04917 -115.488 -3.04917 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0282363 0.0249908 148 88 31 31 92 31 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.05 vpr 64.54 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33796 -1 -1 18 32 0 0 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 66084 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 25.7 MiB 0.19 917 12186 3429 7615 1142 64.5 MiB 0.10 0.00 2.31427 -87.1458 -2.31427 2.31427 0.92 0.000436068 0.000397042 0.0335197 0.0306383 32 2090 21 6.65987e+06 228204 554710. 1919.41 0.90 0.0924857 0.0819012 22834 132086 -1 1875 19 1233 1927 150119 34040 2.84785 2.84785 -109.842 -2.84785 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0205505 0.0183011 115 54 32 32 60 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.54 vpr 64.85 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33548 -1 -1 18 32 0 0 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 66404 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 26.2 MiB 0.29 662 8982 2019 5948 1015 64.8 MiB 0.07 0.00 2.66064 -90.3426 -2.66064 2.66064 0.96 0.000469056 0.000427095 0.0266057 0.0243111 32 2362 41 6.65987e+06 228204 554710. 1919.41 1.21 0.110653 0.097356 22834 132086 -1 1682 19 1292 2029 157251 40151 3.23651 3.23651 -122.354 -3.23651 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0219126 0.0195308 121 60 32 32 62 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.30 vpr 64.85 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34464 -1 -1 36 32 0 0 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 66408 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 26.6 MiB 0.15 955 10540 2529 7056 955 64.9 MiB 0.10 0.00 3.09964 -106.254 -3.09964 3.09964 0.95 0.000566758 0.000517372 0.0286368 0.0261898 32 2572 26 6.65987e+06 456408 554710. 1919.41 1.05 0.107658 0.0948651 22834 132086 -1 2037 23 2057 3084 217061 51409 3.44891 3.44891 -129.858 -3.44891 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0286692 0.0254209 154 49 64 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.41 vpr 64.90 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34172 -1 -1 32 29 0 0 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 66460 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 26.1 MiB 0.24 958 17733 5345 9524 2864 64.9 MiB 0.15 0.00 2.97204 -89.3553 -2.97204 2.97204 0.90 0.000512903 0.000466843 0.0465199 0.0424266 28 2220 22 6.65987e+06 405696 500653. 1732.36 1.18 0.119446 0.105892 21970 115934 -1 2009 20 1162 1813 130472 29612 2.85091 2.85091 -105.513 -2.85091 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0234928 0.0207855 133 54 56 29 58 29 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.38 vpr 64.94 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 34324 -1 -1 37 32 0 0 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 66500 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 26.6 MiB 0.34 1045 16551 4912 9937 1702 64.9 MiB 0.14 0.00 3.12784 -111.5 -3.12784 3.12784 0.94 0.000663424 0.000601875 0.044513 0.0404543 28 2717 24 6.65987e+06 469086 500653. 1732.36 0.99 0.124115 0.109322 21970 115934 -1 2456 23 1961 3007 219700 50244 3.62231 3.62231 -142.325 -3.62231 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0299363 0.0263474 156 117 0 0 128 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.04 vpr 64.34 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33720 -1 -1 16 31 0 0 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 65884 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 25.9 MiB 0.11 850 12754 4829 6716 1209 64.3 MiB 0.10 0.00 2.32153 -82.6513 -2.32153 2.32153 0.92 0.000396317 0.000362495 0.0324568 0.0297165 32 1925 29 6.65987e+06 202848 554710. 1919.41 0.97 0.0890277 0.0785787 22834 132086 -1 1712 19 1047 1656 133985 30068 2.74571 2.74571 -100.889 -2.74571 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0182967 0.0162758 105 -1 85 31 0 0 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.09 vpr 65.10 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33676 -1 -1 33 32 0 0 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 66660 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 26.5 MiB 0.17 907 20299 6652 10637 3010 65.1 MiB 0.16 0.00 3.3113 -108.057 -3.3113 3.3113 0.88 0.000543587 0.000496105 0.0520541 0.047493 32 2274 26 6.65987e+06 418374 554710. 1919.41 0.99 0.129957 0.115448 22834 132086 -1 1840 23 1592 2226 148079 37447 3.69077 3.69077 -123.452 -3.69077 0 0 701300. 2426.64 0.28 0.07 0.12 -1 -1 0.28 0.0276649 0.024546 142 89 28 28 92 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.21 vpr 64.89 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34036 -1 -1 16 32 0 0 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 66444 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 26.3 MiB 0.21 883 8164 2176 4729 1259 64.9 MiB 0.07 0.00 2.8021 -103.28 -2.8021 2.8021 0.93 0.000514231 0.000468958 0.0271851 0.0249006 32 2024 23 6.65987e+06 202848 554710. 1919.41 0.98 0.0967435 0.0852902 22834 132086 -1 1753 22 1427 2046 152106 35796 2.94697 2.94697 -123.077 -2.94697 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0258642 0.0229684 115 93 0 0 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.45 vpr 64.82 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33692 -1 -1 35 32 0 0 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 66372 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 26.5 MiB 0.26 903 15831 4529 8525 2777 64.8 MiB 0.13 0.00 2.63244 -90.4903 -2.63244 2.63244 0.96 0.000522298 0.000478376 0.0417741 0.0380269 32 2793 26 6.65987e+06 443730 554710. 1919.41 1.03 0.120625 0.106591 22834 132086 -1 2013 22 1535 2140 162910 40104 2.93671 2.93671 -115.456 -2.93671 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.027925 0.0247897 149 59 61 32 64 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.69 vpr 65.32 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34532 -1 -1 43 32 0 0 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 66884 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 27.0 MiB 0.34 1400 14781 3685 9299 1797 65.3 MiB 0.16 0.00 3.8601 -131.403 -3.8601 3.8601 0.90 0.000676153 0.000615425 0.0420009 0.0383517 30 3101 25 6.65987e+06 545154 526063. 1820.29 3.30 0.245699 0.215694 22546 126617 -1 2559 20 1904 3100 190587 43230 4.46497 4.46497 -159.614 -4.46497 0 0 666494. 2306.21 0.29 0.08 0.12 -1 -1 0.29 0.0320633 0.0286792 186 81 64 32 96 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.04 vpr 64.29 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33752 -1 -1 15 30 0 0 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 65832 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 25.7 MiB 0.22 462 11161 2795 7993 373 64.3 MiB 0.07 0.00 2.22258 -65.9871 -2.22258 2.22258 0.95 0.000378353 0.000345206 0.0275116 0.0251829 28 1300 22 6.65987e+06 190170 500653. 1732.36 0.92 0.0770205 0.0678443 21970 115934 -1 1122 21 679 918 62817 16775 1.90085 1.90085 -76.8879 -1.90085 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0174829 0.0154386 83 51 0 0 53 30 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.93 vpr 64.24 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 34028 -1 -1 16 30 0 0 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 65784 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 25.7 MiB 0.10 566 12362 4517 5865 1980 64.2 MiB 0.09 0.00 2.80784 -84.049 -2.80784 2.80784 0.92 0.000411943 0.000373497 0.0331624 0.0301628 32 1690 26 6.65987e+06 202848 554710. 1919.41 0.91 0.090694 0.0797041 22834 132086 -1 1317 23 1017 1502 119685 29391 2.73591 2.73591 -100.815 -2.73591 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0217617 0.0191749 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.65 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33664 -1 -1 18 32 0 0 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 66204 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 25.8 MiB 0.11 856 7914 1721 5841 352 64.7 MiB 0.08 0.00 2.7647 -98.1605 -2.7647 2.7647 0.91 0.000451027 0.000411981 0.0224585 0.0205634 32 2509 23 6.65987e+06 228204 554710. 1919.41 1.00 0.0830015 0.072926 22834 132086 -1 2079 21 1544 2654 211430 48096 3.06911 3.06911 -124.393 -3.06911 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0216652 0.0192021 126 31 64 32 32 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.10 vpr 64.27 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33904 -1 -1 34 25 0 0 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 65812 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 25.8 MiB 0.06 732 14371 4013 8517 1841 64.3 MiB 0.09 0.00 2.60564 -72.5529 -2.60564 2.60564 0.93 0.000339093 0.000310755 0.0284937 0.0260421 24 1884 36 6.65987e+06 431052 448715. 1552.65 1.15 0.0883466 0.0776131 21394 104001 -1 1649 22 1123 1782 158286 34955 2.79571 2.79571 -92.7809 -2.79571 0 0 554710. 1919.41 0.24 0.06 0.10 -1 -1 0.24 0.0191279 0.0169384 103 19 50 25 25 25 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.73 vpr 65.33 MiB 0.02 7364 -1 -1 1 0.04 -1 -1 34112 -1 -1 20 32 0 0 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 66896 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 26.7 MiB 0.24 885 15456 5239 7426 2791 65.3 MiB 0.14 0.00 3.17278 -99.6026 -3.17278 3.17278 0.93 0.000597698 0.000537375 0.0503972 0.0458387 30 2470 40 6.65987e+06 253560 526063. 1820.29 1.40 0.149559 0.132005 22546 126617 -1 1793 24 1554 2756 153562 37812 3.21865 3.21865 -120.591 -3.21865 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.0301433 0.026659 147 84 32 32 94 32 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.35 vpr 65.02 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34080 -1 -1 37 31 0 0 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 66576 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 26.7 MiB 0.22 1034 19356 5977 10738 2641 65.0 MiB 0.16 0.00 2.8611 -98.7746 -2.8611 2.8611 0.93 0.00059518 0.000526586 0.0517759 0.0469334 32 2227 24 6.65987e+06 469086 554710. 1919.41 1.00 0.128261 0.113177 22834 132086 -1 1993 22 1806 2761 189267 44602 2.95297 2.95297 -114.863 -2.95297 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0281714 0.0250222 146 88 29 29 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.84 vpr 65.88 MiB 0.02 7464 -1 -1 1 0.04 -1 -1 34232 -1 -1 25 32 0 0 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 67460 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 27.1 MiB 0.95 821 14543 6082 7972 489 65.9 MiB 0.12 0.00 3.15069 -114.339 -3.15069 3.15069 0.97 0.000591747 0.000540248 0.0460285 0.0419332 44 2878 42 6.95648e+06 361892 787024. 2723.27 3.53 0.202396 0.178001 27778 195446 -1 2022 24 1952 2928 251802 53598 4.24356 4.24356 -153.223 -4.24356 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0319193 0.0283106 84 80 32 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 20.90 vpr 65.86 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33704 -1 -1 14 30 0 0 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 67436 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 27.1 MiB 2.13 801 13036 4668 7201 1167 65.9 MiB 0.11 0.00 3.3213 -109.833 -3.3213 3.3213 0.97 0.000537471 0.000490672 0.0482802 0.0441088 40 2308 31 6.95648e+06 202660 706193. 2443.58 15.46 0.311168 0.27169 26914 176310 -1 2103 29 2259 3436 392819 105294 4.00966 4.00966 -144.182 -4.00966 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0371701 0.0329768 76 78 30 30 89 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.25 vpr 65.71 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34176 -1 -1 19 32 0 0 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 67288 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 27.1 MiB 0.78 714 15563 6433 8141 989 65.7 MiB 0.12 0.00 3.01749 -103.912 -3.01749 3.01749 0.98 0.000533435 0.000483827 0.0495884 0.0452553 46 2225 42 6.95648e+06 275038 828058. 2865.25 3.15 0.193358 0.170029 28066 200906 -1 1644 23 1453 2245 153846 36672 4.19166 4.19166 -135.622 -4.19166 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0266099 0.0235826 77 50 54 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 8.75 vpr 65.34 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34080 -1 -1 16 29 0 0 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 66908 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 27.0 MiB 0.41 701 12302 4730 6067 1505 65.3 MiB 0.10 0.00 3.3745 -105.716 -3.3745 3.3745 0.96 0.000501314 0.000456409 0.0404694 0.0370271 40 2573 42 6.95648e+06 231611 706193. 2443.58 5.15 0.184659 0.163416 26914 176310 -1 1857 24 1798 2643 233221 51623 4.24791 4.24791 -146.917 -4.24791 0 0 926341. 3205.33 0.33 0.08 0.15 -1 -1 0.33 0.0257783 0.0228843 75 25 87 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 20.11 vpr 65.59 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33640 -1 -1 13 32 0 0 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 67164 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 0.66 740 10346 3800 5137 1409 65.6 MiB 0.08 0.00 3.04139 -109.575 -3.04139 3.04139 0.98 0.000515405 0.000469412 0.0366057 0.0334967 50 2483 42 6.95648e+06 188184 902133. 3121.57 16.10 0.34094 0.297816 28642 213929 -1 1819 21 1857 3043 221363 55953 4.96416 4.96416 -157.526 -4.96416 0 0 1.08113e+06 3740.92 0.41 0.08 0.21 -1 -1 0.41 0.0256935 0.0228656 78 31 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 8.46 vpr 65.93 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33928 -1 -1 29 32 0 0 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 67508 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 27.2 MiB 0.38 936 15843 6030 7697 2116 65.9 MiB 0.11 0.00 2.5973 -99.0194 -2.5973 2.5973 0.94 0.000494655 0.000441928 0.042148 0.0383933 46 2375 23 6.95648e+06 419795 828058. 2865.25 4.87 0.212593 0.184811 28066 200906 -1 1965 21 1391 1978 160481 33626 3.18897 3.18897 -125.161 -3.18897 0 0 1.01997e+06 3529.29 0.38 0.07 0.18 -1 -1 0.38 0.0262375 0.0232125 89 61 63 32 63 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 12.87 vpr 65.07 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 34280 -1 -1 14 27 0 0 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 66632 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 26.7 MiB 4.55 434 10257 4313 5271 673 65.1 MiB 0.07 0.00 2.76796 -78.9994 -2.76796 2.76796 0.95 0.000396822 0.000362823 0.0287863 0.0263651 60 1063 46 6.95648e+06 202660 706193. 2443.58 5.01 0.182764 0.158031 30658 258169 -1 886 22 770 1198 74157 18560 2.88163 2.88163 -92.118 -2.88163 0 0 1.27783e+06 4421.56 0.47 0.05 0.26 -1 -1 0.47 0.0203713 0.0180341 54 26 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 8.02 vpr 65.27 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33848 -1 -1 17 31 0 0 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 66832 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 27.0 MiB 0.55 728 11776 3967 5858 1951 65.3 MiB 0.09 0.00 2.5203 -85.1903 -2.5203 2.5203 0.91 0.000469171 0.000429437 0.0342273 0.0314039 44 2363 25 6.95648e+06 246087 787024. 2723.27 4.42 0.211277 0.184561 27778 195446 -1 1716 24 1302 1924 136537 31963 3.39377 3.39377 -110.122 -3.39377 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0253492 0.0224903 77 -1 115 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 9.33 vpr 65.36 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33736 -1 -1 11 31 0 0 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 66928 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 26.9 MiB 1.77 644 9684 3986 5373 325 65.4 MiB 0.07 0.00 2.60155 -83.9401 -2.60155 2.60155 0.97 0.000467331 0.00042467 0.0322859 0.029527 40 1896 37 6.95648e+06 159232 706193. 2443.58 4.37 0.206971 0.179392 26914 176310 -1 1552 21 1018 1512 147923 31625 3.26842 3.26842 -112.927 -3.26842 0 0 926341. 3205.33 0.37 0.06 0.17 -1 -1 0.37 0.0234274 0.020676 57 81 0 0 84 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.51 vpr 65.30 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 33724 -1 -1 10 32 0 0 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 66864 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 26.8 MiB 0.87 850 10304 3583 5316 1405 65.3 MiB 0.08 0.00 2.44885 -101.934 -2.44885 2.44885 0.95 0.000460247 0.000420393 0.0333607 0.0305433 36 2451 49 6.95648e+06 144757 648988. 2245.63 2.49 0.138956 0.122114 26050 158493 -1 2093 23 1623 2294 254746 48179 3.11192 3.11192 -134.418 -3.11192 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0242921 0.0215528 62 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 10.67 vpr 65.41 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33380 -1 -1 12 30 0 0 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 66980 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 26.7 MiB 1.84 570 11854 4983 6385 486 65.4 MiB 0.09 0.00 2.7336 -94.0706 -2.7336 2.7336 0.97 0.000467208 0.000425673 0.038271 0.0350165 38 1968 43 6.95648e+06 173708 678818. 2348.85 5.67 0.255007 0.220747 26626 170182 -1 1435 22 1363 1820 145885 33092 3.32527 3.32527 -121.958 -3.32527 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0227596 0.020117 60 58 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.45 vpr 65.46 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33796 -1 -1 12 32 0 0 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 67028 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 26.7 MiB 0.83 605 9516 3899 5309 308 65.5 MiB 0.07 0.00 2.47995 -88.4697 -2.47995 2.47995 0.96 0.000469 0.000425762 0.0312316 0.0285705 52 1802 34 6.95648e+06 173708 926341. 3205.33 5.26 0.192374 0.166952 29218 227130 -1 1270 31 1405 1965 243106 110840 2.92267 2.92267 -108.287 -2.92267 0 0 1.14541e+06 3963.36 0.45 0.11 0.22 -1 -1 0.45 0.0310991 0.0274271 60 57 25 25 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.78 vpr 65.96 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34016 -1 -1 21 32 0 0 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 67544 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 27.2 MiB 1.29 804 11989 3516 6698 1775 66.0 MiB 0.10 0.00 2.58515 -96.0727 -2.58515 2.58515 0.96 0.000544352 0.00048973 0.0382246 0.0349949 44 2384 44 6.95648e+06 303989 787024. 2723.27 3.20 0.188509 0.165873 27778 195446 -1 1623 20 1585 2355 160965 39555 3.48802 3.48802 -126.013 -3.48802 0 0 997811. 3452.63 0.37 0.07 0.20 -1 -1 0.37 0.0246202 0.0219078 79 55 64 32 57 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 9.36 vpr 65.96 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33832 -1 -1 26 32 0 0 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 67540 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 27.1 MiB 0.86 1028 16572 5695 8702 2175 66.0 MiB 0.13 0.00 3.13369 -120.181 -3.13369 3.13369 0.93 0.000503432 0.000456168 0.0462826 0.0418747 46 2483 41 6.95648e+06 376368 828058. 2865.25 5.28 0.254683 0.221429 28066 200906 -1 2037 19 1901 2672 202311 41283 3.82666 3.82666 -147.39 -3.82666 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0238868 0.0212188 87 60 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 6.52 vpr 64.87 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33880 -1 -1 13 29 0 0 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 66428 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 26.5 MiB 1.22 530 10769 4146 5206 1417 64.9 MiB 0.07 0.00 2.64555 -79.3918 -2.64555 2.64555 0.94 0.000396623 0.000362494 0.03052 0.0279036 38 1612 28 6.95648e+06 188184 678818. 2348.85 2.20 0.127983 0.111792 26626 170182 -1 1130 24 922 1366 79802 21483 2.96972 2.96972 -101.085 -2.96972 0 0 902133. 3121.57 0.35 0.05 0.16 -1 -1 0.35 0.0218518 0.0193025 58 21 58 29 24 24 - fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 7.14 vpr 65.65 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33804 -1 -1 13 32 0 0 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 67224 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 1.59 705 12465 5325 6553 587 65.6 MiB 0.10 0.00 2.6493 -97.6614 -2.6493 2.6493 0.91 0.000530967 0.000477125 0.0440366 0.0403706 62 1766 22 6.95648e+06 188184 1.05005e+06 3633.38 2.29 0.16971 0.149993 30946 263737 -1 1439 21 1634 2597 160611 39573 3.39747 3.39747 -119.763 -3.39747 0 0 1.30136e+06 4502.97 0.47 0.07 0.24 -1 -1 0.47 0.0258241 0.022969 77 60 64 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 15.20 vpr 65.84 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33952 -1 -1 20 32 0 0 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 67416 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 27.1 MiB 1.40 686 12528 5195 6879 454 65.8 MiB 0.09 0.00 2.5613 -93.2731 -2.5613 2.5613 0.95 0.000544052 0.000495389 0.0404103 0.0368737 46 1979 41 6.95648e+06 289514 828058. 2865.25 10.52 0.339805 0.294974 28066 200906 -1 1547 23 1569 2129 158736 37943 3.22927 3.22927 -123.46 -3.22927 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0279625 0.0247741 78 54 64 32 56 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 7.05 vpr 65.45 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33732 -1 -1 20 32 0 0 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 67016 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 26.7 MiB 0.80 648 11247 2743 6766 1738 65.4 MiB 0.08 0.00 2.16806 -80.6802 -2.16806 2.16806 0.95 0.00048151 0.000439874 0.0328208 0.030012 36 2219 41 6.95648e+06 289514 648988. 2245.63 3.17 0.161768 0.141703 26050 158493 -1 1727 19 1149 1575 142372 30335 2.53233 2.53233 -107.042 -2.53233 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0206637 0.0182931 67 62 29 29 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.50 vpr 64.80 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 33608 -1 -1 10 30 0 0 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 66352 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 26.4 MiB 0.39 461 11098 4857 5881 360 64.8 MiB 0.06 0.00 1.84156 -64.8609 -1.84156 1.84156 0.97 0.000332081 0.000299165 0.0271876 0.0247943 36 1485 27 6.95648e+06 144757 648988. 2245.63 2.04 0.110886 0.0966547 26050 158493 -1 1191 22 820 1070 119557 25745 2.39118 2.39118 -89.1625 -2.39118 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0168944 0.0148577 45 29 24 24 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.80 vpr 65.29 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33904 -1 -1 11 31 0 0 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 66860 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 26.8 MiB 1.24 610 9064 3725 5028 311 65.3 MiB 0.07 0.00 3.35745 -111.504 -3.35745 3.35745 0.95 0.000475523 0.00043268 0.0303713 0.0277619 40 2132 43 6.95648e+06 159232 706193. 2443.58 2.41 0.152164 0.13255 26914 176310 -1 1659 23 1190 1623 149503 35509 3.60442 3.60442 -137.239 -3.60442 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0243258 0.0214459 61 55 31 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 16.10 vpr 65.90 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33928 -1 -1 21 32 0 0 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 67484 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 27.2 MiB 0.45 713 13849 4387 7350 2112 65.9 MiB 0.10 0.00 3.10369 -107.562 -3.10369 3.10369 0.94 0.000515435 0.000470067 0.0409509 0.0374298 40 2677 40 6.95648e+06 303989 706193. 2443.58 12.47 0.29021 0.252323 26914 176310 -1 1996 23 1876 2469 228053 51396 4.04136 4.04136 -149.812 -4.04136 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0266725 0.0236584 81 31 91 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.11 vpr 66.20 MiB 0.02 7344 -1 -1 1 0.04 -1 -1 34192 -1 -1 27 32 0 0 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 67788 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 27.6 MiB 1.12 902 14167 5346 7312 1509 66.2 MiB 0.11 0.00 3.03469 -106.428 -3.03469 3.03469 0.97 0.000595861 0.000542072 0.0446721 0.0407869 44 2839 46 6.95648e+06 390843 787024. 2723.27 2.69 0.204737 0.179836 27778 195446 -1 2122 21 1557 2351 183761 38728 3.82516 3.82516 -135.253 -3.82516 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.027459 0.0242972 85 108 0 0 125 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.39 vpr 64.74 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34296 -1 -1 13 26 0 0 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 66296 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 26.4 MiB 1.07 345 8101 3454 4103 544 64.7 MiB 0.05 0.00 1.82136 -55.5569 -1.82136 1.82136 0.98 0.000319941 0.000292043 0.0193059 0.0176761 36 1333 36 6.95648e+06 188184 648988. 2245.63 2.28 0.101393 0.0883848 26050 158493 -1 929 17 552 661 58414 14496 2.06218 2.06218 -73.4393 -2.06218 0 0 828058. 2865.25 0.31 0.03 0.16 -1 -1 0.31 0.0133638 0.0118904 44 21 26 26 22 22 - fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 17.53 vpr 65.75 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33588 -1 -1 12 32 0 0 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 67332 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 27.1 MiB 0.91 787 10316 4293 5593 430 65.8 MiB 0.08 0.00 3.3371 -111.484 -3.3371 3.3371 0.92 0.000508114 0.000465236 0.0333822 0.0305898 52 2588 40 6.95648e+06 173708 926341. 3205.33 13.36 0.276251 0.240039 29218 227130 -1 1961 21 1724 2634 237828 54689 4.24177 4.24177 -146.942 -4.24177 0 0 1.14541e+06 3963.36 0.46 0.08 0.22 -1 -1 0.46 0.0256067 0.0228445 74 -1 122 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 10.27 vpr 64.74 MiB 0.02 6732 -1 -1 1 0.03 -1 -1 33656 -1 -1 8 32 0 0 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 66296 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.4 MiB 0.33 453 9608 4010 5372 226 64.7 MiB 0.06 0.00 1.77736 -64.4605 -1.77736 1.77736 0.97 0.000315745 0.000271737 0.0226239 0.0206239 44 1432 48 6.95648e+06 115805 787024. 2723.27 6.78 0.189273 0.164182 27778 195446 -1 1065 18 696 863 73170 17696 2.00918 2.00918 -81.777 -2.00918 0 0 997811. 3452.63 0.39 0.04 0.19 -1 -1 0.39 0.0144865 0.0129279 44 -1 53 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 7.22 vpr 65.57 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 34028 -1 -1 26 32 0 0 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 67148 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 26.9 MiB 0.54 819 16572 6261 8518 1793 65.6 MiB 0.13 0.00 3.17289 -115.548 -3.17289 3.17289 0.98 0.00056139 0.000507222 0.0476457 0.0435451 44 2732 50 6.95648e+06 376368 787024. 2723.27 3.34 0.198026 0.174025 27778 195446 -1 2040 22 1922 2864 247181 50800 3.94416 3.94416 -147.72 -3.94416 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.025441 0.0226147 85 21 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 8.11 vpr 65.50 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33868 -1 -1 28 32 0 0 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 67072 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 27.1 MiB 0.31 906 17066 6051 8260 2755 65.5 MiB 0.12 0.00 2.5943 -95.2184 -2.5943 2.5943 0.96 0.000505914 0.000461226 0.0434695 0.0397482 36 2839 32 6.95648e+06 405319 648988. 2245.63 4.59 0.166288 0.14597 26050 158493 -1 1994 28 1911 2737 300426 80298 3.29527 3.29527 -123.23 -3.29527 0 0 828058. 2865.25 0.32 0.11 0.16 -1 -1 0.32 0.0307862 0.0272145 87 -1 124 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.02 vpr 65.93 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34064 -1 -1 28 32 0 0 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 67512 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 27.2 MiB 0.40 990 18722 6187 10280 2255 65.9 MiB 0.15 0.00 3.16669 -114.834 -3.16669 3.16669 0.95 0.000470229 0.000429658 0.0528379 0.0482298 44 2975 41 6.95648e+06 405319 787024. 2723.27 3.32 0.194366 0.172171 27778 195446 -1 2297 22 1926 2944 239611 49015 3.96176 3.96176 -154.422 -3.96176 0 0 997811. 3452.63 0.40 0.09 0.19 -1 -1 0.40 0.0292282 0.0260989 87 54 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 11.25 vpr 65.09 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33976 -1 -1 10 32 0 0 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 66652 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 26.6 MiB 0.87 597 9839 4059 5540 240 65.1 MiB 0.07 0.00 2.5044 -84.6821 -2.5044 2.5044 0.91 0.000425792 0.000389997 0.0284761 0.0261227 36 2385 37 6.95648e+06 144757 648988. 2245.63 7.45 0.237825 0.208463 26050 158493 -1 1607 18 1127 1688 146098 32818 3.13392 3.13392 -118.298 -3.13392 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0192924 0.0172278 57 31 54 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.89 vpr 65.26 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 33692 -1 -1 12 30 0 0 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 66824 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 26.8 MiB 0.60 544 8599 3556 4710 333 65.3 MiB 0.06 0.00 2.6163 -91.8336 -2.6163 2.6163 0.97 0.000436558 0.000397874 0.026769 0.0244767 40 1897 28 6.95648e+06 173708 706193. 2443.58 2.13 0.130996 0.114587 26914 176310 -1 1519 19 1293 1753 163054 38911 3.52097 3.52097 -126.994 -3.52097 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0192847 0.0171189 60 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 6.26 vpr 65.29 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33940 -1 -1 13 28 0 0 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 66860 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 26.8 MiB 0.67 503 9801 3651 4757 1393 65.3 MiB 0.07 0.00 2.5894 -81.8143 -2.5894 2.5894 0.95 0.000406812 0.000370728 0.0284521 0.0260577 44 1847 44 6.95648e+06 188184 787024. 2723.27 2.46 0.136749 0.119329 27778 195446 -1 1193 17 1044 1544 105980 25856 3.09482 3.09482 -102.096 -3.09482 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0171657 0.0152915 61 27 56 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.74 vpr 65.16 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33820 -1 -1 10 32 0 0 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 66724 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.7 MiB 0.22 796 9529 3432 4135 1962 65.2 MiB 0.07 0.00 2.43165 -99.7583 -2.43165 2.43165 1.00 0.00128054 0.00124204 0.0309031 0.028391 40 2115 23 6.95648e+06 144757 706193. 2443.58 2.26 0.141838 0.125472 26914 176310 -1 1909 24 1682 2443 259936 50301 3.23112 3.23112 -130.728 -3.23112 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0245351 0.0218661 64 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 6.32 vpr 65.21 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33920 -1 -1 21 31 0 0 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 66780 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 26.7 MiB 0.22 631 11247 4617 6276 354 65.2 MiB 0.08 0.00 2.5943 -92.1818 -2.5943 2.5943 0.97 0.000446237 0.000405031 0.0300201 0.0273944 46 2001 28 6.95648e+06 303989 828058. 2865.25 2.85 0.136347 0.119051 28066 200906 -1 1548 20 1355 2024 156681 34870 2.95857 2.95857 -113.987 -2.95857 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0210648 0.0187233 68 26 61 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 7.38 vpr 65.38 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 34008 -1 -1 18 29 0 0 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 66952 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 26.9 MiB 0.79 634 9881 3405 4614 1862 65.4 MiB 0.07 0.00 2.00176 -71.2726 -2.00176 2.00176 0.95 0.000446692 0.000406211 0.0287412 0.0263104 36 2020 47 6.95648e+06 260562 648988. 2245.63 3.53 0.151989 0.132781 26050 158493 -1 1494 19 1053 1429 113217 25390 2.57443 2.57443 -97.0268 -2.57443 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0198795 0.017664 64 55 29 29 57 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 9.56 vpr 66.02 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34120 -1 -1 28 32 0 0 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 67604 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 27.4 MiB 0.75 923 14582 3951 9019 1612 66.0 MiB 0.13 0.00 3.20405 -114.714 -3.20405 3.20405 0.97 0.000606245 0.000554453 0.0455688 0.0417691 48 2785 22 6.95648e+06 405319 865456. 2994.66 5.37 0.247187 0.216363 28354 207349 -1 2312 20 2142 3330 305326 71238 4.62561 4.62561 -150.956 -4.62561 0 0 1.05005e+06 3633.38 0.41 0.10 0.20 -1 -1 0.41 0.0302605 0.0271959 100 26 128 32 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.97 vpr 65.96 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34084 -1 -1 27 32 0 0 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 67548 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 27.2 MiB 0.88 805 12943 4135 6872 1936 66.0 MiB 0.10 0.00 2.6866 -98.5167 -2.6866 2.6866 0.94 0.000560801 0.000510976 0.0369943 0.0338326 44 2555 34 6.95648e+06 390843 787024. 2723.27 2.78 0.17838 0.157066 27778 195446 -1 1781 24 1977 2915 222189 52359 3.39557 3.39557 -127.412 -3.39557 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0289533 0.025557 87 62 62 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 6.45 vpr 65.64 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 34052 -1 -1 15 31 0 0 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 67220 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 26.9 MiB 1.01 561 12860 5402 6962 496 65.6 MiB 0.09 0.00 2.76796 -90.4096 -2.76796 2.76796 0.92 0.000469504 0.00042849 0.0382303 0.0347404 48 1974 35 6.95648e+06 217135 865456. 2994.66 2.32 0.160571 0.141004 28354 207349 -1 1454 20 1132 1597 129009 32224 3.05407 3.05407 -112.534 -3.05407 0 0 1.05005e+06 3633.38 0.39 0.06 0.19 -1 -1 0.39 0.0226726 0.0201617 62 77 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.19 vpr 65.84 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 34104 -1 -1 14 31 0 0 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 67420 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 27.2 MiB 0.64 1007 13117 5109 6291 1717 65.8 MiB 0.11 0.00 2.5613 -97.7654 -2.5613 2.5613 0.95 0.000522314 0.000474318 0.0455351 0.0416491 38 2793 26 6.95648e+06 202660 678818. 2348.85 3.34 0.169658 0.148965 26626 170182 -1 2406 23 1959 2951 289976 55639 3.47707 3.47707 -130.513 -3.47707 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0272894 0.0241491 79 59 60 30 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 8.17 vpr 66.02 MiB 0.02 7356 -1 -1 1 0.04 -1 -1 34204 -1 -1 14 31 0 0 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 67608 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 2.03 811 11324 4767 6189 368 66.0 MiB 0.10 0.00 4.10349 -129.656 -4.10349 4.10349 0.96 0.000597641 0.000544562 0.0439337 0.040104 44 2743 44 6.95648e+06 202660 787024. 2723.27 2.88 0.198949 0.174034 27778 195446 -1 1875 22 1405 2060 158872 35332 4.26431 4.26431 -148.582 -4.26431 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0288817 0.025528 78 111 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 9.67 vpr 65.83 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 33788 -1 -1 13 31 0 0 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 67408 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 27.1 MiB 1.67 743 12716 4626 6236 1854 65.8 MiB 0.10 0.00 3.72384 -110.189 -3.72384 3.72384 0.97 0.000555337 0.000505429 0.0477346 0.0436008 40 2273 31 6.95648e+06 188184 706193. 2443.58 4.70 0.26689 0.232315 26914 176310 -1 1945 46 2496 4109 432086 120034 3.97596 3.97596 -141.479 -3.97596 0 0 926341. 3205.33 0.34 0.16 0.17 -1 -1 0.34 0.0482875 0.0420473 76 86 31 31 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 9.46 vpr 65.72 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 33996 -1 -1 25 31 0 0 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 67300 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 27.1 MiB 0.81 768 16078 5910 7600 2568 65.7 MiB 0.13 0.00 2.7086 -96.3394 -2.7086 2.7086 0.98 0.000561933 0.000512639 0.0488729 0.0446835 44 2511 22 6.95648e+06 361892 787024. 2723.27 5.29 0.262049 0.229514 27778 195446 -1 1872 21 1645 2481 188495 41081 3.32347 3.32347 -119.963 -3.32347 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0274804 0.0244565 85 58 60 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 8.96 vpr 65.70 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34276 -1 -1 26 32 0 0 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 67276 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 27.0 MiB 0.46 858 10542 3200 5418 1924 65.7 MiB 0.09 0.00 3.16669 -114.319 -3.16669 3.16669 0.95 0.00052062 0.000477418 0.0314138 0.0287341 44 2647 27 6.95648e+06 376368 787024. 2723.27 5.21 0.23374 0.202819 27778 195446 -1 2074 23 2047 3110 281642 58920 4.34686 4.34686 -153.985 -4.34686 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0286037 0.0254116 86 42 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 21.33 vpr 66.05 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 34088 -1 -1 31 32 0 0 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 67632 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 27.6 MiB 0.93 1105 14351 4218 7769 2364 66.0 MiB 0.11 0.00 3.32935 -122.578 -3.32935 3.32935 0.93 0.000583254 0.000531869 0.0445048 0.0404486 40 3072 23 6.95648e+06 448746 706193. 2443.58 17.19 0.360183 0.315927 26914 176310 -1 2765 24 2339 3564 367622 72231 4.48432 4.48432 -162.157 -4.48432 0 0 926341. 3205.33 0.35 0.12 0.16 -1 -1 0.35 0.0355468 0.0316068 104 91 62 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.41 vpr 65.30 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33724 -1 -1 11 31 0 0 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 66872 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 26.8 MiB 0.62 714 10924 4616 6074 234 65.3 MiB 0.08 0.00 2.84796 -101.361 -2.84796 2.84796 0.95 0.000440408 0.000401809 0.0334602 0.0306608 38 1964 25 6.95648e+06 159232 678818. 2348.85 2.66 0.134962 0.118133 26626 170182 -1 1650 23 1441 2064 186273 38541 3.26417 3.26417 -127.44 -3.26417 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.022939 0.0203163 62 24 62 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.01 vpr 65.92 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34196 -1 -1 27 31 0 0 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 67500 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 27.2 MiB 0.61 792 15768 5471 7642 2655 65.9 MiB 0.12 0.00 3.5328 -117.245 -3.5328 3.5328 0.97 0.00054438 0.000488673 0.0459302 0.0419226 44 2861 34 6.95648e+06 390843 787024. 2723.27 3.00 0.162963 0.144012 27778 195446 -1 2036 32 2348 3614 355974 99185 4.23372 4.23372 -147.482 -4.23372 0 0 997811. 3452.63 0.39 0.13 0.19 -1 -1 0.39 0.0371548 0.0327605 86 59 62 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.08 vpr 65.91 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 33920 -1 -1 26 32 0 0 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 67496 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 27.2 MiB 0.79 874 14562 5807 7956 799 65.9 MiB 0.12 0.00 2.79476 -99.3289 -2.79476 2.79476 0.98 0.000557484 0.00050123 0.0419074 0.0382053 46 2581 29 6.95648e+06 376368 828058. 2865.25 2.91 0.182886 0.160714 28066 200906 -1 2133 20 1707 2798 219517 46252 3.20297 3.20297 -122.976 -3.20297 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0258745 0.0230252 85 54 62 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 9.26 vpr 65.45 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33700 -1 -1 13 32 0 0 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 67016 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 0.87 780 7901 3179 4516 206 65.4 MiB 0.07 0.00 3.03039 -111.418 -3.03039 3.03039 0.91 0.000508366 0.000465014 0.02691 0.0247103 46 2797 35 6.95648e+06 188184 828058. 2865.25 5.30 0.233488 0.205362 28066 200906 -1 2182 22 1884 3178 283116 60777 4.42646 4.42646 -152.685 -4.42646 0 0 1.01997e+06 3529.29 0.38 0.09 0.18 -1 -1 0.38 0.0265998 0.0237794 78 -1 128 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 7.02 vpr 65.98 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33784 -1 -1 23 32 0 0 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 67564 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 1.53 810 12567 4232 6468 1867 66.0 MiB 0.10 0.00 2.5503 -93.7614 -2.5503 2.5503 0.95 0.000565436 0.000515992 0.0398756 0.0363683 46 2535 42 6.95648e+06 332941 828058. 2865.25 2.23 0.159914 0.139919 28066 200906 -1 1980 20 1627 2459 199553 45296 3.29047 3.29047 -120.509 -3.29047 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0254794 0.0226473 81 81 25 25 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 7.29 vpr 65.78 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33660 -1 -1 28 32 0 0 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 67356 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 27.1 MiB 0.81 765 13133 5265 6982 886 65.8 MiB 0.10 0.00 2.6023 -94.8681 -2.6023 2.6023 0.98 0.000550454 0.000500972 0.0382846 0.034963 46 2532 45 6.95648e+06 405319 828058. 2865.25 3.17 0.168494 0.14827 28066 200906 -1 1967 17 1467 2147 156659 36147 3.16997 3.16997 -123.582 -3.16997 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.0225834 0.0200929 85 58 64 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 8.42 vpr 65.85 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34224 -1 -1 28 32 0 0 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 67428 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 27.1 MiB 0.49 813 14996 4910 7841 2245 65.8 MiB 0.12 0.00 2.6646 -97.0268 -2.6646 2.6646 0.97 0.00058162 0.000527185 0.0445151 0.040523 40 2724 27 6.95648e+06 405319 706193. 2443.58 4.64 0.181176 0.159043 26914 176310 -1 2273 23 1922 2923 335973 86275 3.49087 3.49087 -133.938 -3.49087 0 0 926341. 3205.33 0.35 0.11 0.18 -1 -1 0.35 0.028167 0.0249095 88 61 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 9.66 vpr 65.82 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33752 -1 -1 28 32 0 0 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 67404 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 27.2 MiB 0.60 872 17687 6602 8809 2276 65.8 MiB 0.14 0.00 3.13369 -112.938 -3.13369 3.13369 0.98 0.000549734 0.000502238 0.0504069 0.0461158 46 2706 29 6.95648e+06 405319 828058. 2865.25 5.62 0.251411 0.221038 28066 200906 -1 2078 22 2022 3202 257203 53739 4.21356 4.21356 -148.471 -4.21356 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0282882 0.0251783 85 21 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 8.99 vpr 65.78 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34320 -1 -1 30 32 0 0 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 67356 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 27.1 MiB 0.89 991 12235 3165 7722 1348 65.8 MiB 0.09 0.00 3.15569 -118.857 -3.15569 3.15569 0.96 0.000585001 0.000536847 0.0344827 0.031546 38 2756 25 6.95648e+06 434271 678818. 2348.85 4.88 0.162714 0.142488 26626 170182 -1 2194 22 2007 2794 239037 47372 3.98196 3.98196 -152.981 -3.98196 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0274961 0.0243778 88 50 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 9.62 vpr 65.86 MiB 0.02 7488 -1 -1 1 0.03 -1 -1 34136 -1 -1 25 31 0 0 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 67444 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 27.1 MiB 1.20 802 11203 4314 6028 861 65.9 MiB 0.09 0.00 3.56395 -113.183 -3.56395 3.56395 0.94 0.000535829 0.000484236 0.0347308 0.0315791 44 2811 33 6.95648e+06 361892 787024. 2723.27 5.20 0.265838 0.230394 27778 195446 -1 2038 27 1880 3034 276492 57094 4.17286 4.17286 -140.206 -4.17286 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0318324 0.0278562 84 110 0 0 122 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.84 vpr 65.43 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 34052 -1 -1 13 32 0 0 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 67004 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 26.9 MiB 0.99 760 10998 4595 6060 343 65.4 MiB 0.09 0.00 3.21135 -108.802 -3.21135 3.21135 0.92 0.000566054 0.000516617 0.0408802 0.0373769 44 2942 39 6.95648e+06 188184 787024. 2723.27 2.71 0.203203 0.179525 27778 195446 -1 1953 26 1903 3214 248923 53754 4.05361 4.05361 -139.553 -4.05361 0 0 997811. 3452.63 0.38 0.09 0.17 -1 -1 0.38 0.0339055 0.0300239 78 86 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 6.71 vpr 65.18 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33924 -1 -1 23 32 0 0 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 66744 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 26.7 MiB 0.16 678 11031 4506 6217 308 65.2 MiB 0.08 0.00 2.7494 -97.9347 -2.7494 2.7494 0.95 0.000450455 0.000406254 0.0282797 0.0258212 46 2024 39 6.95648e+06 332941 828058. 2865.25 3.31 0.144724 0.126551 28066 200906 -1 1589 23 1270 1930 194644 48466 3.16087 3.16087 -116.873 -3.16087 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0229167 0.0202719 71 20 63 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 10.13 vpr 65.44 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 33700 -1 -1 10 32 0 0 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 67012 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 26.7 MiB 1.02 618 8599 3523 4772 304 65.4 MiB 0.07 0.00 2.5393 -92.5738 -2.5393 2.5393 0.98 0.000503066 0.00045762 0.0306294 0.0279911 54 1807 28 6.95648e+06 144757 949917. 3286.91 5.75 0.239711 0.208883 29506 232905 -1 1390 15 1176 1779 121299 28954 2.91452 2.91452 -114.374 -2.91452 0 0 1.17392e+06 4061.99 0.46 0.05 0.23 -1 -1 0.46 0.0196048 0.0175227 63 91 0 0 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 12.05 vpr 65.95 MiB 0.02 7408 -1 -1 1 0.04 -1 -1 33956 -1 -1 30 32 0 0 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 67532 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 27.6 MiB 0.57 1019 14365 4436 7392 2537 65.9 MiB 0.13 0.00 3.78264 -133.277 -3.78264 3.78264 0.98 0.000631074 0.000574805 0.0457909 0.0418233 46 3485 34 6.95648e+06 434271 828058. 2865.25 8.03 0.210986 0.186196 28066 200906 -1 2689 26 2863 4483 455045 95081 5.68321 5.68321 -184.043 -5.68321 0 0 1.01997e+06 3529.29 0.39 0.14 0.20 -1 -1 0.39 0.0373044 0.0331885 103 53 96 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.87 vpr 65.80 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34044 -1 -1 24 32 0 0 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 67380 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 27.1 MiB 0.88 774 11008 4223 5968 817 65.8 MiB 0.09 0.00 2.6445 -96.8324 -2.6445 2.6445 0.98 0.000526518 0.000481009 0.0330702 0.0301767 46 2261 27 6.95648e+06 347416 828058. 2865.25 2.71 0.162844 0.143169 28066 200906 -1 1641 21 1489 1952 157855 36431 3.38467 3.38467 -122.089 -3.38467 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0260684 0.0232226 83 31 92 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.65 vpr 65.20 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33448 -1 -1 19 30 0 0 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 66764 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 26.7 MiB 0.33 543 11631 3883 5678 2070 65.2 MiB 0.08 0.00 2.6426 -89.0254 -2.6426 2.6426 0.92 0.000428217 0.000391914 0.0308081 0.0282264 40 2125 41 6.95648e+06 275038 706193. 2443.58 3.25 0.156829 0.138208 26914 176310 -1 1534 23 1473 2117 200769 44529 3.10582 3.10582 -119.365 -3.10582 0 0 926341. 3205.33 0.34 0.07 0.16 -1 -1 0.34 0.0222302 0.0195565 65 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.47 vpr 66.05 MiB 0.02 7360 -1 -1 1 0.04 -1 -1 34264 -1 -1 31 32 0 0 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 67640 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 27.6 MiB 1.66 1217 13919 3928 9064 927 66.1 MiB 0.12 0.00 3.77644 -140.318 -3.77644 3.77644 0.95 0.000627906 0.000572444 0.0456477 0.0414446 46 3176 24 6.95648e+06 448746 828058. 2865.25 2.47 0.184966 0.162831 28066 200906 -1 2561 23 2655 4001 299603 59270 4.83731 4.83731 -181.593 -4.83731 0 0 1.01997e+06 3529.29 0.40 0.10 0.18 -1 -1 0.40 0.0358108 0.0318619 103 109 32 32 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.81 vpr 65.91 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34096 -1 -1 28 32 0 0 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 67492 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 27.2 MiB 1.02 809 12719 4510 6146 2063 65.9 MiB 0.10 0.00 3.18389 -114.936 -3.18389 3.18389 0.95 0.00052104 0.000473687 0.0352095 0.0321765 44 2314 27 6.95648e+06 405319 787024. 2723.27 2.54 0.15969 0.139841 27778 195446 -1 1811 24 2152 3037 236606 49575 3.75156 3.75156 -144.338 -3.75156 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.028197 0.0249358 86 31 96 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 9.05 vpr 65.29 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 33724 -1 -1 24 32 0 0 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 66852 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.7 MiB 0.30 662 14128 5255 7134 1739 65.3 MiB 0.09 0.00 2.55695 -94.825 -2.55695 2.55695 0.94 0.000429337 0.000392087 0.0334344 0.0305911 54 1692 28 6.95648e+06 347416 949917. 3286.91 5.43 0.193052 0.168089 29506 232905 -1 1493 21 1387 2157 183767 38578 3.29712 3.29712 -118.126 -3.29712 0 0 1.17392e+06 4061.99 0.45 0.07 0.24 -1 -1 0.45 0.0214357 0.0190629 70 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 29.59 vpr 65.62 MiB 0.02 7444 -1 -1 1 0.04 -1 -1 34440 -1 -1 31 32 0 0 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 67200 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 27.3 MiB 0.45 970 14999 5467 7393 2139 65.6 MiB 0.12 0.00 3.77644 -132.03 -3.77644 3.77644 0.96 0.000615577 0.000560827 0.0454997 0.041556 50 2983 49 6.95648e+06 448746 902133. 3121.57 25.68 0.380562 0.332404 28642 213929 -1 2411 22 2603 4231 376375 79776 4.93141 4.93141 -174.895 -4.93141 0 0 1.08113e+06 3740.92 0.42 0.12 0.21 -1 -1 0.42 0.0324618 0.0289828 105 26 128 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 8.22 vpr 65.19 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33604 -1 -1 10 32 0 0 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 66756 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.7 MiB 0.32 649 10149 4217 5741 191 65.2 MiB 0.07 0.00 2.42065 -93.7642 -2.42065 2.42065 0.91 0.000377661 0.000344448 0.0287675 0.026323 46 1981 21 6.95648e+06 144757 828058. 2865.25 4.82 0.171663 0.149078 28066 200906 -1 1577 22 1485 2048 172345 37598 2.95732 2.95732 -120.633 -2.95732 0 0 1.01997e+06 3529.29 0.40 0.07 0.19 -1 -1 0.40 0.0221038 0.0196473 62 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 14.46 vpr 65.27 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 34028 -1 -1 21 30 0 0 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 66832 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 26.7 MiB 0.78 576 13223 5537 7134 552 65.3 MiB 0.09 0.00 2.6756 -91.1593 -2.6756 2.6756 0.96 0.000449854 0.000410243 0.0353747 0.0323313 38 2033 42 6.95648e+06 303989 678818. 2348.85 10.55 0.255197 0.222341 26626 170182 -1 1584 21 1187 1772 152983 38583 3.03987 3.03987 -114.356 -3.03987 0 0 902133. 3121.57 0.33 0.06 0.17 -1 -1 0.33 0.0211331 0.0187809 65 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.51 vpr 65.71 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34040 -1 -1 20 29 0 0 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 67288 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 27.2 MiB 1.32 683 9531 2976 4366 2189 65.7 MiB 0.07 0.00 2.81496 -87.6537 -2.81496 2.81496 0.97 0.000554119 0.000496495 0.0319158 0.0291588 52 2214 42 6.95648e+06 289514 926341. 3205.33 2.85 0.173168 0.151444 29218 227130 -1 1431 22 1504 2356 143329 35538 3.15597 3.15597 -106.737 -3.15597 0 0 1.14541e+06 3963.36 0.44 0.07 0.22 -1 -1 0.44 0.0262604 0.0232848 77 81 29 29 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.41 vpr 65.90 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34060 -1 -1 13 32 0 0 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 67484 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 27.1 MiB 0.90 739 12302 4718 5894 1690 65.9 MiB 0.10 0.00 3.03039 -110.712 -3.03039 3.03039 0.93 0.000543556 0.000495919 0.0445714 0.0407926 46 1973 32 6.95648e+06 188184 828058. 2865.25 2.22 0.157755 0.138589 28066 200906 -1 1467 54 3443 4666 280735 65102 3.99436 3.99436 -145.915 -3.99436 0 0 1.01997e+06 3529.29 0.38 0.13 0.20 -1 -1 0.38 0.0544429 0.0474855 78 53 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 10.92 vpr 65.73 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34372 -1 -1 25 32 0 0 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 67304 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 27.0 MiB 1.40 981 14741 5848 7143 1750 65.7 MiB 0.12 0.00 3.10669 -116.582 -3.10669 3.10669 0.96 0.00055163 0.000501548 0.0462701 0.0422893 46 2710 50 6.95648e+06 361892 828058. 2865.25 6.14 0.290502 0.253462 28066 200906 -1 2252 23 2085 3266 405620 132287 3.58106 3.58106 -145.264 -3.58106 0 0 1.01997e+06 3529.29 0.39 0.13 0.20 -1 -1 0.39 0.0304704 0.0271571 85 55 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 16.37 vpr 65.67 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 34072 -1 -1 24 32 0 0 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 67244 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 26.9 MiB 1.03 614 12373 4754 6422 1197 65.7 MiB 0.09 0.00 2.49095 -91.8559 -2.49095 2.49095 0.97 0.000506572 0.000455681 0.034639 0.0315888 54 1733 28 6.95648e+06 347416 949917. 3286.91 11.92 0.28888 0.253585 29506 232905 -1 1274 23 1322 1994 136749 32944 3.26412 3.26412 -118.679 -3.26412 0 0 1.17392e+06 4061.99 0.46 0.07 0.23 -1 -1 0.46 0.0252257 0.022385 69 55 32 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.28 vpr 65.36 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 33800 -1 -1 10 31 0 0 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 66924 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 26.8 MiB 1.40 555 12841 5652 6775 414 65.4 MiB 0.09 0.00 2.80096 -90.8151 -2.80096 2.80096 0.93 0.000448264 0.000407359 0.0411011 0.0372734 44 1822 38 6.95648e+06 144757 787024. 2723.27 2.74 0.163388 0.142962 27778 195446 -1 1297 23 1238 1863 119860 31672 2.98713 2.98713 -109.593 -2.98713 0 0 997811. 3452.63 0.38 0.06 0.18 -1 -1 0.38 0.023771 0.020951 59 82 0 0 89 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.87 vpr 65.89 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34164 -1 -1 22 30 0 0 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 67476 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 27.2 MiB 0.94 972 12162 3550 7123 1489 65.9 MiB 0.10 0.00 2.6866 -101.351 -2.6866 2.6866 0.99 0.000506275 0.000460345 0.0373656 0.0341016 38 2483 48 6.95648e+06 318465 678818. 2348.85 4.72 0.257956 0.225313 26626 170182 -1 2125 22 1557 2283 175981 36529 3.42677 3.42677 -126.276 -3.42677 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0258856 0.0230544 79 52 60 30 57 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.12 vpr 65.30 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 34004 -1 -1 16 28 0 0 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 66868 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 26.7 MiB 0.95 710 10156 4488 5095 573 65.3 MiB 0.08 0.00 3.68925 -106.137 -3.68925 3.68925 0.96 0.000466074 0.000423694 0.0325423 0.0298036 44 2629 40 6.95648e+06 231611 787024. 2723.27 2.96 0.156021 0.136531 27778 195446 -1 1651 20 1428 2275 160288 36531 3.99117 3.99117 -130.417 -3.99117 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0220187 0.0195593 74 20 84 28 28 28 - fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 7.47 vpr 65.04 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34168 -1 -1 12 30 0 0 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 66600 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 26.6 MiB 0.81 543 9994 3063 5068 1863 65.0 MiB 0.07 0.00 2.5533 -87.468 -2.5533 2.5533 0.95 0.00046335 0.000421076 0.0320696 0.0292908 56 1341 45 6.95648e+06 173708 973134. 3367.25 3.34 0.171229 0.149243 29794 239141 -1 1056 20 1280 1780 127708 32039 3.01682 3.01682 -106.606 -3.01682 0 0 1.19926e+06 4149.71 0.44 0.06 0.24 -1 -1 0.44 0.0218031 0.0193554 61 58 30 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 8.01 vpr 65.25 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33828 -1 -1 10 32 0 0 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 66816 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 26.5 MiB 1.15 641 7979 3262 4540 177 65.2 MiB 0.06 0.00 2.5753 -88.9288 -2.5753 2.5753 0.91 0.000520961 0.000475702 0.0276919 0.0253417 38 2364 28 6.95648e+06 144757 678818. 2348.85 3.83 0.14843 0.129726 26626 170182 -1 1692 22 1226 1982 168903 36550 3.05412 3.05412 -115.249 -3.05412 0 0 902133. 3121.57 0.32 0.06 0.17 -1 -1 0.32 0.0223194 0.0197234 60 88 0 0 91 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 10.00 vpr 65.35 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 33940 -1 -1 25 31 0 0 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 66920 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 27.0 MiB 0.17 798 11398 4669 6178 551 65.4 MiB 0.09 0.00 3.25235 -112.691 -3.25235 3.25235 0.96 0.000512681 0.00046141 0.0322351 0.0294949 54 2229 29 6.95648e+06 361892 949917. 3286.91 6.45 0.24373 0.212738 29506 232905 -1 1790 23 1826 2778 199004 44647 3.98022 3.98022 -143.3 -3.98022 0 0 1.17392e+06 4061.99 0.44 0.07 0.23 -1 -1 0.44 0.0257364 0.0228299 86 -1 124 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 10.55 vpr 66.00 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34172 -1 -1 27 32 0 0 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 67580 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 27.2 MiB 1.16 832 15391 5152 8197 2042 66.0 MiB 0.12 0.00 3.15569 -112.385 -3.15569 3.15569 0.97 0.000557783 0.000508797 0.0457892 0.0418441 50 2704 50 6.95648e+06 390843 902133. 3121.57 6.00 0.277601 0.243041 28642 213929 -1 2224 19 1828 3077 282315 58643 3.97396 3.97396 -146.094 -3.97396 0 0 1.08113e+06 3740.92 0.41 0.09 0.21 -1 -1 0.41 0.0258178 0.0230572 86 57 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.93 vpr 65.89 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33776 -1 -1 26 32 0 0 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 67476 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 27.1 MiB 1.44 894 9738 3885 5604 249 65.9 MiB 0.08 0.00 3.16489 -114.407 -3.16489 3.16489 0.94 0.000554747 0.000508919 0.0297794 0.0272223 48 2704 30 6.95648e+06 376368 865456. 2994.66 3.19 0.166467 0.145249 28354 207349 -1 2318 21 1979 3093 341704 73217 4.21056 4.21056 -157.13 -4.21056 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.0268825 0.023924 85 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 6.79 vpr 65.75 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33824 -1 -1 27 32 0 0 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 67332 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 27.0 MiB 0.95 980 15799 6601 8813 385 65.8 MiB 0.13 0.00 3.13989 -111.639 -3.13989 3.13989 0.97 0.000562789 0.000513599 0.0458442 0.0418597 44 2769 41 6.95648e+06 390843 787024. 2723.27 2.51 0.190642 0.167581 27778 195446 -1 2054 20 1689 2777 201587 43032 3.76082 3.76082 -138.857 -3.76082 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0266381 0.0238119 86 62 60 30 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 9.60 vpr 65.27 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33740 -1 -1 12 30 0 0 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 66836 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 26.8 MiB 0.74 512 11544 4828 6067 649 65.3 MiB 0.08 0.00 2.79296 -91.2216 -2.79296 2.79296 0.98 0.000438446 0.000401556 0.036851 0.0337883 50 1626 42 6.95648e+06 173708 902133. 3121.57 5.54 0.23109 0.202639 28642 213929 -1 1251 24 1233 1863 135195 34250 3.22012 3.22012 -112.888 -3.22012 0 0 1.08113e+06 3740.92 0.42 0.06 0.21 -1 -1 0.42 0.0236532 0.0209145 62 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.96 vpr 65.79 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34020 -1 -1 15 30 0 0 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 67372 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 27.1 MiB 0.72 958 12139 3975 6529 1635 65.8 MiB 0.10 0.00 3.3885 -117.724 -3.3885 3.3885 0.92 0.000538645 0.000493996 0.0424533 0.0388894 38 2556 26 6.95648e+06 217135 678818. 2348.85 3.15 0.173475 0.153063 26626 170182 -1 2162 21 1782 2396 207555 41594 4.22886 4.22886 -152.072 -4.22886 0 0 902133. 3121.57 0.33 0.07 0.15 -1 -1 0.33 0.0253821 0.0224969 78 58 60 30 60 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 7.70 vpr 65.89 MiB 0.02 7488 -1 -1 1 0.04 -1 -1 33784 -1 -1 31 32 0 0 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 67472 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 27.3 MiB 1.35 851 15215 5964 8099 1152 65.9 MiB 0.12 0.00 3.17289 -114.676 -3.17289 3.17289 0.99 0.000603483 0.000546888 0.0455978 0.0414936 44 2813 35 6.95648e+06 448746 787024. 2723.27 2.97 0.177507 0.156215 27778 195446 -1 2129 23 2163 3503 280708 58081 4.24976 4.24976 -150.929 -4.24976 0 0 997811. 3452.63 0.38 0.10 0.19 -1 -1 0.38 0.0304581 0.0268676 88 106 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 9.71 vpr 65.99 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33744 -1 -1 22 31 0 0 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 67572 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 27.2 MiB 1.01 729 13663 5716 7401 546 66.0 MiB 0.11 0.00 3.3683 -111.686 -3.3683 3.3683 0.96 0.000576835 0.00052434 0.0462339 0.0421692 48 2220 44 6.95648e+06 318465 865456. 2994.66 5.38 0.265852 0.2317 28354 207349 -1 1824 25 1888 2855 237718 52794 3.87086 3.87086 -144.149 -3.87086 0 0 1.05005e+06 3633.38 0.39 0.09 0.20 -1 -1 0.39 0.030146 0.0266445 81 79 31 31 93 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 17.28 vpr 65.57 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33900 -1 -1 18 30 0 0 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 67140 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 27.1 MiB 1.65 767 9368 3067 4679 1622 65.6 MiB 0.08 0.00 2.73356 -89.5733 -2.73356 2.73356 0.98 0.000556049 0.000507341 0.0331696 0.0303769 40 2122 37 6.95648e+06 260562 706193. 2443.58 12.31 0.320359 0.279398 26914 176310 -1 1924 31 1873 2871 371762 119538 4.13943 4.13943 -142.341 -4.13943 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0349282 0.0305375 75 83 26 26 90 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 10.09 vpr 65.77 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34200 -1 -1 13 32 0 0 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 67348 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.0 MiB 1.40 821 12954 4673 6518 1763 65.8 MiB 0.11 0.00 3.04869 -111.4 -3.04869 3.04869 0.95 0.000553918 0.000505184 0.0471072 0.0430203 58 1934 23 6.95648e+06 188184 997811. 3452.63 5.25 0.260229 0.22664 30370 251734 -1 1719 21 1924 3143 220331 49236 3.90796 3.90796 -142.17 -3.90796 0 0 1.25153e+06 4330.55 0.46 0.08 0.26 -1 -1 0.46 0.0270734 0.0241195 81 58 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 16.56 vpr 65.79 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34060 -1 -1 22 29 0 0 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 67368 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 27.2 MiB 1.10 713 10343 4222 5547 574 65.8 MiB 0.08 0.00 2.5613 -84.1668 -2.5613 2.5613 0.95 0.000521169 0.000476605 0.0327582 0.0299397 40 2401 29 6.95648e+06 318465 706193. 2443.58 12.25 0.277414 0.240611 26914 176310 -1 1897 26 1840 2698 315089 83989 3.50187 3.50187 -118.302 -3.50187 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0289461 0.0254779 77 81 26 26 85 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 17.43 vpr 65.21 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33912 -1 -1 10 32 0 0 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 66780 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 26.7 MiB 0.99 569 10924 4578 5959 387 65.2 MiB 0.08 0.00 2.43165 -91.8424 -2.43165 2.43165 0.98 0.000442318 0.000403569 0.0333062 0.0304668 50 1970 41 6.95648e+06 144757 902133. 3121.57 13.14 0.289932 0.254014 28642 213929 -1 1494 21 1316 1962 183494 43136 3.31562 3.31562 -120.892 -3.31562 0 0 1.08113e+06 3740.92 0.42 0.07 0.20 -1 -1 0.42 0.0214581 0.0190531 61 -1 96 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.17 vpr 65.77 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34180 -1 -1 24 32 0 0 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 67352 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 27.0 MiB 3.19 854 15883 6769 8712 402 65.8 MiB 0.13 0.00 3.14769 -113.339 -3.14769 3.14769 0.98 0.000586461 0.0005354 0.049517 0.0452004 46 2482 26 6.95648e+06 347416 828058. 2865.25 3.62 0.186348 0.164222 28066 200906 -1 1846 23 2033 2985 225188 47767 3.93496 3.93496 -141.214 -3.93496 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.0287853 0.0255617 84 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 10.52 vpr 65.73 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33864 -1 -1 13 32 0 0 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 67308 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 27.0 MiB 0.56 739 11650 4849 6261 540 65.7 MiB 0.10 0.00 3.05859 -112.455 -3.05859 3.05859 1.00 0.000584705 0.000534897 0.0446471 0.0408779 58 2041 33 6.95648e+06 188184 997811. 3452.63 6.41 0.261344 0.229499 30370 251734 -1 1599 20 1854 2528 245284 55779 3.79246 3.79246 -139.719 -3.79246 0 0 1.25153e+06 4330.55 0.50 0.09 0.26 -1 -1 0.50 0.0283234 0.0253434 81 62 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 7.23 vpr 65.50 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34020 -1 -1 11 32 0 0 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 67068 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 26.8 MiB 1.08 643 9397 3894 5268 235 65.5 MiB 0.07 0.00 2.82405 -89.6255 -2.82405 2.82405 0.97 0.000456285 0.000414559 0.0295274 0.0270128 44 2051 32 6.95648e+06 159232 787024. 2723.27 2.88 0.143216 0.125305 27778 195446 -1 1526 33 1241 1772 273747 105036 3.30757 3.30757 -114.34 -3.30757 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.03106 0.0271947 60 47 32 32 54 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.49 vpr 65.34 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34004 -1 -1 11 31 0 0 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 66904 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.8 MiB 0.28 601 9839 4061 5483 295 65.3 MiB 0.07 0.00 2.6756 -95.1183 -2.6756 2.6756 0.96 0.000416309 0.000378858 0.0293225 0.026822 42 2050 45 6.95648e+06 159232 744469. 2576.02 2.03 0.138898 0.121009 27202 183097 -1 1600 21 1437 2026 169930 38153 3.29047 3.29047 -122.964 -3.29047 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0204893 0.0181579 63 -1 93 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.07 vpr 65.96 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33976 -1 -1 19 32 0 0 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 67540 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 27.2 MiB 1.23 651 15383 5748 6981 2654 66.0 MiB 0.11 0.00 3.07684 -102.249 -3.07684 3.07684 0.94 0.000521562 0.000475152 0.0480578 0.0438494 48 2124 32 6.95648e+06 275038 865456. 2994.66 2.56 0.175975 0.154127 28354 207349 -1 1799 20 1658 2245 211200 51777 3.73102 3.73102 -132.54 -3.73102 0 0 1.05005e+06 3633.38 0.40 0.08 0.20 -1 -1 0.40 0.0246151 0.0218704 78 56 60 32 58 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.13 vpr 65.82 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33780 -1 -1 18 32 0 0 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 67396 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 27.1 MiB 0.84 809 13254 4261 7068 1925 65.8 MiB 0.11 0.00 3.18505 -106.72 -3.18505 3.18505 0.97 0.000556109 0.000507413 0.044203 0.0404509 44 2441 44 6.95648e+06 260562 787024. 2723.27 4.97 0.27281 0.237269 27778 195446 -1 1812 23 1815 2645 187175 42711 4.29012 4.29012 -142.079 -4.29012 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0286689 0.0254319 78 81 28 28 88 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.72 vpr 66.10 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34108 -1 -1 27 32 0 0 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 67688 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.5 MiB 0.45 1088 4987 936 3750 301 66.1 MiB 0.06 0.00 3.73059 -133.914 -3.73059 3.73059 0.96 0.000571733 0.000522637 0.0171404 0.015774 46 3320 41 6.95648e+06 390843 828058. 2865.25 4.97 0.167901 0.146514 28066 200906 -1 2663 27 2358 3559 446716 101805 5.85681 5.85681 -187.744 -5.85681 0 0 1.01997e+06 3529.29 0.38 0.13 0.20 -1 -1 0.38 0.033927 0.0301163 100 -1 156 32 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 17.69 vpr 65.39 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33916 -1 -1 18 30 0 0 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 66960 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 26.7 MiB 1.01 707 14872 5728 6810 2334 65.4 MiB 0.11 0.00 2.89186 -95.2438 -2.89186 2.89186 0.99 0.000520087 0.0004739 0.0477889 0.043643 40 2464 25 6.95648e+06 260562 706193. 2443.58 13.41 0.32918 0.288135 26914 176310 -1 2065 21 1805 2656 241516 54127 3.52707 3.52707 -130.278 -3.52707 0 0 926341. 3205.33 0.33 0.08 0.17 -1 -1 0.33 0.0251085 0.0223233 77 47 60 30 56 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.17 vpr 65.17 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 34244 -1 -1 15 27 0 0 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 66732 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 26.8 MiB 0.65 522 9064 3748 4777 539 65.2 MiB 0.06 0.00 2.65656 -80.3489 -2.65656 2.65656 0.95 0.000393585 0.0003594 0.025452 0.0233142 34 2127 41 6.95648e+06 217135 618332. 2139.56 2.48 0.129398 0.112567 25762 151098 -1 1427 24 1330 1672 160683 40976 3.20292 3.20292 -112.242 -3.20292 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0211213 0.0185895 57 26 54 27 27 27 - fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 31.52 vpr 65.92 MiB 0.02 7512 -1 -1 1 0.04 -1 -1 34180 -1 -1 30 32 0 0 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 67504 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 27.5 MiB 0.66 1188 12661 3103 7787 1771 65.9 MiB 0.11 0.00 3.4105 -118.235 -3.4105 3.4105 0.95 0.000643117 0.00057865 0.0407317 0.0370274 44 3717 26 6.95648e+06 434271 787024. 2723.27 27.54 0.358102 0.313826 27778 195446 -1 2748 21 2305 3852 353101 66184 3.90807 3.90807 -147.107 -3.90807 0 0 997811. 3452.63 0.38 0.11 0.17 -1 -1 0.38 0.0318069 0.028318 103 85 62 31 95 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.93 vpr 65.86 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34080 -1 -1 14 31 0 0 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 67444 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 27.1 MiB 4.06 770 8716 3230 4626 860 65.9 MiB 0.08 0.00 3.82604 -125.602 -3.82604 3.82604 0.98 0.000589492 0.000527946 0.0344487 0.0314457 46 2564 29 6.95648e+06 202660 828058. 2865.25 2.52 0.143871 0.126547 28066 200906 -1 1941 32 1834 2735 331203 90247 4.66031 4.66031 -156.851 -4.66031 0 0 1.01997e+06 3529.29 0.40 0.12 0.20 -1 -1 0.40 0.0390531 0.0342256 79 105 0 0 124 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 13.79 vpr 65.48 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33720 -1 -1 10 32 0 0 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 67048 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 26.8 MiB 2.91 613 11389 4318 6053 1018 65.5 MiB 0.09 0.00 2.5155 -88.5718 -2.5155 2.5155 0.95 0.000491566 0.000451287 0.0392213 0.0358468 38 2157 46 6.95648e+06 144757 678818. 2348.85 7.72 0.256369 0.223091 26626 170182 -1 1637 22 1174 1812 158126 34020 3.09492 3.09492 -119.441 -3.09492 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0246819 0.0218738 58 86 0 0 89 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.72 vpr 65.84 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33916 -1 -1 22 32 0 0 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 67424 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 27.1 MiB 0.44 839 13694 5746 7505 443 65.8 MiB 0.10 0.00 3.4405 -113.723 -3.4405 3.4405 0.96 0.000512415 0.000467582 0.0403204 0.0368401 52 2865 38 6.95648e+06 318465 926341. 3205.33 5.93 0.229759 0.199844 29218 227130 -1 1945 22 1806 2672 239873 49335 4.08346 4.08346 -147.934 -4.08346 0 0 1.14541e+06 3963.36 0.43 0.08 0.22 -1 -1 0.43 0.0254352 0.0225597 83 31 90 30 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 9.27 vpr 66.08 MiB 0.03 7264 -1 -1 1 0.03 -1 -1 34112 -1 -1 23 31 0 0 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 67668 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 27.4 MiB 0.88 910 13505 4417 6042 3046 66.1 MiB 0.10 0.00 3.4515 -115.453 -3.4515 3.4515 0.98 0.000593756 0.000541343 0.0451496 0.0412122 40 2828 38 6.95648e+06 332941 706193. 2443.58 5.08 0.310799 0.271658 26914 176310 -1 2255 24 2270 3207 274810 62325 4.36542 4.36542 -152.907 -4.36542 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0339811 0.030161 95 50 87 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 6.52 vpr 65.67 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33852 -1 -1 20 30 0 0 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 67248 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 27.2 MiB 0.99 828 11830 4288 5530 2012 65.7 MiB 0.09 0.00 2.77276 -89.4501 -2.77276 2.77276 0.96 0.000511504 0.000467017 0.0373937 0.0342128 44 2775 24 6.95648e+06 289514 787024. 2723.27 2.25 0.135022 0.118971 27778 195446 -1 2034 22 1604 2501 198033 43967 3.36257 3.36257 -119.564 -3.36257 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0266391 0.0236681 78 50 58 30 58 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 9.31 vpr 65.87 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 33984 -1 -1 34 32 0 0 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 67448 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 27.1 MiB 0.43 859 17648 6508 9174 1966 65.9 MiB 0.13 0.00 3.14469 -114.249 -3.14469 3.14469 0.94 0.000569339 0.000518234 0.0445856 0.0404496 44 2709 28 6.95648e+06 492173 787024. 2723.27 5.65 0.268572 0.232992 27778 195446 -1 1930 22 1974 2803 212915 44441 3.84566 3.84566 -143.708 -3.84566 0 0 997811. 3452.63 0.39 0.08 0.17 -1 -1 0.39 0.0271258 0.0240286 91 61 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 15.26 vpr 65.81 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34088 -1 -1 31 32 0 0 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 67388 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 27.0 MiB 0.48 865 18023 6841 8476 2706 65.8 MiB 0.13 0.00 2.5393 -97.0905 -2.5393 2.5393 0.98 0.000558741 0.000507104 0.0494139 0.0449508 38 2637 37 6.95648e+06 448746 678818. 2348.85 11.48 0.323498 0.282226 26626 170182 -1 1989 22 1620 2185 191205 39495 3.42872 3.42872 -130.761 -3.42872 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0270458 0.0239497 90 61 63 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 11.35 vpr 65.09 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33704 -1 -1 13 29 0 0 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 66652 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 26.7 MiB 4.31 476 8289 3403 4434 452 65.1 MiB 0.06 0.00 2.67856 -82.7388 -2.67856 2.67856 0.95 0.000426076 0.000388538 0.024629 0.0225569 38 1404 41 6.95648e+06 188184 678818. 2348.85 3.99 0.17391 0.150243 26626 170182 -1 1035 24 1121 1391 74716 20083 2.83937 2.83937 -99.7833 -2.83937 0 0 902133. 3121.57 0.33 0.05 0.17 -1 -1 0.33 0.0221992 0.0195761 56 28 58 29 29 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 10.51 vpr 65.64 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33700 -1 -1 10 32 0 0 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 67212 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 26.9 MiB 0.87 608 10459 4566 5636 257 65.6 MiB 0.07 0.00 2.4623 -84.442 -2.4623 2.4623 0.97 0.000485793 0.000433009 0.0343475 0.0313336 40 1678 27 6.95648e+06 144757 706193. 2443.58 6.48 0.244628 0.212119 26914 176310 -1 1444 18 1110 1371 128891 28700 3.41282 3.41282 -112.558 -3.41282 0 0 926341. 3205.33 0.34 0.05 0.17 -1 -1 0.34 0.0201718 0.0179198 58 79 0 0 82 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 21.58 vpr 65.63 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34188 -1 -1 28 31 0 0 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 67208 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 26.9 MiB 0.41 712 11923 2992 6851 2080 65.6 MiB 0.08 0.00 3.61895 -115.646 -3.61895 3.61895 0.97 0.000486941 0.000438801 0.0316533 0.0289404 54 2126 44 6.95648e+06 405319 949917. 3286.91 17.77 0.302575 0.263354 29506 232905 -1 1438 23 1679 2306 184877 43555 3.76262 3.76262 -133.325 -3.76262 0 0 1.17392e+06 4061.99 0.45 0.08 0.24 -1 -1 0.45 0.0276348 0.0245414 86 29 93 31 31 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.74 vpr 64.80 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 34024 -1 -1 14 29 0 0 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 66360 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 26.3 MiB 1.19 513 12241 3750 6739 1752 64.8 MiB 0.08 0.00 2.76175 -81.5673 -2.76175 2.76175 0.98 0.000421389 0.00038513 0.0351195 0.0321183 44 1572 46 6.95648e+06 202660 787024. 2723.27 2.34 0.12644 0.110684 27778 195446 -1 1150 19 885 1259 89059 21924 2.92072 2.92072 -97.2269 -2.92072 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0197363 0.0175293 59 48 29 29 52 26 - fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.12 vpr 65.19 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 34052 -1 -1 10 32 0 0 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 66756 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 26.7 MiB 1.04 719 10304 4284 5838 182 65.2 MiB 0.07 0.00 2.55695 -99.062 -2.55695 2.55695 0.95 0.000418543 0.000379652 0.0311135 0.0283093 38 2014 39 6.95648e+06 144757 678818. 2348.85 3.00 0.153837 0.134791 26626 170182 -1 1730 23 1562 2215 219159 44129 3.40042 3.40042 -129.285 -3.40042 0 0 902133. 3121.57 0.34 0.08 0.15 -1 -1 0.34 0.0234514 0.0207354 61 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 8.94 vpr 65.61 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34064 -1 -1 24 31 0 0 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 67184 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 27.2 MiB 0.98 740 14295 5198 6590 2507 65.6 MiB 0.11 0.00 2.6976 -96.2661 -2.6976 2.6976 0.94 0.00053656 0.000490107 0.0425111 0.0387964 42 2533 38 6.95648e+06 347416 744469. 2576.02 4.74 0.234456 0.203944 27202 183097 -1 1824 18 1474 1876 163242 37055 3.57107 3.57107 -126.089 -3.57107 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0230063 0.0205118 82 60 58 31 62 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.09 vpr 65.30 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34036 -1 -1 11 31 0 0 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 66868 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 26.8 MiB 2.47 821 12474 3954 7613 907 65.3 MiB 0.09 0.00 2.63455 -86.7455 -2.63455 2.63455 0.95 0.000436835 0.000399672 0.0378575 0.0346003 36 2106 49 6.95648e+06 159232 648988. 2245.63 2.53 0.158073 0.138247 26050 158493 -1 1794 20 1137 1755 156501 33858 3.24647 3.24647 -116.94 -3.24647 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0207945 0.0183876 57 49 31 31 53 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 10.71 vpr 65.85 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 33948 -1 -1 19 32 0 0 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 67432 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 27.2 MiB 1.47 687 12863 4647 5643 2573 65.9 MiB 0.09 0.00 2.5143 -86.9864 -2.5143 2.5143 0.98 0.000543042 0.00049586 0.0411769 0.0376241 58 1648 22 6.95648e+06 275038 997811. 3452.63 5.79 0.234355 0.203966 30370 251734 -1 1375 20 1156 1796 104703 27860 2.83022 2.83022 -105.067 -2.83022 0 0 1.25153e+06 4330.55 0.50 0.06 0.26 -1 -1 0.50 0.0258306 0.0230522 76 56 52 26 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 9.24 vpr 65.86 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33592 -1 -1 25 31 0 0 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 67440 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 27.1 MiB 1.32 920 15103 5522 7391 2190 65.9 MiB 0.12 0.00 2.87606 -102.432 -2.87606 2.87606 0.99 0.000605103 0.000552715 0.0478478 0.0436745 38 2533 35 6.95648e+06 361892 678818. 2348.85 4.66 0.252332 0.219764 26626 170182 -1 2159 20 1877 2570 216562 43986 3.41147 3.41147 -132.637 -3.41147 0 0 902133. 3121.57 0.33 0.08 0.17 -1 -1 0.33 0.027166 0.0241863 85 88 31 31 92 31 - fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 9.46 vpr 65.44 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33960 -1 -1 10 32 0 0 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 67008 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 26.7 MiB 0.80 578 9529 3974 5251 304 65.4 MiB 0.07 0.00 2.4011 -84.8413 -2.4011 2.4011 0.97 0.000483119 0.000440887 0.0316434 0.0289721 50 1803 29 6.95648e+06 144757 902133. 3121.57 5.36 0.211542 0.183796 28642 213929 -1 1404 22 1214 1827 148643 36239 3.32952 3.32952 -112.882 -3.32952 0 0 1.08113e+06 3740.92 0.42 0.06 0.21 -1 -1 0.42 0.0237534 0.0210882 61 54 32 32 60 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 6.32 vpr 65.36 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33816 -1 -1 10 32 0 0 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 66928 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 26.8 MiB 0.92 636 8444 3437 4770 237 65.4 MiB 0.06 0.00 2.5503 -94.7535 -2.5503 2.5503 0.95 0.000489495 0.000450841 0.026623 0.0242331 46 1960 35 6.95648e+06 144757 828058. 2865.25 2.23 0.14577 0.12696 28066 200906 -1 1504 21 1354 2032 146202 33178 3.42377 3.42377 -117.684 -3.42377 0 0 1.01997e+06 3529.29 0.39 0.06 0.18 -1 -1 0.39 0.0226122 0.0199785 63 60 32 32 62 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 17.07 vpr 65.89 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34288 -1 -1 29 32 0 0 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 67476 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 27.1 MiB 0.84 841 16053 4604 9696 1753 65.9 MiB 0.12 0.00 3.15569 -114.144 -3.15569 3.15569 0.96 0.000541007 0.000493915 0.044924 0.0409381 40 2466 34 6.95648e+06 419795 706193. 2443.58 12.92 0.321484 0.279601 26914 176310 -1 2088 23 2223 3337 306919 64068 3.96106 3.96106 -147.395 -3.96106 0 0 926341. 3205.33 0.35 0.10 0.18 -1 -1 0.35 0.0301502 0.0268569 88 49 64 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 6.78 vpr 65.64 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 34148 -1 -1 19 29 0 0 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 67212 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 27.2 MiB 0.98 819 8852 3579 4926 347 65.6 MiB 0.07 0.00 2.6053 -89.9611 -2.6053 2.6053 0.95 0.000508363 0.000464449 0.0296219 0.0271367 36 2453 49 6.95648e+06 275038 648988. 2245.63 2.69 0.157296 0.137592 26050 158493 -1 1838 23 1570 2071 174419 37647 3.34547 3.34547 -119.552 -3.34547 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.026881 0.0237541 77 54 56 29 58 29 - fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 21.26 vpr 65.94 MiB 0.02 7524 -1 -1 1 0.03 -1 -1 34256 -1 -1 29 32 0 0 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 67524 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 27.4 MiB 1.37 872 17523 6731 8900 1892 65.9 MiB 0.14 0.00 3.10069 -113.963 -3.10069 3.10069 0.93 0.000613384 0.000559687 0.0546555 0.0497899 40 2707 28 6.95648e+06 419795 706193. 2443.58 16.70 0.344627 0.301505 26914 176310 -1 2203 26 2314 3388 322371 64725 4.47036 4.47036 -160.255 -4.47036 0 0 926341. 3205.33 0.35 0.10 0.16 -1 -1 0.35 0.0335845 0.0295117 89 117 0 0 128 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.57 vpr 64.96 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33980 -1 -1 11 31 0 0 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 66524 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 26.6 MiB 1.56 615 9529 3473 3838 2218 65.0 MiB 0.06 0.00 2.4703 -82.3656 -2.4703 2.4703 0.95 0.000410958 0.000373919 0.026387 0.0241195 38 2035 23 6.95648e+06 159232 678818. 2348.85 1.90 0.102422 0.0900431 26626 170182 -1 1555 22 1174 1749 146505 32199 3.10912 3.10912 -112.306 -3.10912 0 0 902133. 3121.57 0.34 0.06 0.16 -1 -1 0.34 0.0207048 0.0183917 58 -1 85 31 0 0 - fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 9.37 vpr 65.96 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34016 -1 -1 23 32 0 0 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 67544 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 27.2 MiB 0.98 785 13719 5670 7310 739 66.0 MiB 0.11 0.00 3.10505 -105.949 -3.10505 3.10505 0.98 0.000571932 0.000525521 0.0435735 0.0397511 46 2189 25 6.95648e+06 332941 828058. 2865.25 5.07 0.242138 0.211202 28066 200906 -1 1789 19 1415 1951 137453 31616 3.82796 3.82796 -136.345 -3.82796 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0251247 0.0222884 81 89 28 28 92 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 11.09 vpr 65.25 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 33872 -1 -1 10 32 0 0 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 66816 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.7 MiB 3.26 654 11699 5172 6241 286 65.2 MiB 0.09 0.00 2.45985 -93.5493 -2.45985 2.45985 0.94 0.000497163 0.000452748 0.0406851 0.0372054 44 1809 23 6.95648e+06 144757 787024. 2723.27 4.64 0.202488 0.175904 27778 195446 -1 1403 22 1383 1957 152015 33708 3.23112 3.23112 -122.105 -3.23112 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0248349 0.0219738 61 93 0 0 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 9.33 vpr 65.95 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34028 -1 -1 24 32 0 0 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 67528 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 27.2 MiB 0.97 789 12178 4192 5770 2216 65.9 MiB 0.10 0.00 2.5393 -93.8042 -2.5393 2.5393 0.98 0.000575962 0.000525424 0.0377909 0.0345317 48 1997 24 6.95648e+06 347416 865456. 2994.66 5.01 0.24232 0.210731 28354 207349 -1 1736 21 1346 2021 146325 36132 3.41277 3.41277 -120.163 -3.41277 0 0 1.05005e+06 3633.38 0.41 0.07 0.20 -1 -1 0.41 0.0271634 0.0241368 84 59 61 32 64 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.78 vpr 66.02 MiB 0.02 7600 -1 -1 1 0.04 -1 -1 34204 -1 -1 33 32 0 0 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 67608 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 27.6 MiB 1.15 1063 18967 7179 10260 1528 66.0 MiB 0.16 0.00 3.74344 -132.999 -3.74344 3.74344 0.95 0.000636635 0.000578699 0.0582895 0.0530609 44 3222 41 6.95648e+06 477698 787024. 2723.27 4.25 0.198543 0.174853 27778 195446 -1 2392 22 2540 3692 303817 61424 4.72611 4.72611 -171.193 -4.72611 0 0 997811. 3452.63 0.38 0.10 0.19 -1 -1 0.38 0.0321816 0.0285854 104 81 64 32 96 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.38 vpr 64.89 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33620 -1 -1 10 30 0 0 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 66444 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 26.5 MiB 0.49 450 8714 3437 4485 792 64.9 MiB 0.06 0.00 1.83056 -62.632 -1.83056 1.83056 0.97 0.000371144 0.00033916 0.023658 0.0216718 34 1406 40 6.95648e+06 144757 618332. 2139.56 1.86 0.121025 0.105557 25762 151098 -1 1037 19 705 882 59779 15981 2.44628 2.44628 -86.2371 -2.44628 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0162863 0.0143935 45 51 0 0 53 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 10.11 vpr 65.16 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 34028 -1 -1 12 30 0 0 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 66728 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 26.7 MiB 2.10 585 9529 3924 5179 426 65.2 MiB 0.07 0.00 2.68956 -87.7818 -2.68956 2.68956 0.95 0.000444298 0.000406247 0.0291546 0.0266842 42 1935 48 6.95648e+06 173708 744469. 2576.02 4.86 0.191391 0.165703 27202 183097 -1 1382 18 931 1322 111140 25510 2.97567 2.97567 -110.417 -2.97567 0 0 949917. 3286.91 0.37 0.05 0.18 -1 -1 0.37 0.0198926 0.0177672 58 29 60 30 30 30 - fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 9.44 vpr 65.28 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 33524 -1 -1 10 32 0 0 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 66848 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 26.8 MiB 0.23 583 9994 4156 5510 328 65.3 MiB 0.08 0.00 2.43165 -92.7025 -2.43165 2.43165 0.94 0.000460235 0.000418949 0.031645 0.0289199 56 1769 22 6.95648e+06 144757 973134. 3367.25 5.92 0.200249 0.173819 29794 239141 -1 1435 21 1441 2336 227882 53781 3.11062 3.11062 -116.465 -3.11062 0 0 1.19926e+06 4149.71 0.44 0.08 0.24 -1 -1 0.44 0.0221814 0.0196842 65 31 64 32 32 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.89 vpr 65.03 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33884 -1 -1 15 25 0 0 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 66588 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 26.7 MiB 0.60 456 8714 3671 4354 689 65.0 MiB 0.06 0.00 2.73975 -74.1765 -2.73975 2.73975 0.94 0.000365821 0.000333654 0.0236665 0.021677 38 1756 26 6.95648e+06 217135 678818. 2348.85 2.24 0.101792 0.088841 26626 170182 -1 1231 21 1088 1481 107338 26784 3.07097 3.07097 -97.0621 -3.07097 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0180334 0.0159142 56 19 50 25 25 25 - fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 18.62 vpr 66.08 MiB 0.02 7468 -1 -1 1 0.03 -1 -1 34156 -1 -1 13 32 0 0 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 67664 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 27.2 MiB 1.11 821 9368 3851 5297 220 66.1 MiB 0.08 0.00 3.24434 -110.581 -3.24434 3.24434 0.92 0.00055 0.000498032 0.0357686 0.0326111 38 3064 37 6.95648e+06 188184 678818. 2348.85 14.39 0.30013 0.261737 26626 170182 -1 2289 21 1925 3284 271074 57021 4.44981 4.44981 -148.335 -4.44981 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0273492 0.0242732 77 84 32 32 94 32 - fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 8.01 vpr 65.78 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33772 -1 -1 29 31 0 0 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 67360 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 27.0 MiB 0.88 743 12926 4367 6330 2229 65.8 MiB 0.10 0.00 2.5925 -92.6947 -2.5925 2.5925 0.97 0.000582379 0.000530467 0.0384886 0.0351061 38 2568 35 6.95648e+06 419795 678818. 2348.85 3.88 0.179063 0.156572 26626 170182 -1 1905 22 1729 2298 191636 43219 3.66167 3.66167 -125.729 -3.66167 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.02871 0.0254379 87 88 29 29 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 7.35 vpr 65.69 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34212 -1 -1 22 32 0 0 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 67268 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 27.3 MiB 0.78 1339 15395 5888 7731 1776 65.7 MiB 0.13 0.00 3.54004 -131.105 -3.54004 3.54004 0.97 0.000598971 0.000546592 0.0516339 0.0472324 46 3467 30 6.99608e+06 323745 828058. 2865.25 3.20 0.197374 0.174552 28066 200906 -1 2710 24 2431 2895 254566 52558 4.60591 4.60591 -167.423 -4.60591 0 0 1.01997e+06 3529.29 0.39 0.09 0.20 -1 -1 0.39 0.0317166 0.0281727 130 80 32 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 24.44 vpr 65.71 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33916 -1 -1 20 30 0 0 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 67284 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 27.2 MiB 1.54 1212 14500 6175 7840 485 65.7 MiB 0.12 0.00 3.52832 -121.548 -3.52832 3.52832 0.96 0.000535224 0.000488116 0.0486299 0.0443954 40 3418 34 6.99608e+06 294314 706193. 2443.58 19.53 0.3321 0.28974 26914 176310 -1 3025 31 3488 4899 661490 195576 4.78569 4.78569 -164.017 -4.78569 0 0 926341. 3205.33 0.36 0.19 0.17 -1 -1 0.36 0.0366521 0.0322789 117 78 30 30 89 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 19.11 vpr 65.72 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34156 -1 -1 18 32 0 0 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 67300 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 27.0 MiB 1.02 1043 15390 6153 6789 2448 65.7 MiB 0.12 0.00 2.96629 -107.794 -2.96629 2.96629 0.98 0.000522437 0.000474828 0.0488648 0.0446187 40 3278 41 6.99608e+06 264882 706193. 2443.58 14.80 0.351169 0.307951 26914 176310 -1 2721 24 2052 2461 273303 56724 4.05236 4.05236 -147.737 -4.05236 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0304088 0.0269371 106 50 54 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 9.16 vpr 65.16 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 34148 -1 -1 18 29 0 0 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 66728 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 26.8 MiB 0.75 893 14106 5931 7515 660 65.2 MiB 0.11 0.00 3.16965 -104.761 -3.16965 3.16965 0.96 0.000503668 0.000459581 0.0434468 0.039626 42 3138 27 6.99608e+06 264882 744469. 2576.02 5.16 0.222947 0.194277 27202 183097 -1 2287 21 1805 2656 261487 55177 4.03512 4.03512 -141.29 -4.03512 0 0 949917. 3286.91 0.37 0.09 0.18 -1 -1 0.37 0.02489 0.0222078 89 25 87 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 7.69 vpr 65.82 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33972 -1 -1 15 32 0 0 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 67396 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 27.1 MiB 0.49 1150 12585 5319 7044 222 65.8 MiB 0.11 0.00 3.52464 -133.869 -3.52464 3.52464 0.95 0.000536256 0.000490104 0.0420669 0.0384772 44 3757 43 6.99608e+06 220735 787024. 2723.27 3.91 0.163045 0.143152 27778 195446 -1 2889 24 2603 4190 403365 76507 4.46155 4.46155 -171.841 -4.46155 0 0 997811. 3452.63 0.38 0.11 0.19 -1 -1 0.38 0.02813 0.0249346 93 31 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 6.39 vpr 65.87 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 33616 -1 -1 30 32 0 0 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 67448 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 27.3 MiB 0.51 1287 17134 6098 8739 2297 65.9 MiB 0.14 0.00 3.05559 -111.202 -3.05559 3.05559 0.95 0.000556356 0.000506766 0.0470043 0.0428307 46 3473 45 6.99608e+06 441471 828058. 2865.25 2.52 0.176301 0.154902 28066 200906 -1 2769 30 2371 3388 422881 130215 3.63456 3.63456 -142.044 -3.63456 0 0 1.01997e+06 3529.29 0.39 0.14 0.19 -1 -1 0.39 0.0352999 0.0311691 117 61 63 32 63 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 6.82 vpr 64.97 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 34200 -1 -1 15 27 0 0 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 66528 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 26.5 MiB 1.51 563 10304 4323 5395 586 65.0 MiB 0.07 0.00 2.64844 -83.5724 -2.64844 2.64844 0.95 0.000406794 0.000370765 0.0296122 0.027031 38 1981 27 6.99608e+06 220735 678818. 2348.85 2.22 0.128832 0.112902 26626 170182 -1 1454 21 1423 2057 164818 36272 3.46287 3.46287 -115.237 -3.46287 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0203113 0.0180675 68 26 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.91 vpr 65.25 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33820 -1 -1 17 31 0 0 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 66820 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 26.8 MiB 0.55 762 11776 3811 5679 2286 65.3 MiB 0.09 0.00 2.36575 -80.4975 -2.36575 2.36575 0.96 0.000474956 0.000434018 0.0353279 0.0322802 46 2159 28 6.99608e+06 250167 828058. 2865.25 3.13 0.149796 0.131413 28066 200906 -1 1592 22 1370 2014 133567 36552 3.09392 3.09392 -111.358 -3.09392 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0223897 0.0198614 77 -1 115 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 10.92 vpr 65.48 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 33820 -1 -1 15 31 0 0 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 67056 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 26.9 MiB 3.22 1001 11864 4950 6574 340 65.5 MiB 0.09 0.00 2.58244 -94.0613 -2.58244 2.58244 0.99 0.000472239 0.000429886 0.0366823 0.0334713 46 2439 49 6.99608e+06 220735 828058. 2865.25 4.48 0.215615 0.187913 28066 200906 -1 1918 18 1606 1976 143319 31972 3.34552 3.34552 -119.264 -3.34552 0 0 1.01997e+06 3529.29 0.40 0.06 0.18 -1 -1 0.40 0.0206354 0.0184256 96 81 0 0 84 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 6.72 vpr 65.16 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33576 -1 -1 13 32 0 0 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 66724 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 26.6 MiB 0.74 717 8879 3091 4039 1749 65.2 MiB 0.07 0.00 2.95409 -109.113 -2.95409 2.95409 0.95 0.000425095 0.000387067 0.0258135 0.0236288 40 2481 30 6.99608e+06 191304 706193. 2443.58 2.84 0.148776 0.13053 26914 176310 -1 2104 23 1942 2408 232735 51932 3.73346 3.73346 -147.84 -3.73346 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0244532 0.0216628 79 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.08 vpr 65.21 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33564 -1 -1 15 30 0 0 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 66776 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 26.7 MiB 2.74 795 11161 3787 5546 1828 65.2 MiB 0.08 0.00 3.05483 -104.248 -3.05483 3.05483 0.95 0.000466394 0.000423507 0.0333495 0.0304103 44 2505 23 6.99608e+06 220735 787024. 2723.27 2.14 0.1144 0.100479 27778 195446 -1 1892 19 1669 2249 185647 39274 3.6257 3.6257 -134.981 -3.6257 0 0 997811. 3452.63 0.37 0.07 0.19 -1 -1 0.37 0.0212626 0.0189102 88 58 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 8.95 vpr 65.19 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 34068 -1 -1 14 32 0 0 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 66756 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 26.6 MiB 0.91 1055 11698 4034 5823 1841 65.2 MiB 0.09 0.00 2.5521 -101.073 -2.5521 2.5521 0.94 0.000471481 0.000430319 0.0357486 0.0327322 44 2373 22 6.99608e+06 206020 787024. 2723.27 4.86 0.190011 0.165398 27778 195446 -1 2025 17 1317 1402 125526 25627 3.06997 3.06997 -122.419 -3.06997 0 0 997811. 3452.63 0.38 0.05 0.19 -1 -1 0.38 0.0198383 0.0177163 91 57 25 25 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 9.36 vpr 65.70 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33900 -1 -1 16 32 0 0 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 67280 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 26.9 MiB 1.06 1009 11088 3493 5989 1606 65.7 MiB 0.10 0.00 2.87709 -104.678 -2.87709 2.87709 0.96 0.000528972 0.000482617 0.0383118 0.0350454 52 2808 23 6.99608e+06 235451 926341. 3205.33 4.91 0.22241 0.194008 29218 227130 -1 1939 25 1955 2681 221541 51029 3.65646 3.65646 -132.475 -3.65646 0 0 1.14541e+06 3963.36 0.45 0.08 0.23 -1 -1 0.45 0.0291132 0.025748 101 55 64 32 57 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 9.59 vpr 65.78 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 34048 -1 -1 19 32 0 0 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 67360 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 27.3 MiB 0.97 1221 14663 4666 7992 2005 65.8 MiB 0.13 0.00 3.53384 -132.883 -3.53384 3.53384 0.98 0.000571105 0.000522391 0.0487336 0.0445657 46 3202 25 6.99608e+06 279598 828058. 2865.25 5.26 0.241675 0.211659 28066 200906 -1 2706 22 2711 3532 287077 57474 4.51361 4.51361 -170.864 -4.51361 0 0 1.01997e+06 3529.29 0.39 0.10 0.19 -1 -1 0.39 0.0296604 0.0264571 112 60 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 10.32 vpr 64.98 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33732 -1 -1 14 29 0 0 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 66544 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 26.6 MiB 2.55 548 11135 4335 5437 1363 65.0 MiB 0.07 0.00 2.42075 -79.3785 -2.42075 2.42075 0.92 0.000399222 0.00036285 0.0306644 0.0279745 46 1739 41 6.99608e+06 206020 828058. 2865.25 4.74 0.167366 0.144631 28066 200906 -1 1256 40 1522 2183 145758 35674 3.15122 3.15122 -95.7284 -3.15122 0 0 1.01997e+06 3529.29 0.36 0.07 0.18 -1 -1 0.36 0.0286441 0.0249744 67 21 58 29 24 24 - fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 10.73 vpr 65.80 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34076 -1 -1 16 32 0 0 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 67384 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 27.0 MiB 2.05 1324 15388 6313 7985 1090 65.8 MiB 0.12 0.00 2.92839 -113.251 -2.92839 2.92839 0.95 0.000575561 0.000521284 0.0502559 0.0457508 48 3124 24 6.99608e+06 235451 865456. 2994.66 5.35 0.238324 0.208217 28354 207349 -1 2672 22 2906 4088 352132 68977 3.37581 3.37581 -143.148 -3.37581 0 0 1.05005e+06 3633.38 0.40 0.10 0.20 -1 -1 0.40 0.0287289 0.0256097 106 60 64 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 9.54 vpr 65.50 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33692 -1 -1 17 32 0 0 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 67072 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 26.9 MiB 1.40 1153 9881 3091 5318 1472 65.5 MiB 0.09 0.00 2.70344 -107.752 -2.70344 2.70344 0.97 0.000523157 0.000476794 0.0333571 0.0305513 44 2747 26 6.99608e+06 250167 787024. 2723.27 4.84 0.235995 0.205262 27778 195446 -1 2326 22 1852 2317 186390 37475 3.22121 3.22121 -133.031 -3.22121 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0262594 0.0232765 99 54 64 32 56 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 17.88 vpr 65.68 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33576 -1 -1 14 32 0 0 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 67256 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 27.0 MiB 0.84 1128 13856 4791 7428 1637 65.7 MiB 0.10 0.00 2.74594 -108.216 -2.74594 2.74594 0.94 0.000473584 0.000433339 0.042145 0.0385531 40 2786 22 6.99608e+06 206020 706193. 2443.58 13.87 0.250074 0.217138 26914 176310 -1 2453 17 1560 1868 197673 39206 3.36881 3.36881 -135.542 -3.36881 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.020296 0.0181428 91 62 29 29 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.98 vpr 64.40 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 33672 -1 -1 11 30 0 0 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 65944 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 26.0 MiB 2.69 751 8585 3232 4109 1244 64.4 MiB 0.05 0.00 1.97056 -79.4021 -1.97056 1.97056 0.97 0.000341456 0.000315288 0.0205422 0.0187897 36 1707 23 6.99608e+06 161872 648988. 2245.63 2.25 0.105458 0.0921744 26050 158493 -1 1437 16 717 779 72021 14705 2.10343 2.10343 -91.9527 -2.10343 0 0 828058. 2865.25 0.33 0.04 0.16 -1 -1 0.33 0.0144735 0.0129098 56 29 24 24 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 10.90 vpr 65.37 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34164 -1 -1 15 31 0 0 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 66940 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 26.8 MiB 2.49 1098 12030 4684 6566 780 65.4 MiB 0.09 0.00 2.92409 -110.186 -2.92409 2.92409 0.96 0.000470189 0.000429564 0.0364725 0.033354 44 2572 41 6.99608e+06 220735 787024. 2723.27 5.17 0.219521 0.19055 27778 195446 -1 2064 20 1608 1961 161847 32631 3.44981 3.44981 -137.763 -3.44981 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.02262 0.0200805 91 55 31 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 8.47 vpr 65.70 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33852 -1 -1 23 32 0 0 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 67280 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 27.0 MiB 0.47 1014 14295 4567 7423 2305 65.7 MiB 0.11 0.00 3.41663 -122.488 -3.41663 3.41663 1.00 0.00054417 0.000496354 0.0421637 0.0385334 44 2746 20 6.99608e+06 338461 787024. 2723.27 4.68 0.227702 0.199863 27778 195446 -1 2214 21 2000 2745 213810 44188 4.1176 4.1176 -152.075 -4.1176 0 0 997811. 3452.63 0.39 0.08 0.19 -1 -1 0.39 0.0255143 0.0226859 97 31 91 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 22.97 vpr 65.80 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 34164 -1 -1 22 32 0 0 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 67380 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 27.6 MiB 1.47 1195 15773 6301 7922 1550 65.8 MiB 0.13 0.00 3.26728 -113.078 -3.26728 3.26728 1.00 0.000595147 0.000543777 0.0535545 0.0489442 50 3122 32 6.99608e+06 323745 902133. 3121.57 18.02 0.351619 0.307304 28642 213929 -1 2531 25 2554 2963 242607 55175 3.67066 3.67066 -139.252 -3.67066 0 0 1.08113e+06 3740.92 0.42 0.09 0.21 -1 -1 0.42 0.0334335 0.0297318 138 108 0 0 125 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.76 vpr 64.58 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 34148 -1 -1 15 26 0 0 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 66132 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 26.2 MiB 0.86 451 10713 4272 4981 1460 64.6 MiB 0.06 0.00 2.1814 -63.0149 -2.1814 2.1814 0.92 0.000305108 0.000278901 0.0227336 0.0207699 36 1420 18 6.99608e+06 220735 648988. 2245.63 1.99 0.0939164 0.082134 26050 158493 -1 1048 17 644 737 61023 13975 2.41737 2.41737 -79.9603 -2.41737 0 0 828058. 2865.25 0.32 0.03 0.15 -1 -1 0.32 0.0126303 0.0112786 52 21 26 26 22 22 - fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 8.40 vpr 65.18 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33836 -1 -1 12 32 0 0 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 66744 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 26.4 MiB 0.87 827 7596 3090 4285 221 65.2 MiB 0.06 0.00 3.28415 -110.154 -3.28415 3.28415 0.96 0.000447756 0.000407429 0.0248627 0.0226796 46 2961 35 6.99608e+06 176588 828058. 2865.25 4.34 0.158399 0.139303 28066 200906 -1 2129 24 1862 2868 316592 63826 3.89401 3.89401 -140.626 -3.89401 0 0 1.01997e+06 3529.29 0.39 0.10 0.18 -1 -1 0.39 0.0271049 0.0240541 75 -1 122 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.98 vpr 64.50 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 34020 -1 -1 8 32 0 0 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 66052 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 26.0 MiB 0.30 744 9608 3037 4927 1644 64.5 MiB 0.06 0.00 1.68521 -70.7407 -1.68521 1.68521 0.97 0.000332856 0.000304521 0.0231134 0.0212159 34 1608 30 6.99608e+06 117725 618332. 2139.56 1.63 0.0998183 0.0872367 25762 151098 -1 1435 18 649 835 85654 16707 1.92118 1.92118 -87.9035 -1.92118 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0143588 0.0127713 44 -1 53 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.69 vpr 65.62 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34204 -1 -1 17 32 0 0 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 67192 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 26.9 MiB 1.43 804 11981 4982 6472 527 65.6 MiB 0.10 0.00 3.29675 -118.435 -3.29675 3.29675 0.95 0.000523363 0.000478272 0.0394552 0.0360979 46 3128 34 6.99608e+06 250167 828058. 2865.25 3.00 0.157162 0.13799 28066 200906 -1 2116 22 2155 3065 234785 52251 4.20072 4.20072 -152.661 -4.20072 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0261324 0.0231609 95 21 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.05 vpr 65.11 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 33816 -1 -1 28 32 0 0 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 66668 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 26.5 MiB 0.26 1009 10028 2588 6723 717 65.1 MiB 0.08 0.00 2.43175 -97.1259 -2.43175 2.43175 0.97 0.000514258 0.000469978 0.0272556 0.0249369 36 2728 44 6.99608e+06 412039 648988. 2245.63 2.61 0.146502 0.128351 26050 158493 -1 2275 23 1765 2546 340304 102413 2.96052 2.96052 -125.673 -2.96052 0 0 828058. 2865.25 0.32 0.12 0.15 -1 -1 0.32 0.027715 0.0246802 87 -1 124 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.90 vpr 65.77 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 34212 -1 -1 21 32 0 0 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 67344 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 27.3 MiB 0.83 1309 12547 3240 8247 1060 65.8 MiB 0.10 0.00 3.14945 -120.96 -3.14945 3.14945 0.98 0.000562057 0.000511904 0.0402219 0.0367583 44 3636 25 6.99608e+06 309029 787024. 2723.27 2.73 0.183275 0.161858 27778 195446 -1 3006 24 2418 3436 275532 55986 3.97712 3.97712 -153.632 -3.97712 0 0 997811. 3452.63 0.40 0.10 0.18 -1 -1 0.40 0.0318731 0.0283029 115 54 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.87 vpr 64.71 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 33984 -1 -1 11 32 0 0 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 66260 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 26.2 MiB 1.27 739 9555 3965 5340 250 64.7 MiB 0.07 0.00 2.4829 -86.6264 -2.4829 2.4829 0.95 0.000425045 0.00038738 0.0285157 0.02605 46 2110 42 6.99608e+06 161872 828058. 2865.25 4.42 0.189727 0.164321 28066 200906 -1 1604 21 1252 1793 137506 31523 2.86632 2.86632 -110.787 -2.86632 0 0 1.01997e+06 3529.29 0.38 0.06 0.20 -1 -1 0.38 0.0210209 0.0186449 72 31 54 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 16.68 vpr 64.90 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33804 -1 -1 13 30 0 0 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 66456 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 26.4 MiB 9.24 667 8291 3398 4446 447 64.9 MiB 0.06 0.00 2.93029 -96.4466 -2.93029 2.93029 0.98 0.00044257 0.000404108 0.0257637 0.0236259 52 2375 49 6.99608e+06 191304 926341. 3205.33 4.11 0.175974 0.153955 29218 227130 -1 1713 23 1822 2674 285430 71724 3.34171 3.34171 -124.088 -3.34171 0 0 1.14541e+06 3963.36 0.43 0.09 0.22 -1 -1 0.43 0.0229666 0.0203122 73 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 8.59 vpr 64.95 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 33776 -1 -1 15 28 0 0 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 66504 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 26.5 MiB 1.29 868 7975 3224 4411 340 64.9 MiB 0.06 0.00 3.06475 -100.65 -3.06475 3.06475 0.95 0.000412042 0.000376572 0.0229416 0.0210198 36 2555 46 6.99608e+06 220735 648988. 2245.63 4.24 0.135846 0.118366 26050 158493 -1 2088 23 1437 2180 207153 40317 3.44616 3.44616 -126.478 -3.44616 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0212493 0.0187155 72 27 56 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 15.94 vpr 64.89 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 34008 -1 -1 10 32 0 0 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 66452 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 26.5 MiB 0.18 703 7204 2556 3394 1254 64.9 MiB 0.06 0.00 2.36125 -93.3467 -2.36125 2.36125 0.95 0.000433789 0.000395852 0.0223575 0.0204362 48 1820 43 6.99608e+06 147157 865456. 2994.66 12.52 0.259512 0.224817 28354 207349 -1 1643 25 1489 2311 251951 73776 3.18722 3.18722 -123.917 -3.18722 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0242039 0.0213998 64 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.19 vpr 65.26 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 33968 -1 -1 15 31 0 0 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 66828 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 26.7 MiB 0.78 1030 10702 2936 6270 1496 65.3 MiB 0.08 0.00 2.44275 -95.3414 -2.44275 2.44275 0.99 0.000440201 0.000402923 0.030975 0.028337 40 2424 44 6.99608e+06 220735 706193. 2443.58 3.12 0.160583 0.141659 26914 176310 -1 2319 29 1735 2460 487597 207284 3.23012 3.23012 -127.032 -3.23012 0 0 926341. 3205.33 0.36 0.17 0.17 -1 -1 0.36 0.0292046 0.0258064 77 26 61 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 11.02 vpr 65.25 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33784 -1 -1 16 29 0 0 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 66820 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 26.9 MiB 3.47 906 11487 3878 5481 2128 65.3 MiB 0.08 0.00 2.36775 -85.1233 -2.36775 2.36775 0.98 0.000432911 0.00039403 0.0339437 0.0310652 36 2668 42 6.99608e+06 235451 648988. 2245.63 4.40 0.156493 0.137386 26050 158493 -1 2014 20 1489 1832 145574 31258 2.74732 2.74732 -106.43 -2.74732 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0216123 0.0191831 86 55 29 29 57 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.35 vpr 65.82 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34088 -1 -1 20 32 0 0 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 67400 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 27.3 MiB 1.13 1128 15822 6743 8694 385 65.8 MiB 0.14 0.00 3.13845 -117.572 -3.13845 3.13845 0.95 0.000573381 0.000522577 0.0542385 0.0494823 48 3472 48 6.99608e+06 294314 865456. 2994.66 5.83 0.284651 0.248814 28354 207349 -1 2751 21 2300 3656 362885 74537 4.41102 4.41102 -163.07 -4.41102 0 0 1.05005e+06 3633.38 0.41 0.11 0.21 -1 -1 0.41 0.0303746 0.0271731 106 26 128 32 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 10.69 vpr 65.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34244 -1 -1 18 32 0 0 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 67348 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 27.3 MiB 1.24 1118 10940 3664 5290 1986 65.8 MiB 0.10 0.00 3.45278 -122.09 -3.45278 3.45278 0.94 0.000545419 0.000492675 0.0369951 0.0338193 54 2919 40 6.99608e+06 264882 949917. 3286.91 6.09 0.274121 0.237951 29506 232905 -1 2474 21 2556 3453 357848 71063 4.23215 4.23215 -157.527 -4.23215 0 0 1.17392e+06 4061.99 0.43 0.10 0.23 -1 -1 0.43 0.0269702 0.0240006 110 62 62 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 9.11 vpr 65.28 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34044 -1 -1 16 31 0 0 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 66844 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 26.8 MiB 0.96 1123 9036 2302 5580 1154 65.3 MiB 0.07 0.00 2.93639 -106.191 -2.93639 2.93639 0.99 0.000462992 0.00041995 0.0288302 0.0263142 46 2371 29 6.99608e+06 235451 828058. 2865.25 4.86 0.18944 0.164273 28066 200906 -1 2088 20 1347 1374 160230 31346 3.21456 3.21456 -124.885 -3.21456 0 0 1.01997e+06 3529.29 0.40 0.06 0.20 -1 -1 0.40 0.0233173 0.0207084 99 77 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 8.49 vpr 65.80 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 33980 -1 -1 18 31 0 0 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 67384 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 27.0 MiB 0.94 1109 9181 2496 6375 310 65.8 MiB 0.08 0.00 2.97859 -109.384 -2.97859 2.97859 0.95 0.000567874 0.000515826 0.0312612 0.0286161 46 2774 25 6.99608e+06 264882 828058. 2865.25 4.32 0.217535 0.188992 28066 200906 -1 2248 22 2122 2886 189657 41980 3.44186 3.44186 -136.23 -3.44186 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0264875 0.0235134 105 59 60 30 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 7.40 vpr 65.67 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34028 -1 -1 23 31 0 0 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 67244 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 27.5 MiB 1.18 1445 15584 6712 8404 468 65.7 MiB 0.13 0.00 3.77697 -130.506 -3.77697 3.77697 0.98 0.000565956 0.000514932 0.0517966 0.0471971 44 3693 29 6.99608e+06 338461 787024. 2723.27 2.85 0.213807 0.189235 27778 195446 -1 2796 24 2722 3118 278492 56313 4.80694 4.80694 -168.038 -4.80694 0 0 997811. 3452.63 0.40 0.10 0.19 -1 -1 0.40 0.0325252 0.028887 138 111 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 10.30 vpr 65.90 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34052 -1 -1 19 31 0 0 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 67484 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 27.4 MiB 3.50 1107 9338 2632 4729 1977 65.9 MiB 0.08 0.00 4.07463 -130.432 -4.07463 4.07463 0.99 0.000579775 0.000526537 0.031427 0.0287467 40 3751 28 6.99608e+06 279598 706193. 2443.58 3.52 0.172069 0.151008 26914 176310 -1 2855 20 2367 3023 295480 63174 5.04534 5.04534 -174.778 -5.04534 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0274528 0.0244794 117 86 31 31 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 21.38 vpr 65.91 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33932 -1 -1 20 31 0 0 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 67496 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 27.1 MiB 2.56 1043 14483 4328 7844 2311 65.9 MiB 0.11 0.00 2.94309 -105.652 -2.94309 2.94309 0.93 0.000476547 0.00043538 0.0433974 0.0395004 38 3805 41 6.99608e+06 294314 678818. 2348.85 15.64 0.331022 0.288497 26626 170182 -1 2597 28 2509 3390 347679 87376 3.72246 3.72246 -139.817 -3.72246 0 0 902133. 3121.57 0.34 0.12 0.15 -1 -1 0.34 0.0323788 0.0285376 107 58 60 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.84 vpr 65.87 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33796 -1 -1 17 32 0 0 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 67448 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.0 MiB 0.94 1124 7431 2784 3679 968 65.9 MiB 0.07 0.00 3.16045 -115.491 -3.16045 3.16045 0.95 0.000554256 0.000507438 0.0264533 0.0242014 44 3510 29 6.99608e+06 250167 787024. 2723.27 2.67 0.158036 0.138014 27778 195446 -1 2479 22 2190 2762 240268 49525 4.18242 4.18242 -155.52 -4.18242 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0278651 0.0247095 110 42 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 10.54 vpr 66.03 MiB 0.02 7468 -1 -1 1 0.04 -1 -1 34280 -1 -1 22 32 0 0 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 67612 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 27.7 MiB 2.34 1452 15962 6743 8843 376 66.0 MiB 0.15 0.00 3.89803 -142.283 -3.89803 3.89803 0.96 0.00065428 0.000596681 0.0588017 0.0536628 48 4131 26 6.99608e+06 323745 865456. 2994.66 4.75 0.22058 0.195021 28354 207349 -1 3274 22 3221 4462 412260 84149 5.0141 5.0141 -186.373 -5.0141 0 0 1.05005e+06 3633.38 0.39 0.12 0.20 -1 -1 0.39 0.0324095 0.0287837 139 91 62 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 8.72 vpr 65.01 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33836 -1 -1 13 31 0 0 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 66572 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 26.5 MiB 0.94 879 9836 3028 5712 1096 65.0 MiB 0.07 0.00 2.6383 -100.454 -2.6383 2.6383 0.99 0.00046807 0.000429812 0.0301448 0.0276058 40 2066 19 6.99608e+06 191304 706193. 2443.58 4.58 0.202214 0.175636 26914 176310 -1 1915 22 1583 1976 178447 36606 3.37847 3.37847 -130.979 -3.37847 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.022308 0.0197784 75 24 62 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 9.56 vpr 65.41 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34116 -1 -1 18 31 0 0 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 66980 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 26.6 MiB 0.77 1062 14606 6331 7793 482 65.4 MiB 0.12 0.00 3.52894 -121.939 -3.52894 3.52894 0.94 0.000533657 0.000487572 0.0476066 0.043417 48 3000 40 6.99608e+06 264882 865456. 2994.66 5.49 0.256717 0.223398 28354 207349 -1 2277 22 2236 2762 229282 49660 4.16591 4.16591 -153.742 -4.16591 0 0 1.05005e+06 3633.38 0.40 0.08 0.20 -1 -1 0.40 0.026854 0.0237833 106 59 62 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 10.31 vpr 65.82 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33876 -1 -1 20 32 0 0 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 67404 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 27.0 MiB 1.12 1350 16188 5852 8372 1964 65.8 MiB 0.13 0.00 3.04459 -115.214 -3.04459 3.04459 0.92 0.000531972 0.000484588 0.0511827 0.0467462 44 3755 41 6.99608e+06 294314 787024. 2723.27 5.98 0.321058 0.280654 27778 195446 -1 2840 23 1987 2837 243240 48839 3.80196 3.80196 -149.592 -3.80196 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.0291111 0.0257525 108 54 62 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 9.31 vpr 65.23 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33608 -1 -1 13 32 0 0 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 66792 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 26.7 MiB 0.85 772 11813 5005 6472 336 65.2 MiB 0.09 0.00 2.92079 -109.375 -2.92079 2.92079 0.94 0.000472339 0.000425537 0.0371498 0.0338097 46 2840 24 6.99608e+06 191304 828058. 2865.25 5.26 0.210215 0.183163 28066 200906 -1 2294 25 2072 3489 324876 67948 4.17136 4.17136 -154.405 -4.17136 0 0 1.01997e+06 3529.29 0.39 0.10 0.18 -1 -1 0.39 0.0271418 0.0239619 77 -1 128 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.99 vpr 66.00 MiB 0.02 7456 -1 -1 1 0.03 -1 -1 34156 -1 -1 19 32 0 0 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 67580 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 27.4 MiB 1.54 1065 15023 3712 10419 892 66.0 MiB 0.12 0.00 2.95404 -109.632 -2.95404 2.95404 0.95 0.00055121 0.000502744 0.049664 0.045369 46 3043 30 6.99608e+06 279598 828058. 2865.25 3.16 0.185148 0.162418 28066 200906 -1 2322 21 2063 2388 184478 43183 3.48281 3.48281 -138.686 -3.48281 0 0 1.01997e+06 3529.29 0.39 0.08 0.19 -1 -1 0.39 0.0274327 0.024333 120 81 25 25 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 19.51 vpr 65.70 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33860 -1 -1 20 32 0 0 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 67276 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 26.9 MiB 1.06 992 12345 3441 7104 1800 65.7 MiB 0.11 0.00 2.95229 -106.433 -2.95229 2.95229 0.97 0.000554129 0.00050485 0.0403099 0.0367977 46 3153 41 6.99608e+06 294314 828058. 2865.25 15.13 0.357827 0.311526 28066 200906 -1 2295 23 2114 2826 239045 53601 3.71576 3.71576 -138.338 -3.71576 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0286921 0.0253995 106 58 64 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 9.41 vpr 65.74 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34172 -1 -1 17 32 0 0 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 67320 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 27.2 MiB 0.83 1173 15306 5710 7465 2131 65.7 MiB 0.13 0.00 2.95409 -111.852 -2.95409 2.95409 0.97 0.0005613 0.000509259 0.0529022 0.048352 48 3117 25 6.99608e+06 250167 865456. 2994.66 5.21 0.267126 0.233272 28354 207349 -1 2562 22 1970 2558 229439 48575 3.48286 3.48286 -136.428 -3.48286 0 0 1.05005e+06 3633.38 0.40 0.08 0.20 -1 -1 0.40 0.0280318 0.0249213 108 61 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 11.30 vpr 65.46 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 33924 -1 -1 16 32 0 0 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 67028 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 26.8 MiB 1.06 830 13324 4116 6747 2461 65.5 MiB 0.10 0.00 3.16045 -112.736 -3.16045 3.16045 0.98 0.000557314 0.000511915 0.0445364 0.0408258 66 1922 25 6.99608e+06 235451 1.11570e+06 3860.55 6.66 0.251141 0.219155 31810 283733 -1 1549 22 1708 2491 165989 38787 3.68922 3.68922 -134.371 -3.68922 0 0 1.39736e+06 4835.16 0.54 0.07 0.30 -1 -1 0.54 0.0272696 0.0242436 94 21 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 7.11 vpr 65.59 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34016 -1 -1 18 32 0 0 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 67164 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 26.7 MiB 1.01 934 14856 6254 8148 454 65.6 MiB 0.12 0.00 3.17145 -114.606 -3.17145 3.17145 0.95 0.000558083 0.000508499 0.0485512 0.0443461 44 3650 34 6.99608e+06 264882 787024. 2723.27 2.81 0.169073 0.148933 27778 195446 -1 2222 24 2245 2617 242039 50967 4.12442 4.12442 -152.47 -4.12442 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0291299 0.0258467 110 50 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.88 vpr 65.59 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34060 -1 -1 22 31 0 0 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 67168 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 27.4 MiB 1.68 1418 16453 6068 8017 2368 65.6 MiB 0.14 0.00 3.27348 -116.042 -3.27348 3.27348 0.98 0.000571269 0.000520608 0.0542714 0.0494324 46 3544 32 6.99608e+06 323745 828058. 2865.25 3.83 0.204055 0.179618 28066 200906 -1 2809 21 2365 2823 236961 48743 3.85405 3.85405 -145.496 -3.85405 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0295557 0.0262512 132 110 0 0 122 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.10 vpr 65.37 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33868 -1 -1 20 32 0 0 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 66940 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.0 MiB 1.06 1448 16005 6966 8629 410 65.4 MiB 0.12 0.00 3.10545 -116.608 -3.10545 3.10545 0.90 0.000539891 0.000491631 0.0507427 0.0462319 46 3722 23 6.99608e+06 294314 828058. 2865.25 3.86 0.185984 0.163272 28066 200906 -1 2940 23 2895 4067 297238 60758 4.13242 4.13242 -154.873 -4.13242 0 0 1.01997e+06 3529.29 0.37 0.09 0.18 -1 -1 0.37 0.0283359 0.0251787 126 86 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.23 vpr 65.08 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 34152 -1 -1 14 32 0 0 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 66640 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 26.6 MiB 0.59 726 10038 4152 5457 429 65.1 MiB 0.07 0.00 2.59005 -94.7203 -2.59005 2.59005 0.99 0.000455872 0.000415155 0.0301174 0.0275431 50 2408 50 6.99608e+06 206020 902133. 3121.57 3.28 0.161306 0.141506 28642 213929 -1 1789 21 1448 1980 192642 48239 3.88592 3.88592 -123.55 -3.88592 0 0 1.08113e+06 3740.92 0.44 0.07 0.21 -1 -1 0.44 0.0221302 0.0196577 80 20 63 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.90 vpr 65.62 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33456 -1 -1 16 32 0 0 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 67200 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 26.9 MiB 1.01 950 11088 4570 6215 303 65.6 MiB 0.09 0.00 3.05483 -109.328 -3.05483 3.05483 0.97 0.000516421 0.000470324 0.036183 0.0330584 50 2651 29 6.99608e+06 235451 902133. 3121.57 2.53 0.153701 0.134618 28642 213929 -1 2128 22 2181 2575 279922 60198 4.27496 4.27496 -144.11 -4.27496 0 0 1.08113e+06 3740.92 0.43 0.09 0.21 -1 -1 0.43 0.0269449 0.0240374 108 91 0 0 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 8.32 vpr 65.83 MiB 0.02 7268 -1 -1 1 0.04 -1 -1 33764 -1 -1 20 32 0 0 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 67408 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 27.6 MiB 0.97 1284 16188 6452 8041 1695 65.8 MiB 0.15 0.00 3.74199 -133.921 -3.74199 3.74199 0.95 0.000625242 0.000568306 0.0589357 0.0537622 48 4089 44 6.99608e+06 294314 865456. 2994.66 3.93 0.22573 0.198411 28354 207349 -1 3078 23 2825 3937 431449 85452 5.26516 5.26516 -191.009 -5.26516 0 0 1.05005e+06 3633.38 0.40 0.12 0.20 -1 -1 0.40 0.0320006 0.0284879 126 53 96 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 9.01 vpr 65.34 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 34096 -1 -1 16 32 0 0 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 66912 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 26.6 MiB 0.68 1108 11776 3889 6161 1726 65.3 MiB 0.10 0.00 2.95409 -117.473 -2.95409 2.95409 0.94 0.000469551 0.000428548 0.0374245 0.0341661 46 2666 34 6.99608e+06 235451 828058. 2865.25 5.13 0.244773 0.214007 28066 200906 -1 2224 25 1911 2478 215756 41871 3.47486 3.47486 -141.153 -3.47486 0 0 1.01997e+06 3529.29 0.39 0.08 0.18 -1 -1 0.39 0.0276528 0.0244299 93 31 92 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 6.34 vpr 65.22 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33792 -1 -1 24 30 0 0 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 66788 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 26.7 MiB 0.75 774 13316 4444 6621 2251 65.2 MiB 0.09 0.00 3.12594 -100.704 -3.12594 3.12594 0.95 0.000429442 0.000392778 0.0330347 0.0302445 46 2023 31 6.99608e+06 353176 828058. 2865.25 2.39 0.13826 0.121093 28066 200906 -1 1661 20 1377 2018 146678 32190 3.40406 3.40406 -121.692 -3.40406 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0203021 0.0180413 80 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.83 vpr 66.15 MiB 0.02 7524 -1 -1 1 0.04 -1 -1 34572 -1 -1 24 32 0 0 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 67740 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 27.8 MiB 0.99 1552 15688 6518 8729 441 66.2 MiB 0.15 0.00 4.34757 -151.154 -4.34757 4.34757 0.96 0.000679083 0.000608732 0.0584963 0.0532942 56 3479 27 6.99608e+06 353176 973134. 3367.25 6.23 0.299114 0.262014 29794 239141 -1 3161 23 3557 4373 445926 86737 5.47164 5.47164 -194.321 -5.47164 0 0 1.19926e+06 4149.71 0.48 0.13 0.24 -1 -1 0.48 0.0363698 0.0324827 159 109 32 32 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.76 vpr 65.53 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33856 -1 -1 16 32 0 0 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 67100 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 26.8 MiB 0.84 870 15388 6654 8216 518 65.5 MiB 0.12 0.00 3.52464 -127.05 -3.52464 3.52464 0.95 0.000546089 0.000501445 0.0503697 0.0460945 48 2808 50 6.99608e+06 235451 865456. 2994.66 2.58 0.190425 0.167248 28354 207349 -1 2174 21 2209 2892 242069 53660 4.54661 4.54661 -166.974 -4.54661 0 0 1.05005e+06 3633.38 0.42 0.09 0.21 -1 -1 0.42 0.027375 0.0243621 92 31 96 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.00 vpr 64.97 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 33996 -1 -1 24 32 0 0 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 66532 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 26.5 MiB 0.26 753 14128 5676 7314 1138 65.0 MiB 0.10 0.00 2.48655 -95.2101 -2.48655 2.48655 0.97 0.000446496 0.000406148 0.0342187 0.0312444 40 2329 45 6.99608e+06 353176 706193. 2443.58 3.55 0.15539 0.136845 26914 176310 -1 1819 23 1637 2564 252308 50029 3.01532 3.01532 -122.321 -3.01532 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0228501 0.0202051 70 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.05 vpr 65.97 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 34188 -1 -1 18 32 0 0 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 67552 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 27.3 MiB 0.84 1095 11118 4566 6150 402 66.0 MiB 0.10 0.00 3.75729 -131.986 -3.75729 3.75729 0.96 0.000588081 0.000536224 0.0400615 0.0365484 56 3208 45 6.99608e+06 264882 973134. 3367.25 3.77 0.200768 0.175813 29794 239141 -1 2684 20 2626 3713 374118 78171 4.77491 4.77491 -176.317 -4.77491 0 0 1.19926e+06 4149.71 0.45 0.11 0.24 -1 -1 0.45 0.0286286 0.0255024 112 26 128 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.10 vpr 65.03 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33656 -1 -1 10 32 0 0 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 66592 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 26.6 MiB 0.30 856 10149 3696 4751 1702 65.0 MiB 0.08 0.00 2.35025 -99.5999 -2.35025 2.35025 0.98 0.000430068 0.000391839 0.0305909 0.0280261 38 2259 29 6.99608e+06 147157 678818. 2348.85 2.62 0.136632 0.119894 26626 170182 -1 2015 25 1706 2540 250968 47245 3.36122 3.36122 -136.243 -3.36122 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0243174 0.0215521 62 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 9.51 vpr 65.07 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34068 -1 -1 15 30 0 0 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 66628 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 26.5 MiB 0.82 730 11161 4679 6120 362 65.1 MiB 0.08 0.00 2.68144 -95.7735 -2.68144 2.68144 0.96 0.000390706 0.000354887 0.0310084 0.0282358 38 2573 48 6.99608e+06 220735 678818. 2348.85 5.59 0.159772 0.140604 26626 170182 -1 2047 21 1704 2237 219905 47174 3.45281 3.45281 -130.385 -3.45281 0 0 902133. 3121.57 0.34 0.07 0.15 -1 -1 0.34 0.0208382 0.0184764 74 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 8.75 vpr 65.91 MiB 0.02 7496 -1 -1 1 0.03 -1 -1 33860 -1 -1 20 29 0 0 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 67496 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 27.3 MiB 2.00 1071 16706 7460 8415 831 65.9 MiB 0.13 0.00 3.15813 -103.405 -3.15813 3.15813 0.96 0.000524902 0.000477541 0.0533141 0.0487294 48 3124 38 6.99608e+06 294314 865456. 2994.66 3.43 0.191141 0.167814 28354 207349 -1 2439 21 2010 2654 254065 53999 3.6667 3.6667 -132.26 -3.6667 0 0 1.05005e+06 3633.38 0.39 0.08 0.20 -1 -1 0.39 0.0256686 0.0227867 113 81 29 29 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 15.09 vpr 65.89 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34184 -1 -1 18 32 0 0 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 67476 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 27.1 MiB 1.09 1132 12720 4435 6473 1812 65.9 MiB 0.10 0.00 3.67014 -135.676 -3.67014 3.67014 0.97 0.00056766 0.000518855 0.0432449 0.0395577 40 3180 26 6.99608e+06 264882 706193. 2443.58 10.70 0.32762 0.285682 26914 176310 -1 2696 23 2729 3675 406292 85566 4.95981 4.95981 -180.376 -4.95981 0 0 926341. 3205.33 0.36 0.12 0.18 -1 -1 0.36 0.0302432 0.0268969 109 53 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 10.57 vpr 65.76 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34008 -1 -1 18 32 0 0 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 67336 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 26.9 MiB 1.12 1263 14678 5351 7233 2094 65.8 MiB 0.12 0.00 3.53384 -132.271 -3.53384 3.53384 0.97 0.000553291 0.000504523 0.0487444 0.0445302 50 3079 23 6.99608e+06 264882 902133. 3121.57 6.04 0.282174 0.247587 28642 213929 -1 2717 23 2571 3502 324780 62261 4.51661 4.51661 -170.637 -4.51661 0 0 1.08113e+06 3740.92 0.43 0.10 0.20 -1 -1 0.43 0.0308622 0.027455 110 55 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 8.33 vpr 65.67 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33672 -1 -1 15 32 0 0 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 67248 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 27.0 MiB 0.78 889 12247 5089 6899 259 65.7 MiB 0.09 0.00 2.70344 -101.505 -2.70344 2.70344 0.95 0.000482879 0.00044048 0.0373277 0.0340847 44 2363 28 6.99608e+06 220735 787024. 2723.27 4.33 0.205076 0.178252 27778 195446 -1 1769 23 1836 2062 156593 33732 3.22421 3.22421 -130.202 -3.22421 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0244634 0.021606 92 55 32 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 18.77 vpr 65.57 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 34092 -1 -1 17 31 0 0 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 67140 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 27.1 MiB 2.92 925 11432 3428 5862 2142 65.6 MiB 0.09 0.00 2.64844 -93.7923 -2.64844 2.64844 0.98 0.000499896 0.000456905 0.0355114 0.0325042 40 2880 27 6.99608e+06 250167 706193. 2443.58 12.61 0.252335 0.219363 26914 176310 -1 2313 21 1972 2431 256196 55693 3.55882 3.55882 -134.006 -3.55882 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0238974 0.0211975 102 82 0 0 89 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.69 vpr 65.49 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34052 -1 -1 19 30 0 0 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 67060 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 26.8 MiB 1.30 957 12331 5125 6712 494 65.5 MiB 0.09 0.00 2.77544 -95.1224 -2.77544 2.77544 0.94 0.000533647 0.000485297 0.037904 0.0345613 40 3136 40 6.99608e+06 279598 706193. 2443.58 4.25 0.182531 0.160391 26914 176310 -1 2333 22 2091 3009 277734 60197 3.47252 3.47252 -129.356 -3.47252 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0262355 0.0233408 101 52 60 30 57 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 7.55 vpr 65.67 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 33816 -1 -1 18 28 0 0 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 67244 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 26.8 MiB 0.75 759 10370 4289 5483 598 65.7 MiB 0.08 0.00 3.10545 -99.3534 -3.10545 3.10545 0.95 0.000486748 0.000443631 0.0329099 0.0300614 40 2584 34 6.99608e+06 264882 706193. 2443.58 3.64 0.156567 0.137286 26914 176310 -1 2136 21 1835 2675 227564 50672 4.13542 4.13542 -138.895 -4.13542 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.023481 0.0208277 87 20 84 28 28 28 - fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 11.38 vpr 65.36 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 33844 -1 -1 15 30 0 0 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 66932 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 26.8 MiB 2.12 840 11324 4893 5954 477 65.4 MiB 0.08 0.00 3.76754 -121.829 -3.76754 3.76754 0.93 0.000459103 0.000419408 0.0342357 0.0313335 52 2682 40 6.99608e+06 220735 926341. 3205.33 6.02 0.224723 0.194905 29218 227130 -1 1878 19 1474 1986 162314 37165 3.92041 3.92041 -141.212 -3.92041 0 0 1.14541e+06 3963.36 0.43 0.06 0.22 -1 -1 0.43 0.0206246 0.0183853 88 58 30 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 20.80 vpr 65.74 MiB 0.02 7288 -1 -1 1 0.03 -1 -1 33668 -1 -1 15 32 0 0 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 67320 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 27.0 MiB 3.28 1278 12078 4354 6074 1650 65.7 MiB 0.10 0.00 2.96539 -111.067 -2.96539 2.96539 0.96 0.00050177 0.000455254 0.0392038 0.0357942 40 3144 27 6.99608e+06 220735 706193. 2443.58 14.30 0.274323 0.238923 26914 176310 -1 2818 21 2064 2511 274871 53563 3.62646 3.62646 -143.108 -3.62646 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0250019 0.0222836 104 88 0 0 91 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.29 vpr 65.19 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34060 -1 -1 25 31 0 0 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 66756 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 26.7 MiB 0.14 877 14908 5534 7362 2012 65.2 MiB 0.11 0.00 3.14275 -111.982 -3.14275 3.14275 0.93 0.000490261 0.000450216 0.0382794 0.0348819 44 2860 33 6.99608e+06 367892 787024. 2723.27 2.95 0.140358 0.123545 27778 195446 -1 2122 20 1868 2958 280716 59805 3.91782 3.91782 -145.726 -3.91782 0 0 997811. 3452.63 0.38 0.09 0.18 -1 -1 0.38 0.0230335 0.0204701 86 -1 124 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 6.90 vpr 65.85 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34076 -1 -1 17 32 0 0 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 67428 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 27.3 MiB 0.82 1333 8306 2071 5479 756 65.8 MiB 0.08 0.00 3.42564 -130.225 -3.42564 3.42564 0.95 0.000564497 0.000515255 0.0296679 0.0272067 44 3782 28 6.99608e+06 250167 787024. 2723.27 2.77 0.14476 0.127499 27778 195446 -1 2872 25 2431 3221 314069 59402 4.33031 4.33031 -166.32 -4.33031 0 0 997811. 3452.63 0.39 0.10 0.19 -1 -1 0.39 0.030991 0.02752 110 57 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 10.05 vpr 65.37 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34080 -1 -1 18 32 0 0 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 66940 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 26.9 MiB 0.70 1088 12898 5367 7230 301 65.4 MiB 0.11 0.00 4.10648 -138.929 -4.10648 4.10648 0.98 0.000569696 0.000518987 0.043639 0.0398267 46 3432 42 6.99608e+06 264882 828058. 2865.25 5.98 0.26969 0.235313 28066 200906 -1 2735 22 2373 3223 301547 61613 4.92499 4.92499 -185.183 -4.92499 0 0 1.01997e+06 3529.29 0.40 0.10 0.19 -1 -1 0.40 0.0290076 0.0257518 108 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 9.51 vpr 65.93 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33816 -1 -1 18 32 0 0 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 67512 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 27.1 MiB 0.73 1128 13966 4911 6415 2640 65.9 MiB 0.12 0.00 3.36648 -118.966 -3.36648 3.36648 0.95 0.000533169 0.000485665 0.045681 0.0417183 48 3377 31 6.99608e+06 264882 865456. 2994.66 5.44 0.234229 0.203627 28354 207349 -1 2800 23 2263 3204 294539 60766 4.02055 4.02055 -149.262 -4.02055 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.0281386 0.0249245 107 62 60 30 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 6.86 vpr 64.93 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 33612 -1 -1 13 30 0 0 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 66492 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 26.4 MiB 0.91 660 12557 5325 6774 458 64.9 MiB 0.09 0.00 3.04639 -105.015 -3.04639 3.04639 0.95 0.000427568 0.000389632 0.0367142 0.0335949 38 2898 42 6.99608e+06 191304 678818. 2348.85 2.83 0.13357 0.117428 26626 170182 -1 2057 22 1700 2314 214621 47360 4.06836 4.06836 -137.308 -4.06836 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0215007 0.0190321 76 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.30 vpr 65.75 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33728 -1 -1 18 30 0 0 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 67328 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 26.9 MiB 2.73 1089 15904 5541 8367 1996 65.8 MiB 0.13 0.00 3.93533 -134.024 -3.93533 3.93533 0.98 0.000545416 0.000496274 0.0531301 0.0485993 46 3085 33 6.99608e+06 264882 828058. 2865.25 2.22 0.163384 0.144394 28066 200906 -1 2421 23 2608 3745 274167 57753 4.47984 4.47984 -160.965 -4.47984 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0273478 0.0243004 105 58 60 30 60 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.89 vpr 65.82 MiB 0.02 7272 -1 -1 1 0.04 -1 -1 33992 -1 -1 22 32 0 0 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 67404 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.87 1370 13316 4446 6199 2671 65.8 MiB 0.11 0.00 3.42564 -123.628 -3.42564 3.42564 0.95 0.000629022 0.000571965 0.0454311 0.041443 44 3805 29 6.99608e+06 323745 787024. 2723.27 2.70 0.169876 0.149389 27778 195446 -1 2807 21 2354 2407 229188 46065 4.5809 4.5809 -164.819 -4.5809 0 0 997811. 3452.63 0.40 0.09 0.19 -1 -1 0.40 0.0307073 0.0274248 139 106 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.75 vpr 65.37 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 33876 -1 -1 22 31 0 0 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 66936 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 27.1 MiB 1.66 1139 12919 5335 7168 416 65.4 MiB 0.11 0.00 3.52904 -123.427 -3.52904 3.52904 0.99 0.000573259 0.00052241 0.0434249 0.039532 46 3131 24 6.99608e+06 323745 828058. 2865.25 2.73 0.187392 0.165712 28066 200906 -1 2324 23 2140 2571 200213 42332 4.14391 4.14391 -151.174 -4.14391 0 0 1.01997e+06 3529.29 0.40 0.08 0.19 -1 -1 0.40 0.0312541 0.0278115 125 79 31 31 93 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 24.84 vpr 65.90 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34076 -1 -1 22 30 0 0 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 67484 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 27.4 MiB 3.26 975 15273 6453 8066 754 65.9 MiB 0.13 0.00 3.35858 -106.582 -3.35858 3.35858 0.97 0.000576211 0.000526954 0.0495216 0.0452111 48 3349 38 6.99608e+06 323745 865456. 2994.66 18.16 0.361762 0.315394 28354 207349 -1 2466 30 2797 3975 423714 117031 4.1869 4.1869 -153.004 -4.1869 0 0 1.05005e+06 3633.38 0.41 0.14 0.20 -1 -1 0.41 0.0356857 0.0315426 114 83 26 26 90 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.29 vpr 65.91 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34016 -1 -1 18 32 0 0 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 67496 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.1 MiB 1.04 1039 15568 6650 8446 472 65.9 MiB 0.12 0.00 3.54484 -125.458 -3.54484 3.54484 0.97 0.000527744 0.000479529 0.0490687 0.0447023 48 3000 48 6.99608e+06 264882 865456. 2994.66 4.93 0.210959 0.185741 28354 207349 -1 2327 21 2508 3381 318062 70702 4.55901 4.55901 -164.009 -4.55901 0 0 1.05005e+06 3633.38 0.41 0.10 0.19 -1 -1 0.41 0.0278226 0.024822 110 58 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.09 vpr 65.69 MiB 0.02 7512 -1 -1 1 0.03 -1 -1 34108 -1 -1 20 29 0 0 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 67268 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 27.2 MiB 2.04 1011 12156 5017 6435 704 65.7 MiB 0.10 0.00 2.90529 -95.045 -2.90529 2.90529 0.95 0.000516389 0.000470691 0.0391213 0.0357485 48 2836 26 6.99608e+06 294314 865456. 2994.66 2.77 0.163096 0.143025 28354 207349 -1 2067 22 2094 2739 219638 52039 3.55311 3.55311 -125.494 -3.55311 0 0 1.05005e+06 3633.38 0.40 0.08 0.20 -1 -1 0.40 0.0267829 0.0237467 112 81 26 26 85 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 8.47 vpr 64.70 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33576 -1 -1 10 32 0 0 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 66256 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 26.3 MiB 0.78 706 9994 4217 5633 144 64.7 MiB 0.08 0.00 2.36125 -95.0479 -2.36125 2.36125 0.96 0.000425086 0.000387576 0.0308207 0.0282645 44 2114 24 6.99608e+06 147157 787024. 2723.27 4.49 0.181178 0.158329 27778 195446 -1 1792 19 1406 2196 202661 39785 3.06662 3.06662 -123.049 -3.06662 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0198042 0.0176578 62 -1 96 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 9.81 vpr 65.77 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33608 -1 -1 18 32 0 0 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 67352 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 27.3 MiB 0.74 1209 9872 3148 4640 2084 65.8 MiB 0.09 0.00 4.01233 -144.491 -4.01233 4.01233 0.95 0.000581917 0.000529745 0.0346484 0.0316577 48 3358 28 6.99608e+06 264882 865456. 2994.66 5.74 0.263993 0.230264 28354 207349 -1 2807 21 2775 3788 382669 76587 5.29584 5.29584 -190.405 -5.29584 0 0 1.05005e+06 3633.38 0.39 0.11 0.21 -1 -1 0.39 0.0276676 0.0246633 110 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 9.93 vpr 65.84 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 33992 -1 -1 17 32 0 0 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 67416 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 27.3 MiB 0.89 1101 13731 4149 7828 1754 65.8 MiB 0.11 0.00 3.76167 -136.697 -3.76167 3.76167 0.94 0.000572247 0.000518121 0.044447 0.0404392 44 4167 45 6.99608e+06 250167 787024. 2723.27 5.78 0.300338 0.261762 27778 195446 -1 2790 22 2877 3885 326372 68848 5.04524 5.04524 -186.487 -5.04524 0 0 997811. 3452.63 0.39 0.10 0.18 -1 -1 0.39 0.0283588 0.0252612 111 62 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 18.60 vpr 65.29 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 34032 -1 -1 13 32 0 0 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 66852 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 26.7 MiB 2.47 827 12302 5146 6841 315 65.3 MiB 0.09 0.00 2.55629 -90.2605 -2.55629 2.55629 0.96 0.000446928 0.000406721 0.036206 0.033084 40 2781 37 6.99608e+06 191304 706193. 2443.58 12.95 0.251232 0.217542 26914 176310 -1 2207 26 1890 2161 269286 78163 3.21466 3.21466 -124.419 -3.21466 0 0 926341. 3205.33 0.34 0.09 0.17 -1 -1 0.34 0.0253414 0.0223621 85 47 32 32 54 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 7.74 vpr 64.86 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33756 -1 -1 11 31 0 0 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 66420 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 26.5 MiB 0.23 827 6584 2301 3391 892 64.9 MiB 0.05 0.00 2.6052 -101.674 -2.6052 2.6052 0.94 0.000408305 0.000373041 0.0196844 0.0180512 40 1950 23 6.99608e+06 161872 706193. 2443.58 4.45 0.156325 0.135154 26914 176310 -1 1784 21 1375 2084 168099 34543 3.06662 3.06662 -126.236 -3.06662 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0199957 0.0177707 63 -1 93 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.04 vpr 65.56 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33916 -1 -1 17 32 0 0 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 67136 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 26.8 MiB 1.03 883 15306 5805 7397 2104 65.6 MiB 0.12 0.00 3.28468 -111.155 -3.28468 3.28468 0.96 0.000534402 0.000486459 0.0500142 0.0455729 44 3641 46 6.99608e+06 250167 787024. 2723.27 2.68 0.181355 0.159 27778 195446 -1 2096 25 2012 2400 184182 42382 4.30296 4.30296 -142.283 -4.30296 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0305247 0.0271537 102 56 60 32 58 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 9.91 vpr 65.82 MiB 0.02 7452 -1 -1 1 0.03 -1 -1 33812 -1 -1 19 32 0 0 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 67396 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 27.3 MiB 1.62 1310 12863 4974 6723 1166 65.8 MiB 0.11 0.00 3.50704 -125.989 -3.50704 3.50704 0.96 0.000553535 0.000503183 0.0425861 0.0387572 46 2950 23 6.99608e+06 279598 828058. 2865.25 4.98 0.226036 0.196818 28066 200906 -1 2463 23 2066 2451 203561 41077 4.35961 4.35961 -156.537 -4.35961 0 0 1.01997e+06 3529.29 0.39 0.08 0.20 -1 -1 0.39 0.028916 0.0256412 115 81 28 28 88 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 25.82 vpr 65.75 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34036 -1 -1 27 32 0 0 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 67324 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 27.0 MiB 0.41 1030 9679 2239 7121 319 65.7 MiB 0.10 0.00 3.52884 -122.322 -3.52884 3.52884 0.96 0.000575103 0.000523557 0.0302333 0.0276275 44 3524 38 6.99608e+06 397324 787024. 2723.27 22.09 0.313415 0.273308 27778 195446 -1 2529 23 2336 3714 327925 69001 4.43351 4.43351 -162.655 -4.43351 0 0 997811. 3452.63 0.39 0.10 0.19 -1 -1 0.39 0.0304158 0.0270321 100 -1 156 32 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 17.39 vpr 65.69 MiB 0.02 7348 -1 -1 1 0.03 -1 -1 34156 -1 -1 19 30 0 0 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 67268 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 27.0 MiB 1.00 965 9006 2605 5458 943 65.7 MiB 0.07 0.00 2.98539 -96.6942 -2.98539 2.98539 0.91 0.000495546 0.000455761 0.0275195 0.0252378 48 2658 40 6.99608e+06 279598 865456. 2994.66 13.21 0.289985 0.25043 28354 207349 -1 2014 20 1749 2446 214119 51887 3.43601 3.43601 -125.596 -3.43601 0 0 1.05005e+06 3633.38 0.40 0.08 0.21 -1 -1 0.40 0.0254573 0.0227138 101 47 60 30 56 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 6.54 vpr 64.65 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 34244 -1 -1 16 27 0 0 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 66204 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 26.2 MiB 1.52 649 11767 4976 6146 645 64.7 MiB 0.07 0.00 3.14605 -90.9377 -3.14605 3.14605 0.94 0.000391931 0.000356527 0.0304137 0.0277743 36 1916 45 6.99608e+06 235451 648988. 2245.63 1.94 0.136176 0.118905 26050 158493 -1 1600 23 1277 1773 155001 32961 3.43216 3.43216 -117.302 -3.43216 0 0 828058. 2865.25 0.33 0.06 0.16 -1 -1 0.33 0.0210693 0.0186643 67 26 54 27 27 27 - fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 8.77 vpr 66.00 MiB 0.02 7416 -1 -1 1 0.04 -1 -1 34160 -1 -1 21 32 0 0 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 67580 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 27.7 MiB 0.98 1387 16267 5306 8320 2641 66.0 MiB 0.15 0.00 3.71224 -127.436 -3.71224 3.71224 0.96 0.000636724 0.000581075 0.0593045 0.0540438 48 4596 28 6.99608e+06 309029 865456. 2994.66 4.37 0.214722 0.188677 28354 207349 -1 3471 21 2821 3928 463954 92655 4.72092 4.72092 -170.881 -4.72092 0 0 1.05005e+06 3633.38 0.40 0.13 0.20 -1 -1 0.40 0.0324637 0.0289377 141 85 62 31 95 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 10.19 vpr 65.76 MiB 0.02 7568 -1 -1 1 0.03 -1 -1 34228 -1 -1 22 31 0 0 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 67340 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 27.6 MiB 2.87 1360 10873 2955 6516 1402 65.8 MiB 0.09 0.00 4.12662 -139.924 -4.12662 4.12662 0.95 0.00056498 0.000511818 0.0367461 0.033366 40 3665 46 6.99608e+06 323745 706193. 2443.58 4.06 0.207427 0.182349 26914 176310 -1 3108 27 3215 3649 428350 94927 4.86674 4.86674 -175.831 -4.86674 0 0 926341. 3205.33 0.35 0.13 0.16 -1 -1 0.35 0.0341262 0.0301266 138 105 0 0 124 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 10.71 vpr 65.66 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 33792 -1 -1 15 32 0 0 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 67232 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 26.9 MiB 3.54 913 11402 4307 6069 1026 65.7 MiB 0.09 0.00 3.09393 -108.803 -3.09393 3.09393 0.95 0.000489423 0.000445258 0.0357579 0.0326287 48 2936 48 6.99608e+06 220735 865456. 2994.66 3.91 0.169481 0.147906 28354 207349 -1 1919 22 1569 1797 169470 40268 3.9786 3.9786 -143.668 -3.9786 0 0 1.05005e+06 3633.38 0.39 0.07 0.20 -1 -1 0.39 0.0243683 0.021596 102 86 0 0 89 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 23.13 vpr 65.68 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33964 -1 -1 16 32 0 0 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 67260 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 26.9 MiB 1.14 859 14184 4098 8238 1848 65.7 MiB 0.12 0.00 3.25275 -112.645 -3.25275 3.25275 0.98 0.000536376 0.000490927 0.0467368 0.0427561 48 2900 42 6.99608e+06 235451 865456. 2994.66 18.58 0.325955 0.284426 28354 207349 -1 2158 31 2292 3063 420957 121762 4.14942 4.14942 -147.159 -4.14942 0 0 1.05005e+06 3633.38 0.42 0.14 0.20 -1 -1 0.42 0.0356511 0.0315281 92 31 90 30 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 10.33 vpr 65.92 MiB 0.02 7296 -1 -1 1 0.04 -1 -1 34224 -1 -1 20 31 0 0 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 67500 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 27.3 MiB 1.80 1150 14303 5210 6691 2402 65.9 MiB 0.13 0.00 3.18065 -113.702 -3.18065 3.18065 0.96 0.000594561 0.000541397 0.0514291 0.0469105 46 3267 24 6.99608e+06 294314 828058. 2865.25 5.18 0.251526 0.219588 28066 200906 -1 2484 22 2359 3242 230658 49311 4.28872 4.28872 -156.389 -4.28872 0 0 1.01997e+06 3529.29 0.38 0.09 0.20 -1 -1 0.38 0.0296094 0.0263167 117 50 87 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 9.16 vpr 65.35 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 34136 -1 -1 20 30 0 0 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 66916 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 26.6 MiB 1.23 1074 15034 5140 7920 1974 65.3 MiB 0.12 0.00 2.91629 -101.949 -2.91629 2.91629 0.97 0.000526912 0.000480799 0.0473643 0.0432999 46 2924 21 6.99608e+06 294314 828058. 2865.25 4.62 0.228312 0.200218 28066 200906 -1 2390 20 1695 2407 191451 40276 3.31176 3.31176 -126.232 -3.31176 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0248457 0.02215 101 50 58 30 58 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.00 vpr 65.53 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33716 -1 -1 17 32 0 0 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 67104 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 27.0 MiB 0.75 1219 14431 5894 7189 1348 65.5 MiB 0.13 0.00 3.42564 -124.648 -3.42564 3.42564 0.95 0.000558657 0.000507996 0.0495234 0.0452201 44 3162 26 6.99608e+06 250167 787024. 2723.27 2.97 0.178813 0.157462 27778 195446 -1 2457 22 2276 2777 217246 44665 4.18901 4.18901 -157.635 -4.18901 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0277148 0.0245782 107 61 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 8.81 vpr 65.88 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 34084 -1 -1 18 32 0 0 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 67460 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 27.3 MiB 0.82 1121 9516 2286 6786 444 65.9 MiB 0.09 0.00 2.98529 -113.988 -2.98529 2.98529 0.94 0.000576179 0.000523523 0.0324034 0.0296236 42 3714 27 6.99608e+06 264882 744469. 2576.02 4.77 0.222076 0.192564 27202 183097 -1 2754 22 2339 2994 272122 58765 3.60016 3.60016 -142.565 -3.60016 0 0 949917. 3286.91 0.36 0.09 0.18 -1 -1 0.36 0.0278292 0.0246692 108 61 63 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.72 vpr 65.02 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 33956 -1 -1 14 29 0 0 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 66584 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 26.5 MiB 1.39 703 7975 3243 4416 316 65.0 MiB 0.06 0.00 2.67044 -92.1549 -2.67044 2.67044 0.97 0.000423383 0.000387211 0.024054 0.0220625 34 2381 40 6.99608e+06 206020 618332. 2139.56 2.24 0.123829 0.108486 25762 151098 -1 1740 20 1614 2069 159559 34702 3.56711 3.56711 -129.973 -3.56711 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0201104 0.017902 73 28 58 29 29 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 11.99 vpr 65.23 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33976 -1 -1 14 32 0 0 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 66800 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 26.9 MiB 3.00 782 13524 5494 6370 1660 65.2 MiB 0.09 0.00 3.03413 -98.808 -3.03413 3.03413 0.97 0.000462547 0.000420703 0.0397985 0.0362607 56 1959 22 6.99608e+06 206020 973134. 3367.25 5.63 0.188455 0.163979 29794 239141 -1 1671 24 1669 2033 236663 62576 3.9706 3.9706 -128.691 -3.9706 0 0 1.19926e+06 4149.71 0.43 0.09 0.23 -1 -1 0.43 0.0254566 0.0225601 91 79 0 0 82 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 9.71 vpr 65.61 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33724 -1 -1 17 31 0 0 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 67188 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 26.9 MiB 0.70 1113 9540 2479 6269 792 65.6 MiB 0.08 0.00 3.16964 -118.693 -3.16964 3.16964 0.97 0.000485733 0.000438137 0.0301837 0.0274767 44 2996 46 6.99608e+06 250167 787024. 2723.27 5.79 0.259343 0.224991 27778 195446 -1 2285 22 2082 2742 232694 49650 3.95076 3.95076 -153.935 -3.95076 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.0254133 0.0224992 92 29 93 31 31 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 7.71 vpr 65.18 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 34056 -1 -1 16 29 0 0 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 66740 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 26.6 MiB 1.94 718 11487 4796 6151 540 65.2 MiB 0.08 0.00 2.55329 -83.4486 -2.55329 2.55329 0.94 0.000414251 0.000378388 0.0319298 0.0292358 40 2314 31 6.99608e+06 235451 706193. 2443.58 2.65 0.135093 0.117928 26914 176310 -1 1833 22 1513 1735 174855 38529 3.53606 3.53606 -118.493 -3.53606 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.0213869 0.0189149 81 48 29 29 52 26 - fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 8.29 vpr 65.19 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 33892 -1 -1 13 32 0 0 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 66752 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 26.7 MiB 0.81 874 12628 5294 7161 173 65.2 MiB 0.09 0.00 2.94309 -113.391 -2.94309 2.94309 0.95 0.000464161 0.000423603 0.0385178 0.0351536 44 2516 33 6.99608e+06 191304 787024. 2723.27 4.29 0.198225 0.172618 27778 195446 -1 1929 21 1664 2105 177437 36062 3.71446 3.71446 -140.705 -3.71446 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0218293 0.0193503 79 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 20.06 vpr 65.81 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33664 -1 -1 19 31 0 0 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 67392 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 27.0 MiB 1.33 992 11474 4129 5634 1711 65.8 MiB 0.10 0.00 3.32078 -115.499 -3.32078 3.32078 0.95 0.000529193 0.000481655 0.0381783 0.0348748 46 3117 41 6.99608e+06 279598 828058. 2865.25 15.42 0.325837 0.283668 28066 200906 -1 2320 20 2105 2817 249537 54024 4.30725 4.30725 -154.082 -4.30725 0 0 1.01997e+06 3529.29 0.40 0.09 0.19 -1 -1 0.40 0.0273016 0.0244092 105 60 58 31 62 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 11.22 vpr 65.12 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33752 -1 -1 13 31 0 0 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 66684 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 26.6 MiB 2.90 736 10156 4154 5454 548 65.1 MiB 0.07 0.00 2.61074 -86.8893 -2.61074 2.61074 0.98 0.000466673 0.000428259 0.0312681 0.0286779 52 2123 28 6.99608e+06 191304 926341. 3205.33 5.01 0.186098 0.162408 29218 227130 -1 1629 19 1323 1688 134550 32216 3.18627 3.18627 -110.425 -3.18627 0 0 1.14541e+06 3963.36 0.43 0.06 0.22 -1 -1 0.43 0.0201905 0.0179137 81 49 31 31 53 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 9.89 vpr 65.41 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 34072 -1 -1 18 32 0 0 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 66984 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 26.7 MiB 1.78 1087 15034 6077 6939 2018 65.4 MiB 0.12 0.00 2.90049 -105.948 -2.90049 2.90049 0.96 0.000530796 0.000484049 0.0487272 0.0445224 40 3039 24 6.99608e+06 264882 706193. 2443.58 4.85 0.237606 0.207534 26914 176310 -1 2602 23 1928 2682 266389 53849 3.54211 3.54211 -138.489 -3.54211 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0281233 0.0249869 103 56 52 26 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 9.70 vpr 65.70 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33728 -1 -1 22 31 0 0 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 67272 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 27.4 MiB 0.91 1250 15151 4655 8452 2044 65.7 MiB 0.13 0.00 3.80117 -132.704 -3.80117 3.80117 0.98 0.000553897 0.000503381 0.0494645 0.0450103 48 3161 25 6.99608e+06 323745 865456. 2994.66 5.38 0.261837 0.229556 28354 207349 -1 2903 22 2657 3666 348511 71240 4.54134 4.54134 -164.217 -4.54134 0 0 1.05005e+06 3633.38 0.42 0.11 0.19 -1 -1 0.42 0.0306033 0.0272712 123 88 31 31 92 31 - fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 10.92 vpr 65.57 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33792 -1 -1 15 32 0 0 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 67148 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 27.0 MiB 2.78 1123 12247 3530 7399 1318 65.6 MiB 0.09 0.00 2.76294 -107.953 -2.76294 2.76294 0.94 0.000464227 0.000420599 0.0352465 0.032049 46 2610 29 6.99608e+06 220735 828058. 2865.25 4.98 0.190583 0.165234 28066 200906 -1 2197 22 1538 2252 174416 35764 3.14641 3.14641 -124.675 -3.14641 0 0 1.01997e+06 3529.29 0.39 0.07 0.18 -1 -1 0.39 0.0228726 0.0201821 88 54 32 32 60 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.64 vpr 65.34 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 33808 -1 -1 14 32 0 0 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 66912 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 26.9 MiB 0.89 822 13026 5192 6074 1760 65.3 MiB 0.10 0.00 2.68144 -98.8212 -2.68144 2.68144 0.95 0.00048201 0.000440493 0.0403237 0.0368913 46 2341 27 6.99608e+06 206020 828058. 2865.25 2.52 0.149529 0.13081 28066 200906 -1 2010 27 1836 2283 223075 46566 3.32751 3.32751 -129.345 -3.32751 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0270446 0.0238339 91 60 32 32 62 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.57 vpr 65.83 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34332 -1 -1 18 32 0 0 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 67412 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 27.0 MiB 1.00 1133 13432 3706 8622 1104 65.8 MiB 0.12 0.00 3.18865 -120.877 -3.18865 3.18865 0.97 0.000560366 0.000512407 0.0451671 0.0413482 40 3130 25 6.99608e+06 264882 706193. 2443.58 3.26 0.175413 0.154349 26914 176310 -1 2771 25 2643 3296 367635 79515 4.45931 4.45931 -164.177 -4.45931 0 0 926341. 3205.33 0.34 0.11 0.18 -1 -1 0.34 0.0300218 0.0265263 110 49 64 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.01 vpr 65.70 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33804 -1 -1 21 29 0 0 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 67280 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 26.9 MiB 1.80 1012 9338 2405 5407 1526 65.7 MiB 0.08 0.00 2.77374 -94.5628 -2.77374 2.77374 0.97 0.000508594 0.00046481 0.0300722 0.0275037 44 2964 42 6.99608e+06 309029 787024. 2723.27 2.96 0.158645 0.139523 27778 195446 -1 1827 21 1621 2193 115700 29949 3.19921 3.19921 -116.839 -3.19921 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0247406 0.0220038 101 54 56 29 58 29 - fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 7.69 vpr 65.79 MiB 0.02 7424 -1 -1 1 0.04 -1 -1 34320 -1 -1 22 32 0 0 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 67364 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 27.6 MiB 0.86 1299 16718 5576 8625 2517 65.8 MiB 0.14 0.00 3.68467 -132.476 -3.68467 3.68467 0.95 0.000614969 0.000558453 0.0568298 0.0516137 46 3792 42 6.99608e+06 323745 828058. 2865.25 3.49 0.224083 0.197328 28066 200906 -1 2900 21 2850 3330 268401 56673 4.67734 4.67734 -173.437 -4.67734 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0298819 0.0266296 140 117 0 0 128 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 12.94 vpr 64.86 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 33800 -1 -1 11 31 0 0 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 66416 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 26.3 MiB 1.14 514 10459 4246 5559 654 64.9 MiB 0.07 0.00 2.29975 -78.1061 -2.29975 2.29975 0.95 0.000405788 0.000371347 0.0293805 0.0269021 46 1748 29 6.99608e+06 161872 828058. 2865.25 8.66 0.213387 0.184549 28066 200906 -1 1358 21 1169 1761 123888 32302 2.76432 2.76432 -104.808 -2.76432 0 0 1.01997e+06 3529.29 0.38 0.06 0.19 -1 -1 0.38 0.0195655 0.0172865 57 -1 85 31 0 0 - fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 11.52 vpr 65.79 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 33840 -1 -1 19 32 0 0 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 67364 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 27.2 MiB 3.01 1130 14483 6123 8043 317 65.8 MiB 0.12 0.00 3.96833 -132.934 -3.96833 3.96833 0.94 0.000518188 0.000463593 0.0472882 0.0431157 46 3272 24 6.99608e+06 279598 828058. 2865.25 5.23 0.233017 0.202958 28066 200906 -1 2427 33 3211 4111 394942 106040 4.73664 4.73664 -168.445 -4.73664 0 0 1.01997e+06 3529.29 0.39 0.13 0.18 -1 -1 0.39 0.0372548 0.0326497 118 89 28 28 92 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 9.86 vpr 65.62 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 34048 -1 -1 16 32 0 0 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 67196 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.9 MiB 0.96 1227 11432 4105 5518 1809 65.6 MiB 0.10 0.00 3.78697 -141.648 -3.78697 3.78697 0.94 0.000510316 0.000465304 0.0371176 0.0339531 48 3138 40 6.99608e+06 235451 865456. 2994.66 5.61 0.227589 0.19758 28354 207349 -1 2754 23 2729 3466 407336 78043 4.79374 4.79374 -182.813 -4.79374 0 0 1.05005e+06 3633.38 0.40 0.11 0.20 -1 -1 0.40 0.0272514 0.0241167 110 93 0 0 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.59 vpr 66.03 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33800 -1 -1 19 32 0 0 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 67612 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 27.2 MiB 0.85 1085 15203 6053 6785 2365 66.0 MiB 0.13 0.00 2.81774 -106.087 -2.81774 2.81774 0.95 0.000564113 0.000515153 0.0504285 0.0460966 48 2924 30 6.99608e+06 279598 865456. 2994.66 5.35 0.242075 0.211748 28354 207349 -1 2335 28 2187 2752 345061 114049 3.22121 3.22121 -129.928 -3.22121 0 0 1.05005e+06 3633.38 0.39 0.13 0.20 -1 -1 0.39 0.0343138 0.030403 106 59 61 32 64 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 9.40 vpr 65.87 MiB 0.03 7596 -1 -1 1 0.04 -1 -1 34296 -1 -1 22 32 0 0 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 67448 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 27.6 MiB 0.80 1363 18230 5788 10225 2217 65.9 MiB 0.16 0.00 4.08848 -143.899 -4.08848 4.08848 0.95 0.000673622 0.000613882 0.0660954 0.0601585 44 4030 32 6.99608e+06 323745 787024. 2723.27 5.18 0.306116 0.268432 27778 195446 -1 2986 24 3079 3617 313209 62968 5.28775 5.28775 -186.919 -5.28775 0 0 997811. 3452.63 0.40 0.11 0.19 -1 -1 0.40 0.0349139 0.0310393 140 81 64 32 96 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 9.81 vpr 64.82 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33712 -1 -1 13 30 0 0 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 66376 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 26.5 MiB 2.50 607 9081 3829 4985 267 64.8 MiB 0.06 0.00 2.25155 -75.8841 -2.25155 2.25155 0.97 0.000367828 0.000335211 0.0232336 0.0212726 40 1445 23 6.99608e+06 191304 706193. 2443.58 4.18 0.141093 0.122015 26914 176310 -1 1281 27 836 873 134760 48020 2.63502 2.63502 -94.9304 -2.63502 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0212661 0.0186794 65 51 0 0 53 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 8.75 vpr 65.04 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33996 -1 -1 14 30 0 0 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 66596 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 26.6 MiB 3.74 904 9196 2794 5382 1020 65.0 MiB 0.07 0.00 2.78909 -102.456 -2.78909 2.78909 0.95 0.000435633 0.000398912 0.0273616 0.0250689 34 2310 24 6.99608e+06 206020 618332. 2139.56 1.95 0.108663 0.0951733 25762 151098 -1 1998 19 1436 2050 190585 38529 3.39481 3.39481 -133.642 -3.39481 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0197009 0.0174741 72 29 60 30 30 30 - fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 19.53 vpr 65.15 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 33684 -1 -1 12 32 0 0 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 66712 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 26.6 MiB 0.20 743 10156 3938 5001 1217 65.1 MiB 0.08 0.00 2.73464 -102.968 -2.73464 2.73464 0.98 0.0004753 0.000432453 0.0319294 0.0291603 50 2249 32 6.99608e+06 176588 902133. 3121.57 16.01 0.278123 0.242831 28642 213929 -1 1894 21 1916 2925 272758 69459 3.85871 3.85871 -146.296 -3.85871 0 0 1.08113e+06 3740.92 0.42 0.09 0.20 -1 -1 0.42 0.0240629 0.0215084 80 31 64 32 32 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.57 vpr 64.90 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34084 -1 -1 18 25 0 0 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 66456 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 26.5 MiB 0.77 564 11767 5035 5869 863 64.9 MiB 0.07 0.00 2.79475 -75.6465 -2.79475 2.79475 0.95 0.000346125 0.000315281 0.0287327 0.0262013 36 1947 29 6.99608e+06 264882 648988. 2245.63 2.80 0.120615 0.10519 26050 158493 -1 1476 20 1106 1367 120236 26851 3.20617 3.20617 -101.909 -3.20617 0 0 828058. 2865.25 0.32 0.05 0.14 -1 -1 0.32 0.0173978 0.0153788 68 19 50 25 25 25 - fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 31.43 vpr 65.46 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34196 -1 -1 20 32 0 0 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 67032 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 27.1 MiB 0.99 1355 15822 6352 8244 1226 65.5 MiB 0.14 0.00 3.11645 -118.464 -3.11645 3.11645 0.95 0.00057373 0.000522795 0.0539088 0.0491804 44 4124 47 6.99608e+06 294314 787024. 2723.27 27.09 0.340213 0.296868 27778 195446 -1 3160 22 2877 4145 347997 69612 4.13842 4.13842 -158.3 -4.13842 0 0 997811. 3452.63 0.37 0.10 0.19 -1 -1 0.37 0.0297309 0.026363 125 84 32 32 94 32 - fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 7.23 vpr 66.11 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33932 -1 -1 22 31 0 0 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 67700 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 27.4 MiB 0.97 1169 11245 4587 6328 330 66.1 MiB 0.10 0.00 3.44908 -119.058 -3.44908 3.44908 0.96 0.000576245 0.000526467 0.0378106 0.0346213 48 3336 27 6.99608e+06 323745 865456. 2994.66 2.90 0.174501 0.153171 28354 207349 -1 2689 21 2457 3320 315292 66571 4.20535 4.20535 -153.278 -4.20535 0 0 1.05005e+06 3633.38 0.39 0.10 0.21 -1 -1 0.39 0.0289238 0.0257512 121 88 29 29 93 31 - fixed_k6_frac_N8_22nm.xml mult_001.v common 8.93 vpr 65.18 MiB 0.02 7068 -1 -1 14 0.33 -1 -1 36500 -1 -1 19 32 0 0 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 66744 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 26.7 MiB 2.58 1207 10883 3399 5297 2187 65.2 MiB 0.10 0.00 6.88531 -140.929 -6.88531 6.88531 0.96 0.000630754 0.000570915 0.0422538 0.0383346 38 3353 25 6.79088e+06 255968 678818. 2348.85 2.87 0.196804 0.173224 25966 169698 -1 2557 18 1311 3679 194733 44112 7.12821 7.12821 -159.273 -7.12821 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0301592 0.0272426 134 185 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_002.v common 8.74 vpr 64.76 MiB 0.02 7256 -1 -1 14 0.36 -1 -1 36184 -1 -1 20 30 0 0 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 66312 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 26.3 MiB 2.02 1185 7736 2049 4631 1056 64.8 MiB 0.07 0.00 6.84273 -137.288 -6.84273 6.84273 0.94 0.000625178 0.000571967 0.030355 0.027522 36 3843 44 6.79088e+06 269440 648988. 2245.63 3.25 0.17875 0.157421 25390 158009 -1 3049 21 1629 4355 262822 58501 7.59448 7.59448 -162.337 -7.59448 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0344766 0.0309528 132 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_003.v common 8.68 vpr 64.95 MiB 0.02 7232 -1 -1 11 0.26 -1 -1 36396 -1 -1 20 32 0 0 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 66512 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 26.5 MiB 2.12 1223 14907 4838 7037 3032 65.0 MiB 0.13 0.00 5.53913 -119.059 -5.53913 5.53913 0.96 0.000595608 0.000532128 0.0548828 0.0496792 38 3294 23 6.79088e+06 269440 678818. 2348.85 3.07 0.211808 0.186982 25966 169698 -1 2554 15 1249 3700 189334 42833 5.78973 5.78973 -136.181 -5.78973 0 0 902133. 3121.57 0.35 0.07 0.16 -1 -1 0.35 0.0282934 0.0257185 138 179 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_004.v common 8.19 vpr 65.04 MiB 0.02 7024 -1 -1 12 0.43 -1 -1 36760 -1 -1 22 29 0 0 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 66600 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1131 13403 3788 8000 1615 65.0 MiB 0.11 0.00 6.20837 -119.597 -6.20837 6.20837 0.93 0.00065272 0.00059336 0.0507324 0.046196 34 3208 34 6.79088e+06 296384 618332. 2139.56 2.90 0.184126 0.162851 25102 150614 -1 2925 22 1468 4615 308192 66092 7.04627 7.04627 -148.494 -7.04627 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0357137 0.0320281 136 180 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_005.v common 9.62 vpr 65.29 MiB 0.02 7076 -1 -1 13 0.37 -1 -1 37064 -1 -1 24 32 0 0 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 66860 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 26.7 MiB 2.58 1487 9058 2433 5850 775 65.3 MiB 0.09 0.00 6.71311 -140.591 -6.71311 6.71311 0.93 0.000715039 0.000636776 0.0370564 0.0335714 38 3836 35 6.79088e+06 323328 678818. 2348.85 3.55 0.23651 0.209319 25966 169698 -1 3218 17 1649 4407 237676 53040 7.08901 7.08901 -162.407 -7.08901 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.0347104 0.0315862 160 222 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_006.v common 11.66 vpr 65.27 MiB 0.02 6992 -1 -1 12 0.35 -1 -1 36316 -1 -1 24 32 0 0 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 66836 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 26.7 MiB 3.00 1402 4573 806 3508 259 65.3 MiB 0.05 0.00 6.00472 -133.713 -6.00472 6.00472 0.94 0.000692211 0.000622345 0.0197997 0.018001 46 3465 25 6.79088e+06 323328 828058. 2865.25 5.14 0.224328 0.195831 27406 200422 -1 2700 17 1289 3868 188270 42904 6.63122 6.63122 -154.037 -6.63122 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.031143 0.0282178 150 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_007.v common 8.54 vpr 64.39 MiB 0.02 7048 -1 -1 12 0.22 -1 -1 36140 -1 -1 20 27 0 0 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 65936 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 25.9 MiB 1.83 936 8867 2145 5603 1119 64.4 MiB 0.07 0.00 6.07963 -115.463 -6.07963 6.07963 0.96 0.000505058 0.000460956 0.0296562 0.0271041 36 2816 26 6.79088e+06 269440 648988. 2245.63 3.45 0.149782 0.131324 25390 158009 -1 2418 15 1107 2844 183272 40940 6.07963 6.07963 -130.251 -6.07963 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0208647 0.0187893 101 125 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_008.v common 8.84 vpr 64.86 MiB 0.02 6988 -1 -1 11 0.22 -1 -1 36524 -1 -1 18 31 0 0 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 66420 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 26.5 MiB 1.63 1189 9181 2410 5800 971 64.9 MiB 0.08 0.00 5.53137 -115.544 -5.53137 5.53137 0.94 0.000588007 0.000526856 0.0348791 0.0315122 38 3249 20 6.79088e+06 242496 678818. 2348.85 3.89 0.17214 0.150737 25966 169698 -1 2518 17 1152 3384 189389 40548 5.65667 5.65667 -135.305 -5.65667 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0261131 0.0235502 118 171 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_009.v common 10.03 vpr 64.64 MiB 0.02 6876 -1 -1 12 0.21 -1 -1 36176 -1 -1 18 31 0 0 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 66188 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 26.1 MiB 3.13 1195 12681 3570 7352 1759 64.6 MiB 0.10 0.00 5.36693 -115.136 -5.36693 5.36693 0.93 0.000536785 0.0004878 0.0416696 0.0378339 36 3191 26 6.79088e+06 242496 648988. 2245.63 3.59 0.17619 0.154867 25390 158009 -1 2591 16 1184 2633 159883 35711 5.61753 5.61753 -131.811 -5.61753 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0250823 0.0227294 111 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_010.v common 8.04 vpr 64.76 MiB 0.02 7024 -1 -1 13 0.24 -1 -1 36228 -1 -1 16 32 0 0 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 66312 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 1.89 1095 6444 1316 4879 249 64.8 MiB 0.06 0.00 6.12227 -138.064 -6.12227 6.12227 0.95 0.000579774 0.00052621 0.0248429 0.0226588 38 2913 39 6.79088e+06 215552 678818. 2348.85 2.84 0.177173 0.155178 25966 169698 -1 2296 16 1070 2634 141323 31865 6.78448 6.78448 -157.584 -6.78448 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0246718 0.022221 107 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_011.v common 9.56 vpr 64.48 MiB 0.02 7084 -1 -1 12 0.22 -1 -1 36480 -1 -1 16 30 0 0 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 66028 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 26.0 MiB 1.74 815 11698 2819 8556 323 64.5 MiB 0.08 0.00 5.87167 -120.486 -5.87167 5.87167 0.95 0.000511871 0.000463744 0.0355117 0.0321109 38 2285 34 6.79088e+06 215552 678818. 2348.85 4.55 0.235937 0.205675 25966 169698 -1 1804 16 816 2145 117331 27016 6.15798 6.15798 -137.405 -6.15798 0 0 902133. 3121.57 0.34 0.05 0.16 -1 -1 0.34 0.0218298 0.0197186 93 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_012.v common 8.07 vpr 64.66 MiB 0.02 6872 -1 -1 12 0.18 -1 -1 36376 -1 -1 14 32 0 0 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 66216 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 26.2 MiB 2.41 1033 5556 1234 3958 364 64.7 MiB 0.05 0.00 5.57489 -132.09 -5.57489 5.57489 0.95 0.000506467 0.000459929 0.0198091 0.0180515 36 2862 48 6.79088e+06 188608 648988. 2245.63 2.33 0.131577 0.114996 25390 158009 -1 2458 33 1219 3219 455623 199004 5.70019 5.70019 -150.19 -5.70019 0 0 828058. 2865.25 0.34 0.18 0.15 -1 -1 0.34 0.0406705 0.0362237 94 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_013.v common 10.73 vpr 65.30 MiB 0.02 7216 -1 -1 13 0.34 -1 -1 36784 -1 -1 21 32 0 0 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 66868 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 26.5 MiB 1.79 1301 14965 4673 7835 2457 65.3 MiB 0.14 0.00 6.62696 -138.747 -6.62696 6.62696 0.98 0.000698066 0.000628686 0.0599565 0.0543895 44 3282 22 6.79088e+06 282912 787024. 2723.27 5.23 0.300129 0.26447 27118 194962 -1 2712 21 1282 3709 294059 89436 6.97485 6.97485 -153.81 -6.97485 0 0 997811. 3452.63 0.39 0.12 0.19 -1 -1 0.39 0.0382786 0.0345926 148 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_014.v common 21.53 vpr 65.48 MiB 0.02 7212 -1 -1 14 0.38 -1 -1 36700 -1 -1 21 32 0 0 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 67048 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 26.7 MiB 2.07 1439 10129 2578 5912 1639 65.5 MiB 0.10 0.00 7.51535 -153.524 -7.51535 7.51535 0.94 0.000708015 0.000639998 0.042987 0.0389645 36 4263 29 6.79088e+06 282912 648988. 2245.63 15.94 0.350556 0.307112 25390 158009 -1 3317 22 1743 4643 323600 71325 7.67985 7.67985 -172.722 -7.67985 0 0 828058. 2865.25 0.33 0.12 0.15 -1 -1 0.33 0.0401944 0.0360894 149 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_015.v common 15.91 vpr 64.55 MiB 0.02 6808 -1 -1 11 0.22 -1 -1 36280 -1 -1 20 29 0 0 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 66096 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 26.0 MiB 1.81 854 13206 4245 6384 2577 64.5 MiB 0.10 0.00 5.70368 -111.531 -5.70368 5.70368 0.93 0.000524078 0.000475726 0.0428888 0.0389401 38 2808 28 6.79088e+06 269440 678818. 2348.85 10.82 0.267849 0.233072 25966 169698 -1 2064 17 1121 2708 142350 33129 5.91508 5.91508 -124.28 -5.91508 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0245978 0.0220437 111 149 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_016.v common 9.81 vpr 65.30 MiB 0.02 7000 -1 -1 12 0.35 -1 -1 36644 -1 -1 20 32 0 0 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 66868 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 26.7 MiB 3.10 1288 14907 4729 7632 2546 65.3 MiB 0.14 0.00 6.24408 -131.418 -6.24408 6.24408 0.94 0.000684935 0.000620006 0.0607122 0.0550477 56 3130 28 6.79088e+06 269440 973134. 3367.25 2.99 0.23269 0.205255 29134 238657 -1 2806 18 1552 4795 262572 61053 6.71301 6.71301 -147.697 -6.71301 0 0 1.19926e+06 4149.71 0.44 0.09 0.24 -1 -1 0.44 0.0329714 0.0297725 146 211 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_017.v common 9.61 vpr 65.51 MiB 0.02 7212 -1 -1 13 0.34 -1 -1 36716 -1 -1 21 32 0 0 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 67080 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 26.7 MiB 1.96 1294 10501 3225 5467 1809 65.5 MiB 0.10 0.00 7.00635 -141.623 -7.00635 7.00635 0.97 0.000719345 0.000642994 0.0446705 0.0403375 38 3588 22 6.79088e+06 282912 678818. 2348.85 4.09 0.209169 0.18378 25966 169698 -1 2809 15 1299 3822 199455 44689 7.29615 7.29615 -159.764 -7.29615 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0318846 0.029041 144 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_018.v common 7.80 vpr 64.59 MiB 0.02 6956 -1 -1 12 0.19 -1 -1 36152 -1 -1 16 32 0 0 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 66144 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 26.1 MiB 2.57 925 10916 2952 6074 1890 64.6 MiB 0.08 0.00 5.36693 -123.503 -5.36693 5.36693 0.94 0.000524812 0.000475278 0.0363858 0.0330941 34 2663 42 6.79088e+06 215552 618332. 2139.56 2.03 0.172477 0.150433 25102 150614 -1 2152 15 975 2562 144653 34469 5.86813 5.86813 -147.357 -5.86813 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0220566 0.0199092 104 135 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_019.v common 10.43 vpr 64.11 MiB 0.02 6696 -1 -1 10 0.13 -1 -1 36100 -1 -1 12 30 0 0 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 65644 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 25.6 MiB 3.19 707 7204 1785 5164 255 64.1 MiB 0.05 0.00 4.41351 -102.294 -4.41351 4.41351 0.96 0.000394484 0.000358798 0.0209114 0.0190921 36 2083 34 6.79088e+06 161664 648988. 2245.63 4.09 0.149573 0.129527 25390 158009 -1 1813 17 850 1908 127365 29642 4.83631 4.83631 -121.526 -4.83631 0 0 828058. 2865.25 0.31 0.05 0.15 -1 -1 0.31 0.0170669 0.0152567 67 85 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_020.v common 8.90 vpr 64.71 MiB 0.02 6968 -1 -1 13 0.19 -1 -1 36524 -1 -1 16 31 0 0 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 66268 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 26.3 MiB 2.30 1007 5994 1309 4365 320 64.7 MiB 0.05 0.00 6.16152 -135.51 -6.16152 6.16152 0.92 0.00049347 0.000448879 0.020259 0.0185359 36 2543 18 6.79088e+06 215552 648988. 2245.63 3.47 0.179223 0.156459 25390 158009 -1 2262 16 980 2350 141726 32182 6.66272 6.66272 -153.309 -6.66272 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0211787 0.0190976 99 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_021.v common 8.39 vpr 64.98 MiB 0.02 6996 -1 -1 13 0.37 -1 -1 36996 -1 -1 22 32 0 0 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 66540 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 26.4 MiB 1.51 1345 9914 2546 6157 1211 65.0 MiB 0.10 0.00 6.366 -136.357 -6.366 6.366 0.94 0.00067039 0.000601162 0.0394751 0.0356437 36 3591 45 6.79088e+06 296384 648988. 2245.63 3.35 0.200078 0.176375 25390 158009 -1 3033 18 1498 4017 238265 53542 6.70613 6.70613 -158.804 -6.70613 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0336123 0.0302929 143 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_022.v common 9.17 vpr 65.18 MiB 0.02 7092 -1 -1 13 0.37 -1 -1 36408 -1 -1 19 32 0 0 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 66740 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 26.6 MiB 2.46 1380 11063 3219 6127 1717 65.2 MiB 0.10 0.00 6.55321 -142.566 -6.55321 6.55321 0.95 0.000660531 0.000593879 0.045042 0.0407172 44 3519 31 6.79088e+06 255968 787024. 2723.27 3.09 0.174951 0.153905 27118 194962 -1 2933 16 1383 3797 217545 47942 6.80802 6.80802 -157.8 -6.80802 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0293919 0.0266353 141 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_023.v common 12.21 vpr 63.98 MiB 0.02 6908 -1 -1 9 0.11 -1 -1 35860 -1 -1 16 26 0 0 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 65520 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 25.6 MiB 2.04 571 10614 3246 6037 1331 64.0 MiB 0.06 0.00 3.9703 -73.7999 -3.9703 3.9703 1.00 0.000343894 0.000311525 0.0246442 0.0224991 30 1877 23 6.79088e+06 215552 556674. 1926.21 7.07 0.168276 0.146 24526 138013 -1 1459 18 728 1600 97402 23874 4.42875 4.42875 -94.3802 -4.42875 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0162416 0.0145509 64 66 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_024.v common 14.11 vpr 65.39 MiB 0.02 7000 -1 -1 13 0.37 -1 -1 36596 -1 -1 22 32 0 0 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 66964 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 26.6 MiB 2.66 1418 10103 3085 6417 601 65.4 MiB 0.10 0.00 6.88531 -141.114 -6.88531 6.88531 0.96 0.000707871 0.000634469 0.0406704 0.0368038 36 4150 31 6.79088e+06 296384 648988. 2245.63 7.95 0.230777 0.204096 25390 158009 -1 3128 23 1793 5146 289452 63297 7.2178 7.2178 -160.775 -7.2178 0 0 828058. 2865.25 0.32 0.10 0.14 -1 -1 0.32 0.0372154 0.033225 137 209 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_025.v common 8.27 vpr 64.16 MiB 0.02 6652 -1 -1 8 0.10 -1 -1 36096 -1 -1 17 32 0 0 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 65700 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 25.8 MiB 3.19 673 11631 3304 6221 2106 64.2 MiB 0.07 0.00 3.9703 -84.9145 -3.9703 3.9703 0.98 0.000355232 0.000323442 0.0257806 0.0235522 34 1782 21 6.79088e+06 229024 618332. 2139.56 1.97 0.105679 0.0924436 25102 150614 -1 1594 15 642 1468 104141 23874 4.0956 4.0956 -98.7289 -4.0956 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0143293 0.0128271 64 60 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_026.v common 10.52 vpr 64.46 MiB 0.02 7116 -1 -1 15 0.30 -1 -1 36504 -1 -1 17 32 0 0 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 66004 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 26.1 MiB 2.40 1164 6206 1316 4251 639 64.5 MiB 0.06 0.00 7.38667 -150.094 -7.38667 7.38667 0.95 0.00060671 0.000552993 0.0245203 0.0223998 44 3151 28 6.79088e+06 229024 787024. 2723.27 4.65 0.242318 0.211342 27118 194962 -1 2489 17 1193 3205 187724 40906 7.38667 7.38667 -163.329 -7.38667 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0273461 0.0246833 118 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_027.v common 8.61 vpr 65.45 MiB 0.02 7116 -1 -1 12 0.32 -1 -1 36304 -1 -1 22 32 0 0 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 67016 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 26.6 MiB 2.04 1227 5567 1085 4272 210 65.4 MiB 0.06 0.00 5.95772 -127.546 -5.95772 5.95772 0.97 0.000716764 0.000644954 0.0249422 0.022677 36 3814 34 6.79088e+06 296384 648988. 2245.63 3.09 0.186594 0.164902 25390 158009 -1 3030 16 1443 4266 258199 60407 6.45892 6.45892 -149.689 -6.45892 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0322154 0.0292663 145 214 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_028.v common 10.44 vpr 65.08 MiB 0.02 7236 -1 -1 13 0.34 -1 -1 36620 -1 -1 20 32 0 0 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 66644 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 26.6 MiB 1.65 1176 5208 952 4097 159 65.1 MiB 0.06 0.00 6.38755 -132.959 -6.38755 6.38755 0.93 0.000674031 0.00061326 0.0228546 0.0208708 36 3432 33 6.79088e+06 269440 648988. 2245.63 5.41 0.208676 0.184735 25390 158009 -1 2737 22 1547 4451 248309 56235 6.88875 6.88875 -153.646 -6.88875 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0374769 0.0336761 136 194 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_029.v common 9.93 vpr 64.53 MiB 0.02 6804 -1 -1 12 0.21 -1 -1 36160 -1 -1 19 32 0 0 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 66080 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 26.0 MiB 2.73 1046 4403 824 3392 187 64.5 MiB 0.04 0.00 5.40269 -122.396 -5.40269 5.40269 0.95 0.000529527 0.000479005 0.0162552 0.0148704 44 2486 19 6.79088e+06 255968 787024. 2723.27 3.88 0.181987 0.157879 27118 194962 -1 2075 16 947 2533 141420 32092 5.52799 5.52799 -133.007 -5.52799 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0235134 0.02118 106 144 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_030.v common 10.06 vpr 64.44 MiB 0.02 6984 -1 -1 11 0.18 -1 -1 36404 -1 -1 20 30 0 0 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 65988 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 26.0 MiB 2.42 979 12008 3479 7251 1278 64.4 MiB 0.08 0.00 5.19894 -110.719 -5.19894 5.19894 0.94 0.000504221 0.000449343 0.0350107 0.0317389 44 2190 19 6.79088e+06 269440 787024. 2723.27 4.34 0.196355 0.171134 27118 194962 -1 1884 17 911 2417 127980 29254 5.32424 5.32424 -125.296 -5.32424 0 0 997811. 3452.63 0.40 0.06 0.18 -1 -1 0.40 0.0226562 0.0204523 97 122 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_031.v common 7.02 vpr 64.48 MiB 0.02 6828 -1 -1 11 0.20 -1 -1 36616 -1 -1 19 28 0 0 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 66028 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 26.0 MiB 1.55 1041 11064 3324 5841 1899 64.5 MiB 0.09 0.00 5.52794 -112.262 -5.52794 5.52794 0.97 0.000527661 0.000481349 0.0379888 0.0345982 34 2923 25 6.79088e+06 255968 618332. 2139.56 2.19 0.137142 0.121045 25102 150614 -1 2375 15 1094 2755 162965 37528 5.90384 5.90384 -127.236 -5.90384 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0222638 0.0201787 107 134 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_032.v common 14.66 vpr 64.49 MiB 0.02 6980 -1 -1 12 0.24 -1 -1 36016 -1 -1 19 32 0 0 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 66036 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 26.1 MiB 2.52 1120 4943 969 3627 347 64.5 MiB 0.06 0.00 5.82544 -133.42 -5.82544 5.82544 0.97 0.000615927 0.000561394 0.0211918 0.019228 34 3990 49 6.79088e+06 255968 618332. 2139.56 8.77 0.283292 0.247728 25102 150614 -1 3095 23 1609 3903 260258 59406 6.86698 6.86698 -172.273 -6.86698 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.0346342 0.0310833 119 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_033.v common 7.87 vpr 64.50 MiB 0.02 6852 -1 -1 11 0.21 -1 -1 35980 -1 -1 17 31 0 0 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 66052 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 26.0 MiB 1.99 920 10228 2707 5353 2168 64.5 MiB 0.09 0.00 5.40264 -123.039 -5.40264 5.40264 0.97 0.000549424 0.000498733 0.0363192 0.0330945 38 2686 33 6.79088e+06 229024 678818. 2348.85 2.50 0.183704 0.161766 25966 169698 -1 2145 23 1264 3531 175501 41429 6.02559 6.02559 -139.711 -6.02559 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.030136 0.0268319 107 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_034.v common 7.53 vpr 64.59 MiB 0.02 6940 -1 -1 10 0.17 -1 -1 36604 -1 -1 18 29 0 0 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 66140 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 26.1 MiB 1.80 899 9205 2421 5901 883 64.6 MiB 0.07 0.00 5.07702 -108.463 -5.07702 5.07702 1.00 0.000499042 0.000444402 0.0310244 0.0281792 32 2672 32 6.79088e+06 242496 586450. 2029.24 1.96 0.152435 0.134286 24814 144142 -1 2263 64 1068 3343 1403981 967083 5.70352 5.70352 -135.786 -5.70352 0 0 744469. 2576.02 0.31 0.56 0.14 -1 -1 0.31 0.0730695 0.0645836 103 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_035.v common 25.52 vpr 65.39 MiB 0.02 7108 -1 -1 13 0.43 -1 -1 37004 -1 -1 22 32 0 0 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 66964 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 27.0 MiB 1.96 1445 7079 1584 5263 232 65.4 MiB 0.08 0.00 6.58432 -140.322 -6.58432 6.58432 0.94 0.000738448 0.000669388 0.0318316 0.0288401 38 3998 23 6.79088e+06 296384 678818. 2348.85 19.86 0.382716 0.335424 25966 169698 -1 3300 27 1793 6233 582012 217695 6.83492 6.83492 -156.571 -6.83492 0 0 902133. 3121.57 0.34 0.20 0.16 -1 -1 0.34 0.0489307 0.0438692 162 238 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_036.v common 11.01 vpr 65.23 MiB 0.02 7072 -1 -1 13 0.40 -1 -1 36768 -1 -1 21 32 0 0 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 66800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 26.9 MiB 2.29 1368 14035 4287 7111 2637 65.2 MiB 0.13 0.00 6.20842 -135.639 -6.20842 6.20842 0.95 0.000680213 0.000611249 0.0559224 0.0503842 46 3364 22 6.79088e+06 282912 828058. 2865.25 5.05 0.262976 0.230305 27406 200422 -1 2702 16 1351 3938 199388 45358 6.83836 6.83836 -158.637 -6.83836 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.031213 0.0282478 152 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_037.v common 8.98 vpr 64.55 MiB 0.02 6960 -1 -1 12 0.17 -1 -1 36532 -1 -1 18 31 0 0 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 66104 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 26.1 MiB 1.58 953 10756 4361 6105 290 64.6 MiB 0.08 0.00 5.91508 -130.196 -5.91508 5.91508 0.94 0.000520889 0.000471262 0.035505 0.0321954 44 2417 27 6.79088e+06 242496 787024. 2723.27 4.13 0.212446 0.185375 27118 194962 -1 1954 17 905 2539 131178 30371 6.16568 6.16568 -143.603 -6.16568 0 0 997811. 3452.63 0.39 0.06 0.18 -1 -1 0.39 0.0233519 0.0210559 102 141 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_038.v common 8.69 vpr 65.34 MiB 0.02 7228 -1 -1 12 0.33 -1 -1 37224 -1 -1 23 31 0 0 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 66908 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 26.5 MiB 1.61 1455 9536 2650 5645 1241 65.3 MiB 0.10 0.00 6.45902 -138.574 -6.45902 6.45902 0.96 0.000725851 0.000655644 0.0410144 0.0373523 38 3819 30 6.79088e+06 309856 678818. 2348.85 3.57 0.227602 0.201237 25966 169698 -1 3028 16 1494 4719 234741 52859 6.79572 6.79572 -152.678 -6.79572 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0307957 0.0278891 148 217 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_039.v common 9.77 vpr 65.27 MiB 0.02 7072 -1 -1 14 0.44 -1 -1 36572 -1 -1 21 31 0 0 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 66836 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 26.7 MiB 1.47 1407 9051 2173 5719 1159 65.3 MiB 0.09 0.00 6.97147 -143.854 -6.97147 6.97147 0.97 0.0006874 0.000626149 0.0383466 0.034869 36 3544 29 6.79088e+06 282912 648988. 2245.63 4.64 0.288209 0.255637 25390 158009 -1 3078 17 1462 4113 251674 56151 7.22207 7.22207 -160.824 -7.22207 0 0 828058. 2865.25 0.33 0.09 0.15 -1 -1 0.33 0.030765 0.0277476 146 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_040.v common 23.35 vpr 65.02 MiB 0.02 7264 -1 -1 13 0.33 -1 -1 36948 -1 -1 21 31 0 0 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 66584 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 26.5 MiB 2.90 1258 12162 3945 6130 2087 65.0 MiB 0.11 0.00 6.79572 -139.555 -6.79572 6.79572 0.94 0.000654364 0.000596574 0.0458888 0.0417062 40 3448 39 6.79088e+06 282912 706193. 2443.58 16.92 0.367763 0.320415 26254 175826 -1 3013 23 1701 4578 316848 67455 7.19958 7.19958 -162.92 -7.19958 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.0344778 0.0308326 126 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_041.v common 13.18 vpr 65.04 MiB 0.02 7060 -1 -1 12 0.32 -1 -1 36756 -1 -1 23 31 0 0 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 66600 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 26.6 MiB 1.19 1319 12182 3409 7340 1433 65.0 MiB 0.10 0.00 6.13346 -132.947 -6.13346 6.13346 1.01 0.000669576 0.000606394 0.0446134 0.040444 36 3516 49 6.79088e+06 309856 648988. 2245.63 8.50 0.234458 0.206092 25390 158009 -1 3010 19 1315 3862 246168 53541 6.25876 6.25876 -148.145 -6.25876 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.030602 0.0274356 135 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_042.v common 7.58 vpr 64.80 MiB 0.02 6960 -1 -1 12 0.24 -1 -1 36384 -1 -1 17 32 0 0 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 66356 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 1.46 1008 11106 4041 5130 1935 64.8 MiB 0.09 0.00 5.78552 -118.279 -5.78552 5.78552 0.96 0.000585439 0.000531654 0.0403164 0.0366803 36 3392 37 6.79088e+06 229024 648988. 2245.63 2.77 0.165807 0.145519 25390 158009 -1 2422 23 1348 3624 225608 51747 6.24054 6.24054 -140.117 -6.24054 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.032002 0.0284919 113 169 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_043.v common 9.13 vpr 65.38 MiB 0.02 7180 -1 -1 14 0.58 -1 -1 36748 -1 -1 25 32 0 0 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 66948 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 26.9 MiB 1.73 1467 14147 4008 8155 1984 65.4 MiB 0.14 0.00 6.95723 -148.867 -6.95723 6.95723 0.97 0.000768692 0.000696488 0.0603062 0.054557 40 3567 19 6.79088e+06 336800 706193. 2443.58 3.46 0.249416 0.221342 26254 175826 -1 3568 18 1704 4947 313530 68183 7.17511 7.17511 -169.569 -7.17511 0 0 926341. 3205.33 0.35 0.11 0.17 -1 -1 0.35 0.0380209 0.0343515 169 244 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_044.v common 13.91 vpr 64.72 MiB 0.02 6824 -1 -1 11 0.24 -1 -1 36500 -1 -1 18 31 0 0 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 66276 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 26.2 MiB 2.23 1052 10756 3360 5843 1553 64.7 MiB 0.09 0.00 5.69587 -118.416 -5.69587 5.69587 1.00 0.000570823 0.000517288 0.0389035 0.0352511 34 3236 40 6.79088e+06 242496 618332. 2139.56 8.28 0.321895 0.283204 25102 150614 -1 2721 18 1428 3799 265354 58365 5.89608 5.89608 -138.067 -5.89608 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.028515 0.0256427 113 153 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_045.v common 9.74 vpr 64.95 MiB 0.02 7060 -1 -1 13 0.34 -1 -1 36680 -1 -1 19 31 0 0 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 66512 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 26.5 MiB 1.96 1144 5956 1217 4545 194 65.0 MiB 0.06 0.00 6.29796 -125.135 -6.29796 6.29796 0.95 0.00057174 0.000518801 0.0245595 0.0223143 36 3232 30 6.79088e+06 255968 648988. 2245.63 4.36 0.191861 0.168593 25390 158009 -1 2636 19 1251 3814 232746 51087 6.69489 6.69489 -141.968 -6.69489 0 0 828058. 2865.25 0.33 0.09 0.14 -1 -1 0.33 0.0325835 0.0293621 132 175 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_046.v common 24.16 vpr 65.41 MiB 0.02 7212 -1 -1 12 0.33 -1 -1 36600 -1 -1 21 32 0 0 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 66980 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 26.6 MiB 1.77 1408 7525 1730 5097 698 65.4 MiB 0.08 0.00 5.91857 -133.131 -5.91857 5.91857 0.97 0.000724491 0.000658274 0.0335766 0.0305611 38 3995 45 6.79088e+06 282912 678818. 2348.85 18.86 0.393618 0.344386 25966 169698 -1 3154 17 1459 4438 238029 52470 6.29098 6.29098 -153.12 -6.29098 0 0 902133. 3121.57 0.33 0.09 0.17 -1 -1 0.33 0.0326464 0.0294603 153 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_047.v common 8.78 vpr 64.63 MiB 0.02 7176 -1 -1 13 0.30 -1 -1 36572 -1 -1 19 32 0 0 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 66180 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 26.2 MiB 1.65 1284 10883 2759 6457 1667 64.6 MiB 0.10 0.00 6.33023 -134.932 -6.33023 6.33023 0.94 0.000620821 0.000562899 0.0420583 0.0382927 38 3221 26 6.79088e+06 255968 678818. 2348.85 3.70 0.196972 0.173505 25966 169698 -1 2765 16 1268 3587 218567 52311 6.95673 6.95673 -157.948 -6.95673 0 0 902133. 3121.57 0.33 0.08 0.17 -1 -1 0.33 0.0279624 0.025358 131 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_048.v common 8.41 vpr 64.91 MiB 0.02 7248 -1 -1 13 0.27 -1 -1 36420 -1 -1 17 32 0 0 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 66464 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 26.5 MiB 2.50 1077 10931 3598 5001 2332 64.9 MiB 0.10 0.00 6.53393 -136.797 -6.53393 6.53393 0.96 0.000618149 0.00056103 0.0421831 0.0383411 36 3157 41 6.79088e+06 229024 648988. 2245.63 2.49 0.188599 0.166524 25390 158009 -1 2534 20 1281 3370 199525 45177 6.84257 6.84257 -155.883 -6.84257 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0306785 0.0274704 118 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_049.v common 10.57 vpr 65.33 MiB 0.02 7204 -1 -1 12 0.34 -1 -1 36756 -1 -1 23 32 0 0 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 66896 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 26.8 MiB 2.44 1343 8919 2074 5792 1053 65.3 MiB 0.08 0.00 6.24757 -138.882 -6.24757 6.24757 0.94 0.000642113 0.000580187 0.034658 0.0313951 36 3621 45 6.79088e+06 309856 648988. 2245.63 4.69 0.238815 0.210822 25390 158009 -1 2921 17 1306 4060 237590 52423 6.74877 6.74877 -161.24 -6.74877 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0315945 0.0285252 150 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_050.v common 10.66 vpr 65.45 MiB 0.02 7228 -1 -1 13 0.35 -1 -1 36576 -1 -1 20 32 0 0 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 67020 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 26.7 MiB 2.66 1424 6855 1530 4759 566 65.4 MiB 0.07 0.00 6.58776 -143.42 -6.58776 6.58776 0.94 0.000671813 0.000607164 0.029498 0.0267728 38 3481 32 6.79088e+06 269440 678818. 2348.85 4.54 0.209399 0.184445 25966 169698 -1 2839 15 1384 3716 195749 43958 7.08896 7.08896 -166.135 -7.08896 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0298836 0.0271943 143 204 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_051.v common 11.40 vpr 64.75 MiB 0.02 7020 -1 -1 14 0.34 -1 -1 36796 -1 -1 18 32 0 0 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 66308 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 26.4 MiB 2.70 1221 7558 1837 5223 498 64.8 MiB 0.07 0.00 7.08907 -148.787 -7.08907 7.08907 0.95 0.000601899 0.000544776 0.0295709 0.0269116 40 2996 26 6.79088e+06 242496 706193. 2443.58 5.18 0.283275 0.247743 26254 175826 -1 2746 20 1265 3646 219764 48915 7.33967 7.33967 -167.25 -7.33967 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0313643 0.0282534 123 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_052.v common 12.04 vpr 64.79 MiB 0.02 6928 -1 -1 13 0.35 -1 -1 36740 -1 -1 20 32 0 0 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 66344 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 26.3 MiB 4.11 1312 8502 1906 5672 924 64.8 MiB 0.08 0.00 6.66621 -141.12 -6.66621 6.66621 0.94 0.000646041 0.000586557 0.0341186 0.0310424 44 3035 26 6.79088e+06 269440 787024. 2723.27 4.38 0.245702 0.21486 27118 194962 -1 2638 16 1285 3463 180778 41434 6.87761 6.87761 -154.292 -6.87761 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0282741 0.0256181 134 198 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_053.v common 8.03 vpr 65.18 MiB 0.02 7300 -1 -1 13 0.37 -1 -1 36676 -1 -1 23 31 0 0 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 66740 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 26.4 MiB 1.58 1336 9725 2391 6910 424 65.2 MiB 0.10 0.00 6.96028 -144.325 -6.96028 6.96028 0.95 0.000708575 0.000630607 0.0410853 0.0370219 38 4314 42 6.79088e+06 309856 678818. 2348.85 2.93 0.200477 0.175776 25966 169698 -1 2912 17 1693 4887 245951 56281 7.46147 7.46147 -166.788 -7.46147 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0319434 0.0287763 154 218 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_054.v common 10.27 vpr 65.33 MiB 0.02 6996 -1 -1 12 0.37 -1 -1 36560 -1 -1 24 32 0 0 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 66900 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 26.5 MiB 1.55 1335 12373 3606 6623 2144 65.3 MiB 0.11 0.00 6.24752 -135.566 -6.24752 6.24752 0.96 0.000680164 0.000620306 0.0481545 0.043638 38 4076 48 6.79088e+06 323328 678818. 2348.85 5.17 0.265704 0.234046 25966 169698 -1 2879 22 1514 4310 256340 74109 6.74877 6.74877 -157.78 -6.74877 0 0 902133. 3121.57 0.34 0.10 0.15 -1 -1 0.34 0.0378483 0.0339703 157 229 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_055.v common 9.37 vpr 64.37 MiB 0.02 6784 -1 -1 11 0.16 -1 -1 36344 -1 -1 13 32 0 0 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 65912 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 25.9 MiB 1.82 922 7412 1713 5080 619 64.4 MiB 0.06 0.00 5.22351 -115.977 -5.22351 5.22351 0.99 0.000503186 0.000458617 0.025422 0.0232133 46 2127 21 6.79088e+06 175136 828058. 2865.25 4.18 0.180876 0.158255 27406 200422 -1 1749 14 864 2149 113379 26515 5.59941 5.59941 -132.277 -5.59941 0 0 1.01997e+06 3529.29 0.39 0.05 0.19 -1 -1 0.39 0.01989 0.017941 90 121 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_056.v common 8.91 vpr 64.82 MiB 0.02 6884 -1 -1 13 0.24 -1 -1 36676 -1 -1 17 32 0 0 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 66380 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 26.2 MiB 3.12 1117 10056 2741 5089 2226 64.8 MiB 0.09 0.00 6.38411 -138.388 -6.38411 6.38411 0.98 0.000580903 0.000528369 0.0366186 0.0334166 38 2923 25 6.79088e+06 229024 678818. 2348.85 2.39 0.183027 0.161969 25966 169698 -1 2385 15 1114 2800 149305 33890 6.88531 6.88531 -162.544 -6.88531 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0241745 0.0217929 113 150 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_057.v common 9.54 vpr 65.96 MiB 0.02 7164 -1 -1 14 0.57 -1 -1 36692 -1 -1 24 32 0 0 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 67540 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 27.2 MiB 1.35 1515 15883 4784 8717 2382 66.0 MiB 0.16 0.00 7.16747 -150.878 -7.16747 7.16747 0.95 0.000799563 0.000724908 0.0703177 0.0636523 44 4701 38 6.79088e+06 323328 787024. 2723.27 4.26 0.255473 0.225354 27118 194962 -1 3491 20 1952 6078 349605 78801 7.50416 7.50416 -167.657 -7.50416 0 0 997811. 3452.63 0.38 0.12 0.19 -1 -1 0.38 0.0416946 0.0376878 180 266 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_058.v common 8.72 vpr 65.63 MiB 0.02 6980 -1 -1 13 0.42 -1 -1 36924 -1 -1 21 32 0 0 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 67204 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 27.0 MiB 3.01 1433 4735 888 3424 423 65.6 MiB 0.06 0.00 6.9672 -152.576 -6.9672 6.9672 0.94 0.000717423 0.000644992 0.0227575 0.0206535 38 3693 20 6.79088e+06 282912 678818. 2348.85 2.19 0.162433 0.142555 25966 169698 -1 2914 16 1291 3608 188091 42213 7.3431 7.3431 -172.867 -7.3431 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0322034 0.0291357 154 223 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_059.v common 13.58 vpr 64.39 MiB 0.02 6920 -1 -1 11 0.21 -1 -1 36628 -1 -1 17 30 0 0 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 65932 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 25.9 MiB 0.87 884 13937 6023 7591 323 64.4 MiB 0.11 0.00 5.65673 -120.617 -5.65673 5.65673 0.98 0.000540556 0.000492673 0.0463892 0.0422108 36 2560 46 6.79088e+06 229024 648988. 2245.63 9.39 0.294456 0.257091 25390 158009 -1 1946 18 972 2746 148293 35275 5.74283 5.74283 -132.344 -5.74283 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.023373 0.0210129 99 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_060.v common 25.52 vpr 65.41 MiB 0.02 7300 -1 -1 15 0.52 -1 -1 37492 -1 -1 24 32 0 0 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 66984 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 26.9 MiB 1.51 1539 13543 3429 7947 2167 65.4 MiB 0.13 0.00 7.89136 -160.045 -7.89136 7.89136 0.90 0.000770148 0.000697591 0.0565086 0.0512327 38 4506 50 6.79088e+06 323328 678818. 2348.85 20.35 0.462661 0.407225 25966 169698 -1 3489 18 1784 5296 302535 66094 8.1454 8.1454 -180.583 -8.1454 0 0 902133. 3121.57 0.34 0.11 0.17 -1 -1 0.34 0.0408747 0.0371455 172 240 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_061.v common 8.45 vpr 65.03 MiB 0.02 7128 -1 -1 13 0.41 -1 -1 36436 -1 -1 22 32 0 0 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 66588 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 26.5 MiB 1.42 1376 11426 3439 6869 1118 65.0 MiB 0.11 0.00 6.5798 -147.556 -6.5798 6.5798 0.94 0.000696809 0.000627237 0.0460092 0.0415961 36 4030 43 6.79088e+06 296384 648988. 2245.63 3.44 0.236778 0.209149 25390 158009 -1 3248 21 1541 4155 244662 54499 6.99141 6.99141 -170.195 -6.99141 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0365541 0.0329283 149 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_062.v common 8.06 vpr 64.61 MiB 0.02 7016 -1 -1 11 0.16 -1 -1 36444 -1 -1 16 32 0 0 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 66164 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 26.2 MiB 2.08 983 12292 4495 6144 1653 64.6 MiB 0.10 0.00 5.49998 -127.786 -5.49998 5.49998 0.95 0.000521985 0.00047176 0.0397932 0.0360364 36 2582 20 6.79088e+06 215552 648988. 2245.63 2.78 0.160021 0.140511 25390 158009 -1 2045 15 900 2216 121610 28137 5.82549 5.82549 -142.367 -5.82549 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0215848 0.0194452 97 143 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_063.v common 10.58 vpr 65.46 MiB 0.02 7380 -1 -1 12 0.35 -1 -1 36652 -1 -1 21 32 0 0 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 67032 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 26.6 MiB 1.85 1368 12733 3238 7715 1780 65.5 MiB 0.11 0.00 6.44783 -141.106 -6.44783 6.44783 0.94 0.000642962 0.00057549 0.0507737 0.0456668 44 3391 29 6.79088e+06 282912 787024. 2723.27 5.14 0.332536 0.292178 27118 194962 -1 2841 20 1343 4246 236952 52196 6.74877 6.74877 -155.813 -6.74877 0 0 997811. 3452.63 0.39 0.09 0.18 -1 -1 0.39 0.0355562 0.0320004 152 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_064.v common 22.00 vpr 64.85 MiB 0.02 6996 -1 -1 12 0.26 -1 -1 36252 -1 -1 16 32 0 0 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 66404 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 26.3 MiB 2.20 1123 12464 4867 6424 1173 64.8 MiB 0.11 0.00 5.91857 -129.518 -5.91857 5.91857 0.96 0.000590574 0.000537573 0.0466347 0.0423494 40 2962 34 6.79088e+06 215552 706193. 2443.58 16.29 0.340779 0.297752 26254 175826 -1 2644 25 1529 4204 344174 103466 6.45543 6.45543 -151.176 -6.45543 0 0 926341. 3205.33 0.37 0.13 0.17 -1 -1 0.37 0.0362195 0.0323432 115 158 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_065.v common 5.72 vpr 64.54 MiB 0.02 6876 -1 -1 12 0.21 -1 -1 36504 -1 -1 19 30 0 0 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 66084 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 26.1 MiB 1.54 903 12506 3860 6811 1835 64.5 MiB 0.09 0.00 6.47016 -128.362 -6.47016 6.47016 0.90 0.000502673 0.000457608 0.0393121 0.0358888 30 2375 28 6.79088e+06 255968 556674. 1926.21 1.12 0.120147 0.106455 24526 138013 -1 1871 16 813 2396 107693 26192 6.47016 6.47016 -142.039 -6.47016 0 0 706193. 2443.58 0.27 0.05 0.12 -1 -1 0.27 0.0224709 0.020318 105 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_066.v common 8.75 vpr 65.12 MiB 0.02 7196 -1 -1 12 0.37 -1 -1 36532 -1 -1 24 29 0 0 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 66688 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1104 15337 5572 7539 2226 65.1 MiB 0.13 0.00 6.68272 -126.167 -6.68272 6.68272 0.94 0.000662638 0.000599666 0.0583079 0.0528041 38 2928 24 6.79088e+06 323328 678818. 2348.85 3.44 0.218414 0.192113 25966 169698 -1 2288 15 1133 3577 175168 40755 6.80802 6.80802 -136.323 -6.80802 0 0 902133. 3121.57 0.36 0.07 0.16 -1 -1 0.36 0.0303203 0.0275913 144 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_067.v common 11.26 vpr 65.59 MiB 0.02 7124 -1 -1 14 0.41 -1 -1 36440 -1 -1 22 32 0 0 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 67168 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 26.9 MiB 3.07 1439 7835 2127 5026 682 65.6 MiB 0.08 0.00 6.81035 -143.688 -6.81035 6.81035 0.94 0.000710797 0.000638068 0.0340477 0.0308765 38 3931 34 6.79088e+06 296384 678818. 2348.85 4.63 0.22123 0.194262 25966 169698 -1 3161 19 1791 4542 235809 53787 7.18625 7.18625 -167.788 -7.18625 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.035571 0.0320954 155 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_068.v common 9.55 vpr 65.07 MiB 0.02 7056 -1 -1 12 0.30 -1 -1 36720 -1 -1 19 32 0 0 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 66636 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 26.6 MiB 1.75 1301 12863 4333 6208 2322 65.1 MiB 0.12 0.00 6.25532 -137.4 -6.25532 6.25532 0.97 0.000688679 0.000623078 0.0515366 0.0467402 38 3709 46 6.79088e+06 255968 678818. 2348.85 4.28 0.242262 0.213661 25966 169698 -1 2974 18 1410 4157 255350 55621 6.63122 6.63122 -157.373 -6.63122 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0309885 0.0278948 137 191 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_069.v common 7.50 vpr 64.31 MiB 0.02 6904 -1 -1 12 0.18 -1 -1 36540 -1 -1 15 32 0 0 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 65852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 25.9 MiB 1.68 955 5994 1268 4551 175 64.3 MiB 0.05 0.00 5.91857 -125.686 -5.91857 5.91857 0.93 0.000489958 0.000445408 0.020424 0.0186461 34 2756 25 6.79088e+06 202080 618332. 2139.56 2.65 0.139811 0.122153 25102 150614 -1 2191 15 917 2464 158401 34971 6.41977 6.41977 -149.168 -6.41977 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0210203 0.0189172 95 126 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_070.v common 10.78 vpr 64.45 MiB 0.02 7048 -1 -1 12 0.27 -1 -1 36332 -1 -1 18 31 0 0 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 66000 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 26.1 MiB 2.42 1085 10756 3299 5343 2114 64.5 MiB 0.09 0.00 5.87937 -127.933 -5.87937 5.87937 0.94 0.000604569 0.000547452 0.0401532 0.0364154 46 2515 18 6.79088e+06 242496 828058. 2865.25 4.90 0.207734 0.181872 27406 200422 -1 2154 17 1028 2901 143757 33110 6.20488 6.20488 -140.602 -6.20488 0 0 1.01997e+06 3529.29 0.39 0.06 0.19 -1 -1 0.39 0.02707 0.0243784 114 168 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_071.v common 21.06 vpr 64.86 MiB 0.02 6940 -1 -1 11 0.24 -1 -1 36568 -1 -1 22 30 0 0 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 66420 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 26.4 MiB 3.40 1231 5940 1419 3879 642 64.9 MiB 0.06 0.00 5.61753 -119.458 -5.61753 5.61753 0.95 0.000638383 0.000562894 0.0249125 0.0225251 40 2942 32 6.79088e+06 296384 706193. 2443.58 14.26 0.325354 0.283193 26254 175826 -1 2811 19 1277 3905 245905 53575 5.85688 5.85688 -138.65 -5.85688 0 0 926341. 3205.33 0.36 0.09 0.17 -1 -1 0.36 0.0323825 0.0292566 129 186 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_072.v common 10.38 vpr 64.82 MiB 0.02 7232 -1 -1 11 0.26 -1 -1 36340 -1 -1 21 28 0 0 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 66376 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 26.4 MiB 1.70 1038 12331 4331 5522 2478 64.8 MiB 0.10 0.00 5.95423 -109.675 -5.95423 5.95423 0.95 0.000575417 0.000522929 0.0437856 0.0397303 40 2850 26 6.79088e+06 282912 706193. 2443.58 5.26 0.262534 0.228952 26254 175826 -1 2507 17 1158 3230 210014 46691 6.07953 6.07953 -124.911 -6.07953 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0295391 0.0267845 125 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_073.v common 9.09 vpr 64.57 MiB 0.02 7088 -1 -1 13 0.23 -1 -1 36440 -1 -1 16 30 0 0 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 66120 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 26.1 MiB 3.61 1071 10868 2961 6635 1272 64.6 MiB 0.09 0.00 6.00472 -122.546 -6.00472 6.00472 0.96 0.000516365 0.000469872 0.0373997 0.0340076 38 2634 25 6.79088e+06 215552 678818. 2348.85 2.15 0.160316 0.140236 25966 169698 -1 2145 15 981 2579 133153 30641 6.13002 6.13002 -136.569 -6.13002 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0218961 0.0196749 104 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_074.v common 18.05 vpr 64.93 MiB 0.02 7044 -1 -1 12 0.25 -1 -1 36532 -1 -1 20 32 0 0 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 66484 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 26.5 MiB 2.49 1163 6123 1243 4041 839 64.9 MiB 0.05 0.00 6.03612 -137.142 -6.03612 6.03612 0.98 0.00060398 0.000554582 0.0225361 0.0205176 36 3337 43 6.79088e+06 269440 648988. 2245.63 12.18 0.305382 0.268008 25390 158009 -1 2715 18 1215 3178 199011 43879 6.16142 6.16142 -153.216 -6.16142 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.029679 0.0267641 125 174 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_075.v common 9.13 vpr 64.94 MiB 0.02 6988 -1 -1 13 0.36 -1 -1 36428 -1 -1 20 31 0 0 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 66496 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 26.4 MiB 2.36 1247 8183 2047 4915 1221 64.9 MiB 0.08 0.00 6.54518 -135.608 -6.54518 6.54518 0.95 0.000627008 0.000566132 0.0325958 0.0295951 34 3382 37 6.79088e+06 269440 618332. 2139.56 3.31 0.204228 0.179102 25102 150614 -1 2746 19 1308 3840 211784 49103 7.05751 7.05751 -158.224 -7.05751 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0321566 0.0290571 137 190 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_076.v common 18.76 vpr 65.41 MiB 0.02 7176 -1 -1 14 0.36 -1 -1 36788 -1 -1 21 32 0 0 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 66976 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 26.6 MiB 1.89 1351 15337 4423 8268 2646 65.4 MiB 0.14 0.00 7.47965 -152.205 -7.47965 7.47965 0.95 0.000680896 0.000616542 0.0612798 0.0554696 30 4091 43 6.79088e+06 282912 556674. 1926.21 13.40 0.308148 0.26992 24526 138013 -1 3121 18 1425 3864 215930 48744 7.98084 7.98084 -178.815 -7.98084 0 0 706193. 2443.58 0.28 0.08 0.13 -1 -1 0.28 0.0334891 0.030281 149 213 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_077.v common 10.76 vpr 65.05 MiB 0.02 6952 -1 -1 14 0.31 -1 -1 36484 -1 -1 20 32 0 0 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 66608 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 26.5 MiB 2.67 1294 14175 4633 7001 2541 65.0 MiB 0.12 0.00 6.67053 -135.191 -6.67053 6.67053 0.90 0.000564273 0.000512711 0.0515919 0.0469611 46 2898 17 6.79088e+06 269440 828058. 2865.25 4.70 0.24118 0.213341 27406 200422 -1 2574 15 1156 3480 178637 40048 7.09333 7.09333 -152.888 -7.09333 0 0 1.01997e+06 3529.29 0.37 0.07 0.18 -1 -1 0.37 0.0270415 0.0244871 136 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_078.v common 24.65 vpr 65.16 MiB 0.02 7208 -1 -1 13 0.41 -1 -1 37388 -1 -1 19 32 0 0 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 66728 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 26.6 MiB 2.41 1321 11243 2895 6563 1785 65.2 MiB 0.10 0.00 6.74882 -141.446 -6.74882 6.74882 0.96 0.000631555 0.000566765 0.0447819 0.0405471 42 3882 37 6.79088e+06 255968 744469. 2576.02 18.56 0.371353 0.326815 26542 182613 -1 2892 29 1413 4282 436537 174698 6.79921 6.79921 -154.744 -6.79921 0 0 949917. 3286.91 0.36 0.16 0.17 -1 -1 0.36 0.0447375 0.0398996 139 193 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_079.v common 9.68 vpr 64.77 MiB 0.02 7052 -1 -1 13 0.22 -1 -1 36364 -1 -1 16 30 0 0 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 66324 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 26.2 MiB 1.99 936 7880 2110 5433 337 64.8 MiB 0.07 0.00 5.84133 -123.22 -5.84133 5.84133 0.94 0.000529098 0.00048172 0.0282051 0.0256963 38 2488 31 6.79088e+06 215552 678818. 2348.85 4.41 0.203225 0.17723 25966 169698 -1 1993 14 939 2317 120736 28384 6.08307 6.08307 -138.843 -6.08307 0 0 902133. 3121.57 0.33 0.05 0.16 -1 -1 0.33 0.0211311 0.0191196 106 139 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_080.v common 7.86 vpr 65.19 MiB 0.02 7216 -1 -1 13 0.57 -1 -1 36472 -1 -1 23 30 0 0 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 66756 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 26.4 MiB 1.79 1355 13849 4587 6805 2457 65.2 MiB 0.13 0.00 6.88105 -138.606 -6.88105 6.88105 0.98 0.000692244 0.000629329 0.0565346 0.0514681 38 3294 24 6.79088e+06 309856 678818. 2348.85 2.24 0.194599 0.173144 25966 169698 -1 2831 18 1480 3763 195171 44486 7.38225 7.38225 -163.051 -7.38225 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0336594 0.0304287 144 203 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_081.v common 11.08 vpr 65.15 MiB 0.02 7124 -1 -1 14 0.37 -1 -1 36540 -1 -1 20 32 0 0 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 66712 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 26.7 MiB 2.10 1247 9234 2286 5752 1196 65.1 MiB 0.09 0.00 7.05757 -151.342 -7.05757 7.05757 0.97 0.000639355 0.000579659 0.0363688 0.0330049 44 3147 21 6.79088e+06 269440 787024. 2723.27 5.37 0.288922 0.254457 27118 194962 -1 2536 15 1072 3330 187483 41148 7.55876 7.55876 -168.857 -7.55876 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0260861 0.0236584 133 181 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_082.v common 18.55 vpr 64.85 MiB 0.02 7076 -1 -1 12 0.32 -1 -1 37100 -1 -1 21 31 0 0 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 66408 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 26.4 MiB 2.16 1324 9417 2512 5098 1807 64.9 MiB 0.08 0.00 6.38406 -131.556 -6.38406 6.38406 0.94 0.000592204 0.000538306 0.0358889 0.0327607 38 3323 26 6.79088e+06 282912 678818. 2348.85 12.95 0.308683 0.269691 25966 169698 -1 2732 19 1331 3772 197743 44323 6.75996 6.75996 -151.756 -6.75996 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.031804 0.0285955 143 200 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_083.v common 10.44 vpr 65.40 MiB 0.02 7108 -1 -1 13 0.30 -1 -1 36632 -1 -1 21 30 0 0 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 66968 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 26.7 MiB 2.53 1252 13943 4131 7787 2025 65.4 MiB 0.12 0.00 6.43218 -124.616 -6.43218 6.43218 0.95 0.000601679 0.000543785 0.0511759 0.0462842 38 3308 21 6.79088e+06 282912 678818. 2348.85 4.45 0.195039 0.171506 25966 169698 -1 2726 18 1262 3542 192081 42208 6.88531 6.88531 -144.874 -6.88531 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0287526 0.0259095 126 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_084.v common 11.20 vpr 65.18 MiB 0.02 7020 -1 -1 14 0.43 -1 -1 37020 -1 -1 21 32 0 0 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 66744 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 26.8 MiB 1.82 1309 5665 1191 4158 316 65.2 MiB 0.06 0.00 7.1394 -148.126 -7.1394 7.1394 0.94 0.000659022 0.000595154 0.0250656 0.022723 36 4233 42 6.79088e+06 282912 648988. 2245.63 5.78 0.238387 0.210641 25390 158009 -1 3325 34 2211 6761 522078 153839 7.2647 7.2647 -166.085 -7.2647 0 0 828058. 2865.25 0.32 0.18 0.14 -1 -1 0.32 0.0529366 0.0470229 154 215 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_085.v common 8.06 vpr 64.84 MiB 0.02 7156 -1 -1 11 0.35 -1 -1 36644 -1 -1 22 29 0 0 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 66400 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 26.4 MiB 1.56 1117 13583 4273 7173 2137 64.8 MiB 0.12 0.00 5.79316 -113.465 -5.79316 5.79316 0.97 0.000634581 0.000566573 0.050902 0.0459111 38 3061 44 6.79088e+06 296384 678818. 2348.85 2.94 0.2265 0.199442 25966 169698 -1 2465 20 1228 3622 177171 41499 5.91846 5.91846 -126.877 -5.91846 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0320836 0.028936 130 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_086.v common 10.08 vpr 64.71 MiB 0.02 6972 -1 -1 13 0.20 -1 -1 36080 -1 -1 14 32 0 0 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 66268 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 26.2 MiB 3.90 956 3896 669 3171 56 64.7 MiB 0.04 0.00 5.99004 -137.535 -5.99004 5.99004 0.95 0.000510374 0.000463625 0.0153187 0.0140107 34 2940 36 6.79088e+06 188608 618332. 2139.56 2.88 0.15383 0.134184 25102 150614 -1 2353 33 1490 3872 442208 189580 6.61654 6.61654 -158.128 -6.61654 0 0 787024. 2723.27 0.30 0.16 0.15 -1 -1 0.30 0.0375012 0.0330826 99 130 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_087.v common 10.28 vpr 64.90 MiB 0.02 6992 -1 -1 14 0.28 -1 -1 36632 -1 -1 19 32 0 0 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 66460 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 26.5 MiB 2.25 1330 6203 1275 4418 510 64.9 MiB 0.06 0.00 7.08136 -148.99 -7.08136 7.08136 0.97 0.000641663 0.000582802 0.0258548 0.023593 38 3112 16 6.79088e+06 255968 678818. 2348.85 4.60 0.254843 0.223057 25966 169698 -1 2527 19 1198 3237 168670 37409 7.45726 7.45726 -167.628 -7.45726 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0296054 0.0266683 129 178 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_088.v common 20.75 vpr 65.33 MiB 0.02 7204 -1 -1 15 0.45 -1 -1 36624 -1 -1 22 32 0 0 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 66896 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 26.9 MiB 2.37 1318 14072 3818 8001 2253 65.3 MiB 0.13 0.00 7.4405 -153.485 -7.4405 7.4405 0.96 0.000753731 0.000684304 0.0600811 0.0544658 40 3524 22 6.79088e+06 296384 706193. 2443.58 14.53 0.400665 0.351536 26254 175826 -1 3275 28 2601 7153 642522 216641 7.6911 7.6911 -173.429 -7.6911 0 0 926341. 3205.33 0.34 0.20 0.17 -1 -1 0.34 0.0479177 0.0428612 153 227 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_089.v common 9.93 vpr 64.47 MiB 0.02 7052 -1 -1 11 0.19 -1 -1 36292 -1 -1 14 32 0 0 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 66016 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 26.0 MiB 2.56 950 7714 1786 5577 351 64.5 MiB 0.06 0.00 5.37463 -116.656 -5.37463 5.37463 0.99 0.000507655 0.000460216 0.0262489 0.0237202 36 2422 17 6.79088e+06 188608 648988. 2245.63 4.12 0.174527 0.152233 25390 158009 -1 2067 17 886 2280 130352 29774 5.62523 5.62523 -134.066 -5.62523 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0228614 0.020613 91 123 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_090.v common 7.33 vpr 64.78 MiB 0.02 6856 -1 -1 12 0.24 -1 -1 36412 -1 -1 16 31 0 0 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 66332 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 26.2 MiB 1.97 1057 9374 3046 4951 1377 64.8 MiB 0.08 0.00 6.07958 -130.8 -6.07958 6.07958 0.96 0.000569739 0.00051768 0.0352949 0.032134 42 2739 26 6.79088e+06 215552 744469. 2576.02 1.99 0.151946 0.133663 26542 182613 -1 2292 17 1103 2914 158631 36727 6.20488 6.20488 -144.601 -6.20488 0 0 949917. 3286.91 0.36 0.06 0.18 -1 -1 0.36 0.0250733 0.0225579 111 151 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_091.v common 9.50 vpr 65.14 MiB 0.02 7024 -1 -1 12 0.39 -1 -1 36360 -1 -1 20 32 0 0 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 66704 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 26.6 MiB 1.72 1285 5391 1173 3641 577 65.1 MiB 0.06 0.00 6.13341 -133.877 -6.13341 6.13341 0.96 0.000706589 0.000635373 0.0248598 0.0225335 44 3172 18 6.79088e+06 269440 787024. 2723.27 4.16 0.240244 0.209661 27118 194962 -1 2689 16 1242 3475 172504 39967 6.45122 6.45122 -149.93 -6.45122 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0303404 0.0274511 145 206 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_092.v common 8.95 vpr 64.96 MiB 0.02 7220 -1 -1 12 0.31 -1 -1 36588 -1 -1 19 32 0 0 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 66516 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 26.5 MiB 2.12 1371 11963 3320 6896 1747 65.0 MiB 0.11 0.00 6.38411 -138.005 -6.38411 6.38411 0.95 0.000627607 0.000563159 0.045846 0.041596 36 3762 39 6.79088e+06 255968 648988. 2245.63 3.37 0.179896 0.158446 25390 158009 -1 3296 22 1458 4408 291205 61562 7.09671 7.09671 -167.884 -7.09671 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0347302 0.0311837 133 183 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_093.v common 10.89 vpr 65.33 MiB 0.02 7136 -1 -1 14 0.58 -1 -1 36872 -1 -1 23 32 0 0 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 66900 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 26.9 MiB 1.73 1402 5847 1146 4426 275 65.3 MiB 0.07 0.00 7.25706 -151.473 -7.25706 7.25706 0.97 0.000782589 0.000719059 0.0286257 0.0260492 44 3658 22 6.79088e+06 309856 787024. 2723.27 5.29 0.309502 0.271455 27118 194962 -1 2949 18 1451 4485 231580 52509 7.50765 7.50765 -165.437 -7.50765 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0389311 0.035331 170 238 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_094.v common 11.97 vpr 64.89 MiB 0.02 7052 -1 -1 11 0.29 -1 -1 36536 -1 -1 21 30 0 0 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 66444 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 26.5 MiB 2.51 1193 11603 3025 6544 2034 64.9 MiB 0.10 0.00 5.74632 -118.944 -5.74632 5.74632 0.98 0.000619367 0.000562442 0.0435219 0.039641 36 3150 38 6.79088e+06 282912 648988. 2245.63 5.92 0.218022 0.193236 25390 158009 -1 2777 32 1224 3632 416984 177266 6.33362 6.33362 -139.407 -6.33362 0 0 828058. 2865.25 0.32 0.16 0.15 -1 -1 0.32 0.0429646 0.0382124 128 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_095.v common 8.50 vpr 64.26 MiB 0.02 6952 -1 -1 11 0.22 -1 -1 36300 -1 -1 19 27 0 0 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 65804 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 25.8 MiB 1.50 888 6552 1588 4538 426 64.3 MiB 0.06 0.00 5.56719 -105.877 -5.56719 5.56719 0.94 0.000499966 0.000454618 0.0226807 0.0206905 36 2192 17 6.79088e+06 255968 648988. 2245.63 3.76 0.175916 0.152707 25390 158009 -1 1911 16 831 2225 125905 28621 5.94309 5.94309 -121.465 -5.94309 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0219634 0.0197542 101 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_096.v common 30.43 vpr 66.13 MiB 0.02 7188 -1 -1 13 0.55 -1 -1 36644 -1 -1 29 32 0 0 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 67720 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 27.5 MiB 2.17 1664 10803 2748 6552 1503 66.1 MiB 0.11 0.00 6.71306 -140.604 -6.71306 6.71306 0.90 0.000820621 0.000747397 0.0475593 0.04331 40 4538 29 6.79088e+06 390688 706193. 2443.58 24.48 0.515969 0.457929 26254 175826 -1 4181 27 3046 9529 730274 178331 7.28563 7.28563 -167.171 -7.28563 0 0 926341. 3205.33 0.33 0.21 0.16 -1 -1 0.33 0.057224 0.0515315 191 278 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_097.v common 14.57 vpr 64.96 MiB 0.02 7124 -1 -1 14 0.34 -1 -1 36816 -1 -1 20 31 0 0 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 66520 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 26.5 MiB 1.72 1198 6563 1639 4474 450 65.0 MiB 0.07 0.00 6.92462 -143.403 -6.92462 6.92462 0.97 0.000618156 0.000562351 0.026925 0.0245238 36 3311 35 6.79088e+06 269440 648988. 2245.63 9.36 0.281693 0.246998 25390 158009 -1 2780 18 1377 3696 227320 51172 7.60489 7.60489 -166.801 -7.60489 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.032059 0.0291035 128 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_098.v common 22.09 vpr 64.44 MiB 0.02 7004 -1 -1 12 0.20 -1 -1 36196 -1 -1 19 32 0 0 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 65988 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 25.9 MiB 2.86 1221 12683 3575 7368 1740 64.4 MiB 0.10 0.00 6.04387 -140.065 -6.04387 6.04387 0.98 0.000550665 0.000501749 0.0416726 0.0379306 36 3525 44 6.79088e+06 255968 648988. 2245.63 15.89 0.324095 0.284186 25390 158009 -1 2722 14 1138 2802 180248 39714 6.54507 6.54507 -164.498 -6.54507 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.022141 0.0200379 109 133 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_099.v common 9.58 vpr 65.01 MiB 0.02 7036 -1 -1 13 0.37 -1 -1 36692 -1 -1 18 32 0 0 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 66572 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 26.6 MiB 3.52 1257 6846 1533 4910 403 65.0 MiB 0.07 0.00 6.79927 -138.851 -6.79927 6.79927 0.94 0.000608318 0.000552062 0.0268958 0.0244935 46 2898 15 6.79088e+06 242496 828058. 2865.25 2.50 0.161492 0.141852 27406 200422 -1 2536 16 1071 3052 164466 36460 7.67637 7.67637 -161.789 -7.67637 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0265773 0.0240315 125 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_100.v common 11.95 vpr 65.00 MiB 0.02 7136 -1 -1 13 0.39 -1 -1 37208 -1 -1 25 31 0 0 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 66560 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 26.6 MiB 2.45 1535 9253 2272 5893 1088 65.0 MiB 0.10 0.00 6.33023 -139.512 -6.33023 6.33023 0.97 0.000742201 0.000662217 0.0403986 0.0364546 38 4084 36 6.79088e+06 336800 678818. 2348.85 5.87 0.243782 0.214976 25966 169698 -1 3283 20 1778 5192 332997 93869 6.53737 6.53737 -155.213 -6.53737 0 0 902133. 3121.57 0.34 0.12 0.16 -1 -1 0.34 0.0394536 0.0356144 159 232 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_101.v common 21.94 vpr 65.10 MiB 0.02 7200 -1 -1 11 0.30 -1 -1 36656 -1 -1 23 30 0 0 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 66664 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 26.6 MiB 1.97 1104 12175 3724 6206 2245 65.1 MiB 0.11 0.00 5.58182 -114.064 -5.58182 5.58182 0.96 0.000663295 0.000602599 0.0463014 0.0419129 38 3509 37 6.79088e+06 309856 678818. 2348.85 16.50 0.354596 0.31048 25966 169698 -1 2593 24 1361 4388 228169 52330 6.33356 6.33356 -137.247 -6.33356 0 0 902133. 3121.57 0.34 0.09 0.15 -1 -1 0.34 0.036826 0.0329309 140 196 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_102.v common 7.47 vpr 65.29 MiB 0.02 7044 -1 -1 15 0.41 -1 -1 36684 -1 -1 19 32 0 0 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 66852 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 26.7 MiB 1.92 1191 8363 1968 5530 865 65.3 MiB 0.08 0.00 7.59386 -151.645 -7.59386 7.59386 0.97 0.000676551 0.000611466 0.0359741 0.0326279 38 3284 22 6.79088e+06 255968 678818. 2348.85 1.92 0.155506 0.136912 25966 169698 -1 2654 19 1337 3838 199222 45604 7.71916 7.71916 -168.848 -7.71916 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0327411 0.0294685 142 202 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_103.v common 11.67 vpr 65.38 MiB 0.02 6984 -1 -1 13 0.41 -1 -1 36488 -1 -1 23 32 0 0 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 66948 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 27.0 MiB 2.55 1473 6039 1263 4478 298 65.4 MiB 0.07 0.00 6.80265 -147.99 -6.80265 6.80265 0.98 0.000708423 0.000640974 0.0273497 0.0248802 36 3818 31 6.79088e+06 309856 648988. 2245.63 5.50 0.224108 0.198061 25390 158009 -1 3298 21 1527 4815 286725 62813 7.17511 7.17511 -168.309 -7.17511 0 0 828058. 2865.25 0.33 0.11 0.15 -1 -1 0.33 0.0390641 0.0352846 154 216 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_104.v common 6.95 vpr 64.41 MiB 0.02 7044 -1 -1 12 0.25 -1 -1 35928 -1 -1 18 29 0 0 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 65952 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 25.9 MiB 2.45 1011 13430 3737 7773 1920 64.4 MiB 0.10 0.00 6.04736 -124.651 -6.04736 6.04736 0.90 0.000533864 0.000482252 0.045338 0.0413072 28 3045 34 6.79088e+06 242496 531479. 1839.03 1.40 0.142248 0.126775 23950 126010 -1 2566 20 1257 2846 185967 43659 6.29796 6.29796 -151.372 -6.29796 0 0 648988. 2245.63 0.25 0.07 0.11 -1 -1 0.25 0.0271771 0.0243843 109 147 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_105.v common 22.62 vpr 64.47 MiB 0.02 7064 -1 -1 11 0.19 -1 -1 36360 -1 -1 14 32 0 0 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 66020 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 26.0 MiB 1.79 1195 9540 2725 5911 904 64.5 MiB 0.08 0.00 5.75402 -126.863 -5.75402 5.75402 0.94 0.0005174 0.000469857 0.0329078 0.0299254 36 3673 41 6.79088e+06 188608 648988. 2245.63 17.57 0.272784 0.238851 25390 158009 -1 2767 19 1309 3331 215575 46748 6.09072 6.09072 -148.788 -6.09072 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0269352 0.0242611 98 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_106.v common 17.45 vpr 65.20 MiB 0.02 7020 -1 -1 13 0.39 -1 -1 37048 -1 -1 22 31 0 0 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 66768 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 26.6 MiB 1.38 1170 13291 4109 6846 2336 65.2 MiB 0.12 0.00 6.45897 -130.377 -6.45897 6.45897 0.97 0.000670626 0.000603494 0.0530571 0.0480252 40 2842 30 6.79088e+06 296384 706193. 2443.58 12.41 0.403186 0.355681 26254 175826 -1 2715 25 1645 4945 426546 144396 6.92097 6.92097 -149.707 -6.92097 0 0 926341. 3205.33 0.33 0.15 0.16 -1 -1 0.33 0.0424644 0.038239 144 201 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_107.v common 9.88 vpr 64.62 MiB 0.02 6928 -1 -1 10 0.21 -1 -1 35964 -1 -1 17 29 0 0 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 66176 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 26.2 MiB 2.14 780 11532 2774 8300 458 64.6 MiB 0.09 0.00 4.98748 -102.107 -4.98748 4.98748 0.96 0.000518826 0.000471158 0.0392261 0.0356726 38 2230 45 6.79088e+06 229024 678818. 2348.85 4.41 0.236919 0.205458 25966 169698 -1 1808 17 956 2562 133199 32101 5.36338 5.36338 -121.974 -5.36338 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.023806 0.0214642 98 132 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_108.v common 12.31 vpr 64.51 MiB 0.02 7020 -1 -1 14 0.24 -1 -1 36480 -1 -1 18 32 0 0 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 66060 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 26.0 MiB 3.50 1126 7914 1880 5363 671 64.5 MiB 0.07 0.00 6.62358 -137.265 -6.62358 6.62358 0.94 0.000549547 0.000499555 0.0277366 0.0252937 38 2938 44 6.79088e+06 242496 678818. 2348.85 5.47 0.269826 0.234164 25966 169698 -1 2373 15 1052 2770 153985 34608 6.74888 6.74888 -153.937 -6.74888 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0224552 0.0202909 110 145 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_109.v common 7.96 vpr 65.12 MiB 0.02 7144 -1 -1 12 0.39 -1 -1 36496 -1 -1 22 31 0 0 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 66680 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 26.6 MiB 1.46 1317 13477 4228 7095 2154 65.1 MiB 0.12 0.00 6.13341 -133.654 -6.13341 6.13341 0.94 0.000652061 0.000584525 0.0516199 0.0468772 36 3835 44 6.79088e+06 296384 648988. 2245.63 2.98 0.20504 0.181243 25390 158009 -1 2957 18 1338 3865 216203 48327 6.50931 6.50931 -156.65 -6.50931 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0310972 0.0280366 143 199 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_110.v common 9.52 vpr 64.73 MiB 0.02 6844 -1 -1 12 0.19 -1 -1 35976 -1 -1 16 31 0 0 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 66288 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 26.2 MiB 2.59 1106 10895 2978 6886 1031 64.7 MiB 0.09 0.00 5.48879 -122.645 -5.48879 5.48879 0.91 0.000502435 0.000457766 0.0353821 0.032218 36 2714 22 6.79088e+06 215552 648988. 2245.63 3.84 0.171866 0.152405 25390 158009 -1 2369 15 988 2297 139870 31603 5.86469 5.86469 -139.028 -5.86469 0 0 828058. 2865.25 0.30 0.06 0.14 -1 -1 0.30 0.022141 0.0200821 101 136 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_111.v common 20.38 vpr 64.82 MiB 0.02 7216 -1 -1 12 0.22 -1 -1 36440 -1 -1 18 32 0 0 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 66376 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 26.4 MiB 1.71 1118 5600 1157 4246 197 64.8 MiB 0.06 0.00 6.03617 -130.052 -6.03617 6.03617 0.96 0.000584047 0.000524975 0.0228874 0.0208149 38 3052 27 6.79088e+06 242496 678818. 2348.85 15.35 0.304911 0.266578 25966 169698 -1 2493 21 1321 4056 211256 46816 6.53388 6.53388 -146.93 -6.53388 0 0 902133. 3121.57 0.35 0.08 0.15 -1 -1 0.35 0.0324995 0.0291091 123 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_112.v common 11.13 vpr 65.00 MiB 0.02 7044 -1 -1 13 0.35 -1 -1 36648 -1 -1 19 31 0 0 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 66556 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 26.5 MiB 1.88 1288 12898 3442 7509 1947 65.0 MiB 0.12 0.00 6.08307 -132.825 -6.08307 6.08307 0.97 0.000634265 0.000570131 0.0499576 0.0451239 44 3360 50 6.79088e+06 255968 787024. 2723.27 5.60 0.306474 0.269038 27118 194962 -1 2566 16 1178 3396 177121 39852 6.45897 6.45897 -146.421 -6.45897 0 0 997811. 3452.63 0.40 0.07 0.19 -1 -1 0.40 0.0291941 0.0265711 134 176 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_113.v common 7.01 vpr 64.37 MiB 0.02 6840 -1 -1 11 0.20 -1 -1 36308 -1 -1 15 32 0 0 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 65916 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 25.8 MiB 1.55 1178 5318 1175 3841 302 64.4 MiB 0.05 0.00 5.79322 -121.931 -5.79322 5.79322 0.91 0.000517301 0.000463038 0.0197515 0.0179962 44 2804 20 6.79088e+06 202080 787024. 2723.27 2.28 0.122294 0.108521 27118 194962 -1 2404 16 1115 2925 168887 37178 6.04382 6.04382 -138.431 -6.04382 0 0 997811. 3452.63 0.37 0.06 0.17 -1 -1 0.37 0.0239502 0.0216929 105 142 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_114.v common 19.08 vpr 64.84 MiB 0.02 7028 -1 -1 13 0.23 -1 -1 36496 -1 -1 17 32 0 0 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 66396 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 26.5 MiB 2.17 1048 13556 4917 6504 2135 64.8 MiB 0.11 0.00 6.24757 -135.485 -6.24757 6.24757 0.91 0.000577571 0.00052729 0.0476673 0.0434531 38 2836 48 6.79088e+06 229024 678818. 2348.85 13.71 0.328625 0.288992 25966 169698 -1 2304 17 1155 3100 157453 36403 6.24757 6.24757 -146.951 -6.24757 0 0 902133. 3121.57 0.32 0.06 0.15 -1 -1 0.32 0.0262241 0.0237167 116 164 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_115.v common 20.54 vpr 64.91 MiB 0.02 6976 -1 -1 13 0.32 -1 -1 36292 -1 -1 18 32 0 0 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 66468 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 26.4 MiB 1.99 1312 7736 1841 5181 714 64.9 MiB 0.08 0.00 6.07958 -135.388 -6.07958 6.07958 0.98 0.000652602 0.00057956 0.0319087 0.0289422 38 3380 32 6.79088e+06 242496 678818. 2348.85 15.02 0.331656 0.290705 25966 169698 -1 2909 23 1737 5114 319647 66893 6.49463 6.49463 -156.634 -6.49463 0 0 902133. 3121.57 0.33 0.10 0.17 -1 -1 0.33 0.0345556 0.0310105 130 182 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_116.v common 7.28 vpr 64.48 MiB 0.02 7020 -1 -1 11 0.24 -1 -1 35948 -1 -1 22 29 0 0 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 66028 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 25.9 MiB 2.00 970 13763 4666 6399 2698 64.5 MiB 0.10 0.00 5.69593 -108.04 -5.69593 5.69593 0.95 0.00053916 0.000490029 0.0447727 0.0406933 36 2678 29 6.79088e+06 296384 648988. 2245.63 1.99 0.167951 0.149506 25390 158009 -1 2243 15 1033 3002 173549 38896 5.69593 5.69593 -122.503 -5.69593 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0235282 0.0213273 115 156 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_117.v common 12.07 vpr 65.74 MiB 0.02 7156 -1 -1 14 0.40 -1 -1 37096 -1 -1 22 32 0 0 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 67320 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 27.1 MiB 1.72 1558 8213 1877 5750 586 65.7 MiB 0.09 0.00 7.15065 -156.51 -7.15065 7.15065 0.90 0.000706933 0.00063386 0.0350584 0.0317094 36 4448 49 6.79088e+06 296384 648988. 2245.63 6.94 0.2713 0.241402 25390 158009 -1 3438 18 1621 4577 262506 58629 7.69105 7.69105 -178.01 -7.69105 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0352286 0.0319393 160 221 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_118.v common 11.03 vpr 64.78 MiB 0.02 6912 -1 -1 12 0.20 -1 -1 36396 -1 -1 18 31 0 0 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 66332 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 3.36 1155 7606 2033 5115 458 64.8 MiB 0.06 0.00 5.46189 -119.381 -5.46189 5.46189 0.90 0.000492049 0.000449282 0.0252915 0.0230954 38 2804 25 6.79088e+06 242496 678818. 2348.85 4.49 0.204186 0.179188 25966 169698 -1 2331 14 968 2397 132288 29131 5.83779 5.83779 -138.223 -5.83779 0 0 902133. 3121.57 0.35 0.06 0.16 -1 -1 0.35 0.0225185 0.0204918 108 137 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_119.v common 24.04 vpr 65.08 MiB 0.02 7248 -1 -1 13 0.35 -1 -1 37116 -1 -1 19 32 0 0 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 66640 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 26.6 MiB 2.43 1330 13763 4075 7902 1786 65.1 MiB 0.13 0.00 6.28677 -133.699 -6.28677 6.28677 0.98 0.000648477 0.000588793 0.0539996 0.0490703 38 3801 45 6.79088e+06 255968 678818. 2348.85 18.01 0.381513 0.335568 25966 169698 -1 2944 23 1500 4329 245132 53402 6.87407 6.87407 -154.238 -6.87407 0 0 902133. 3121.57 0.34 0.10 0.16 -1 -1 0.34 0.0369977 0.0330884 132 187 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_120.v common 8.96 vpr 64.68 MiB 0.02 6972 -1 -1 13 0.22 -1 -1 35884 -1 -1 16 32 0 0 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 66232 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 26.2 MiB 2.64 953 13152 4443 6083 2626 64.7 MiB 0.10 0.00 6.20842 -135.02 -6.20842 6.20842 0.94 0.000551869 0.000499635 0.0427649 0.0387971 36 3322 45 6.79088e+06 215552 648988. 2245.63 2.99 0.174827 0.154141 25390 158009 -1 2366 22 1256 3201 190218 43135 6.65918 6.65918 -159.879 -6.65918 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.028995 0.0259249 104 140 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_121.v common 24.02 vpr 64.77 MiB 0.02 7000 -1 -1 12 0.27 -1 -1 36316 -1 -1 19 32 0 0 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 66320 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 26.4 MiB 2.52 1050 11963 4064 5699 2200 64.8 MiB 0.11 0.00 5.94653 -127.305 -5.94653 5.94653 0.95 0.000608294 0.000541904 0.0440327 0.0397853 40 2886 25 6.79088e+06 255968 706193. 2443.58 18.04 0.324168 0.281196 26254 175826 -1 2714 22 1432 4483 300611 69465 6.33362 6.33362 -151.818 -6.33362 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0322111 0.0288048 121 170 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_122.v common 12.53 vpr 65.47 MiB 0.02 7336 -1 -1 15 0.61 -1 -1 36740 -1 -1 24 32 0 0 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 67040 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 26.9 MiB 2.50 1685 12568 3240 7073 2255 65.5 MiB 0.11 0.00 8.067 -161.456 -8.067 8.067 0.91 0.00067482 0.000613815 0.0511762 0.0465207 44 4592 43 6.79088e+06 323328 787024. 2723.27 6.13 0.271791 0.239998 27118 194962 -1 3582 18 1807 5466 311791 68225 8.4744 8.4744 -183.816 -8.4744 0 0 997811. 3452.63 0.39 0.11 0.19 -1 -1 0.39 0.0417253 0.0380024 176 249 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_123.v common 11.04 vpr 63.91 MiB 0.02 6912 -1 -1 10 0.12 -1 -1 35804 -1 -1 11 30 0 0 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 65440 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 25.4 MiB 2.00 672 9041 3550 3974 1517 63.9 MiB 0.06 0.00 4.44354 -98.5083 -4.44354 4.44354 0.96 0.000388996 0.000352104 0.0245098 0.0222409 30 1952 48 6.79088e+06 148192 556674. 1926.21 6.01 0.163359 0.14332 24526 138013 -1 1634 18 735 1692 94105 22137 4.56884 4.56884 -117.714 -4.56884 0 0 706193. 2443.58 0.27 0.04 0.12 -1 -1 0.27 0.0168775 0.0150811 63 82 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_124.v common 7.17 vpr 64.57 MiB 0.02 7032 -1 -1 13 0.20 -1 -1 36188 -1 -1 19 30 0 0 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 66116 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 26.1 MiB 2.04 996 10931 3459 5604 1868 64.6 MiB 0.08 0.00 6.07969 -127.643 -6.07969 6.07969 0.90 0.000516123 0.00047146 0.0360793 0.0328528 34 2835 24 6.79088e+06 255968 618332. 2139.56 2.02 0.172516 0.152447 25102 150614 -1 2368 19 1212 2999 173506 41851 6.20499 6.20499 -146.197 -6.20499 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0256288 0.0230656 105 138 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_125.v common 8.40 vpr 64.47 MiB 0.02 6964 -1 -1 12 0.24 -1 -1 36676 -1 -1 17 32 0 0 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 66016 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 26.1 MiB 2.25 1061 12156 4313 5619 2224 64.5 MiB 0.10 0.00 6.20144 -135.729 -6.20144 6.20144 0.90 0.00056713 0.000517724 0.0428087 0.0389842 44 3435 29 6.79088e+06 229024 787024. 2723.27 2.85 0.167731 0.149726 27118 194962 -1 2422 18 1315 3227 225405 60521 6.66688 6.66688 -158.756 -6.66688 0 0 997811. 3452.63 0.37 0.08 0.17 -1 -1 0.37 0.0290213 0.0262343 115 166 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_126.v common 7.54 vpr 64.46 MiB 0.02 6864 -1 -1 9 0.16 -1 -1 36100 -1 -1 20 25 0 0 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 66008 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 25.9 MiB 1.41 810 9205 3227 4315 1663 64.5 MiB 0.06 0.00 4.29134 -84.3574 -4.29134 4.29134 0.95 0.000437958 0.000399767 0.0265781 0.0241894 30 1936 20 6.79088e+06 269440 556674. 1926.21 3.01 0.137488 0.119316 24526 138013 -1 1692 18 758 1971 99672 23233 4.79254 4.79254 -100.35 -4.79254 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0201096 0.0180562 86 103 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_127.v common 10.73 vpr 64.92 MiB 0.02 7236 -1 -1 12 0.33 -1 -1 36352 -1 -1 23 32 0 0 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 66480 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 26.4 MiB 3.03 1465 12567 3358 7071 2138 64.9 MiB 0.11 0.00 6.50598 -146.734 -6.50598 6.50598 0.90 0.000656218 0.000598033 0.0471009 0.0428438 46 3575 32 6.79088e+06 309856 828058. 2865.25 4.22 0.238358 0.212732 27406 200422 -1 3006 16 1505 3916 208572 46440 6.97141 6.97141 -163.9 -6.97141 0 0 1.01997e+06 3529.29 0.38 0.08 0.17 -1 -1 0.38 0.0296616 0.0268757 146 207 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml mult_128.v common 8.42 vpr 65.07 MiB 0.02 7260 -1 -1 14 0.37 -1 -1 36812 -1 -1 22 31 0 0 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 66636 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 26.5 MiB 1.45 1211 11617 3125 6074 2418 65.1 MiB 0.11 0.00 7.26825 -144.231 -7.26825 7.26825 0.90 0.000676411 0.000610756 0.0455627 0.0413116 40 3324 49 6.79088e+06 296384 706193. 2443.58 3.49 0.238466 0.209449 26254 175826 -1 2757 20 1370 4074 236016 55213 8.23144 8.23144 -168.078 -8.23144 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0347683 0.0313118 151 202 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 6.09 vpr 65.74 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 34224 -1 -1 37 32 0 0 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 67320 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 27.0 MiB 1.60 1154 19136 5133 11894 2109 65.7 MiB 0.17 0.00 3.40379 -121.869 -3.40379 3.40379 0.97 0.000569286 0.00051821 0.0491518 0.0446319 32 3007 32 6.87369e+06 517032 586450. 2029.24 1.23 0.133051 0.117034 25474 144626 -1 2395 24 2128 3603 279984 68372 3.9064 3.9064 -151.216 -3.9064 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0281293 0.0247234 155 80 32 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.59 vpr 65.45 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34000 -1 -1 23 30 0 0 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 67020 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 26.8 MiB 4.18 898 13477 4489 6093 2895 65.4 MiB 0.11 0.00 3.28949 -105.746 -3.28949 3.28949 0.93 0.00054538 0.000496236 0.0410869 0.037623 28 2872 32 6.87369e+06 321398 531479. 1839.03 1.40 0.134429 0.119525 24610 126494 -1 2334 24 2111 3520 265386 64542 4.4449 4.4449 -153.797 -4.4449 0 0 648988. 2245.63 0.26 0.09 0.11 -1 -1 0.26 0.0281408 0.0246802 141 78 30 30 89 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 6.67 vpr 65.48 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34300 -1 -1 36 32 0 0 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 67056 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 26.8 MiB 2.31 1120 13788 3768 8666 1354 65.5 MiB 0.12 0.00 3.10276 -112.163 -3.10276 3.10276 0.95 0.000555274 0.000507479 0.0336318 0.0306266 32 3040 32 6.87369e+06 503058 586450. 2029.24 1.23 0.111779 0.0981422 25474 144626 -1 2276 24 1746 2782 231467 52159 3.5228 3.5228 -139.032 -3.5228 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0266656 0.0233965 145 50 54 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.50 vpr 65.19 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 34216 -1 -1 23 29 0 0 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 66752 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 26.6 MiB 1.63 824 14541 6075 6866 1600 65.2 MiB 0.11 0.00 3.41479 -107.028 -3.41479 3.41479 0.91 0.000422711 0.000387701 0.0393928 0.0360924 34 2688 34 6.87369e+06 321398 618332. 2139.56 1.89 0.165952 0.146412 25762 151098 -1 1805 20 1706 2822 192504 48532 3.6921 3.6921 -127.234 -3.6921 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.0217077 0.0191549 136 25 87 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 7.45 vpr 65.56 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33836 -1 -1 21 32 0 0 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 67136 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 2.18 1097 15709 4359 9936 1414 65.6 MiB 0.15 0.00 3.32249 -121.731 -3.32249 3.32249 0.96 0.000538286 0.000489997 0.0481866 0.0440145 34 3254 23 6.87369e+06 293451 618332. 2139.56 2.03 0.173276 0.152138 25762 151098 -1 2634 22 2217 3995 337903 74716 4.013 4.013 -160.34 -4.013 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.027099 0.0240266 147 31 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 7.66 vpr 65.67 MiB 0.02 7432 -1 -1 1 0.03 -1 -1 34084 -1 -1 39 32 0 0 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 67248 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 26.9 MiB 1.41 1042 20347 6734 10808 2805 65.7 MiB 0.16 0.00 2.82225 -101.243 -2.82225 2.82225 0.91 0.000526364 0.000479818 0.0471791 0.0427546 30 2422 34 6.87369e+06 544980 556674. 1926.21 3.26 0.211236 0.185341 25186 138497 -1 1802 21 1347 2172 111888 27912 2.85366 2.85366 -115.515 -2.85366 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0243182 0.0214612 154 61 63 32 63 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.46 vpr 64.45 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 34184 -1 -1 20 27 0 0 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 65996 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 26.1 MiB 2.73 738 12585 3661 8060 864 64.4 MiB 0.10 0.00 2.9476 -89.3645 -2.9476 2.9476 0.97 0.000405914 0.000370535 0.0321879 0.0294201 34 1836 18 6.87369e+06 279477 618332. 2139.56 1.63 0.118705 0.103966 25762 151098 -1 1622 20 1161 1878 139586 33038 3.05726 3.05726 -107.881 -3.05726 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0183521 0.0161928 102 26 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 7.73 vpr 65.48 MiB 0.02 7236 -1 -1 1 0.03 -1 -1 33540 -1 -1 35 31 0 0 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 67052 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.6 MiB 1.15 1005 18323 5874 9822 2627 65.5 MiB 0.15 0.00 2.79225 -94.7428 -2.79225 2.79225 0.99 0.000499064 0.000456191 0.0425095 0.0387294 30 2317 22 6.87369e+06 489084 556674. 1926.21 3.45 0.171799 0.151259 25186 138497 -1 1847 22 1197 1967 122015 27849 2.74566 2.74566 -109.241 -2.74566 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0215316 0.0189708 141 -1 115 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.43 vpr 65.04 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33684 -1 -1 16 31 0 0 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 66600 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 26.3 MiB 3.40 878 8867 2122 5923 822 65.0 MiB 0.08 0.00 2.60257 -93.0115 -2.60257 2.60257 0.94 0.000474946 0.000433652 0.0264703 0.0241722 32 2242 23 6.87369e+06 223581 586450. 2029.24 1.00 0.0870255 0.0763302 25474 144626 -1 1882 19 1021 1645 136336 31254 2.98061 2.98061 -117.559 -2.98061 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0200976 0.0177521 103 81 0 0 84 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 8.92 vpr 65.31 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 33964 -1 -1 16 32 0 0 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 66880 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.6 MiB 4.42 893 12808 4637 6630 1541 65.3 MiB 0.11 0.00 3.0558 -113.308 -3.0558 3.0558 0.92 0.000452165 0.00041472 0.035494 0.0325212 34 2228 21 6.87369e+06 223581 618332. 2139.56 1.51 0.132781 0.116415 25762 151098 -1 1952 19 1430 2215 172292 38630 3.24691 3.24691 -136.079 -3.24691 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.019484 0.0172365 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.93 vpr 65.28 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 33836 -1 -1 18 30 0 0 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 66844 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 26.6 MiB 3.85 809 11088 3034 7381 673 65.3 MiB 0.09 0.00 2.9678 -100.962 -2.9678 2.9678 0.97 0.000477605 0.000434475 0.0324124 0.0295874 30 1930 21 6.87369e+06 251529 556674. 1926.21 0.98 0.0926725 0.0815917 25186 138497 -1 1584 24 1347 2089 123484 29036 2.93826 2.93826 -115.462 -2.93826 0 0 706193. 2443.58 0.30 0.06 0.13 -1 -1 0.30 0.0235005 0.020657 109 58 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 6.19 vpr 65.07 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 33596 -1 -1 32 32 0 0 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 66628 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 26.3 MiB 1.62 904 16521 5325 8687 2509 65.1 MiB 0.12 0.00 2.78925 -97.7982 -2.78925 2.78925 0.91 0.000452176 0.000412889 0.0365805 0.0331843 34 2191 23 6.87369e+06 447163 618332. 2139.56 1.60 0.139712 0.122514 25762 151098 -1 1865 21 1314 2140 160839 37790 2.85996 2.85996 -114.56 -2.85996 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.020619 0.0181395 116 57 25 25 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 12.53 vpr 65.68 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33872 -1 -1 35 32 0 0 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 67252 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 27.0 MiB 5.28 1117 14235 4102 9173 960 65.7 MiB 0.12 0.00 2.94755 -108.52 -2.94755 2.94755 0.91 0.000515802 0.000472313 0.034619 0.0315468 28 2891 37 6.87369e+06 489084 531479. 1839.03 4.30 0.22947 0.201379 24610 126494 -1 2529 20 1745 2990 243654 55108 3.11226 3.11226 -133.797 -3.11226 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0241068 0.0213814 147 55 64 32 57 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 9.98 vpr 65.59 MiB 0.02 7384 -1 -1 1 0.03 -1 -1 34028 -1 -1 37 32 0 0 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 67168 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.9 MiB 2.78 1102 21486 7060 11872 2554 65.6 MiB 0.18 0.00 3.32249 -120.167 -3.32249 3.32249 0.95 0.000549507 0.000501014 0.0531424 0.0482912 36 2589 21 6.87369e+06 517032 648988. 2245.63 3.96 0.241351 0.210163 26050 158493 -1 2234 23 2061 3262 244929 54728 3.7701 3.7701 -145.536 -3.7701 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0268587 0.0235826 155 60 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.17 vpr 64.54 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 33768 -1 -1 19 29 0 0 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 66088 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 26.2 MiB 2.24 750 13152 4502 6708 1942 64.5 MiB 0.10 0.00 2.8846 -91.7788 -2.8846 2.8846 0.91 0.000393793 0.000360741 0.0321764 0.0293683 32 2056 42 6.87369e+06 265503 586450. 2029.24 1.01 0.0971169 0.0854251 25474 144626 -1 1711 20 1084 1812 138451 33819 3.10861 3.10861 -109.404 -3.10861 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0180086 0.0159225 102 21 58 29 24 24 - fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 8.59 vpr 65.64 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33892 -1 -1 21 32 0 0 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 67220 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 26.9 MiB 3.26 1104 14035 5419 6340 2276 65.6 MiB 0.13 0.00 2.89925 -106.104 -2.89925 2.89925 0.95 0.000549169 0.000501143 0.0435533 0.0397677 34 3232 39 6.87369e+06 293451 618332. 2139.56 2.16 0.182329 0.159221 25762 151098 -1 2637 20 1951 3318 302687 66093 3.44716 3.44716 -137.476 -3.44716 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0248522 0.0219113 145 60 64 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.90 vpr 65.23 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33552 -1 -1 38 32 0 0 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 66800 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 26.6 MiB 5.61 1042 12716 3225 8592 899 65.2 MiB 0.11 0.00 2.93045 -106.857 -2.93045 2.93045 0.99 0.000548392 0.000499036 0.0309656 0.0281397 32 2684 36 6.87369e+06 531006 586450. 2029.24 1.13 0.11616 0.10203 25474 144626 -1 2107 21 1594 2391 176877 40727 2.95856 2.95856 -121.261 -2.95856 0 0 744469. 2576.02 0.30 0.07 0.14 -1 -1 0.30 0.0255725 0.0225205 148 54 64 32 56 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.84 vpr 65.18 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33856 -1 -1 29 32 0 0 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 66744 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 26.4 MiB 2.99 737 16683 5033 9271 2379 65.2 MiB 0.14 0.00 2.46506 -88.629 -2.46506 2.46506 0.97 0.000497872 0.000452553 0.0408379 0.0372482 34 2101 24 6.87369e+06 405241 618332. 2139.56 1.65 0.149381 0.130864 25762 151098 -1 1576 24 1327 1880 149870 36148 2.32117 2.32117 -103.117 -2.32117 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0243954 0.0214206 117 62 29 29 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.38 vpr 64.51 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33476 -1 -1 14 30 0 0 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 66060 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 26.1 MiB 0.64 636 11276 4224 5295 1757 64.5 MiB 0.07 0.00 2.31406 -76.3141 -2.31406 2.31406 0.91 0.000335148 0.000305913 0.0257039 0.0235454 32 1512 22 6.87369e+06 195634 586450. 2029.24 0.91 0.0695009 0.0611512 25474 144626 -1 1288 19 714 1042 96914 21461 1.97972 1.97972 -86.0871 -1.97972 0 0 744469. 2576.02 0.28 0.04 0.13 -1 -1 0.28 0.0144195 0.0127323 73 29 24 24 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 7.62 vpr 64.90 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33996 -1 -1 17 31 0 0 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 66456 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 26.5 MiB 1.37 830 11776 4241 5226 2309 64.9 MiB 0.09 0.00 3.40515 -106.776 -3.40515 3.40515 0.91 0.000453737 0.000415341 0.0338229 0.0310161 28 2447 26 6.87369e+06 237555 531479. 1839.03 3.39 0.186925 0.164298 24610 126494 -1 2013 22 1211 1811 167603 39248 3.63716 3.63716 -135.128 -3.63716 0 0 648988. 2245.63 0.25 0.07 0.11 -1 -1 0.25 0.0221969 0.0195803 113 55 31 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.12 vpr 65.53 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33608 -1 -1 36 32 0 0 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 67100 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 26.9 MiB 1.11 988 19820 5893 11008 2919 65.5 MiB 0.15 0.00 3.38299 -114.786 -3.38299 3.38299 0.91 0.000505474 0.000454274 0.0458222 0.0418003 30 2453 24 6.87369e+06 503058 556674. 1926.21 1.02 0.115671 0.102464 25186 138497 -1 1934 21 1406 2062 116269 28443 3.6931 3.6931 -137.17 -3.6931 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0235317 0.0208002 150 31 91 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 13.00 vpr 65.95 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34120 -1 -1 40 32 0 0 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 67528 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 27.1 MiB 3.81 908 14012 3432 8685 1895 65.9 MiB 0.13 0.00 3.11996 -103.369 -3.11996 3.11996 0.97 0.000648522 0.000593865 0.0378109 0.0344227 30 2930 30 6.87369e+06 558954 556674. 1926.21 6.05 0.22739 0.198444 25186 138497 -1 1861 19 1168 1799 103357 25171 3.6041 3.6041 -125.408 -3.6041 0 0 706193. 2443.58 0.28 0.06 0.14 -1 -1 0.28 0.0245723 0.0216722 154 108 0 0 125 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.21 vpr 64.36 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 34160 -1 -1 16 26 0 0 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 65900 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 25.8 MiB 2.41 578 11544 4134 5945 1465 64.4 MiB 0.07 0.00 2.29206 -65.3809 -2.29206 2.29206 0.95 0.000328819 0.000299583 0.0249569 0.022779 28 1363 21 6.87369e+06 223581 531479. 1839.03 0.87 0.0648535 0.0570574 24610 126494 -1 1180 18 569 862 60888 14881 2.04482 2.04482 -77.8339 -2.04482 0 0 648988. 2245.63 0.26 0.03 0.12 -1 -1 0.26 0.0128773 0.0113543 69 21 26 26 22 22 - fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.12 vpr 65.48 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34052 -1 -1 21 32 0 0 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 67056 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.7 MiB 1.68 1113 14593 4729 7610 2254 65.5 MiB 0.13 0.00 3.28949 -118.069 -3.28949 3.28949 0.99 0.000478153 0.00043444 0.0409348 0.0372901 28 2806 23 6.87369e+06 293451 531479. 1839.03 1.30 0.119976 0.106656 24610 126494 -1 2440 22 2028 3282 256489 58469 3.8614 3.8614 -152.861 -3.8614 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.0259957 0.022979 141 -1 122 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.16 vpr 64.50 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 34036 -1 -1 12 32 0 0 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 66044 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.9 MiB 0.50 722 11916 4162 6143 1611 64.5 MiB 0.07 0.00 2.05403 -78.601 -2.05403 2.05403 0.91 0.000312003 0.000285053 0.0248183 0.0227163 28 1559 21 6.87369e+06 167686 531479. 1839.03 0.86 0.0658788 0.0583035 24610 126494 -1 1399 19 698 924 88392 19921 2.13012 2.13012 -94.7904 -2.13012 0 0 648988. 2245.63 0.26 0.04 0.11 -1 -1 0.26 0.0138871 0.0122772 71 -1 53 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.27 vpr 65.51 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34192 -1 -1 36 32 0 0 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 67084 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 26.8 MiB 0.91 956 13324 3127 8393 1804 65.5 MiB 0.09 0.00 3.45399 -118.97 -3.45399 3.45399 0.91 0.000498495 0.000456623 0.0312951 0.0286211 32 3486 25 6.87369e+06 503058 586450. 2029.24 1.40 0.111311 0.098898 25474 144626 -1 2255 22 1891 2816 244497 58321 4.0539 4.0539 -154.975 -4.0539 0 0 744469. 2576.02 0.28 0.08 0.13 -1 -1 0.28 0.0251966 0.0222581 155 21 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.99 vpr 65.52 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 33968 -1 -1 36 32 0 0 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 67096 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 26.9 MiB 1.01 1099 13324 3300 9172 852 65.5 MiB 0.11 0.00 2.78315 -101.341 -2.78315 2.78315 0.90 0.000493216 0.000450376 0.029971 0.0272827 32 2735 25 6.87369e+06 503058 586450. 2029.24 1.03 0.0969085 0.0853412 25474 144626 -1 2204 21 1658 2694 182497 43153 2.90996 2.90996 -119.924 -2.90996 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0229395 0.0202679 151 -1 124 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.49 vpr 65.50 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33740 -1 -1 39 32 0 0 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 67068 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 26.8 MiB 1.22 1003 13599 3914 8538 1147 65.5 MiB 0.12 0.00 3.42579 -116.992 -3.42579 3.42579 0.97 0.000546997 0.000502576 0.0342243 0.0310917 32 3241 36 6.87369e+06 544980 586450. 2029.24 2.05 0.150108 0.1313 25474 144626 -1 2381 23 2081 3591 307907 70823 4.0177 4.0177 -147.065 -4.0177 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.0281303 0.024775 156 54 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.82 vpr 64.77 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 34164 -1 -1 15 32 0 0 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 66328 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 26.4 MiB 1.21 821 11233 3895 4919 2419 64.8 MiB 0.08 0.00 2.42892 -90.0422 -2.42892 2.42892 0.96 0.000442648 0.000397602 0.0307614 0.0280526 34 2190 19 6.87369e+06 209608 618332. 2139.56 1.54 0.119531 0.104232 25762 151098 -1 1750 21 1168 1872 142978 33962 2.89626 2.89626 -113.44 -2.89626 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0197652 0.0173676 104 31 54 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.53 vpr 64.73 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33776 -1 -1 18 30 0 0 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 66288 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 26.3 MiB 1.30 748 11432 4615 5530 1287 64.7 MiB 0.09 0.00 3.0418 -102.924 -3.0418 3.0418 0.96 0.000430782 0.000390377 0.0299312 0.0272965 32 2329 24 6.87369e+06 251529 586450. 2029.24 1.15 0.0933984 0.0822459 25474 144626 -1 1662 21 1368 1996 161452 38163 3.21861 3.21861 -124.309 -3.21861 0 0 744469. 2576.02 0.31 0.07 0.14 -1 -1 0.31 0.0212572 0.0188096 109 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.67 vpr 64.50 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 33884 -1 -1 19 28 0 0 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 66048 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 26.2 MiB 1.25 701 13937 4070 8648 1219 64.5 MiB 0.10 0.00 2.72995 -87.9955 -2.72995 2.72995 0.91 0.000419908 0.000385405 0.0349031 0.0319613 34 1952 24 6.87369e+06 265503 618332. 2139.56 1.49 0.122862 0.107746 25762 151098 -1 1660 24 1448 2487 169961 43496 3.18556 3.18556 -113.866 -3.18556 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.0202081 0.0177606 104 27 56 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.94 vpr 64.81 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 33872 -1 -1 16 32 0 0 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 66364 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 1.48 923 15216 6477 8149 590 64.8 MiB 0.11 0.00 2.77395 -103.937 -2.77395 2.77395 0.91 0.000412239 0.000377506 0.0391797 0.0358865 34 2329 21 6.87369e+06 223581 618332. 2139.56 1.53 0.129689 0.114009 25762 151098 -1 1877 21 1595 2635 198477 45568 3.06656 3.06656 -125.331 -3.06656 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0194817 0.0171651 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.12 vpr 64.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33860 -1 -1 32 31 0 0 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 66516 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 26.4 MiB 1.00 757 10895 2701 7333 861 65.0 MiB 0.09 0.00 2.75195 -93.4764 -2.75195 2.75195 0.95 0.000433353 0.000395445 0.0242964 0.0220979 28 2216 23 6.87369e+06 447163 531479. 1839.03 1.08 0.0871476 0.076541 24610 126494 -1 1998 20 1415 2390 188804 44108 3.17456 3.17456 -120.429 -3.17456 0 0 648988. 2245.63 0.28 0.07 0.12 -1 -1 0.28 0.0205907 0.0182075 119 26 61 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 7.95 vpr 65.10 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 33692 -1 -1 32 29 0 0 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 66660 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 26.4 MiB 3.42 713 7653 1712 5343 598 65.1 MiB 0.07 0.00 2.28471 -74.2789 -2.28471 2.28471 0.97 0.000453125 0.000413688 0.0187874 0.0170596 34 1661 18 6.87369e+06 447163 618332. 2139.56 1.46 0.109336 0.0943468 25762 151098 -1 1438 20 1197 1996 115949 28939 2.02952 2.02952 -86.4161 -2.02952 0 0 787024. 2723.27 0.32 0.05 0.15 -1 -1 0.32 0.019247 0.0169201 113 55 29 29 57 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.94 vpr 65.72 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 34128 -1 -1 44 32 0 0 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 67296 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 27.1 MiB 5.00 1264 20925 5923 12168 2834 65.7 MiB 0.19 0.00 3.42579 -121.507 -3.42579 3.42579 0.95 0.000572923 0.000522735 0.0502738 0.045795 28 3183 38 6.87369e+06 614849 531479. 1839.03 1.76 0.146444 0.129157 24610 126494 -1 2671 23 2091 3669 264663 63774 3.8924 3.8924 -152.169 -3.8924 0 0 648988. 2245.63 0.26 0.09 0.12 -1 -1 0.26 0.0292751 0.0257845 184 26 128 32 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 7.94 vpr 65.73 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34068 -1 -1 39 32 0 0 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 67308 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 27.0 MiB 3.73 987 16732 4883 9735 2114 65.7 MiB 0.16 0.00 2.91945 -104.64 -2.91945 2.91945 0.97 0.000558453 0.000508537 0.0417471 0.038013 30 2382 19 6.87369e+06 544980 556674. 1926.21 1.02 0.111179 0.0979055 25186 138497 -1 1857 23 1850 2929 167724 39550 2.65656 2.65656 -115.524 -2.65656 0 0 706193. 2443.58 0.28 0.08 0.13 -1 -1 0.28 0.0279352 0.0246747 154 62 62 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 10.01 vpr 65.26 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 33884 -1 -1 31 31 0 0 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 66828 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 26.5 MiB 4.09 914 16921 5281 9385 2255 65.3 MiB 0.12 0.00 2.78925 -98.2919 -2.78925 2.78925 0.91 0.00046472 0.000422658 0.0393803 0.0358399 30 2082 19 6.87369e+06 433189 556674. 1926.21 2.99 0.179463 0.157148 25186 138497 -1 1730 22 1038 1680 100540 24092 2.76766 2.76766 -114.111 -2.76766 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.0220073 0.0193742 116 77 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.28 vpr 65.70 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 33692 -1 -1 22 31 0 0 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 67280 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 27.1 MiB 2.32 1098 10501 2878 6897 726 65.7 MiB 0.10 0.00 2.78315 -100.719 -2.78315 2.78315 0.92 0.00052675 0.000472351 0.031717 0.0289833 30 2633 24 6.87369e+06 307425 556674. 1926.21 1.01 0.10516 0.0927402 25186 138497 -1 2132 18 1395 2300 127239 30997 3.15456 3.15456 -126.443 -3.15456 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0220356 0.0195492 141 59 60 30 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 11.53 vpr 65.78 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34088 -1 -1 22 31 0 0 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 67356 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 27.0 MiB 6.33 1013 14965 4406 8574 1985 65.8 MiB 0.14 0.00 3.93354 -120.17 -3.93354 3.93354 0.95 0.000595825 0.000540609 0.0495179 0.0451662 34 2727 25 6.87369e+06 307425 618332. 2139.56 2.03 0.181348 0.158752 25762 151098 -1 2257 20 1513 2555 246635 52156 4.06635 4.06635 -146.694 -4.06635 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0262857 0.0232379 145 111 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 6.82 vpr 65.53 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34064 -1 -1 22 31 0 0 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 67100 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 26.9 MiB 2.18 976 13291 3888 8516 887 65.5 MiB 0.12 0.00 3.73124 -112.462 -3.73124 3.73124 0.91 0.000550987 0.00049973 0.0404301 0.0369365 34 2621 23 6.87369e+06 307425 618332. 2139.56 1.64 0.165622 0.145708 25762 151098 -1 2222 20 1578 2512 206539 47676 3.8264 3.8264 -144.012 -3.8264 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0245251 0.02169 141 86 31 31 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.55 vpr 65.33 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 34076 -1 -1 36 31 0 0 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 66900 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 26.7 MiB 3.17 945 10815 2405 7783 627 65.3 MiB 0.10 0.00 2.83325 -97.8513 -2.83325 2.83325 0.99 0.000561449 0.000505527 0.0290425 0.0263521 28 2777 28 6.87369e+06 503058 531479. 1839.03 1.24 0.109374 0.0958803 24610 126494 -1 2371 25 1999 3454 265606 63985 3.25786 3.25786 -131.255 -3.25786 0 0 648988. 2245.63 0.27 0.09 0.13 -1 -1 0.27 0.0273796 0.0241222 148 58 60 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 7.56 vpr 65.34 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33840 -1 -1 38 32 0 0 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 66904 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 26.7 MiB 2.28 1095 14144 4093 9120 931 65.3 MiB 0.13 0.00 3.40379 -121.579 -3.40379 3.40379 0.95 0.000547525 0.000498015 0.0352244 0.0320365 28 2948 48 6.87369e+06 531006 531479. 1839.03 2.18 0.135582 0.118762 24610 126494 -1 2655 22 2029 3447 344149 72715 4.1633 4.1633 -156.132 -4.1633 0 0 648988. 2245.63 0.26 0.10 0.13 -1 -1 0.26 0.02616 0.0230069 156 42 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.51 vpr 65.75 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 34100 -1 -1 42 32 0 0 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 67328 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 27.3 MiB 4.06 1409 16356 4170 10517 1669 65.8 MiB 0.15 0.00 3.57129 -124.235 -3.57129 3.57129 0.99 0.000680827 0.000619556 0.0466179 0.0423399 32 3552 24 6.87369e+06 586901 586450. 2029.24 1.15 0.136419 0.120547 25474 144626 -1 2885 25 2584 4246 361310 80043 4.0397 4.0397 -153.456 -4.0397 0 0 744469. 2576.02 0.30 0.12 0.14 -1 -1 0.30 0.0355345 0.0313939 186 91 62 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.19 vpr 64.65 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 34108 -1 -1 17 31 0 0 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 66200 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 26.2 MiB 2.27 929 13668 4908 6925 1835 64.6 MiB 0.11 0.00 3.0136 -109.099 -3.0136 3.0136 0.91 0.0004488 0.000412015 0.0361657 0.033081 32 2344 25 6.87369e+06 237555 586450. 2029.24 0.99 0.0947233 0.0838026 25474 144626 -1 1929 21 1416 2226 170608 38855 3.11231 3.11231 -128.221 -3.11231 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.0198564 0.0175211 112 24 62 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 9.81 vpr 65.52 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 34200 -1 -1 37 31 0 0 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 67096 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 26.8 MiB 3.07 983 21212 6553 11753 2906 65.5 MiB 0.18 0.00 3.37079 -114.461 -3.37079 3.37079 0.90 0.000530028 0.000482338 0.0508272 0.0462649 34 2625 21 6.87369e+06 517032 618332. 2139.56 3.63 0.207917 0.182316 25762 151098 -1 2165 23 1884 2916 219960 51252 3.7561 3.7561 -138.745 -3.7561 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0268496 0.0235835 152 59 62 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.01 vpr 65.37 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 33876 -1 -1 35 32 0 0 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 66936 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 26.7 MiB 2.28 1144 14007 4025 9052 930 65.4 MiB 0.13 0.00 2.84425 -105.01 -2.84425 2.84425 0.91 0.000529125 0.000485096 0.0347948 0.0317331 32 3353 38 6.87369e+06 489084 586450. 2029.24 1.70 0.14441 0.126585 25474 144626 -1 2625 23 1968 3432 312239 69878 3.16556 3.16556 -128.692 -3.16556 0 0 744469. 2576.02 0.28 0.09 0.13 -1 -1 0.28 0.0267283 0.0235122 150 54 62 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 7.74 vpr 65.45 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 33788 -1 -1 21 32 0 0 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 67016 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 1.90 907 14407 3742 8743 1922 65.4 MiB 0.11 0.00 3.32249 -116.136 -3.32249 3.32249 0.95 0.000492836 0.000449283 0.0410905 0.0376007 34 3072 26 6.87369e+06 293451 618332. 2139.56 2.71 0.159878 0.140478 25762 151098 -1 2273 23 2225 3970 306824 75086 4.035 4.035 -148.438 -4.035 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0255456 0.0225763 147 -1 128 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 9.80 vpr 65.45 MiB 0.02 7328 -1 -1 1 0.03 -1 -1 34040 -1 -1 36 32 0 0 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 67024 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 26.7 MiB 4.84 1074 20980 6833 11559 2588 65.5 MiB 0.18 0.00 2.77395 -102.786 -2.77395 2.77395 0.97 0.00056778 0.000517598 0.0538893 0.0490161 34 2427 20 6.87369e+06 503058 618332. 2139.56 1.72 0.176305 0.15472 25762 151098 -1 2045 21 1637 2502 162730 38801 2.97896 2.97896 -122.607 -2.97896 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0252703 0.0222099 148 81 25 25 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 8.82 vpr 65.53 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 34088 -1 -1 39 32 0 0 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 67104 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 26.9 MiB 4.64 988 9984 2204 6674 1106 65.5 MiB 0.10 0.00 2.84425 -100.846 -2.84425 2.84425 0.99 0.000554885 0.000503726 0.0252454 0.023001 30 2406 21 6.87369e+06 544980 556674. 1926.21 1.06 0.0982777 0.0862194 25186 138497 -1 1872 18 1237 2149 105640 26996 2.94296 2.94296 -121.264 -2.94296 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0221522 0.0195746 152 58 64 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 7.49 vpr 65.46 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 34180 -1 -1 40 32 0 0 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 67032 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 26.7 MiB 3.39 1087 19624 5642 11815 2167 65.5 MiB 0.16 0.00 2.85525 -104.284 -2.85525 2.85525 0.91 0.000551953 0.000498301 0.0461904 0.0418293 32 2948 24 6.87369e+06 558954 586450. 2029.24 1.04 0.121444 0.107229 25474 144626 -1 2331 22 1998 3288 282383 63466 3.00726 3.00726 -125.16 -3.00726 0 0 744469. 2576.02 0.28 0.09 0.13 -1 -1 0.28 0.0266419 0.0235233 156 61 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 8.48 vpr 65.41 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 34112 -1 -1 39 32 0 0 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 66984 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 26.7 MiB 1.04 1123 17214 5291 10264 1659 65.4 MiB 0.15 0.00 3.44779 -122.508 -3.44779 3.44779 0.97 0.000547127 0.00049112 0.0409164 0.0372462 28 2938 25 6.87369e+06 544980 531479. 1839.03 4.26 0.230057 0.200429 24610 126494 -1 2473 20 1966 3146 271029 61108 4.2163 4.2163 -158.74 -4.2163 0 0 648988. 2245.63 0.28 0.09 0.13 -1 -1 0.28 0.0254347 0.0225657 156 21 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 8.11 vpr 65.66 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 34184 -1 -1 41 32 0 0 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 67236 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 26.9 MiB 3.60 1077 15913 4114 10237 1562 65.7 MiB 0.14 0.00 3.40379 -121.915 -3.40379 3.40379 0.95 0.000555742 0.000506264 0.0384836 0.0350299 32 3019 45 6.87369e+06 572927 586450. 2029.24 1.35 0.132712 0.116331 25474 144626 -1 2369 21 1931 3138 260507 58289 3.8254 3.8254 -150.576 -3.8254 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0255961 0.0225426 157 50 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 9.17 vpr 65.66 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 34220 -1 -1 37 31 0 0 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 67236 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 26.8 MiB 4.88 1055 12860 3360 8578 922 65.7 MiB 0.12 0.00 3.25649 -111.552 -3.25649 3.25649 0.91 0.000573619 0.00052438 0.0340487 0.0310034 28 2892 26 6.87369e+06 517032 531479. 1839.03 1.32 0.123881 0.109756 24610 126494 -1 2533 21 1737 3034 243205 55453 3.8064 3.8064 -142.452 -3.8064 0 0 648988. 2245.63 0.26 0.09 0.11 -1 -1 0.26 0.0268445 0.0236874 150 110 0 0 122 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.46 vpr 65.84 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 34072 -1 -1 21 32 0 0 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 67424 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 27.1 MiB 3.36 1090 15709 4767 9147 1795 65.8 MiB 0.14 0.00 3.25649 -117.299 -3.25649 3.25649 0.90 0.000538965 0.000491663 0.0490414 0.0447104 34 3077 23 6.87369e+06 293451 618332. 2139.56 2.01 0.191636 0.169426 25762 151098 -1 2622 22 2071 3785 289491 68299 4.024 4.024 -149.475 -4.024 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0279658 0.0247598 145 86 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 6.21 vpr 65.06 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 34188 -1 -1 32 32 0 0 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 66620 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 26.6 MiB 1.15 922 13455 3976 8502 977 65.1 MiB 0.11 0.00 2.84425 -105.64 -2.84425 2.84425 0.98 0.000460392 0.000416327 0.0302625 0.027396 26 2509 24 6.87369e+06 447163 503264. 1741.40 2.00 0.103586 0.0918465 24322 120374 -1 2199 24 1563 2490 248077 55035 3.09056 3.09056 -130.527 -3.09056 0 0 618332. 2139.56 0.26 0.08 0.11 -1 -1 0.26 0.0240395 0.021166 121 20 63 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.65 vpr 65.37 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33532 -1 -1 16 32 0 0 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 66940 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 26.6 MiB 3.91 912 14184 3871 9141 1172 65.4 MiB 0.12 0.00 2.9366 -107.369 -2.9366 2.9366 0.98 0.000524682 0.00047833 0.0436936 0.039781 32 2609 46 6.87369e+06 223581 586450. 2029.24 1.56 0.14195 0.123925 25474 144626 -1 2089 22 1543 2413 216657 49278 3.19356 3.19356 -133.29 -3.19356 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0239555 0.0209269 112 91 0 0 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.27 vpr 65.45 MiB 0.02 7208 -1 -1 1 0.04 -1 -1 33980 -1 -1 44 32 0 0 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 67024 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 27.1 MiB 2.36 1358 15271 3964 10217 1090 65.5 MiB 0.15 0.00 4.00554 -140.249 -4.00554 4.00554 0.91 0.000683842 0.000633343 0.0392543 0.0357871 28 3747 28 6.87369e+06 614849 531479. 1839.03 1.87 0.142534 0.126948 24610 126494 -1 2887 21 2528 4299 308044 72257 4.58945 4.58945 -175.314 -4.58945 0 0 648988. 2245.63 0.25 0.10 0.11 -1 -1 0.25 0.0306291 0.027185 189 53 96 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.69 vpr 65.60 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34056 -1 -1 35 32 0 0 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 67172 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 26.9 MiB 3.21 906 11043 2840 6812 1391 65.6 MiB 0.10 0.00 2.88645 -99.0315 -2.88645 2.88645 0.92 0.000545126 0.000495064 0.0280983 0.0255875 28 2962 39 6.87369e+06 489084 531479. 1839.03 1.53 0.123324 0.109338 24610 126494 -1 2030 23 1535 2377 144552 38991 3.11686 3.11686 -118.202 -3.11686 0 0 648988. 2245.63 0.25 0.07 0.11 -1 -1 0.25 0.0254265 0.0224157 150 31 92 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.77 vpr 65.06 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33608 -1 -1 31 30 0 0 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 66620 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 26.3 MiB 0.81 753 16263 5676 8027 2560 65.1 MiB 0.12 0.00 2.84425 -94.6902 -2.84425 2.84425 0.91 0.000422189 0.000383039 0.0346558 0.0315252 32 2241 27 6.87369e+06 433189 586450. 2029.24 1.00 0.0951207 0.0837761 25474 144626 -1 1645 24 1393 2170 188776 42908 3.09326 3.09326 -114.915 -3.09326 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0213511 0.0186935 116 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 13.00 vpr 65.42 MiB 0.02 7560 -1 -1 1 0.04 -1 -1 34580 -1 -1 47 32 0 0 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 66988 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 27.0 MiB 7.29 1288 22189 6624 12465 3100 65.4 MiB 0.21 0.00 3.99454 -136.751 -3.99454 3.99454 0.96 0.000668154 0.000607044 0.0583282 0.0529548 34 3399 28 6.87369e+06 656770 618332. 2139.56 2.39 0.214425 0.188509 25762 151098 -1 2522 23 2602 4239 295608 70176 4.93115 4.93115 -172.061 -4.93115 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0332553 0.0294009 190 109 32 32 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 10.42 vpr 65.65 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34020 -1 -1 40 32 0 0 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 67228 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 26.9 MiB 3.67 1005 20112 5924 11488 2700 65.7 MiB 0.16 0.00 3.47899 -122.797 -3.47899 3.47899 0.96 0.000528439 0.000480805 0.0464429 0.042361 34 2470 23 6.87369e+06 558954 618332. 2139.56 3.53 0.19561 0.170917 25762 151098 -1 1982 19 1758 2588 184505 42616 3.6638 3.6638 -145.76 -3.6638 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0232968 0.0206717 156 31 96 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.92 vpr 64.85 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 33832 -1 -1 33 32 0 0 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 66404 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.3 MiB 0.77 932 16525 5186 8718 2621 64.8 MiB 0.12 0.00 2.77395 -101.909 -2.77395 2.77395 0.98 0.000440447 0.000402003 0.0350178 0.0319774 30 2239 19 6.87369e+06 461137 556674. 1926.21 1.06 0.0906784 0.0799405 25186 138497 -1 1821 21 1412 2316 151089 35140 2.74566 2.74566 -115.469 -2.74566 0 0 706193. 2443.58 0.28 0.06 0.13 -1 -1 0.28 0.0184417 0.0162282 123 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 9.09 vpr 65.84 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 34208 -1 -1 45 32 0 0 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 67424 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 27.2 MiB 3.23 1200 15189 4121 9721 1347 65.8 MiB 0.15 0.00 3.95234 -135.161 -3.95234 3.95234 0.99 0.000567627 0.000515764 0.0375738 0.0341495 34 3205 28 6.87369e+06 628823 618332. 2139.56 2.58 0.197051 0.173143 25762 151098 -1 2606 22 2496 4139 303124 70717 4.46295 4.46295 -167.254 -4.46295 0 0 787024. 2723.27 0.32 0.10 0.14 -1 -1 0.32 0.0304824 0.0269726 189 26 128 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.85 vpr 64.87 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 34084 -1 -1 16 32 0 0 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 66428 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.5 MiB 1.11 922 13668 4604 7236 1828 64.9 MiB 0.11 0.00 3.0246 -113.373 -3.0246 3.0246 0.96 0.000441015 0.000402445 0.0368906 0.0337372 34 2287 23 6.87369e+06 223581 618332. 2139.56 1.60 0.131794 0.115674 25762 151098 -1 1939 21 1560 2558 197833 43846 3.09026 3.09026 -130.136 -3.09026 0 0 787024. 2723.27 0.33 0.07 0.15 -1 -1 0.33 0.0209811 0.0185823 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 7.16 vpr 64.75 MiB 0.02 7244 -1 -1 1 0.03 -1 -1 34048 -1 -1 33 30 0 0 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 66304 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 26.2 MiB 2.96 873 17159 5289 9369 2501 64.8 MiB 0.13 0.00 2.84425 -97.4511 -2.84425 2.84425 0.97 0.000433077 0.000392835 0.0367063 0.0333785 28 1980 22 6.87369e+06 461137 531479. 1839.03 1.13 0.0963533 0.0848931 24610 126494 -1 1813 22 1397 2335 177106 40386 3.18556 3.18556 -120.614 -3.18556 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0208502 0.0182998 118 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.97 vpr 65.60 MiB 0.02 7400 -1 -1 1 0.03 -1 -1 34068 -1 -1 35 29 0 0 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 67176 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 26.9 MiB 3.84 823 10827 2627 7276 924 65.6 MiB 0.10 0.00 2.86625 -89.4747 -2.86625 2.86625 0.92 0.000526266 0.000480528 0.0280275 0.0255013 28 2378 25 6.87369e+06 489084 531479. 1839.03 1.21 0.110816 0.0981027 24610 126494 -1 2102 21 1704 2983 222873 55639 3.13056 3.13056 -117.245 -3.13056 0 0 648988. 2245.63 0.25 0.08 0.11 -1 -1 0.25 0.0243526 0.0214877 141 81 29 29 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 8.87 vpr 65.65 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 34288 -1 -1 21 32 0 0 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 67224 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 2.53 850 10315 2292 7470 553 65.6 MiB 0.10 0.00 3.36169 -116.932 -3.36169 3.36169 0.91 0.0005273 0.000480944 0.0319562 0.0291877 34 2591 21 6.87369e+06 293451 618332. 2139.56 3.35 0.19046 0.166681 25762 151098 -1 2126 24 2250 3395 243066 59359 4.0177 4.0177 -156.412 -4.0177 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0281575 0.0248938 147 53 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 9.37 vpr 65.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34328 -1 -1 37 32 0 0 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 67004 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.7 MiB 4.87 1085 17256 4389 10954 1913 65.4 MiB 0.15 0.00 3.40379 -123.373 -3.40379 3.40379 0.96 0.000554548 0.000504647 0.043492 0.0395795 32 3051 37 6.87369e+06 517032 586450. 2029.24 1.34 0.130699 0.115174 25474 144626 -1 2469 24 2236 3909 346925 76014 3.9064 3.9064 -151.794 -3.9064 0 0 744469. 2576.02 0.28 0.10 0.13 -1 -1 0.28 0.0289466 0.0255827 155 55 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.97 vpr 65.42 MiB 0.02 7232 -1 -1 1 0.03 -1 -1 34240 -1 -1 33 32 0 0 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 66992 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 26.6 MiB 3.79 901 18745 6241 10231 2273 65.4 MiB 0.14 0.00 2.83325 -103.4 -2.83325 2.83325 0.98 0.000495673 0.00045182 0.0433307 0.0394289 32 2400 23 6.87369e+06 461137 586450. 2029.24 1.03 0.107598 0.0952868 25474 144626 -1 1933 21 1429 2255 213160 47220 3.10426 3.10426 -125.313 -3.10426 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0225912 0.0199657 123 55 32 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 9.54 vpr 64.95 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34020 -1 -1 18 31 0 0 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 66504 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 26.5 MiB 4.79 818 11106 3048 7274 784 64.9 MiB 0.10 0.00 2.9476 -102.942 -2.9476 2.9476 0.95 0.000484206 0.000440639 0.0329353 0.030049 34 2174 21 6.87369e+06 251529 618332. 2139.56 1.62 0.134645 0.117233 25762 151098 -1 1872 25 1345 2426 190116 44060 2.94126 2.94126 -118.035 -2.94126 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0248181 0.0217716 108 82 0 0 89 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 7.98 vpr 65.30 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 34076 -1 -1 34 30 0 0 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 66872 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 26.7 MiB 3.77 1012 12360 3250 8182 928 65.3 MiB 0.11 0.00 2.75195 -96.1074 -2.75195 2.75195 0.96 0.000525597 0.000479608 0.0325189 0.029608 28 2573 22 6.87369e+06 475111 531479. 1839.03 1.14 0.105571 0.0932078 24610 126494 -1 2227 21 1432 2355 182996 42020 3.20456 3.20456 -122.415 -3.20456 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0242225 0.0213481 143 52 60 30 57 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 8.13 vpr 65.15 MiB 0.02 7264 -1 -1 1 0.03 -1 -1 33868 -1 -1 35 28 0 0 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 66712 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 26.6 MiB 2.06 1073 13055 3447 8098 1510 65.1 MiB 0.11 0.00 3.47409 -108.324 -3.47409 3.47409 0.95 0.000482801 0.000441182 0.0309361 0.0282232 28 2369 22 6.87369e+06 489084 531479. 1839.03 3.00 0.162708 0.141125 24610 126494 -1 2189 21 1575 2583 195259 44400 4.113 4.113 -135.858 -4.113 0 0 648988. 2245.63 0.27 0.07 0.13 -1 -1 0.27 0.0217007 0.0190468 139 20 84 28 28 28 - fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 7.16 vpr 65.04 MiB 0.02 7280 -1 -1 1 0.03 -1 -1 34040 -1 -1 18 30 0 0 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 66596 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 26.6 MiB 2.89 696 10228 4291 5125 812 65.0 MiB 0.08 0.00 3.1059 -100.619 -3.1059 3.1059 0.91 0.000455305 0.000415506 0.0288061 0.0263525 30 2116 23 6.87369e+06 251529 556674. 1926.21 1.41 0.100317 0.088944 25186 138497 -1 1521 23 1384 2270 146465 37211 3.07131 3.07131 -117.492 -3.07131 0 0 706193. 2443.58 0.28 0.06 0.12 -1 -1 0.28 0.0218579 0.0191873 110 58 30 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 8.84 vpr 65.00 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 33732 -1 -1 17 32 0 0 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 66564 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 26.5 MiB 4.14 976 14956 4864 8603 1489 65.0 MiB 0.12 0.00 2.8626 -100.959 -2.8626 2.8626 0.94 0.000487764 0.000439271 0.043949 0.0400416 34 2379 21 6.87369e+06 237555 618332. 2139.56 1.62 0.146999 0.12835 25762 151098 -1 2014 19 1149 1901 166371 36683 2.92916 2.92916 -122.839 -2.92916 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.021695 0.0191758 110 88 0 0 91 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 7.83 vpr 65.38 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 33856 -1 -1 37 31 0 0 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 66944 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 27.0 MiB 1.08 1186 14948 3587 9414 1947 65.4 MiB 0.12 0.00 3.40379 -118.304 -3.40379 3.40379 0.96 0.000480138 0.000437909 0.0337152 0.0307287 34 2793 26 6.87369e+06 517032 618332. 2139.56 3.60 0.181603 0.158674 25762 151098 -1 2429 25 1952 3198 248527 55001 3.6371 3.6371 -139.24 -3.6371 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0272863 0.0239964 151 -1 124 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 11.41 vpr 65.52 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 34020 -1 -1 38 32 0 0 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 67096 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 26.8 MiB 4.68 974 13192 3365 8245 1582 65.5 MiB 0.12 0.00 3.39279 -117.077 -3.39279 3.39279 0.91 0.00056382 0.000516558 0.0327453 0.0298703 34 2937 23 6.87369e+06 531006 618332. 2139.56 3.70 0.201422 0.176502 25762 151098 -1 2360 23 2141 3700 265296 64739 3.8844 3.8844 -146.71 -3.8844 0 0 787024. 2723.27 0.30 0.09 0.13 -1 -1 0.30 0.0266459 0.0234702 156 57 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.28 vpr 65.63 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 34100 -1 -1 37 32 0 0 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 67204 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.9 MiB 4.69 1137 15846 4309 9710 1827 65.6 MiB 0.14 0.00 3.32249 -120.919 -3.32249 3.32249 0.97 0.000602783 0.000539695 0.0410275 0.0374524 32 3370 26 6.87369e+06 517032 586450. 2029.24 1.29 0.120545 0.106504 25474 144626 -1 2673 24 2333 3922 384421 84195 3.9347 3.9347 -154.995 -3.9347 0 0 744469. 2576.02 0.29 0.11 0.14 -1 -1 0.29 0.0287055 0.0252107 155 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 8.75 vpr 65.54 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 34092 -1 -1 39 32 0 0 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 67108 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 26.8 MiB 3.73 1132 20829 6091 12282 2456 65.5 MiB 0.17 0.00 3.27849 -114.846 -3.27849 3.27849 0.98 0.000552389 0.000501024 0.0515066 0.046783 28 2948 31 6.87369e+06 544980 531479. 1839.03 1.84 0.140025 0.124023 24610 126494 -1 2465 21 1852 3204 254645 58513 3.9847 3.9847 -147.561 -3.9847 0 0 648988. 2245.63 0.24 0.09 0.12 -1 -1 0.24 0.0249995 0.0219949 152 62 60 30 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.05 vpr 65.02 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33604 -1 -1 19 30 0 0 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 66580 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 26.5 MiB 2.96 833 14956 4735 8443 1778 65.0 MiB 0.12 0.00 2.9806 -102.791 -2.9806 2.9806 0.96 0.000457732 0.000418164 0.0398002 0.0362675 32 2381 23 6.87369e+06 265503 586450. 2029.24 1.04 0.0970175 0.0855066 25474 144626 -1 2026 21 1402 2280 209192 46952 3.44721 3.44721 -133.669 -3.44721 0 0 744469. 2576.02 0.30 0.07 0.13 -1 -1 0.30 0.0209736 0.0184682 110 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 8.38 vpr 65.53 MiB 0.02 7440 -1 -1 1 0.03 -1 -1 34128 -1 -1 23 30 0 0 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 67100 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 26.9 MiB 3.74 1004 16081 5076 9146 1859 65.5 MiB 0.13 0.00 3.36289 -114.657 -3.36289 3.36289 0.91 0.000501113 0.000458013 0.0465418 0.0425419 34 2333 24 6.87369e+06 321398 618332. 2139.56 1.65 0.166773 0.146684 25762 151098 -1 1942 23 1932 2986 224845 49975 3.7121 3.7121 -141.29 -3.7121 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0246355 0.0216986 140 58 60 30 60 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 11.21 vpr 65.84 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34232 -1 -1 43 32 0 0 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 67424 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 27.2 MiB 6.57 1196 13516 3591 8696 1229 65.8 MiB 0.12 0.00 3.38179 -119.932 -3.38179 3.38179 0.96 0.000607831 0.00055333 0.0343369 0.0311917 32 3135 48 6.87369e+06 600875 586450. 2029.24 1.44 0.139501 0.12182 25474 144626 -1 2504 22 1905 3300 307428 66409 3.9737 3.9737 -152.578 -3.9737 0 0 744469. 2576.02 0.29 0.10 0.14 -1 -1 0.29 0.027724 0.0242439 158 106 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 5.85 vpr 65.64 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33772 -1 -1 33 31 0 0 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 67216 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 27.0 MiB 1.48 1081 13236 3366 8464 1406 65.6 MiB 0.13 0.00 3.39279 -116.856 -3.39279 3.39279 0.96 0.000594425 0.00053617 0.0375786 0.0343044 32 2894 35 6.87369e+06 461137 586450. 2029.24 1.18 0.12569 0.110728 25474 144626 -1 2268 18 1775 2903 217121 50697 3.9097 3.9097 -145.073 -3.9097 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0236325 0.020928 149 79 31 31 93 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 7.88 vpr 65.29 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33924 -1 -1 32 30 0 0 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 66860 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 26.7 MiB 2.84 946 17347 4997 9339 3011 65.3 MiB 0.15 0.00 2.84425 -94.1254 -2.84425 2.84425 0.98 0.000539219 0.000490006 0.0468184 0.0424801 34 2611 25 6.87369e+06 447163 618332. 2139.56 1.79 0.171638 0.150077 25762 151098 -1 2002 23 1945 3133 225213 53990 3.04976 3.04976 -117.12 -3.04976 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0266911 0.0233642 141 83 26 26 90 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 10.33 vpr 65.47 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 34180 -1 -1 21 32 0 0 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 67044 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.8 MiB 5.30 1042 9757 2795 6300 662 65.5 MiB 0.10 0.00 3.32249 -119.056 -3.32249 3.32249 0.90 0.000536581 0.000490574 0.0308537 0.0282457 34 3181 23 6.87369e+06 293451 618332. 2139.56 2.02 0.166625 0.14699 25762 151098 -1 2606 22 2221 3830 308390 70974 4.027 4.027 -153.708 -4.027 0 0 787024. 2723.27 0.30 0.10 0.13 -1 -1 0.30 0.0271545 0.0240726 147 58 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.63 vpr 65.37 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 33872 -1 -1 36 29 0 0 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 66940 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 26.7 MiB 2.67 925 12307 3344 8097 866 65.4 MiB 0.11 0.00 2.83325 -92.0544 -2.83325 2.83325 0.90 0.000513085 0.000469193 0.0306736 0.0279117 26 2588 25 6.87369e+06 503058 503264. 1741.40 1.02 0.10435 0.0919789 24322 120374 -1 2392 22 1660 2704 264016 59019 3.30606 3.30606 -120.361 -3.30606 0 0 618332. 2139.56 0.24 0.09 0.10 -1 -1 0.24 0.0260935 0.023003 138 81 26 26 85 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.56 vpr 64.71 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 33540 -1 -1 16 32 0 0 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 66260 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.3 MiB 0.81 863 11604 3100 7674 830 64.7 MiB 0.10 0.00 2.9586 -108.713 -2.9586 2.9586 0.94 0.000440426 0.000402532 0.0316562 0.0289539 34 2293 24 6.87369e+06 223581 618332. 2139.56 1.64 0.125599 0.109618 25762 151098 -1 2009 20 1468 2215 179662 42670 3.12326 3.12326 -130.011 -3.12326 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.019844 0.0175024 114 -1 96 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 10.14 vpr 65.54 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 33820 -1 -1 37 32 0 0 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 67112 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 26.8 MiB 5.76 1037 14436 3761 9923 752 65.5 MiB 0.13 0.00 3.41479 -121.507 -3.41479 3.41479 0.95 0.000556353 0.000506286 0.036898 0.0335154 30 2887 24 6.87369e+06 517032 556674. 1926.21 1.26 0.114468 0.100777 25186 138497 -1 2215 21 1709 2672 176177 40587 3.7874 3.7874 -146.4 -3.7874 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0252906 0.0222832 155 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.54 vpr 65.58 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34064 -1 -1 21 32 0 0 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 67156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 26.9 MiB 4.67 1118 15151 4982 8461 1708 65.6 MiB 0.13 0.00 3.36169 -123.823 -3.36169 3.36169 0.93 0.000499809 0.000456777 0.0458756 0.0417912 34 2878 30 6.87369e+06 293451 618332. 2139.56 1.82 0.167717 0.146538 25762 151098 -1 2493 21 2131 3389 255456 58312 4.0067 4.0067 -160.904 -4.0067 0 0 787024. 2723.27 0.29 0.09 0.14 -1 -1 0.29 0.0256489 0.0225192 147 62 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 8.28 vpr 65.30 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 33756 -1 -1 30 32 0 0 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 66864 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 26.6 MiB 4.36 861 16708 5672 8044 2992 65.3 MiB 0.12 0.00 2.71895 -93.3094 -2.71895 2.71895 0.91 0.000436433 0.00039736 0.0360682 0.0328474 30 2073 20 6.87369e+06 419215 556674. 1926.21 0.98 0.0936744 0.0827325 25186 138497 -1 1644 23 1166 1964 124559 29427 2.75666 2.75666 -109.872 -2.75666 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0208685 0.0183355 112 47 32 32 54 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.26 vpr 64.84 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33832 -1 -1 17 31 0 0 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 66400 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.5 MiB 1.10 635 6616 1513 4390 713 64.8 MiB 0.06 0.00 3.1169 -104.319 -3.1169 3.1169 0.95 0.00043477 0.000397968 0.0182077 0.0166767 32 2471 30 6.87369e+06 237555 586450. 2029.24 1.12 0.0802934 0.0702694 25474 144626 -1 1747 20 1440 2292 182061 44359 3.13261 3.13261 -125.367 -3.13261 0 0 744469. 2576.02 0.29 0.06 0.14 -1 -1 0.29 0.0188538 0.0166094 112 -1 93 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 7.40 vpr 65.43 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33988 -1 -1 35 32 0 0 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 67000 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 26.8 MiB 3.38 1099 18111 4857 10932 2322 65.4 MiB 0.14 0.00 3.28769 -114.366 -3.28769 3.28769 0.91 0.000523839 0.000478988 0.0434714 0.0396691 32 2647 28 6.87369e+06 489084 586450. 2029.24 1.00 0.115039 0.101558 25474 144626 -1 2211 26 1806 2651 212752 47788 3.6323 3.6323 -138.211 -3.6323 0 0 744469. 2576.02 0.28 0.08 0.13 -1 -1 0.28 0.0290224 0.0254496 144 56 60 32 58 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.92 vpr 65.75 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33708 -1 -1 33 32 0 0 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 67324 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 27.1 MiB 1.47 1093 12973 3522 8653 798 65.7 MiB 0.11 0.00 3.31562 -113.632 -3.31562 3.31562 0.91 0.000528634 0.000484353 0.0334156 0.0305029 28 2771 17 6.87369e+06 461137 531479. 1839.03 1.52 0.111625 0.0992548 24610 126494 -1 2395 22 1644 2671 211953 47745 4.10256 4.10256 -143.279 -4.10256 0 0 648988. 2245.63 0.26 0.08 0.11 -1 -1 0.26 0.0255158 0.0224645 142 81 28 28 88 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 7.16 vpr 65.85 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33924 -1 -1 41 32 0 0 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 67428 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 27.2 MiB 1.17 1256 14678 3781 9107 1790 65.8 MiB 0.14 0.00 3.98354 -133.533 -3.98354 3.98354 0.95 0.000601004 0.000545451 0.0363857 0.0330908 34 3069 33 6.87369e+06 572927 618332. 2139.56 2.78 0.188726 0.166091 25762 151098 -1 2555 19 1900 3184 270568 59281 4.64955 4.64955 -167.681 -4.64955 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0248548 0.0219752 183 -1 156 32 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 8.10 vpr 65.40 MiB 0.02 7420 -1 -1 1 0.03 -1 -1 33796 -1 -1 32 30 0 0 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 66968 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 26.8 MiB 3.34 989 11383 2876 6987 1520 65.4 MiB 0.11 0.00 2.85525 -98.377 -2.85525 2.85525 0.96 0.000522235 0.000473816 0.0307418 0.0279493 34 2435 21 6.87369e+06 447163 618332. 2139.56 1.61 0.140546 0.122408 25762 151098 -1 2023 20 1685 2765 187662 45896 2.98226 2.98226 -116.568 -2.98226 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0227731 0.0201433 141 47 60 30 56 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.67 vpr 64.38 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34092 -1 -1 20 27 0 0 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 65928 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 25.8 MiB 0.90 802 12585 5037 6178 1370 64.4 MiB 0.09 0.00 2.9348 -90.1886 -2.9348 2.9348 0.90 0.000383449 0.000344227 0.0304914 0.0278507 32 1833 23 6.87369e+06 279477 586450. 2029.24 0.92 0.0810796 0.071426 25474 144626 -1 1590 22 1125 1636 125342 29812 3.16976 3.16976 -108.445 -3.16976 0 0 744469. 2576.02 0.28 0.05 0.13 -1 -1 0.28 0.0184982 0.0162493 102 26 54 27 27 27 - fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 14.48 vpr 65.82 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34148 -1 -1 42 32 0 0 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 67400 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 27.1 MiB 3.15 1460 13606 3334 9470 802 65.8 MiB 0.14 0.00 3.31149 -117.473 -3.31149 3.31149 0.96 0.000668574 0.000608554 0.0387571 0.0352391 28 4104 39 6.87369e+06 586901 531479. 1839.03 8.13 0.267115 0.232173 24610 126494 -1 3471 23 2586 4567 426221 97325 4.6032 4.6032 -170.429 -4.6032 0 0 648988. 2245.63 0.27 0.13 0.13 -1 -1 0.27 0.0327249 0.0289111 184 85 62 31 95 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 9.40 vpr 65.76 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 33816 -1 -1 23 31 0 0 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 67340 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 27.0 MiB 4.26 867 13127 3132 8828 1167 65.8 MiB 0.11 0.00 3.97274 -121.868 -3.97274 3.97274 0.95 0.000609084 0.000553541 0.0439436 0.0400446 32 3326 48 6.87369e+06 321398 586450. 2029.24 1.99 0.174931 0.152783 25474 144626 -1 2320 23 1823 2897 280652 67826 4.3636 4.3636 -162.391 -4.3636 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0284759 0.0249914 144 105 0 0 124 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 8.36 vpr 65.11 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33500 -1 -1 16 32 0 0 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 66668 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 26.4 MiB 3.89 931 14528 5023 7251 2254 65.1 MiB 0.12 0.00 3.8283 -107.868 -3.8283 3.8283 0.91 0.000469152 0.000424501 0.0419532 0.0380329 34 2255 22 6.87369e+06 223581 618332. 2139.56 1.54 0.14669 0.128676 25762 151098 -1 1974 16 834 1230 124726 26357 3.18321 3.18321 -124.165 -3.18321 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0180806 0.01604 107 86 0 0 89 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.97 vpr 65.37 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 33968 -1 -1 34 32 0 0 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 66940 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 26.7 MiB 1.25 1146 17873 5435 10742 1696 65.4 MiB 0.15 0.00 3.30669 -116.779 -3.30669 3.30669 0.96 0.000517216 0.00047061 0.0438944 0.0399591 28 2568 50 6.87369e+06 475111 531479. 1839.03 1.32 0.139831 0.122913 24610 126494 -1 2404 62 3926 5905 1070178 491313 4.035 4.035 -150.901 -4.035 0 0 648988. 2245.63 0.26 0.36 0.13 -1 -1 0.26 0.0608261 0.0529336 147 31 90 30 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.77 vpr 65.87 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34144 -1 -1 40 31 0 0 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 67452 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 27.2 MiB 2.51 1126 12153 3063 8050 1040 65.9 MiB 0.12 0.00 3.43499 -116.277 -3.43499 3.43499 0.96 0.000621188 0.000564524 0.0335287 0.0305751 28 2814 23 6.87369e+06 558954 531479. 1839.03 1.13 0.116636 0.102889 24610 126494 -1 2595 21 2003 2968 225834 52146 4.2555 4.2555 -149.319 -4.2555 0 0 648988. 2245.63 0.26 0.08 0.12 -1 -1 0.26 0.0275325 0.0242645 176 50 87 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.45 vpr 65.41 MiB 0.02 7476 -1 -1 1 0.03 -1 -1 34164 -1 -1 36 30 0 0 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 66980 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 26.8 MiB 2.36 1028 18548 5822 10051 2675 65.4 MiB 0.16 0.00 2.72995 -93.9691 -2.72995 2.72995 0.96 0.000529924 0.000483365 0.0458298 0.0417501 34 2684 26 6.87369e+06 503058 618332. 2139.56 1.90 0.165108 0.144895 25762 151098 -1 2170 19 1601 2745 204160 47734 3.06356 3.06356 -115.641 -3.06356 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0220193 0.0193708 144 50 58 30 58 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 7.40 vpr 65.37 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33856 -1 -1 46 32 0 0 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 66940 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 26.6 MiB 3.35 1119 15101 4188 9666 1247 65.4 MiB 0.13 0.00 3.40379 -121.611 -3.40379 3.40379 0.91 0.000545485 0.000499566 0.0342354 0.0311212 30 2856 23 6.87369e+06 642796 556674. 1926.21 1.04 0.108787 0.0959371 25186 138497 -1 2309 21 1717 2980 188501 42704 3.6718 3.6718 -146.578 -3.6718 0 0 706193. 2443.58 0.27 0.07 0.12 -1 -1 0.27 0.0247272 0.0217873 160 61 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 8.11 vpr 65.46 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33932 -1 -1 42 32 0 0 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 67036 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 26.7 MiB 3.62 1036 11856 2744 8552 560 65.5 MiB 0.11 0.00 2.85525 -102.512 -2.85525 2.85525 0.96 0.00056704 0.000515781 0.0294641 0.0267873 26 3084 40 6.87369e+06 586901 503264. 1741.40 1.40 0.124547 0.108947 24322 120374 -1 2590 23 1827 2966 253933 57009 3.10756 3.10756 -129.554 -3.10756 0 0 618332. 2139.56 0.25 0.09 0.12 -1 -1 0.25 0.0270956 0.0237389 157 61 63 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 6.29 vpr 64.83 MiB 0.02 7216 -1 -1 1 0.03 -1 -1 33572 -1 -1 19 29 0 0 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 66388 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 26.5 MiB 2.01 777 13496 5102 6217 2177 64.8 MiB 0.09 0.00 2.9256 -96.8343 -2.9256 2.9256 0.90 0.000396273 0.000362178 0.0329145 0.0299985 34 1801 18 6.87369e+06 265503 618332. 2139.56 1.39 0.116637 0.102019 25762 151098 -1 1497 17 1068 1560 108761 24758 3.01631 3.01631 -112.741 -3.01631 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.016539 0.014651 107 28 58 29 29 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.02 vpr 65.28 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33992 -1 -1 17 32 0 0 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 66848 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 26.6 MiB 2.72 815 7256 1765 4960 531 65.3 MiB 0.06 0.00 3.34714 -97.9722 -3.34714 3.34714 0.91 0.000448523 0.000409242 0.0205113 0.0187769 34 1983 21 6.87369e+06 237555 618332. 2139.56 1.43 0.114848 0.0998817 25762 151098 -1 1678 18 914 1366 100643 23682 2.8776 2.8776 -110.55 -2.8776 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0183579 0.0162153 102 79 0 0 82 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.61 vpr 65.52 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 33928 -1 -1 39 31 0 0 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 67088 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 26.9 MiB 2.24 1072 18666 5318 11018 2330 65.5 MiB 0.16 0.00 3.39279 -116.84 -3.39279 3.39279 0.99 0.000546352 0.000494078 0.0447641 0.0406796 32 3065 42 6.87369e+06 544980 586450. 2029.24 2.10 0.154306 0.135536 25474 144626 -1 2302 22 1801 2980 275099 58465 3.7844 3.7844 -142.813 -3.7844 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0249757 0.0219588 152 29 93 31 31 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 8.05 vpr 64.94 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 33736 -1 -1 32 29 0 0 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 66496 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 26.5 MiB 3.96 840 16683 5423 8908 2352 64.9 MiB 0.12 0.00 2.70795 -88.6836 -2.70795 2.70795 0.96 0.000436776 0.000399371 0.0365448 0.033326 26 1935 22 6.87369e+06 447163 503264. 1741.40 1.03 0.0933443 0.0822543 24322 120374 -1 1837 19 1212 2007 167573 38289 2.93826 2.93826 -111 -2.93826 0 0 618332. 2139.56 0.27 0.06 0.12 -1 -1 0.27 0.0188905 0.0166515 108 48 29 29 52 26 - fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.89 vpr 65.02 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 33616 -1 -1 16 32 0 0 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 66576 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.6 MiB 4.02 783 7992 1793 5935 264 65.0 MiB 0.08 0.00 2.9586 -104.965 -2.9586 2.9586 1.00 0.000481396 0.000439077 0.0240096 0.0219841 34 2432 25 6.87369e+06 223581 618332. 2139.56 1.73 0.129267 0.112998 25762 151098 -1 1836 23 1598 2568 203940 47800 3.09326 3.09326 -127.036 -3.09326 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0225733 0.0199285 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.04 vpr 65.54 MiB 0.02 7300 -1 -1 1 0.03 -1 -1 33560 -1 -1 35 31 0 0 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 67116 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 26.9 MiB 3.30 884 7523 1554 5228 741 65.5 MiB 0.08 0.00 2.92745 -99.4139 -2.92745 2.92745 0.95 0.000533858 0.00048624 0.0204297 0.0186474 34 2323 23 6.87369e+06 489084 618332. 2139.56 1.64 0.135968 0.117754 25762 151098 -1 1825 21 1759 2537 170414 41301 2.93196 2.93196 -117.309 -2.93196 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0246123 0.0216781 146 60 58 31 62 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 7.51 vpr 64.95 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33828 -1 -1 16 31 0 0 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 66504 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 26.5 MiB 3.49 815 11909 3743 6558 1608 64.9 MiB 0.10 0.00 2.63557 -92.717 -2.63557 2.63557 0.96 0.000454981 0.000415071 0.0336445 0.0307398 32 2154 31 6.87369e+06 223581 586450. 2029.24 1.01 0.097489 0.0857202 25474 144626 -1 1921 21 1233 1992 173817 39783 3.07756 3.07756 -117.776 -3.07756 0 0 744469. 2576.02 0.29 0.06 0.15 -1 -1 0.29 0.0202762 0.0178174 103 49 31 31 53 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.75 vpr 65.38 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34012 -1 -1 37 32 0 0 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 66948 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 26.7 MiB 3.57 875 18196 5657 9490 3049 65.4 MiB 0.15 0.00 2.70795 -92.7972 -2.70795 2.70795 0.97 0.000534024 0.000485158 0.0444638 0.040429 30 2522 25 6.87369e+06 517032 556674. 1926.21 1.06 0.12 0.106265 25186 138497 -1 1884 18 1202 1944 124983 31549 2.91296 2.91296 -113.481 -2.91296 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.0212855 0.018884 143 56 52 26 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 7.97 vpr 65.84 MiB 0.02 7504 -1 -1 1 0.03 -1 -1 33836 -1 -1 39 31 0 0 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 67420 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 27.1 MiB 4.05 918 10574 2512 6926 1136 65.8 MiB 0.09 0.00 2.86625 -97.1498 -2.86625 2.86625 0.91 0.000571791 0.000512302 0.0265705 0.024039 30 2250 22 6.87369e+06 544980 556674. 1926.21 0.95 0.0982348 0.0860795 25186 138497 -1 1763 21 1552 2455 129256 31797 2.84266 2.84266 -114.89 -2.84266 0 0 706193. 2443.58 0.27 0.06 0.12 -1 -1 0.27 0.024923 0.0220251 151 88 31 31 92 31 - fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.01 vpr 65.03 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 33784 -1 -1 17 32 0 0 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 66588 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 26.6 MiB 3.33 773 13381 4004 7711 1666 65.0 MiB 0.11 0.00 2.62457 -92.3566 -2.62457 2.62457 0.96 0.000473953 0.000432506 0.0383951 0.0350408 34 2177 22 6.87369e+06 237555 618332. 2139.56 1.55 0.136294 0.119029 25762 151098 -1 1798 21 1315 2107 160402 38069 2.91016 2.91016 -115.275 -2.91016 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0221658 0.0195263 110 54 32 32 60 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 8.40 vpr 65.18 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 33504 -1 -1 16 32 0 0 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 66748 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 26.5 MiB 3.99 888 14356 4651 8330 1375 65.2 MiB 0.12 0.00 2.9366 -108.513 -2.9366 2.9366 0.94 0.000491368 0.00044878 0.0419586 0.0382347 32 2643 48 6.87369e+06 223581 586450. 2029.24 1.26 0.125873 0.110468 25474 144626 -1 2151 25 1635 2713 250351 55808 3.10126 3.10126 -132.542 -3.10126 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.025327 0.0221457 112 60 32 32 62 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.32 vpr 65.64 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34384 -1 -1 40 32 0 0 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 67216 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 26.9 MiB 3.70 1054 12304 2830 8610 864 65.6 MiB 0.11 0.00 3.41299 -121.626 -3.41299 3.41299 0.96 0.000579711 0.000518503 0.0313216 0.0284317 32 2833 39 6.87369e+06 558954 586450. 2029.24 1.45 0.127727 0.112544 25474 144626 -1 2207 21 1830 2965 229826 52549 3.7781 3.7781 -144.551 -3.7781 0 0 744469. 2576.02 0.29 0.08 0.14 -1 -1 0.29 0.0253591 0.0223518 157 49 64 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 9.29 vpr 65.52 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 34140 -1 -1 34 29 0 0 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 67088 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 26.9 MiB 3.02 865 11975 2818 8366 791 65.5 MiB 0.11 0.00 2.81125 -91.014 -2.81125 2.81125 0.98 0.000529496 0.000483652 0.0317568 0.0288114 28 2541 24 6.87369e+06 475111 531479. 1839.03 3.15 0.174723 0.151614 24610 126494 -1 2196 22 1597 2467 178380 43237 3.11856 3.11856 -121.39 -3.11856 0 0 648988. 2245.63 0.26 0.07 0.13 -1 -1 0.26 0.0237265 0.0208661 140 54 56 29 58 29 - fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 11.60 vpr 65.89 MiB 0.02 7240 -1 -1 1 0.04 -1 -1 34364 -1 -1 40 32 0 0 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 67468 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 27.3 MiB 6.00 872 19868 6214 10501 3153 65.9 MiB 0.16 0.00 3.46799 -118.73 -3.46799 3.46799 0.90 0.000580939 0.000529002 0.0497382 0.045121 28 3196 32 6.87369e+06 558954 531479. 1839.03 2.57 0.154516 0.137384 24610 126494 -1 2557 23 2226 3528 306017 76778 4.154 4.154 -158.383 -4.154 0 0 648988. 2245.63 0.25 0.11 0.11 -1 -1 0.25 0.0309661 0.0274288 157 117 0 0 128 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.96 vpr 64.68 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 33904 -1 -1 16 31 0 0 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 66236 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.1 MiB 0.89 777 6163 1332 4488 343 64.7 MiB 0.06 0.00 2.44612 -83.5574 -2.44612 2.44612 0.96 0.000420944 0.000378923 0.016788 0.0152995 30 2011 25 6.87369e+06 223581 556674. 1926.21 1.04 0.0738192 0.0646664 25186 138497 -1 1536 22 1163 1891 111499 27532 2.78516 2.78516 -105.961 -2.78516 0 0 706193. 2443.58 0.30 0.06 0.14 -1 -1 0.30 0.0201255 0.0177627 104 -1 85 31 0 0 - fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.88 vpr 65.46 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33888 -1 -1 37 32 0 0 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 67036 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 26.7 MiB 2.08 1090 17021 4618 10264 2139 65.5 MiB 0.14 0.00 3.34879 -116.796 -3.34879 3.34879 0.97 0.000582524 0.000530448 0.046324 0.0423778 34 2413 24 6.87369e+06 517032 618332. 2139.56 1.58 0.165131 0.144548 25762 151098 -1 2012 24 1685 2374 171110 40001 3.7451 3.7451 -138.901 -3.7451 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0285316 0.0249728 147 89 28 28 92 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 9.61 vpr 65.16 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 34132 -1 -1 16 32 0 0 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 66720 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 26.4 MiB 4.98 787 6960 1516 4800 644 65.2 MiB 0.06 0.00 2.9898 -104.77 -2.9898 2.9898 0.91 0.000489682 0.000448798 0.021711 0.0199007 34 2143 37 6.87369e+06 223581 618332. 2139.56 1.70 0.148968 0.130421 25762 151098 -1 1687 19 1273 1737 124767 31683 3.09651 3.09651 -126.508 -3.09651 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0219261 0.0193932 114 93 0 0 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.46 vpr 65.56 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33968 -1 -1 39 32 0 0 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 67136 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 26.9 MiB 3.63 1065 20829 6194 12011 2624 65.6 MiB 0.17 0.00 2.77395 -101.87 -2.77395 2.77395 0.97 0.000552401 0.000504808 0.0501553 0.0456324 34 2447 23 6.87369e+06 544980 618332. 2139.56 1.60 0.167955 0.147089 25762 151098 -1 1964 21 1549 2271 152372 35917 2.83166 2.83166 -117.576 -2.83166 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0251782 0.0221265 153 59 61 32 64 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 10.75 vpr 65.47 MiB 0.02 7604 -1 -1 1 0.04 -1 -1 34316 -1 -1 47 32 0 0 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 67044 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 27.0 MiB 5.64 1175 16603 4582 10105 1916 65.5 MiB 0.15 0.00 3.98354 -133.428 -3.98354 3.98354 0.98 0.000656838 0.000596573 0.044285 0.0401703 28 3419 28 6.87369e+06 656770 531479. 1839.03 1.85 0.146539 0.129569 24610 126494 -1 2845 23 2765 4485 381615 87421 4.91215 4.91215 -175.673 -4.91215 0 0 648988. 2245.63 0.27 0.12 0.12 -1 -1 0.27 0.0339224 0.0301121 190 81 64 32 96 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.27 vpr 64.48 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33828 -1 -1 14 30 0 0 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 66032 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 26.1 MiB 2.55 731 9356 3075 4892 1389 64.5 MiB 0.06 0.00 2.30306 -77.7553 -2.30306 2.30306 0.93 0.000346261 0.000316154 0.0219971 0.020143 32 1533 19 6.87369e+06 195634 586450. 2029.24 0.87 0.0662101 0.058257 25474 144626 -1 1341 23 685 986 81822 18778 2.13917 2.13917 -89.4525 -2.13917 0 0 744469. 2576.02 0.28 0.04 0.13 -1 -1 0.28 0.017458 0.0152455 72 51 0 0 53 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.96 vpr 64.55 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 33728 -1 -1 18 30 0 0 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 66096 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 26.2 MiB 1.11 853 11948 3578 6451 1919 64.5 MiB 0.09 0.00 2.9678 -102.451 -2.9678 2.9678 0.91 0.000410815 0.000374824 0.0308331 0.0281839 32 2062 21 6.87369e+06 251529 586450. 2029.24 0.94 0.0848708 0.0749751 25474 144626 -1 1767 20 1332 1891 167699 38286 3.03531 3.03531 -122.352 -3.03531 0 0 744469. 2576.02 0.29 0.06 0.12 -1 -1 0.29 0.0190856 0.0168468 109 29 60 30 30 30 - fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 6.96 vpr 65.08 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33604 -1 -1 16 32 0 0 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 66640 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 26.6 MiB 1.61 841 7992 1818 5930 244 65.1 MiB 0.08 0.00 2.77395 -101.431 -2.77395 2.77395 0.96 0.000475142 0.000432415 0.0238219 0.0217491 34 2754 35 6.87369e+06 223581 618332. 2139.56 2.23 0.139748 0.12156 25762 151098 -1 2171 22 1691 3013 230460 55614 3.25786 3.25786 -131.867 -3.25786 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0223124 0.0195896 114 31 64 32 32 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.91 vpr 64.70 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 34080 -1 -1 37 25 0 0 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 66252 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 26.3 MiB 0.87 639 16282 5333 8086 2863 64.7 MiB 0.10 0.00 2.78925 -75.2553 -2.78925 2.78925 0.90 0.000366806 0.000336145 0.0295248 0.0268832 26 1751 21 6.87369e+06 517032 503264. 1741.40 1.22 0.0859246 0.0760667 24322 120374 -1 1548 19 1053 1774 159858 36989 3.02726 3.02726 -95.0641 -3.02726 0 0 618332. 2139.56 0.24 0.06 0.10 -1 -1 0.24 0.0159045 0.0139853 105 19 50 25 25 25 - fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.68 vpr 65.71 MiB 0.02 7460 -1 -1 1 0.03 -1 -1 34040 -1 -1 21 32 0 0 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 67292 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 27.0 MiB 3.41 1078 11059 3231 6919 909 65.7 MiB 0.12 0.00 3.39279 -118.067 -3.39279 3.39279 0.99 0.000594069 0.000534332 0.036946 0.0336941 34 3224 29 6.87369e+06 293451 618332. 2139.56 2.01 0.174859 0.152625 25762 151098 -1 2621 25 2145 3944 292041 69996 3.9487 3.9487 -150.781 -3.9487 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0304672 0.0267353 145 84 32 32 94 32 - fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 8.26 vpr 65.71 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 33856 -1 -1 40 31 0 0 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 67284 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 27.0 MiB 3.37 1018 14081 3637 8739 1705 65.7 MiB 0.13 0.00 2.87245 -101.624 -2.87245 2.87245 0.97 0.000618976 0.000561026 0.0367513 0.0332583 34 2356 22 6.87369e+06 558954 618332. 2139.56 1.66 0.157754 0.13719 25762 151098 -1 2028 22 1868 2858 206667 47279 3.07646 3.07646 -124.825 -3.07646 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0271114 0.0239343 151 88 29 29 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 7.00 vpr 65.30 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 34304 -1 -1 29 32 0 0 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 66868 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 26.6 MiB 1.89 1424 20673 7364 10652 2657 65.3 MiB 0.17 0.00 4.17364 -142.53 -4.17364 4.17364 0.92 0.000540885 0.000488831 0.0556131 0.0507651 36 3213 36 6.89349e+06 408721 648988. 2245.63 1.96 0.199415 0.174842 26050 158493 -1 2769 18 2017 2458 166796 37005 4.31595 4.31595 -164.564 -4.31595 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0244203 0.0216519 192 80 32 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 9.07 vpr 65.66 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 33852 -1 -1 29 30 0 0 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 67236 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 26.9 MiB 1.69 1354 15595 4586 8288 2721 65.7 MiB 0.15 0.00 4.21067 -131.732 -4.21067 4.21067 0.91 0.000540553 0.000493249 0.0435428 0.0397019 34 3765 39 6.89349e+06 408721 618332. 2139.56 4.35 0.275988 0.242136 25762 151098 -1 2844 21 2216 3110 245155 53716 4.50478 4.50478 -157.952 -4.50478 0 0 787024. 2723.27 0.29 0.08 0.13 -1 -1 0.29 0.0258253 0.0228219 177 78 30 30 89 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 9.63 vpr 65.25 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34252 -1 -1 25 32 0 0 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 66820 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 26.6 MiB 2.31 1308 15137 4287 8597 2253 65.3 MiB 0.13 0.00 3.18936 -113.949 -3.18936 3.18936 0.97 0.000533184 0.000488232 0.0428407 0.0390324 38 2797 33 6.89349e+06 352346 678818. 2348.85 4.07 0.255659 0.221995 26626 170182 -1 2466 21 1550 1961 138391 30114 3.6611 3.6611 -138.058 -3.6611 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0246912 0.021718 167 50 54 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 7.41 vpr 64.96 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 33752 -1 -1 25 29 0 0 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 66516 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 26.2 MiB 2.54 947 11237 3150 7479 608 65.0 MiB 0.11 0.00 3.65595 -112.917 -3.65595 3.65595 0.96 0.000501959 0.00045844 0.0318057 0.0290599 36 2313 25 6.89349e+06 352346 648988. 2245.63 1.71 0.140914 0.122687 26050 158493 -1 1981 20 1607 2407 147310 36127 4.018 4.018 -135.381 -4.018 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.0220521 0.0194665 148 25 87 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 9.59 vpr 65.39 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33884 -1 -1 24 32 0 0 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 66956 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.8 MiB 2.13 1296 15298 4425 8938 1935 65.4 MiB 0.15 0.00 4.01094 -139.821 -4.01094 4.01094 0.91 0.000516427 0.000464806 0.0429806 0.0392729 36 3346 26 6.89349e+06 338252 648988. 2245.63 4.41 0.232362 0.204232 26050 158493 -1 2902 22 2276 3873 306832 64687 4.41309 4.41309 -165.537 -4.41309 0 0 828058. 2865.25 0.31 0.09 0.14 -1 -1 0.31 0.0255412 0.0226083 163 31 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 7.86 vpr 65.62 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33944 -1 -1 41 32 0 0 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 67192 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 26.9 MiB 2.14 1308 20853 6182 11632 3039 65.6 MiB 0.19 0.00 3.51229 -115.801 -3.51229 3.51229 0.96 0.000545591 0.000497264 0.0490959 0.0446947 34 3718 34 6.89349e+06 577847 618332. 2139.56 2.46 0.188923 0.165632 25762 151098 -1 2817 21 1932 3034 258125 54251 3.35745 3.35745 -135.27 -3.35745 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.026329 0.0232569 179 61 63 32 63 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.01 vpr 64.67 MiB 0.02 7032 -1 -1 1 0.03 -1 -1 34032 -1 -1 21 27 0 0 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 66224 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 26.3 MiB 1.82 716 14700 4346 9327 1027 64.7 MiB 0.11 0.00 3.0242 -88.7873 -3.0242 3.0242 0.94 0.000407878 0.000374106 0.0366274 0.0335556 28 2152 39 6.89349e+06 295971 531479. 1839.03 1.20 0.1137 0.101014 24610 126494 -1 1677 20 1371 1904 140030 33562 3.34416 3.34416 -114.07 -3.34416 0 0 648988. 2245.63 0.27 0.06 0.12 -1 -1 0.27 0.0186953 0.0165455 112 26 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 5.65 vpr 65.02 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33804 -1 -1 35 31 0 0 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 66584 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 26.3 MiB 0.98 1006 18548 5600 10104 2844 65.0 MiB 0.14 0.00 2.7253 -92.6455 -2.7253 2.7253 0.96 0.000493244 0.000449572 0.0412815 0.0375873 34 2314 20 6.89349e+06 493284 618332. 2139.56 1.52 0.138643 0.121092 25762 151098 -1 1939 20 1212 1965 131735 29935 2.59831 2.59831 -105.285 -2.59831 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0204893 0.0180217 141 -1 115 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 8.40 vpr 65.03 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 33784 -1 -1 21 31 0 0 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 66592 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 26.2 MiB 1.78 1150 11979 3218 6740 2021 65.0 MiB 0.09 0.00 2.93075 -102.191 -2.93075 2.93075 0.91 0.000445936 0.000405877 0.0316569 0.0289416 36 2458 42 6.89349e+06 295971 648988. 2245.63 3.68 0.184106 0.16003 26050 158493 -1 2026 22 1493 1789 122697 28429 3.13291 3.13291 -121.951 -3.13291 0 0 828058. 2865.25 0.31 0.06 0.14 -1 -1 0.31 0.0220646 0.0195022 140 81 0 0 84 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 6.39 vpr 64.62 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 33736 -1 -1 19 32 0 0 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 66172 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 26.2 MiB 1.87 805 14303 3805 8843 1655 64.6 MiB 0.11 0.00 2.96065 -102.945 -2.96065 2.96065 0.91 0.00042908 0.000391722 0.0368613 0.0336928 34 2365 23 6.89349e+06 267783 618332. 2139.56 1.60 0.141259 0.124479 25762 151098 -1 1848 19 1550 2027 125654 31859 3.29906 3.29906 -131.068 -3.29906 0 0 787024. 2723.27 0.29 0.06 0.13 -1 -1 0.29 0.0191162 0.0169119 127 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 9.59 vpr 65.30 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 33364 -1 -1 21 30 0 0 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 66864 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 26.5 MiB 2.50 1097 13223 4269 6936 2018 65.3 MiB 0.11 0.00 3.44524 -114.518 -3.44524 3.44524 0.99 0.000478239 0.000439449 0.0366892 0.0335175 36 2360 22 6.89349e+06 295971 648988. 2245.63 3.90 0.174883 0.152121 26050 158493 -1 2162 21 1623 2132 165188 34613 3.54075 3.54075 -135.586 -3.54075 0 0 828058. 2865.25 0.32 0.06 0.16 -1 -1 0.32 0.020955 0.0185135 135 58 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 7.09 vpr 65.21 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 33932 -1 -1 20 32 0 0 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 66780 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 26.5 MiB 1.98 963 16371 5985 7858 2528 65.2 MiB 0.13 0.00 3.0432 -100.428 -3.0432 3.0432 0.97 0.000477505 0.000434237 0.0427178 0.038885 34 2807 32 6.89349e+06 281877 618332. 2139.56 1.96 0.163108 0.143019 25762 151098 -1 1992 19 1368 1565 135069 30680 3.03551 3.03551 -114.926 -3.03551 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0195855 0.0172584 135 57 25 25 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.59 vpr 65.20 MiB 0.02 7388 -1 -1 1 0.03 -1 -1 33968 -1 -1 25 32 0 0 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 66764 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 26.6 MiB 1.58 989 17711 5347 9041 3323 65.2 MiB 0.15 0.00 3.35709 -112.94 -3.35709 3.35709 0.97 0.000566844 0.000515903 0.0511475 0.0465717 34 3625 35 6.89349e+06 352346 618332. 2139.56 2.79 0.167446 0.146804 25762 151098 -1 2325 21 1906 2575 193417 46789 3.62 3.62 -131.048 -3.62 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0246326 0.0216484 161 55 64 32 57 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 6.74 vpr 65.27 MiB 0.02 7412 -1 -1 1 0.03 -1 -1 33784 -1 -1 28 32 0 0 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 66836 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 26.6 MiB 1.66 1377 15824 4640 9359 1825 65.3 MiB 0.14 0.00 4.12524 -135.26 -4.12524 4.12524 0.91 0.000539296 0.000493859 0.0432597 0.039552 36 3119 27 6.89349e+06 394628 648988. 2245.63 2.01 0.183479 0.162225 26050 158493 -1 2486 22 2206 2948 204703 46139 4.50255 4.50255 -162.444 -4.50255 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0265897 0.0235007 175 60 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.89 vpr 64.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 33804 -1 -1 21 29 0 0 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 66176 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 26.3 MiB 1.56 886 10940 3249 6105 1586 64.6 MiB 0.08 0.00 2.86465 -93.837 -2.86465 2.86465 0.91 0.000389312 0.000355527 0.0256509 0.0234013 34 2106 31 6.89349e+06 295971 618332. 2139.56 1.44 0.115175 0.100352 25762 151098 -1 1780 20 1089 1530 120467 27214 2.90726 2.90726 -107.299 -2.90726 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0176584 0.0155919 112 21 58 29 24 24 - fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 10.52 vpr 65.47 MiB 0.02 7404 -1 -1 1 0.03 -1 -1 34016 -1 -1 25 32 0 0 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 67044 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 26.8 MiB 2.81 1404 17711 5866 9888 1957 65.5 MiB 0.17 0.00 3.54049 -122.38 -3.54049 3.54049 0.97 0.00055019 0.000503794 0.0522066 0.0477496 36 3193 25 6.89349e+06 352346 648988. 2245.63 4.45 0.254149 0.223071 26050 158493 -1 2895 23 2209 3654 273130 59535 3.8287 3.8287 -147.126 -3.8287 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0303119 0.0268789 174 60 64 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 6.46 vpr 65.29 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 33904 -1 -1 25 32 0 0 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 66860 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 26.7 MiB 1.45 1328 15731 5142 8859 1730 65.3 MiB 0.15 0.00 3.06395 -109.655 -3.06395 3.06395 1.00 0.00055548 0.000494992 0.046572 0.0425399 34 2943 22 6.89349e+06 352346 618332. 2139.56 1.74 0.166988 0.146661 25762 151098 -1 2441 21 1772 2274 198003 42355 2.97771 2.97771 -124.265 -2.97771 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0255697 0.0226472 160 54 64 32 56 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 7.35 vpr 65.27 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33412 -1 -1 22 32 0 0 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 66832 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 26.5 MiB 2.19 1089 15395 5830 7789 1776 65.3 MiB 0.14 0.00 2.80245 -99.8458 -2.80245 2.80245 1.00 0.000493123 0.000448715 0.0422668 0.0385344 34 2788 40 6.89349e+06 310065 618332. 2139.56 1.95 0.168104 0.146993 25762 151098 -1 2003 23 1802 2446 159750 38540 2.97056 2.97056 -118.039 -2.97056 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0230567 0.020263 139 62 29 29 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 5.57 vpr 64.40 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33760 -1 -1 15 30 0 0 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 65948 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 26.0 MiB 1.20 775 11650 3432 6734 1484 64.4 MiB 0.07 0.00 2.54456 -86.0724 -2.54456 2.54456 0.97 0.000367416 0.000335269 0.0263427 0.024057 34 1720 20 6.89349e+06 211408 618332. 2139.56 1.32 0.096449 0.0842612 25762 151098 -1 1495 19 725 873 66109 15427 2.23137 2.23137 -93.9192 -2.23137 0 0 787024. 2723.27 0.30 0.04 0.13 -1 -1 0.30 0.014819 0.0130491 85 29 24 24 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 6.38 vpr 65.30 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 33808 -1 -1 22 31 0 0 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 66868 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 26.6 MiB 1.68 1116 13849 3916 8310 1623 65.3 MiB 0.11 0.00 3.39499 -119.193 -3.39499 3.39499 0.96 0.000490279 0.000449281 0.0377028 0.0344385 34 2525 23 6.89349e+06 310065 618332. 2139.56 1.57 0.1384 0.120667 25762 151098 -1 2119 18 1507 1995 141257 32938 3.44645 3.44645 -137.51 -3.44645 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0197438 0.0174315 141 55 31 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.49 vpr 65.45 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33796 -1 -1 40 32 0 0 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 67016 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 26.8 MiB 1.06 1178 18648 5399 10601 2648 65.4 MiB 0.15 0.00 3.64283 -127.034 -3.64283 3.64283 0.91 0.000528328 0.000476208 0.0421082 0.0381875 30 2909 21 6.89349e+06 563754 556674. 1926.21 1.38 0.115363 0.102286 25186 138497 -1 2321 22 1713 2415 169066 36320 3.83884 3.83884 -149.006 -3.83884 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.024936 0.0220578 166 31 91 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.87 vpr 65.77 MiB 0.02 7516 -1 -1 1 0.03 -1 -1 33924 -1 -1 31 32 0 0 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 67352 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 27.1 MiB 1.54 1544 19967 6161 11521 2285 65.8 MiB 0.18 0.00 3.37919 -119.275 -3.37919 3.37919 0.98 0.000593469 0.000540025 0.0580983 0.0528869 34 3832 31 6.89349e+06 436909 618332. 2139.56 2.06 0.21194 0.187362 25762 151098 -1 2929 21 2171 2493 180674 41856 3.941 3.941 -143.499 -3.941 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0277292 0.0245765 201 108 0 0 125 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.45 vpr 64.41 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 34324 -1 -1 18 26 0 0 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 65960 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 26.1 MiB 1.57 719 9996 3588 4915 1493 64.4 MiB 0.06 0.00 2.21891 -67.1246 -2.21891 2.21891 1.00 0.000315519 0.00028825 0.0215528 0.0197213 30 1452 18 6.89349e+06 253689 556674. 1926.21 0.91 0.0603579 0.0530969 25186 138497 -1 1247 19 614 827 59565 13037 2.07412 2.07412 -76.9409 -2.07412 0 0 706193. 2443.58 0.28 0.03 0.11 -1 -1 0.28 0.0134617 0.0118618 77 21 26 26 22 22 - fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.86 vpr 64.65 MiB 0.02 7160 -1 -1 1 0.03 -1 -1 34104 -1 -1 21 32 0 0 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 66204 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 26.2 MiB 1.29 1022 11617 2808 8147 662 64.7 MiB 0.10 0.00 3.25074 -113.04 -3.25074 3.25074 0.91 0.000472021 0.000433031 0.0318844 0.029217 34 2666 20 6.89349e+06 295971 618332. 2139.56 1.62 0.141287 0.12422 25762 151098 -1 2185 21 1830 3099 214334 49364 3.48375 3.48375 -136.225 -3.48375 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0222578 0.0196728 141 -1 122 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.85 vpr 64.18 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33960 -1 -1 12 32 0 0 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 65720 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 25.7 MiB 0.43 748 11596 4396 6072 1128 64.2 MiB 0.07 0.00 1.93068 -78.0559 -1.93068 1.93068 0.97 0.000322756 0.000293685 0.0249303 0.0227754 34 1557 18 6.89349e+06 169126 618332. 2139.56 1.39 0.0917764 0.0802572 25762 151098 -1 1439 20 684 998 81318 18316 1.92346 1.92346 -89.6807 -1.92346 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0144856 0.0127795 71 -1 53 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 6.77 vpr 65.17 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 34160 -1 -1 25 32 0 0 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 66732 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 26.6 MiB 1.66 992 11969 3400 7456 1113 65.2 MiB 0.12 0.00 3.76105 -125.893 -3.76105 3.76105 0.96 0.000559339 0.000502526 0.0345688 0.0315358 34 3109 37 6.89349e+06 352346 618332. 2139.56 1.95 0.165508 0.14435 25762 151098 -1 2403 22 2023 2919 222238 50648 3.92076 3.92076 -151.618 -3.92076 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.025586 0.0225199 161 21 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.79 vpr 65.26 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 34020 -1 -1 36 32 0 0 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 66824 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 26.5 MiB 0.83 1163 16572 4457 10734 1381 65.3 MiB 0.14 0.00 2.9104 -106.195 -2.9104 2.9104 0.90 0.0004761 0.000431851 0.0365697 0.0332192 32 2818 24 6.89349e+06 507378 586450. 2029.24 1.00 0.102995 0.0911154 25474 144626 -1 2300 23 1485 2372 180688 39745 2.71931 2.71931 -119.417 -2.71931 0 0 744469. 2576.02 0.28 0.07 0.13 -1 -1 0.28 0.0240635 0.021253 151 -1 124 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.77 vpr 65.31 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 33924 -1 -1 26 32 0 0 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 66880 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.6 MiB 1.94 1428 12351 3459 7662 1230 65.3 MiB 0.12 0.00 3.69695 -131.826 -3.69695 3.69695 0.90 0.000542667 0.000496752 0.0349296 0.0319677 34 3538 24 6.89349e+06 366440 618332. 2139.56 1.83 0.171251 0.151004 25762 151098 -1 2801 20 2208 3186 216358 49225 3.95986 3.95986 -154.198 -3.95986 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0244712 0.0216721 174 54 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.85 vpr 64.58 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 33936 -1 -1 17 32 0 0 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 66128 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 26.2 MiB 2.16 1049 13031 4328 6818 1885 64.6 MiB 0.11 0.00 2.82445 -104.768 -2.82445 2.82445 0.93 0.000439826 0.000400143 0.0351597 0.0320213 34 2535 23 6.89349e+06 239595 618332. 2139.56 1.64 0.131853 0.115291 25762 151098 -1 2182 20 1639 2380 167017 38139 3.08856 3.08856 -129.599 -3.08856 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0198267 0.0175645 118 31 54 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 6.80 vpr 64.89 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 33628 -1 -1 19 30 0 0 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 66444 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 26.5 MiB 1.96 1019 12856 4206 6637 2013 64.9 MiB 0.11 0.00 3.51849 -117.934 -3.51849 3.51849 0.96 0.000445642 0.000406798 0.0344828 0.0314884 34 2446 28 6.89349e+06 267783 618332. 2139.56 1.71 0.134665 0.117406 25762 151098 -1 2062 21 1518 2373 182460 38885 3.4608 3.4608 -132.25 -3.4608 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0208138 0.0184142 121 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.53 vpr 64.62 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 33676 -1 -1 21 28 0 0 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 66172 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 26.3 MiB 2.47 812 11806 3140 7921 745 64.6 MiB 0.09 0.00 3.33999 -102.134 -3.33999 3.33999 0.96 0.000412747 0.000376471 0.0302115 0.0275723 30 2265 23 6.89349e+06 295971 556674. 1926.21 1.03 0.0848931 0.0746018 25186 138497 -1 1773 20 1117 1818 116431 27859 3.5388 3.5388 -126.674 -3.5388 0 0 706193. 2443.58 0.29 0.05 0.14 -1 -1 0.29 0.0186711 0.0164583 115 27 56 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.70 vpr 64.43 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 33628 -1 -1 16 32 0 0 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 65972 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 25.9 MiB 1.19 886 15216 6255 7964 997 64.4 MiB 0.12 0.00 2.85355 -105.803 -2.85355 2.85355 0.91 0.00040764 0.000373001 0.0390716 0.0357974 34 2254 22 6.89349e+06 225501 618332. 2139.56 1.56 0.135955 0.119664 25762 151098 -1 1936 20 1485 2471 187409 40642 3.02916 3.02916 -124.451 -3.02916 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0190934 0.0168914 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 6.29 vpr 64.86 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 33860 -1 -1 19 31 0 0 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 66416 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 26.4 MiB 1.57 1041 10762 2759 7122 881 64.9 MiB 0.09 0.00 2.93565 -104.908 -2.93565 2.93565 0.90 0.000433007 0.000396646 0.0278564 0.0255517 34 2489 25 6.89349e+06 267783 618332. 2139.56 1.81 0.133816 0.117788 25762 151098 -1 2112 17 1255 1845 128362 28740 2.97616 2.97616 -121.535 -2.97616 0 0 787024. 2723.27 0.29 0.05 0.13 -1 -1 0.29 0.0175747 0.0155999 121 26 61 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 6.63 vpr 64.74 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 33820 -1 -1 23 29 0 0 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 66292 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 26.2 MiB 1.83 1078 14724 4728 7751 2245 64.7 MiB 0.12 0.00 2.91975 -93.9329 -2.91975 2.91975 0.96 0.000450411 0.000410879 0.0378771 0.0345677 34 2448 28 6.89349e+06 324158 618332. 2139.56 1.68 0.138554 0.120788 25762 151098 -1 2136 19 1293 1694 128238 28183 2.78696 2.78696 -109.338 -2.78696 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0197109 0.0173722 130 55 29 29 57 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.63 vpr 65.72 MiB 0.02 7240 -1 -1 1 0.04 -1 -1 34128 -1 -1 27 32 0 0 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 67300 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 26.9 MiB 2.35 1380 16615 4969 9296 2350 65.7 MiB 0.17 0.00 3.73615 -131.998 -3.73615 3.73615 0.93 0.000583601 0.000531762 0.0504409 0.0460609 30 3457 26 6.89349e+06 380534 556674. 1926.21 1.15 0.136532 0.121337 25186 138497 -1 2710 21 1775 2896 181583 41149 3.86576 3.86576 -151.677 -3.86576 0 0 706193. 2443.58 0.28 0.08 0.13 -1 -1 0.28 0.0273769 0.0241708 184 26 128 32 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.24 vpr 65.39 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 34052 -1 -1 25 32 0 0 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 66964 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 26.7 MiB 2.14 1249 14939 5254 6510 3175 65.4 MiB 0.13 0.00 3.27164 -115.251 -3.27164 3.27164 0.97 0.000558951 0.000511133 0.0432602 0.0393572 36 3183 30 6.89349e+06 352346 648988. 2245.63 2.83 0.178724 0.156433 26050 158493 -1 2799 22 2729 3732 314898 69111 3.887 3.887 -150.162 -3.887 0 0 828058. 2865.25 0.31 0.10 0.16 -1 -1 0.31 0.0259364 0.0229115 173 62 62 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 5.74 vpr 65.05 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 34212 -1 -1 22 31 0 0 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 66616 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 26.3 MiB 1.07 1144 14965 4253 8678 2034 65.1 MiB 0.12 0.00 2.90265 -100.254 -2.90265 2.90265 0.91 0.000495313 0.000452168 0.0398783 0.0363504 34 2545 27 6.89349e+06 310065 618332. 2139.56 1.58 0.125033 0.109605 25762 151098 -1 2133 21 1303 1337 103168 23513 2.86331 2.86331 -115.84 -2.86331 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0225348 0.0198538 143 77 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 7.64 vpr 65.41 MiB 0.02 7480 -1 -1 1 0.03 -1 -1 33712 -1 -1 26 31 0 0 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 66976 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 26.8 MiB 2.59 1206 10385 2623 6478 1284 65.4 MiB 0.10 0.00 3.50749 -114.822 -3.50749 3.50749 0.92 0.000525248 0.000481182 0.0295755 0.027079 34 3159 44 6.89349e+06 366440 618332. 2139.56 2.07 0.180522 0.158542 25762 151098 -1 2506 19 1666 2425 189369 41695 3.7003 3.7003 -139.252 -3.7003 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0239605 0.021279 170 59 60 30 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 9.26 vpr 65.73 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 33988 -1 -1 31 31 0 0 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 67304 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 27.1 MiB 2.15 1597 17347 5424 9486 2437 65.7 MiB 0.17 0.00 4.14544 -138.579 -4.14544 4.14544 0.91 0.000574115 0.000523004 0.0499902 0.0456962 36 3602 26 6.89349e+06 436909 648988. 2245.63 4.01 0.251798 0.22159 26050 158493 -1 2925 20 2216 2583 202465 44269 4.46094 4.46094 -160.781 -4.46094 0 0 828058. 2865.25 0.31 0.08 0.14 -1 -1 0.31 0.0264723 0.0234238 201 111 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.39 vpr 65.44 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 34120 -1 -1 28 31 0 0 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 67008 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 26.7 MiB 2.69 1401 17431 7367 8878 1186 65.4 MiB 0.15 0.00 4.39023 -138.954 -4.39023 4.39023 0.97 0.000524188 0.000476774 0.0480242 0.0437795 36 3644 41 6.89349e+06 394628 648988. 2245.63 2.46 0.182407 0.159468 26050 158493 -1 2688 21 2048 2795 227586 48855 5.02504 5.02504 -173.094 -5.02504 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0260557 0.0229288 181 86 31 31 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 9.38 vpr 65.11 MiB 0.02 7472 -1 -1 1 0.03 -1 -1 33768 -1 -1 27 31 0 0 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 66672 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 26.5 MiB 2.05 1380 8130 1734 5596 800 65.1 MiB 0.09 0.00 3.12215 -108.981 -3.12215 3.12215 0.96 0.000537147 0.000487151 0.0244744 0.0223354 36 3291 23 6.89349e+06 380534 648988. 2245.63 4.18 0.195679 0.169392 26050 158493 -1 2670 20 2066 2811 219132 48830 3.46346 3.46346 -133.45 -3.46346 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0245012 0.0216923 168 58 60 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 10.56 vpr 65.46 MiB 0.02 7332 -1 -1 1 0.03 -1 -1 34344 -1 -1 27 32 0 0 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 67032 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.8 MiB 2.27 1328 14779 4122 8396 2261 65.5 MiB 0.14 0.00 3.75005 -132.712 -3.75005 3.75005 0.98 0.000565728 0.000515908 0.0430578 0.0392906 34 3546 33 6.89349e+06 380534 618332. 2139.56 5.05 0.25637 0.222888 25762 151098 -1 2859 22 2107 2818 231772 51890 4.15706 4.15706 -157.504 -4.15706 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0268766 0.0236248 178 42 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 11.47 vpr 65.90 MiB 0.02 7292 -1 -1 1 0.04 -1 -1 34240 -1 -1 31 32 0 0 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 67484 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 27.2 MiB 2.58 1599 15431 4493 9114 1824 65.9 MiB 0.17 0.00 4.14118 -143.258 -4.14118 4.14118 0.99 0.000669916 0.000609957 0.0505238 0.0459761 36 4830 50 6.89349e+06 436909 648988. 2245.63 5.56 0.24169 0.212341 26050 158493 -1 3520 22 3252 4770 392338 85100 4.62605 4.62605 -174.719 -4.62605 0 0 828058. 2865.25 0.30 0.12 0.15 -1 -1 0.30 0.0327061 0.0289953 220 91 62 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 6.39 vpr 64.73 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 33928 -1 -1 20 31 0 0 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 66280 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 26.3 MiB 1.86 854 4943 997 3592 354 64.7 MiB 0.05 0.00 3.1513 -105.266 -3.1513 3.1513 0.96 0.000463906 0.000425212 0.0143968 0.0131951 34 2324 18 6.89349e+06 281877 618332. 2139.56 1.57 0.102516 0.088798 25762 151098 -1 1917 18 1387 1850 135989 31470 3.14351 3.14351 -126.715 -3.14351 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0189913 0.0168039 127 24 62 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 9.34 vpr 65.44 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34216 -1 -1 27 31 0 0 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 67008 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 26.8 MiB 1.79 1325 17376 6843 8957 1576 65.4 MiB 0.15 0.00 4.12524 -134.849 -4.12524 4.12524 0.91 0.000524907 0.000481701 0.0481562 0.0441105 38 2847 31 6.89349e+06 380534 678818. 2348.85 4.48 0.272626 0.239732 26626 170182 -1 2439 18 1581 1985 162677 34558 4.12955 4.12955 -150.658 -4.12955 0 0 902133. 3121.57 0.32 0.07 0.15 -1 -1 0.32 0.0230969 0.0204903 168 59 62 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 9.71 vpr 65.56 MiB 0.02 7376 -1 -1 1 0.03 -1 -1 34148 -1 -1 27 32 0 0 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 67136 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 26.9 MiB 2.29 1384 15391 5043 8079 2269 65.6 MiB 0.15 0.00 3.51049 -122.247 -3.51049 3.51049 0.96 0.000546785 0.000499415 0.0439848 0.0400714 36 3215 25 6.89349e+06 380534 648988. 2245.63 4.21 0.236513 0.205058 26050 158493 -1 2646 18 1654 2602 175222 39072 3.6813 3.6813 -141.073 -3.6813 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0229806 0.0203247 172 54 62 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 7.09 vpr 65.08 MiB 0.02 7320 -1 -1 1 0.03 -1 -1 33832 -1 -1 21 32 0 0 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 66644 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 26.4 MiB 1.55 888 17011 4426 10315 2270 65.1 MiB 0.12 0.00 3.45729 -119.077 -3.45729 3.45729 0.99 0.000451812 0.000413379 0.0484541 0.0442084 34 2924 40 6.89349e+06 295971 618332. 2139.56 2.30 0.186152 0.164035 25762 151098 -1 2215 22 1939 3513 264966 63290 4.19525 4.19525 -152.761 -4.19525 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0244847 0.0215395 147 -1 128 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 7.44 vpr 65.54 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34136 -1 -1 28 32 0 0 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 67112 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 26.8 MiB 1.78 1273 18515 6514 9101 2900 65.5 MiB 0.16 0.00 3.53749 -120.284 -3.53749 3.53749 0.94 0.000526631 0.000476126 0.0523013 0.047652 34 3537 32 6.89349e+06 394628 618332. 2139.56 2.54 0.201611 0.178101 25762 151098 -1 2603 17 1760 2030 157537 36379 3.5498 3.5498 -135.628 -3.5498 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0249641 0.0220204 184 81 25 25 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.44 vpr 65.46 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34172 -1 -1 27 32 0 0 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 67032 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 26.8 MiB 2.48 1211 17839 5892 8872 3075 65.5 MiB 0.17 0.00 3.41219 -119.031 -3.41219 3.41219 0.96 0.000562247 0.000512597 0.0514051 0.0467866 36 3160 23 6.89349e+06 380534 648988. 2245.63 2.73 0.185251 0.162933 26050 158493 -1 2521 20 1812 2665 215098 46981 3.525 3.525 -138.177 -3.525 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0245904 0.0216993 169 58 64 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.30 vpr 65.46 MiB 0.02 7364 -1 -1 1 0.03 -1 -1 33720 -1 -1 27 32 0 0 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 67028 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 26.8 MiB 2.08 1343 12535 3316 8501 718 65.5 MiB 0.13 0.00 3.11405 -111.761 -3.11405 3.11405 0.96 0.000609238 0.000557729 0.0386504 0.0352951 34 3472 24 6.89349e+06 380534 618332. 2139.56 2.03 0.16813 0.147045 25762 151098 -1 2856 19 2307 3173 243186 53206 3.52146 3.52146 -139.298 -3.52146 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0245045 0.0216431 175 61 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 8.86 vpr 65.52 MiB 0.02 7304 -1 -1 1 0.03 -1 -1 33788 -1 -1 24 32 0 0 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 67088 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 26.6 MiB 1.80 1255 12568 3422 7903 1243 65.5 MiB 0.12 0.00 3.76105 -133.875 -3.76105 3.76105 0.91 0.000514948 0.0004712 0.0350971 0.0321413 40 2500 22 6.89349e+06 338252 706193. 2443.58 3.98 0.227954 0.19883 26914 176310 -1 2604 21 1870 2851 216854 48231 4.03976 4.03976 -157.312 -4.03976 0 0 926341. 3205.33 0.34 0.08 0.15 -1 -1 0.34 0.0258511 0.0230061 161 21 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 6.35 vpr 65.22 MiB 0.02 7188 -1 -1 1 0.03 -1 -1 34400 -1 -1 27 32 0 0 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 66784 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.5 MiB 1.54 1224 16207 4715 9284 2208 65.2 MiB 0.13 0.00 3.72815 -130.331 -3.72815 3.72815 0.95 0.000566708 0.000507705 0.0451188 0.0412575 34 3030 30 6.89349e+06 380534 618332. 2139.56 1.67 0.180325 0.158053 25762 151098 -1 2616 20 2185 2741 193474 45255 4.10236 4.10236 -156.882 -4.10236 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0266343 0.023655 177 50 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 6.90 vpr 65.68 MiB 0.02 7444 -1 -1 1 0.03 -1 -1 34280 -1 -1 31 31 0 0 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 67252 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 27.0 MiB 1.56 1501 18838 5421 11003 2414 65.7 MiB 0.18 0.00 4.07024 -128.102 -4.07024 4.07024 0.98 0.000605512 0.000552874 0.0549717 0.0500766 36 3541 25 6.89349e+06 436909 648988. 2245.63 2.07 0.195071 0.171604 26050 158493 -1 2911 21 1941 2277 151780 35196 4.19585 4.19585 -149.016 -4.19585 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0271378 0.0239351 195 110 0 0 122 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 10.65 vpr 65.42 MiB 0.02 7424 -1 -1 1 0.03 -1 -1 33780 -1 -1 27 32 0 0 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 66988 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 26.8 MiB 3.14 1494 11107 2813 7230 1064 65.4 MiB 0.12 0.00 3.77645 -132.253 -3.77645 3.77645 0.98 0.000594048 0.000541562 0.0342452 0.0312198 36 3698 39 6.89349e+06 380534 648988. 2245.63 4.25 0.237647 0.206568 26050 158493 -1 2990 21 2428 3487 227635 51623 3.85486 3.85486 -148.692 -3.85486 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0270989 0.0239268 190 86 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 6.15 vpr 64.87 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 33856 -1 -1 21 32 0 0 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 66428 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 26.5 MiB 1.76 1053 13105 4100 7961 1044 64.9 MiB 0.11 0.00 2.93565 -110.397 -2.93565 2.93565 0.91 0.000446008 0.000408985 0.0326928 0.0299547 34 2398 23 6.89349e+06 295971 618332. 2139.56 1.46 0.127058 0.111485 25762 151098 -1 1974 19 1192 1664 103693 24776 2.87806 2.87806 -121.249 -2.87806 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0192987 0.017139 127 20 63 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 6.85 vpr 65.21 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33848 -1 -1 21 32 0 0 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 66780 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 26.6 MiB 1.78 1347 7525 1748 5284 493 65.2 MiB 0.08 0.00 3.40739 -119.926 -3.40739 3.40739 0.96 0.00052332 0.000476804 0.0231215 0.0211534 34 3493 46 6.89349e+06 295971 618332. 2139.56 1.99 0.173289 0.152014 25762 151098 -1 2726 20 1837 2168 174097 38650 3.81549 3.81549 -143.999 -3.81549 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0234182 0.0207721 154 91 0 0 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 9.73 vpr 65.79 MiB 0.02 7252 -1 -1 1 0.04 -1 -1 34076 -1 -1 30 32 0 0 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 67364 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 27.2 MiB 2.17 1508 18625 6220 9873 2532 65.8 MiB 0.19 0.00 4.31889 -149.004 -4.31889 4.31889 0.95 0.00062937 0.000571999 0.0579162 0.0527146 36 3402 30 6.89349e+06 422815 648988. 2245.63 4.29 0.272271 0.237296 26050 158493 -1 2789 20 2388 3194 204624 47957 4.74 4.74 -174.909 -4.74 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0280365 0.0247679 209 53 96 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.51 vpr 65.23 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33860 -1 -1 23 32 0 0 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 66800 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 26.5 MiB 2.15 1127 14871 4886 7742 2243 65.2 MiB 0.14 0.00 3.1543 -109.62 -3.1543 3.1543 0.97 0.000522407 0.00047583 0.0437311 0.0400127 34 3048 23 6.89349e+06 324158 618332. 2139.56 2.15 0.166638 0.146794 25762 151098 -1 2382 20 1852 2727 216180 47846 3.18261 3.18261 -130.072 -3.18261 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.025478 0.0217696 156 31 92 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.80 vpr 64.76 MiB 0.02 7220 -1 -1 1 0.03 -1 -1 33864 -1 -1 32 30 0 0 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 66312 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 26.3 MiB 1.23 793 11596 3004 7952 640 64.8 MiB 0.09 0.00 3.49649 -106.457 -3.49649 3.49649 0.90 0.000435017 0.000397925 0.0254156 0.0232073 34 2265 43 6.89349e+06 451003 618332. 2139.56 1.65 0.136158 0.11891 25762 151098 -1 1743 20 1275 1900 116957 29354 3.578 3.578 -126.907 -3.578 0 0 787024. 2723.27 0.30 0.05 0.13 -1 -1 0.30 0.0188898 0.0167154 129 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 10.39 vpr 65.54 MiB 0.03 7444 -1 -1 1 0.04 -1 -1 34400 -1 -1 35 32 0 0 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 67116 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 27.4 MiB 2.11 1905 20163 6025 11483 2655 65.5 MiB 0.20 0.00 4.60062 -159.311 -4.60062 4.60062 0.95 0.000679727 0.000615495 0.0634812 0.0577124 36 4405 39 6.89349e+06 493284 648988. 2245.63 4.94 0.338492 0.297007 26050 158493 -1 3627 20 2654 3333 273716 58271 5.41464 5.41464 -194.084 -5.41464 0 0 828058. 2865.25 0.32 0.10 0.16 -1 -1 0.32 0.0308085 0.0272752 239 109 32 32 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.73 vpr 65.32 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 34040 -1 -1 23 32 0 0 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 66888 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 26.5 MiB 1.64 1137 15639 5091 8145 2403 65.3 MiB 0.14 0.00 3.54039 -126.1 -3.54039 3.54039 0.95 0.000532771 0.000487157 0.0458786 0.0418911 34 2775 25 6.89349e+06 324158 618332. 2139.56 1.92 0.165131 0.144531 25762 151098 -1 2292 23 2325 3199 229487 53469 3.8786 3.8786 -153.804 -3.8786 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0260845 0.0229551 159 31 96 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 5.04 vpr 64.75 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 33972 -1 -1 33 32 0 0 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 66308 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 26.3 MiB 0.66 929 16525 5295 8720 2510 64.8 MiB 0.13 0.00 2.98385 -107.859 -2.98385 2.98385 0.98 0.000421843 0.000384089 0.0349147 0.0318848 32 2467 40 6.89349e+06 465097 586450. 2029.24 1.22 0.106172 0.0933619 25474 144626 -1 1942 23 1416 2305 205372 43946 3.12146 3.12146 -123.465 -3.12146 0 0 744469. 2576.02 0.29 0.07 0.15 -1 -1 0.29 0.0213394 0.01868 123 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.67 vpr 65.43 MiB 0.02 7340 -1 -1 1 0.04 -1 -1 34564 -1 -1 29 32 0 0 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 67004 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 26.6 MiB 2.24 1376 12483 3527 7567 1389 65.4 MiB 0.14 0.00 4.29569 -148.985 -4.29569 4.29569 0.95 0.000613762 0.00056068 0.0386996 0.0353907 34 3602 33 6.89349e+06 408721 618332. 2139.56 2.23 0.181782 0.161178 25762 151098 -1 2937 23 2579 3962 326344 68527 4.8512 4.8512 -180.256 -4.8512 0 0 787024. 2723.27 0.31 0.11 0.14 -1 -1 0.31 0.0325137 0.0288806 194 26 128 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.38 vpr 64.80 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 33824 -1 -1 16 32 0 0 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 66352 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 0.90 866 13668 4630 7290 1748 64.8 MiB 0.10 0.00 3.095 -115.431 -3.095 3.095 0.91 0.000413463 0.000379025 0.034809 0.031856 34 2306 21 6.89349e+06 225501 618332. 2139.56 1.54 0.126437 0.1109 25762 151098 -1 1954 22 1507 2447 200164 42711 2.99001 2.99001 -129.655 -2.99001 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0204601 0.0180368 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.67 vpr 64.52 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33960 -1 -1 19 30 0 0 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 66072 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.1 MiB 1.45 775 12331 2931 8892 508 64.5 MiB 0.10 0.00 2.94665 -97.1284 -2.94665 2.94665 0.96 0.000448963 0.000408899 0.0327847 0.029977 32 2582 29 6.89349e+06 267783 586450. 2029.24 1.12 0.0973381 0.0855947 25474 144626 -1 1909 23 1589 2085 167939 40741 3.44426 3.44426 -132.866 -3.44426 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0217537 0.0190769 121 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 6.67 vpr 64.77 MiB 0.04 7472 -1 -1 1 0.03 -1 -1 33444 -1 -1 31 29 0 0 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 66324 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 26.1 MiB 1.77 1259 16652 5432 8581 2639 64.8 MiB 0.15 0.00 3.34494 -104.582 -3.34494 3.34494 0.99 0.000552177 0.000503171 0.0465396 0.0424298 34 2831 22 6.89349e+06 436909 618332. 2139.56 1.62 0.163097 0.142974 25762 151098 -1 2334 20 1590 2152 159662 36456 3.3025 3.3025 -121.265 -3.3025 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0244773 0.0216858 171 81 29 29 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 9.75 vpr 64.73 MiB 0.04 7284 -1 -1 1 0.03 -1 -1 33756 -1 -1 26 32 0 0 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 66284 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.0 MiB 2.27 1177 8934 2146 5917 871 64.7 MiB 0.09 0.00 4.15944 -139.101 -4.15944 4.15944 0.98 0.000578207 0.000528128 0.0277951 0.0253772 36 2980 32 6.89349e+06 366440 648988. 2245.63 4.22 0.21948 0.190499 26050 158493 -1 2577 22 2239 3182 217353 50583 4.47339 4.47339 -165.72 -4.47339 0 0 828058. 2865.25 0.34 0.08 0.15 -1 -1 0.34 0.0279656 0.0247801 178 53 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.68 vpr 65.57 MiB 0.02 7340 -1 -1 1 0.03 -1 -1 34332 -1 -1 26 32 0 0 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 67140 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.9 MiB 1.96 1274 18984 5788 10844 2352 65.6 MiB 0.19 0.00 4.12824 -141.991 -4.12824 4.12824 0.95 0.000564101 0.000516253 0.0552196 0.0505862 34 3506 43 6.89349e+06 366440 618332. 2139.56 2.46 0.228552 0.203057 25762 151098 -1 2599 21 2303 3254 230136 52927 4.39915 4.39915 -166.306 -4.39915 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0288607 0.0257798 175 55 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 8.09 vpr 65.02 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 34124 -1 -1 21 32 0 0 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 66576 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 26.3 MiB 1.37 1082 11059 2947 6528 1584 65.0 MiB 0.09 0.00 3.54849 -125.828 -3.54849 3.54849 0.91 0.000462634 0.000422926 0.0297013 0.0271817 36 2528 22 6.89349e+06 295971 648988. 2245.63 3.76 0.184825 0.161528 26050 158493 -1 2086 20 1268 1445 102758 23765 3.4747 3.4747 -138.84 -3.4747 0 0 828058. 2865.25 0.31 0.05 0.14 -1 -1 0.31 0.0216063 0.0191966 141 55 32 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.82 vpr 65.35 MiB 0.02 7324 -1 -1 1 0.03 -1 -1 33996 -1 -1 22 31 0 0 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 66916 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 26.5 MiB 2.03 1177 7525 1811 5263 451 65.3 MiB 0.08 0.00 3.36019 -112.607 -3.36019 3.36019 0.96 0.000487985 0.000445845 0.0218454 0.0199516 34 2877 30 6.89349e+06 310065 618332. 2139.56 1.70 0.135684 0.117444 25762 151098 -1 2291 20 1471 1862 123188 29380 3.6311 3.6311 -135.083 -3.6311 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.021422 0.0188522 146 82 0 0 89 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.27 vpr 65.57 MiB 0.02 7380 -1 -1 1 0.03 -1 -1 33920 -1 -1 29 30 0 0 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 67140 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 26.9 MiB 2.28 1237 18247 6280 9756 2211 65.6 MiB 0.17 0.00 3.073 -104.503 -3.073 3.073 1.00 0.000488021 0.000447797 0.0493909 0.0450745 34 2850 22 6.89349e+06 408721 618332. 2139.56 1.70 0.168684 0.148406 25762 151098 -1 2273 24 1738 2562 167120 39037 3.21561 3.21561 -124.499 -3.21561 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0269669 0.0237664 164 52 60 30 57 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 6.51 vpr 64.96 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 33840 -1 -1 27 28 0 0 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 66524 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 26.5 MiB 1.50 946 11415 3025 7505 885 65.0 MiB 0.11 0.00 3.63875 -110.52 -3.63875 3.63875 1.00 0.000475198 0.000432775 0.0308032 0.0281532 34 2583 39 6.89349e+06 380534 618332. 2139.56 1.83 0.1534 0.134187 25762 151098 -1 2097 21 1609 2364 172734 40071 3.90966 3.90966 -136.115 -3.90966 0 0 787024. 2723.27 0.30 0.06 0.14 -1 -1 0.30 0.0200396 0.0176977 145 20 84 28 28 28 - fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.81 vpr 65.25 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 33912 -1 -1 21 30 0 0 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 66816 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 26.5 MiB 2.32 960 10163 2639 6237 1287 65.2 MiB 0.09 0.00 3.30999 -105.547 -3.30999 3.30999 0.98 0.000469406 0.000420543 0.0287886 0.0262881 34 2714 25 6.89349e+06 295971 618332. 2139.56 2.33 0.140458 0.122822 25762 151098 -1 2131 21 1775 2460 214656 47422 3.80594 3.80594 -138.11 -3.80594 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0223506 0.0197736 136 58 30 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 6.48 vpr 65.25 MiB 0.02 7292 -1 -1 1 0.03 -1 -1 33588 -1 -1 21 32 0 0 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 66812 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 26.6 MiB 1.89 1246 15151 5126 7831 2194 65.2 MiB 0.13 0.00 3.0132 -108.457 -3.0132 3.0132 0.91 0.000473512 0.000433844 0.0410456 0.037486 34 2918 23 6.89349e+06 295971 618332. 2139.56 1.61 0.159821 0.140797 25762 151098 -1 2374 21 1729 2009 147367 33773 3.27221 3.27221 -125.732 -3.27221 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0220498 0.0194164 150 88 0 0 91 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 7.27 vpr 65.20 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34060 -1 -1 37 31 0 0 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 66764 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 26.4 MiB 0.89 1096 7756 1697 5533 526 65.2 MiB 0.08 0.00 3.55259 -123.404 -3.55259 3.55259 0.96 0.000519376 0.00047555 0.0187714 0.0171664 28 2823 30 6.89349e+06 521472 531479. 1839.03 3.31 0.171464 0.148102 24610 126494 -1 2471 22 1972 3211 262126 57366 3.6982 3.6982 -144.606 -3.6982 0 0 648988. 2245.63 0.26 0.08 0.13 -1 -1 0.26 0.0233346 0.0204867 151 -1 124 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.05 vpr 65.38 MiB 0.02 7344 -1 -1 1 0.03 -1 -1 34192 -1 -1 26 32 0 0 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 66944 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 26.7 MiB 1.54 1268 12150 3594 7463 1093 65.4 MiB 0.13 0.00 3.76028 -131.272 -3.76028 3.76028 0.98 0.000555084 0.000506331 0.0372124 0.0340415 34 3466 28 6.89349e+06 366440 618332. 2139.56 2.30 0.172864 0.152094 25762 151098 -1 2620 22 1984 2672 192905 44165 4.00129 4.00129 -155.641 -4.00129 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0285621 0.0253217 173 57 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 7.32 vpr 65.49 MiB 0.02 7276 -1 -1 1 0.03 -1 -1 34040 -1 -1 26 32 0 0 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 67060 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 26.8 MiB 1.96 1498 16974 5061 9810 2103 65.5 MiB 0.16 0.00 3.97668 -140.388 -3.97668 3.97668 0.99 0.000580778 0.000530521 0.0506781 0.0461876 34 3577 35 6.89349e+06 366440 618332. 2139.56 2.10 0.196474 0.172965 25762 151098 -1 2804 22 2350 3254 215035 50173 4.5604 4.5604 -175.237 -4.5604 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0269453 0.0238673 171 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 8.03 vpr 65.50 MiB 0.02 7316 -1 -1 1 0.03 -1 -1 34056 -1 -1 27 32 0 0 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 67072 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 26.8 MiB 1.96 1322 13555 3159 9259 1137 65.5 MiB 0.12 0.00 3.38904 -116.548 -3.38904 3.38904 0.95 0.000598324 0.000545773 0.037088 0.0337978 34 3954 42 6.89349e+06 380534 618332. 2139.56 2.90 0.187423 0.164246 25762 151098 -1 2882 20 1948 2877 218066 51344 4.34575 4.34575 -155.242 -4.34575 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0256181 0.022732 172 62 60 30 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.91 vpr 64.80 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 33568 -1 -1 19 30 0 0 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 66352 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 26.4 MiB 1.83 924 14606 5297 7499 1810 64.8 MiB 0.11 0.00 3.0572 -103.07 -3.0572 3.0572 0.91 0.000448961 0.000412866 0.0367831 0.0336533 34 2516 24 6.89349e+06 267783 618332. 2139.56 3.12 0.17933 0.156475 25762 151098 -1 2034 21 1409 1972 163615 35447 3.24686 3.24686 -127.088 -3.24686 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.0198905 0.0175425 122 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 7.98 vpr 65.34 MiB 0.02 7260 -1 -1 1 0.03 -1 -1 33872 -1 -1 26 30 0 0 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 66908 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 26.7 MiB 2.77 1231 13738 4025 7643 2070 65.3 MiB 0.13 0.00 3.93084 -128.259 -3.93084 3.93084 0.97 0.000541443 0.000488151 0.0400409 0.0365816 34 3069 49 6.89349e+06 366440 618332. 2139.56 2.01 0.18437 0.161006 25762 151098 -1 2554 22 2053 2770 214279 47460 4.67538 4.67538 -161.55 -4.67538 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.025805 0.0227278 165 58 60 30 60 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.84 vpr 65.46 MiB 0.02 7288 -1 -1 1 0.04 -1 -1 34088 -1 -1 30 32 0 0 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 67028 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 26.8 MiB 1.40 1603 17986 5434 10270 2282 65.5 MiB 0.16 0.00 3.78021 -130.506 -3.78021 3.78021 0.99 0.000612873 0.000555632 0.0515242 0.0468116 36 3630 29 6.89349e+06 422815 648988. 2245.63 3.13 0.203766 0.179311 26050 158493 -1 3030 20 1916 1974 162809 34287 4.17685 4.17685 -156.657 -4.17685 0 0 828058. 2865.25 0.34 0.07 0.15 -1 -1 0.34 0.0270502 0.0239291 204 106 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.55 vpr 65.69 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33672 -1 -1 29 31 0 0 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 67268 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 26.9 MiB 1.75 1415 14789 4457 8940 1392 65.7 MiB 0.14 0.00 4.10624 -138.636 -4.10624 4.10624 0.92 0.000568981 0.000523528 0.0420696 0.0383151 34 3371 26 6.89349e+06 408721 618332. 2139.56 1.75 0.179517 0.158153 25762 151098 -1 2701 18 2039 2579 169479 40116 4.59475 4.59475 -167.354 -4.59475 0 0 787024. 2723.27 0.30 0.07 0.13 -1 -1 0.30 0.0236228 0.0210345 186 79 31 31 93 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 8.16 vpr 65.55 MiB 0.02 7520 -1 -1 1 0.03 -1 -1 34088 -1 -1 28 30 0 0 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 67128 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 26.8 MiB 2.46 1222 17376 5849 8594 2933 65.6 MiB 0.16 0.00 3.44329 -111.204 -3.44329 3.44329 0.98 0.000547315 0.000500215 0.0508873 0.046362 34 3532 32 6.89349e+06 394628 618332. 2139.56 2.38 0.199222 0.176116 25762 151098 -1 2569 20 2332 3215 247182 54056 3.78835 3.78835 -137.224 -3.78835 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0257128 0.0228166 175 83 26 26 90 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.70 vpr 65.63 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 33876 -1 -1 26 32 0 0 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 67204 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 26.9 MiB 2.07 1368 9738 2878 6441 419 65.6 MiB 0.11 0.00 4.15024 -141.645 -4.15024 4.15024 0.96 0.000640076 0.000583618 0.0305397 0.0278983 34 3787 40 6.89349e+06 366440 618332. 2139.56 2.48 0.196752 0.173333 25762 151098 -1 3032 22 2621 3705 324033 68289 4.68595 4.68595 -175.878 -4.68595 0 0 787024. 2723.27 0.30 0.11 0.14 -1 -1 0.30 0.0304107 0.0269995 177 58 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 7.58 vpr 65.32 MiB 0.02 7484 -1 -1 1 0.03 -1 -1 34052 -1 -1 30 29 0 0 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 66884 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 26.6 MiB 2.40 1300 15799 5272 7855 2672 65.3 MiB 0.15 0.00 3.58265 -112.274 -3.58265 3.58265 0.96 0.000554016 0.000504137 0.043346 0.039519 34 3430 36 6.89349e+06 422815 618332. 2139.56 1.98 0.173085 0.150812 25762 151098 -1 2651 19 1839 2502 197603 42958 3.8267 3.8267 -131.393 -3.8267 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0228623 0.0201426 170 81 26 26 85 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 5.49 vpr 64.72 MiB 0.02 6764 -1 -1 1 0.03 -1 -1 33920 -1 -1 16 32 0 0 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 66272 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 26.2 MiB 0.63 933 14700 5059 8048 1593 64.7 MiB 0.12 0.00 3.037 -111.842 -3.037 3.037 0.99 0.000438088 0.000400467 0.0398003 0.0364366 34 2404 22 6.89349e+06 225501 618332. 2139.56 1.69 0.137548 0.121315 25762 151098 -1 2021 20 1470 2376 185173 41430 3.21381 3.21381 -133.747 -3.21381 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0200812 0.0177984 114 -1 96 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 8.71 vpr 65.50 MiB 0.02 7204 -1 -1 1 0.03 -1 -1 33444 -1 -1 27 32 0 0 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 67072 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 26.7 MiB 1.85 1158 10087 2436 6119 1532 65.5 MiB 0.10 0.00 4.05227 -133.337 -4.05227 4.05227 0.96 0.000575206 0.000523164 0.0292035 0.0265771 36 3467 24 6.89349e+06 380534 648988. 2245.63 3.67 0.167646 0.146967 26050 158493 -1 2441 19 2205 3011 207196 50578 4.72315 4.72315 -165.416 -4.72315 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0260562 0.0231807 174 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.75 vpr 65.49 MiB 0.02 7372 -1 -1 1 0.03 -1 -1 33920 -1 -1 25 32 0 0 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 67060 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 26.8 MiB 3.04 1419 16721 5040 9789 1892 65.5 MiB 0.15 0.00 4.08314 -143.84 -4.08314 4.08314 0.98 0.000473069 0.000431285 0.0465122 0.0423219 34 3633 36 6.89349e+06 352346 618332. 2139.56 2.46 0.209073 0.18474 25762 151098 -1 2893 21 2474 3485 270564 59902 4.56108 4.56108 -168.515 -4.56108 0 0 787024. 2723.27 0.31 0.10 0.14 -1 -1 0.31 0.0294165 0.0262125 176 62 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 6.90 vpr 64.94 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 34112 -1 -1 19 32 0 0 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 66500 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 26.3 MiB 1.97 880 14663 4334 8029 2300 64.9 MiB 0.12 0.00 2.7431 -91.4239 -2.7431 2.7431 0.96 0.000456479 0.000417959 0.0389079 0.0355404 34 2692 24 6.89349e+06 267783 618332. 2139.56 1.80 0.141026 0.123443 25762 151098 -1 1884 20 1312 1577 128119 29763 3.06756 3.06756 -113.137 -3.06756 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0206965 0.0182312 128 47 32 32 54 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 7.50 vpr 64.57 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 34024 -1 -1 17 31 0 0 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 66120 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 26.1 MiB 0.89 634 7648 1830 4987 831 64.6 MiB 0.07 0.00 3.1953 -106.279 -3.1953 3.1953 0.99 0.000431541 0.000394936 0.0207382 0.0189595 36 1949 20 6.89349e+06 239595 648988. 2245.63 3.45 0.155155 0.134331 26050 158493 -1 1599 16 1095 1728 113410 28059 3.21561 3.21561 -123.108 -3.21561 0 0 828058. 2865.25 0.34 0.05 0.15 -1 -1 0.34 0.0170218 0.0151694 112 -1 93 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.65 vpr 65.13 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 33844 -1 -1 25 32 0 0 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 66696 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 26.5 MiB 1.69 1187 9989 2768 6570 651 65.1 MiB 0.10 0.00 3.44139 -113.851 -3.44139 3.44139 0.97 0.000531915 0.00048451 0.0299829 0.0273663 34 2892 23 6.89349e+06 352346 618332. 2139.56 1.80 0.149627 0.130738 25762 151098 -1 2347 23 1821 2277 173226 40043 3.8176 3.8176 -138.343 -3.8176 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0266612 0.023515 158 56 60 32 58 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 8.99 vpr 65.12 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 33824 -1 -1 26 32 0 0 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 66680 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 26.4 MiB 1.80 1360 11748 3227 7768 753 65.1 MiB 0.12 0.00 4.07324 -130.543 -4.07324 4.07324 0.98 0.000540523 0.000492705 0.0355349 0.0324504 36 2920 29 6.89349e+06 366440 648988. 2245.63 3.96 0.219363 0.190559 26050 158493 -1 2432 21 1565 1961 129692 30627 4.38335 4.38335 -154.586 -4.38335 0 0 828058. 2865.25 0.33 0.07 0.15 -1 -1 0.33 0.0266434 0.0235834 170 81 28 28 88 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 6.92 vpr 65.33 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 33904 -1 -1 41 32 0 0 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 66896 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 26.7 MiB 0.97 1115 18383 5415 8358 4610 65.3 MiB 0.14 0.00 3.94478 -129.743 -3.94478 3.94478 0.96 0.000581361 0.000523445 0.0455598 0.0413602 36 3109 50 6.89349e+06 577847 648988. 2245.63 2.71 0.177815 0.155905 26050 158493 -1 2204 23 2043 3514 227218 56948 4.54739 4.54739 -158.933 -4.54739 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0286429 0.0252037 183 -1 156 32 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.05 vpr 65.45 MiB 0.02 7428 -1 -1 1 0.03 -1 -1 34064 -1 -1 27 30 0 0 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 67016 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 26.8 MiB 1.96 1196 17117 5643 8880 2594 65.4 MiB 0.15 0.00 3.1264 -106.114 -3.1264 3.1264 0.98 0.000534632 0.00048658 0.0468219 0.042721 34 3051 32 6.89349e+06 380534 618332. 2139.56 1.83 0.170508 0.149473 25762 151098 -1 2476 23 2030 2916 219191 49243 3.15435 3.15435 -124.251 -3.15435 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0251576 0.0221461 160 47 60 30 56 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.66 vpr 64.59 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 34112 -1 -1 22 27 0 0 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 66140 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 26.2 MiB 1.47 717 13206 3506 8495 1205 64.6 MiB 0.09 0.00 3.34299 -95.8941 -3.34299 3.34299 0.96 0.000411323 0.000376128 0.0324027 0.029575 28 2311 29 6.89349e+06 310065 531479. 1839.03 1.18 0.0926353 0.0814594 24610 126494 -1 1622 21 1471 2084 137280 34650 3.6391 3.6391 -122.616 -3.6391 0 0 648988. 2245.63 0.26 0.06 0.12 -1 -1 0.26 0.0183196 0.0160996 112 26 54 27 27 27 - fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 9.58 vpr 65.75 MiB 0.02 7368 -1 -1 1 0.03 -1 -1 33932 -1 -1 32 32 0 0 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 67324 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 27.0 MiB 1.90 1764 18930 5418 11040 2472 65.7 MiB 0.19 0.00 3.95894 -136.322 -3.95894 3.95894 0.98 0.000586482 0.000531943 0.0573108 0.0520886 38 3666 19 6.89349e+06 451003 678818. 2348.85 4.34 0.271006 0.236703 26626 170182 -1 3071 24 2216 3186 206399 45807 4.22985 4.22985 -158.581 -4.22985 0 0 902133. 3121.57 0.35 0.09 0.17 -1 -1 0.35 0.0354376 0.0314112 219 85 62 31 95 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.93 vpr 65.55 MiB 0.02 7492 -1 -1 1 0.03 -1 -1 34240 -1 -1 31 31 0 0 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 67128 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 26.9 MiB 2.61 1474 11596 3243 7129 1224 65.6 MiB 0.12 0.00 4.10624 -137.211 -4.10624 4.10624 1.00 0.000662629 0.000596481 0.0361931 0.0327827 34 3788 49 6.89349e+06 436909 618332. 2139.56 2.04 0.202514 0.177187 25762 151098 -1 2852 20 2240 2594 182461 42973 4.69485 4.69485 -168.814 -4.69485 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0285353 0.0253193 201 105 0 0 124 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.53 vpr 65.29 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 33732 -1 -1 22 32 0 0 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 66856 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 26.5 MiB 2.41 1189 9725 2520 6822 383 65.3 MiB 0.09 0.00 3.32419 -112.929 -3.32419 3.32419 0.97 0.000482503 0.000438548 0.0274832 0.0250744 36 2928 27 6.89349e+06 310065 648988. 2245.63 1.99 0.141676 0.122978 26050 158493 -1 2454 22 1828 2089 193400 40602 3.47205 3.47205 -135.895 -3.47205 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0235003 0.0205963 150 86 0 0 89 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 8.63 vpr 65.30 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 34172 -1 -1 23 32 0 0 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 66868 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 26.5 MiB 2.05 1132 11799 3237 7477 1085 65.3 MiB 0.12 0.00 3.66075 -124.245 -3.66075 3.66075 0.93 0.000521167 0.000476618 0.0338914 0.0309872 40 2278 23 6.89349e+06 324158 706193. 2443.58 3.45 0.199759 0.174042 26914 176310 -1 2252 22 1694 2471 185964 42982 3.79836 3.79836 -142.9 -3.79836 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0243212 0.021477 151 31 90 30 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 8.98 vpr 65.70 MiB 0.02 7408 -1 -1 1 0.03 -1 -1 34052 -1 -1 30 31 0 0 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 67272 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 26.9 MiB 1.80 1415 17523 5456 10422 1645 65.7 MiB 0.17 0.00 3.68095 -127.804 -3.68095 3.68095 0.93 0.000543857 0.000500157 0.0518138 0.047332 36 3163 28 6.89349e+06 422815 648988. 2245.63 3.96 0.242683 0.211467 26050 158493 -1 2601 21 2160 3145 212224 47285 3.83456 3.83456 -147.74 -3.83456 0 0 828058. 2865.25 0.32 0.08 0.16 -1 -1 0.32 0.0280685 0.0248941 193 50 87 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.69 vpr 65.22 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 34064 -1 -1 28 30 0 0 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 66784 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 26.6 MiB 2.29 1138 8331 2077 5720 534 65.2 MiB 0.09 0.00 3.48849 -110.607 -3.48849 3.48849 0.96 0.000537668 0.000491623 0.0239732 0.0219034 36 2921 27 6.89349e+06 394628 648988. 2245.63 2.24 0.146339 0.127257 26050 158493 -1 2476 19 1586 2437 180127 40250 3.8227 3.8227 -138.148 -3.8227 0 0 828058. 2865.25 0.32 0.07 0.16 -1 -1 0.32 0.0225456 0.0199109 162 50 58 30 58 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.25 vpr 65.39 MiB 0.02 7392 -1 -1 1 0.03 -1 -1 34132 -1 -1 28 32 0 0 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 66964 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 26.6 MiB 1.79 1423 11684 3369 7494 821 65.4 MiB 0.12 0.00 4.01094 -140.385 -4.01094 4.01094 1.00 0.00059619 0.000545097 0.0348684 0.0318333 36 3265 32 6.89349e+06 394628 648988. 2245.63 2.19 0.187685 0.16506 26050 158493 -1 2811 20 1807 2433 196388 41721 4.23465 4.23465 -160.578 -4.23465 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0267325 0.0236791 173 61 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 9.80 vpr 65.62 MiB 0.02 7284 -1 -1 1 0.03 -1 -1 33816 -1 -1 27 32 0 0 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 67192 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 26.9 MiB 2.17 1383 18247 5278 11310 1659 65.6 MiB 0.18 0.00 2.96065 -108.556 -2.96065 2.96065 0.97 0.000552631 0.000500661 0.0527091 0.0478447 42 2958 19 6.89349e+06 380534 744469. 2576.02 4.35 0.225611 0.197543 27202 183097 -1 2491 18 1716 2411 164451 37188 3.03746 3.03746 -123.98 -3.03746 0 0 949917. 3286.91 0.35 0.07 0.17 -1 -1 0.35 0.0247476 0.0220681 175 61 63 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.29 vpr 64.62 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 33984 -1 -1 21 29 0 0 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 66172 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 26.2 MiB 1.59 858 15212 5499 7330 2383 64.6 MiB 0.11 0.00 3.0572 -99.7396 -3.0572 3.0572 0.96 0.000433236 0.00039455 0.0382367 0.0349354 34 2001 23 6.89349e+06 295971 618332. 2139.56 1.61 0.130641 0.114065 25762 151098 -1 1706 19 1402 1843 128369 29864 3.04026 3.04026 -114.392 -3.04026 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0184394 0.0162774 118 28 58 29 29 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.22 vpr 65.10 MiB 0.02 7128 -1 -1 1 0.03 -1 -1 34084 -1 -1 20 32 0 0 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 66664 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 26.3 MiB 1.39 1132 6306 1445 4549 312 65.1 MiB 0.07 0.00 3.61399 -107.656 -3.61399 3.61399 1.01 0.000478046 0.000435346 0.018468 0.0168549 36 2591 40 6.89349e+06 281877 648988. 2245.63 1.66 0.114051 0.0994944 26050 158493 -1 2171 19 1574 1847 131323 29860 3.55495 3.55495 -127.093 -3.55495 0 0 828058. 2865.25 0.34 0.06 0.15 -1 -1 0.34 0.0212798 0.0188874 136 79 0 0 82 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.63 vpr 65.32 MiB 0.02 7360 -1 -1 1 0.03 -1 -1 34068 -1 -1 24 31 0 0 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 66892 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 26.5 MiB 1.59 1180 16023 5115 8581 2327 65.3 MiB 0.15 0.00 3.72305 -126.858 -3.72305 3.72305 0.99 0.000539863 0.000492502 0.0464774 0.0424493 34 2909 38 6.89349e+06 338252 618332. 2139.56 1.81 0.187823 0.165379 25762 151098 -1 2361 20 1904 2778 190203 44356 4.20536 4.20536 -152.269 -4.20536 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0242914 0.0215206 154 29 93 31 31 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 6.19 vpr 64.73 MiB 0.02 7164 -1 -1 1 0.03 -1 -1 34004 -1 -1 21 29 0 0 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 66288 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 26.3 MiB 1.50 942 13254 4882 6404 1968 64.7 MiB 0.11 0.00 2.7321 -88.6094 -2.7321 2.7321 0.96 0.000425546 0.000387551 0.0339051 0.0309653 34 2169 25 6.89349e+06 295971 618332. 2139.56 1.59 0.128496 0.111823 25762 151098 -1 1842 18 1131 1305 92186 21758 2.89026 2.89026 -107.1 -2.89026 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0177253 0.0155982 123 48 29 29 52 26 - fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.89 vpr 64.89 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 33952 -1 -1 18 32 0 0 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 66452 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 26.5 MiB 1.98 1031 12542 3547 7125 1870 64.9 MiB 0.11 0.00 3.0872 -111.93 -3.0872 3.0872 1.00 0.000481571 0.000441869 0.0348917 0.0318647 34 2551 25 6.89349e+06 253689 618332. 2139.56 1.76 0.148447 0.130497 25762 151098 -1 2147 20 1700 2384 190550 40858 3.27201 3.27201 -135.914 -3.27201 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0214488 0.0190249 127 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.10 vpr 65.44 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33772 -1 -1 27 31 0 0 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 67012 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 26.8 MiB 2.05 1287 17175 4781 10450 1944 65.4 MiB 0.16 0.00 3.37794 -116.765 -3.37794 3.37794 0.95 0.000566717 0.00051704 0.0489663 0.0446377 34 3224 26 6.89349e+06 380534 618332. 2139.56 1.84 0.172747 0.150909 25762 151098 -1 2682 23 2409 3325 298339 63716 3.89465 3.89465 -150.905 -3.89465 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0272228 0.0238883 164 60 58 31 62 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 8.72 vpr 64.68 MiB 0.02 7308 -1 -1 1 0.03 -1 -1 33968 -1 -1 21 31 0 0 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 66228 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 26.2 MiB 1.71 1008 10515 2970 6860 685 64.7 MiB 0.09 0.00 2.66772 -92.8854 -2.66772 2.66772 0.97 0.000447049 0.000408667 0.0277713 0.0254022 36 2220 22 6.89349e+06 295971 648988. 2245.63 3.88 0.164581 0.14329 26050 158493 -1 1970 21 1261 1545 126098 27794 2.93426 2.93426 -114.051 -2.93426 0 0 828058. 2865.25 0.33 0.06 0.15 -1 -1 0.33 0.0206331 0.0181937 125 49 31 31 53 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 8.27 vpr 65.36 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 33684 -1 -1 25 32 0 0 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 66928 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 26.8 MiB 1.86 1285 11375 3243 7317 815 65.4 MiB 0.11 0.00 3.45549 -118.245 -3.45549 3.45549 0.96 0.000545771 0.000497798 0.0324267 0.029525 34 3054 22 6.89349e+06 352346 618332. 2139.56 3.32 0.199688 0.172537 25762 151098 -1 2548 19 1773 2504 192850 43587 3.523 3.523 -136.633 -3.523 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0208203 0.0183788 162 56 52 26 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.53 vpr 65.57 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 34124 -1 -1 31 31 0 0 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 67140 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 26.7 MiB 2.23 1503 15004 3761 8780 2463 65.6 MiB 0.14 0.00 4.11342 -131.718 -4.11342 4.11342 0.96 0.000554293 0.000504829 0.0429496 0.0391987 34 3560 40 6.89349e+06 436909 618332. 2139.56 2.07 0.184841 0.160814 25762 151098 -1 2886 21 2323 3365 235854 53550 4.44069 4.44069 -160.161 -4.44069 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.027378 0.0240799 185 88 31 31 92 31 - fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 8.00 vpr 64.93 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 34080 -1 -1 21 32 0 0 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 66492 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 26.2 MiB 3.00 1130 13477 3780 7902 1795 64.9 MiB 0.12 0.00 2.88675 -103.845 -2.88675 2.88675 1.00 0.00046941 0.000428117 0.0360887 0.0329181 34 2817 22 6.89349e+06 295971 618332. 2139.56 1.77 0.147438 0.129435 25762 151098 -1 2329 18 1660 2272 180790 39260 2.87221 2.87221 -116.705 -2.87221 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0211016 0.0186977 137 54 32 32 60 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.32 vpr 65.20 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 33480 -1 -1 20 32 0 0 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 66764 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 26.4 MiB 1.56 1094 9234 2349 6229 656 65.2 MiB 0.09 0.00 3.0652 -108.154 -3.0652 3.0652 0.97 0.000513523 0.000467097 0.0272093 0.0248573 34 2756 23 6.89349e+06 281877 618332. 2139.56 1.65 0.133157 0.115464 25762 151098 -1 2276 18 1526 1809 152181 33308 3.10956 3.10956 -125.653 -3.10956 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0195557 0.0172463 139 60 32 32 62 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 8.76 vpr 65.34 MiB 0.02 7268 -1 -1 1 0.03 -1 -1 34376 -1 -1 27 32 0 0 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 66912 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 26.6 MiB 1.64 1302 16207 5602 8499 2106 65.3 MiB 0.13 0.00 3.75305 -132.428 -3.75305 3.75305 0.94 0.000562413 0.00050993 0.0440899 0.0402654 36 2939 33 6.89349e+06 380534 648988. 2245.63 3.98 0.238194 0.207679 26050 158493 -1 2580 21 2073 2598 188249 41514 4.02396 4.02396 -156.863 -4.02396 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0241664 0.0213247 178 49 64 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.76 vpr 65.36 MiB 0.02 7336 -1 -1 1 0.03 -1 -1 33744 -1 -1 26 29 0 0 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 66924 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 26.8 MiB 1.98 1201 11991 3478 7371 1142 65.4 MiB 0.11 0.00 2.92765 -97.7496 -2.92765 2.92765 0.96 0.000517919 0.00047203 0.0347181 0.0317472 34 2628 21 6.89349e+06 366440 618332. 2139.56 1.64 0.146247 0.127606 25762 151098 -1 2304 17 1730 2217 153193 35244 3.33186 3.33186 -123.569 -3.33186 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.021316 0.018861 157 54 56 29 58 29 - fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 7.23 vpr 65.73 MiB 0.02 7388 -1 -1 1 0.04 -1 -1 34396 -1 -1 29 32 0 0 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 67312 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 27.1 MiB 1.59 1505 18573 5614 10502 2457 65.7 MiB 0.18 0.00 3.96268 -136.341 -3.96268 3.96268 0.96 0.000613921 0.000558748 0.0565226 0.0515675 36 3719 27 6.89349e+06 408721 648988. 2245.63 2.38 0.216147 0.191076 26050 158493 -1 3076 19 2365 2732 196659 44801 4.71879 4.71879 -166.699 -4.71879 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0278449 0.0248647 203 117 0 0 128 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.81 vpr 64.54 MiB 0.02 7180 -1 -1 1 0.03 -1 -1 33784 -1 -1 16 31 0 0 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 66084 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 26.1 MiB 0.72 879 11402 3694 5860 1848 64.5 MiB 0.09 0.00 2.34777 -87.9271 -2.34777 2.34777 0.96 0.000409109 0.000374226 0.0289225 0.0264429 30 2094 21 6.89349e+06 225501 556674. 1926.21 1.06 0.0824494 0.0726512 25186 138497 -1 1753 21 1250 2014 127862 28708 2.75561 2.75561 -112.663 -2.75561 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0183974 0.0161788 104 -1 85 31 0 0 - fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.33 vpr 65.60 MiB 0.02 7312 -1 -1 1 0.03 -1 -1 34052 -1 -1 28 32 0 0 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 67176 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 26.9 MiB 1.88 1316 17066 5532 8557 2977 65.6 MiB 0.16 0.00 4.40923 -144.475 -4.40923 4.40923 1.00 0.000565276 0.00051977 0.0506824 0.04614 34 3870 44 6.89349e+06 394628 618332. 2139.56 2.17 0.216699 0.191053 25762 151098 -1 2768 22 2460 3246 242844 54866 5.05604 5.05604 -178.909 -5.05604 0 0 787024. 2723.27 0.32 0.09 0.14 -1 -1 0.32 0.0305439 0.0270671 179 89 28 28 92 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.99 vpr 65.37 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 33800 -1 -1 24 32 0 0 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 66940 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 26.7 MiB 2.60 1327 17638 6261 9008 2369 65.4 MiB 0.15 0.00 3.82148 -134.143 -3.82148 3.82148 0.97 0.000540678 0.000494353 0.0489641 0.0446578 38 3081 25 6.89349e+06 338252 678818. 2348.85 2.11 0.166184 0.1452 26626 170182 -1 2649 22 2407 2993 227130 48952 4.15359 4.15359 -155.176 -4.15359 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0255564 0.0224887 161 93 0 0 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 7.14 vpr 65.43 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 34044 -1 -1 25 32 0 0 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 67004 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 26.8 MiB 2.04 1404 16127 4906 9154 2067 65.4 MiB 0.15 0.00 3.00785 -110.457 -3.00785 3.00785 1.00 0.000535089 0.000484303 0.0471581 0.0429603 34 3191 44 6.89349e+06 352346 618332. 2139.56 1.84 0.197471 0.173155 25762 151098 -1 2564 19 1787 2392 179922 39948 3.1004 3.1004 -129.151 -3.1004 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.0250518 0.0222646 170 59 61 32 64 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.29 vpr 65.83 MiB 0.02 7420 -1 -1 1 0.04 -1 -1 34276 -1 -1 33 32 0 0 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 67408 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 27.0 MiB 2.00 1658 21853 7761 11309 2783 65.8 MiB 0.23 0.00 4.16434 -145.014 -4.16434 4.16434 0.95 0.000651829 0.000593002 0.06693 0.0609157 36 3867 40 6.89349e+06 465097 648988. 2245.63 2.96 0.239972 0.210693 26050 158493 -1 3101 21 2532 3014 212632 48162 4.7822 4.7822 -174.932 -4.7822 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0303275 0.0267967 224 81 64 32 96 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.69 vpr 64.28 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 33696 -1 -1 16 30 0 0 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 65824 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 25.8 MiB 1.25 811 13358 4243 7085 2030 64.3 MiB 0.09 0.00 2.56796 -80.5183 -2.56796 2.56796 0.94 0.000361263 0.00032868 0.0311047 0.0282659 34 1751 18 6.89349e+06 225501 618332. 2139.56 1.41 0.1061 0.0922389 25762 151098 -1 1533 17 695 705 54011 12835 2.19676 2.19676 -90.0797 -2.19676 0 0 787024. 2723.27 0.32 0.04 0.15 -1 -1 0.32 0.0149557 0.0132239 93 51 0 0 53 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 6.12 vpr 64.78 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 33908 -1 -1 21 30 0 0 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 66336 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 26.4 MiB 1.41 939 14663 4555 8160 1948 64.8 MiB 0.12 0.00 3.34479 -111.77 -3.34479 3.34479 0.97 0.000430511 0.000392895 0.0378835 0.0346353 34 2058 22 6.89349e+06 295971 618332. 2139.56 1.58 0.133479 0.116805 25762 151098 -1 1784 21 1476 2183 148809 34737 3.3182 3.3182 -130.779 -3.3182 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0207754 0.0182736 124 29 60 30 30 30 - fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 7.51 vpr 64.80 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 33640 -1 -1 18 32 0 0 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 66352 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 26.4 MiB 2.41 1049 11118 2860 7705 553 64.8 MiB 0.10 0.00 3.42319 -119.68 -3.42319 3.42319 0.94 0.000444839 0.000405668 0.0304168 0.027728 34 2865 43 6.89349e+06 253689 618332. 2139.56 2.01 0.137356 0.120474 25762 151098 -1 2270 20 1916 3323 234656 52946 3.611 3.611 -146.326 -3.611 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0204831 0.0179788 129 31 64 32 32 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.42 vpr 64.18 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 33936 -1 -1 24 25 0 0 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 65724 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 25.7 MiB 1.41 626 13731 3794 8862 1075 64.2 MiB 0.10 0.00 3.0352 -80.8507 -3.0352 3.0352 0.96 0.000380121 0.00034849 0.0318306 0.0291829 30 1943 35 6.89349e+06 338252 556674. 1926.21 0.99 0.0915981 0.0806178 25186 138497 -1 1417 21 943 1257 85861 20512 2.96021 2.96021 -98.0948 -2.96021 0 0 706193. 2443.58 0.28 0.05 0.12 -1 -1 0.28 0.017913 0.0158081 107 19 50 25 25 25 - fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 11.17 vpr 65.77 MiB 0.02 7228 -1 -1 1 0.03 -1 -1 33844 -1 -1 28 32 0 0 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 67352 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 27.2 MiB 3.18 1501 18101 5858 9877 2366 65.8 MiB 0.16 0.00 3.78745 -132.366 -3.78745 3.78745 0.99 0.00056602 0.000515365 0.049022 0.0447187 38 3394 32 6.89349e+06 394628 678818. 2348.85 4.68 0.308007 0.270335 26626 170182 -1 2868 18 2188 3125 185132 42942 3.92506 3.92506 -152.687 -3.92506 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0249107 0.0222086 190 84 32 32 94 32 - fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 9.64 vpr 65.65 MiB 0.02 7252 -1 -1 1 0.03 -1 -1 33932 -1 -1 27 31 0 0 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 67228 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 26.9 MiB 2.21 1353 6120 1183 4662 275 65.7 MiB 0.07 0.00 3.92478 -128.199 -3.92478 3.92478 0.93 0.000564585 0.000516512 0.0197456 0.0180369 36 3247 25 6.89349e+06 380534 648988. 2245.63 4.28 0.214349 0.185279 26050 158493 -1 2745 23 2241 3139 217858 50447 4.32719 4.32719 -155.198 -4.32719 0 0 828058. 2865.25 0.34 0.09 0.15 -1 -1 0.34 0.0299868 0.0264768 183 88 29 29 93 31 +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.09 vpr 62.64 MiB 0.05 6684 -1 -1 14 0.28 -1 -1 33076 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1380 9939 2582 6063 1294 62.6 MiB 0.10 0.00 6.7601 -135.498 -6.7601 6.7601 0.67 0.000908502 0.000840831 0.0483983 0.044806 28 3541 39 6.55708e+06 313430 500653. 1732.36 1.78 0.196374 0.173158 21310 115450 -1 3073 30 2019 6786 564262 193886 7.4003 7.4003 -163.769 -7.4003 0 0 612192. 2118.31 0.19 0.20 0.10 -1 -1 0.19 0.0510475 0.0444256 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.50 vpr 62.71 MiB 0.04 6836 -1 -1 14 0.28 -1 -1 33140 -1 -1 30 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1267 11684 3159 7206 1319 62.7 MiB 0.11 0.00 7.18744 -144.203 -7.18744 7.18744 0.68 0.000918355 0.000855163 0.0545097 0.0505374 30 3145 19 6.55708e+06 361650 526063. 1820.29 1.17 0.1566 0.138247 21886 126133 -1 2762 17 1345 3723 185674 43485 7.30764 7.30764 -157.53 -7.30764 0 0 666494. 2306.21 0.18 0.08 0.14 -1 -1 0.18 0.033866 0.0298841 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 6.90 vpr 62.51 MiB 0.05 6704 -1 -1 11 0.22 -1 -1 32952 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1326 14543 4293 7829 2421 62.5 MiB 0.14 0.00 5.36852 -114.919 -5.36852 5.36852 0.67 0.000886469 0.000822165 0.0687434 0.063629 36 3474 19 6.55708e+06 301375 612192. 2118.31 3.70 0.299942 0.260995 22750 144809 -1 2972 17 1343 4408 245414 56278 5.77092 5.77092 -135.257 -5.77092 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0322497 0.0283988 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 5.72 vpr 62.62 MiB 0.04 6756 -1 -1 12 0.34 -1 -1 32996 -1 -1 29 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1337 8532 2110 5618 804 62.6 MiB 0.09 0.00 6.34804 -120.709 -6.34804 6.34804 0.68 0.00089884 0.000830005 0.0416393 0.0385509 34 3710 39 6.55708e+06 349595 585099. 2024.56 2.47 0.228477 0.198347 22462 138074 -1 3029 16 1316 4071 226472 52258 6.85838 6.85838 -138.876 -6.85838 0 0 742403. 2568.87 0.19 0.09 0.11 -1 -1 0.19 0.0312576 0.0275514 185 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 4.87 vpr 63.02 MiB 0.05 6712 -1 -1 13 0.31 -1 -1 33104 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1615 9732 2439 6417 876 63.0 MiB 0.11 0.00 6.38724 -139.576 -6.38724 6.38724 0.68 0.0010256 0.00095104 0.0499251 0.04611 30 4384 24 6.55708e+06 385760 526063. 1820.29 1.43 0.176606 0.154826 21886 126133 -1 3440 21 1809 5073 253093 59376 6.9587 6.9587 -159.716 -6.9587 0 0 666494. 2306.21 0.21 0.11 0.11 -1 -1 0.21 0.0458103 0.04039 223 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 13.86 vpr 62.91 MiB 0.05 6664 -1 -1 12 0.27 -1 -1 32952 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1549 10898 2830 6790 1278 62.9 MiB 0.14 0.00 6.03124 -125.938 -6.03124 6.03124 0.69 0.00134175 0.00123145 0.0581259 0.0535706 30 4132 41 6.55708e+06 409870 526063. 1820.29 10.47 0.347557 0.301043 21886 126133 -1 3256 17 1520 4500 231175 52864 6.31084 6.31084 -147.497 -6.31084 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.033975 0.0299399 209 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.57 vpr 62.05 MiB 0.04 6568 -1 -1 12 0.18 -1 -1 32608 -1 -1 27 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63544 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1026 4811 1068 3438 305 62.1 MiB 0.05 0.00 5.81578 -105.725 -5.81578 5.81578 0.68 0.000706145 0.000655776 0.0207139 0.019233 28 2728 32 6.55708e+06 325485 500653. 1732.36 2.62 0.206526 0.177737 21310 115450 -1 2312 19 1182 3437 186516 43386 6.01698 6.01698 -123.379 -6.01698 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0275143 0.0240877 136 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.95 vpr 62.38 MiB 0.05 6716 -1 -1 11 0.18 -1 -1 32884 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1212 11719 2859 7078 1782 62.4 MiB 0.11 0.00 5.46178 -109.851 -5.46178 5.46178 0.67 0.000836318 0.000776197 0.0513068 0.047552 34 3785 49 6.55708e+06 337540 585099. 2024.56 2.85 0.226762 0.197263 22462 138074 -1 2804 20 1238 3798 227173 52089 5.58398 5.58398 -128.47 -5.58398 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341562 0.0298546 175 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 9.57 vpr 62.17 MiB 0.04 6556 -1 -1 12 0.17 -1 -1 32780 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63660 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1241 8668 2210 5476 982 62.2 MiB 0.08 0.00 5.61718 -124.779 -5.61718 5.61718 0.68 0.000748857 0.000694388 0.0361369 0.0334917 26 3573 44 6.55708e+06 301375 477104. 1650.88 6.55 0.244706 0.21186 21022 109990 -1 2766 15 1026 2685 175521 39415 6.17898 6.17898 -144.222 -6.17898 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0253544 0.02246 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.40 vpr 62.29 MiB 0.04 6572 -1 -1 13 0.19 -1 -1 32992 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1223 15929 4797 8703 2429 62.3 MiB 0.15 0.00 6.22784 -140.147 -6.22784 6.22784 0.67 0.000823801 0.000756213 0.0681139 0.0629028 30 3098 42 6.55708e+06 301375 526063. 1820.29 1.20 0.190305 0.167377 21886 126133 -1 2600 16 1065 2891 150497 34539 6.66944 6.66944 -156.8 -6.66944 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281703 0.024824 162 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.44 vpr 62.00 MiB 0.04 6520 -1 -1 12 0.17 -1 -1 32912 -1 -1 22 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63492 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1088 9234 2413 5439 1382 62.0 MiB 0.08 0.00 5.86924 -122.016 -5.86924 5.86924 0.68 0.000695487 0.000644599 0.0376916 0.0349586 28 3098 48 6.55708e+06 265210 500653. 1732.36 1.66 0.14999 0.130919 21310 115450 -1 2500 18 993 2527 159471 36473 5.98944 5.98944 -139.74 -5.98944 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.026394 0.0231736 132 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 6.02 vpr 62.10 MiB 0.05 6692 -1 -1 12 0.14 -1 -1 33004 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1009 12919 4052 6455 2412 62.1 MiB 0.11 0.00 5.45978 -119.39 -5.45978 5.45978 0.68 0.000713857 0.000656883 0.0520883 0.0480826 36 2623 21 6.55708e+06 253155 612192. 2118.31 3.12 0.223242 0.193985 22750 144809 -1 2285 14 965 2708 147065 34701 5.66098 5.66098 -137.115 -5.66098 0 0 782063. 2706.10 0.20 0.06 0.13 -1 -1 0.20 0.0225286 0.0199147 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.52 vpr 63.00 MiB 0.04 6844 -1 -1 13 0.26 -1 -1 33132 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1482 4993 817 3942 234 63.0 MiB 0.06 0.00 6.4407 -133.91 -6.4407 6.4407 0.68 0.000970342 0.000899069 0.0276361 0.0255726 28 3880 44 6.55708e+06 361650 500653. 1732.36 2.28 0.181079 0.156988 21310 115450 -1 3328 24 1912 5870 397240 101452 6.8823 6.8823 -154.372 -6.8823 0 0 612192. 2118.31 0.17 0.14 0.10 -1 -1 0.17 0.0462365 0.0403974 212 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 4.83 vpr 62.74 MiB 0.04 6780 -1 -1 14 0.31 -1 -1 33244 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1516 9333 2256 5804 1273 62.7 MiB 0.10 0.00 7.33662 -150.961 -7.33662 7.33662 0.68 0.000980793 0.000899119 0.0481871 0.0445579 30 4045 21 6.55708e+06 349595 526063. 1820.29 1.52 0.167157 0.146855 21886 126133 -1 3096 18 1466 4279 196569 47521 7.68555 7.68555 -170.767 -7.68555 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0372068 0.0327812 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 7.36 vpr 62.17 MiB 0.04 6576 -1 -1 11 0.17 -1 -1 32676 -1 -1 29 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1080 10944 3016 6546 1382 62.2 MiB 0.10 0.00 5.24892 -104.397 -5.24892 5.24892 0.68 0.000758429 0.000703932 0.0433563 0.0401486 28 3125 47 6.55708e+06 349595 500653. 1732.36 4.44 0.311443 0.268859 21310 115450 -1 2580 19 1195 3247 192181 44463 5.63646 5.63646 -124.762 -5.63646 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0292113 0.0256414 160 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 5.95 vpr 62.79 MiB 0.04 6712 -1 -1 12 0.27 -1 -1 33156 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.4 MiB 0.50 1606 6398 1139 4832 427 62.8 MiB 0.08 0.00 6.4407 -134.488 -6.4407 6.4407 0.68 0.000986896 0.000915255 0.0319879 0.0296548 30 4239 45 6.55708e+06 409870 526063. 1820.29 2.59 0.189451 0.164952 21886 126133 -1 3456 18 1573 4893 270505 61928 6.6001 6.6001 -150.782 -6.6001 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0374335 0.0328821 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.93 vpr 62.95 MiB 0.05 6712 -1 -1 13 0.26 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1462 14988 3978 8216 2794 63.0 MiB 0.15 0.00 6.5961 -139.227 -6.5961 6.5961 0.68 0.00099302 0.000915134 0.0715527 0.0659762 28 4325 42 6.55708e+06 385760 500653. 1732.36 2.70 0.225874 0.198506 21310 115450 -1 3387 17 1503 4217 244014 57752 7.0769 7.0769 -165.954 -7.0769 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.036052 0.0317845 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 9.95 vpr 62.17 MiB 0.02 6680 -1 -1 12 0.15 -1 -1 32712 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.47 978 4811 917 3822 72 62.2 MiB 0.06 0.00 5.8815 -128.892 -5.8815 5.8815 0.68 0.00074514 0.000690678 0.0223361 0.0207447 28 3162 36 6.55708e+06 265210 500653. 1732.36 6.83 0.21605 0.186292 21310 115450 -1 2452 17 998 2909 189954 46596 6.2029 6.2029 -151.197 -6.2029 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0275743 0.0242868 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 5.77 vpr 61.65 MiB 0.02 6372 -1 -1 10 0.10 -1 -1 32372 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63132 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.12 840 7202 1727 4951 524 61.7 MiB 0.08 0.00 4.32286 -100.168 -4.32286 4.32286 0.72 0.000570329 0.000529987 0.0338247 0.031355 36 1865 14 6.55708e+06 241100 612192. 2118.31 2.96 0.172301 0.149157 22750 144809 -1 1764 16 685 1706 98525 23067 4.632 4.632 -114.629 -4.632 0 0 782063. 2706.10 0.21 0.05 0.13 -1 -1 0.21 0.0194156 0.0170442 96 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 7.50 vpr 62.12 MiB 0.02 6572 -1 -1 13 0.17 -1 -1 32868 -1 -1 24 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1072 5271 984 4138 149 62.1 MiB 0.06 0.00 6.10764 -127.105 -6.10764 6.10764 0.73 0.000728974 0.000676096 0.022841 0.0211914 30 2628 20 6.55708e+06 289320 526063. 1820.29 4.45 0.244725 0.210682 21886 126133 -1 2157 15 910 2276 110051 26492 6.70864 6.70864 -147.772 -6.70864 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0242961 0.0214833 139 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 7.06 vpr 62.82 MiB 0.05 6644 -1 -1 13 0.28 -1 -1 32960 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1431 10031 2391 6840 800 62.8 MiB 0.11 0.00 6.2813 -129.016 -6.2813 6.2813 0.70 0.000957949 0.000887866 0.0486998 0.0451411 32 4362 46 6.55708e+06 373705 554710. 1919.41 3.58 0.346832 0.29933 22174 131602 -1 3586 32 2503 8453 728700 205717 6.91184 6.91184 -153.803 -6.91184 0 0 701300. 2426.64 0.19 0.21 0.12 -1 -1 0.19 0.0563952 0.0488463 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 8.08 vpr 62.64 MiB 0.04 6864 -1 -1 13 0.28 -1 -1 33440 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.44 1583 7523 1609 5516 398 62.6 MiB 0.09 0.00 6.4779 -134.545 -6.4779 6.4779 0.77 0.00101183 0.000931201 0.0378486 0.0351149 44 3569 30 6.55708e+06 409870 742403. 2568.87 4.29 0.38764 0.33549 24478 177802 -1 3054 15 1254 4269 223362 50747 6.7595 6.7595 -149.033 -6.7595 0 0 937218. 3242.97 0.24 0.09 0.16 -1 -1 0.24 0.0320504 0.0283827 207 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 5.23 vpr 61.50 MiB 0.04 6392 -1 -1 9 0.09 -1 -1 32332 -1 -1 21 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62976 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 22.8 MiB 0.27 680 10726 2923 7065 738 61.5 MiB 0.08 0.00 3.89854 -76.9721 -3.89854 3.89854 0.73 0.000504402 0.000469632 0.0335502 0.0312056 28 1866 22 6.55708e+06 253155 500653. 1732.36 2.38 0.137964 0.119857 21310 115450 -1 1696 17 622 1683 116377 26211 4.18074 4.18074 -92.7624 -4.18074 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0166113 0.0145382 83 66 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.52 vpr 62.77 MiB 0.05 6636 -1 -1 13 0.30 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1524 4780 758 3645 377 62.8 MiB 0.06 0.00 6.4407 -127.972 -6.4407 6.4407 0.68 0.000958831 0.000888706 0.0249722 0.0231298 32 4184 33 6.55708e+06 361650 554710. 1919.41 3.39 0.327765 0.282208 22174 131602 -1 3738 19 1518 4236 303265 67294 7.2429 7.2429 -155.406 -7.2429 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0376579 0.033093 211 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.15 vpr 61.39 MiB 0.04 6256 -1 -1 8 0.09 -1 -1 31256 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62864 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.8 MiB 0.22 441 6206 1431 3752 1023 61.4 MiB 0.05 0.00 3.84606 -73.0632 -3.84606 3.84606 0.68 0.000509691 0.000474286 0.0197655 0.0183874 34 1336 28 6.55708e+06 204935 585099. 2024.56 1.37 0.119956 0.103615 22462 138074 -1 1125 19 624 1293 70778 20400 4.116 4.116 -90.098 -4.116 0 0 742403. 2568.87 0.20 0.05 0.13 -1 -1 0.20 0.0190792 0.016645 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 5.12 vpr 62.32 MiB 0.05 6676 -1 -1 15 0.23 -1 -1 33296 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.22 1150 9989 2700 5290 1999 62.3 MiB 0.10 0.00 7.16816 -137.524 -7.16816 7.16816 0.67 0.00083137 0.000771388 0.0451831 0.0419399 36 2946 20 6.55708e+06 301375 612192. 2118.31 2.00 0.217898 0.190625 22750 144809 -1 2301 18 1077 3439 168907 40054 7.72735 7.72735 -157.187 -7.72735 0 0 782063. 2706.10 0.20 0.08 0.10 -1 -1 0.20 0.0314394 0.0275603 161 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 6.27 vpr 62.83 MiB 0.04 6604 -1 -1 12 0.25 -1 -1 32996 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1614 12839 3319 7842 1678 62.8 MiB 0.13 0.00 6.01898 -135.231 -6.01898 6.01898 0.63 0.000973107 0.000901048 0.0617097 0.0571207 36 4134 25 6.55708e+06 373705 612192. 2118.31 3.14 0.269343 0.235837 22750 144809 -1 3360 15 1275 4026 230641 51425 6.61998 6.61998 -156.386 -6.61998 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0328837 0.0290943 218 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.69 vpr 62.70 MiB 0.05 6876 -1 -1 13 0.27 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1369 7337 1601 5319 417 62.7 MiB 0.08 0.00 6.0017 -129.994 -6.0017 6.0017 0.74 0.000922432 0.000854713 0.036428 0.0337848 30 3814 41 6.55708e+06 337540 526063. 1820.29 7.36 0.306872 0.265122 21886 126133 -1 2930 17 1441 4310 211301 50026 6.3623 6.3623 -148.098 -6.3623 0 0 666494. 2306.21 0.18 0.09 0.12 -1 -1 0.18 0.0335868 0.0295106 196 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.73 vpr 62.13 MiB 0.04 6520 -1 -1 12 0.17 -1 -1 32636 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63620 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1153 6512 1507 4771 234 62.1 MiB 0.07 0.00 5.68792 -124.55 -5.68792 5.68792 0.68 0.000751245 0.000695598 0.0286223 0.0264734 28 3185 35 6.55708e+06 265210 500653. 1732.36 1.82 0.137424 0.119895 21310 115450 -1 2579 17 1015 2791 164274 37905 5.83566 5.83566 -144.267 -5.83566 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0274711 0.0242131 146 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.18 vpr 62.13 MiB 0.02 6612 -1 -1 11 0.17 -1 -1 32848 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63620 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.6 MiB 0.18 1036 12733 3325 7717 1691 62.1 MiB 0.11 0.00 5.08892 -111.207 -5.08892 5.08892 0.68 0.000684252 0.000634652 0.049495 0.0458637 28 2749 20 6.55708e+06 277265 500653. 1732.36 2.37 0.212929 0.185401 21310 115450 -1 2399 14 884 2433 146856 33448 5.32932 5.32932 -129.075 -5.32932 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.022146 0.0195995 128 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 5.20 vpr 62.21 MiB 0.06 6700 -1 -1 11 0.16 -1 -1 32668 -1 -1 27 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63704 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1054 6615 1537 4510 568 62.2 MiB 0.07 0.00 5.43786 -108.333 -5.43786 5.43786 0.68 0.000720769 0.00066782 0.0275946 0.0255873 28 3276 40 6.55708e+06 325485 500653. 1732.36 2.25 0.139134 0.12135 21310 115450 -1 2680 22 1173 3331 275376 78565 5.62118 5.62118 -127.659 -5.62118 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0315101 0.0275943 142 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 4.90 vpr 62.43 MiB 0.04 6472 -1 -1 12 0.20 -1 -1 32800 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1295 5888 1128 4476 284 62.4 MiB 0.07 0.00 5.86924 -134.818 -5.86924 5.86924 0.68 0.000853934 0.000793263 0.0276916 0.0256308 28 3835 49 6.55708e+06 337540 500653. 1732.36 1.93 0.167373 0.145159 21310 115450 -1 2975 21 1512 4234 257427 58873 6.23444 6.23444 -155.948 -6.23444 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0364956 0.0320307 180 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.03 vpr 62.15 MiB 0.05 6652 -1 -1 11 0.17 -1 -1 32880 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.25 1038 5756 1149 4354 253 62.1 MiB 0.06 0.00 5.55546 -115.085 -5.55546 5.55546 0.67 0.00076199 0.000707168 0.0261047 0.0242143 28 2667 20 6.55708e+06 277265 500653. 1732.36 1.09 0.116636 0.101924 21310 115450 -1 2398 16 1201 3336 181613 44197 5.71746 5.71746 -137.111 -5.71746 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264914 0.0233444 147 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.52 vpr 62.07 MiB 0.04 6536 -1 -1 10 0.14 -1 -1 32872 -1 -1 24 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63564 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.21 922 12919 4233 6349 2337 62.1 MiB 0.11 0.00 4.93152 -102.351 -4.93152 4.93152 0.70 0.000730337 0.000675976 0.0528357 0.0488626 26 2890 46 6.55708e+06 289320 477104. 1650.88 4.57 0.264706 0.229598 21022 109990 -1 2170 16 899 2544 144010 34113 5.29212 5.29212 -118.73 -5.29212 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0251303 0.0220924 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.78 vpr 63.02 MiB 0.05 6848 -1 -1 13 0.32 -1 -1 33352 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1600 7867 1616 5265 986 63.0 MiB 0.09 0.00 6.2003 -127.213 -6.2003 6.2003 0.68 0.00103715 0.000958814 0.0409096 0.0378489 34 4281 40 6.55708e+06 397815 585099. 2024.56 2.42 0.229696 0.199943 22462 138074 -1 3549 19 1542 5149 330251 72673 6.63164 6.63164 -149.36 -6.63164 0 0 742403. 2568.87 0.20 0.12 0.12 -1 -1 0.20 0.0415878 0.0365622 239 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.13 vpr 63.02 MiB 0.04 6832 -1 -1 13 0.31 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.3 MiB 0.37 1457 11643 3194 6725 1724 63.0 MiB 0.12 0.00 6.4387 -138.634 -6.4387 6.4387 0.68 0.000963303 0.000892458 0.0575033 0.0530944 38 3883 20 6.55708e+06 349595 638502. 2209.35 2.66 0.254097 0.221781 23326 155178 -1 3093 19 1433 4635 236654 53348 6.75044 6.75044 -155.892 -6.75044 0 0 851065. 2944.86 0.24 0.10 0.14 -1 -1 0.24 0.0369995 0.0325632 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 4.89 vpr 62.03 MiB 0.04 6568 -1 -1 12 0.15 -1 -1 32968 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63516 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1172 12763 3429 7032 2302 62.0 MiB 0.11 0.00 5.38078 -117.485 -5.38078 5.38078 0.68 0.000754155 0.000699621 0.0511057 0.0473578 34 3077 42 6.55708e+06 301375 585099. 2024.56 1.83 0.185278 0.161967 22462 138074 -1 2519 18 1072 2896 172456 39827 5.70218 5.70218 -135.803 -5.70218 0 0 742403. 2568.87 0.20 0.07 0.13 -1 -1 0.20 0.0278881 0.0245238 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.04 vpr 62.88 MiB 0.04 6708 -1 -1 12 0.25 -1 -1 33408 -1 -1 34 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1498 13639 3602 7690 2347 62.9 MiB 0.14 0.00 6.7157 -136.315 -6.7157 6.7157 0.68 0.000979538 0.000908294 0.0644393 0.0596064 30 3957 36 6.55708e+06 409870 526063. 1820.29 1.92 0.207466 0.182564 21886 126133 -1 3099 16 1419 4248 204649 48541 6.9561 6.9561 -154.551 -6.9561 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0342611 0.0302885 219 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 4.89 vpr 62.72 MiB 0.05 6760 -1 -1 14 0.34 -1 -1 33224 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1377 5191 959 3975 257 62.7 MiB 0.06 0.00 6.5543 -130.969 -6.5543 6.5543 0.67 0.000948641 0.000881004 0.0278652 0.025837 34 3590 43 6.55708e+06 337540 585099. 2024.56 1.71 0.204759 0.177703 22462 138074 -1 3025 20 1512 4617 255895 59186 7.1161 7.1161 -152.506 -7.1161 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0386902 0.033967 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 9.99 vpr 62.62 MiB 0.05 6864 -1 -1 13 0.26 -1 -1 33176 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1398 6007 1206 4131 670 62.6 MiB 0.07 0.00 6.38724 -133.891 -6.38724 6.38724 0.70 0.000887999 0.000819583 0.02936 0.0271934 28 4005 35 6.55708e+06 337540 500653. 1732.36 6.89 0.305697 0.263292 21310 115450 -1 3439 20 1796 4767 294090 66621 6.97658 6.97658 -159.754 -6.97658 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0360193 0.0315469 181 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.85 vpr 62.42 MiB 0.05 6728 -1 -1 12 0.24 -1 -1 33120 -1 -1 30 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.49 1442 6603 1399 4594 610 62.4 MiB 0.08 0.00 5.74138 -121.999 -5.74138 5.74138 0.71 0.000921719 0.000850067 0.0330554 0.0305528 36 3470 24 6.55708e+06 361650 612192. 2118.31 3.41 0.290087 0.249524 22750 144809 -1 3045 17 1202 4003 213679 48112 5.98178 5.98178 -138.79 -5.98178 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0329905 0.029054 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 5.12 vpr 62.39 MiB 0.05 6748 -1 -1 12 0.19 -1 -1 33096 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.8 MiB 0.25 1295 9448 2427 5651 1370 62.4 MiB 0.09 0.00 5.95224 -122.374 -5.95224 5.95224 0.68 0.000827459 0.000767223 0.0433027 0.0401635 28 3728 42 6.55708e+06 289320 500653. 1732.36 2.07 0.172727 0.151024 21310 115450 -1 3055 20 1381 4072 249613 56010 6.39384 6.39384 -146.183 -6.39384 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0380324 0.0335039 172 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.43 vpr 62.79 MiB 0.05 6872 -1 -1 14 0.45 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1760 11348 2999 7324 1025 62.8 MiB 0.13 0.00 6.7209 -144.486 -6.7209 6.7209 0.68 0.000855035 0.000775914 0.0582538 0.0536136 44 4040 27 6.55708e+06 409870 742403. 2568.87 3.79 0.373349 0.322964 24478 177802 -1 3460 16 1498 5319 267752 60312 6.8411 6.8411 -156.346 -6.8411 0 0 937218. 3242.97 0.24 0.10 0.16 -1 -1 0.24 0.0377154 0.0333668 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.57 vpr 62.23 MiB 0.04 6624 -1 -1 11 0.23 -1 -1 32596 -1 -1 26 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1226 12167 3233 7670 1264 62.2 MiB 0.11 0.00 5.58198 -116.131 -5.58198 5.58198 0.68 0.000809845 0.000747654 0.0528749 0.0488956 36 2950 18 6.55708e+06 313430 612192. 2118.31 1.44 0.171151 0.150384 22750 144809 -1 2514 15 1092 3113 166332 38339 5.77092 5.77092 -130.472 -5.77092 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0275444 0.0243033 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.68 vpr 62.77 MiB 0.05 6776 -1 -1 13 0.30 -1 -1 32972 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.36 1313 8934 2207 5709 1018 62.8 MiB 0.12 0.00 6.33076 -127.182 -6.33076 6.33076 0.80 0.000887304 0.000822153 0.0537037 0.04973 40 2854 21 6.55708e+06 325485 666494. 2306.21 3.12 0.301374 0.26042 23614 160646 -1 2797 17 1260 4091 217885 50157 6.62058 6.62058 -145.253 -6.62058 0 0 872365. 3018.56 0.22 0.09 0.16 -1 -1 0.22 0.0324163 0.0285027 177 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 12.05 vpr 62.88 MiB 0.05 6708 -1 -1 12 0.26 -1 -1 33204 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1583 9323 2187 6162 974 62.9 MiB 0.10 0.00 6.05818 -133.31 -6.05818 6.05818 0.70 0.00099519 0.000921124 0.0455319 0.0421364 30 4024 31 6.55708e+06 409870 526063. 1820.29 8.67 0.301587 0.260982 21886 126133 -1 3289 30 1383 5075 523173 224622 6.41878 6.41878 -149.707 -6.41878 0 0 666494. 2306.21 0.18 0.19 0.11 -1 -1 0.18 0.0558345 0.0486108 227 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.52 vpr 62.69 MiB 0.05 6692 -1 -1 13 0.24 -1 -1 32908 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1331 10442 2617 6656 1169 62.7 MiB 0.11 0.00 6.26964 -131.303 -6.26964 6.26964 0.72 0.000885673 0.000819407 0.048539 0.0448515 28 3808 32 6.55708e+06 337540 500653. 1732.36 2.42 0.179935 0.158149 21310 115450 -1 3107 18 1383 3870 221965 52397 6.77998 6.77998 -155.214 -6.77998 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0337689 0.0296773 184 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 4.48 vpr 62.48 MiB 0.05 6740 -1 -1 13 0.22 -1 -1 33036 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1292 9593 2136 5944 1513 62.5 MiB 0.10 0.00 6.22984 -132.494 -6.22984 6.22984 0.68 0.000866585 0.000803188 0.045344 0.0420739 30 3031 22 6.55708e+06 301375 526063. 1820.29 1.33 0.158528 0.140133 21886 126133 -1 2666 16 1112 3256 163091 37758 6.6027 6.6027 -153.047 -6.6027 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0302087 0.0266268 175 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 5.31 vpr 62.82 MiB 0.05 6736 -1 -1 12 0.26 -1 -1 33056 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.1 MiB 0.66 1500 8951 2009 6311 631 62.8 MiB 0.11 0.00 5.77858 -125.487 -5.77858 5.77858 0.68 0.000961683 0.000889856 0.0525449 0.0485306 30 3653 31 6.55708e+06 373705 526063. 1820.29 1.66 0.190063 0.167087 21886 126133 -1 3037 21 1247 4565 222235 50506 6.02098 6.02098 -142.44 -6.02098 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.0417956 0.0366688 205 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 5.63 vpr 62.90 MiB 0.05 6640 -1 -1 13 0.27 -1 -1 32956 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.32 1477 11853 3106 7365 1382 62.9 MiB 0.12 0.00 6.0801 -127.286 -6.0801 6.0801 0.68 0.00096359 0.000890761 0.0580996 0.0537454 30 3872 42 6.55708e+06 349595 526063. 1820.29 2.33 0.210429 0.185132 21886 126133 -1 3162 20 1552 4706 227417 52926 6.6393 6.6393 -148.482 -6.6393 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0393694 0.0345924 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 10.57 vpr 62.46 MiB 0.04 6804 -1 -1 14 0.27 -1 -1 33076 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 23.8 MiB 0.37 1172 9989 2644 5964 1381 62.5 MiB 0.10 0.00 6.5961 -134.271 -6.5961 6.5961 0.68 0.000859275 0.0007976 0.0466497 0.043245 28 3421 37 6.55708e+06 301375 500653. 1732.36 7.31 0.282445 0.246043 21310 115450 -1 2864 18 1351 4182 262559 60568 6.8803 6.8803 -157.918 -6.8803 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0325652 0.028598 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.06 vpr 62.61 MiB 0.05 6840 -1 -1 13 0.27 -1 -1 32932 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1485 8614 1939 6164 511 62.6 MiB 0.09 0.00 7.09116 -142.125 -7.09116 7.09116 0.68 0.000929458 0.000861167 0.0414461 0.0383879 30 3797 25 6.55708e+06 361650 526063. 1820.29 1.68 0.15884 0.139124 21886 126133 -1 3075 18 1380 3992 195034 45816 7.49096 7.49096 -161.2 -7.49096 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0349383 0.0308207 199 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 10.78 vpr 62.77 MiB 0.04 6756 -1 -1 13 0.28 -1 -1 33384 -1 -1 32 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1516 10895 2711 6792 1392 62.8 MiB 0.12 0.00 6.84616 -142.487 -6.84616 6.84616 0.68 0.000995226 0.000917721 0.0538509 0.0497686 32 4308 38 6.55708e+06 385760 554710. 1919.41 7.41 0.39949 0.346226 22174 131602 -1 3608 21 1551 4810 312889 71243 7.44716 7.44716 -167.019 -7.44716 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0421119 0.036896 221 218 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 8.65 vpr 62.95 MiB 0.04 6776 -1 -1 12 0.30 -1 -1 33032 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1580 9951 2182 6412 1357 62.9 MiB 0.11 0.00 6.18804 -132.867 -6.18804 6.18804 0.68 0.00101236 0.000938677 0.0499697 0.0463003 34 4374 42 6.55708e+06 385760 585099. 2024.56 5.24 0.369947 0.320154 22462 138074 -1 3526 21 1781 5829 350971 77862 6.55324 6.55324 -155.313 -6.55324 0 0 742403. 2568.87 0.20 0.12 0.12 -1 -1 0.20 0.0424456 0.0372252 231 229 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.79 vpr 62.12 MiB 0.05 6488 -1 -1 11 0.13 -1 -1 32560 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 956 8183 1868 5372 943 62.1 MiB 0.08 0.00 5.04006 -110.276 -5.04006 5.04006 0.68 0.000681971 0.000632886 0.0335689 0.0311376 30 2499 19 6.55708e+06 229045 526063. 1820.29 0.97 0.113089 0.0992702 21886 126133 -1 2036 17 892 2401 116115 28475 5.16026 5.16026 -126.201 -5.16026 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0247676 0.0217924 127 121 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.76 vpr 62.27 MiB 0.04 6648 -1 -1 13 0.19 -1 -1 32996 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.7 MiB 0.44 1291 4579 795 3577 207 62.3 MiB 0.05 0.00 6.22584 -136.991 -6.22584 6.22584 0.68 0.000812289 0.000743989 0.0218024 0.0201956 28 3647 33 6.55708e+06 325485 500653. 1732.36 1.56 0.133684 0.116166 21310 115450 -1 3046 24 1515 4424 358458 100116 7.03004 7.03004 -165.822 -7.03004 0 0 612192. 2118.31 0.17 0.15 0.10 -1 -1 0.17 0.0462495 0.0411441 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 5.74 vpr 63.02 MiB 0.05 6988 -1 -1 14 0.43 -1 -1 33056 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.8 MiB 0.36 1820 8916 1912 6150 854 63.0 MiB 0.10 0.00 7.24596 -154.69 -7.24596 7.24596 0.68 0.00112952 0.00104242 0.0479469 0.0443334 30 4704 33 6.55708e+06 433980 526063. 1820.29 2.25 0.209272 0.183489 21886 126133 -1 3794 18 1814 5499 275923 62786 7.60916 7.60916 -172.272 -7.60916 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0434736 0.0387876 267 266 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.00 vpr 63.23 MiB 0.05 6636 -1 -1 13 0.32 -1 -1 33100 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.5 MiB 0.45 1481 8519 1873 6026 620 63.2 MiB 0.10 0.00 6.26904 -138.988 -6.26904 6.26904 0.70 0.00102846 0.000941064 0.0453378 0.0417696 28 4175 23 6.55708e+06 373705 500653. 1732.36 3.46 0.319068 0.275728 21310 115450 -1 3486 19 1850 5385 312304 71178 6.8013 6.8013 -162.297 -6.8013 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0409084 0.0359473 224 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 7.34 vpr 62.11 MiB 0.04 6636 -1 -1 11 0.16 -1 -1 32884 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63596 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.19 1060 10315 2490 5888 1937 62.1 MiB 0.09 0.00 5.54218 -112.466 -5.54218 5.54218 0.68 0.000717813 0.000665291 0.0425246 0.0394343 30 2630 26 6.55708e+06 277265 526063. 1820.29 4.45 0.226263 0.19653 21886 126133 -1 2113 16 835 2567 127105 29453 5.86358 5.86358 -127.646 -5.86358 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0253298 0.0223787 137 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 8.07 vpr 63.41 MiB 0.05 6996 -1 -1 15 0.47 -1 -1 33208 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.8 MiB 0.33 1721 4981 814 3655 512 63.4 MiB 0.07 0.00 7.32495 -150.565 -7.32495 7.32495 0.68 0.00108118 0.0010008 0.0285978 0.0265054 36 4710 36 6.55708e+06 397815 612192. 2118.31 4.48 0.362218 0.312373 22750 144809 -1 3850 19 1907 6223 350020 78530 7.67589 7.67589 -172.618 -7.67589 0 0 782063. 2706.10 0.25 0.13 0.13 -1 -1 0.25 0.0433872 0.0382143 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.91 vpr 63.09 MiB 0.05 6800 -1 -1 13 0.31 -1 -1 33604 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1544 13533 3609 7429 2495 63.1 MiB 0.14 0.00 6.6811 -133.732 -6.6811 6.6811 0.68 0.000970513 0.000898206 0.0666733 0.0616509 44 3419 26 6.55708e+06 349595 742403. 2568.87 3.49 0.336991 0.292579 24478 177802 -1 3021 15 1238 3639 190917 42985 7.2821 7.2821 -155.164 -7.2821 0 0 937218. 3242.97 0.25 0.08 0.16 -1 -1 0.25 0.0328591 0.0290831 207 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.96 vpr 62.09 MiB 0.02 6664 -1 -1 11 0.14 -1 -1 32808 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1224 7888 1831 5054 1003 62.1 MiB 0.08 0.00 5.37818 -114.048 -5.37818 5.37818 0.68 0.000735641 0.000673569 0.0329529 0.0304851 28 3199 49 6.55708e+06 289320 500653. 1732.36 2.10 0.153886 0.134139 21310 115450 -1 2676 30 1512 4748 441973 155537 5.73878 5.73878 -133.485 -5.73878 0 0 612192. 2118.31 0.17 0.15 0.11 -1 -1 0.17 0.0404278 0.0350316 149 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 6.23 vpr 62.93 MiB 0.05 6860 -1 -1 12 0.31 -1 -1 33028 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1445 8303 1760 5821 722 62.9 MiB 0.09 0.00 5.91244 -124.224 -5.91244 5.91244 0.68 0.000970602 0.000897649 0.0408093 0.0377679 36 3578 28 6.55708e+06 373705 612192. 2118.31 2.95 0.251627 0.218469 22750 144809 -1 3044 18 1651 5308 297747 66503 6.39124 6.39124 -142.674 -6.39124 0 0 782063. 2706.10 0.20 0.11 0.13 -1 -1 0.20 0.037203 0.0326861 217 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.90 vpr 62.41 MiB 0.04 6484 -1 -1 12 0.22 -1 -1 32580 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1134 5919 1133 4668 118 62.4 MiB 0.07 0.00 6.0409 -121.631 -6.0409 6.0409 0.68 0.000835508 0.000775484 0.0277581 0.0257414 32 3614 46 6.55708e+06 313430 554710. 1919.41 1.86 0.189496 0.163427 22174 131602 -1 2946 18 1326 3458 231393 55476 6.35004 6.35004 -146.412 -6.35004 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311284 0.0273224 164 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 4.74 vpr 62.06 MiB 0.02 6608 -1 -1 12 0.16 -1 -1 33060 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63552 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.20 1029 7463 1773 5054 636 62.1 MiB 0.07 0.00 5.78824 -121.367 -5.78824 5.78824 0.68 0.000742971 0.000685664 0.0342954 0.031696 26 2924 25 6.55708e+06 253155 477104. 1650.88 1.90 0.130596 0.114416 21022 109990 -1 2432 17 1014 2935 178570 40599 6.26904 6.26904 -140.137 -6.26904 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0269332 0.0236947 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 7.16 vpr 62.92 MiB 0.05 6772 -1 -1 12 0.29 -1 -1 32952 -1 -1 32 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1336 16893 4738 9260 2895 62.9 MiB 0.18 0.00 5.81778 -111.525 -5.81778 5.81778 0.74 0.00103933 0.000937185 0.0895362 0.0825379 36 3310 29 6.55708e+06 385760 612192. 2118.31 3.66 0.364314 0.316795 22750 144809 -1 2781 15 1240 3845 188630 44329 6.23384 6.23384 -127.973 -6.23384 0 0 782063. 2706.10 0.23 0.08 0.13 -1 -1 0.23 0.031917 0.0282376 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 12.31 vpr 62.99 MiB 0.04 6788 -1 -1 14 0.35 -1 -1 33088 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.4 MiB 0.49 1551 9732 2255 6890 587 63.0 MiB 0.11 0.00 6.7581 -140.801 -6.7581 6.7581 0.71 0.00101333 0.00093827 0.0492324 0.0455078 28 4902 39 6.55708e+06 385760 500653. 1732.36 8.59 0.323844 0.280208 21310 115450 -1 3951 22 2387 6830 419296 95721 7.33356 7.33356 -167.558 -7.33356 0 0 612192. 2118.31 0.17 0.14 0.10 -1 -1 0.17 0.044721 0.0390586 227 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.76 vpr 62.70 MiB 0.05 6876 -1 -1 12 0.23 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1425 15187 4302 8195 2690 62.7 MiB 0.16 0.00 6.02864 -130.772 -6.02864 6.02864 0.74 0.000931814 0.000864282 0.0752818 0.0696102 30 3442 27 6.55708e+06 325485 526063. 1820.29 1.33 0.194685 0.172027 21886 126133 -1 2942 19 1302 3827 189543 43542 6.30318 6.30318 -151.772 -6.30318 0 0 666494. 2306.21 0.18 0.09 0.12 -1 -1 0.18 0.0365361 0.0321384 192 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.70 vpr 62.08 MiB 0.04 6620 -1 -1 12 0.14 -1 -1 32952 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63568 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1126 8727 1952 5643 1132 62.1 MiB 0.07 0.00 5.73938 -123.055 -5.73938 5.73938 0.68 0.000544444 0.000498342 0.0274287 0.0252068 34 2511 39 6.55708e+06 277265 585099. 2024.56 1.61 0.148635 0.129001 22462 138074 -1 2259 15 805 2434 132716 30756 6.09998 6.09998 -136.662 -6.09998 0 0 742403. 2568.87 0.20 0.06 0.12 -1 -1 0.20 0.0231074 0.0204036 133 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 4.86 vpr 62.48 MiB 0.05 6564 -1 -1 12 0.23 -1 -1 32556 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63980 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.8 MiB 0.24 1210 11593 2972 6433 2188 62.5 MiB 0.11 0.00 6.1611 -122.975 -6.1611 6.1611 0.69 0.000830413 0.000770266 0.0517681 0.0479668 28 3580 34 6.55708e+06 301375 500653. 1732.36 1.78 0.171047 0.150264 21310 115450 -1 2873 19 1329 3553 212506 50010 6.42338 6.42338 -142.786 -6.42338 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0326544 0.0286191 170 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.17 vpr 62.69 MiB 0.05 6664 -1 -1 11 0.20 -1 -1 33020 -1 -1 28 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1197 13758 3727 8097 1934 62.7 MiB 0.13 0.00 5.41232 -108.488 -5.41232 5.41232 0.68 0.000876821 0.000813125 0.0637593 0.0588848 34 3574 23 6.55708e+06 337540 585099. 2024.56 2.08 0.22578 0.197526 22462 138074 -1 3067 17 1400 4826 324756 69752 6.09172 6.09172 -135.517 -6.09172 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.031891 0.0279983 189 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 12.69 vpr 62.34 MiB 0.05 6796 -1 -1 11 0.20 -1 -1 32832 -1 -1 28 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63840 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1173 11398 2791 7434 1173 62.3 MiB 0.11 0.00 5.38078 -98.8334 -5.38078 5.38078 0.68 0.000824862 0.000766604 0.0515108 0.0477822 30 3284 47 6.55708e+06 337540 526063. 1820.29 9.54 0.30537 0.265396 21886 126133 -1 2643 17 1181 3814 202539 46052 5.62118 5.62118 -113.92 -5.62118 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0303831 0.0267217 171 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 10.22 vpr 62.20 MiB 0.02 6720 -1 -1 13 0.18 -1 -1 32856 -1 -1 25 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63692 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.7 MiB 0.45 1075 13143 3746 7099 2298 62.2 MiB 0.11 0.00 6.5589 -124.27 -6.5589 6.5589 0.71 0.000719472 0.000666732 0.0520517 0.048239 26 3458 50 6.55708e+06 301375 477104. 1650.88 6.98 0.304187 0.26382 21022 109990 -1 2566 20 1104 2857 182300 42290 6.8803 6.8803 -146.157 -6.8803 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0293717 0.025775 142 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 9.03 vpr 62.63 MiB 0.04 6524 -1 -1 12 0.19 -1 -1 32876 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1277 6007 1257 4285 465 62.6 MiB 0.07 0.00 5.94764 -130.114 -5.94764 5.94764 0.68 0.000865021 0.000801534 0.0286957 0.0266272 28 3263 21 6.55708e+06 325485 500653. 1732.36 5.88 0.228343 0.196916 21310 115450 -1 2867 18 1284 3565 193369 45719 6.26904 6.26904 -149.891 -6.26904 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0377316 0.0333205 180 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 5.66 vpr 62.55 MiB 0.05 6696 -1 -1 13 0.28 -1 -1 33032 -1 -1 30 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1202 11643 3098 6957 1588 62.6 MiB 0.12 0.00 6.6811 -126.413 -6.6811 6.6811 0.68 0.000916109 0.000848946 0.0544125 0.0503137 36 3141 20 6.55708e+06 361650 612192. 2118.31 2.30 0.236078 0.20643 22750 144809 -1 2603 20 1425 4299 210671 51502 6.9633 6.9633 -143.957 -6.9633 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0374843 0.0328352 195 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.06 vpr 62.91 MiB 0.05 6712 -1 -1 14 0.28 -1 -1 33116 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1421 10247 2480 6789 978 62.9 MiB 0.11 0.00 6.62564 -136.156 -6.62564 6.62564 0.68 0.000992897 0.000919345 0.0511006 0.0472804 28 3759 41 6.55708e+06 373705 500653. 1732.36 1.85 0.204945 0.179638 21310 115450 -1 3218 19 1570 5006 290501 65643 7.25618 7.25618 -163.005 -7.25618 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0389759 0.0342684 215 213 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.03 vpr 62.74 MiB 0.04 6844 -1 -1 14 0.26 -1 -1 32944 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.41 1373 8047 1828 5829 390 62.7 MiB 0.10 0.00 6.4367 -125.847 -6.4367 6.4367 0.70 0.000907761 0.000841088 0.0433976 0.0401345 36 3195 16 6.55708e+06 325485 612192. 2118.31 2.66 0.228208 0.198886 22750 144809 -1 2822 18 1188 3887 217790 50341 6.64956 6.64956 -139.878 -6.64956 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0348414 0.0306819 183 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.61 vpr 62.59 MiB 0.05 6724 -1 -1 13 0.34 -1 -1 33432 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1415 13351 3374 8127 1850 62.6 MiB 0.14 0.00 6.48756 -131.843 -6.48756 6.48756 0.68 0.000948919 0.000876402 0.0662153 0.0611926 36 3500 18 6.55708e+06 325485 612192. 2118.31 2.20 0.248783 0.217258 22750 144809 -1 2976 16 1227 3717 210553 48161 7.08856 7.08856 -155.132 -7.08856 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0332239 0.029286 195 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 6.91 vpr 62.13 MiB 0.04 6540 -1 -1 13 0.18 -1 -1 32928 -1 -1 24 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1085 9914 2521 5942 1451 62.1 MiB 0.09 0.00 6.5177 -133.323 -6.5177 6.5177 0.68 0.000743498 0.000689765 0.0421839 0.0390966 28 2969 24 6.55708e+06 289320 500653. 1732.36 3.94 0.23402 0.203061 21310 115450 -1 2446 22 1233 3103 244455 75645 6.76572 6.76572 -150.741 -6.76572 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0328131 0.0286857 146 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.98 vpr 62.75 MiB 0.05 6672 -1 -1 13 0.43 -1 -1 33028 -1 -1 31 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1441 7863 1766 5061 1036 62.7 MiB 0.09 0.00 6.61036 -130.67 -6.61036 6.61036 0.68 0.000966799 0.000893404 0.0400416 0.037059 28 4381 34 6.55708e+06 373705 500653. 1732.36 2.56 0.180837 0.158036 21310 115450 -1 3417 22 1751 5123 297524 69572 7.41456 7.41456 -164.086 -7.41456 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0430502 0.0377287 208 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 7.05 vpr 62.67 MiB 0.05 6736 -1 -1 14 0.28 -1 -1 31768 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1329 10744 2540 7052 1152 62.7 MiB 0.11 0.00 6.25798 -133.908 -6.25798 6.25798 0.69 0.000908867 0.000833683 0.0489128 0.0451779 36 3248 22 6.55708e+06 361650 612192. 2118.31 3.64 0.312727 0.269401 22750 144809 -1 2902 35 2119 7467 672868 286963 6.40512 6.40512 -149.78 -6.40512 0 0 782063. 2706.10 0.20 0.22 0.13 -1 -1 0.20 0.0568034 0.0491812 184 181 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.56 vpr 62.82 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 33172 -1 -1 32 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1414 5279 910 4135 234 62.8 MiB 0.06 0.00 6.8777 -136.484 -6.8777 6.8777 0.69 0.000932273 0.000864182 0.0265202 0.0245776 38 3251 20 6.55708e+06 385760 638502. 2209.35 3.33 0.264323 0.227588 23326 155178 -1 2685 30 1219 3746 459215 234194 7.1971 7.1971 -150.952 -7.1971 0 0 851065. 2944.86 0.21 0.17 0.13 -1 -1 0.21 0.0521044 0.0453639 203 200 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 6.31 vpr 62.61 MiB 0.05 6692 -1 -1 13 0.24 -1 -1 33040 -1 -1 28 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64116 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1289 6723 1311 4981 431 62.6 MiB 0.08 0.00 6.2421 -114.622 -6.2421 6.2421 0.71 0.000891189 0.000828101 0.0331715 0.0307908 36 3196 23 6.55708e+06 337540 612192. 2118.31 3.18 0.259381 0.223335 22750 144809 -1 2709 15 1243 3668 190810 44563 6.63224 6.63224 -130.65 -6.63224 0 0 782063. 2706.10 0.20 0.08 0.13 -1 -1 0.20 0.0289448 0.0255187 186 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 10.28 vpr 63.13 MiB 0.05 6628 -1 -1 14 0.37 -1 -1 33052 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1501 7761 1798 5436 527 63.1 MiB 0.09 0.00 7.17982 -144.412 -7.17982 7.17982 0.71 0.00100044 0.000926688 0.0401587 0.0371827 30 3916 33 6.55708e+06 385760 526063. 1820.29 6.77 0.339778 0.293552 21886 126133 -1 3147 17 1390 4186 193149 45818 7.40796 7.40796 -161.319 -7.40796 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0363165 0.0320467 220 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 9.94 vpr 62.44 MiB 0.05 6824 -1 -1 11 0.28 -1 -1 33128 -1 -1 29 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1220 6522 1299 4436 787 62.4 MiB 0.07 0.00 5.51064 -108.632 -5.51064 5.51064 0.68 0.000853861 0.000792073 0.0311069 0.0288243 26 3727 39 6.55708e+06 349595 477104. 1650.88 6.68 0.295383 0.254745 21022 109990 -1 3173 26 1543 5108 629027 228251 6.11164 6.11164 -136.029 -6.11164 0 0 585099. 2024.56 0.16 0.19 0.10 -1 -1 0.16 0.043045 0.0374461 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.86 vpr 62.14 MiB 0.04 6568 -1 -1 13 0.16 -1 -1 32780 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63628 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1104 8919 1998 5788 1133 62.1 MiB 0.08 0.00 6.1983 -135.763 -6.1983 6.1983 0.68 0.000727566 0.000674278 0.0365834 0.0339027 26 3063 33 6.55708e+06 277265 477104. 1650.88 1.87 0.140323 0.123012 21022 109990 -1 2563 19 1152 2801 160474 37845 6.7601 6.7601 -160.096 -6.7601 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0306213 0.0269167 142 130 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.42 vpr 62.49 MiB 0.05 6836 -1 -1 14 0.23 -1 -1 33136 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1343 8455 1791 5776 888 62.5 MiB 0.09 0.00 6.57116 -134.157 -6.57116 6.57116 0.69 0.000882401 0.000818415 0.0409158 0.0378515 28 3637 25 6.55708e+06 325485 500653. 1732.36 1.33 0.155341 0.13629 21310 115450 -1 3084 19 1313 3712 209557 48819 6.9221 6.9221 -155.348 -6.9221 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0350797 0.0308497 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 4.64 vpr 62.91 MiB 0.04 6680 -1 -1 15 0.37 -1 -1 33364 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.4 MiB 0.52 1596 8199 1748 5624 827 62.9 MiB 0.10 0.00 7.85521 -161.425 -7.85521 7.85521 0.68 0.00102634 0.000949979 0.043001 0.0398175 30 3759 17 6.55708e+06 385760 526063. 1820.29 1.12 0.160664 0.141282 21886 126133 -1 3300 16 1528 4399 196620 47569 8.05641 8.05641 -181.526 -8.05641 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0358883 0.0317487 228 227 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.37 vpr 62.11 MiB 0.04 6544 -1 -1 11 0.16 -1 -1 32756 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.7 MiB 0.57 924 8402 1871 6371 160 62.1 MiB 0.08 0.00 5.35124 -108.779 -5.35124 5.35124 0.68 0.000692879 0.000642471 0.033481 0.0309743 32 2888 46 6.55708e+06 265210 554710. 1919.41 1.17 0.143522 0.125047 22174 131602 -1 2200 16 954 2795 180862 43276 5.91304 5.91304 -130.799 -5.91304 0 0 701300. 2426.64 0.18 0.07 0.12 -1 -1 0.18 0.0241256 0.0212634 126 123 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 7.63 vpr 62.36 MiB 0.05 6448 -1 -1 12 0.25 -1 -1 32896 -1 -1 26 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1250 8207 1908 5219 1080 62.4 MiB 0.08 0.00 6.07044 -129.079 -6.07044 6.07044 0.68 0.000795146 0.000737616 0.0360282 0.0333948 28 3354 34 6.55708e+06 313430 500653. 1732.36 4.50 0.29592 0.255069 21310 115450 -1 2883 21 1218 3478 209103 48033 6.22984 6.22984 -148.184 -6.22984 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335502 0.0293879 157 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.80 vpr 62.99 MiB 0.05 6652 -1 -1 12 0.31 -1 -1 33144 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1495 8951 2218 5801 932 63.0 MiB 0.10 0.00 6.1611 -137.527 -6.1611 6.1611 0.71 0.000976926 0.000904642 0.0447487 0.0414375 28 4437 41 6.55708e+06 373705 500653. 1732.36 2.41 0.194773 0.170067 21310 115450 -1 3403 20 1619 4751 298970 78893 6.3623 6.3623 -159.106 -6.3623 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0401978 0.035231 209 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 6.65 vpr 62.73 MiB 0.05 6712 -1 -1 12 0.24 -1 -1 33016 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.44 1496 10649 2728 6324 1597 62.7 MiB 0.12 0.00 6.38924 -134.971 -6.38924 6.38924 0.75 0.000858616 0.000782036 0.0499731 0.046229 28 4541 31 6.55708e+06 337540 500653. 1732.36 3.23 0.175949 0.154656 21310 115450 -1 3678 19 1758 5382 367166 80138 6.50944 6.50944 -159.382 -6.50944 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0352731 0.0309263 186 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.38 vpr 63.08 MiB 0.05 6956 -1 -1 14 0.44 -1 -1 33540 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1647 12411 3008 7932 1471 63.1 MiB 0.13 0.00 7.32696 -151.807 -7.32696 7.32696 0.68 0.00108166 0.00100125 0.0625606 0.0577881 44 3731 19 6.55708e+06 421925 742403. 2568.87 3.82 0.383531 0.332726 24478 177802 -1 3195 18 1404 4512 216872 49814 7.52815 7.52815 -164.596 -7.52815 0 0 937218. 3242.97 0.25 0.10 0.16 -1 -1 0.25 0.0410253 0.0362138 241 238 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 7.23 vpr 62.43 MiB 0.05 6764 -1 -1 11 0.24 -1 -1 32696 -1 -1 27 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1294 13553 3631 7670 2252 62.4 MiB 0.13 0.00 5.55184 -108.109 -5.55184 5.55184 0.68 0.00086232 0.000799444 0.0627023 0.0581325 36 3115 20 6.55708e+06 325485 612192. 2118.31 3.81 0.352086 0.305307 22750 144809 -1 2651 19 1235 4074 223588 49491 5.83404 5.83404 -125.432 -5.83404 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0358831 0.0316086 176 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 5.46 vpr 62.35 MiB 0.04 6696 -1 -1 11 0.19 -1 -1 32648 -1 -1 25 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63844 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.9 MiB 0.21 904 7221 1742 4800 679 62.3 MiB 0.07 0.00 5.29918 -99.4913 -5.29918 5.29918 0.68 0.000706704 0.000655167 0.0304537 0.0282111 24 2950 50 6.55708e+06 301375 448715. 1552.65 2.58 0.180122 0.156618 20734 103517 -1 2282 22 1242 3743 308055 101364 5.74338 5.74338 -120.015 -5.74338 0 0 554710. 1919.41 0.15 0.11 0.10 -1 -1 0.15 0.0312506 0.0271825 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 8.07 vpr 63.04 MiB 0.03 6832 -1 -1 13 0.42 -1 -1 33276 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.7 MiB 0.26 1869 9620 2275 6325 1020 63.0 MiB 0.11 0.00 6.54924 -135.588 -6.54924 6.54924 0.68 0.00117649 0.00108611 0.0514307 0.0474496 36 5056 26 6.55708e+06 482200 612192. 2118.31 4.61 0.412866 0.357486 22750 144809 -1 4198 18 2019 7032 401648 89679 6.81918 6.81918 -154.214 -6.81918 0 0 782063. 2706.10 0.21 0.13 0.13 -1 -1 0.21 0.0455013 0.0401406 280 278 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 4.76 vpr 62.53 MiB 0.05 6784 -1 -1 14 0.25 -1 -1 33592 -1 -1 26 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1284 9593 2195 6437 961 62.5 MiB 0.10 0.00 6.92456 -139.428 -6.92456 6.92456 0.68 0.000878857 0.000815234 0.0457523 0.0423818 34 3257 22 6.55708e+06 313430 585099. 2024.56 1.57 0.177964 0.155339 22462 138074 -1 2699 19 1180 3309 180715 42945 7.24596 7.24596 -155.981 -7.24596 0 0 742403. 2568.87 0.20 0.09 0.16 -1 -1 0.20 0.0377799 0.0332695 178 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.40 vpr 62.02 MiB 0.03 6556 -1 -1 12 0.16 -1 -1 32720 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.35 1202 13147 3375 7497 2275 62.0 MiB 0.11 0.00 6.01498 -136.633 -6.01498 6.01498 0.70 0.000744847 0.000690052 0.0509177 0.0471562 36 2947 17 6.55708e+06 325485 612192. 2118.31 2.27 0.198864 0.174633 22750 144809 -1 2529 15 998 2810 167559 37217 6.61598 6.61598 -157.605 -6.61598 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0250799 0.0222194 144 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 7.09 vpr 62.51 MiB 0.05 6656 -1 -1 13 0.28 -1 -1 33032 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1271 6227 1298 4334 595 62.5 MiB 0.07 0.00 6.3205 -125.028 -6.3205 6.3205 0.68 0.000872541 0.000806352 0.0307875 0.0285191 38 2793 32 6.55708e+06 301375 638502. 2209.35 3.68 0.341911 0.293714 23326 155178 -1 2454 16 1096 3429 166039 39515 6.7621 6.7621 -142.543 -6.7621 0 0 851065. 2944.86 0.28 0.08 0.14 -1 -1 0.28 0.0304908 0.0268863 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.27 vpr 62.95 MiB 0.05 6828 -1 -1 13 0.30 -1 -1 33640 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1672 9998 2281 7007 710 62.9 MiB 0.11 0.00 6.0781 -130.807 -6.0781 6.0781 0.72 0.00102841 0.000953993 0.0514086 0.0476613 34 4284 31 6.55708e+06 421925 585099. 2024.56 1.85 0.227778 0.198777 22462 138074 -1 3643 18 1633 4760 268341 62199 6.7993 6.7993 -155.129 -6.7993 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0390446 0.0343893 235 232 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.81 vpr 62.69 MiB 0.04 6768 -1 -1 11 0.23 -1 -1 33136 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1393 6484 1238 4828 418 62.7 MiB 0.07 0.00 5.79284 -117.238 -5.79284 5.79284 0.68 0.000923584 0.000847323 0.0315975 0.0292117 36 3410 24 6.55708e+06 385760 612192. 2118.31 2.51 0.218335 0.18882 22750 144809 -1 2895 16 1204 4203 227626 51401 6.15084 6.15084 -135.998 -6.15084 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0323665 0.0285608 199 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.90 vpr 62.74 MiB 0.07 6880 -1 -1 15 0.32 -1 -1 33128 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1440 9543 2254 5965 1324 62.7 MiB 0.11 0.00 7.33722 -153.632 -7.33722 7.33722 0.70 0.000949772 0.000880278 0.0480131 0.0444329 40 3071 16 6.55708e+06 349595 666494. 2306.21 3.39 0.344973 0.297544 23614 160646 -1 2947 32 1365 4343 430742 175600 7.80575 7.80575 -167.801 -7.80575 0 0 872365. 3018.56 0.23 0.17 0.15 -1 -1 0.23 0.0566778 0.0491297 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 11.38 vpr 62.76 MiB 0.05 6848 -1 -1 13 0.31 -1 -1 33244 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1549 11703 2904 7439 1360 62.8 MiB 0.12 0.00 6.3577 -137.811 -6.3577 6.3577 0.71 0.00101481 0.000937723 0.0582802 0.0539507 28 4553 23 6.55708e+06 385760 500653. 1732.36 8.15 0.381481 0.330977 21310 115450 -1 3504 21 2032 6147 367694 80915 6.86804 6.86804 -161.834 -6.86804 0 0 612192. 2118.31 0.17 0.13 0.11 -1 -1 0.17 0.0431217 0.0377811 217 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.86 vpr 62.25 MiB 0.05 6600 -1 -1 12 0.19 -1 -1 32464 -1 -1 29 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63748 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1143 7728 1821 5116 791 62.3 MiB 0.07 0.00 5.65838 -122.207 -5.65838 5.65838 0.68 0.000767847 0.000704561 0.0319493 0.0296045 26 3498 49 6.55708e+06 349595 477104. 1650.88 2.44 0.157555 0.137487 21022 109990 -1 2733 69 2619 7314 954958 464636 6.26138 6.26138 -147.435 -6.26138 0 0 585099. 2024.56 0.16 0.35 0.12 -1 -1 0.16 0.086637 0.0746411 159 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 6.24 vpr 62.19 MiB 0.04 6684 -1 -1 11 0.15 -1 -1 32640 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1049 8213 1798 6131 284 62.2 MiB 0.08 0.00 5.63084 -118.475 -5.63084 5.63084 0.68 0.000759135 0.000701852 0.0357558 0.0331635 38 2445 14 6.55708e+06 265210 638502. 2209.35 3.09 0.208611 0.18161 23326 155178 -1 2207 16 1036 2939 139240 34207 5.87124 5.87124 -137.468 -5.87124 0 0 851065. 2944.86 0.21 0.07 0.14 -1 -1 0.21 0.0251715 0.0222133 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 4.71 vpr 62.96 MiB 0.09 6820 -1 -1 13 0.30 -1 -1 33012 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.2 MiB 0.34 1362 7549 1607 5468 474 63.0 MiB 0.08 0.00 6.78504 -137.898 -6.78504 6.78504 0.68 0.000955455 0.000881529 0.0375106 0.034657 30 3708 26 6.55708e+06 373705 526063. 1820.29 1.37 0.160122 0.139722 21886 126133 -1 2875 20 1384 4509 209431 49817 7.10644 7.10644 -155.134 -7.10644 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389474 0.0341891 204 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 8.63 vpr 62.04 MiB 0.04 6660 -1 -1 10 0.17 -1 -1 33088 -1 -1 24 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63524 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1038 9199 2235 5441 1523 62.0 MiB 0.08 0.00 4.88972 -100.056 -4.88972 4.88972 0.68 0.000709972 0.000655904 0.0377955 0.0349962 28 2691 22 6.55708e+06 289320 500653. 1732.36 5.90 0.232437 0.201626 21310 115450 -1 2347 17 1095 3118 178363 41435 5.49072 5.49072 -119.449 -5.49072 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257358 0.0226165 138 132 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 8.49 vpr 62.44 MiB 0.05 6556 -1 -1 14 0.18 -1 -1 32916 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.9 MiB 0.41 1104 9643 2259 5449 1935 62.4 MiB 0.09 0.00 6.6399 -136.092 -6.6399 6.6399 0.68 0.000762344 0.000706116 0.0408826 0.0378778 30 2676 19 6.55708e+06 289320 526063. 1820.29 5.30 0.247879 0.214764 21886 126133 -1 2304 17 997 2993 137202 32721 6.6399 6.6399 -147.59 -6.6399 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0282324 0.024948 149 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 9.87 vpr 62.76 MiB 0.03 6804 -1 -1 12 0.33 -1 -1 33124 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1340 9821 2515 6151 1155 62.8 MiB 0.10 0.00 6.2787 -130.261 -6.2787 6.2787 0.68 0.000940246 0.000871294 0.0485824 0.0449071 28 3864 45 6.55708e+06 349595 500653. 1732.36 6.61 0.372261 0.321241 21310 115450 -1 3143 18 1356 4389 307439 81863 6.62964 6.62964 -155.088 -6.62964 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.035941 0.0316258 201 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.34 vpr 62.01 MiB 0.05 6540 -1 -1 12 0.15 -1 -1 32528 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63496 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.5 MiB 0.33 1126 6134 1174 4650 310 62.0 MiB 0.06 0.00 5.61918 -122.046 -5.61918 5.61918 0.68 0.000715718 0.0006634 0.0259782 0.0240879 28 3249 37 6.55708e+06 277265 500653. 1732.36 1.35 0.128949 0.112234 21310 115450 -1 2612 15 1041 2708 174540 40522 5.98178 5.98178 -142.224 -5.98178 0 0 612192. 2118.31 0.19 0.06 0.10 -1 -1 0.19 0.0201832 0.0181459 141 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 6.45 vpr 62.74 MiB 0.06 6740 -1 -1 12 0.20 -1 -1 33052 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1363 7843 1797 5442 604 62.7 MiB 0.08 0.00 5.82038 -126.658 -5.82038 5.82038 0.68 0.000891097 0.000825175 0.0385703 0.0356707 32 3726 42 6.55708e+06 325485 554710. 1919.41 3.22 0.299227 0.257744 22174 131602 -1 3105 16 1193 3759 242126 54007 6.59504 6.59504 -154.588 -6.59504 0 0 701300. 2426.64 0.19 0.11 0.13 -1 -1 0.19 0.033868 0.0298577 188 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 4.57 vpr 62.84 MiB 0.05 6860 -1 -1 13 0.29 -1 -1 33212 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1324 6923 1551 4414 958 62.8 MiB 0.08 0.00 6.1591 -129.623 -6.1591 6.1591 0.68 0.000890035 0.00082543 0.0333505 0.0309369 30 3544 20 6.55708e+06 349595 526063. 1820.29 1.31 0.139178 0.121822 21886 126133 -1 2811 15 1280 3738 182934 42700 6.3995 6.3995 -148.199 -6.3995 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0300367 0.0265545 179 176 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 11.05 vpr 62.24 MiB 0.04 6492 -1 -1 11 0.16 -1 -1 32624 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1252 6823 1345 4982 496 62.2 MiB 0.07 0.00 5.59164 -121.723 -5.59164 5.59164 0.74 0.00074689 0.000692928 0.0281235 0.0260908 28 3536 41 6.55708e+06 325485 500653. 1732.36 7.98 0.241654 0.209386 21310 115450 -1 2995 36 1699 5678 520009 174272 5.86558 5.86558 -141.155 -5.86558 0 0 612192. 2118.31 0.17 0.18 0.10 -1 -1 0.17 0.04836 0.0419959 148 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 9.66 vpr 62.34 MiB 0.04 6584 -1 -1 13 0.19 -1 -1 32720 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.7 MiB 0.24 1255 11515 2790 7390 1335 62.3 MiB 0.11 0.00 6.38524 -135.012 -6.38524 6.38524 0.68 0.000840239 0.000778965 0.050608 0.0469597 28 3505 40 6.55708e+06 325485 500653. 1732.36 6.59 0.312009 0.27024 21310 115450 -1 2948 18 1424 3886 241427 56120 6.7993 6.7993 -156.593 -6.7993 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0319033 0.0280021 167 164 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 4.44 vpr 62.64 MiB 0.05 6736 -1 -1 13 0.25 -1 -1 33192 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.1 MiB 0.18 1447 9883 2771 5881 1231 62.6 MiB 0.11 0.00 6.37196 -131.547 -6.37196 6.37196 0.68 0.000950538 0.000885773 0.0516914 0.0480179 30 3669 23 6.55708e+06 325485 526063. 1820.29 1.33 0.157103 0.139545 21886 126133 -1 3160 17 1358 3951 206224 47401 6.97296 6.97296 -153.226 -6.97296 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0328855 0.0290417 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 6.54 vpr 62.44 MiB 0.05 6748 -1 -1 11 0.19 -1 -1 32940 -1 -1 28 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63936 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1158 12167 3308 6389 2470 62.4 MiB 0.11 0.00 5.44952 -104.688 -5.44952 5.44952 0.70 0.000795557 0.000735331 0.0523291 0.0484239 36 2786 16 6.55708e+06 337540 612192. 2118.31 3.38 0.276646 0.23943 22750 144809 -1 2408 14 853 2846 157423 35220 5.72912 5.72912 -120.065 -5.72912 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0258316 0.0228439 162 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.50 vpr 62.93 MiB 0.04 6740 -1 -1 14 0.31 -1 -1 33828 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.3 MiB 0.37 1601 8199 1723 5717 759 62.9 MiB 0.10 0.00 6.98322 -149.58 -6.98322 6.98322 0.68 0.00103248 0.000945237 0.0433567 0.0400169 36 4131 29 6.55708e+06 385760 612192. 2118.31 3.08 0.267412 0.232455 22750 144809 -1 3488 17 1574 4616 257276 58720 7.22362 7.22362 -166.455 -7.22362 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0376347 0.0332045 225 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 10.12 vpr 62.21 MiB 0.03 6632 -1 -1 12 0.16 -1 -1 32716 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63700 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1042 8863 2205 5322 1336 62.2 MiB 0.08 0.00 5.43224 -114.074 -5.43224 5.43224 0.68 0.000735337 0.00068146 0.0347898 0.0322204 28 3533 50 6.55708e+06 337540 500653. 1732.36 6.99 0.247323 0.214053 21310 115450 -1 2699 29 1516 4167 361707 115970 5.63344 5.63344 -137.199 -5.63344 0 0 612192. 2118.31 0.17 0.13 0.10 -1 -1 0.17 0.0398145 0.0346007 145 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 10.81 vpr 62.64 MiB 0.05 6784 -1 -1 13 0.27 -1 -1 33128 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1431 5599 1064 3987 548 62.6 MiB 0.07 0.00 6.50944 -129.672 -6.50944 6.50944 0.67 0.000905483 0.000839745 0.0283075 0.0262569 28 3943 30 6.55708e+06 325485 500653. 1732.36 7.63 0.257014 0.221834 21310 115450 -1 3299 19 1412 4196 267228 58848 6.62964 6.62964 -149.213 -6.62964 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.036054 0.0317226 189 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.70 vpr 62.21 MiB 0.04 6608 -1 -1 13 0.19 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.7 MiB 0.35 1113 12365 3461 6577 2327 62.2 MiB 0.11 0.00 6.30884 -134.257 -6.30884 6.30884 0.68 0.000744944 0.000690054 0.0494786 0.0458532 30 2735 20 6.55708e+06 301375 526063. 1820.29 2.63 0.248549 0.215623 21886 126133 -1 2181 15 965 2611 118795 29407 6.66944 6.66944 -149.879 -6.66944 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0248046 0.02195 146 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 5.94 vpr 62.38 MiB 0.04 6844 -1 -1 12 0.22 -1 -1 32916 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 24.0 MiB 0.30 1206 5517 1016 4177 324 62.4 MiB 0.06 0.00 6.0821 -125.095 -6.0821 6.0821 0.68 0.000864622 0.000800656 0.0270469 0.0250843 28 3300 23 6.55708e+06 313430 500653. 1732.36 2.90 0.237124 0.203871 21310 115450 -1 2825 18 1179 3802 218756 50683 6.2023 6.2023 -144.452 -6.2023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360509 0.0319375 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.17 vpr 62.93 MiB 0.05 7004 -1 -1 15 0.46 -1 -1 33092 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1706 9773 2264 6646 863 62.9 MiB 0.11 0.00 7.45942 -149.096 -7.45942 7.45942 0.68 0.00111368 0.00103004 0.0529412 0.0489015 36 4448 23 6.55708e+06 409870 612192. 2118.31 3.59 0.253053 0.220966 22750 144809 -1 3765 17 1746 5720 310818 71249 7.82001 7.82001 -168.255 -7.82001 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.043225 0.0383843 250 249 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.53 vpr 61.58 MiB 0.04 6396 -1 -1 10 0.10 -1 -1 32316 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63060 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.2 MiB 0.28 657 5722 1277 4285 160 61.6 MiB 0.05 0.00 4.40126 -96.7004 -4.40126 4.40126 0.68 0.000556557 0.000517636 0.0211609 0.019663 30 1531 16 6.55708e+06 192880 526063. 1820.29 0.72 0.0831437 0.0726691 21886 126133 -1 1439 13 550 1298 67165 16623 4.64166 4.64166 -113.769 -4.64166 0 0 666494. 2306.21 0.18 0.04 0.12 -1 -1 0.18 0.0166442 0.0146447 92 82 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 5.41 vpr 62.20 MiB 0.05 6524 -1 -1 13 0.17 -1 -1 32824 -1 -1 29 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63696 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.6 MiB 0.21 1134 7027 1670 4551 806 62.2 MiB 0.07 0.00 6.2375 -126.903 -6.2375 6.2375 0.73 0.000747182 0.000693554 0.0287368 0.0266827 28 2718 19 6.55708e+06 349595 500653. 1732.36 2.41 0.199587 0.173139 21310 115450 -1 2390 16 983 2699 141727 34331 6.4779 6.4779 -144.373 -6.4779 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0256726 0.022667 150 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.11 vpr 62.39 MiB 0.04 6480 -1 -1 12 0.19 -1 -1 32744 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1242 6999 1430 4516 1053 62.4 MiB 0.08 0.00 5.66498 -124.229 -5.66498 5.66498 0.69 0.000850258 0.000781163 0.0346269 0.032028 36 2992 28 6.55708e+06 277265 612192. 2118.31 1.99 0.208075 0.180049 22750 144809 -1 2651 17 1183 3284 179766 41683 5.90538 5.90538 -142.48 -5.90538 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0300583 0.0264329 167 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 3.90 vpr 61.75 MiB 0.04 6728 -1 -1 9 0.13 -1 -1 32592 -1 -1 25 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63232 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.2 MiB 0.16 819 11652 3252 6639 1761 61.8 MiB 0.09 0.00 4.55866 -86.4056 -4.55866 4.55866 0.74 0.000607167 0.000561973 0.0421572 0.0390125 26 2184 24 6.55708e+06 301375 477104. 1650.88 1.03 0.118757 0.104505 21022 109990 -1 1895 18 888 2521 139947 32524 4.80106 4.80106 -102.858 -4.80106 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0229033 0.0200361 112 103 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 5.54 vpr 62.91 MiB 0.05 6728 -1 -1 12 0.26 -1 -1 32956 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1676 7973 1663 5689 621 62.9 MiB 0.09 0.00 6.3205 -139.133 -6.3205 6.3205 0.71 0.00096419 0.000896139 0.0376667 0.0348788 36 4051 19 6.55708e+06 409870 612192. 2118.31 2.01 0.188809 0.164464 22750 144809 -1 3472 18 1508 4449 254375 57320 6.63224 6.63224 -159.095 -6.63224 0 0 782063. 2706.10 0.23 0.10 0.13 -1 -1 0.23 0.0393356 0.0349041 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 5.92 vpr 62.68 MiB 0.03 6796 -1 -1 14 0.30 -1 -1 33372 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1367 13754 3548 7597 2609 62.7 MiB 0.14 0.00 7.02242 -137.908 -7.02242 7.02242 0.68 0.000959556 0.000888541 0.0675893 0.0625579 36 3443 26 6.55708e+06 349595 612192. 2118.31 2.54 0.265867 0.232698 22750 144809 -1 2899 17 1270 3963 207653 49188 7.14262 7.14262 -152.003 -7.14262 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0356612 0.0314245 204 202 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.71 vpr 63.18 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30776 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.13 940 12396 3110 7978 1308 63.2 MiB 0.13 0.00 3.40616 -114.923 -3.40616 3.40616 0.68 0.000818801 0.000762707 0.0467011 0.0434665 32 2593 23 6.64007e+06 452088 554710. 1919.41 0.89 0.145028 0.128017 22834 132086 -1 2179 21 1850 3063 207776 48597 3.69963 3.69963 -139.095 -3.69963 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0327261 0.0285214 153 80 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.76 vpr 63.07 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30832 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.4 MiB 0.20 959 13291 4221 6457 2613 63.1 MiB 0.14 0.00 3.72596 -114.095 -3.72596 3.72596 0.68 0.000755634 0.000701027 0.0435023 0.0401854 32 2418 28 6.64007e+06 288834 554710. 1919.41 0.87 0.140322 0.123195 22834 132086 -1 2062 21 1657 2766 175160 41070 3.76763 3.76763 -134.698 -3.76763 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0308283 0.0269088 142 78 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 5.62 vpr 63.07 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 931 8991 1923 6602 466 63.1 MiB 0.10 0.00 3.13925 -105.417 -3.13925 3.13925 0.71 0.000749926 0.000697953 0.0319574 0.0296934 26 2713 35 6.64007e+06 439530 477104. 1650.88 2.85 0.219815 0.190044 21682 110474 -1 2339 21 1512 2415 211972 46338 3.77883 3.77883 -136.932 -3.77883 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0352029 0.0306464 142 50 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.75 vpr 62.77 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30748 -1 -1 24 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 23.9 MiB 0.07 996 16081 5140 8933 2008 62.8 MiB 0.16 0.00 3.58556 -108.327 -3.58556 3.58556 0.68 0.000684826 0.000637195 0.0614097 0.057137 26 2447 23 6.64007e+06 301392 477104. 1650.88 1.00 0.147788 0.130963 21682 110474 -1 2150 20 1658 2848 193686 43098 3.83403 3.83403 -136.307 -3.83403 0 0 585099. 2024.56 0.18 0.08 0.10 -1 -1 0.18 0.0274547 0.0240532 138 25 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.73 vpr 62.89 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.3 MiB 0.10 1039 12938 3395 8690 853 62.9 MiB 0.14 0.00 3.30796 -117.815 -3.30796 3.30796 0.68 0.000737259 0.000686244 0.05336 0.0496561 32 2501 21 6.64007e+06 276276 554710. 1919.41 0.88 0.141587 0.125697 22834 132086 -1 2290 20 1946 3547 241591 53439 3.72743 3.72743 -146.34 -3.72743 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0282061 0.0249199 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.65 vpr 63.04 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30712 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 0.11 992 19624 5740 11235 2649 63.0 MiB 0.18 0.00 2.7819 -96.9768 -2.7819 2.7819 0.69 0.000763807 0.000709106 0.0650252 0.0603916 32 2313 26 6.64007e+06 489762 554710. 1919.41 0.84 0.159914 0.141835 22834 132086 -1 1914 20 1423 2332 138103 33952 2.90777 2.90777 -114.336 -2.90777 0 0 701300. 2426.64 0.19 0.07 0.14 -1 -1 0.19 0.0297795 0.0259879 156 61 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.53 vpr 62.25 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30924 -1 -1 20 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 734 10388 3326 6105 957 62.2 MiB 0.10 0.00 3.0775 -85.9753 -3.0775 3.0775 0.71 0.000580027 0.000536098 0.0372305 0.0346977 28 1660 18 6.64007e+06 251160 500653. 1732.36 0.76 0.103469 0.0913669 21970 115934 -1 1519 23 885 1575 101330 23617 2.81077 2.81077 -98.2847 -2.81077 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0249086 0.0216168 96 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.54 vpr 62.98 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30360 -1 -1 34 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1037 12973 3452 8106 1415 63.0 MiB 0.12 0.00 2.9483 -95.6493 -2.9483 2.9483 0.68 0.000662116 0.000616607 0.0408593 0.0380418 32 2299 19 6.64007e+06 426972 554710. 1919.41 0.78 0.116558 0.103089 22834 132086 -1 1977 18 1180 1963 122254 28018 2.79377 2.79377 -108.567 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0240548 0.0210516 140 -1 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.44 vpr 62.68 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30380 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 813 8336 2254 4620 1462 62.7 MiB 0.08 0.00 2.69519 -86.3861 -2.69519 2.69519 0.69 0.000653969 0.000607813 0.0340999 0.0317384 32 1823 17 6.64007e+06 213486 554710. 1919.41 0.77 0.107353 0.0945071 22834 132086 -1 1666 18 913 1471 107482 24507 2.68977 2.68977 -101.287 -2.68977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209316 0.0184447 106 81 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.66 vpr 62.73 MiB 0.02 6832 -1 -1 1 0.05 -1 -1 30540 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.1 MiB 0.13 858 12506 3688 7273 1545 62.7 MiB 0.12 0.00 2.7849 -102.219 -2.7849 2.7849 0.70 0.000643578 0.000598669 0.0480923 0.0447811 32 2036 22 6.64007e+06 213486 554710. 1919.41 0.81 0.124862 0.110645 22834 132086 -1 1799 23 1559 2413 183228 39660 3.10017 3.10017 -125.584 -3.10017 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028472 0.0247553 121 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.51 vpr 62.73 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30372 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 24.0 MiB 0.14 738 12120 3363 8072 685 62.7 MiB 0.11 0.00 2.80139 -91.9352 -2.80139 2.80139 0.72 0.000644237 0.000599581 0.0476513 0.0443532 32 1741 23 6.64007e+06 226044 554710. 1919.41 0.79 0.125027 0.11054 22834 132086 -1 1579 19 1069 1491 104302 24537 2.92977 2.92977 -113.708 -2.92977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0248094 0.0216977 110 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.54 vpr 62.67 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30636 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 24.0 MiB 0.10 814 9963 2256 7305 402 62.7 MiB 0.10 0.00 2.6877 -91.3221 -2.6877 2.6877 0.70 0.000660996 0.000614662 0.0334795 0.031141 30 1957 21 6.64007e+06 364182 526063. 1820.29 0.80 0.111369 0.0980173 22546 126617 -1 1695 18 989 1638 93566 21318 2.75357 2.75357 -111.461 -2.75357 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0234508 0.0204692 114 57 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.89 vpr 63.02 MiB 0.06 7096 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.23 953 18998 6107 10302 2589 63.0 MiB 0.18 0.00 2.8189 -100.107 -2.8189 2.8189 0.69 0.000748192 0.000694491 0.0661554 0.0613848 32 2430 21 6.64007e+06 426972 554710. 1919.41 0.90 0.154514 0.137396 22834 132086 -1 2014 21 1684 2828 183128 41752 2.88397 2.88397 -116.975 -2.88397 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311643 0.0272725 145 55 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.48 vpr 63.04 MiB 0.14 7072 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1027 12860 3255 7884 1721 63.0 MiB 0.13 0.00 3.40616 -119.112 -3.40616 3.40616 0.75 0.000784416 0.000730455 0.0459407 0.0427712 26 2994 39 6.64007e+06 452088 477104. 1650.88 1.46 0.159731 0.140553 21682 110474 -1 2440 22 2004 3163 235565 50378 3.64763 3.64763 -144.131 -3.64763 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0327636 0.028587 158 60 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.51 vpr 62.21 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 31008 -1 -1 19 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63700 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.6 MiB 0.11 882 11948 3221 7009 1718 62.2 MiB 0.11 0.00 2.7049 -87.2042 -2.7049 2.7049 0.75 0.000579646 0.000539982 0.0416572 0.0387855 28 1922 18 6.64007e+06 238602 500653. 1732.36 0.75 0.10694 0.0947846 21970 115934 -1 1696 20 949 1587 103690 23700 2.75177 2.75177 -103.298 -2.75177 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0221805 0.0193165 108 21 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.37 vpr 63.07 MiB 0.05 7104 -1 -1 1 0.04 -1 -1 30672 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.19 1105 14450 4624 7653 2173 63.1 MiB 0.15 0.00 2.82639 -103.29 -2.82639 2.82639 0.70 0.000763853 0.000709658 0.0609132 0.056621 32 2617 25 6.64007e+06 276276 554710. 1919.41 1.30 0.188371 0.166607 22834 132086 -1 2222 20 1798 3091 233605 53935 3.00117 3.00117 -123.32 -3.00117 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0307007 0.0268203 147 60 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 5.63 vpr 62.87 MiB 0.05 6996 -1 -1 1 0.04 -1 -1 30580 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.3 MiB 0.16 1055 16804 4937 9541 2326 62.9 MiB 0.15 0.00 2.9051 -104.799 -2.9051 2.9051 0.70 0.000745125 0.000691998 0.056021 0.052088 28 2421 27 6.64007e+06 452088 500653. 1732.36 2.76 0.252205 0.219561 21970 115934 -1 2064 20 1179 1739 130512 29784 2.87077 2.87077 -120.409 -2.87077 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0291274 0.0254879 144 54 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.78 vpr 62.84 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.13 916 11111 2887 6946 1278 62.8 MiB 0.14 0.01 2.26464 -84.6836 -2.26464 2.26464 0.77 0.00240454 0.00223623 0.0448584 0.0416598 32 1977 20 6.64007e+06 389298 554710. 1919.41 0.82 0.122098 0.107919 22834 132086 -1 1775 19 1118 1761 118885 26704 2.25971 2.25971 -97.0999 -2.25971 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0255606 0.022339 119 62 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.50 vpr 61.90 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30312 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63388 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 659 9857 3750 4636 1471 61.9 MiB 0.13 0.00 2.12244 -71.4892 -2.12244 2.12244 0.70 0.000407904 0.000376067 0.0270282 0.0250024 32 1401 17 6.64007e+06 188370 554710. 1919.41 0.76 0.0832021 0.0729244 22834 132086 -1 1291 22 774 1116 95148 21235 2.01031 2.01031 -81.0494 -2.01031 0 0 701300. 2426.64 0.24 0.06 0.14 -1 -1 0.24 0.0219044 0.0190413 85 29 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.64 vpr 62.75 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30632 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.1 MiB 0.12 791 11260 3917 5279 2064 62.8 MiB 0.11 0.00 3.39356 -100.857 -3.39356 3.39356 0.68 0.000658252 0.000612782 0.0453635 0.0422318 32 1849 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121296 0.107538 22834 132086 -1 1624 17 873 1332 91483 21336 3.34823 3.34823 -119.747 -3.34823 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.024123 0.0212612 113 55 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.69 vpr 62.84 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30564 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 957 14716 3898 8652 2166 62.8 MiB 0.13 0.00 3.37436 -112.852 -3.37436 3.37436 0.70 0.000723276 0.000672837 0.0484939 0.0450675 32 2364 23 6.64007e+06 452088 554710. 1919.41 0.84 0.135554 0.119893 22834 132086 -1 2078 22 1693 2478 177861 40591 3.73303 3.73303 -133.288 -3.73303 0 0 701300. 2426.64 0.24 0.08 0.12 -1 -1 0.24 0.0309572 0.0270373 147 31 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.88 vpr 63.05 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 31108 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.6 MiB 0.21 1045 10336 2316 7561 459 63.1 MiB 0.11 0.00 3.01205 -102.424 -3.01205 3.01205 0.68 0.00084233 0.000781569 0.0393752 0.0365218 26 3246 43 6.64007e+06 477204 477104. 1650.88 1.95 0.171363 0.149394 21682 110474 -1 2409 23 1711 2735 214176 47236 3.71183 3.71183 -134.239 -3.71183 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0362819 0.031515 150 108 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.22 vpr 62.12 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30860 -1 -1 17 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63608 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.6 MiB 0.09 460 10661 3396 6323 942 62.1 MiB 0.07 0.00 2.13964 -57.6102 -2.13964 2.13964 0.68 0.000441949 0.00041102 0.0311606 0.0289832 28 1269 21 6.64007e+06 213486 500653. 1732.36 0.72 0.0836322 0.073832 21970 115934 -1 1019 15 474 672 44059 11701 1.96511 1.96511 -70.4615 -1.96511 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0141278 0.0124065 77 21 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.62 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.1 MiB 0.10 966 13694 4000 7434 2260 62.8 MiB 0.14 0.00 3.59776 -112.749 -3.59776 3.59776 0.68 0.000686505 0.000638962 0.0523359 0.0487551 32 2302 25 6.64007e+06 276276 554710. 1919.41 0.85 0.138086 0.122551 22834 132086 -1 2026 20 1580 2710 172161 40190 3.88183 3.88183 -139.974 -3.88183 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0273608 0.0239303 138 -1 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.28 vpr 61.86 MiB 0.04 6752 -1 -1 1 0.03 -1 -1 30672 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 738 11650 4187 6337 1126 61.9 MiB 0.09 0.00 1.98053 -74.6663 -1.98053 1.98053 0.68 0.000466967 0.000434102 0.0348334 0.0324339 26 1547 19 6.64007e+06 163254 477104. 1650.88 0.78 0.0881982 0.0782042 21682 110474 -1 1351 17 629 862 68077 15473 1.96911 1.96911 -86.4128 -1.96911 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0163245 0.0143206 81 -1 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.73 vpr 62.89 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30696 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1045 19935 6966 10554 2415 62.9 MiB 0.19 0.00 3.34716 -118.75 -3.34716 3.34716 0.71 0.000740873 0.000688502 0.0672927 0.0624868 32 2441 25 6.64007e+06 439530 554710. 1919.41 0.89 0.158332 0.140668 22834 132086 -1 2129 22 1834 2713 201186 43778 3.69963 3.69963 -141.551 -3.69963 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0324433 0.0284207 153 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.53 vpr 62.87 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 24.0 MiB 0.09 1078 12556 3215 8276 1065 62.9 MiB 0.12 0.00 2.8281 -101.368 -2.8281 2.8281 0.66 0.000700471 0.000645127 0.0395343 0.0367142 32 2447 18 6.64007e+06 464646 554710. 1919.41 0.80 0.11817 0.10436 22834 132086 -1 2128 22 1612 2608 185773 42646 2.93297 2.93297 -119.8 -2.93297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0295456 0.0258067 152 -1 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.55 vpr 63.25 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30960 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.05 1107 16786 4660 10331 1795 63.2 MiB 0.16 0.00 3.43916 -120.992 -3.43916 3.43916 0.71 0.000773936 0.000719317 0.0577104 0.0536566 32 2651 21 6.64007e+06 464646 554710. 1919.41 0.86 0.147658 0.13102 22834 132086 -1 2236 23 1844 2940 200488 44224 3.76663 3.76663 -144.133 -3.76663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0336248 0.0293368 155 54 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.41 vpr 62.36 MiB 0.05 6816 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 883 6788 1443 4591 754 62.4 MiB 0.07 0.00 2.45379 -88.0962 -2.45379 2.45379 0.68 0.000613258 0.000571325 0.0263241 0.0245493 26 2081 22 6.64007e+06 200928 477104. 1650.88 0.80 0.0997959 0.087404 21682 110474 -1 1866 19 1002 1632 123648 27090 2.86217 2.86217 -112.461 -2.86217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0234393 0.020479 107 31 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.45 vpr 62.62 MiB 0.05 6772 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 24.2 MiB 0.08 885 12331 4112 6539 1680 62.6 MiB 0.11 0.00 2.7739 -95.2054 -2.7739 2.7739 0.68 0.000625408 0.000582159 0.0462002 0.043071 32 1822 20 6.64007e+06 238602 554710. 1919.41 0.78 0.117935 0.104555 22834 132086 -1 1556 19 1093 1529 98417 22244 2.69557 2.69557 -109.783 -2.69557 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.023416 0.0204213 115 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.47 vpr 62.23 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30528 -1 -1 20 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 709 11604 3401 6165 2038 62.2 MiB 0.11 0.00 2.7097 -82.3302 -2.7097 2.7097 0.68 0.000582968 0.000542833 0.0413174 0.0384926 32 1747 22 6.64007e+06 251160 554710. 1919.41 0.78 0.110829 0.0979033 22834 132086 -1 1553 21 1266 2105 124842 29418 2.98117 2.98117 -102.274 -2.98117 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0238626 0.0207678 107 27 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.56 vpr 62.70 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30720 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.10 802 15746 4832 8534 2380 62.7 MiB 0.14 0.00 2.8039 -97.2121 -2.8039 2.8039 0.68 0.00062002 0.000577884 0.0563547 0.0525111 32 2073 20 6.64007e+06 226044 554710. 1919.41 0.81 0.127701 0.113771 22834 132086 -1 1787 22 1590 2575 180403 41818 2.97197 2.97197 -117.618 -2.97197 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0260107 0.0226612 125 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.44 vpr 62.72 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 798 17134 4773 10047 2314 62.7 MiB 0.15 0.00 2.7427 -94.3449 -2.7427 2.7427 0.68 0.000590874 0.000547056 0.0522801 0.0486783 30 1864 16 6.64007e+06 389298 526063. 1820.29 0.75 0.121494 0.108106 22546 126617 -1 1640 18 1006 1707 98090 22455 2.67477 2.67477 -107.907 -2.67477 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0225486 0.0197181 119 26 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.51 vpr 62.62 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30332 -1 -1 31 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.13 815 13961 3491 8938 1532 62.6 MiB 0.12 0.00 2.26464 -77.4691 -2.26464 2.26464 0.69 0.000630667 0.000579815 0.0443502 0.0410706 32 1828 21 6.64007e+06 389298 554710. 1919.41 0.76 0.117202 0.10338 22834 132086 -1 1618 18 1121 1828 114483 26031 2.11751 2.11751 -88.6674 -2.11751 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0225928 0.0197072 110 55 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 5.10 vpr 62.98 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30748 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1240 16654 4157 10533 1964 63.0 MiB 0.14 0.00 3.41716 -120.482 -3.41716 3.41716 0.64 0.000992376 0.000934122 0.0423169 0.0392953 26 3568 39 6.64007e+06 514878 477104. 1650.88 2.27 0.16605 0.145701 21682 110474 -1 2847 19 1793 3119 249808 51480 3.91103 3.91103 -144.255 -3.91103 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0314101 0.0275162 181 26 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.51 vpr 63.16 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30860 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.4 MiB 0.15 1047 13966 3755 8826 1385 63.2 MiB 0.14 0.00 2.8611 -103.198 -2.8611 2.8611 0.68 0.000768766 0.000711868 0.0484789 0.0448587 30 2196 19 6.64007e+06 464646 526063. 1820.29 0.81 0.130706 0.115338 22546 126617 -1 1937 19 1615 2453 128699 29795 2.85397 2.85397 -118.022 -2.85397 0 0 666494. 2306.21 0.17 0.04 0.07 -1 -1 0.17 0.0160957 0.0143323 154 62 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.32 vpr 62.94 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30744 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.2 MiB 0.20 653 7958 1641 6002 315 62.9 MiB 0.08 0.00 2.9621 -88.3938 -2.9621 2.9621 0.70 0.000688947 0.000640909 0.0284282 0.0264306 26 2349 40 6.64007e+06 364182 477104. 1650.88 1.51 0.127807 0.111196 21682 110474 -1 1741 21 1238 2014 131929 31873 2.93097 2.93097 -111.605 -2.93097 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0268959 0.023337 114 77 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.67 vpr 63.06 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30568 -1 -1 24 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1072 9495 2347 6456 692 63.1 MiB 0.10 0.00 2.9211 -97.283 -2.9211 2.9211 0.68 0.000743452 0.000691465 0.0393025 0.0365478 32 2377 23 6.64007e+06 301392 554710. 1919.41 0.86 0.128745 0.113321 22834 132086 -1 2153 22 1485 2585 209028 43842 2.82677 2.82677 -112.308 -2.82677 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0316653 0.0276244 149 59 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.50 vpr 63.14 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.5 MiB 0.35 950 7646 1733 5487 426 63.1 MiB 0.10 0.00 4.33141 -122.046 -4.33141 4.33141 0.68 0.000839945 0.000781596 0.0365208 0.0340157 26 3055 30 6.64007e+06 288834 477104. 1650.88 1.49 0.147447 0.128698 21682 110474 -1 2188 22 1338 2387 159705 38890 4.17688 4.17688 -145.688 -4.17688 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.034873 0.0303425 150 111 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.70 vpr 63.30 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30592 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.6 MiB 0.18 1040 14828 4594 8679 1555 63.3 MiB 0.16 0.00 4.04401 -111.298 -4.04401 4.04401 0.69 0.000772405 0.000718009 0.0630737 0.0586513 28 2548 21 6.64007e+06 288834 500653. 1732.36 0.86 0.152762 0.135594 21970 115934 -1 2232 19 1150 1938 130643 29551 4.03868 4.03868 -137.644 -4.03868 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0290691 0.0254449 144 86 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.79 vpr 63.05 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30608 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1050 18998 5381 11592 2025 63.0 MiB 0.18 0.00 2.8409 -98.7901 -2.8409 2.8409 0.68 0.000756667 0.00070411 0.0665514 0.061666 26 2536 19 6.64007e+06 439530 477104. 1650.88 0.97 0.152111 0.135112 21682 110474 -1 2212 23 1694 2826 189378 42076 2.98217 2.98217 -119.133 -2.98217 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0329055 0.0286873 148 58 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.77 vpr 63.09 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30976 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.4 MiB 0.11 941 17491 5412 9228 2851 63.1 MiB 0.16 0.00 3.40616 -115.148 -3.40616 3.40616 0.68 0.000769574 0.000714899 0.0596689 0.0554765 32 2641 27 6.64007e+06 464646 554710. 1919.41 0.94 0.156043 0.138256 22834 132086 -1 2136 23 1912 3068 253353 55153 3.88983 3.88983 -142.251 -3.88983 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0334634 0.0292046 156 42 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.13 vpr 63.35 MiB 0.05 7372 -1 -1 1 0.03 -1 -1 30812 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.17 1108 19606 5465 11405 2736 63.3 MiB 0.20 0.00 3.33916 -115.146 -3.33916 3.33916 0.72 0.0009091 0.00084492 0.0747708 0.0694758 28 2897 23 6.64007e+06 527436 500653. 1732.36 1.14 0.184866 0.163791 21970 115934 -1 2361 19 1806 2774 172606 39916 3.55963 3.55963 -139.374 -3.55963 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0343585 0.0300641 186 91 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.55 vpr 62.64 MiB 0.05 6832 -1 -1 1 0.03 -1 -1 30740 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.11 854 13031 4053 6734 2244 62.6 MiB 0.12 0.00 3.0453 -99.8437 -3.0453 3.0453 0.68 0.000625443 0.000582178 0.0489592 0.0455894 32 1981 20 6.64007e+06 226044 554710. 1919.41 0.81 0.122155 0.108255 22834 132086 -1 1708 22 1454 2360 163105 37312 3.09817 3.09817 -117.729 -3.09817 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264531 0.0230234 116 24 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.79 vpr 63.10 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30648 -1 -1 38 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1083 13026 3155 8902 969 63.1 MiB 0.14 0.00 3.54836 -118.93 -3.54836 3.54836 0.66 0.000767691 0.000713743 0.0449155 0.0417534 32 2744 30 6.64007e+06 477204 554710. 1919.41 0.91 0.142952 0.125868 22834 132086 -1 2185 19 1597 2448 158439 36330 3.98603 3.98603 -143.546 -3.98603 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0286691 0.0251261 152 59 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.63 vpr 63.03 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30768 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.11 877 6623 1217 4877 529 63.0 MiB 0.08 0.00 2.9951 -93.7453 -2.9951 2.9951 0.69 0.000759044 0.00070627 0.0247612 0.0230466 32 2802 21 6.64007e+06 426972 554710. 1919.41 0.87 0.113468 0.0992647 22834 132086 -1 2136 19 1653 2836 175062 42271 3.05597 3.05597 -118.256 -3.05597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0284478 0.0248399 149 54 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.92 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.2 MiB 0.09 1009 15773 6181 7786 1806 62.9 MiB 0.16 0.00 3.30796 -116.733 -3.30796 3.30796 0.70 0.000707065 0.000658706 0.0612802 0.0570749 32 2621 25 6.64007e+06 276276 554710. 1919.41 0.93 0.150209 0.133664 22834 132086 -1 2220 21 1901 3315 231065 50376 3.63843 3.63843 -138.701 -3.63843 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0291799 0.0255054 151 -1 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.78 vpr 63.11 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30780 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.5 MiB 0.18 988 18567 6270 9721 2576 63.1 MiB 0.18 0.00 2.7537 -98.5892 -2.7537 2.7537 0.69 0.000779303 0.000724391 0.0664069 0.0616289 32 2639 23 6.64007e+06 439530 554710. 1919.41 0.85 0.159571 0.14162 22834 132086 -1 2059 16 1271 1864 113892 26845 2.97917 2.97917 -116.392 -2.97917 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0256844 0.0225778 146 81 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.97 vpr 63.09 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30536 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1081 12791 3249 8303 1239 63.1 MiB 0.13 0.00 2.7537 -100.152 -2.7537 2.7537 0.69 0.000757198 0.000704286 0.0437529 0.0406432 26 2730 29 6.64007e+06 464646 477104. 1650.88 1.12 0.141921 0.124906 21682 110474 -1 2253 20 1349 2328 189192 38482 2.77477 2.77477 -117.787 -2.77477 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0297333 0.0259712 148 58 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.74 vpr 63.02 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30800 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1040 12635 3533 8104 998 63.0 MiB 0.13 0.00 2.9061 -100.233 -2.9061 2.9061 0.68 0.00077562 0.000721064 0.0430606 0.0399516 32 2521 22 6.64007e+06 489762 554710. 1919.41 0.85 0.135758 0.119686 22834 132086 -1 2283 19 1808 2936 205044 45168 3.13717 3.13717 -125.607 -3.13717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0290572 0.0254458 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.61 vpr 63.05 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30776 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.08 1029 17961 4987 10986 1988 63.1 MiB 0.17 0.00 3.39516 -118.131 -3.39516 3.39516 0.72 0.000747495 0.000696083 0.0596754 0.0555473 30 2419 19 6.64007e+06 464646 526063. 1820.29 0.82 0.143579 0.127694 22546 126617 -1 2011 22 1543 2442 136049 31050 3.67763 3.67763 -136.603 -3.67763 0 0 666494. 2306.21 0.20 0.07 0.11 -1 -1 0.20 0.0282155 0.0249547 152 21 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.70 vpr 63.02 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30808 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1052 10466 2495 6919 1052 63.0 MiB 0.11 0.00 3.35816 -119.082 -3.35816 3.35816 0.68 0.000769813 0.000715596 0.0360662 0.033506 30 2399 22 6.64007e+06 489762 526063. 1820.29 0.83 0.127052 0.111724 22546 126617 -1 2079 19 1564 2523 151680 33331 3.43723 3.43723 -141.153 -3.43723 0 0 666494. 2306.21 0.19 0.07 0.13 -1 -1 0.19 0.0293991 0.025749 155 50 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.27 vpr 63.36 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30764 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1096 8763 1807 6408 548 63.4 MiB 0.06 0.00 3.76575 -112.348 -3.76575 3.76575 0.67 0.000363712 0.000334413 0.0160834 0.014836 26 3183 33 6.64007e+06 452088 477104. 1650.88 1.53 0.108689 0.094239 21682 110474 -1 2454 21 1492 2754 195544 43260 3.63343 3.63343 -135.73 -3.63343 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0327381 0.0284229 147 110 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.83 vpr 63.17 MiB 0.04 7228 -1 -1 1 0.04 -1 -1 30692 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.5 MiB 0.16 1073 15584 5296 8546 1742 63.2 MiB 0.17 0.00 3.56755 -111.768 -3.56755 3.56755 0.69 0.000805965 0.000748303 0.0672388 0.0624119 32 2499 23 6.64007e+06 276276 554710. 1919.41 0.86 0.163851 0.145315 22834 132086 -1 2278 20 1426 2630 181426 39567 3.63943 3.63943 -132.436 -3.63943 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0315004 0.0275185 151 86 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.67 vpr 62.71 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30808 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 23.9 MiB 0.07 800 15215 3397 11373 445 62.7 MiB 0.13 0.00 2.7537 -96.232 -2.7537 2.7537 0.73 0.000639039 0.000595531 0.0472876 0.0440201 32 2109 24 6.64007e+06 389298 554710. 1919.41 0.84 0.1248 0.110464 22834 132086 -1 1706 21 1283 2041 129653 30921 2.84977 2.84977 -114.235 -2.84977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0259549 0.022607 125 20 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.82 vpr 62.87 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30792 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.1 MiB 0.18 929 15212 4670 8561 1981 62.9 MiB 0.15 0.00 2.7819 -100.47 -2.7819 2.7819 0.69 0.00070333 0.000653561 0.0620114 0.057596 32 2238 20 6.64007e+06 226044 554710. 1919.41 0.85 0.142545 0.126494 22834 132086 -1 1966 23 1476 2348 188970 41128 2.89097 2.89097 -118.818 -2.89097 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306765 0.0266714 121 91 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 5.29 vpr 63.18 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 31020 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1365 19856 5441 12477 1938 63.2 MiB 0.21 0.00 3.90442 -137.532 -3.90442 3.90442 0.81 0.000817373 0.000756647 0.0728355 0.0676442 26 3527 44 6.64007e+06 527436 477104. 1650.88 2.23 0.210873 0.186099 21682 110474 -1 2831 23 2780 4590 309050 71113 4.72068 4.72068 -175.539 -4.72068 0 0 585099. 2024.56 0.16 0.12 0.10 -1 -1 0.16 0.0386126 0.0336672 189 53 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.74 vpr 63.00 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30732 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1120 15637 4376 9366 1895 63.0 MiB 0.15 0.00 2.9051 -105.705 -2.9051 2.9051 0.76 0.000731228 0.000680579 0.0545853 0.0507405 28 2602 20 6.64007e+06 414414 500653. 1732.36 0.80 0.138734 0.123018 21970 115934 -1 2247 19 1339 2076 141346 32249 3.23277 3.23277 -127.877 -3.23277 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0277759 0.0243454 148 31 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.53 vpr 62.40 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30504 -1 -1 31 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 842 13953 3493 8766 1694 62.4 MiB 0.12 0.00 2.7317 -94.0437 -2.7317 2.7317 0.68 0.000620765 0.000578275 0.0433312 0.0403745 32 1829 22 6.64007e+06 389298 554710. 1919.41 0.78 0.114899 0.101808 22834 132086 -1 1681 18 1053 1515 102433 22481 2.79857 2.79857 -108.954 -2.79857 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0223966 0.0195879 116 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 5.27 vpr 63.23 MiB 0.05 7336 -1 -1 1 0.03 -1 -1 31220 -1 -1 45 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.29 1222 15969 4320 10020 1629 63.2 MiB 0.17 0.00 4.01362 -137.521 -4.01362 4.01362 0.68 0.000816316 0.000758148 0.0594459 0.0551077 26 3413 39 6.64007e+06 565110 477104. 1650.88 2.20 0.197507 0.173581 21682 110474 -1 2800 22 2335 3427 283593 60740 4.69249 4.69249 -174.996 -4.69249 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0398097 0.0346645 188 109 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.78 vpr 62.95 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30700 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1076 17714 5714 9723 2277 62.9 MiB 0.16 0.00 3.57956 -123.728 -3.57956 3.57956 0.68 0.000742908 0.00069015 0.0579232 0.0537392 32 2424 19 6.64007e+06 477204 554710. 1919.41 0.87 0.143235 0.127316 22834 132086 -1 2211 22 1808 2695 229989 47082 3.78563 3.78563 -142.598 -3.78563 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0313457 0.027361 153 31 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.47 vpr 62.40 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30516 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.09 854 11922 2836 7681 1405 62.4 MiB 0.11 0.00 2.8629 -101.978 -2.8629 2.8629 0.68 0.000613483 0.000571573 0.0353525 0.0329527 30 1927 22 6.64007e+06 401856 526063. 1820.29 0.75 0.0847374 0.0754522 22546 126617 -1 1648 20 1097 1614 95579 21126 2.61017 2.61017 -113.133 -2.61017 0 0 666494. 2306.21 0.24 0.06 0.13 -1 -1 0.24 0.0247403 0.021708 124 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.96 vpr 63.07 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30924 -1 -1 43 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1466 20094 5632 12510 1952 63.1 MiB 0.19 0.00 4.23382 -146.107 -4.23382 4.23382 0.68 0.000851388 0.000792249 0.0705767 0.0657194 32 3298 24 6.64007e+06 539994 554710. 1919.41 0.95 0.174158 0.15448 22834 132086 -1 2830 18 2123 3318 273274 54585 4.79249 4.79249 -177.604 -4.79249 0 0 701300. 2426.64 0.21 0.10 0.16 -1 -1 0.21 0.0328819 0.0289019 190 26 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.55 vpr 62.31 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 0.09 880 11456 3267 7000 1189 62.3 MiB 0.11 0.00 2.7849 -102.041 -2.7849 2.7849 0.71 0.0006115 0.000569671 0.0419867 0.039093 32 2083 20 6.64007e+06 213486 554710. 1919.41 0.80 0.113239 0.100207 22834 132086 -1 1887 19 1373 2239 160951 35989 3.01417 3.01417 -124.7 -3.01417 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0237304 0.0206068 121 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.57 vpr 62.52 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30332 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 24.0 MiB 0.12 795 12661 3190 8803 668 62.5 MiB 0.12 0.00 2.7427 -90.8284 -2.7427 2.7427 0.68 0.000613953 0.000571243 0.0385711 0.035857 30 1830 20 6.64007e+06 401856 526063. 1820.29 0.79 0.10985 0.096811 22546 126617 -1 1528 21 1045 1724 99225 22664 2.90477 2.90477 -105.447 -2.90477 0 0 666494. 2306.21 0.19 0.06 0.12 -1 -1 0.19 0.0252204 0.0219283 114 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.51 vpr 63.12 MiB 0.06 7248 -1 -1 1 0.03 -1 -1 30540 -1 -1 34 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.6 MiB 0.17 993 17375 5006 10012 2357 63.1 MiB 0.16 0.00 2.9591 -89.4376 -2.9591 2.9591 0.72 0.000330564 0.000305109 0.0546635 0.0505691 28 2346 22 6.64007e+06 426972 500653. 1732.36 0.63 0.100376 0.0902226 21970 115934 -1 1926 20 1334 2306 145950 32581 2.87777 2.87777 -105.8 -2.87777 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0287276 0.0250549 134 81 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.70 vpr 63.11 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30916 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 973 8780 2241 6161 378 63.1 MiB 0.10 0.00 3.37836 -118.862 -3.37836 3.37836 0.68 0.00076683 0.000712181 0.038274 0.0356156 32 2359 23 6.64007e+06 276276 554710. 1919.41 0.86 0.130186 0.114638 22834 132086 -1 2099 24 2259 3489 266817 58034 3.60543 3.60543 -143.364 -3.60543 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0346591 0.0302042 152 53 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.09 vpr 63.10 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30856 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.22 897 6364 1022 5084 258 63.1 MiB 0.08 0.00 3.30796 -112.285 -3.30796 3.30796 0.68 0.000774514 0.000720295 0.0237578 0.0220945 28 2953 33 6.64007e+06 452088 500653. 1732.36 1.29 0.129854 0.113154 21970 115934 -1 2208 22 1807 3007 197606 47356 3.86363 3.86363 -150.555 -3.86363 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0326541 0.0285014 154 55 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.64 vpr 62.91 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30860 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 0.13 823 18054 6069 9478 2507 62.9 MiB 0.15 0.00 2.8739 -100.633 -2.8739 2.8739 0.71 0.000675037 0.000628318 0.0581165 0.0540559 32 2043 23 6.64007e+06 401856 554710. 1919.41 0.81 0.138645 0.123073 22834 132086 -1 1769 20 1284 1861 131965 30584 2.95977 2.95977 -118.29 -2.95977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0268019 0.0238833 122 55 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.59 vpr 62.79 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30672 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.17 786 8336 2113 5824 399 62.8 MiB 0.09 0.00 2.9591 -92.2852 -2.9591 2.9591 0.69 0.000673914 0.000626736 0.0349023 0.0324826 32 1888 21 6.64007e+06 213486 554710. 1919.41 0.80 0.115326 0.101457 22834 132086 -1 1676 19 1089 1935 128296 29417 2.86977 2.86977 -111.451 -2.86977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0255208 0.0222574 109 82 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.74 vpr 62.91 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30820 -1 -1 35 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1012 12085 3115 7960 1010 62.9 MiB 0.12 0.00 2.8519 -97.0487 -2.8519 2.8519 0.68 0.000717606 0.000667907 0.0424246 0.0394357 26 2679 26 6.64007e+06 439530 477104. 1650.88 1.01 0.132582 0.116704 21682 110474 -1 2175 20 1378 2189 158258 36634 3.09137 3.09137 -116.001 -3.09137 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0283227 0.0247456 139 52 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.08 vpr 62.81 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30768 -1 -1 32 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64320 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.1 MiB 0.09 1057 14582 3837 9093 1652 62.8 MiB 0.14 0.00 3.77576 -108.081 -3.77576 3.77576 0.73 0.000661066 0.000615172 0.0490853 0.0456855 26 2632 33 6.64007e+06 401856 477104. 1650.88 1.33 0.140723 0.124021 21682 110474 -1 2157 19 1534 2447 173151 38802 3.62162 3.62162 -126.602 -3.62162 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0254489 0.0222207 134 20 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.64 vpr 62.67 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30424 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 23.9 MiB 0.16 660 14606 4689 7861 2056 62.7 MiB 0.14 0.00 2.8131 -90.6242 -2.8131 2.8131 0.69 0.000644702 0.000598578 0.0558809 0.0519839 32 1852 24 6.64007e+06 238602 554710. 1919.41 0.82 0.134454 0.119172 22834 132086 -1 1589 21 1254 2089 136600 32927 2.93097 2.93097 -110.082 -2.93097 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0266035 0.0231435 114 58 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.57 vpr 62.80 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30740 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.1 MiB 0.17 961 10056 2531 6387 1138 62.8 MiB 0.10 0.00 2.9653 -96.595 -2.9653 2.9653 0.68 0.000699395 0.000650421 0.04201 0.0390834 32 2102 20 6.64007e+06 213486 554710. 1919.41 0.79 0.121409 0.107061 22834 132086 -1 1825 17 1037 1723 120551 26628 2.81197 2.81197 -109.143 -2.81197 0 0 701300. 2426.64 0.19 0.06 0.10 -1 -1 0.19 0.0239045 0.0209194 114 88 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.64 vpr 62.74 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30712 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1027 19356 5642 11067 2647 62.7 MiB 0.18 0.00 3.39516 -114.318 -3.39516 3.39516 0.69 0.000689658 0.000642447 0.0600431 0.0558695 32 2432 22 6.64007e+06 464646 554710. 1919.41 0.84 0.14249 0.12674 22834 132086 -1 2046 20 1651 2608 173502 38655 3.87383 3.87383 -140.274 -3.87383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0272737 0.023867 152 -1 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.81 vpr 63.12 MiB 0.03 6940 -1 -1 1 0.03 -1 -1 30760 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 971 17964 4986 11031 1947 63.1 MiB 0.18 0.00 3.39516 -117.047 -3.39516 3.39516 0.71 0.00076914 0.000714886 0.0625402 0.0580827 32 2419 21 6.64007e+06 452088 554710. 1919.41 0.86 0.152857 0.13587 22834 132086 -1 2033 19 1527 2799 169071 39857 3.82563 3.82563 -141.035 -3.82563 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291366 0.0255129 155 57 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.87 vpr 63.09 MiB 0.05 7000 -1 -1 1 0.04 -1 -1 30760 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.16 978 9844 2053 7367 424 63.1 MiB 0.11 0.00 3.30796 -115.17 -3.30796 3.30796 0.68 0.000770833 0.000716742 0.035382 0.0328683 30 2942 21 6.64007e+06 452088 526063. 1820.29 1.05 0.126243 0.11102 22546 126617 -1 2028 21 1535 2595 138049 33288 3.61523 3.61523 -142.295 -3.61523 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0315088 0.0276178 153 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.39 vpr 63.22 MiB 0.03 7116 -1 -1 1 0.03 -1 -1 30616 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1131 12954 3693 8509 752 63.2 MiB 0.13 0.00 3.37316 -115.481 -3.37316 3.37316 0.68 0.000761865 0.000707507 0.0441256 0.0410051 26 2992 22 6.64007e+06 477204 477104. 1650.88 2.64 0.230993 0.200659 21682 110474 -1 2463 23 1823 3112 219794 49080 3.82383 3.82383 -140.415 -3.82383 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0331461 0.0289122 149 62 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.50 vpr 62.62 MiB 0.05 6772 -1 -1 1 0.05 -1 -1 30592 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.11 766 12856 3852 6755 2249 62.6 MiB 0.12 0.00 2.7709 -91.1747 -2.7709 2.7709 0.68 0.000611543 0.000569314 0.0469261 0.0437091 30 1986 20 6.64007e+06 238602 526063. 1820.29 0.79 0.118633 0.105106 22546 126617 -1 1707 23 1277 2147 141160 31975 2.88417 2.88417 -107.478 -2.88417 0 0 666494. 2306.21 0.18 0.07 0.13 -1 -1 0.18 0.0269995 0.0234986 113 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.89 MiB 0.03 7064 -1 -1 1 0.09 -1 -1 30776 -1 -1 24 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 14072 3942 7868 2262 62.9 MiB 0.14 0.00 3.35636 -111.778 -3.35636 3.35636 0.69 0.000735204 0.00068389 0.0571112 0.0531417 32 2378 23 6.64007e+06 301392 554710. 1919.41 0.85 0.147405 0.130888 22834 132086 -1 2073 20 1767 2664 181251 42119 3.67163 3.67163 -135.63 -3.67163 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.028975 0.0253126 146 58 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.97 vpr 63.10 MiB 0.02 7184 -1 -1 1 0.04 -1 -1 31204 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1114 19618 5705 11084 2829 63.1 MiB 0.19 0.00 3.55936 -123.276 -3.55936 3.55936 0.71 0.000862725 0.000800731 0.0705736 0.065553 30 2533 20 6.64007e+06 514878 526063. 1820.29 1.02 0.169278 0.149922 22546 126617 -1 2152 23 1687 2887 155264 36985 3.63543 3.63543 -141.481 -3.63543 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0361315 0.031326 156 106 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.69 vpr 63.15 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30608 -1 -1 33 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 1093 18273 6027 9750 2496 63.1 MiB 0.18 0.00 3.39516 -115.658 -3.39516 3.39516 0.68 0.000790963 0.000735398 0.0686853 0.0637901 32 2573 22 6.64007e+06 414414 554710. 1919.41 0.87 0.16192 0.143652 22834 132086 -1 2305 18 1456 2408 192891 39985 3.76763 3.76763 -137.593 -3.76763 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0284462 0.0249328 148 79 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.72 vpr 62.95 MiB 0.06 7156 -1 -1 1 0.03 -1 -1 30720 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.15 1017 15643 4345 8942 2356 63.0 MiB 0.15 0.00 3.0133 -94.5657 -3.0133 3.0133 0.68 0.000742572 0.000689334 0.0572238 0.0531383 32 2220 24 6.64007e+06 401856 554710. 1919.41 0.82 0.148438 0.131181 22834 132086 -1 1948 21 1456 2349 149443 34679 2.97897 2.97897 -113.397 -2.97897 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0305829 0.0266733 138 83 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.84 vpr 63.12 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30880 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.4 MiB 0.24 962 13316 3602 8252 1462 63.1 MiB 0.15 0.00 3.35816 -115.716 -3.35816 3.35816 0.70 0.00078011 0.000725278 0.0573443 0.0533704 32 2590 22 6.64007e+06 276276 554710. 1919.41 0.85 0.149378 0.132512 22834 132086 -1 2132 20 1772 2999 205919 48407 3.51523 3.51523 -140.173 -3.51523 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.030184 0.0263845 155 58 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.61 vpr 63.07 MiB 0.02 7224 -1 -1 1 0.03 -1 -1 30564 -1 -1 36 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.4 MiB 0.11 941 12751 3356 8285 1110 63.1 MiB 0.13 0.00 2.7969 -89.7256 -2.7969 2.7969 0.71 0.000760321 0.000705137 0.0460517 0.0426516 32 1996 20 6.64007e+06 452088 554710. 1919.41 0.81 0.13015 0.114904 22834 132086 -1 1748 21 1386 2288 148928 33823 2.74257 2.74257 -104.165 -2.74257 0 0 701300. 2426.64 0.19 0.07 0.13 -1 -1 0.19 0.0294238 0.0255733 136 81 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.47 vpr 62.39 MiB 0.04 6812 -1 -1 1 0.02 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.06 718 9531 2404 5950 1177 62.4 MiB 0.10 0.00 2.8911 -99.8907 -2.8911 2.8911 0.69 0.000623374 0.000581191 0.036148 0.0337517 32 1905 22 6.64007e+06 213486 554710. 1919.41 0.81 0.111317 0.0984413 22834 132086 -1 1617 21 1316 2038 132016 32088 2.97697 2.97697 -117.698 -2.97697 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0251991 0.0219765 115 -1 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.81 vpr 63.07 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30724 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1081 19251 5709 11317 2225 63.1 MiB 0.18 0.00 3.34716 -118.991 -3.34716 3.34716 0.68 0.00077428 0.000720097 0.0682494 0.0633796 32 2588 20 6.64007e+06 439530 554710. 1919.41 0.90 0.161849 0.143966 22834 132086 -1 2226 21 1718 2664 168248 38899 3.77763 3.77763 -144.485 -3.77763 0 0 701300. 2426.64 0.18 0.05 0.08 -1 -1 0.18 0.0173789 0.015435 152 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.91 vpr 63.15 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1046 16599 5779 8561 2259 63.2 MiB 0.17 0.00 3.49856 -121.361 -3.49856 3.49856 0.68 0.000770272 0.000716228 0.0695388 0.0646833 32 2591 23 6.64007e+06 288834 554710. 1919.41 0.93 0.164778 0.146659 22834 132086 -1 2148 23 2140 3295 238367 53950 3.97123 3.97123 -145.361 -3.97123 0 0 701300. 2426.64 0.24 0.10 0.12 -1 -1 0.24 0.0346437 0.0303302 158 62 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.77 vpr 62.85 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30828 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.1 MiB 0.15 713 10531 2217 6977 1337 62.8 MiB 0.09 0.00 3.0463 -90.8984 -3.0463 3.0463 0.72 0.000634312 0.000588889 0.0337091 0.0312641 28 2126 28 6.64007e+06 376740 500653. 1732.36 1.04 0.114651 0.100818 21970 115934 -1 1635 21 1081 1861 130049 31589 2.90277 2.90277 -108.3 -2.90277 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0256751 0.0223311 112 47 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.46 vpr 62.31 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30560 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 872 12681 4214 6652 1815 62.3 MiB 0.12 0.00 2.8321 -99.9661 -2.8321 2.8321 0.68 0.000600098 0.00055942 0.045262 0.0421646 32 1976 17 6.64007e+06 226044 554710. 1919.41 0.79 0.112328 0.0996756 22834 132086 -1 1805 22 1484 2381 180720 40460 3.05937 3.05937 -120.269 -3.05937 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0232151 0.0204922 118 -1 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.93 vpr 63.01 MiB 0.27 7068 -1 -1 1 0.03 -1 -1 30576 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.0 MiB 0.15 955 13639 3310 8000 2329 63.0 MiB 0.13 0.00 3.36036 -111.093 -3.36036 3.36036 0.69 0.000746385 0.000684882 0.0477767 0.0444425 32 2199 22 6.64007e+06 414414 554710. 1919.41 0.82 0.135485 0.119791 22834 132086 -1 2002 22 1672 2535 172733 39715 3.66483 3.66483 -130.943 -3.66483 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.031543 0.0275229 139 56 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 3.68 vpr 63.18 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30448 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1048 17397 5297 9397 2703 63.2 MiB 0.17 0.00 3.61156 -111.72 -3.61156 3.61156 0.68 0.000760439 0.000706408 0.0632319 0.058754 28 2531 26 6.64007e+06 401856 500653. 1732.36 0.97 0.158327 0.14037 21970 115934 -1 2177 21 1470 2374 158030 35771 3.87302 3.87302 -135.186 -3.87302 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0311205 0.0271615 136 81 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.91 vpr 63.12 MiB 0.08 7156 -1 -1 1 0.03 -1 -1 30668 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.9 MiB 0.10 1319 14201 4126 9212 863 63.1 MiB 0.15 0.00 3.98862 -138.158 -3.98862 3.98862 0.68 0.00078546 0.00073097 0.0504527 0.0469236 26 3717 30 6.64007e+06 464646 477104. 1650.88 2.08 0.157177 0.138893 21682 110474 -1 2913 22 2267 3633 259163 57554 4.43548 4.43548 -164.935 -4.43548 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0337177 0.0295355 179 -1 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.53 vpr 62.89 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30908 -1 -1 34 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.17 933 11922 3200 7973 749 62.9 MiB 0.12 0.00 3.0493 -94.9385 -3.0493 3.0493 0.71 0.000717155 0.000664646 0.0410553 0.0379339 26 2852 39 6.64007e+06 426972 477104. 1650.88 1.58 0.146292 0.128127 21682 110474 -1 2052 22 1477 2392 174319 39442 3.01497 3.01497 -115.242 -3.01497 0 0 585099. 2024.56 0.16 0.08 0.11 -1 -1 0.16 0.0304411 0.0265039 138 47 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.58 vpr 62.20 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30808 -1 -1 21 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63688 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 618 12636 5283 6147 1206 62.2 MiB 0.11 0.00 2.7691 -80.1779 -2.7691 2.7691 0.73 0.00057056 0.000531352 0.044357 0.041333 30 1370 21 6.64007e+06 263718 526063. 1820.29 0.79 0.112733 0.0998126 22546 126617 -1 1207 19 873 1304 75377 17624 2.73477 2.73477 -92.6378 -2.73477 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.021503 0.0187244 107 26 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.71 vpr 63.18 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30836 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1408 20856 5903 12498 2455 63.2 MiB 0.24 0.00 3.68056 -120.284 -3.68056 3.68056 0.77 0.00165536 0.00153148 0.0818049 0.0758887 28 3867 25 6.64007e+06 527436 500653. 1732.36 1.58 0.211171 0.186986 21970 115934 -1 3058 23 2289 3962 285706 62269 3.98803 3.98803 -151.32 -3.98803 0 0 612192. 2118.31 0.17 0.11 0.11 -1 -1 0.17 0.0396322 0.0343961 186 85 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.89 vpr 63.20 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30800 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.22 998 13663 3314 9461 888 63.2 MiB 0.15 0.00 3.64105 -116.247 -3.64105 3.64105 0.69 0.000826467 0.000769315 0.063202 0.0588091 32 2344 20 6.64007e+06 276276 554710. 1919.41 0.94 0.156353 0.138767 22834 132086 -1 2031 20 1538 2570 171721 38890 3.68762 3.68762 -138.107 -3.68762 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0323323 0.0281772 145 105 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.33 vpr 62.77 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30560 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.20 889 14012 4590 7312 2110 62.8 MiB 0.10 0.00 2.9543 -94.0722 -2.9543 2.9543 0.69 0.000304858 0.000280083 0.0411042 0.0378464 34 1929 19 6.64007e+06 200928 585099. 2024.56 2.51 0.189349 0.164348 23122 138558 -1 1687 18 833 1342 94013 20962 2.66677 2.66677 -107.101 -2.66677 0 0 742403. 2568.87 0.20 0.06 0.12 -1 -1 0.20 0.0246304 0.0215289 108 86 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.12 vpr 63.20 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30584 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.6 MiB 0.07 864 10975 2845 7130 1000 63.2 MiB 0.12 0.00 3.67756 -111.982 -3.67756 3.67756 0.70 0.000731621 0.000680283 0.0383969 0.0357178 30 2913 24 6.64007e+06 414414 526063. 1820.29 1.34 0.134265 0.118842 22546 126617 -1 1968 19 1184 1805 97123 24262 3.93422 3.93422 -134.144 -3.93422 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0264808 0.0232319 147 31 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.92 vpr 63.05 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30936 -1 -1 38 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.8 MiB 0.13 1111 19841 6069 11064 2708 63.1 MiB 0.20 0.00 3.59955 -116.274 -3.59955 3.59955 0.68 0.00101847 0.000947966 0.0696021 0.0643336 32 2618 21 6.64007e+06 477204 554710. 1919.41 0.95 0.161415 0.143427 22834 132086 -1 2290 22 2032 3077 199563 45496 3.75563 3.75563 -140.993 -3.75563 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0356312 0.0310849 173 50 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.19 vpr 63.04 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30660 -1 -1 34 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 969 9513 2227 6493 793 63.0 MiB 0.10 0.00 2.9811 -89.5745 -2.9811 2.9811 0.68 0.00071678 0.000666557 0.0335539 0.0312023 26 2757 45 6.64007e+06 426972 477104. 1650.88 1.47 0.147003 0.128778 21682 110474 -1 2221 18 1424 2439 171108 38943 3.23156 3.23156 -112.86 -3.23156 0 0 585099. 2024.56 0.19 0.08 0.10 -1 -1 0.19 0.0265442 0.0232399 135 50 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.29 vpr 62.89 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30720 -1 -1 43 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.4 MiB 0.13 965 13263 3254 9396 613 62.9 MiB 0.13 0.00 3.47836 -117.279 -3.47836 3.47836 0.73 0.000777089 0.000723294 0.0435348 0.0404836 28 2860 24 6.64007e+06 539994 500653. 1732.36 1.42 0.140539 0.124229 21970 115934 -1 2315 24 1916 3193 262074 56666 4.23643 4.23643 -153.395 -4.23643 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0348841 0.0304022 158 61 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.84 vpr 63.08 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30708 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1032 16452 4878 8879 2695 63.1 MiB 0.16 0.00 2.7929 -99.564 -2.7929 2.7929 0.71 0.00077769 0.000719771 0.0550425 0.0510548 32 2502 20 6.64007e+06 502320 554710. 1919.41 0.87 0.145673 0.128848 22834 132086 -1 2100 19 1511 2345 155001 35659 2.75977 2.75977 -116.471 -2.75977 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0294681 0.0258264 157 61 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.56 vpr 62.23 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30656 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63720 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.6 MiB 0.08 517 13937 6032 7011 894 62.2 MiB 0.10 0.00 2.9573 -85.052 -2.9573 2.9573 0.70 0.000277763 0.00025601 0.0423164 0.0390462 32 1657 32 6.64007e+06 226044 554710. 1919.41 0.83 0.122267 0.107257 22834 132086 -1 1416 26 1275 1741 155519 38798 3.03517 3.03517 -109.229 -3.03517 0 0 701300. 2426.64 0.22 0.08 0.14 -1 -1 0.22 0.0289585 0.0250914 95 28 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.51 vpr 62.64 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30396 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.7 MiB 0.16 875 12683 4694 6141 1848 62.6 MiB 0.12 0.00 3.16516 -91.0125 -3.16516 3.16516 0.68 0.000653587 0.000607203 0.0481614 0.0447838 30 1775 20 6.64007e+06 238602 526063. 1820.29 0.75 0.123348 0.109148 22546 126617 -1 1561 19 747 1037 71323 15819 2.67877 2.67877 -103.763 -2.67877 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0242968 0.0211438 112 79 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.54 vpr 63.07 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30604 -1 -1 38 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 958 13966 3381 9663 922 63.1 MiB 0.13 0.00 3.98015 -119.136 -3.98015 3.98015 0.68 0.000721333 0.000670997 0.0454091 0.0422343 26 3173 26 6.64007e+06 477204 477104. 1650.88 1.81 0.138946 0.122605 21682 110474 -1 2475 23 2008 3133 248704 56630 4.21563 4.21563 -152.033 -4.21563 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0315403 0.0274822 151 29 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.50 vpr 62.57 MiB 0.04 6928 -1 -1 1 0.03 -1 -1 30604 -1 -1 31 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.18 701 10442 2795 6859 788 62.6 MiB 0.10 0.00 2.9591 -82.01 -2.9591 2.9591 0.68 0.000603544 0.000561446 0.0324326 0.0301411 26 1842 21 6.64007e+06 389298 477104. 1650.88 0.76 0.103238 0.0905877 21682 110474 -1 1624 19 1022 1567 104800 24494 2.77157 2.77157 -101.464 -2.77157 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0227907 0.0198507 108 48 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.57 vpr 62.67 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30524 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 979 10581 3043 6568 970 62.7 MiB 0.10 0.00 2.8409 -104.795 -2.8409 2.8409 0.69 0.000644979 0.000600453 0.0410925 0.0382753 32 2084 23 6.64007e+06 213486 554710. 1919.41 0.81 0.118703 0.104775 22834 132086 -1 1901 21 1466 2462 168529 37291 2.91297 2.91297 -122.458 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0258475 0.0225797 118 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.56 vpr 62.93 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30568 -1 -1 38 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.14 951 13026 3274 8671 1081 62.9 MiB 0.13 0.00 2.8673 -99.0299 -2.8673 2.8673 0.70 0.000746488 0.000691202 0.0440672 0.0408475 26 2270 22 6.64007e+06 477204 477104. 1650.88 0.77 0.132169 0.116539 21682 110474 -1 1899 20 1608 2330 153495 35235 2.90417 2.90417 -115.551 -2.90417 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0290957 0.0253992 144 60 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.37 vpr 62.67 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30560 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 24.0 MiB 0.14 895 11260 3325 6929 1006 62.7 MiB 0.11 0.00 2.70619 -87.3021 -2.70619 2.70619 0.70 0.000630817 0.0005871 0.0431616 0.0401839 30 1880 19 6.64007e+06 213486 526063. 1820.29 0.65 0.0804892 0.0723317 22546 126617 -1 1592 16 716 1221 65416 15295 2.88097 2.88097 -105.713 -2.88097 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0206901 0.0181369 106 49 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.93 vpr 62.87 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30676 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.13 884 11419 2752 8105 562 62.9 MiB 0.12 0.00 2.7379 -92.1963 -2.7379 2.7379 0.71 0.000733336 0.000681158 0.0403054 0.0374327 28 2450 23 6.64007e+06 414414 500653. 1732.36 1.15 0.12936 0.113903 21970 115934 -1 2005 21 1189 2066 161314 35931 2.79577 2.79577 -111.727 -2.79577 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0298218 0.0259788 137 56 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.82 vpr 63.16 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.23 968 9844 2332 6781 731 63.2 MiB 0.11 0.00 3.0995 -98.8191 -3.0995 3.0995 0.69 0.000782518 0.000724642 0.0368698 0.0341746 32 2185 23 6.64007e+06 464646 554710. 1919.41 0.89 0.130693 0.114674 22834 132086 -1 1877 21 1643 2383 154054 35918 2.99917 2.99917 -117.145 -2.99917 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0319711 0.0279038 149 88 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.61 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.13 888 11118 3018 7466 634 62.7 MiB 0.11 0.00 2.44279 -88.8016 -2.44279 2.44279 0.69 0.000661032 0.000614683 0.0435328 0.0405119 32 1939 18 6.64007e+06 226044 554710. 1919.41 0.82 0.119508 0.105892 22834 132086 -1 1764 19 1055 1676 113441 26064 2.62357 2.62357 -106.189 -2.62357 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0250232 0.0218674 115 54 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.65 vpr 62.77 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30488 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.1 MiB 0.15 915 15746 5631 7943 2172 62.8 MiB 0.15 0.00 2.7819 -100.951 -2.7819 2.7819 0.64 0.000671745 0.0006244 0.0614415 0.0571447 32 2242 22 6.64007e+06 226044 554710. 1919.41 0.84 0.142003 0.126255 22834 132086 -1 1963 22 1447 2385 169803 37420 2.87377 2.87377 -119.008 -2.87377 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281679 0.0245045 121 60 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.81 vpr 62.97 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30876 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1027 15334 3953 9399 1982 63.0 MiB 0.15 0.00 3.40436 -120.119 -3.40436 3.40436 0.71 0.000779139 0.000724091 0.0528394 0.0490967 32 2420 21 6.64007e+06 477204 554710. 1919.41 0.89 0.142935 0.126536 22834 132086 -1 2152 22 2051 3116 225966 49224 3.67943 3.67943 -144.058 -3.67943 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.032525 0.0283691 156 49 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.46 vpr 62.95 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30668 -1 -1 34 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.2 MiB 0.13 894 9599 2158 6891 550 63.0 MiB 0.10 0.00 3.00358 -88.3006 -3.00358 3.00358 0.68 0.000704642 0.000655638 0.0338462 0.0314828 30 1987 21 6.64007e+06 426972 526063. 1820.29 0.77 0.116674 0.102491 22546 126617 -1 1737 20 1013 1603 87132 20960 2.92697 2.92697 -105.707 -2.92697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278293 0.0243077 135 54 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 63.14 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 0.24 1020 10707 2395 7696 616 63.1 MiB 0.12 0.00 3.41536 -117.479 -3.41536 3.41536 0.68 0.000850129 0.000789293 0.0404224 0.0374896 32 2576 23 6.64007e+06 489762 554710. 1919.41 0.86 0.142006 0.124213 22834 132086 -1 2201 21 1850 2886 201942 46321 3.76063 3.76063 -144.776 -3.76063 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0419126 0.0363755 158 117 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.50 vpr 62.14 MiB 0.05 6724 -1 -1 1 0.03 -1 -1 30544 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63628 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 760 12292 4714 5795 1783 62.1 MiB 0.10 0.00 2.46479 -83.7107 -2.46479 2.46479 0.68 0.000572979 0.000533479 0.0429312 0.040002 32 1761 30 6.64007e+06 213486 554710. 1919.41 0.79 0.117989 0.10418 22834 132086 -1 1513 17 964 1508 99054 22796 2.64177 2.64177 -100.051 -2.64177 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.02017 0.0176544 106 -1 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 5.27 vpr 62.98 MiB 0.05 7116 -1 -1 1 0.05 -1 -1 30568 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.13 957 19251 5608 11130 2513 63.0 MiB 0.18 0.00 3.43436 -113.195 -3.43436 3.43436 0.68 0.000774143 0.000718559 0.0684997 0.0636313 28 2308 23 6.64007e+06 439530 500653. 1732.36 2.41 0.262541 0.229142 21970 115934 -1 1966 22 1293 2007 138601 33866 3.69603 3.69603 -131.115 -3.69603 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0331671 0.0289662 144 89 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.76 vpr 62.86 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30388 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.1 MiB 0.27 675 13206 3667 7716 1823 62.9 MiB 0.12 0.00 2.8021 -94.9866 -2.8021 2.8021 0.68 0.000708114 0.000657825 0.0556019 0.0516668 32 1741 24 6.64007e+06 213486 554710. 1919.41 0.85 0.141604 0.125321 22834 132086 -1 1322 18 1181 1714 99479 24139 2.87697 2.87697 -110.142 -2.87697 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0256914 0.0224695 114 93 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.54 vpr 63.15 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30668 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1132 10676 2588 7124 964 63.1 MiB 0.11 0.00 2.7537 -100.873 -2.7537 2.7537 0.68 0.000760401 0.00070676 0.0373003 0.0346431 30 2304 20 6.64007e+06 464646 526063. 1820.29 0.78 0.125444 0.110295 22546 126617 -1 2027 22 1039 1499 90655 20249 2.83157 2.83157 -118.37 -2.83157 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0321605 0.0281144 151 59 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.44 vpr 63.36 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30960 -1 -1 45 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.21 1247 16489 4467 10039 1983 63.4 MiB 0.17 0.00 4.01362 -138.867 -4.01362 4.01362 0.70 0.000912055 0.000847583 0.0609304 0.0566288 28 3223 26 6.64007e+06 565110 500653. 1732.36 1.39 0.177039 0.156355 21970 115934 -1 2687 23 2214 3475 281931 57216 4.54109 4.54109 -169.164 -4.54109 0 0 612192. 2118.31 0.17 0.11 0.11 -1 -1 0.17 0.0398636 0.0346661 188 81 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.39 vpr 61.84 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30400 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63324 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.2 MiB 0.08 450 11161 2819 7941 401 61.8 MiB 0.09 0.00 2.34384 -68.5346 -2.34384 2.34384 0.68 0.000525036 0.000488798 0.0376623 0.0350987 32 1250 17 6.64007e+06 188370 554710. 1919.41 0.73 0.0962804 0.0850689 22834 132086 -1 1071 18 649 901 58719 15354 2.08031 2.08031 -77.8172 -2.08031 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0188993 0.0164141 83 51 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 5.16 vpr 62.38 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30636 -1 -1 17 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.7 MiB 0.08 554 11909 4981 5787 1141 62.4 MiB 0.10 0.00 2.9603 -88.207 -2.9603 2.9603 0.68 0.000613297 0.000570462 0.0452066 0.0421086 34 1783 20 6.64007e+06 213486 585099. 2024.56 2.49 0.193974 0.168433 23122 138558 -1 1391 34 1205 1773 154727 41395 3.23257 3.23257 -107.471 -3.23257 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0371443 0.0321372 97 29 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.64 vpr 62.66 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.0 MiB 0.11 809 14500 4701 7312 2487 62.7 MiB 0.14 0.00 2.7647 -96.8383 -2.7647 2.7647 0.68 0.000650227 0.000604689 0.0545644 0.0507983 32 2461 24 6.64007e+06 226044 554710. 1919.41 0.88 0.133413 0.118403 22834 132086 -1 1884 22 1566 2800 177921 42110 3.02917 3.02917 -117.109 -3.02917 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0273934 0.0238696 126 31 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.36 vpr 62.23 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30752 -1 -1 34 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.7 MiB 0.06 734 14371 3886 8696 1789 62.2 MiB 0.11 0.00 2.6877 -74.8543 -2.6877 2.6877 0.68 0.000533395 0.000497095 0.0394777 0.0368045 26 1657 22 6.64007e+06 426972 477104. 1650.88 0.72 0.102899 0.0908404 21682 110474 -1 1500 17 879 1314 89114 19960 2.60137 2.60137 -87.6563 -2.60137 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0186118 0.0162103 103 19 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.63 vpr 63.02 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30684 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.10 1040 15017 5305 7078 2634 63.0 MiB 0.16 0.00 3.50535 -114.203 -3.50535 3.50535 0.68 0.000802448 0.000745515 0.0662522 0.0616157 32 2618 22 6.64007e+06 276276 554710. 1919.41 0.86 0.160765 0.142707 22834 132086 -1 2219 19 1638 2944 184069 42612 3.67243 3.67243 -137.306 -3.67243 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300114 0.0262124 149 84 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.74 vpr 63.23 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30564 -1 -1 39 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1002 13430 3324 8974 1132 63.2 MiB 0.13 0.00 2.8721 -100.605 -2.8721 2.8721 0.68 0.000777138 0.000721396 0.0467419 0.0432849 26 2502 24 6.64007e+06 489762 477104. 1650.88 0.91 0.140835 0.123892 21682 110474 -1 2199 20 1764 2784 189983 43254 3.07317 3.07317 -121.17 -3.07317 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0303702 0.0265246 148 88 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 5.00 vpr 62.74 MiB 0.03 7092 -1 -1 1 0.04 -1 -1 31124 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.20 986 10448 2384 7525 539 62.7 MiB 0.12 0.00 3.15264 -109.774 -3.15264 3.15264 0.68 0.000813541 0.000757491 0.0404749 0.0376498 28 3163 32 6.65987e+06 431052 500653. 1732.36 2.16 0.152519 0.133936 21970 115934 -1 2397 22 1820 2977 253020 58466 3.85651 3.85651 -148.316 -3.85651 0 0 612192. 2118.31 0.18 0.10 0.13 -1 -1 0.18 0.034461 0.0300764 151 80 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.04 vpr 62.95 MiB 0.04 7144 -1 -1 1 0.04 -1 -1 30888 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.32 820 8723 2048 5614 1061 62.9 MiB 0.10 0.00 3.4945 -99.7351 -3.4945 3.4945 0.71 0.000758426 0.000704868 0.0394237 0.0366896 32 2296 25 6.65987e+06 266238 554710. 1919.41 0.85 0.132882 0.116923 22834 132086 -1 1832 21 1767 2982 182533 45733 3.63131 3.63131 -124.881 -3.63131 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0312455 0.0273109 140 78 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.69 vpr 62.88 MiB 0.04 7052 -1 -1 1 0.04 -1 -1 30808 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.14 1020 12923 3600 8556 767 62.9 MiB 0.12 0.00 2.72347 -97.3331 -2.72347 2.72347 0.68 0.000743267 0.00069252 0.0451581 0.0420177 28 2579 24 6.65987e+06 431052 500653. 1732.36 0.92 0.135356 0.119504 21970 115934 -1 2322 25 1528 2564 216552 47919 3.30179 3.30179 -126.216 -3.30179 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0347479 0.0302568 141 50 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.02 vpr 62.84 MiB 0.05 7076 -1 -1 1 0.05 -1 -1 30644 -1 -1 22 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64344 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1030 14303 4432 7818 2053 62.8 MiB 0.15 0.00 3.4563 -105.804 -3.4563 3.4563 0.69 0.000677533 0.000629418 0.0567197 0.0528034 28 2485 24 6.65987e+06 278916 500653. 1732.36 1.03 0.141872 0.125993 21970 115934 -1 2197 23 1706 2997 228753 51587 3.99311 3.99311 -134.241 -3.99311 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0304666 0.0265971 138 25 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.90 vpr 62.84 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1002 9600 2619 6430 551 62.8 MiB 0.11 0.00 3.30796 -116.492 -3.30796 3.30796 0.77 0.000736094 0.000689277 0.0411061 0.0382616 32 2941 26 6.65987e+06 253560 554710. 1919.41 0.93 0.134226 0.118374 22834 132086 -1 2469 23 2144 3831 290476 67791 3.84583 3.84583 -149.169 -3.84583 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0329689 0.0288825 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 62.64 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30780 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1018 9501 1932 7142 427 62.6 MiB 0.11 0.00 2.66064 -94.5007 -2.66064 2.66064 0.75 0.000769104 0.000714951 0.0354225 0.0328965 26 2812 27 6.65987e+06 469086 477104. 1650.88 1.29 0.135525 0.118964 21682 110474 -1 2287 19 1517 2486 185293 43600 2.86791 2.86791 -118.538 -2.86791 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0292935 0.0256744 154 61 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.76 vpr 62.02 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30892 -1 -1 19 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63504 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.4 MiB 0.16 581 13026 5446 6285 1295 62.0 MiB 0.12 0.00 3.0353 -79.6884 -3.0353 3.0353 0.83 0.000565291 0.000526894 0.0504622 0.0469772 32 1612 25 6.65987e+06 240882 554710. 1919.41 0.82 0.119137 0.105586 22834 132086 -1 1334 20 1070 1798 123249 29969 3.04617 3.04617 -96.4229 -3.04617 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0227379 0.0198137 96 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.89 vpr 62.97 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30400 -1 -1 33 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1025 11046 2936 7024 1086 63.0 MiB 0.24 0.00 2.73284 -90.0098 -2.73284 2.73284 0.72 0.000483501 0.0004435 0.0296706 0.0273581 32 2370 32 6.65987e+06 418374 554710. 1919.41 0.89 0.119417 0.10446 22834 132086 -1 2125 19 1246 2138 158500 36435 2.74691 2.74691 -104.802 -2.74691 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0255386 0.0223918 139 -1 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.78 vpr 62.56 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30480 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.9 MiB 0.25 806 7853 2025 5355 473 62.6 MiB 0.08 0.00 2.45267 -82.8473 -2.45267 2.45267 0.69 0.000659995 0.000613915 0.0328478 0.0305944 28 1910 21 6.65987e+06 202848 500653. 1732.36 0.91 0.10858 0.0956154 21970 115934 -1 1754 18 946 1504 120582 27078 2.43505 2.43505 -100.944 -2.43505 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.023969 0.0209984 105 81 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.80 vpr 62.51 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30524 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.23 884 7992 2012 5204 776 62.5 MiB 0.09 0.00 2.7537 -99.6086 -2.7537 2.7537 0.68 0.000566114 0.000522528 0.0314671 0.0292883 32 1978 23 6.65987e+06 202848 554710. 1919.41 0.86 0.11011 0.096981 22834 132086 -1 1803 21 1494 2301 164320 36915 2.90477 2.90477 -118.861 -2.90477 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0267928 0.0234993 121 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.81 vpr 62.48 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63976 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.8 MiB 0.22 653 12078 2741 8673 664 62.5 MiB 0.11 0.00 2.80139 -89.1444 -2.80139 2.80139 0.71 0.000662378 0.000616575 0.0488848 0.045476 32 1767 19 6.65987e+06 215526 554710. 1919.41 0.95 0.129115 0.115348 22834 132086 -1 1535 19 1066 1511 100473 25114 3.04917 3.04917 -111.44 -3.04917 0 0 701300. 2426.64 0.19 0.06 0.13 -1 -1 0.19 0.0250401 0.0218793 110 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.90 vpr 62.57 MiB 0.05 6784 -1 -1 1 0.03 -1 -1 30840 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.8 MiB 0.21 834 10383 2397 7480 506 62.6 MiB 0.10 0.00 2.44518 -85.204 -2.44518 2.44518 0.71 0.000658942 0.000613068 0.0346672 0.0322344 30 2055 15 6.65987e+06 367662 526063. 1820.29 0.87 0.106613 0.0939609 22546 126617 -1 1727 22 1140 1907 118818 27627 2.74465 2.74465 -104.293 -2.74465 0 0 666494. 2306.21 0.20 0.10 0.10 -1 -1 0.20 0.0390887 0.0342247 114 57 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 5.17 vpr 62.93 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30508 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.2 MiB 0.35 763 12360 3452 7421 1487 62.9 MiB 0.13 0.00 2.8739 -95.0908 -2.8739 2.8739 0.68 0.000747583 0.000695413 0.0446589 0.0414701 36 1851 24 6.65987e+06 405696 612192. 2118.31 2.13 0.195847 0.171065 23410 145293 -1 1530 21 1459 2510 143094 36624 2.87597 2.87597 -106.282 -2.87597 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0305151 0.0266743 143 55 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.84 vpr 62.54 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30708 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.1 MiB 0.24 1041 9098 2060 6457 581 62.5 MiB 0.11 0.00 3.1647 -112.627 -3.1647 3.1647 0.72 0.000782716 0.000726809 0.0345185 0.0320517 32 2597 21 6.65987e+06 431052 554710. 1919.41 0.89 0.126957 0.111437 22834 132086 -1 2360 20 1925 2941 233005 52517 3.61117 3.61117 -143.665 -3.61117 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0308667 0.0270502 156 60 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.48 vpr 62.19 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30896 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63684 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.7 MiB 0.15 671 8191 2023 5330 838 62.2 MiB 0.08 0.00 2.43238 -74.1781 -2.43238 2.43238 0.68 0.000575926 0.000536857 0.0299121 0.0278913 32 1804 23 6.65987e+06 228204 554710. 1919.41 0.77 0.0999023 0.0877245 22834 132086 -1 1566 20 1153 1947 133245 32188 2.63245 2.63245 -91.7375 -2.63245 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0229575 0.0199924 107 21 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.81 vpr 63.13 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30548 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1053 10149 2578 6717 854 63.1 MiB 0.12 0.00 2.7929 -102.809 -2.7929 2.7929 0.69 0.000761513 0.000707645 0.0449855 0.0418536 32 2635 25 6.65987e+06 253560 554710. 1919.41 0.87 0.139173 0.122781 22834 132086 -1 2331 23 1871 3319 252904 57699 3.12737 3.12737 -124.938 -3.12737 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0339693 0.02965 146 60 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 3.76 vpr 62.94 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1040 14048 4104 8684 1260 62.9 MiB 0.13 0.00 2.8109 -102.334 -2.8109 2.8109 0.68 0.000763052 0.000710811 0.0503772 0.0468981 28 2293 23 6.65987e+06 431052 500653. 1732.36 0.83 0.141315 0.125181 21970 115934 -1 2009 19 1346 1993 132634 30427 2.87877 2.87877 -122.766 -2.87877 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0283819 0.0248875 142 54 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.65 vpr 62.52 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30416 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 24.0 MiB 0.19 768 16495 5830 8068 2597 62.5 MiB 0.14 0.00 2.23864 -80.9004 -2.23864 2.23864 0.69 0.000669961 0.000621779 0.0544422 0.0505332 32 2051 23 6.65987e+06 380340 554710. 1919.41 0.82 0.135326 0.119914 22834 132086 -1 1651 19 1103 1639 126357 30270 2.36891 2.36891 -94.4961 -2.36891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0256599 0.0224403 118 62 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.24 vpr 62.04 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30364 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.6 MiB 0.09 718 10672 3411 5794 1467 62.0 MiB 0.09 0.00 1.99938 -69.5127 -1.99938 1.99938 0.68 0.000656535 0.00061466 0.0379945 0.0353691 32 1487 18 6.65987e+06 190170 554710. 1919.41 0.73 0.0951234 0.0841879 22834 132086 -1 1443 17 672 975 86248 19109 1.95305 1.95305 -82.7132 -1.95305 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0176803 0.0154246 85 29 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.63 vpr 62.55 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30660 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.8 MiB 0.20 750 13937 4328 7755 1854 62.6 MiB 0.13 0.00 3.15104 -96.608 -3.15104 3.15104 0.68 0.000657957 0.000611327 0.0568632 0.05291 32 1855 19 6.65987e+06 202848 554710. 1919.41 0.77 0.132545 0.117745 22834 132086 -1 1658 20 935 1412 110202 25309 3.10865 3.10865 -111.959 -3.10865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0264202 0.0231084 113 55 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.62 vpr 62.80 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30464 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.07 984 9773 2309 7055 409 62.8 MiB 0.10 0.00 3.1409 -107.335 -3.1409 3.1409 0.68 0.00072404 0.000672699 0.0340773 0.0316852 30 2198 24 6.65987e+06 431052 526063. 1820.29 0.85 0.123172 0.108257 22546 126617 -1 1895 21 1384 2025 120871 27333 3.36697 3.36697 -124.474 -3.36697 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0301477 0.0264092 145 31 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.89 vpr 62.79 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30884 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.6 MiB 0.29 1162 11004 2786 7279 939 62.8 MiB 0.12 0.00 2.67564 -97.0154 -2.67564 2.67564 0.71 0.000848179 0.000787248 0.0431971 0.040142 32 2691 29 6.65987e+06 456408 554710. 1919.41 0.92 0.155065 0.135655 22834 132086 -1 2315 18 1515 2329 158447 37114 3.33385 3.33385 -124.928 -3.33385 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0302964 0.0264726 149 108 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.40 vpr 61.74 MiB 0.04 6640 -1 -1 1 0.02 -1 -1 30836 -1 -1 17 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63220 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.1 MiB 0.15 559 10661 3192 6660 809 61.7 MiB 0.08 0.00 2.01838 -57.8284 -2.01838 2.01838 0.72 0.00044218 0.000412002 0.0313509 0.0292081 32 1249 19 6.65987e+06 215526 554710. 1919.41 0.74 0.0842433 0.0746642 22834 132086 -1 1120 18 588 904 66651 15447 1.84385 1.84385 -68.9207 -1.84385 0 0 701300. 2426.64 0.19 0.04 0.09 -1 -1 0.19 0.0162538 0.0141906 77 21 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.71 vpr 62.73 MiB 0.05 6872 -1 -1 1 0.03 -1 -1 30368 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1077 13626 4613 7246 1767 62.7 MiB 0.14 0.00 3.30433 -110.393 -3.30433 3.30433 0.68 0.000684022 0.000636745 0.0537213 0.0500289 32 2573 27 6.65987e+06 253560 554710. 1919.41 0.88 0.141289 0.125282 22834 132086 -1 2208 22 1782 3027 228970 52876 3.56037 3.56037 -132.832 -3.56037 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0309976 0.0272426 137 -1 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.36 vpr 61.55 MiB 0.04 6628 -1 -1 1 0.03 -1 -1 30580 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63028 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 741 11650 4026 6299 1325 61.6 MiB 0.09 0.00 1.76538 -70.1149 -1.76538 1.76538 0.68 0.000467901 0.000435187 0.0350072 0.0325984 26 1553 16 6.65987e+06 164814 477104. 1650.88 0.80 0.086724 0.0770508 21682 110474 -1 1419 18 694 917 71846 16386 2.01205 2.01205 -85.6329 -2.01205 0 0 585099. 2024.56 0.16 0.05 0.10 -1 -1 0.16 0.0171703 0.0150816 81 -1 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.66 vpr 62.89 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30860 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1100 19633 6390 10972 2271 62.9 MiB 0.18 0.00 3.2039 -113.493 -3.2039 3.2039 0.68 0.000732873 0.000681655 0.0678164 0.0630743 32 2712 20 6.65987e+06 418374 554710. 1919.41 0.86 0.15377 0.137108 22834 132086 -1 2264 22 1862 2793 231057 51424 3.88277 3.88277 -140.188 -3.88277 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318106 0.0278474 151 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.64 vpr 62.72 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30328 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1098 12411 3107 8122 1182 62.7 MiB 0.12 0.00 2.67564 -97.1126 -2.67564 2.67564 0.68 0.000695066 0.000645658 0.0403598 0.0375162 32 2418 21 6.65987e+06 443730 554710. 1919.41 0.83 0.122319 0.108103 22834 132086 -1 2179 21 1597 2620 177890 41286 2.64071 2.64071 -110.898 -2.64071 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0290127 0.0253982 150 -1 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.76 vpr 62.94 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30816 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.5 MiB 0.12 996 11955 2998 8493 464 62.9 MiB 0.13 0.00 3.19664 -109.91 -3.19664 3.19664 0.71 0.0007706 0.000715902 0.0431499 0.0401342 30 2448 23 6.65987e+06 443730 526063. 1820.29 0.89 0.135066 0.119261 22546 126617 -1 2039 23 1708 2989 160843 38663 3.39365 3.39365 -132.776 -3.39365 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0341567 0.0299041 153 54 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.41 vpr 62.27 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30400 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.8 MiB 0.04 876 9374 2633 6149 592 62.3 MiB 0.09 0.00 2.30182 -84.3634 -2.30182 2.30182 0.69 0.000616564 0.000573758 0.0363045 0.0338222 32 2038 23 6.65987e+06 190170 554710. 1919.41 0.79 0.11037 0.0971954 22834 132086 -1 1855 24 1100 1781 157334 35474 2.80591 2.80591 -105.972 -2.80591 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0282463 0.0245853 106 31 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.53 vpr 62.54 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30304 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 755 12681 3724 7149 1808 62.5 MiB 0.11 0.00 2.8721 -94.5402 -2.8721 2.8721 0.68 0.000612703 0.000570673 0.0464922 0.0433448 32 1775 21 6.65987e+06 240882 554710. 1919.41 0.79 0.118631 0.105093 22834 132086 -1 1581 19 1131 1633 112123 26575 3.03817 3.03817 -110.46 -3.03817 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236775 0.0207002 115 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.59 vpr 62.27 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30572 -1 -1 20 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63768 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 0.12 776 13668 4128 7791 1749 62.3 MiB 0.12 0.00 2.7097 -85.6959 -2.7097 2.7097 0.68 0.000587917 0.000547103 0.0489611 0.045575 32 1974 30 6.65987e+06 253560 554710. 1919.41 0.84 0.126598 0.112008 22834 132086 -1 1815 18 1194 2008 158724 37254 2.96817 2.96817 -106.752 -2.96817 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0216308 0.0189244 107 27 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.41 vpr 62.60 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30580 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.11 702 4888 903 3308 677 62.6 MiB 0.06 0.00 2.7647 -95.1525 -2.7647 2.7647 0.68 0.000618549 0.000576703 0.018954 0.0176871 30 2093 22 6.65987e+06 228204 526063. 1820.29 0.78 0.0875527 0.0766345 22546 126617 -1 1575 24 1267 1969 123032 29351 2.88191 2.88191 -112.269 -2.88191 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0280617 0.0244612 125 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.65 vpr 62.23 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30528 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 805 17134 4862 9825 2447 62.2 MiB 0.15 0.00 2.66578 -92.343 -2.66578 2.66578 0.70 0.000626096 0.000581486 0.0525792 0.0488776 32 2082 49 6.65987e+06 393018 554710. 1919.41 0.92 0.151346 0.133207 22834 132086 -1 1791 21 1320 2213 172712 39863 2.66645 2.66645 -105.548 -2.66645 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0256685 0.0223662 119 26 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.55 vpr 62.51 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30392 -1 -1 30 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.21 754 9475 2385 6417 673 62.5 MiB 0.09 0.00 2.17493 -72.8492 -2.17493 2.17493 0.69 0.000634834 0.000583624 0.0311469 0.0289199 26 1927 19 6.65987e+06 380340 477104. 1650.88 1.81 0.173012 0.149651 21682 110474 -1 1634 21 1101 1789 135047 33956 2.32465 2.32465 -90.8597 -2.32465 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0279481 0.024492 109 55 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 3.96 vpr 62.92 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30700 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.6 MiB 0.28 1243 12153 3283 7976 894 62.9 MiB 0.14 0.00 3.41716 -119.933 -3.41716 3.41716 0.68 0.000835876 0.000776829 0.0450045 0.0418529 28 3153 22 6.65987e+06 494442 500653. 1732.36 1.01 0.145486 0.128398 21970 115934 -1 2776 20 1831 3127 221903 49345 3.68163 3.68163 -144.137 -3.68163 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0331712 0.0290849 179 26 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.76 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30800 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1019 10359 2493 7168 698 63.1 MiB 0.11 0.00 2.8501 -99.3889 -2.8501 2.8501 0.68 0.000768809 0.000712486 0.0384485 0.0355932 32 2303 21 6.65987e+06 443730 554710. 1919.41 0.83 0.129248 0.113741 22834 132086 -1 2039 20 1816 2694 175595 41768 2.90477 2.90477 -117.166 -2.90477 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307765 0.0270171 152 62 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.84 vpr 62.55 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30856 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.29 747 9067 1968 6729 370 62.6 MiB 0.09 0.00 2.46718 -83.3743 -2.46718 2.46718 0.72 0.000682317 0.000635251 0.0326592 0.0303535 28 2199 19 6.65987e+06 354984 500653. 1732.36 0.89 0.110547 0.0969682 21970 115934 -1 1762 23 1158 1728 134702 32443 2.87265 2.87265 -109.009 -2.87265 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0313549 0.0271142 113 77 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.74 vpr 62.80 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1141 14724 4281 8560 1883 62.8 MiB 0.15 0.00 2.7709 -97.8546 -2.7709 2.7709 0.68 0.000747118 0.000693373 0.0626148 0.058199 28 2687 21 6.65987e+06 266238 500653. 1732.36 0.84 0.150252 0.133476 21970 115934 -1 2344 18 1510 2471 174443 39046 2.84965 2.84965 -116.889 -2.84965 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0275679 0.0241988 148 59 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.86 vpr 63.36 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30820 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.5 MiB 0.31 1077 8868 1863 6519 486 63.4 MiB 0.11 0.00 3.96764 -116.375 -3.96764 3.96764 0.70 0.000839672 0.000780623 0.0432366 0.0402474 30 2409 20 6.65987e+06 266238 526063. 1820.29 0.88 0.13901 0.122176 22546 126617 -1 2026 20 1208 1983 121631 27555 3.72091 3.72091 -131.692 -3.72091 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0327526 0.0285739 149 111 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.87 vpr 62.96 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30608 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 939 9600 2615 6358 627 63.0 MiB 0.11 0.00 3.8015 -105.375 -3.8015 3.8015 0.68 0.000778735 0.000724105 0.0432131 0.0402057 32 2510 23 6.65987e+06 266238 554710. 1919.41 0.86 0.135885 0.11985 22834 132086 -1 2148 21 1599 2656 208966 47971 3.69497 3.69497 -132.135 -3.69497 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0324258 0.0284415 143 86 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.88 vpr 62.62 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30484 -1 -1 33 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1014 15645 4615 8488 2542 62.6 MiB 0.16 0.00 2.62144 -91.6007 -2.62144 2.62144 0.68 0.000722992 0.000671723 0.0549261 0.0508927 32 2635 28 6.65987e+06 418374 554710. 1919.41 0.94 0.151194 0.133595 22834 132086 -1 2193 23 1742 2864 223500 51135 2.88291 2.88291 -112.016 -2.88291 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0330401 0.0288264 146 58 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.60 vpr 62.73 MiB 0.05 7044 -1 -1 1 0.04 -1 -1 30660 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 0.11 1114 9675 2104 6817 754 62.7 MiB 0.10 0.00 3.07644 -110.228 -3.07644 3.07644 0.68 0.000766043 0.000711891 0.0352718 0.0327836 32 2901 21 6.65987e+06 443730 554710. 1919.41 0.86 0.125272 0.110247 22834 132086 -1 2444 24 2078 3108 236665 53034 3.51491 3.51491 -139.577 -3.51491 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0348107 0.0303654 154 42 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 7.02 vpr 63.18 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30868 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.9 MiB 0.34 1087 10840 2392 7745 703 63.2 MiB 0.13 0.00 3.3161 -111.319 -3.3161 3.3161 0.72 0.000918395 0.000853366 0.0449437 0.0418314 28 3000 43 6.65987e+06 507120 500653. 1732.36 3.84 0.287191 0.248668 21970 115934 -1 2609 24 2063 3194 223878 53077 3.83557 3.83557 -145.581 -3.83557 0 0 612192. 2118.31 0.17 0.11 0.11 -1 -1 0.17 0.042116 0.0367748 184 91 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.67 vpr 62.66 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30824 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.13 883 9881 2666 5798 1417 62.7 MiB 0.10 0.00 2.83398 -94.3561 -2.83398 2.83398 0.70 0.000626265 0.000582907 0.0376348 0.0349908 28 2054 24 6.65987e+06 228204 500653. 1732.36 0.86 0.113875 0.100326 21970 115934 -1 1874 22 1346 2072 159279 35650 2.77871 2.77871 -113.682 -2.77871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0269297 0.0235131 116 24 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.18 vpr 62.97 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1236 18111 5153 10456 2502 63.0 MiB 0.16 0.00 3.4271 -115.947 -3.4271 3.4271 0.75 0.000749162 0.000694572 0.0621558 0.0577284 32 2768 43 6.65987e+06 456408 554710. 1919.41 1.13 0.18139 0.160514 22834 132086 -1 2517 20 1759 2719 258578 54730 3.80077 3.80077 -143.079 -3.80077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0300546 0.0263391 150 59 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 4.23 vpr 62.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30812 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1114 19411 5694 11116 2601 62.6 MiB 0.27 0.00 2.90504 -97.9863 -2.90504 2.90504 0.71 0.0007592 0.000705766 0.066827 0.0620067 28 2744 24 6.65987e+06 418374 500653. 1732.36 1.26 0.163603 0.146011 21970 115934 -1 2232 20 1251 2272 160916 35648 2.79551 2.79551 -114.361 -2.79551 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0300527 0.0263122 148 54 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.99 vpr 62.84 MiB 0.04 6824 -1 -1 1 0.03 -1 -1 30656 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1089 14907 4588 8751 1568 62.8 MiB 0.16 0.00 3.30796 -119.004 -3.30796 3.30796 0.70 0.000702589 0.000653624 0.0599491 0.0558212 32 2990 25 6.65987e+06 253560 554710. 1919.41 1.09 0.155961 0.139025 22834 132086 -1 2486 22 2040 3606 297417 68330 3.99483 3.99483 -154.467 -3.99483 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.031147 0.0273627 150 -1 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.11 vpr 63.16 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30564 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1043 17423 4926 9715 2782 63.2 MiB 0.17 0.00 2.54238 -93.6622 -2.54238 2.54238 0.72 0.000784205 0.000728229 0.0641118 0.0595515 28 2424 23 6.65987e+06 431052 500653. 1732.36 1.02 0.159393 0.141422 21970 115934 -1 2122 18 1364 2100 139922 32333 2.80445 2.80445 -113.892 -2.80445 0 0 612192. 2118.31 0.17 0.07 0.12 -1 -1 0.17 0.02842 0.0249418 145 81 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.43 vpr 62.51 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.30 987 9903 2078 7336 489 62.5 MiB 0.11 0.00 2.8739 -100.942 -2.8739 2.8739 0.68 0.000759294 0.0007064 0.0356716 0.0331765 28 2695 26 6.65987e+06 443730 500653. 1732.36 1.45 0.135788 0.119933 21970 115934 -1 2252 20 1424 2354 166541 39318 3.10237 3.10237 -125.798 -3.10237 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.030387 0.0266115 146 58 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.77 vpr 62.94 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30796 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1114 15846 4290 10313 1243 62.9 MiB 0.16 0.00 2.63244 -96.3801 -2.63244 2.63244 0.68 0.000775744 0.000718195 0.0551703 0.0510136 30 2329 22 6.65987e+06 469086 526063. 1820.29 0.80 0.146132 0.129412 22546 126617 -1 2017 20 1460 2282 124079 28353 2.58711 2.58711 -110.257 -2.58711 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0322054 0.0283418 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.87 vpr 62.51 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30756 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1044 18111 5689 9985 2437 62.5 MiB 0.17 0.00 3.1757 -112.337 -3.1757 3.1757 0.69 0.000735163 0.000683599 0.0614581 0.0571759 28 2670 24 6.65987e+06 443730 500653. 1732.36 1.06 0.149347 0.132914 21970 115934 -1 2272 20 1666 2759 209825 46633 3.77957 3.77957 -144.043 -3.77957 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0277757 0.0245257 150 21 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.75 vpr 62.54 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30864 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.1 MiB 0.15 870 13731 3659 8227 1845 62.5 MiB 0.13 0.00 3.18084 -106.536 -3.18084 3.18084 0.68 0.000785605 0.000730733 0.0481688 0.0447465 30 2573 25 6.65987e+06 469086 526063. 1820.29 0.90 0.14283 0.126058 22546 126617 -1 1852 21 1594 2523 138496 34302 3.66131 3.66131 -134.951 -3.66131 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0316176 0.027646 153 50 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 5.83 vpr 62.78 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 34 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.33 1064 10531 2702 7276 553 62.8 MiB 0.12 0.00 3.40198 -100.358 -3.40198 3.40198 0.68 0.000820799 0.000761655 0.0417663 0.0387869 28 2922 22 6.65987e+06 431052 500653. 1732.36 2.71 0.245572 0.212112 21970 115934 -1 2318 24 1684 2948 241653 52249 3.83165 3.83165 -132.866 -3.83165 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0339546 0.0295768 145 110 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.88 vpr 62.95 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30528 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1098 15639 5253 8536 1850 63.0 MiB 0.17 0.00 3.20378 -103.942 -3.20378 3.20378 0.69 0.000805749 0.000749685 0.0712449 0.0662392 32 2832 22 6.65987e+06 253560 554710. 1919.41 0.90 0.166709 0.148157 22834 132086 -1 2468 22 1709 3061 257849 55365 3.43205 3.43205 -128.16 -3.43205 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0342103 0.0298541 149 86 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.48 vpr 62.55 MiB 0.04 6820 -1 -1 1 0.03 -1 -1 30724 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.8 MiB 0.06 869 16495 5012 9026 2457 62.5 MiB 0.14 0.00 2.55038 -93.1364 -2.55038 2.55038 0.68 0.000634931 0.000591176 0.0527865 0.0491467 30 2084 20 6.65987e+06 380340 526063. 1820.29 0.79 0.126606 0.11253 22546 126617 -1 1805 19 1052 1685 96675 22715 2.68545 2.68545 -108.516 -2.68545 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0318605 0.0277435 124 20 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.71 vpr 62.64 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30648 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.25 909 9872 2816 6407 649 62.6 MiB 0.11 0.00 2.66064 -96.9536 -2.66064 2.66064 0.69 0.000700636 0.00065183 0.0414154 0.0385441 32 2082 23 6.65987e+06 228204 554710. 1919.41 0.82 0.12575 0.110821 22834 132086 -1 1964 25 1491 2363 182070 40802 3.08931 3.08931 -119.238 -3.08931 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0330868 0.0287838 121 91 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.09 vpr 62.98 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 31028 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.8 MiB 0.15 1300 12060 3036 8187 837 63.0 MiB 0.14 0.00 3.7069 -130.393 -3.7069 3.7069 0.68 0.000884165 0.000822826 0.0465248 0.0432776 28 3256 25 6.65987e+06 507120 500653. 1732.36 1.23 0.156466 0.137763 21970 115934 -1 2707 25 2521 4118 270420 63572 4.56517 4.56517 -167.775 -4.56517 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0415672 0.0362319 187 53 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.71 vpr 62.77 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30560 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.21 1092 12407 3099 7758 1550 62.8 MiB 0.12 0.00 2.7929 -102.208 -2.7929 2.7929 0.68 0.000727616 0.000676281 0.0444675 0.0413823 32 2480 20 6.65987e+06 393018 554710. 1919.41 0.81 0.127657 0.112929 22834 132086 -1 2134 21 1556 2308 175967 40181 2.94077 2.94077 -122.848 -2.94077 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303629 0.0266089 146 31 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.85 vpr 62.30 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30492 -1 -1 30 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63792 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.8 MiB 0.10 859 16031 4317 10378 1336 62.3 MiB 0.14 0.00 2.8189 -96.1115 -2.8189 2.8189 0.68 0.000623029 0.000578868 0.050632 0.0471053 32 1874 24 6.65987e+06 380340 554710. 1919.41 1.14 0.149038 0.131163 22834 132086 -1 1771 21 1297 2035 155680 36215 2.91877 2.91877 -114.161 -2.91877 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0252301 0.0220271 115 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 6.44 vpr 63.14 MiB 0.05 7364 -1 -1 1 0.04 -1 -1 31236 -1 -1 43 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 25.0 MiB 0.54 1274 20347 5387 12678 2282 63.1 MiB 0.22 0.00 3.8913 -134.724 -3.8913 3.8913 0.69 0.000951465 0.000884975 0.0798984 0.0742874 28 3478 24 6.65987e+06 545154 500653. 1732.36 3.11 0.333467 0.290609 21970 115934 -1 2878 25 2330 3741 289053 63472 4.87757 4.87757 -175.359 -4.87757 0 0 612192. 2118.31 0.17 0.12 0.11 -1 -1 0.17 0.044378 0.0386495 186 109 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.74 vpr 62.58 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30612 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.2 MiB 0.23 875 6596 1108 5120 368 62.6 MiB 0.08 0.00 3.42816 -115.392 -3.42816 3.42816 0.70 0.000748552 0.000696289 0.0241067 0.0224685 32 2507 23 6.65987e+06 456408 554710. 1919.41 0.89 0.115038 0.100853 22834 132086 -1 2030 22 1828 2655 169957 41821 3.85863 3.85863 -144.26 -3.85863 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0316766 0.0277271 151 31 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.61 vpr 62.63 MiB 0.04 6768 -1 -1 1 0.04 -1 -1 30532 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.8 MiB 0.06 751 18023 5925 9230 2868 62.6 MiB 0.15 0.00 2.8629 -98.7325 -2.8629 2.8629 0.68 0.000620427 0.000564668 0.0535016 0.0497768 32 2422 25 6.65987e+06 393018 554710. 1919.41 0.90 0.129847 0.115331 22834 132086 -1 1815 21 1443 2217 171176 41086 2.98297 2.98297 -116.631 -2.98297 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0255341 0.0223325 123 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 9.64 vpr 62.95 MiB 0.05 7192 -1 -1 1 0.04 -1 -1 31240 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.5 MiB 0.17 1281 18877 5636 10574 2667 62.9 MiB 0.19 0.00 3.75196 -130.392 -3.75196 3.75196 0.68 0.000850229 0.000790127 0.0675593 0.0628176 26 3962 29 6.65987e+06 519798 477104. 1650.88 6.59 0.284734 0.248636 21682 110474 -1 2862 34 3533 5621 587043 192061 4.51923 4.51923 -169.209 -4.51923 0 0 585099. 2024.56 0.17 0.20 0.10 -1 -1 0.17 0.0578879 0.0506954 188 26 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.60 vpr 62.41 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30572 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.13 898 11776 3483 6378 1915 62.4 MiB 0.11 0.00 2.7537 -99.1188 -2.7537 2.7537 0.68 0.000607025 0.000565392 0.0438057 0.040838 32 2152 22 6.65987e+06 202848 554710. 1919.41 0.80 0.117104 0.103668 22834 132086 -1 1944 24 1602 2568 201335 45415 2.96397 2.96397 -120.842 -2.96397 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0281874 0.0245581 121 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.73 vpr 62.36 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30304 -1 -1 31 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.7 MiB 0.21 850 12903 3416 8586 901 62.4 MiB 0.11 0.00 2.7427 -92.992 -2.7427 2.7427 0.68 0.000616712 0.000574347 0.0401018 0.0373482 26 2134 24 6.65987e+06 393018 477104. 1650.88 0.98 0.115568 0.101996 21682 110474 -1 1855 19 1217 2024 157484 35156 2.98517 2.98517 -113.372 -2.98517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0236345 0.0206245 113 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.78 vpr 62.93 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30592 -1 -1 33 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.3 MiB 0.29 974 16921 5061 8933 2927 62.9 MiB 0.16 0.00 2.85398 -92.0118 -2.85398 2.85398 0.69 0.000739011 0.000686551 0.0610132 0.0567086 30 2070 20 6.65987e+06 418374 526063. 1820.29 0.79 0.147324 0.130955 22546 126617 -1 1749 18 1031 1796 91606 22212 2.66437 2.66437 -102.138 -2.66437 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0270746 0.0237683 133 81 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.79 vpr 62.89 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30820 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1014 15090 4607 8313 2170 62.9 MiB 0.15 0.00 3.2179 -113.316 -3.2179 3.2179 0.70 0.000763804 0.000710274 0.0659074 0.0612887 28 2586 29 6.65987e+06 253560 500653. 1732.36 0.96 0.16387 0.145351 21970 115934 -1 2293 20 1750 2654 244715 50148 3.81471 3.81471 -147.63 -3.81471 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.030673 0.0269259 151 53 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.17 vpr 62.68 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30972 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.39 1086 14948 4139 9456 1353 62.7 MiB 0.15 0.00 3.1867 -115.378 -3.1867 3.1867 0.73 0.000777196 0.000722443 0.0540174 0.0502084 28 2644 24 6.65987e+06 431052 500653. 1732.36 1.05 0.148133 0.130986 21970 115934 -1 2298 21 1795 2943 214560 46497 3.49397 3.49397 -140.462 -3.49397 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0318698 0.0279431 152 55 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.72 vpr 62.72 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30632 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.9 MiB 0.21 854 13513 3736 7436 2341 62.7 MiB 0.12 0.00 2.74164 -99.019 -2.74164 2.74164 0.68 0.000680442 0.000632304 0.0453024 0.0421413 32 2077 19 6.65987e+06 380340 554710. 1919.41 0.85 0.138001 0.121884 22834 132086 -1 1753 20 1294 1972 144801 33287 2.92871 2.92871 -113.259 -2.92871 0 0 701300. 2426.64 0.19 0.07 0.13 -1 -1 0.19 0.0272726 0.0239022 120 55 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.72 vpr 62.51 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30672 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.8 MiB 0.28 846 12292 3483 6896 1913 62.5 MiB 0.12 0.00 2.74778 -87.7105 -2.74778 2.74778 0.69 0.000684723 0.000636865 0.050796 0.0472567 32 2002 19 6.65987e+06 215526 554710. 1919.41 0.81 0.130994 0.116158 22834 132086 -1 1745 20 1190 2143 152757 35934 2.75045 2.75045 -104.921 -2.75045 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264158 0.0230222 109 82 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.67 vpr 62.95 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30648 -1 -1 33 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.2 MiB 0.20 982 9815 2378 6551 886 62.9 MiB 0.10 0.00 2.61044 -85.5322 -2.61044 2.61044 0.68 0.000722678 0.000671912 0.03547 0.032977 32 2464 20 6.65987e+06 418374 554710. 1919.41 0.82 0.119572 0.105282 22834 132086 -1 2035 20 1283 2055 149203 33942 3.06711 3.06711 -113.809 -3.06711 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.028712 0.0250882 137 52 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.85 vpr 62.67 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30708 -1 -1 31 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64172 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.1 MiB 0.10 960 15799 4505 9290 2004 62.7 MiB 0.14 0.00 3.41304 -101.557 -3.41304 3.41304 0.69 0.000660276 0.00061506 0.053783 0.0501122 26 2558 22 6.65987e+06 393018 477104. 1650.88 1.10 0.132372 0.117676 21682 110474 -1 2175 24 1703 2578 205223 45889 3.95191 3.95191 -131.783 -3.95191 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0303772 0.0264623 133 20 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.73 vpr 62.52 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30416 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.8 MiB 0.29 788 13324 4213 7397 1714 62.5 MiB 0.13 0.00 2.8131 -94.3504 -2.8131 2.8131 0.68 0.000643064 0.000599067 0.0522791 0.0486724 32 1943 20 6.65987e+06 228204 554710. 1919.41 0.79 0.127529 0.11319 22834 132086 -1 1727 23 1475 2398 188871 42813 2.91877 2.91877 -111.426 -2.91877 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0287071 0.0249944 114 58 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.66 vpr 62.58 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30648 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.26 929 13668 3858 8031 1779 62.6 MiB 0.13 0.00 2.72278 -88.6199 -2.72278 2.72278 0.69 0.000695544 0.000647272 0.05781 0.0537691 30 1888 17 6.65987e+06 202848 526063. 1820.29 0.77 0.135154 0.120074 22546 126617 -1 1642 19 870 1440 85852 19535 2.50825 2.50825 -100.228 -2.50825 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262263 0.0229602 113 88 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.95 vpr 62.61 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30856 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.0 MiB 0.10 1017 10223 2483 7014 726 62.6 MiB 0.13 0.00 3.33845 -110.482 -3.33845 3.33845 0.68 0.000689951 0.000642009 0.0351775 0.0325764 32 2729 26 6.65987e+06 443730 554710. 1919.41 1.27 0.14395 0.125823 22834 132086 -1 2275 17 1608 2625 189938 46013 3.86583 3.86583 -138.301 -3.86583 0 0 701300. 2426.64 0.18 0.08 0.08 -1 -1 0.18 0.024814 0.0218572 150 -1 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.77 vpr 62.61 MiB 0.04 7048 -1 -1 1 0.04 -1 -1 30816 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1089 14273 4310 8986 977 62.6 MiB 0.15 0.00 3.1977 -114.63 -3.1977 3.1977 0.68 0.000780746 0.000725797 0.0519901 0.0483106 26 3258 27 6.65987e+06 431052 477104. 1650.88 1.73 0.15221 0.134584 21682 110474 -1 2470 21 1869 3200 249818 55817 3.89177 3.89177 -149.768 -3.89177 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0322029 0.0282023 153 57 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.22 vpr 62.65 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30712 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.3 MiB 0.32 1012 18098 5939 9761 2398 62.7 MiB 0.18 0.00 3.39516 -117.412 -3.39516 3.39516 0.70 0.000771757 0.000718167 0.0652698 0.0606871 28 3045 23 6.65987e+06 431052 500653. 1732.36 1.11 0.16028 0.142508 21970 115934 -1 2339 20 1769 2935 217793 50017 3.86663 3.86663 -149.147 -3.86663 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0309575 0.0271476 151 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.29 vpr 62.64 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30632 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1069 17021 4782 9262 2977 62.6 MiB 0.19 0.00 3.02144 -104.149 -3.02144 3.02144 0.68 0.000763334 0.000709038 0.0613811 0.0569013 28 2916 24 6.65987e+06 469086 500653. 1732.36 1.22 0.154795 0.137135 21970 115934 -1 2454 22 1795 3133 225838 52228 3.53911 3.53911 -131.242 -3.53911 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0325248 0.0284271 148 62 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.84 vpr 62.59 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30692 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64092 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.8 MiB 0.20 869 10916 3008 6667 1241 62.6 MiB 0.11 0.00 2.7709 -94.7681 -2.7709 2.7709 0.84 0.000621744 0.000578978 0.0411144 0.0383089 28 2150 17 6.65987e+06 228204 500653. 1732.36 0.77 0.110368 0.0977687 21970 115934 -1 1931 20 1157 1892 134477 30235 3.00597 3.00597 -117.464 -3.00597 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0247777 0.0216658 112 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.85 vpr 62.89 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30628 -1 -1 22 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.3 MiB 0.23 899 9051 2518 5752 781 62.9 MiB 0.11 0.00 3.35636 -107.378 -3.35636 3.35636 0.74 0.000720254 0.000670082 0.0387231 0.0359657 32 2312 21 6.65987e+06 278916 554710. 1919.41 0.87 0.124986 0.110161 22834 132086 -1 2037 21 1827 2753 205345 47337 3.69143 3.69143 -132.883 -3.69143 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0304551 0.0266523 145 58 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.31 vpr 62.79 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 31024 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1092 13117 3120 8277 1720 62.8 MiB 0.14 0.00 3.10658 -110.926 -3.10658 3.10658 0.74 0.000872938 0.000812581 0.0490396 0.04559 28 2775 25 6.65987e+06 494442 500653. 1732.36 1.16 0.151461 0.133416 21970 115934 -1 2288 21 1737 2856 202997 45669 3.50585 3.50585 -137.117 -3.50585 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0341727 0.0297331 154 106 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.12 vpr 62.56 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30696 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64064 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1073 12874 3585 7940 1349 62.6 MiB 0.13 0.00 3.14164 -108.479 -3.14164 3.14164 0.76 0.000618626 0.000563504 0.041475 0.0381449 28 2701 21 6.65987e+06 393018 500653. 1732.36 0.99 0.129547 0.114046 21970 115934 -1 2377 22 1689 2741 220177 49543 3.87771 3.87771 -141.198 -3.87771 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0334735 0.0292739 146 79 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.17 vpr 62.99 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30708 -1 -1 30 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.3 MiB 0.28 967 10235 2384 7200 651 63.0 MiB 0.12 0.00 3.0133 -92.0766 -3.0133 3.0133 0.79 0.000786484 0.000730492 0.0394514 0.0365706 26 2597 28 6.65987e+06 380340 477104. 1650.88 1.07 0.13817 0.121249 21682 110474 -1 2171 21 1511 2543 184414 42947 3.05517 3.05517 -114.328 -3.05517 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0309087 0.0269826 136 83 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.09 vpr 62.54 MiB 0.05 7048 -1 -1 1 0.04 -1 -1 30628 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1128 14593 4018 8697 1878 62.5 MiB 0.16 0.00 3.2069 -115.79 -3.2069 3.2069 0.79 0.000786006 0.000730858 0.0648653 0.0603776 32 2867 24 6.65987e+06 266238 554710. 1919.41 1.00 0.161154 0.143456 22834 132086 -1 2542 23 2069 3603 271687 60712 3.72757 3.72757 -143.604 -3.72757 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0341685 0.0298477 154 58 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.92 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30660 -1 -1 34 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.2 MiB 0.20 927 18023 5543 9908 2572 62.9 MiB 0.16 0.00 2.58364 -84.2114 -2.58364 2.58364 0.70 0.000723958 0.00067268 0.0630298 0.0584235 32 2080 20 6.65987e+06 431052 554710. 1919.41 0.88 0.145508 0.12943 22834 132086 -1 1800 20 1356 2148 142472 34293 2.74171 2.74171 -100.081 -2.74171 0 0 701300. 2426.64 0.21 0.08 0.13 -1 -1 0.21 0.0305659 0.0270218 134 81 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.60 vpr 62.41 MiB 0.04 6720 -1 -1 1 0.03 -1 -1 30528 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.09 914 14700 4993 8210 1497 62.4 MiB 0.13 0.00 2.7819 -101.63 -2.7819 2.7819 0.72 0.00061244 0.000569993 0.0544167 0.0506961 32 2025 22 6.65987e+06 202848 554710. 1919.41 0.81 0.128329 0.114205 22834 132086 -1 1817 23 1430 2232 183229 40995 2.82177 2.82177 -117.92 -2.82177 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0279287 0.0244807 116 -1 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.54 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30608 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 873 19633 6384 9822 3427 62.6 MiB 0.18 0.00 3.37316 -113.592 -3.37316 3.37316 0.69 0.000777866 0.000722884 0.0721497 0.0670832 32 3300 43 6.65987e+06 418374 554710. 1919.41 1.35 0.195695 0.173489 22834 132086 -1 2146 27 2211 3372 297252 69318 3.94782 3.94782 -144.625 -3.94782 0 0 701300. 2426.64 0.26 0.13 0.13 -1 -1 0.26 0.0430531 0.0379712 150 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.89 vpr 62.55 MiB 0.05 6940 -1 -1 1 0.04 -1 -1 30684 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 836 11803 3439 7281 1083 62.6 MiB 0.14 0.00 3.37836 -114.253 -3.37836 3.37836 0.68 0.00079919 0.000736315 0.0535216 0.0497236 32 2565 26 6.65987e+06 266238 554710. 1919.41 0.89 0.150395 0.132984 22834 132086 -1 2018 23 2248 3448 217456 55043 3.67883 3.67883 -140.132 -3.67883 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0344484 0.0301268 157 62 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.65 vpr 62.30 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30684 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 23.8 MiB 0.22 882 17313 5947 9030 2336 62.3 MiB 0.15 0.00 2.72758 -89.4265 -2.72758 2.72758 0.69 0.000637767 0.000592311 0.0550702 0.0511302 28 1933 24 6.65987e+06 367662 500653. 1732.36 0.81 0.12714 0.112823 21970 115934 -1 1778 21 1055 1659 121729 28235 2.65225 2.65225 -103.992 -2.65225 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.025762 0.0224382 111 47 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.54 vpr 62.46 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30692 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.11 866 13381 4040 7461 1880 62.5 MiB 0.12 0.00 2.7317 -96.1605 -2.7317 2.7317 0.68 0.000597412 0.000556593 0.0475432 0.0443103 32 2037 19 6.65987e+06 228204 554710. 1919.41 0.79 0.116494 0.103437 22834 132086 -1 1881 20 1357 2102 169856 38312 3.04697 3.04697 -114.345 -3.04697 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0239128 0.0209162 118 -1 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.96 vpr 62.90 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30480 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1021 6666 1326 4871 469 62.9 MiB 0.08 0.00 3.1709 -105.975 -3.1709 3.1709 0.69 0.000736745 0.000684417 0.0250531 0.0232923 26 2513 23 6.65987e+06 405696 477104. 1650.88 1.04 0.113979 0.0995736 21682 110474 -1 2193 23 1622 2375 170916 38901 3.58631 3.58631 -131.514 -3.58631 0 0 585099. 2024.56 0.18 0.08 0.10 -1 -1 0.18 0.0327116 0.0285479 138 56 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.04 vpr 62.59 MiB 0.02 7156 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1096 9892 2319 6657 916 62.6 MiB 0.11 0.00 3.39104 -106.86 -3.39104 3.39104 0.68 0.000760385 0.000706517 0.0377743 0.0351255 26 2847 25 6.65987e+06 380340 477104. 1650.88 1.24 0.132419 0.116366 21682 110474 -1 2360 23 1559 2559 204140 45740 3.94091 3.94091 -133.827 -3.94091 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0335798 0.0292968 134 81 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 5.70 vpr 62.77 MiB 0.03 7180 -1 -1 1 0.03 -1 -1 30760 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.5 MiB 0.07 1311 12639 3746 7797 1096 62.8 MiB 0.14 0.00 3.85936 -131.205 -3.85936 3.85936 0.70 0.000787381 0.000732727 0.046991 0.0437203 30 3118 21 6.65987e+06 443730 526063. 1820.29 2.81 0.251879 0.219012 22546 126617 -1 2587 19 1800 2928 168472 38916 4.26982 4.26982 -157.891 -4.26982 0 0 666494. 2306.21 0.26 0.09 0.11 -1 -1 0.26 0.0321652 0.0284643 177 -1 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.75 vpr 62.95 MiB 0.05 7052 -1 -1 1 0.04 -1 -1 30704 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.27 852 10531 2468 6673 1390 63.0 MiB 0.11 0.00 2.92804 -87.4282 -2.92804 2.92804 0.69 0.000716819 0.000665157 0.0387243 0.0359357 32 2360 23 6.65987e+06 405696 554710. 1919.41 0.84 0.124355 0.109401 22834 132086 -1 1932 23 1577 2413 166585 40206 3.07811 3.07811 -111.312 -3.07811 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0316352 0.0275873 136 47 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.45 vpr 62.12 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30896 -1 -1 20 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 815 13261 4493 6919 1849 62.1 MiB 0.11 0.00 2.6767 -81.2154 -2.6767 2.6767 0.68 0.000560567 0.000520808 0.0463275 0.0431892 32 1618 18 6.65987e+06 253560 554710. 1919.41 0.75 0.110799 0.0983516 22834 132086 -1 1413 20 1011 1458 93970 22863 2.89797 2.89797 -97.8286 -2.89797 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0227343 0.0198344 107 26 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.70 vpr 63.11 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30840 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 24.9 MiB 0.19 1354 11328 2738 7936 654 63.1 MiB 0.13 0.00 3.43804 -112.167 -3.43804 3.43804 0.70 0.000914142 0.000849532 0.0453368 0.0421799 34 3686 27 6.65987e+06 507120 585099. 2024.56 1.67 0.194284 0.169516 23122 138558 -1 2834 24 1984 3672 271329 60078 3.86871 3.86871 -139.953 -3.86871 0 0 742403. 2568.87 0.22 0.12 0.12 -1 -1 0.22 0.0421257 0.0366591 184 85 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.93 vpr 63.06 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30972 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 929 6123 1394 4376 353 63.1 MiB 0.08 0.00 3.51179 -107.602 -3.51179 3.51179 0.68 0.000825921 0.000768633 0.0304615 0.0284145 28 2481 23 6.65987e+06 266238 500653. 1732.36 0.99 0.129963 0.113624 21970 115934 -1 2129 23 1529 2415 193938 42620 3.69351 3.69351 -135.266 -3.69351 0 0 612192. 2118.31 0.18 0.09 0.11 -1 -1 0.18 0.0376093 0.032782 144 105 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.69 vpr 62.93 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30596 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.27 838 9368 2497 6439 432 62.9 MiB 0.09 0.00 2.71178 -89.3198 -2.71178 2.71178 0.68 0.000682524 0.000634053 0.036426 0.0337534 32 2019 21 6.65987e+06 202848 554710. 1919.41 0.79 0.112363 0.098888 22834 132086 -1 1835 23 1081 1700 158658 34715 2.77871 2.77871 -110.298 -2.77871 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0302004 0.0262761 109 86 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.65 vpr 62.78 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30716 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.1 MiB 0.10 1147 11703 3012 7514 1177 62.8 MiB 0.12 0.00 3.45859 -111.897 -3.45859 3.45859 0.71 0.000732428 0.000681026 0.0410553 0.0381412 30 2326 20 6.65987e+06 405696 526063. 1820.29 0.85 0.12553 0.110642 22546 126617 -1 2041 19 1216 1907 111792 25615 3.51217 3.51217 -130.224 -3.51217 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0277914 0.0244156 146 31 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.70 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30872 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1164 14007 3953 8601 1453 62.8 MiB 0.15 0.00 3.34904 -108.149 -3.34904 3.34904 0.68 0.000841597 0.000776499 0.0546863 0.0508826 32 2720 23 6.65987e+06 456408 554710. 1919.41 0.85 0.155807 0.137611 22834 132086 -1 2410 23 2040 3012 225722 51802 3.63131 3.63131 -136.526 -3.63131 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0370395 0.0322715 171 50 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.94 vpr 62.91 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30628 -1 -1 33 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1047 10463 2875 6751 837 62.9 MiB 0.11 0.00 2.89104 -91.5915 -2.89104 2.89104 0.68 0.000718371 0.000668298 0.0373484 0.0347256 26 2756 35 6.65987e+06 418374 477104. 1650.88 1.23 0.136216 0.119418 21682 110474 -1 2337 18 1322 2320 190515 40917 2.99311 2.99311 -112.293 -2.99311 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0274718 0.0242023 134 50 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.23 vpr 62.66 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30928 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1201 18106 5117 10567 2422 62.7 MiB 0.18 0.00 3.4773 -121.155 -3.4773 3.4773 0.69 0.000790627 0.000735647 0.0590119 0.0548228 28 2951 23 6.65987e+06 532476 500653. 1732.36 1.26 0.152759 0.135368 21970 115934 -1 2412 22 1989 3330 240316 53011 3.66737 3.66737 -141.778 -3.66737 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0333579 0.0292057 157 61 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.88 vpr 62.62 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30688 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1059 16286 4227 9665 2394 62.6 MiB 0.15 0.00 2.67164 -96.406 -2.67164 2.67164 0.68 0.000768496 0.000713357 0.0554252 0.0514781 32 2451 40 6.65987e+06 481764 554710. 1919.41 0.93 0.167223 0.147389 22834 132086 -1 2087 20 1531 2301 156364 37800 2.77871 2.77871 -114.729 -2.77871 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306284 0.0268316 155 61 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.44 vpr 62.20 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30772 -1 -1 16 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63696 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.8 MiB 0.12 501 12791 3242 7910 1639 62.2 MiB 0.10 0.00 3.0383 -84.7632 -3.0383 3.0383 0.68 0.000593847 0.00055291 0.04867 0.0453446 30 1487 31 6.65987e+06 202848 526063. 1820.29 0.80 0.128323 0.113418 22546 126617 -1 1143 19 754 1110 77661 18814 2.64337 2.64337 -95.9499 -2.64337 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0231112 0.0201947 93 28 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.76 vpr 62.75 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 24.1 MiB 0.27 804 12331 3861 6416 2054 62.8 MiB 0.11 0.00 2.97218 -85.5063 -2.97218 2.97218 0.70 0.000653962 0.00060859 0.0484168 0.0450602 28 1961 29 6.65987e+06 215526 500653. 1732.36 0.93 0.132714 0.117132 21970 115934 -1 1668 22 1001 1427 117118 27302 2.69991 2.69991 -101.476 -2.69991 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0271744 0.0235695 111 79 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 6.70 vpr 63.02 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30844 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1045 13092 3525 8663 904 63.0 MiB 0.13 0.00 3.57824 -112.58 -3.57824 3.57824 0.68 0.00072096 0.000669688 0.0432752 0.0402547 26 2979 32 6.65987e+06 469086 477104. 1650.88 3.86 0.230987 0.200848 21682 110474 -1 2442 22 1845 2931 249876 59560 3.76057 3.76057 -138.383 -3.76057 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0312362 0.0273405 150 29 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.60 vpr 62.28 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30708 -1 -1 31 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63776 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.27 790 16859 4749 10321 1789 62.3 MiB 0.14 0.00 2.86104 -80.1683 -2.86104 2.86104 0.69 0.000596304 0.000553772 0.0510091 0.0474428 26 1887 21 6.65987e+06 393018 477104. 1650.88 0.78 0.121824 0.107862 21682 110474 -1 1667 20 1044 1669 119473 28097 2.75445 2.75445 -101.586 -2.75445 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0237633 0.0206939 108 48 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.56 vpr 62.60 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.9 MiB 0.19 899 14356 4505 7887 1964 62.6 MiB 0.13 0.00 2.7929 -100.752 -2.7929 2.7929 0.68 0.000645876 0.00060086 0.0562401 0.0524005 30 1963 21 6.65987e+06 202848 526063. 1820.29 0.79 0.132285 0.117673 22546 126617 -1 1696 25 1405 2394 125217 29731 3.02797 3.02797 -120.487 -3.02797 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0315133 0.027576 119 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.70 vpr 62.91 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30568 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.2 MiB 0.22 978 12639 3240 8418 981 62.9 MiB 0.13 0.00 2.7739 -97.576 -2.7739 2.7739 0.68 0.000746428 0.000693939 0.0441847 0.0409866 26 2334 25 6.65987e+06 456408 477104. 1650.88 0.82 0.135526 0.11943 21682 110474 -1 2057 23 1896 2701 186492 42962 2.95217 2.95217 -119.572 -2.95217 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0330787 0.0288993 142 60 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.70 vpr 62.49 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30628 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.8 MiB 0.28 844 11740 3321 6720 1699 62.5 MiB 0.11 0.00 2.49487 -81.8696 -2.49487 2.49487 0.70 0.000623128 0.000580311 0.0453595 0.0422033 32 1791 21 6.65987e+06 202848 554710. 1919.41 0.78 0.118896 0.105215 22834 132086 -1 1651 16 850 1407 102320 23807 2.46805 2.46805 -99.2855 -2.46805 0 0 701300. 2426.64 0.19 0.06 0.13 -1 -1 0.19 0.0213079 0.0186672 105 49 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.46 vpr 62.78 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30592 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.22 946 12141 3259 8024 858 62.8 MiB 0.12 0.00 2.6767 -90.0875 -2.6767 2.6767 0.68 0.000740819 0.000686892 0.0433564 0.040292 26 2556 33 6.65987e+06 405696 477104. 1650.88 1.68 0.145487 0.12803 21682 110474 -1 2177 24 1331 2377 210251 44274 2.79291 2.79291 -112.589 -2.79291 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0349866 0.030596 136 56 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.06 vpr 62.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30536 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.3 MiB 0.54 1011 17883 5036 10585 2262 62.7 MiB 0.17 0.00 3.0233 -98.7764 -3.0233 3.0233 0.68 0.000781205 0.000725947 0.0645523 0.0597203 32 2246 23 6.65987e+06 456408 554710. 1919.41 0.84 0.1584 0.140295 22834 132086 -1 1990 22 1663 2368 186862 42625 3.08837 3.08837 -116.571 -3.08837 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0336326 0.0293474 148 88 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.56 vpr 62.68 MiB 0.02 6904 -1 -1 1 0.02 -1 -1 30616 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.16 917 12186 3429 7615 1142 62.7 MiB 0.12 0.00 2.31427 -87.1458 -2.31427 2.31427 0.68 0.000660074 0.000614176 0.0475257 0.0442418 32 2094 24 6.65987e+06 228204 554710. 1919.41 0.82 0.129049 0.114154 22834 132086 -1 1809 24 1399 2221 168586 37769 2.51225 2.51225 -103.087 -2.51225 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300756 0.0261672 115 54 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.68 vpr 62.91 MiB 0.03 6904 -1 -1 1 0.04 -1 -1 30388 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.1 MiB 0.26 662 8982 2019 5948 1015 62.9 MiB 0.09 0.00 2.66064 -90.3426 -2.66064 2.66064 0.68 0.000668329 0.000622029 0.0360019 0.0335132 32 2115 27 6.65987e+06 228204 554710. 1919.41 0.89 0.120442 0.105772 22834 132086 -1 1700 19 1349 2115 152633 38466 2.77551 2.77551 -113.811 -2.77551 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0256266 0.0223749 121 60 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.65 vpr 62.70 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30960 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 955 10540 2529 7056 955 62.7 MiB 0.11 0.00 3.09964 -106.254 -3.09964 3.09964 0.68 0.000772438 0.000716084 0.0378508 0.0350801 32 2356 24 6.65987e+06 456408 554710. 1919.41 0.87 0.131922 0.116028 22834 132086 -1 2026 20 1847 2803 195580 46402 3.39985 3.39985 -129.866 -3.39985 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0304491 0.0266303 154 49 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.89 vpr 62.74 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30728 -1 -1 32 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.1 MiB 0.23 958 17733 5345 9524 2864 62.7 MiB 0.16 0.00 2.97204 -89.3553 -2.97204 2.97204 0.73 0.000704965 0.000655579 0.0624545 0.0581092 28 2229 20 6.65987e+06 405696 500653. 1732.36 0.94 0.145685 0.129532 21970 115934 -1 2039 20 1127 1735 126217 28717 2.83891 2.83891 -105.347 -2.83891 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0359274 0.0313036 133 54 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.23 vpr 62.80 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30844 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1045 16551 4912 9937 1702 62.8 MiB 0.17 0.00 3.12784 -111.5 -3.12784 3.12784 0.80 0.000865294 0.00080472 0.0639966 0.0594486 28 2579 29 6.65987e+06 469086 500653. 1732.36 0.92 0.17385 0.15323 21970 115934 -1 2491 24 2001 3203 243356 54770 3.65351 3.65351 -141.091 -3.65351 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0388696 0.0338037 156 117 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.65 vpr 62.23 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30488 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 850 12754 4829 6716 1209 62.2 MiB 0.11 0.00 2.32153 -82.6513 -2.32153 2.32153 0.71 0.000446065 0.00040965 0.0368531 0.0339627 32 1887 20 6.65987e+06 202848 554710. 1919.41 0.81 0.103359 0.0908782 22834 132086 -1 1686 20 1118 1766 150583 35429 2.57651 2.57651 -100.066 -2.57651 0 0 701300. 2426.64 0.23 0.07 0.14 -1 -1 0.23 0.0229655 0.0200582 105 -1 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.93 vpr 62.95 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30768 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.2 MiB 0.18 907 20299 6652 10637 3010 62.9 MiB 0.19 0.00 3.3113 -108.057 -3.3113 3.3113 0.74 0.000781661 0.000726771 0.0750146 0.0696668 32 2264 27 6.65987e+06 418374 554710. 1919.41 0.88 0.169151 0.150609 22834 132086 -1 1901 24 1645 2252 162727 39996 3.62957 3.62957 -126.909 -3.62957 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0352159 0.0306788 142 89 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.72 vpr 62.93 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30472 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.2 MiB 0.21 883 8164 2176 4729 1259 62.9 MiB 0.08 0.00 2.8021 -103.28 -2.8021 2.8021 0.73 0.000620174 0.000571237 0.0357337 0.0332197 32 1995 21 6.65987e+06 202848 554710. 1919.41 0.85 0.118836 0.104528 22834 132086 -1 1764 19 1281 1826 133338 31354 3.12837 3.12837 -127.38 -3.12837 0 0 701300. 2426.64 0.19 0.07 0.13 -1 -1 0.19 0.0273917 0.0239383 115 93 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.96 vpr 62.62 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30632 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 903 15831 4529 8525 2777 62.6 MiB 0.15 0.00 2.63244 -90.4903 -2.63244 2.63244 0.73 0.000765955 0.000711644 0.0551351 0.0511345 32 2649 24 6.65987e+06 443730 554710. 1919.41 0.93 0.148215 0.131133 22834 132086 -1 1995 24 1589 2169 176411 42213 2.95691 2.95691 -114.875 -2.95691 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0354168 0.0309656 149 59 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 9.09 vpr 63.05 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30900 -1 -1 43 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1400 14781 3685 9299 1797 63.1 MiB 0.17 0.00 3.8601 -131.403 -3.8601 3.8601 0.70 0.000922073 0.000853816 0.0566548 0.0524974 28 3373 28 6.65987e+06 545154 500653. 1732.36 5.94 0.289875 0.252951 21970 115934 -1 2986 23 2354 3720 373693 92666 5.24537 5.24537 -172.813 -5.24537 0 0 612192. 2118.31 0.17 0.13 0.10 -1 -1 0.17 0.0405027 0.0353847 186 81 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.51 vpr 61.93 MiB 0.05 6704 -1 -1 1 0.04 -1 -1 30392 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63412 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.19 462 11161 2795 7993 373 61.9 MiB 0.10 0.00 2.22258 -65.9871 -2.22258 2.22258 0.69 0.00041749 0.000384509 0.0372801 0.0345613 28 1310 21 6.65987e+06 190170 500653. 1732.36 0.82 0.100974 0.0888949 21970 115934 -1 1122 17 633 867 60792 16203 1.94205 1.94205 -76.4847 -1.94205 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.0186855 0.01626 83 51 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.56 vpr 62.11 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30720 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 566 12362 4517 5865 1980 62.1 MiB 0.11 0.00 2.80784 -84.049 -2.80784 2.80784 0.68 0.000553888 0.000517099 0.0447536 0.0415789 32 1653 23 6.65987e+06 202848 554710. 1919.41 0.84 0.122799 0.108701 22834 132086 -1 1353 18 889 1308 103565 25345 2.64457 2.64457 -99.3666 -2.64457 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0226329 0.0198635 96 29 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.63 vpr 62.58 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.8 MiB 0.10 856 7914 1721 5841 352 62.6 MiB 0.09 0.00 2.7647 -98.1605 -2.7647 2.7647 0.68 0.000644879 0.000600632 0.0308498 0.0287468 32 2454 23 6.65987e+06 228204 554710. 1919.41 0.90 0.108228 0.0951116 22834 132086 -1 2137 21 1499 2548 198670 45369 3.14817 3.14817 -125.555 -3.14817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0281252 0.0247262 126 31 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.48 vpr 62.12 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30704 -1 -1 34 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63616 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.07 732 14371 4013 8517 1841 62.1 MiB 0.11 0.00 2.60564 -72.5529 -2.60564 2.60564 0.70 0.000534634 0.000498459 0.0381732 0.0355543 24 1912 16 6.65987e+06 431052 448715. 1552.65 0.86 0.0969153 0.0856027 21394 104001 -1 1605 21 1084 1687 139853 31640 2.90791 2.90791 -94.0227 -2.90791 0 0 554710. 1919.41 0.17 0.06 0.12 -1 -1 0.17 0.0225938 0.0196855 103 19 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.02 vpr 63.20 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30748 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.3 MiB 0.21 885 15456 5239 7426 2791 63.2 MiB 0.16 0.00 3.17278 -99.6026 -3.17278 3.17278 0.69 0.000798305 0.000741571 0.0704083 0.0654479 30 2431 29 6.65987e+06 253560 526063. 1820.29 1.05 0.173951 0.154174 22546 126617 -1 1768 21 1541 2693 144204 35381 3.11859 3.11859 -116.506 -3.11859 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0328276 0.0287039 147 84 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.77 vpr 62.74 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30576 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1034 19356 5977 10738 2641 62.7 MiB 0.18 0.00 2.8611 -98.7746 -2.8611 2.8611 0.68 0.000787369 0.000723914 0.0680391 0.0629491 32 2238 19 6.65987e+06 469086 554710. 1919.41 0.83 0.15738 0.139551 22834 132086 -1 1994 21 1739 2660 184282 42777 2.69931 2.69931 -111.771 -2.69931 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0319571 0.0279233 146 88 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.99 vpr 63.71 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 31036 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 25.1 MiB 0.86 821 14543 6082 7972 489 63.7 MiB 0.14 0.00 3.15069 -114.339 -3.15069 3.15069 0.70 0.000807839 0.000750342 0.062377 0.0579176 46 2694 32 6.95648e+06 361892 828058. 2865.25 4.18 0.31816 0.275455 28066 200906 -1 2037 24 2014 3052 244228 52641 4.19636 4.19636 -153.508 -4.19636 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0367528 0.0320287 84 80 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 7.55 vpr 63.70 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30912 -1 -1 14 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.8 MiB 1.98 801 13036 4668 7201 1167 63.7 MiB 0.13 0.00 3.3213 -109.833 -3.3213 3.3213 0.70 0.000756461 0.000702412 0.0642416 0.0597684 40 2291 43 6.95648e+06 202660 706193. 2443.58 2.72 0.236612 0.206972 26914 176310 -1 2049 22 1679 2536 269410 56630 4.04432 4.04432 -144.162 -4.04432 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0325159 0.0283922 76 78 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 7.55 vpr 63.67 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30652 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.9 MiB 0.71 714 15563 6433 8141 989 63.7 MiB 0.14 0.00 3.01749 -103.912 -3.01749 3.01749 0.70 0.000738182 0.000684848 0.0666463 0.0619667 48 2134 26 6.95648e+06 275038 865456. 2994.66 3.95 0.300647 0.261602 28354 207349 -1 1725 22 1434 2211 175682 41582 3.99436 3.99436 -134.601 -3.99436 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0314776 0.0275135 77 50 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 7.37 vpr 63.70 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30752 -1 -1 16 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 701 12302 4730 6067 1505 63.7 MiB 0.11 0.00 3.3745 -105.716 -3.3745 3.3745 0.70 0.000678743 0.000631074 0.0541863 0.0504606 40 2476 30 6.95648e+06 231611 706193. 2443.58 4.20 0.201021 0.175975 26914 176310 -1 1903 20 1697 2508 236320 52505 4.11646 4.11646 -142.687 -4.11646 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0273926 0.0239088 75 25 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 8.40 vpr 63.45 MiB 0.04 6940 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.64 740 10346 3800 5137 1409 63.5 MiB 0.10 0.00 3.04139 -109.575 -3.04139 3.04139 0.70 0.000736175 0.000685094 0.0494029 0.0459311 60 1959 23 6.95648e+06 188184 1.01997e+06 3529.29 4.84 0.307888 0.26624 30658 258169 -1 1635 21 1685 2816 185252 46878 3.86766 3.86766 -141.286 -3.86766 0 0 1.27783e+06 4421.56 0.31 0.09 0.22 -1 -1 0.31 0.0307624 0.0269788 78 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 5.15 vpr 63.63 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30752 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 936 15843 6030 7697 2116 63.6 MiB 0.14 0.00 2.5973 -99.0194 -2.5973 2.5973 0.70 0.000760795 0.000706754 0.0607142 0.0560368 44 2480 43 6.95648e+06 419795 787024. 2723.27 2.08 0.208711 0.182417 27778 195446 -1 1960 23 1426 2087 164332 34000 3.16717 3.16717 -122.974 -3.16717 0 0 997811. 3452.63 0.24 0.05 0.18 -1 -1 0.24 0.0183801 0.0162605 89 61 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.49 vpr 62.92 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30828 -1 -1 14 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.3 MiB 3.42 434 10257 4313 5271 673 62.9 MiB 0.08 0.00 2.76796 -78.9994 -2.76796 2.76796 0.71 0.000564901 0.00052572 0.0404118 0.0376663 62 1126 17 6.95648e+06 202660 1.05005e+06 3633.38 4.27 0.185218 0.160535 30946 263737 -1 833 14 662 959 49085 12890 2.66107 2.66107 -86.5375 -2.66107 0 0 1.30136e+06 4502.97 0.32 0.04 0.23 -1 -1 0.32 0.0177554 0.0156426 54 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 11.07 vpr 63.45 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30432 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.7 MiB 0.49 728 11776 3967 5858 1951 63.4 MiB 0.10 0.00 2.5203 -85.1903 -2.5203 2.5203 0.73 0.000665446 0.000619881 0.0479311 0.0446352 40 2629 31 6.95648e+06 246087 706193. 2443.58 7.76 0.318372 0.275241 26914 176310 -1 1868 21 1457 2119 172842 41123 3.18237 3.18237 -112.261 -3.18237 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0278639 0.0243553 77 -1 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 5.70 vpr 63.21 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30436 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.5 MiB 1.62 644 9684 3986 5373 325 63.2 MiB 0.09 0.00 2.60155 -83.9401 -2.60155 2.60155 0.70 0.000655016 0.000608735 0.0432441 0.0402543 38 2019 32 6.95648e+06 159232 678818. 2348.85 1.45 0.173448 0.151096 26626 170182 -1 1576 23 1106 1651 156095 35053 3.02887 3.02887 -110.26 -3.02887 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0288562 0.0250801 57 81 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.77 vpr 63.01 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30644 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.4 MiB 0.94 850 10304 3583 5316 1405 63.0 MiB 0.10 0.00 2.44885 -101.934 -2.44885 2.44885 0.71 0.000640148 0.00059574 0.0451026 0.0419936 36 2339 34 6.95648e+06 144757 648988. 2245.63 3.10 0.183814 0.160295 26050 158493 -1 2082 25 1698 2411 269442 50668 3.28312 3.28312 -137.535 -3.28312 0 0 828058. 2865.25 0.21 0.10 0.16 -1 -1 0.21 0.0308329 0.0268509 62 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.17 vpr 63.07 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30412 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.70 570 11854 4983 6385 486 63.1 MiB 0.11 0.00 2.7336 -94.0706 -2.7336 2.7336 0.70 0.00064158 0.000595997 0.0520672 0.0484685 38 1809 24 6.95648e+06 173708 678818. 2348.85 1.76 0.181064 0.158047 26626 170182 -1 1474 21 1268 1656 133554 30556 3.48177 3.48177 -124.034 -3.48177 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.026583 0.0231548 60 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 14.89 vpr 63.29 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30812 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.4 MiB 0.80 605 9516 3899 5309 308 63.3 MiB 0.09 0.00 2.47995 -88.4697 -2.47995 2.47995 0.73 0.000660314 0.000613019 0.0413275 0.0384713 46 2000 35 6.95648e+06 173708 828058. 2865.25 11.21 0.371577 0.31903 28066 200906 -1 1500 24 1350 1852 142019 38902 3.06982 3.06982 -119.118 -3.06982 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0312323 0.0272224 60 57 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.22 vpr 63.58 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30648 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.7 MiB 1.27 804 11989 3516 6698 1775 63.6 MiB 0.11 0.00 2.58515 -96.0727 -2.58515 2.58515 0.78 0.000744646 0.00069255 0.0509104 0.047321 46 2377 36 6.95648e+06 303989 828058. 2865.25 4.06 0.289761 0.251282 28066 200906 -1 1660 24 1809 2727 179875 43499 3.44877 3.44877 -129.656 -3.44877 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342874 0.0299476 79 55 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 6.59 vpr 63.72 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30652 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65248 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.8 MiB 0.98 1028 16572 5695 8702 2175 63.7 MiB 0.15 0.00 3.13369 -120.181 -3.13369 3.13369 0.77 0.000778612 0.000722637 0.0629168 0.0581652 44 2559 46 6.95648e+06 376368 787024. 2723.27 2.62 0.244164 0.213702 27778 195446 -1 2083 22 2180 3089 255834 51239 3.78746 3.78746 -146.691 -3.78746 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0331478 0.0290296 87 60 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.63 vpr 62.89 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30952 -1 -1 13 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.3 MiB 1.03 530 10769 4146 5206 1417 62.9 MiB 0.09 0.00 2.64555 -79.3918 -2.64555 2.64555 0.70 0.000576202 0.00053661 0.0420814 0.0392341 38 1602 27 6.95648e+06 188184 678818. 2348.85 1.94 0.161461 0.140859 26626 170182 -1 1073 21 903 1322 73855 19993 2.89257 2.89257 -96.6466 -2.89257 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0227205 0.0199443 58 21 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.65 vpr 63.35 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30604 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.7 MiB 1.62 705 12465 5325 6553 587 63.4 MiB 0.12 0.00 2.6493 -97.6614 -2.6493 2.6493 0.72 0.000767619 0.000712731 0.060216 0.0559262 62 1781 23 6.95648e+06 188184 1.05005e+06 3633.38 2.00 0.209349 0.183421 30946 263737 -1 1372 21 1617 2555 158560 38964 3.32827 3.32827 -119.933 -3.32827 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0323354 0.0284089 77 60 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.65 vpr 63.71 MiB 0.05 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.38 686 12528 5195 6879 454 63.7 MiB 0.11 0.00 2.5613 -93.2731 -2.5613 2.5613 0.70 0.00074082 0.000687547 0.0534745 0.0496974 46 2102 39 6.95648e+06 289514 828058. 2865.25 2.35 0.217174 0.189739 28066 200906 -1 1534 24 1668 2273 163735 38424 2.89257 2.89257 -118.786 -2.89257 0 0 1.01997e+06 3529.29 0.26 0.08 0.19 -1 -1 0.26 0.0333874 0.0292478 78 54 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 6.41 vpr 63.43 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30360 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.79 648 11247 2743 6766 1738 63.4 MiB 0.10 0.00 2.16806 -80.6802 -2.16806 2.16806 0.70 0.000670537 0.000624449 0.0433817 0.0403925 36 2196 36 6.95648e+06 289514 648988. 2245.63 2.95 0.189559 0.164914 26050 158493 -1 1695 24 1299 1751 167636 34427 2.53233 2.53233 -104.983 -2.53233 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0300961 0.026095 67 62 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.71 vpr 62.53 MiB 0.04 6704 -1 -1 1 0.02 -1 -1 30420 -1 -1 10 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.32 461 11098 4857 5881 360 62.5 MiB 0.08 0.00 1.84156 -64.8609 -1.84156 1.84156 0.70 0.000501652 0.000466559 0.0390214 0.0363605 36 1552 27 6.95648e+06 144757 648988. 2245.63 1.75 0.141451 0.123099 26050 158493 -1 1235 23 805 1036 110284 24563 2.32813 2.32813 -87.5289 -2.32813 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0222123 0.0192305 45 29 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 5.75 vpr 63.45 MiB 0.03 6920 -1 -1 1 0.03 -1 -1 30588 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.5 MiB 1.04 610 9064 3725 5028 311 63.4 MiB 0.09 0.00 3.35745 -111.504 -3.35745 3.35745 0.71 0.000669849 0.000616738 0.0410816 0.0382459 40 2131 27 6.95648e+06 159232 706193. 2443.58 1.97 0.174905 0.152176 26914 176310 -1 1687 20 1058 1456 127799 30816 3.85502 3.85502 -137.377 -3.85502 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0261074 0.0228378 61 55 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.81 vpr 63.58 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30492 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.8 MiB 0.40 713 13849 4387 7350 2112 63.6 MiB 0.12 0.00 3.10369 -107.562 -3.10369 3.10369 0.69 0.00072408 0.000673247 0.0569226 0.0526392 46 2200 23 6.95648e+06 303989 828058. 2865.25 3.55 0.27601 0.2392 28066 200906 -1 1679 22 1708 2283 164075 37203 3.56206 3.56206 -134.28 -3.56206 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0311594 0.0272525 81 31 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 17.60 vpr 63.84 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30800 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.08 902 14167 5346 7312 1509 63.8 MiB 0.13 0.00 3.03469 -106.428 -3.03469 3.03469 0.71 0.000841729 0.000781665 0.0629116 0.0585131 38 3222 29 6.95648e+06 390843 678818. 2348.85 13.70 0.389312 0.336097 26626 170182 -1 2356 22 1702 2579 255536 53154 4.18386 4.18386 -147.916 -4.18386 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0354855 0.0308774 85 108 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 6.48 vpr 62.57 MiB 0.02 6792 -1 -1 1 0.02 -1 -1 30900 -1 -1 13 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 24.1 MiB 0.88 345 8101 3454 4103 544 62.6 MiB 0.06 0.00 1.82136 -55.5569 -1.82136 1.82136 0.70 0.000438124 0.000407348 0.0258174 0.024028 38 1087 25 6.95648e+06 188184 678818. 2348.85 3.02 0.14094 0.121772 26626 170182 -1 855 19 547 671 47926 12184 2.05118 2.05118 -71.3418 -2.05118 0 0 902133. 3121.57 0.24 0.04 0.15 -1 -1 0.24 0.0170583 0.0148797 44 21 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 6.42 vpr 63.58 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30544 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.8 MiB 0.81 787 10316 4293 5593 430 63.6 MiB 0.10 0.00 3.3371 -111.484 -3.3371 3.3371 0.70 0.000683579 0.000635354 0.0466464 0.0434159 52 2561 41 6.95648e+06 173708 926341. 3205.33 2.72 0.204397 0.1785 29218 227130 -1 1924 24 1794 2806 244209 55700 4.01147 4.01147 -143.768 -4.01147 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0318353 0.0278525 74 -1 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.29 vpr 62.42 MiB 0.04 6676 -1 -1 1 0.02 -1 -1 30644 -1 -1 8 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.9 MiB 0.29 453 9608 4010 5372 226 62.4 MiB 0.07 0.00 1.77736 -64.4605 -1.77736 1.77736 0.71 0.000466286 0.000433474 0.0316219 0.0294104 50 1187 20 6.95648e+06 115805 902133. 3121.57 3.28 0.174278 0.151344 28642 213929 -1 984 15 646 794 64697 16030 1.90588 1.90588 -77.5132 -1.90588 0 0 1.08113e+06 3740.92 0.26 0.04 0.18 -1 -1 0.26 0.015282 0.0134694 44 -1 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 15.67 vpr 63.35 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30888 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.48 819 16572 6261 8518 1793 63.4 MiB 0.15 0.00 3.17289 -115.548 -3.17289 3.17289 0.70 0.000873718 0.000810805 0.065277 0.0606628 40 2703 25 6.95648e+06 376368 706193. 2443.58 12.34 0.390529 0.339279 26914 176310 -1 2293 22 1941 2965 351093 71904 4.63156 4.63156 -161.871 -4.63156 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0320607 0.0280736 85 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.65 vpr 63.59 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.8 MiB 0.29 906 17066 6051 8260 2755 63.6 MiB 0.14 0.00 2.5943 -95.2184 -2.5943 2.5943 0.72 0.000698131 0.00064929 0.0602161 0.0560639 44 2329 30 6.95648e+06 405319 787024. 2723.27 3.49 0.274756 0.239175 27778 195446 -1 1816 18 1400 2010 147538 32077 2.95857 2.95857 -114.667 -2.95857 0 0 997811. 3452.63 0.25 0.07 0.17 -1 -1 0.25 0.0257918 0.0226737 87 -1 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.60 vpr 63.75 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30892 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.8 MiB 0.39 990 18722 6187 10280 2255 63.8 MiB 0.16 0.00 3.16669 -114.834 -3.16669 3.16669 0.70 0.000763628 0.000710372 0.0723082 0.0671769 46 2738 33 6.95648e+06 405319 828058. 2865.25 4.34 0.318701 0.277471 28066 200906 -1 2361 23 1989 3001 244754 50446 3.98496 3.98496 -146.136 -3.98496 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0341314 0.0298287 87 54 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.58 vpr 62.92 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30412 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.77 597 9839 4059 5540 240 62.9 MiB 0.09 0.00 2.5044 -84.6821 -2.5044 2.5044 0.70 0.000625338 0.000583315 0.0414715 0.0386375 44 1876 22 6.95648e+06 144757 787024. 2723.27 3.11 0.215239 0.186201 27778 195446 -1 1454 20 1000 1539 125892 27837 2.99182 2.99182 -111.486 -2.99182 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0245515 0.021452 57 31 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 4.94 vpr 62.93 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30348 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.3 MiB 0.54 544 8599 3556 4710 333 62.9 MiB 0.08 0.00 2.6163 -91.8336 -2.6163 2.6163 0.71 0.000611543 0.00056804 0.036578 0.0340719 38 2202 47 6.95648e+06 173708 678818. 2348.85 1.72 0.167542 0.145219 26626 170182 -1 1521 20 1288 1705 149768 34912 3.52097 3.52097 -127.906 -3.52097 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0243785 0.021299 60 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 7.00 vpr 63.19 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30544 -1 -1 13 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.6 MiB 0.53 503 9801 3651 4757 1393 63.2 MiB 0.10 0.00 2.5894 -81.8143 -2.5894 2.5894 0.74 0.000572982 0.000521694 0.0510592 0.0475774 46 1459 24 6.95648e+06 188184 828058. 2865.25 3.75 0.22675 0.196621 28066 200906 -1 1141 19 1017 1548 101720 24737 2.91457 2.91457 -95.644 -2.91457 0 0 1.01997e+06 3529.29 0.25 0.06 0.17 -1 -1 0.25 0.0224969 0.0196592 61 27 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 4.82 vpr 63.04 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30560 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.4 MiB 0.19 796 9529 3432 4135 1962 63.0 MiB 0.09 0.00 2.43165 -99.7583 -2.43165 2.43165 0.71 0.000609678 0.000567659 0.0397115 0.0369937 38 2175 43 6.95648e+06 144757 678818. 2348.85 1.91 0.170553 0.148407 26626 170182 -1 1932 22 1559 2246 227262 43738 3.36442 3.36442 -131.261 -3.36442 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0294131 0.0259341 64 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.56 vpr 63.36 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30544 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.6 MiB 0.24 631 11247 4617 6276 354 63.4 MiB 0.09 0.00 2.5943 -92.1818 -2.5943 2.5943 0.70 0.000631275 0.000585552 0.0408305 0.0379508 46 2150 45 6.95648e+06 303989 828058. 2865.25 2.46 0.188999 0.164489 28066 200906 -1 1569 30 1699 2342 251520 78792 2.90722 2.90722 -115.14 -2.90722 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0348348 0.0303078 68 26 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.93 vpr 63.19 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.7 MiB 0.74 634 9881 3405 4614 1862 63.2 MiB 0.08 0.00 2.00176 -71.2726 -2.00176 2.00176 0.71 0.000626805 0.000582519 0.0386715 0.036028 36 1999 36 6.95648e+06 260562 648988. 2245.63 2.53 0.175778 0.15292 26050 158493 -1 1474 22 1124 1528 121340 26830 2.37403 2.37403 -90.8571 -2.37403 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268856 0.0233972 64 55 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.29 vpr 63.91 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30608 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.71 923 14582 3951 9019 1612 63.9 MiB 0.14 0.00 3.20405 -114.714 -3.20405 3.20405 0.69 0.000821619 0.000762874 0.0611106 0.056858 48 2858 36 6.95648e+06 405319 865456. 2994.66 2.58 0.241398 0.21142 28354 207349 -1 2215 31 2543 3990 553985 205114 4.27292 4.27292 -148.095 -4.27292 0 0 1.05005e+06 3633.38 0.26 0.18 0.18 -1 -1 0.26 0.0464773 0.0403721 100 26 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 5.96 vpr 63.71 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30660 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.8 MiB 0.91 805 12943 4135 6872 1936 63.7 MiB 0.12 0.00 2.6866 -98.5167 -2.6866 2.6866 0.70 0.000771798 0.000713476 0.0515239 0.0479312 44 2579 29 6.95648e+06 390843 787024. 2723.27 2.23 0.213127 0.186446 27778 195446 -1 1762 25 2030 2948 230985 52206 3.27947 3.27947 -127.533 -3.27947 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0370738 0.0324219 87 62 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 6.25 vpr 63.32 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30920 -1 -1 15 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64836 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.05 561 12860 5402 6962 496 63.3 MiB 0.11 0.00 2.76796 -90.4096 -2.76796 2.76796 0.72 0.000673486 0.000626161 0.0545316 0.0506775 48 1917 41 6.95648e+06 217135 865456. 2994.66 2.26 0.206528 0.180234 28354 207349 -1 1529 22 1212 1713 149593 36284 3.29667 3.29667 -113.642 -3.29667 0 0 1.05005e+06 3633.38 0.32 0.08 0.20 -1 -1 0.32 0.0291839 0.0254497 62 77 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.36 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65180 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.62 1007 13117 5109 6291 1717 63.7 MiB 0.13 0.00 2.5613 -97.7654 -2.5613 2.5613 0.73 0.000749709 0.000696675 0.0631316 0.0587072 44 2651 35 6.95648e+06 202660 787024. 2723.27 3.81 0.30374 0.263882 27778 195446 -1 2175 21 1786 2723 236210 46193 3.08082 3.08082 -121.555 -3.08082 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0307628 0.0269126 79 59 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.11 vpr 63.80 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30744 -1 -1 14 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65328 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.1 MiB 2.03 811 11324 4767 6189 368 63.8 MiB 0.12 0.00 4.10349 -129.656 -4.10349 4.10349 0.72 0.000832555 0.00077382 0.0607605 0.0565503 44 2659 28 6.95648e+06 202660 787024. 2723.27 2.21 0.2296 0.200187 27778 195446 -1 1901 23 1430 2084 169608 37693 4.71831 4.71831 -152.812 -4.71831 0 0 997811. 3452.63 0.26 0.09 0.19 -1 -1 0.26 0.0378425 0.0329645 78 111 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.46 vpr 63.51 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.9 MiB 1.38 743 12716 4626 6236 1854 63.5 MiB 0.12 0.00 3.72384 -110.189 -3.72384 3.72384 0.70 0.000772702 0.000718396 0.0642856 0.0598407 38 2569 38 6.95648e+06 188184 678818. 2348.85 2.32 0.206143 0.181213 26626 170182 -1 1827 26 1713 2634 195167 45056 4.24346 4.24346 -143.729 -4.24346 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0361445 0.0314192 76 86 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 15.45 vpr 63.65 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.9 MiB 0.83 768 16078 5910 7600 2568 63.6 MiB 0.14 0.00 2.7086 -96.3394 -2.7086 2.7086 0.70 0.000749227 0.000695149 0.0645739 0.0599685 40 2761 50 6.95648e+06 361892 706193. 2443.58 11.77 0.395788 0.342397 26914 176310 -1 2066 25 1789 2681 256028 55020 3.53197 3.53197 -127.945 -3.53197 0 0 926341. 3205.33 0.22 0.10 0.17 -1 -1 0.22 0.03461 0.030123 85 58 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 17.64 vpr 63.62 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30740 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 24.8 MiB 0.48 858 10542 3200 5418 1924 63.6 MiB 0.10 0.00 3.16669 -114.319 -3.16669 3.16669 0.70 0.000771078 0.000716656 0.0429654 0.0399717 40 2870 32 6.95648e+06 376368 706193. 2443.58 14.33 0.389007 0.33571 26914 176310 -1 2359 21 2035 3220 348065 74806 4.70516 4.70516 -162.568 -4.70516 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.031325 0.0274169 86 42 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 6.66 vpr 63.82 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.5 MiB 1.01 1105 14351 4218 7769 2364 63.8 MiB 0.14 0.00 3.32935 -122.578 -3.32935 3.32935 0.70 0.000915968 0.000849864 0.0640589 0.0595217 40 3093 34 6.95648e+06 448746 706193. 2443.58 2.75 0.258133 0.225075 26914 176310 -1 2788 24 2308 3498 365935 71994 4.69602 4.69602 -163.997 -4.69602 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0416788 0.0363249 104 91 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.55 vpr 63.21 MiB 0.05 6840 -1 -1 1 0.03 -1 -1 30880 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64724 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.3 MiB 0.60 714 10924 4616 6074 234 63.2 MiB 0.10 0.00 2.84796 -101.361 -2.84796 2.84796 0.70 0.000631521 0.00058818 0.0463169 0.0431616 38 2057 32 6.95648e+06 159232 678818. 2348.85 2.16 0.178625 0.15591 26626 170182 -1 1755 19 1312 1864 159079 32541 3.52882 3.52882 -126.554 -3.52882 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0241431 0.0211008 62 24 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.56 vpr 63.70 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30760 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65232 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.8 MiB 0.65 792 15768 5471 7642 2655 63.7 MiB 0.14 0.00 3.5328 -117.245 -3.5328 3.5328 0.70 0.000754661 0.000701377 0.0616828 0.0573242 46 2440 22 6.95648e+06 390843 828058. 2865.25 4.01 0.282261 0.245485 28066 200906 -1 1997 22 1867 3067 252079 54774 4.32011 4.32011 -148.75 -4.32011 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0321142 0.0280581 86 59 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.79 vpr 63.74 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30832 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.76 874 14562 5807 7956 799 63.7 MiB 0.13 0.00 2.79476 -99.3289 -2.79476 2.79476 0.70 0.000754354 0.000700508 0.0574865 0.0534453 48 2420 23 6.95648e+06 376368 865456. 2994.66 4.14 0.293801 0.254797 28354 207349 -1 2145 23 1772 2885 254794 52774 3.16402 3.16402 -120.562 -3.16402 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0337468 0.0294956 85 54 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.96 vpr 63.33 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30676 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.79 780 7901 3179 4516 206 63.3 MiB 0.08 0.00 3.03039 -111.418 -3.03039 3.03039 0.71 0.000710207 0.000660483 0.0368025 0.0342937 46 2749 34 6.95648e+06 188184 828058. 2865.25 3.34 0.191063 0.166611 28066 200906 -1 2159 21 1828 3027 263636 57003 4.35786 4.35786 -156.957 -4.35786 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293726 0.025793 78 -1 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 8.58 vpr 63.83 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30640 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.50 810 12567 4232 6468 1867 63.8 MiB 0.12 0.00 2.5503 -93.7614 -2.5503 2.5503 0.71 0.000781851 0.000726897 0.0538542 0.0500661 54 2248 20 6.95648e+06 332941 949917. 3286.91 4.20 0.300939 0.260704 29506 232905 -1 1872 19 1445 2219 186239 40701 3.43787 3.43787 -123.669 -3.43787 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0296425 0.0259672 81 81 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 7.91 vpr 63.75 MiB 0.06 7004 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.80 765 13133 5265 6982 886 63.7 MiB 0.11 0.00 2.6023 -94.8681 -2.6023 2.6023 0.70 0.000762419 0.000708453 0.0512987 0.0476785 48 2450 29 6.95648e+06 405319 865456. 2994.66 4.17 0.276618 0.239908 28354 207349 -1 1940 21 1530 2213 276263 90526 3.16997 3.16997 -121.04 -3.16997 0 0 1.05005e+06 3633.38 0.26 0.10 0.20 -1 -1 0.26 0.031178 0.0272716 85 58 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 7.12 vpr 63.83 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30648 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.2 MiB 0.49 813 14996 4910 7841 2245 63.8 MiB 0.13 0.00 2.6646 -97.0268 -2.6646 2.6646 0.70 0.00077571 0.000717243 0.0589487 0.0546375 40 2873 44 6.95648e+06 405319 706193. 2443.58 3.82 0.237691 0.207518 26914 176310 -1 2214 21 1803 2750 270714 61052 3.51282 3.51282 -132.793 -3.51282 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0332105 0.0290519 88 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.57 vpr 63.65 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30756 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 24.7 MiB 0.52 872 17687 6602 8809 2276 63.6 MiB 0.14 0.00 3.13369 -112.938 -3.13369 3.13369 0.75 0.000327924 0.000300698 0.0614258 0.0569644 46 2676 43 6.95648e+06 405319 828058. 2865.25 3.07 0.233061 0.204156 28066 200906 -1 2145 22 1992 3191 279411 57576 4.32966 4.32966 -148.597 -4.32966 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0315283 0.0276081 85 21 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 7.66 vpr 63.58 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30836 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 24.8 MiB 0.91 991 12235 3165 7722 1348 63.6 MiB 0.10 0.00 3.15569 -118.857 -3.15569 3.15569 0.78 0.000598582 0.00055054 0.0398433 0.036688 44 2485 40 6.95648e+06 434271 787024. 2723.27 3.82 0.287633 0.248339 27778 195446 -1 2063 22 1962 2696 211626 42572 3.81746 3.81746 -147.328 -3.81746 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0251387 0.0221661 88 50 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 18.10 vpr 63.98 MiB 0.06 7200 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65516 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.3 MiB 1.26 802 11203 4314 6028 861 64.0 MiB 0.12 0.00 3.56395 -113.183 -3.56395 3.56395 0.77 0.000841722 0.000782837 0.0525818 0.0488196 38 3410 48 6.95648e+06 361892 678818. 2348.85 13.87 0.401034 0.344825 26626 170182 -1 2240 25 1932 3148 277302 58509 4.29632 4.29632 -145.698 -4.29632 0 0 902133. 3121.57 0.22 0.12 0.18 -1 -1 0.22 0.0395313 0.0343556 84 110 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 7.93 vpr 63.73 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30780 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.01 760 10998 4595 6060 343 63.7 MiB 0.10 0.00 3.21135 -108.802 -3.21135 3.21135 0.70 0.000360746 0.000332166 0.0486862 0.0449881 46 2558 26 6.95648e+06 188184 828058. 2865.25 4.09 0.301064 0.259911 28066 200906 -1 1799 22 1690 2804 191076 42500 3.62336 3.62336 -131.271 -3.62336 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0336084 0.0294761 78 86 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 6.01 vpr 63.09 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30840 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 678 11031 4506 6217 308 63.1 MiB 0.09 0.00 2.7494 -97.9347 -2.7494 2.7494 0.70 0.00063686 0.000592462 0.038672 0.0359894 46 2035 41 6.95648e+06 332941 828058. 2865.25 2.98 0.182407 0.158705 28066 200906 -1 1575 26 1277 1978 191404 53905 3.25497 3.25497 -119.507 -3.25497 0 0 1.01997e+06 3529.29 0.29 0.09 0.21 -1 -1 0.29 0.0318104 0.0278102 71 20 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 5.78 vpr 63.25 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30632 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.05 618 8599 3523 4772 304 63.3 MiB 0.09 0.00 2.5393 -92.5738 -2.5393 2.5393 0.70 0.00070787 0.000657668 0.0418731 0.0389829 52 1880 24 6.95648e+06 144757 926341. 3205.33 1.78 0.151738 0.132872 29218 227130 -1 1325 24 1500 2268 168254 39089 2.74707 2.74707 -110.022 -2.74707 0 0 1.14541e+06 3963.36 0.29 0.11 0.19 -1 -1 0.29 0.0306707 0.0270108 63 91 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 8.38 vpr 63.73 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 31008 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.5 MiB 0.58 1019 14365 4436 7392 2537 63.7 MiB 0.14 0.00 3.78264 -133.277 -3.78264 3.78264 0.72 0.000885908 0.000824554 0.0625409 0.0582177 48 3215 26 6.95648e+06 434271 865456. 2994.66 4.69 0.324262 0.281493 28354 207349 -1 2691 33 3113 4937 635954 170261 5.63151 5.63151 -183.557 -5.63151 0 0 1.05005e+06 3633.38 0.27 0.20 0.17 -1 -1 0.27 0.0524128 0.0455067 103 53 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.71 vpr 63.56 MiB 0.05 6940 -1 -1 1 0.05 -1 -1 30732 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.85 774 11008 4223 5968 817 63.6 MiB 0.10 0.00 2.6445 -96.8324 -2.6445 2.6445 0.70 0.000729167 0.000678152 0.0436089 0.0405802 46 2217 25 6.95648e+06 347416 828058. 2865.25 2.16 0.190121 0.165983 28066 200906 -1 1664 22 1567 2040 187328 52884 3.13407 3.13407 -119.929 -3.13407 0 0 1.01997e+06 3529.29 0.24 0.08 0.12 -1 -1 0.24 0.0314008 0.0274845 83 31 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.61 vpr 63.25 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30592 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.3 MiB 0.31 543 11631 3883 5678 2070 63.3 MiB 0.10 0.00 2.6426 -89.0254 -2.6426 2.6426 0.70 0.00061338 0.000570768 0.0429161 0.0399557 40 2278 40 6.95648e+06 275038 706193. 2443.58 2.58 0.18245 0.158727 26914 176310 -1 1523 25 1495 2154 220779 51899 3.56782 3.56782 -123.915 -3.56782 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.029028 0.0252285 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 9.76 vpr 63.80 MiB 0.07 7404 -1 -1 1 0.04 -1 -1 31176 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.4 MiB 1.95 1217 13919 3928 9064 927 63.8 MiB 0.15 0.00 3.77644 -140.318 -3.77644 3.77644 0.70 0.000950121 0.000882916 0.0646063 0.0600081 54 2797 23 6.95648e+06 448746 949917. 3286.91 4.75 0.383976 0.332338 29506 232905 -1 2443 24 2512 3928 337646 65445 4.71201 4.71201 -174.069 -4.71201 0 0 1.17392e+06 4061.99 0.29 0.12 0.21 -1 -1 0.29 0.0431294 0.0377103 103 109 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 15.30 vpr 63.66 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30756 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.8 MiB 1.06 809 12719 4510 6146 2063 63.7 MiB 0.11 0.00 3.18389 -114.936 -3.18389 3.18389 0.70 0.000744814 0.000692587 0.0485514 0.0451912 38 2741 34 6.95648e+06 405319 678818. 2348.85 11.44 0.343802 0.298313 26626 170182 -1 1991 20 1895 2688 222884 47482 4.17466 4.17466 -151.214 -4.17466 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0294234 0.0257964 86 31 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 13.42 vpr 63.01 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30488 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.30 662 14128 5255 7134 1739 63.0 MiB 0.11 0.00 2.55695 -94.825 -2.55695 2.55695 0.71 0.000616102 0.000570632 0.0465649 0.0433873 44 2223 45 6.95648e+06 347416 787024. 2723.27 10.14 0.289482 0.250504 27778 195446 -1 1778 49 2105 3472 758147 346336 3.29712 3.29712 -127.592 -3.29712 0 0 997811. 3452.63 0.25 0.24 0.18 -1 -1 0.25 0.0504007 0.0433699 70 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 8.84 vpr 63.84 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 31052 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.6 MiB 0.48 970 14999 5467 7393 2139 63.8 MiB 0.14 0.00 3.77644 -132.03 -3.77644 3.77644 0.72 0.000851643 0.00079185 0.0618589 0.057552 54 3017 34 6.95648e+06 448746 949917. 3286.91 5.33 0.370735 0.321284 29506 232905 -1 2181 26 2698 4295 375910 78931 4.80611 4.80611 -170.221 -4.80611 0 0 1.17392e+06 4061.99 0.28 0.13 0.20 -1 -1 0.28 0.0412294 0.03592 105 26 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 5.01 vpr 63.09 MiB 0.04 6748 -1 -1 1 0.03 -1 -1 30568 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.4 MiB 0.34 649 10149 4217 5741 191 63.1 MiB 0.09 0.00 2.42065 -93.7642 -2.42065 2.42065 0.70 0.000616565 0.000574005 0.0431882 0.0402891 44 2105 26 6.95648e+06 144757 787024. 2723.27 1.87 0.143755 0.126239 27778 195446 -1 1730 22 1491 2052 185981 40497 3.26842 3.26842 -127.649 -3.26842 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0263309 0.0229983 62 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 7.37 vpr 63.04 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30380 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.6 MiB 0.74 576 13223 5537 7134 552 63.0 MiB 0.11 0.00 2.6756 -91.1593 -2.6756 2.6756 0.72 0.000615092 0.000572145 0.0479869 0.0447058 38 2189 41 6.95648e+06 303989 678818. 2348.85 3.84 0.19069 0.166452 26626 170182 -1 1576 21 1268 1862 146999 32468 3.16697 3.16697 -117.124 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0255983 0.0223436 65 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 8.43 vpr 63.32 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.7 MiB 1.24 683 9531 2976 4366 2189 63.3 MiB 0.09 0.00 2.81496 -87.6537 -2.81496 2.81496 0.70 0.000743149 0.000690899 0.0430714 0.0400921 54 2035 26 6.95648e+06 289514 949917. 3286.91 4.30 0.284261 0.245591 29506 232905 -1 1449 23 1442 2266 132991 32745 3.15417 3.15417 -106.231 -3.15417 0 0 1.17392e+06 4061.99 0.28 0.07 0.20 -1 -1 0.28 0.0321866 0.0281953 77 81 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 6.09 vpr 63.82 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 31032 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 25.0 MiB 0.86 739 12302 4718 5894 1690 63.8 MiB 0.12 0.00 3.03039 -110.712 -3.03039 3.03039 0.70 0.000766707 0.000711939 0.0603653 0.0561624 44 2293 43 6.95648e+06 188184 787024. 2723.27 2.34 0.22116 0.193557 27778 195446 -1 1557 66 4432 6202 392822 92129 3.90316 3.90316 -150.049 -3.90316 0 0 997811. 3452.63 0.25 0.20 0.18 -1 -1 0.25 0.0836699 0.0720269 78 53 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.81 vpr 63.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30852 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.9 MiB 1.46 981 14741 5848 7143 1750 63.9 MiB 0.13 0.00 3.10669 -116.582 -3.10669 3.10669 0.70 0.000768584 0.000713605 0.0602055 0.0558922 48 2582 21 6.95648e+06 361892 865456. 2994.66 4.34 0.286075 0.248795 28354 207349 -1 2279 22 2043 3168 404448 84709 3.81566 3.81566 -145.883 -3.81566 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.0330991 0.0290215 85 55 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.99 vpr 63.28 MiB 0.05 7032 -1 -1 1 0.04 -1 -1 30692 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.8 MiB 1.08 614 12373 4754 6422 1197 63.3 MiB 0.10 0.00 2.49095 -91.8559 -2.49095 2.49095 0.74 0.000687356 0.000632547 0.0455616 0.0423192 54 1757 30 6.95648e+06 347416 949917. 3286.91 2.02 0.184528 0.160804 29506 232905 -1 1352 19 1251 1872 124988 30796 3.35022 3.35022 -118.916 -3.35022 0 0 1.17392e+06 4061.99 0.28 0.06 0.20 -1 -1 0.28 0.0223573 0.019765 69 55 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 6.45 vpr 63.04 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30728 -1 -1 10 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.4 MiB 1.40 555 12841 5652 6775 414 63.0 MiB 0.12 0.00 2.80096 -90.8151 -2.80096 2.80096 0.71 0.000673132 0.000625034 0.0599662 0.0553956 44 2002 44 6.95648e+06 144757 787024. 2723.27 2.23 0.212903 0.185833 27778 195446 -1 1347 30 1461 2177 136899 34627 2.99293 2.99293 -110.025 -2.99293 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0367059 0.0317458 59 82 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 7.01 vpr 63.52 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30560 -1 -1 22 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65040 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.7 MiB 0.87 972 12162 3550 7123 1489 63.5 MiB 0.11 0.00 2.6866 -101.351 -2.6866 2.6866 0.70 0.000718387 0.00066759 0.0504462 0.0468755 38 2491 35 6.95648e+06 318465 678818. 2348.85 3.40 0.218723 0.191142 26626 170182 -1 2066 20 1454 2140 160919 33865 3.38757 3.38757 -125.415 -3.38757 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0288222 0.0252506 79 52 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.68 vpr 63.46 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30648 -1 -1 16 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.7 MiB 0.78 710 10156 4488 5095 573 63.5 MiB 0.09 0.00 3.68925 -106.137 -3.68925 3.68925 0.70 0.000660055 0.000613968 0.0443341 0.0413016 48 2202 23 6.95648e+06 231611 865456. 2994.66 4.08 0.266069 0.229893 28354 207349 -1 1657 20 1490 2233 168990 38134 3.91776 3.91776 -132.84 -3.91776 0 0 1.05005e+06 3633.38 0.27 0.08 0.18 -1 -1 0.27 0.027178 0.0239073 74 20 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 12.59 vpr 63.11 MiB 0.05 6936 -1 -1 1 0.03 -1 -1 30536 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64620 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.5 MiB 0.79 543 9994 3063 5068 1863 63.1 MiB 0.09 0.00 2.5533 -87.468 -2.5533 2.5533 0.70 0.000641102 0.000595888 0.043727 0.0407068 50 1442 49 6.95648e+06 173708 902133. 3121.57 8.96 0.332006 0.285884 28642 213929 -1 1222 20 1305 1844 139473 38250 3.22632 3.22632 -113.869 -3.22632 0 0 1.08113e+06 3740.92 0.27 0.07 0.19 -1 -1 0.27 0.0256906 0.0224206 61 58 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.09 vpr 63.64 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30608 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.8 MiB 1.18 641 7979 3262 4540 177 63.6 MiB 0.08 0.00 2.5753 -88.9288 -2.5753 2.5753 0.72 0.000691422 0.000641675 0.0380354 0.0353951 38 2398 36 6.95648e+06 144757 678818. 2348.85 3.14 0.188927 0.164028 26626 170182 -1 1636 23 1313 2085 165805 36228 3.25742 3.25742 -118.866 -3.25742 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0303897 0.0264532 60 88 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 19.45 vpr 63.64 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 0.17 798 11398 4669 6178 551 63.6 MiB 0.10 0.00 3.25235 -112.691 -3.25235 3.25235 0.72 0.000692189 0.000643916 0.0431798 0.0402231 48 2554 30 6.95648e+06 361892 865456. 2994.66 16.26 0.375858 0.324536 28354 207349 -1 2006 30 2317 3552 617772 261747 4.03512 4.03512 -143.808 -4.03512 0 0 1.05005e+06 3633.38 0.28 0.19 0.18 -1 -1 0.28 0.03795 0.0330332 86 -1 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 6.67 vpr 63.74 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30796 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.8 MiB 1.25 832 15391 5152 8197 2042 63.7 MiB 0.13 0.00 3.15569 -112.385 -3.15569 3.15569 0.70 0.000787894 0.000733145 0.061273 0.0570017 50 2648 46 6.95648e+06 390843 902133. 3121.57 2.51 0.238017 0.208055 28642 213929 -1 2179 21 1950 3243 290257 60097 3.93476 3.93476 -144.875 -3.93476 0 0 1.08113e+06 3740.92 0.26 0.09 0.18 -1 -1 0.26 0.0252332 0.0222275 86 57 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 7.32 vpr 63.66 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30636 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.7 MiB 1.51 894 9738 3885 5604 249 63.7 MiB 0.10 0.00 3.16489 -114.407 -3.16489 3.16489 0.70 0.0007706 0.000715326 0.0401357 0.0373044 48 2637 26 6.95648e+06 376368 865456. 2994.66 2.98 0.195563 0.170329 28354 207349 -1 2243 19 1832 2873 301525 65612 4.13246 4.13246 -157.061 -4.13246 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0297427 0.0261155 85 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 18.89 vpr 63.76 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30656 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.8 MiB 0.94 980 15799 6601 8813 385 63.8 MiB 0.14 0.00 3.13989 -111.639 -3.13989 3.13989 0.71 0.000761299 0.000706927 0.0612012 0.05681 40 2835 30 6.95648e+06 390843 706193. 2443.58 15.12 0.373341 0.323359 26914 176310 -1 2375 22 1821 3056 309053 64213 4.08662 4.08662 -146.517 -4.08662 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.032626 0.0285737 86 62 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 14.51 vpr 63.03 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30588 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.4 MiB 0.70 512 11544 4828 6067 649 63.0 MiB 0.10 0.00 2.79296 -91.2216 -2.79296 2.79296 0.70 0.000612972 0.000570618 0.0476692 0.0444076 46 1886 49 6.95648e+06 173708 828058. 2865.25 11.01 0.330829 0.285153 28066 200906 -1 1368 21 1315 1955 176688 46730 3.65722 3.65722 -126.99 -3.65722 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.025541 0.0222933 62 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.30 vpr 63.87 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30684 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65400 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 25.1 MiB 0.75 958 12139 3975 6529 1635 63.9 MiB 0.12 0.00 3.3885 -117.724 -3.3885 3.3885 0.71 0.000733223 0.000681512 0.0575937 0.0536089 38 2549 32 6.95648e+06 217135 678818. 2348.85 2.70 0.212553 0.185903 26626 170182 -1 2149 21 1843 2475 212398 42810 3.89402 3.89402 -147.601 -3.89402 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303568 0.0265287 78 58 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 20.44 vpr 64.01 MiB 0.03 7112 -1 -1 1 0.04 -1 -1 31056 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65548 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.2 MiB 1.42 851 15215 5964 8099 1152 64.0 MiB 0.15 0.00 3.17289 -114.676 -3.17289 3.17289 0.73 0.000839807 0.000780033 0.0637078 0.0592146 38 3158 43 6.95648e+06 448746 678818. 2348.85 16.05 0.419171 0.361417 26626 170182 -1 2327 24 2178 3559 326969 67281 4.12436 4.12436 -155.724 -4.12436 0 0 902133. 3121.57 0.22 0.12 0.15 -1 -1 0.22 0.0379118 0.0328921 88 106 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 6.26 vpr 63.76 MiB 0.04 7184 -1 -1 1 0.04 -1 -1 30564 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.93 729 13663 5716 7401 546 63.8 MiB 0.13 0.00 3.3683 -111.686 -3.3683 3.3683 0.69 0.00078004 0.000724193 0.0606164 0.0563857 48 2214 45 6.95648e+06 318465 865456. 2994.66 2.48 0.239319 0.209087 28354 207349 -1 1739 22 1671 2562 211344 46821 4.11642 4.11642 -142.061 -4.11642 0 0 1.05005e+06 3633.38 0.28 0.09 0.18 -1 -1 0.28 0.0334005 0.0291898 81 79 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.74 vpr 63.78 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30792 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65312 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.9 MiB 1.53 767 9368 3067 4679 1622 63.8 MiB 0.09 0.00 2.73356 -89.5733 -2.73356 2.73356 0.70 0.000753195 0.000700244 0.0436622 0.0406112 40 2277 43 6.95648e+06 260562 706193. 2443.58 3.46 0.215469 0.187325 26914 176310 -1 1802 25 1673 2515 241391 68545 4.17857 4.17857 -126.198 -4.17857 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.032692 0.0283524 75 83 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 15.30 vpr 63.74 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30804 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 1.53 821 12954 4673 6518 1763 63.7 MiB 0.13 0.00 3.04869 -111.4 -3.04869 3.04869 0.71 0.000773108 0.000717961 0.0647701 0.06028 46 2698 30 6.95648e+06 188184 828058. 2865.25 10.82 0.358778 0.31104 28066 200906 -1 2019 28 2409 3935 376073 94784 4.10056 4.10056 -145.575 -4.10056 0 0 1.01997e+06 3529.29 0.25 0.13 0.17 -1 -1 0.25 0.039979 0.034803 81 58 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.91 vpr 63.61 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30568 -1 -1 22 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.8 MiB 0.97 713 10343 4222 5547 574 63.6 MiB 0.09 0.00 2.5613 -84.1668 -2.5613 2.5613 0.81 0.00072599 0.000674823 0.0433016 0.0402035 38 2747 45 6.95648e+06 318465 678818. 2348.85 3.01 0.211901 0.184058 26626 170182 -1 1774 20 1535 2298 208462 46130 3.75247 3.75247 -123.728 -3.75247 0 0 902133. 3121.57 0.22 0.08 0.16 -1 -1 0.22 0.02966 0.0259687 77 81 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.01 vpr 63.02 MiB 0.05 6692 -1 -1 1 0.03 -1 -1 30520 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.81 569 10924 4578 5959 387 63.0 MiB 0.10 0.00 2.43165 -91.8424 -2.43165 2.43165 0.70 0.000609606 0.00056739 0.0450822 0.0420152 48 1812 46 6.95648e+06 144757 865456. 2994.66 2.32 0.176163 0.153993 28354 207349 -1 1595 28 1536 2360 434520 142420 3.23432 3.23432 -122.555 -3.23432 0 0 1.05005e+06 3633.38 0.27 0.14 0.18 -1 -1 0.27 0.0318363 0.0276936 61 -1 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 9.09 vpr 63.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30728 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.9 MiB 3.11 854 15883 6769 8712 402 63.8 MiB 0.14 0.00 3.14769 -113.339 -3.14769 3.14769 0.75 0.000353671 0.000324613 0.0552666 0.051024 46 2424 26 6.95648e+06 347416 828058. 2865.25 2.99 0.217411 0.19025 28066 200906 -1 1978 24 2030 2975 239013 50809 3.84866 3.84866 -144.667 -3.84866 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0352813 0.0308242 84 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 6.40 vpr 63.67 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30616 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 0.58 739 11650 4849 6261 540 63.7 MiB 0.11 0.00 3.05859 -112.455 -3.05859 3.05859 0.69 0.000772666 0.000717382 0.0579629 0.0538963 58 2056 26 6.95648e+06 188184 997811. 3452.63 2.43 0.217466 0.191018 30370 251734 -1 1557 22 1924 2630 250945 56108 3.63716 3.63716 -136.952 -3.63716 0 0 1.25153e+06 4330.55 0.35 0.11 0.22 -1 -1 0.35 0.0449241 0.0400048 81 62 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 8.16 vpr 63.23 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30656 -1 -1 11 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 643 9397 3894 5268 235 63.2 MiB 0.08 0.00 2.82405 -89.6255 -2.82405 2.82405 0.70 0.000454394 0.000417304 0.038832 0.0361144 46 1843 44 6.95648e+06 159232 828058. 2865.25 4.28 0.267461 0.230532 28066 200906 -1 1487 21 1095 1606 162278 38792 3.07897 3.07897 -108.896 -3.07897 0 0 1.01997e+06 3529.29 0.27 0.07 0.21 -1 -1 0.27 0.0263583 0.023023 60 47 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.57 vpr 63.00 MiB 0.04 6864 -1 -1 1 0.04 -1 -1 30636 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.26 601 9839 4061 5483 295 63.0 MiB 0.09 0.00 2.6756 -95.1183 -2.6756 2.6756 0.70 0.00059534 0.000554018 0.0401425 0.0374039 42 2046 28 6.95648e+06 159232 744469. 2576.02 1.58 0.162422 0.141687 27202 183097 -1 1485 20 1376 1900 148485 33319 3.14992 3.14992 -120.349 -3.14992 0 0 949917. 3286.91 0.23 0.07 0.16 -1 -1 0.23 0.0241342 0.0211276 63 -1 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 6.34 vpr 63.70 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.9 MiB 1.17 651 15383 5748 6981 2654 63.7 MiB 0.13 0.00 3.07684 -102.249 -3.07684 3.07684 0.73 0.000741864 0.000688658 0.0659629 0.0612717 48 2229 36 6.95648e+06 275038 865456. 2994.66 2.21 0.225854 0.197431 28354 207349 -1 1778 23 1730 2311 222505 53983 3.90696 3.90696 -138.473 -3.90696 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0326251 0.0284881 78 56 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 7.51 vpr 63.95 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 25.1 MiB 0.71 809 13254 4261 7068 1925 63.9 MiB 0.13 0.00 3.18505 -106.72 -3.18505 3.18505 0.71 0.000756904 0.000702902 0.0590136 0.0548468 46 2137 24 6.95648e+06 260562 828058. 2865.25 3.88 0.289187 0.251057 28066 200906 -1 1722 23 1926 2765 173549 40426 3.81266 3.81266 -134.277 -3.81266 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0352277 0.0309048 78 81 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.63 vpr 63.70 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30752 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.39 1088 4987 936 3750 301 63.7 MiB 0.07 0.00 3.73059 -133.914 -3.73059 3.73059 0.69 0.000792735 0.000738136 0.0222353 0.0207581 54 2842 23 6.95648e+06 390843 949917. 3286.91 5.29 0.31794 0.273787 29506 232905 -1 2429 21 2070 3161 288943 57144 4.68216 4.68216 -170.094 -4.68216 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0322786 0.0287106 100 -1 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 6.58 vpr 63.62 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30844 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65144 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.92 707 14872 5728 6810 2334 63.6 MiB 0.13 0.00 2.89186 -95.2438 -2.89186 2.89186 0.69 0.000723792 0.000673806 0.0651127 0.0606418 38 3030 50 6.95648e+06 260562 678818. 2348.85 2.84 0.233259 0.204063 26626 170182 -1 2011 24 1753 2563 221403 48917 3.98107 3.98107 -131.84 -3.98107 0 0 902133. 3121.57 0.25 0.10 0.16 -1 -1 0.25 0.0356071 0.0311821 77 47 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 6.58 vpr 62.84 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30832 -1 -1 15 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64344 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.2 MiB 0.52 522 9064 3748 4777 539 62.8 MiB 0.07 0.00 2.65656 -80.3489 -2.65656 2.65656 0.72 0.000565865 0.000526501 0.0350621 0.0326984 36 1726 32 6.95648e+06 217135 648988. 2245.63 3.34 0.206793 0.178117 26050 158493 -1 1294 20 1058 1283 113336 25590 3.03982 3.03982 -104.21 -3.03982 0 0 828058. 2865.25 0.21 0.06 0.16 -1 -1 0.21 0.023128 0.020154 57 26 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 8.34 vpr 63.82 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30824 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.5 MiB 0.70 1188 12661 3103 7787 1771 63.8 MiB 0.13 0.00 3.4105 -118.235 -3.4105 3.4105 0.71 0.000898389 0.000832416 0.0570796 0.0530589 46 3604 37 6.95648e+06 434271 828058. 2865.25 4.64 0.33832 0.292475 28066 200906 -1 2838 22 2347 3937 335899 63506 4.24056 4.24056 -157.683 -4.24056 0 0 1.01997e+06 3529.29 0.26 0.12 0.17 -1 -1 0.26 0.0393719 0.0344329 103 85 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 9.52 vpr 63.69 MiB 0.10 7272 -1 -1 1 0.03 -1 -1 30804 -1 -1 14 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65220 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.2 MiB 3.41 770 8716 3230 4626 860 63.7 MiB 0.09 0.00 3.82604 -125.602 -3.82604 3.82604 0.66 0.000829106 0.000771627 0.0473672 0.0440923 46 2744 30 6.95648e+06 202660 828058. 2865.25 3.21 0.223969 0.194772 28066 200906 -1 1981 21 1606 2405 194890 42499 4.69151 4.69151 -155.057 -4.69151 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0338429 0.029499 79 105 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.69 vpr 63.20 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.5 MiB 2.72 613 11389 4318 6053 1018 63.2 MiB 0.11 0.00 2.5155 -88.5718 -2.5155 2.5155 0.71 0.000680037 0.000632357 0.0524999 0.0488415 38 2194 23 6.95648e+06 144757 678818. 2348.85 2.21 0.160591 0.14118 26626 170182 -1 1605 21 1160 1749 158892 34246 3.34242 3.34242 -128.138 -3.34242 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0282122 0.024638 58 86 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 7.87 vpr 63.59 MiB 0.07 6876 -1 -1 1 0.03 -1 -1 30512 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.38 839 13694 5746 7505 443 63.6 MiB 0.12 0.00 3.4405 -113.723 -3.4405 3.4405 0.70 0.000718539 0.000667502 0.0547514 0.0509081 54 2550 28 6.95648e+06 318465 949917. 3286.91 4.52 0.268526 0.233298 29506 232905 -1 1959 23 1782 2671 239244 49756 4.22156 4.22156 -147.1 -4.22156 0 0 1.17392e+06 4061.99 0.30 0.09 0.23 -1 -1 0.30 0.0321156 0.028098 83 31 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.21 vpr 63.97 MiB 0.04 7308 -1 -1 1 0.04 -1 -1 30848 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65508 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.2 MiB 0.83 910 13505 4417 6042 3046 64.0 MiB 0.13 0.00 3.4515 -115.453 -3.4515 3.4515 0.70 0.000830121 0.000771088 0.0637119 0.0593673 40 2642 37 6.95648e+06 332941 706193. 2443.58 2.57 0.248934 0.217467 26914 176310 -1 2229 24 2261 3251 297994 70438 4.48142 4.48142 -157.708 -4.48142 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0384583 0.0334877 95 50 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 7.62 vpr 63.49 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30772 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.92 828 11830 4288 5530 2012 63.5 MiB 0.11 0.00 2.77276 -89.4501 -2.77276 2.77276 0.72 0.000724823 0.000674218 0.0514466 0.0479305 46 2546 25 6.95648e+06 289514 828058. 2865.25 3.81 0.262848 0.228012 28066 200906 -1 2036 24 1609 2589 198475 44558 3.04317 3.04317 -114.079 -3.04317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0327435 0.0285165 78 50 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 18.93 vpr 63.93 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30860 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.2 MiB 0.51 859 17648 6508 9174 1966 63.9 MiB 0.15 0.00 3.14469 -114.249 -3.14469 3.14469 0.72 0.00077755 0.000722815 0.0636021 0.0590703 40 2847 40 6.95648e+06 492173 706193. 2443.58 15.39 0.398736 0.345349 26914 176310 -1 2285 24 2097 3030 398299 104261 4.17286 4.17286 -156.196 -4.17286 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0351426 0.0306365 91 61 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.47 vpr 63.60 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.7 MiB 0.52 865 18023 6841 8476 2706 63.6 MiB 0.16 0.00 2.5393 -97.0905 -2.5393 2.5393 0.72 0.00077221 0.000715196 0.0705901 0.0654592 40 2491 35 6.95648e+06 448746 706193. 2443.58 3.95 0.345846 0.30037 26914 176310 -1 2055 24 1749 2375 243184 49971 3.33152 3.33152 -129.508 -3.33152 0 0 926341. 3205.33 0.24 0.10 0.16 -1 -1 0.24 0.0351617 0.0306592 90 61 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.63 vpr 63.07 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30644 -1 -1 13 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.3 MiB 3.32 476 8289 3403 4434 452 63.1 MiB 0.07 0.00 2.67856 -82.7388 -2.67856 2.67856 0.70 0.000599577 0.000558007 0.0343467 0.0320413 38 1398 36 6.95648e+06 188184 678818. 2348.85 1.63 0.164098 0.142454 26626 170182 -1 1027 20 991 1220 63892 17341 2.95673 2.95673 -100.514 -2.95673 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0240969 0.0210606 56 28 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.10 vpr 63.34 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 608 10459 4566 5636 257 63.3 MiB 0.11 0.00 2.4623 -84.442 -2.4623 2.4623 0.73 0.000754941 0.00069681 0.0532914 0.0492433 38 1850 22 6.95648e+06 144757 678818. 2348.85 1.54 0.170534 0.149243 26626 170182 -1 1396 23 1133 1443 117260 26301 3.03082 3.03082 -109.918 -3.03082 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0287402 0.025 58 79 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 6.63 vpr 63.36 MiB 0.06 7064 -1 -1 1 0.03 -1 -1 30596 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.43 712 11923 2992 6851 2080 63.4 MiB 0.10 0.00 3.61895 -115.646 -3.61895 3.61895 0.70 0.000720926 0.00067043 0.04504 0.0419269 54 2115 33 6.95648e+06 405319 949917. 3286.91 3.28 0.20238 0.17714 29506 232905 -1 1487 21 1690 2387 243717 72428 3.89586 3.89586 -139.515 -3.89586 0 0 1.17392e+06 4061.99 0.28 0.09 0.20 -1 -1 0.28 0.0299387 0.0262288 86 29 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 7.75 vpr 63.09 MiB 0.06 6872 -1 -1 1 0.03 -1 -1 30540 -1 -1 14 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.4 MiB 1.07 513 12241 3750 6739 1752 63.1 MiB 0.11 0.00 2.76175 -81.5673 -2.76175 2.76175 0.70 0.000609437 0.000566497 0.0501282 0.0466306 48 1348 23 6.95648e+06 202660 865456. 2994.66 3.88 0.240809 0.208693 28354 207349 -1 1082 17 782 1056 70141 17539 3.03993 3.03993 -96.8593 -3.03993 0 0 1.05005e+06 3633.38 0.26 0.05 0.18 -1 -1 0.26 0.0214361 0.0187686 59 48 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.27 vpr 63.37 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30488 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.5 MiB 1.05 719 10304 4284 5838 182 63.4 MiB 0.10 0.00 2.55695 -99.062 -2.55695 2.55695 0.70 0.000649195 0.000604288 0.0460125 0.0429231 44 1948 20 6.95648e+06 144757 787024. 2723.27 3.38 0.232144 0.20133 27778 195446 -1 1616 19 1319 1793 150530 31601 2.88042 2.88042 -119.872 -2.88042 0 0 997811. 3452.63 0.28 0.07 0.17 -1 -1 0.28 0.025012 0.0218889 61 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 7.84 vpr 63.59 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30560 -1 -1 24 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65116 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 24.8 MiB 0.94 740 14295 5198 6590 2507 63.6 MiB 0.12 0.00 2.6976 -96.2661 -2.6976 2.6976 0.70 0.00074324 0.000690473 0.0578536 0.0537482 44 2078 22 6.95648e+06 347416 787024. 2723.27 4.00 0.288724 0.250388 27778 195446 -1 1713 25 1804 2324 244244 69882 3.40477 3.40477 -124.133 -3.40477 0 0 997811. 3452.63 0.25 0.10 0.19 -1 -1 0.25 0.0353382 0.0308151 82 60 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.31 vpr 63.13 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30676 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.5 MiB 2.03 821 12474 3954 7613 907 63.1 MiB 0.11 0.00 2.63455 -86.7455 -2.63455 2.63455 0.70 0.000622406 0.000578731 0.0526079 0.0489602 36 2083 40 6.95648e+06 159232 648988. 2245.63 2.54 0.193523 0.168881 26050 158493 -1 1825 20 1131 1763 176668 40147 3.52707 3.52707 -118.239 -3.52707 0 0 828058. 2865.25 0.26 0.05 0.15 -1 -1 0.26 0.0170483 0.0152378 57 49 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.69 vpr 63.68 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30776 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.8 MiB 1.42 687 12863 4647 5643 2573 63.7 MiB 0.11 0.00 2.5143 -86.9864 -2.5143 2.5143 0.70 0.000737112 0.000684652 0.0555478 0.0516345 54 1807 36 6.95648e+06 275038 949917. 3286.91 2.41 0.209212 0.182853 29506 232905 -1 1450 21 1262 1973 108673 28942 2.82222 2.82222 -105.464 -2.82222 0 0 1.17392e+06 4061.99 0.31 0.07 0.20 -1 -1 0.31 0.0309427 0.0271452 76 56 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.64 vpr 63.70 MiB 0.05 7184 -1 -1 1 0.08 -1 -1 30476 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.0 MiB 1.28 920 15103 5522 7391 2190 63.7 MiB 0.13 0.00 2.87606 -102.432 -2.87606 2.87606 0.73 0.000779746 0.00072436 0.0636638 0.0591704 38 2485 26 6.95648e+06 361892 678818. 2348.85 2.41 0.222358 0.194823 26626 170182 -1 2102 21 1905 2639 216983 43757 3.37357 3.37357 -126.432 -3.37357 0 0 902133. 3121.57 0.24 0.10 0.15 -1 -1 0.24 0.0356022 0.0312676 85 88 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.48 vpr 63.36 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30536 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 578 9529 3974 5251 304 63.4 MiB 0.09 0.00 2.4011 -84.8413 -2.4011 2.4011 0.70 0.000657086 0.000610383 0.0427728 0.0397946 50 1866 36 6.95648e+06 144757 902133. 3121.57 1.92 0.185095 0.161067 28642 213929 -1 1410 22 1194 1807 148675 36470 3.41272 3.41272 -113.74 -3.41272 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0282153 0.0246427 61 54 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.53 vpr 63.17 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30352 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.5 MiB 0.98 636 8444 3437 4770 237 63.2 MiB 0.08 0.00 2.5503 -94.7535 -2.5503 2.5503 0.71 0.000666308 0.000618397 0.0391006 0.0363886 44 2024 26 6.95648e+06 144757 787024. 2723.27 1.68 0.147058 0.128555 27778 195446 -1 1574 19 1358 2025 138989 31978 2.91457 2.91457 -113.923 -2.91457 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0258019 0.0225382 63 60 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.87 vpr 63.86 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 31020 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65388 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.9 MiB 0.85 841 16053 4604 9696 1753 63.9 MiB 0.14 0.00 3.15569 -114.144 -3.15569 3.15569 0.70 0.000774196 0.000719755 0.06189 0.0575481 44 2243 25 6.95648e+06 419795 787024. 2723.27 4.14 0.323838 0.28135 27778 195446 -1 1850 25 2222 3203 227428 48846 3.81746 3.81746 -145.972 -3.81746 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0358286 0.03123 88 49 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.20 vpr 63.64 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30660 -1 -1 19 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.88 819 8852 3579 4926 347 63.6 MiB 0.08 0.00 2.6053 -89.9611 -2.6053 2.6053 0.70 0.000712587 0.000662505 0.0390845 0.0363867 38 2094 25 6.95648e+06 275038 678818. 2348.85 3.58 0.248753 0.214931 26626 170182 -1 1697 19 1321 1782 119749 26773 2.97757 2.97757 -112.256 -2.97757 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0271332 0.0237569 77 54 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 7.78 vpr 63.91 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30940 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.46 872 17523 6731 8900 1892 63.9 MiB 0.16 0.00 3.10069 -113.963 -3.10069 3.10069 0.70 0.000851851 0.000791501 0.0743412 0.0690756 40 2700 25 6.95648e+06 419795 706193. 2443.58 3.35 0.249759 0.218731 26914 176310 -1 2368 30 2664 3848 459329 127427 4.37996 4.37996 -166.131 -4.37996 0 0 926341. 3205.33 0.23 0.16 0.15 -1 -1 0.23 0.045866 0.0396319 89 117 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.26 vpr 62.86 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30488 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.3 MiB 1.16 615 9529 3473 3838 2218 62.9 MiB 0.08 0.00 2.4703 -82.3656 -2.4703 2.4703 0.70 0.000569992 0.000531099 0.0371371 0.0346249 38 1818 23 6.95648e+06 159232 678818. 2348.85 2.51 0.151941 0.132321 26626 170182 -1 1535 24 1178 1760 150132 32890 3.14927 3.14927 -111.941 -3.14927 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0263443 0.0229166 58 -1 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 5.54 vpr 63.81 MiB 0.06 7128 -1 -1 1 0.03 -1 -1 30688 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 0.91 785 13719 5670 7310 739 63.8 MiB 0.12 0.00 3.10505 -105.949 -3.10505 3.10505 0.70 0.000774079 0.00071846 0.0581038 0.0539697 44 2403 24 6.95648e+06 332941 787024. 2723.27 1.84 0.181492 0.159481 27778 195446 -1 1801 19 1416 1979 150005 33292 3.78476 3.78476 -139.337 -3.78476 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0298338 0.0261837 81 89 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.28 vpr 63.48 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.8 MiB 2.70 654 11699 5172 6241 286 63.5 MiB 0.11 0.00 2.45985 -93.5493 -2.45985 2.45985 0.70 0.000719959 0.000669159 0.056241 0.0523271 46 1650 24 6.95648e+06 144757 828058. 2865.25 3.79 0.266957 0.231728 28066 200906 -1 1412 21 1440 1999 148784 33566 2.99952 2.99952 -122.693 -2.99952 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0290665 0.0253627 61 93 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.53 vpr 63.65 MiB 0.05 7144 -1 -1 1 0.04 -1 -1 30580 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 1.00 789 12178 4192 5770 2216 63.6 MiB 0.11 0.00 2.5393 -93.8042 -2.5393 2.5393 0.70 0.000761245 0.000705612 0.050389 0.0468359 46 2363 33 6.95648e+06 347416 828058. 2865.25 1.71 0.184453 0.161665 28066 200906 -1 1631 24 1543 2308 148558 36324 3.36557 3.36557 -120.314 -3.36557 0 0 1.01997e+06 3529.29 0.25 0.08 0.13 -1 -1 0.25 0.0349474 0.0305076 84 59 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 9.09 vpr 64.13 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30976 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65672 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.8 MiB 1.27 1063 18967 7179 10260 1528 64.1 MiB 0.20 0.00 3.74344 -132.999 -3.74344 3.74344 0.76 0.000923865 0.000858435 0.0870285 0.0807671 48 2867 22 6.95648e+06 477698 865456. 2994.66 4.72 0.392048 0.340927 28354 207349 -1 2384 23 2584 3764 351031 68621 4.73391 4.73391 -173.181 -4.73391 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0402895 0.0351775 104 81 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 4.48 vpr 62.69 MiB 0.05 6856 -1 -1 1 0.03 -1 -1 30548 -1 -1 10 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.1 MiB 0.43 450 8714 3437 4485 792 62.7 MiB 0.07 0.00 1.83056 -62.632 -1.83056 1.83056 0.67 0.000527009 0.000490788 0.0325802 0.0303688 34 1483 34 6.95648e+06 144757 618332. 2139.56 1.51 0.144661 0.12529 25762 151098 -1 993 19 697 855 55775 15292 2.12958 2.12958 -83.6264 -2.12958 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0202978 0.0177221 45 51 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.29 vpr 63.07 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30532 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64584 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.5 MiB 1.65 585 9529 3924 5179 426 63.1 MiB 0.08 0.00 2.68956 -87.7818 -2.68956 2.68956 0.70 0.000614217 0.000571965 0.0399384 0.0372049 42 1809 24 6.95648e+06 173708 744469. 2576.02 1.88 0.161621 0.140845 27202 183097 -1 1422 20 1041 1450 141338 33132 3.10097 3.10097 -111.289 -3.10097 0 0 949917. 3286.91 0.24 0.07 0.16 -1 -1 0.24 0.0246649 0.0214905 58 29 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.15 vpr 63.45 MiB 0.02 6836 -1 -1 1 0.04 -1 -1 30268 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.6 MiB 0.24 583 9994 4156 5510 328 63.4 MiB 0.11 0.00 2.43165 -92.7025 -2.43165 2.43165 0.70 0.000642202 0.000596505 0.0548171 0.0511078 54 2001 45 6.95648e+06 144757 949917. 3286.91 3.03 0.23052 0.200857 29506 232905 -1 1469 21 1385 2214 186405 44189 3.03252 3.03252 -119.917 -3.03252 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0269836 0.0236229 65 31 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 6.38 vpr 62.84 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30632 -1 -1 15 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.3 MiB 0.48 456 8714 3671 4354 689 62.8 MiB 0.08 0.00 2.73975 -74.1765 -2.73975 2.73975 0.73 0.000425265 0.000391282 0.0331813 0.0309606 38 1839 45 6.95648e+06 217135 678818. 2348.85 3.20 0.150465 0.130328 26626 170182 -1 1197 20 1039 1380 94531 23624 3.19517 3.19517 -100.555 -3.19517 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0218299 0.0190318 56 19 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 10.59 vpr 63.88 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.13 821 9368 3851 5297 220 63.9 MiB 0.10 0.00 3.24434 -110.581 -3.24434 3.24434 0.80 0.000762267 0.000705131 0.0491488 0.0456706 38 3377 44 6.95648e+06 188184 678818. 2348.85 6.54 0.244711 0.213332 26626 170182 -1 2288 21 1803 3042 254921 53535 4.31206 4.31206 -152.362 -4.31206 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0331786 0.0290159 77 84 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.98 vpr 63.91 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 30664 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65440 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.2 MiB 0.85 743 12926 4367 6330 2229 63.9 MiB 0.11 0.00 2.5925 -92.6947 -2.5925 2.5925 0.70 0.000776336 0.000720572 0.0513434 0.0476945 38 2443 26 6.95648e+06 419795 678818. 2348.85 3.41 0.215372 0.188296 26626 170182 -1 1829 21 1795 2381 181604 40583 3.30147 3.30147 -122.723 -3.30147 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.031777 0.0277534 87 88 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 6.21 vpr 63.51 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30992 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 25.0 MiB 0.67 1339 15395 5888 7731 1776 63.5 MiB 0.15 0.00 3.54004 -131.105 -3.54004 3.54004 0.70 0.000810115 0.000752785 0.0691626 0.0642761 46 3441 25 6.99608e+06 323745 828058. 2865.25 2.63 0.235496 0.206919 28066 200906 -1 2701 24 2458 2897 254703 53003 4.35531 4.35531 -167.82 -4.35531 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0374145 0.0326572 130 80 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 8.16 vpr 63.66 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30840 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1212 14500 6175 7840 485 63.7 MiB 0.14 0.00 3.52832 -121.548 -3.52832 3.52832 0.70 0.000755461 0.000702111 0.0646111 0.0600772 48 3051 23 6.99608e+06 294314 865456. 2994.66 3.90 0.29411 0.256205 28354 207349 -1 2727 24 2625 3600 338314 75895 4.50009 4.50009 -158.102 -4.50009 0 0 1.05005e+06 3633.38 0.26 0.11 0.18 -1 -1 0.26 0.0346051 0.0301865 117 78 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 7.00 vpr 63.66 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30576 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 25.0 MiB 0.86 1043 15390 6153 6789 2448 63.7 MiB 0.15 0.00 2.96629 -107.794 -2.96629 2.96629 0.71 0.000738788 0.00068708 0.0688178 0.0640607 40 3362 28 6.99608e+06 264882 706193. 2443.58 3.22 0.219867 0.193675 26914 176310 -1 2713 24 2086 2473 313733 82238 4.15766 4.15766 -149.263 -4.15766 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0362118 0.0324573 106 50 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 7.69 vpr 63.18 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30672 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.4 MiB 0.64 893 14106 5931 7515 660 63.2 MiB 0.13 0.00 3.16965 -104.761 -3.16965 3.16965 0.70 0.000681533 0.000634028 0.0595022 0.055383 44 2759 28 6.99608e+06 264882 787024. 2723.27 4.13 0.271616 0.23611 27778 195446 -1 2095 19 1658 2395 186348 40181 3.79252 3.79252 -135.723 -3.79252 0 0 997811. 3452.63 0.26 0.08 0.21 -1 -1 0.26 0.0267154 0.02344 89 25 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 8.37 vpr 63.45 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30564 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.6 MiB 0.50 1150 12585 5319 7044 222 63.5 MiB 0.13 0.00 3.52464 -133.869 -3.52464 3.52464 0.71 0.000735651 0.000683513 0.0577609 0.0537497 48 3390 25 6.99608e+06 220735 865456. 2994.66 4.90 0.323239 0.280071 28354 207349 -1 2886 23 2537 4003 423594 84232 4.51355 4.51355 -174.357 -4.51355 0 0 1.05005e+06 3633.38 0.27 0.13 0.18 -1 -1 0.27 0.032437 0.0283589 93 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 6.78 vpr 63.66 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30528 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 25.0 MiB 0.50 1287 17134 6098 8739 2297 63.7 MiB 0.15 0.00 3.05559 -111.202 -3.05559 3.05559 0.72 0.000766517 0.000712092 0.0644955 0.0599124 46 3588 33 6.99608e+06 441471 828058. 2865.25 3.38 0.23094 0.202384 28066 200906 -1 2802 23 2169 3118 288500 58645 3.72861 3.72861 -140.488 -3.72861 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.033723 0.029498 117 61 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.54 vpr 62.85 MiB 0.06 6924 -1 -1 1 0.03 -1 -1 30800 -1 -1 15 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.11 563 10304 4323 5395 586 62.9 MiB 0.09 0.00 2.64844 -83.5724 -2.64844 2.64844 0.76 0.000567116 0.000527826 0.0396846 0.036967 38 1857 24 6.99608e+06 220735 678818. 2348.85 1.71 0.151399 0.131758 26626 170182 -1 1490 23 1500 2138 190571 41467 3.32957 3.32957 -111.35 -3.32957 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0250802 0.0217943 68 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 6.15 vpr 63.12 MiB 0.05 6948 -1 -1 1 0.05 -1 -1 30480 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.4 MiB 0.44 762 11776 3811 5679 2286 63.1 MiB 0.11 0.00 2.36575 -80.4975 -2.36575 2.36575 0.76 0.000668397 0.000622515 0.0478531 0.0445919 46 2311 45 6.99608e+06 250167 828058. 2865.25 2.80 0.184849 0.161914 28066 200906 -1 1618 29 1422 2037 175254 55639 2.96062 2.96062 -108.983 -2.96062 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0351572 0.03054 77 -1 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 9.30 vpr 63.36 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30460 -1 -1 15 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.6 MiB 2.64 1001 11864 4950 6574 340 63.4 MiB 0.11 0.00 2.58244 -94.0613 -2.58244 2.58244 0.71 0.000666181 0.000619635 0.0502082 0.0467492 48 2218 23 6.99608e+06 220735 865456. 2994.66 3.84 0.225871 0.19618 28354 207349 -1 1900 21 1781 2187 187239 41004 3.44287 3.44287 -123.566 -3.44287 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0274351 0.0239711 96 81 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.73 vpr 62.93 MiB 0.08 6860 -1 -1 1 0.03 -1 -1 30508 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.3 MiB 0.66 717 8879 3091 4039 1749 62.9 MiB 0.08 0.00 2.95409 -109.113 -2.95409 2.95409 0.70 0.000646406 0.00060101 0.0375608 0.0349877 40 2445 26 6.99608e+06 191304 706193. 2443.58 2.28 0.167601 0.145841 26914 176310 -1 2009 22 1831 2256 215670 48273 3.60816 3.60816 -139.703 -3.60816 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0275162 0.0239855 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 14.10 vpr 63.10 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30480 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.6 MiB 2.15 795 11161 3787 5546 1828 63.1 MiB 0.10 0.00 3.05483 -104.248 -3.05483 3.05483 0.73 0.000636857 0.000591628 0.046768 0.0435563 38 2801 36 6.99608e+06 220735 678818. 2348.85 9.11 0.292418 0.252225 26626 170182 -1 2148 21 1945 2590 251572 55293 4.0456 4.0456 -140.436 -4.0456 0 0 902133. 3121.57 0.26 0.11 0.16 -1 -1 0.26 0.0292893 0.0262171 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 5.36 vpr 63.26 MiB 0.02 6816 -1 -1 1 0.03 -1 -1 30872 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.71 1055 11698 4034 5823 1841 63.3 MiB 0.11 0.00 2.5521 -101.073 -2.5521 2.5521 0.71 0.000660344 0.000614043 0.0480202 0.0446636 44 2409 21 6.99608e+06 206020 787024. 2723.27 1.90 0.174035 0.152393 27778 195446 -1 1960 19 1316 1410 121339 25110 3.08897 3.08897 -122.052 -3.08897 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0250907 0.021985 91 57 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 8.27 vpr 63.57 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 25.0 MiB 0.86 1009 11088 3493 5989 1606 63.6 MiB 0.11 0.00 2.87709 -104.678 -2.87709 2.87709 0.71 0.000743903 0.000692184 0.0509956 0.0475036 54 2277 30 6.99608e+06 235451 949917. 3286.91 4.50 0.282811 0.245259 29506 232905 -1 1878 21 1749 2382 175331 40780 3.40586 3.40586 -128.967 -3.40586 0 0 1.17392e+06 4061.99 0.30 0.08 0.20 -1 -1 0.30 0.0311204 0.0273042 101 55 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 6.58 vpr 63.68 MiB 0.07 7120 -1 -1 1 0.03 -1 -1 30744 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.0 MiB 0.79 1221 14663 4666 7992 2005 63.7 MiB 0.14 0.00 3.53384 -132.883 -3.53384 3.53384 0.75 0.000774671 0.000719898 0.0654337 0.0608175 46 3273 43 6.99608e+06 279598 828058. 2865.25 2.77 0.240328 0.210424 28066 200906 -1 2649 22 2655 3434 278144 55803 4.43851 4.43851 -167.56 -4.43851 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0332885 0.029165 112 60 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.08 vpr 62.87 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30844 -1 -1 14 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.3 MiB 2.10 548 11135 4335 5437 1363 62.9 MiB 0.09 0.00 2.42075 -79.3785 -2.42075 2.42075 0.74 0.000574733 0.000535164 0.0426806 0.0397734 44 2021 50 6.99608e+06 206020 787024. 2723.27 2.20 0.160407 0.13978 27778 195446 -1 1270 22 1118 1560 107751 27186 2.89832 2.89832 -100.04 -2.89832 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0246837 0.0214935 67 21 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 20.74 vpr 63.54 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30624 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.9 MiB 1.89 1324 15388 6313 7985 1090 63.5 MiB 0.15 0.00 2.92839 -113.251 -2.92839 2.92839 0.75 0.000762747 0.000707835 0.069327 0.0643143 40 3380 29 6.99608e+06 235451 706193. 2443.58 15.84 0.356167 0.309564 26914 176310 -1 3023 21 2803 3974 456248 94598 3.71571 3.71571 -151.606 -3.71571 0 0 926341. 3205.33 0.25 0.14 0.15 -1 -1 0.25 0.0326876 0.0286834 106 60 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 13.97 vpr 63.55 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.7 MiB 1.08 1153 9881 3091 5318 1472 63.6 MiB 0.10 0.00 2.70344 -107.752 -2.70344 2.70344 0.70 0.000739637 0.000687494 0.0443837 0.0413061 40 2844 24 6.99608e+06 250167 706193. 2443.58 10.13 0.334153 0.288522 26914 176310 -1 2560 23 2074 2615 277083 54021 3.47181 3.47181 -143.678 -3.47181 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0328456 0.0286695 99 54 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.80 vpr 63.38 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.6 MiB 0.64 1128 13856 4791 7428 1637 63.4 MiB 0.12 0.00 2.74594 -108.216 -2.74594 2.74594 0.70 0.000668436 0.000621782 0.0583713 0.0543295 40 2644 36 6.99608e+06 206020 706193. 2443.58 2.26 0.204717 0.179241 26914 176310 -1 2378 20 1721 2062 225761 44533 3.24351 3.24351 -134.181 -3.24351 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0304333 0.0267607 91 62 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.51 vpr 62.55 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30380 -1 -1 11 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.9 MiB 2.04 751 8585 3232 4109 1244 62.5 MiB 0.07 0.00 1.97056 -79.4021 -1.97056 1.97056 0.69 0.000503584 0.000468846 0.0302337 0.0281818 36 1692 28 6.99608e+06 161872 648988. 2245.63 1.91 0.137372 0.119316 26050 158493 -1 1456 18 744 807 73613 14994 2.12343 2.12343 -91.6709 -2.12343 0 0 828058. 2865.25 0.22 0.05 0.15 -1 -1 0.22 0.0185986 0.0162395 56 29 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 9.05 vpr 63.27 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30772 -1 -1 15 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.5 MiB 2.12 1098 12030 4684 6566 780 63.3 MiB 0.11 0.00 2.92409 -110.186 -2.92409 2.92409 0.70 0.000671184 0.000624903 0.0500166 0.046528 46 2447 22 6.99608e+06 220735 828058. 2865.25 4.09 0.233114 0.202691 28066 200906 -1 2107 21 1611 2000 178395 35510 3.38681 3.38681 -134.504 -3.38681 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0274589 0.0239951 91 55 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 14.41 vpr 63.51 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30400 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1014 14295 4567 7423 2305 63.5 MiB 0.13 0.00 3.41663 -122.488 -3.41663 3.41663 0.70 0.000723251 0.000672785 0.0567121 0.052793 36 3430 38 6.99608e+06 338461 648988. 2245.63 11.16 0.348226 0.302366 26050 158493 -1 2666 23 2300 3127 326138 69186 4.9827 4.9827 -173.649 -4.9827 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0321563 0.0280984 97 31 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 8.77 vpr 63.57 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30772 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.2 MiB 1.24 1195 15773 6301 7922 1550 63.6 MiB 0.15 0.00 3.26728 -113.078 -3.26728 3.26728 0.70 0.000840006 0.000776942 0.0731886 0.0680813 52 3571 42 6.99608e+06 323745 926341. 3205.33 4.52 0.349563 0.303059 29218 227130 -1 2237 24 2311 2653 191650 42651 4.13595 4.13595 -141.958 -4.13595 0 0 1.14541e+06 3963.36 0.31 0.12 0.19 -1 -1 0.31 0.0435065 0.0380132 138 108 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 4.89 vpr 62.37 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30832 -1 -1 15 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63868 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.8 MiB 0.68 451 10713 4272 4981 1460 62.4 MiB 0.07 0.00 2.1814 -63.0149 -2.1814 2.1814 0.70 0.000448492 0.000417354 0.0330849 0.0308137 36 1545 38 6.99608e+06 220735 648988. 2245.63 1.66 0.131814 0.114709 26050 158493 -1 1059 18 642 743 63865 14623 2.54267 2.54267 -81.6816 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0166845 0.0146064 52 21 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 6.90 vpr 63.21 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30328 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.76 827 7596 3090 4285 221 63.2 MiB 0.08 0.00 3.28415 -110.154 -3.28415 3.28415 0.70 0.000682369 0.000634184 0.0348032 0.0324106 46 2740 35 6.99608e+06 176588 828058. 2865.25 3.38 0.18441 0.160361 28066 200906 -1 2099 22 1707 2588 279505 57634 4.18256 4.18256 -145.874 -4.18256 0 0 1.01997e+06 3529.29 0.27 0.09 0.17 -1 -1 0.27 0.0293749 0.0256877 75 -1 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.51 vpr 62.34 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30732 -1 -1 8 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.9 MiB 0.26 744 9608 3037 4927 1644 62.3 MiB 0.06 0.00 1.68521 -70.7407 -1.68521 1.68521 0.70 0.000366315 0.000337908 0.026196 0.0242726 34 1592 37 6.99608e+06 117725 618332. 2139.56 1.52 0.134699 0.117758 25762 151098 -1 1471 14 600 776 77419 15293 2.17562 2.17562 -94.8883 -2.17562 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.0143549 0.0126645 44 -1 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 8.60 vpr 63.45 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30688 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.6 MiB 1.13 804 11981 4982 6472 527 63.4 MiB 0.12 0.00 3.29675 -118.435 -3.29675 3.29675 0.72 0.000736733 0.000684741 0.053182 0.0495019 48 2917 42 6.99608e+06 250167 865456. 2994.66 4.58 0.344579 0.297893 28354 207349 -1 2272 25 2320 3312 319112 71764 4.60356 4.60356 -157.233 -4.60356 0 0 1.05005e+06 3633.38 0.26 0.11 0.18 -1 -1 0.26 0.0346993 0.0302925 95 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.37 vpr 63.32 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30356 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.27 1009 10028 2588 6723 717 63.3 MiB 0.09 0.00 2.43175 -97.1259 -2.43175 2.43175 0.69 0.000697346 0.000644567 0.0359129 0.0334118 36 2704 42 6.99608e+06 412039 648988. 2245.63 3.41 0.195303 0.169948 26050 158493 -1 2246 20 1553 2241 219082 43429 3.04357 3.04357 -124.024 -3.04357 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0275542 0.0241245 87 -1 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 5.50 vpr 63.53 MiB 0.05 6964 -1 -1 1 0.05 -1 -1 30752 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1309 12547 3240 8247 1060 63.5 MiB 0.12 0.00 3.14945 -120.96 -3.14945 3.14945 0.70 0.000774431 0.000720408 0.0551592 0.0513225 44 3679 26 6.99608e+06 309029 787024. 2723.27 1.86 0.209856 0.183669 27778 195446 -1 2967 22 2179 3111 247979 50825 4.09442 4.09442 -155.672 -4.09442 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0330112 0.0288723 115 54 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 5.97 vpr 62.74 MiB 0.05 6868 -1 -1 1 0.03 -1 -1 30364 -1 -1 11 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.1 MiB 1.09 739 9555 3965 5340 250 62.7 MiB 0.09 0.00 2.4829 -86.6264 -2.4829 2.4829 0.71 0.000611842 0.000568032 0.0392005 0.0365018 46 2063 24 6.99608e+06 161872 828058. 2865.25 2.10 0.160931 0.140143 28066 200906 -1 1609 22 1223 1727 137650 31809 3.01167 3.01167 -112.931 -3.01167 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0267091 0.023211 72 31 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 14.97 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30436 -1 -1 13 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64384 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.2 MiB 7.15 667 8291 3398 4446 447 62.9 MiB 0.08 0.00 2.93029 -96.4466 -2.93029 2.93029 0.69 0.000608757 0.000566609 0.0342301 0.0318752 56 1983 30 6.99608e+06 191304 973134. 3367.25 5.01 0.24717 0.212848 29794 239141 -1 1616 20 1666 2450 222647 49922 3.87411 3.87411 -133.034 -3.87411 0 0 1.19926e+06 4149.71 0.29 0.08 0.21 -1 -1 0.29 0.0244754 0.0213646 73 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 7.27 vpr 62.71 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30496 -1 -1 15 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64212 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.05 868 7975 3224 4411 340 62.7 MiB 0.07 0.00 3.06475 -100.65 -3.06475 3.06475 0.71 0.000585127 0.000544595 0.0314477 0.0293047 44 2260 25 6.99608e+06 220735 787024. 2723.27 3.51 0.209288 0.180256 27778 195446 -1 1878 19 1093 1653 138786 27978 3.25856 3.25856 -121.043 -3.25856 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0224232 0.0195842 72 27 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 5.57 vpr 62.87 MiB 0.05 6824 -1 -1 1 0.03 -1 -1 30716 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.18 703 7204 2556 3394 1254 62.9 MiB 0.07 0.00 2.36125 -93.3467 -2.36125 2.36125 0.75 0.000531233 0.000487219 0.0304052 0.02831 48 1806 31 6.99608e+06 147157 865456. 2994.66 2.55 0.167221 0.145449 28354 207349 -1 1578 21 1515 2298 231033 64834 2.94132 2.94132 -121.369 -2.94132 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0251461 0.0219441 64 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.60 vpr 62.98 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30448 -1 -1 15 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64488 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 1030 10702 2936 6270 1496 63.0 MiB 0.10 0.00 2.44275 -95.3414 -2.44275 2.44275 0.77 0.000551501 0.000510998 0.0425922 0.0396993 44 2331 27 6.99608e+06 220735 787024. 2723.27 4.07 0.253136 0.218608 27778 195446 -1 1911 22 1397 1901 140538 29608 2.74627 2.74627 -113.247 -2.74627 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0268285 0.0233729 77 26 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 9.01 vpr 63.30 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30360 -1 -1 16 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.5 MiB 2.83 906 11487 3878 5481 2128 63.3 MiB 0.05 0.00 2.36775 -85.1233 -2.36775 2.36775 0.65 0.000278324 0.000256502 0.0213231 0.019698 38 2294 48 6.99608e+06 235451 678818. 2348.85 3.54 0.224278 0.19205 26626 170182 -1 1925 21 1444 1769 153735 31363 2.77922 2.77922 -107.764 -2.77922 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0259263 0.0226039 86 55 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 6.71 vpr 63.58 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 24.9 MiB 0.93 1128 15822 6743 8694 385 63.6 MiB 0.16 0.00 3.13845 -117.572 -3.13845 3.13845 0.70 0.000830169 0.000772585 0.0749302 0.0697907 46 3740 46 6.99608e+06 294314 828058. 2865.25 2.82 0.234236 0.206324 28066 200906 -1 2734 23 2446 3822 346356 70916 4.03512 4.03512 -155.054 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0365938 0.0319727 106 26 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 15.63 vpr 63.52 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30648 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.95 1118 10940 3664 5290 1986 63.5 MiB 0.12 0.00 3.45278 -122.09 -3.45278 3.45278 0.70 0.000766919 0.00071342 0.0499992 0.0465182 44 3931 44 6.99608e+06 264882 787024. 2723.27 11.75 0.363343 0.314112 27778 195446 -1 2636 29 3233 4445 515474 123663 4.19295 4.19295 -159.907 -4.19295 0 0 997811. 3452.63 0.25 0.16 0.17 -1 -1 0.25 0.0411021 0.0358105 110 62 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 13.14 vpr 63.51 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30752 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 0.77 1123 9036 2302 5580 1154 63.5 MiB 0.08 0.00 2.93639 -106.191 -2.93639 2.93639 0.70 0.000676245 0.000628647 0.0386016 0.0359063 38 2658 38 6.99608e+06 235451 678818. 2348.85 9.67 0.307162 0.264124 26626 170182 -1 2213 24 1601 1636 237505 72273 3.43716 3.43716 -128.601 -3.43716 0 0 902133. 3121.57 0.21 0.09 0.10 -1 -1 0.21 0.0310165 0.0270118 99 77 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.65 vpr 63.50 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65020 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.80 1109 9181 2496 6375 310 63.5 MiB 0.10 0.00 2.97859 -109.384 -2.97859 2.97859 0.71 0.000759527 0.000706428 0.0418642 0.0389167 44 3082 43 6.99608e+06 264882 787024. 2723.27 2.06 0.179378 0.156476 27778 195446 -1 2398 21 2105 2829 209320 45860 3.52636 3.52636 -138.409 -3.52636 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0310128 0.0271547 105 59 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 8.04 vpr 63.75 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30660 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65276 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.4 MiB 1.03 1445 15584 6712 8404 468 63.7 MiB 0.15 0.00 3.77697 -130.506 -3.77697 3.77697 0.70 0.000835888 0.000777113 0.0722166 0.0671965 46 3582 26 6.99608e+06 338461 828058. 2865.25 4.09 0.321884 0.279074 28066 200906 -1 2789 23 2753 3148 295887 59366 4.37654 4.37654 -165.207 -4.37654 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0366461 0.0319033 138 111 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.54 vpr 63.83 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30636 -1 -1 19 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65364 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 25.1 MiB 2.87 1107 9338 2632 4729 1977 63.8 MiB 0.10 0.00 4.07463 -130.432 -4.07463 4.07463 0.70 0.000767351 0.000713198 0.0432178 0.0401939 40 3486 43 6.99608e+06 279598 706193. 2443.58 2.83 0.212683 0.185183 26914 176310 -1 2950 23 2628 3358 404401 84294 5.2672 5.2672 -175.034 -5.2672 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0342829 0.0299531 117 86 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.78 vpr 63.54 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 24.8 MiB 2.09 1043 14483 4328 7844 2311 63.5 MiB 0.14 0.00 2.94309 -105.652 -2.94309 2.94309 0.70 0.000751131 0.00069829 0.062925 0.0585195 46 2976 28 6.99608e+06 294314 828058. 2865.25 3.80 0.292361 0.254268 28066 200906 -1 2251 21 2150 2848 206391 44000 3.21326 3.21326 -128.747 -3.21326 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312108 0.0273173 107 58 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 17.52 vpr 63.66 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 31124 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.82 1124 7431 2784 3679 968 63.7 MiB 0.08 0.00 3.16045 -115.491 -3.16045 3.16045 0.70 0.000765904 0.000711723 0.0352571 0.0328131 40 3719 34 6.99608e+06 250167 706193. 2443.58 13.80 0.375081 0.323147 26914 176310 -1 2845 29 2838 3587 503456 132930 4.67692 4.67692 -170.154 -4.67692 0 0 926341. 3205.33 0.23 0.16 0.15 -1 -1 0.23 0.0420852 0.036574 110 42 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.92 vpr 63.82 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30836 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.4 MiB 2.00 1452 15962 6743 8843 376 63.8 MiB 0.18 0.00 3.89803 -142.283 -3.89803 3.89803 0.70 0.000911126 0.000847423 0.0808262 0.0751552 56 3442 22 6.99608e+06 323745 973134. 3367.25 4.86 0.391784 0.34025 29794 239141 -1 3087 24 3176 4363 434922 89186 5.2567 5.2567 -186.785 -5.2567 0 0 1.19926e+06 4149.71 0.29 0.14 0.21 -1 -1 0.29 0.0417207 0.0363724 139 91 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 5.08 vpr 62.87 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30676 -1 -1 13 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.87 879 9836 3028 5712 1096 62.9 MiB 0.09 0.00 2.6383 -100.454 -2.6383 2.6383 0.70 0.000625551 0.00058227 0.0407631 0.0379508 38 2097 30 6.99608e+06 191304 678818. 2348.85 1.52 0.143608 0.125779 26626 170182 -1 1862 21 1481 1836 146103 30870 3.16707 3.16707 -124.94 -3.16707 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0257846 0.0225131 75 24 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 20.72 vpr 63.68 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30568 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 25.0 MiB 0.68 1062 14606 6331 7793 482 63.7 MiB 0.14 0.00 3.52894 -121.939 -3.52894 3.52894 0.70 0.000751475 0.000699042 0.0655449 0.0609179 44 3321 30 6.99608e+06 264882 787024. 2723.27 17.14 0.379186 0.328455 27778 195446 -1 2358 21 2130 2682 208381 45656 4.40851 4.40851 -157.472 -4.40851 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.031381 0.0274679 106 59 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 19.10 vpr 63.54 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30808 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.8 MiB 1.10 1350 16188 5852 8372 1964 63.5 MiB 0.15 0.00 3.04459 -115.214 -3.04459 3.04459 0.69 0.000757772 0.000704428 0.0694472 0.0646046 40 3671 38 6.99608e+06 294314 706193. 2443.58 15.11 0.38648 0.335304 26914 176310 -1 3130 20 2048 2924 318496 64148 3.91006 3.91006 -151.569 -3.91006 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0305805 0.0267911 108 54 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.43 vpr 63.20 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30600 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.77 772 11813 5005 6472 336 63.2 MiB 0.12 0.00 2.92079 -109.375 -2.92079 2.92079 0.72 0.00070634 0.00065666 0.0538477 0.0501362 46 2851 28 6.99608e+06 191304 828058. 2865.25 2.74 0.19788 0.173244 28066 200906 -1 2190 22 1922 3222 290359 61402 4.08336 4.08336 -152.576 -4.08336 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0300992 0.0263082 77 -1 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.90 vpr 63.73 MiB 0.04 7032 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.21 1065 15023 3712 10419 892 63.7 MiB 0.15 0.00 2.95404 -109.632 -2.95404 2.95404 0.72 0.000788016 0.000726886 0.0675712 0.0627763 46 3235 35 6.99608e+06 279598 828058. 2865.25 2.73 0.23597 0.207068 28066 200906 -1 2330 23 2067 2456 197740 50550 4.22661 4.22661 -156.314 -4.22661 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0346065 0.0302482 120 81 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.84 vpr 63.65 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30496 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 25.0 MiB 0.91 992 12345 3441 7104 1800 63.7 MiB 0.12 0.00 2.95229 -106.433 -2.95229 2.95229 0.70 0.000757332 0.000703622 0.0540876 0.0502939 52 2946 45 6.99608e+06 294314 926341. 3205.33 4.01 0.302814 0.262965 29218 227130 -1 2106 23 2053 2685 220044 47117 3.85696 3.85696 -138.595 -3.85696 0 0 1.14541e+06 3963.36 0.28 0.09 0.19 -1 -1 0.28 0.0337108 0.0294596 106 58 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 19.41 vpr 63.49 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30684 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1173 15306 5710 7465 2131 63.5 MiB 0.15 0.00 2.95409 -111.852 -2.95409 2.95409 0.70 0.000772235 0.000717434 0.0702828 0.0653802 44 3751 41 6.99608e+06 250167 787024. 2723.27 15.72 0.398399 0.345382 27778 195446 -1 2626 25 2127 2788 249668 51299 3.97606 3.97606 -142.573 -3.97606 0 0 997811. 3452.63 0.25 0.11 0.18 -1 -1 0.25 0.0366683 0.0320298 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.00 vpr 63.58 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30792 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.7 MiB 0.88 830 13324 4116 6747 2461 63.6 MiB 0.12 0.00 3.16045 -112.736 -3.16045 3.16045 0.70 0.000729401 0.000677818 0.0593859 0.0552772 62 2503 49 6.99608e+06 235451 1.05005e+06 3633.38 3.18 0.263248 0.229437 30946 263737 -1 1608 23 1792 2568 164103 39474 3.93182 3.93182 -141.807 -3.93182 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0324165 0.0283129 94 21 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 6.74 vpr 63.55 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30816 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 934 14856 6254 8148 454 63.5 MiB 0.14 0.00 3.17145 -114.606 -3.17145 3.17145 0.70 0.000771751 0.000716671 0.0668222 0.0621087 44 3441 42 6.99608e+06 264882 787024. 2723.27 2.99 0.240066 0.210128 27778 195446 -1 2338 25 2462 2918 274757 63984 4.35902 4.35902 -156.174 -4.35902 0 0 997811. 3452.63 0.25 0.11 0.17 -1 -1 0.25 0.03629 0.0317233 110 50 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 7.27 vpr 63.52 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30700 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.2 MiB 1.35 1418 16453 6068 8017 2368 63.5 MiB 0.16 0.00 3.27348 -116.042 -3.27348 3.27348 0.70 0.000819778 0.000761892 0.0759274 0.0706683 46 3413 19 6.99608e+06 323745 828058. 2865.25 2.97 0.233087 0.204629 28066 200906 -1 2794 23 2413 2893 247116 50576 4.15815 4.15815 -147.145 -4.15815 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0360107 0.0313407 132 110 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 6.59 vpr 63.61 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30688 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.1 MiB 0.97 1448 16005 6966 8629 410 63.6 MiB 0.15 0.00 3.10545 -116.608 -3.10545 3.10545 0.70 0.000800828 0.000744612 0.0731259 0.0680234 46 3716 27 6.99608e+06 294314 828058. 2865.25 2.70 0.235898 0.207136 28066 200906 -1 2962 23 2888 4095 303505 62620 4.10742 4.10742 -152.367 -4.10742 0 0 1.01997e+06 3529.29 0.27 0.11 0.17 -1 -1 0.27 0.035711 0.0311827 126 86 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 8.32 vpr 62.87 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30792 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.2 MiB 0.50 726 10038 4152 5457 429 62.9 MiB 0.09 0.00 2.59005 -94.7203 -2.59005 2.59005 0.70 0.000636638 0.000592304 0.0406426 0.0378455 54 2187 41 6.99608e+06 206020 949917. 3286.91 4.99 0.273412 0.235979 29506 232905 -1 1577 23 1448 1949 144882 35281 3.34152 3.34152 -121.515 -3.34152 0 0 1.17392e+06 4061.99 0.28 0.07 0.20 -1 -1 0.28 0.0281336 0.0245289 80 20 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 8.29 vpr 63.47 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30664 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.8 MiB 0.81 950 11088 4570 6215 303 63.5 MiB 0.11 0.00 3.05483 -109.328 -3.05483 3.05483 0.70 0.000702301 0.000652561 0.0479598 0.0446051 56 2410 32 6.99608e+06 235451 973134. 3367.25 4.60 0.291316 0.251813 29794 239141 -1 1954 20 2022 2354 245061 51385 3.60831 3.60831 -133.441 -3.60831 0 0 1.19926e+06 4149.71 0.29 0.09 0.21 -1 -1 0.29 0.0280757 0.0245785 108 91 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 7.27 vpr 63.73 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30988 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65260 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.4 MiB 0.81 1284 16188 6452 8041 1695 63.7 MiB 0.17 0.00 3.74199 -133.921 -3.74199 3.74199 0.70 0.000855004 0.000792483 0.0807693 0.0751293 48 4076 27 6.99608e+06 294314 865456. 2994.66 3.42 0.262662 0.230745 28354 207349 -1 3068 23 2877 4050 443588 91319 5.08636 5.08636 -180.916 -5.08636 0 0 1.05005e+06 3633.38 0.26 0.14 0.18 -1 -1 0.26 0.0388302 0.0339012 126 53 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 17.36 vpr 63.52 MiB 0.07 7068 -1 -1 1 0.03 -1 -1 30644 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.7 MiB 0.59 1108 11776 3889 6161 1726 63.5 MiB 0.12 0.00 2.95409 -117.473 -2.95409 2.95409 0.69 0.000731064 0.000680658 0.0524211 0.0487995 38 3069 26 6.99608e+06 235451 678818. 2348.85 13.98 0.321442 0.278319 26626 170182 -1 2433 21 1882 2426 212352 41729 3.60816 3.60816 -146.919 -3.60816 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0304776 0.0267196 93 31 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.64 vpr 62.93 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30524 -1 -1 24 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.67 774 13316 4444 6621 2251 62.9 MiB 0.11 0.00 3.12594 -100.704 -3.12594 3.12594 0.73 0.000616715 0.000574395 0.0457387 0.0426029 46 2030 34 6.99608e+06 353176 828058. 2865.25 2.17 0.181256 0.158215 28066 200906 -1 1701 20 1427 2113 154756 33791 3.49022 3.49022 -123.126 -3.49022 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0244359 0.021319 80 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 20.60 vpr 63.88 MiB 0.05 7420 -1 -1 1 0.04 -1 -1 31172 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65416 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.79 1552 15688 6518 8729 441 63.9 MiB 0.17 0.00 4.34757 -151.154 -4.34757 4.34757 0.70 0.000955665 0.000888641 0.0797803 0.0741601 48 4315 32 6.99608e+06 353176 865456. 2994.66 16.68 0.508072 0.439706 28354 207349 -1 3398 24 3754 4706 481602 94691 5.36954 5.36954 -194.187 -5.36954 0 0 1.05005e+06 3633.38 0.28 0.15 0.18 -1 -1 0.28 0.0441063 0.0385403 159 109 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 7.96 vpr 63.50 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30672 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.66 870 15388 6654 8216 518 63.5 MiB 0.14 0.00 3.52464 -127.05 -3.52464 3.52464 0.70 0.000744923 0.000692562 0.0688311 0.064015 50 2451 42 6.99608e+06 235451 902133. 3121.57 4.38 0.310888 0.270679 28642 213929 -1 2095 22 2057 2673 210392 46785 4.29601 4.29601 -162.61 -4.29601 0 0 1.08113e+06 3740.92 0.26 0.09 0.18 -1 -1 0.26 0.0314446 0.0274777 92 31 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.89 vpr 62.77 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30584 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.2 MiB 0.28 753 14128 5676 7314 1138 62.8 MiB 0.11 0.00 2.48655 -95.2101 -2.48655 2.48655 0.70 0.000611844 0.000569092 0.0464605 0.0432469 40 2384 43 6.99608e+06 353176 706193. 2443.58 2.83 0.186311 0.162605 26914 176310 -1 1902 34 2140 3320 474155 151327 3.01532 3.01532 -123.929 -3.01532 0 0 926341. 3205.33 0.23 0.15 0.16 -1 -1 0.23 0.0366281 0.0316426 70 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.73 vpr 63.64 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 31200 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 24.9 MiB 0.69 1095 11118 4566 6150 402 63.6 MiB 0.12 0.00 3.75729 -131.986 -3.75729 3.75729 0.71 0.000851578 0.000792462 0.0563011 0.0524522 58 3058 23 6.99608e+06 264882 997811. 3452.63 4.93 0.346421 0.299513 30370 251734 -1 2479 22 2645 3733 337809 75083 4.65761 4.65761 -173.171 -4.65761 0 0 1.25153e+06 4330.55 0.30 0.11 0.20 -1 -1 0.30 0.0362251 0.0316387 112 26 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.60 vpr 62.84 MiB 0.06 6808 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.30 856 10149 3696 4751 1702 62.8 MiB 0.12 0.00 2.35025 -99.5999 -2.35025 2.35025 0.70 0.000465409 0.000425638 0.0529391 0.0491411 36 2536 49 6.99608e+06 147157 648988. 2245.63 2.48 0.183397 0.160954 26050 158493 -1 2114 28 1872 2826 333342 79693 3.14492 3.14492 -134.442 -3.14492 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0315746 0.027357 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.78 vpr 63.05 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64560 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.5 MiB 0.68 730 11161 4679 6120 362 63.0 MiB 0.10 0.00 2.68144 -95.7735 -2.68144 2.68144 0.70 0.000613079 0.000571357 0.0436377 0.0406258 38 2581 34 6.99608e+06 220735 678818. 2348.85 4.50 0.179733 0.15671 26626 170182 -1 2070 22 1766 2323 228854 47311 3.45281 3.45281 -131.387 -3.45281 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0152101 0.0134744 74 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.39 vpr 63.64 MiB 0.07 7268 -1 -1 1 0.03 -1 -1 30588 -1 -1 20 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65168 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.9 MiB 1.58 1071 16706 7460 8415 831 63.6 MiB 0.15 0.00 3.15813 -103.405 -3.15813 3.15813 0.70 0.000737093 0.000684418 0.0729852 0.0678907 46 3436 41 6.99608e+06 294314 828058. 2865.25 2.90 0.238375 0.209373 28066 200906 -1 2510 22 2137 2833 261854 57640 4.2742 4.2742 -143.483 -4.2742 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0315791 0.0275685 113 81 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.31 vpr 63.70 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 31076 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 0.91 1132 12720 4435 6473 1812 63.7 MiB 0.12 0.00 3.67014 -135.676 -3.67014 3.67014 0.70 0.000763992 0.000710711 0.0575511 0.05355 40 3011 24 6.99608e+06 264882 706193. 2443.58 2.56 0.209002 0.183228 26914 176310 -1 2706 23 2696 3662 378337 77072 5.08511 5.08511 -181.109 -5.08511 0 0 926341. 3205.33 0.23 0.12 0.17 -1 -1 0.23 0.0346246 0.0302491 109 53 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 5.93 vpr 63.63 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30768 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1263 14678 5351 7233 2094 63.6 MiB 0.14 0.00 3.53384 -132.271 -3.53384 3.53384 0.70 0.00076918 0.000715575 0.0664493 0.0618085 48 3369 24 6.99608e+06 264882 865456. 2994.66 2.04 0.192373 0.170052 28354 207349 -1 2830 24 2676 3618 403150 80881 4.76721 4.76721 -171.702 -4.76721 0 0 1.05005e+06 3633.38 0.32 0.13 0.18 -1 -1 0.32 0.0364813 0.0320511 110 55 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 13.31 vpr 63.34 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30840 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.5 MiB 0.64 889 12247 5089 6899 259 63.3 MiB 0.11 0.00 2.70344 -101.505 -2.70344 2.70344 0.70 0.000673888 0.000626135 0.0517334 0.0481444 40 2757 34 6.99608e+06 220735 706193. 2443.58 9.84 0.325847 0.281601 26914 176310 -1 2165 31 2353 2709 415824 119688 3.85871 3.85871 -139.408 -3.85871 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0378376 0.0327702 92 55 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 9.20 vpr 63.24 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30856 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.6 MiB 2.26 925 11432 3428 5862 2142 63.2 MiB 0.10 0.00 2.64844 -93.7923 -2.64844 2.64844 0.69 0.0006774 0.000629938 0.0473846 0.044097 44 2762 32 6.99608e+06 250167 787024. 2723.27 4.13 0.295316 0.255066 27778 195446 -1 2069 22 1905 2351 186113 40941 3.35081 3.35081 -124.502 -3.35081 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0291104 0.0253832 102 82 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.74 vpr 63.36 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30632 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.6 MiB 1.12 957 12331 5125 6712 494 63.4 MiB 0.11 0.00 2.77544 -95.1224 -2.77544 2.77544 0.71 0.000719244 0.000668444 0.0534241 0.0496871 40 3287 44 6.99608e+06 279598 706193. 2443.58 3.82 0.221753 0.193692 26914 176310 -1 2383 25 2169 3115 307375 65918 3.57407 3.57407 -130.332 -3.57407 0 0 926341. 3205.33 0.23 0.11 0.16 -1 -1 0.23 0.0342473 0.0297982 101 52 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 6.32 vpr 63.29 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30716 -1 -1 18 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.61 759 10370 4289 5483 598 63.3 MiB 0.10 0.00 3.10545 -99.3534 -3.10545 3.10545 0.70 0.000664157 0.00061782 0.0438102 0.0408227 40 2591 43 6.99608e+06 264882 706193. 2443.58 2.94 0.192955 0.16799 26914 176310 -1 2073 22 1865 2638 260257 57102 4.66956 4.66956 -154.007 -4.66956 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0283971 0.024798 87 20 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 9.61 vpr 63.52 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30356 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65040 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.8 MiB 1.66 840 11324 4893 5954 477 63.5 MiB 0.10 0.00 3.76754 -121.829 -3.76754 3.76754 0.70 0.000650081 0.00060439 0.0471229 0.043836 54 2596 47 6.99608e+06 220735 949917. 3286.91 4.99 0.272207 0.235391 29506 232905 -1 1831 21 1508 2030 160832 36594 3.92041 3.92041 -140.748 -3.92041 0 0 1.17392e+06 4061.99 0.35 0.08 0.20 -1 -1 0.35 0.027149 0.0236267 88 58 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.96 vpr 63.80 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30688 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.9 MiB 2.58 1278 12078 4354 6074 1650 63.8 MiB 0.11 0.00 2.96539 -111.067 -2.96539 2.96539 0.70 0.00070008 0.000650733 0.0522254 0.0485581 38 3277 43 6.99608e+06 220735 678818. 2348.85 2.59 0.186841 0.163343 26626 170182 -1 2738 30 2413 2988 423273 147665 3.48116 3.48116 -141.229 -3.48116 0 0 902133. 3121.57 0.22 0.15 0.15 -1 -1 0.22 0.0377069 0.0326836 104 88 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 18.74 vpr 63.04 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30752 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.6 MiB 0.15 877 14908 5534 7362 2012 63.0 MiB 0.10 0.00 3.14275 -111.982 -3.14275 3.14275 0.72 0.000687694 0.000640361 0.0369102 0.0341959 40 2825 30 6.99608e+06 367892 706193. 2443.58 15.74 0.330847 0.284924 26914 176310 -1 2359 21 1993 3223 376068 76508 4.57662 4.57662 -160.991 -4.57662 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0284628 0.0248867 86 -1 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.63 vpr 63.75 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30800 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 25.0 MiB 0.65 1333 8306 2071 5479 756 63.7 MiB 0.09 0.00 3.42564 -130.225 -3.42564 3.42564 0.70 0.000771943 0.000717905 0.0395212 0.036791 46 3399 24 6.99608e+06 250167 828058. 2865.25 4.07 0.261252 0.22618 28066 200906 -1 2849 20 2105 2766 249476 48429 4.43961 4.43961 -167.415 -4.43961 0 0 1.01997e+06 3529.29 0.27 0.10 0.18 -1 -1 0.27 0.0312439 0.0274297 110 57 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.65 vpr 63.68 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30644 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.9 MiB 0.59 1088 12898 5367 7230 301 63.7 MiB 0.13 0.00 4.10648 -138.929 -4.10648 4.10648 0.71 0.000770931 0.000715161 0.0589361 0.0547787 46 3653 30 6.99608e+06 264882 828058. 2865.25 4.15 0.216565 0.18956 28066 200906 -1 2710 23 2593 3512 316891 64749 4.8698 4.8698 -183.936 -4.8698 0 0 1.01997e+06 3529.29 0.26 0.11 0.17 -1 -1 0.26 0.0343118 0.0299895 108 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 6.02 vpr 63.62 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30600 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.9 MiB 0.61 1128 13966 4911 6415 2640 63.6 MiB 0.14 0.00 3.36648 -118.966 -3.36648 3.36648 0.70 0.000766786 0.000713059 0.063077 0.0586256 46 3555 47 6.99608e+06 264882 828058. 2865.25 2.50 0.22646 0.198637 28066 200906 -1 2743 23 2310 3248 289343 60066 4.34925 4.34925 -156.367 -4.34925 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0373275 0.0327178 107 62 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 7.14 vpr 63.03 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30616 -1 -1 13 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64544 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.6 MiB 0.79 660 12557 5325 6774 458 63.0 MiB 0.11 0.00 3.04639 -105.015 -3.04639 3.04639 0.70 0.000617107 0.00057427 0.0515053 0.0480079 46 2288 22 6.99608e+06 191304 828058. 2865.25 3.56 0.239073 0.20761 28066 200906 -1 1774 21 1553 2120 174812 38224 3.69246 3.69246 -130.688 -3.69246 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0253958 0.0221546 76 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 7.48 vpr 63.61 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30808 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.21 1089 15904 5541 8367 1996 63.6 MiB 0.15 0.00 3.93533 -134.024 -3.93533 3.93533 0.70 0.000731884 0.000679681 0.0699343 0.0650207 44 3338 35 6.99608e+06 264882 787024. 2723.27 2.37 0.217433 0.191243 27778 195446 -1 2462 29 3060 4395 391229 102388 4.47984 4.47984 -162.457 -4.47984 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0394587 0.0343333 105 58 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 5.93 vpr 63.55 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 31032 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1370 13316 4446 6199 2671 63.5 MiB 0.20 0.00 3.42564 -123.628 -3.42564 3.42564 0.70 0.000664598 0.0006092 0.0592438 0.0545257 44 3688 28 6.99608e+06 323745 787024. 2723.27 2.24 0.234693 0.204116 27778 195446 -1 2763 20 2341 2400 211231 43030 4.3143 4.3143 -166.482 -4.3143 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.033584 0.0293444 139 106 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 6.50 vpr 63.36 MiB 0.05 7292 -1 -1 1 0.03 -1 -1 30620 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.9 MiB 1.34 1139 12919 5335 7168 416 63.4 MiB 0.12 0.00 3.52904 -123.427 -3.52904 3.52904 0.70 0.000784065 0.000727138 0.0574707 0.0533306 44 3512 48 6.99608e+06 323745 787024. 2723.27 2.28 0.220242 0.192538 27778 195446 -1 2457 22 2167 2638 220518 46169 4.14391 4.14391 -152.978 -4.14391 0 0 997811. 3452.63 0.26 0.10 0.19 -1 -1 0.26 0.0339786 0.0297787 125 79 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 8.90 vpr 63.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30832 -1 -1 22 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.9 MiB 2.57 975 15273 6453 8066 754 63.6 MiB 0.14 0.00 3.35858 -106.582 -3.35858 3.35858 0.70 0.000757284 0.000704294 0.0656042 0.0609651 48 3370 44 6.99608e+06 323745 865456. 2994.66 3.41 0.230201 0.201898 28354 207349 -1 2366 23 2549 3645 291717 67853 3.9466 3.9466 -142.661 -3.9466 0 0 1.05005e+06 3633.38 0.28 0.11 0.18 -1 -1 0.28 0.0336191 0.0293453 114 83 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 7.75 vpr 63.63 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30840 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1039 15568 6650 8446 472 63.6 MiB 0.15 0.00 3.54484 -125.458 -3.54484 3.54484 0.71 0.000792193 0.000736654 0.0710198 0.0660284 48 3221 43 6.99608e+06 264882 865456. 2994.66 3.86 0.24667 0.216495 28354 207349 -1 2491 22 2701 3654 356812 77418 4.51981 4.51981 -163.867 -4.51981 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0332334 0.0291025 110 58 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 6.63 vpr 63.56 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30608 -1 -1 20 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65088 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.60 1011 12156 5017 6435 704 63.6 MiB 0.06 0.00 2.90529 -95.045 -2.90529 2.90529 0.72 0.000325017 0.000298254 0.0246757 0.0227286 46 2848 34 6.99608e+06 294314 828058. 2865.25 2.18 0.147181 0.127326 28066 200906 -1 1989 24 2136 2792 203205 47010 3.61071 3.61071 -120.971 -3.61071 0 0 1.01997e+06 3529.29 0.27 0.09 0.18 -1 -1 0.27 0.0333999 0.0290906 112 81 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 13.84 vpr 62.74 MiB 0.05 6688 -1 -1 1 0.03 -1 -1 30504 -1 -1 10 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.2 MiB 0.64 706 9994 4217 5633 144 62.7 MiB 0.09 0.00 2.36125 -95.0479 -2.36125 2.36125 0.69 0.000610523 0.000567934 0.0414043 0.0385967 36 2623 44 6.99608e+06 147157 648988. 2245.63 10.50 0.293002 0.253071 26050 158493 -1 2000 21 1453 2288 251668 49923 3.53182 3.53182 -133.829 -3.53182 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0251205 0.0219344 62 -1 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.69 vpr 63.66 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30676 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 1209 9872 3148 4640 2084 63.7 MiB 0.10 0.00 4.01233 -144.491 -4.01233 4.01233 0.70 0.000770596 0.000715577 0.0458901 0.0427371 46 3698 24 6.99608e+06 264882 828058. 2865.25 2.12 0.171616 0.150472 28066 200906 -1 2683 25 2947 3979 334241 68124 5.379 5.379 -189.842 -5.379 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0365849 0.031935 110 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 18.32 vpr 63.71 MiB 0.05 7048 -1 -1 1 0.08 -1 -1 30664 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 25.0 MiB 0.80 1101 13731 4149 7828 1754 63.7 MiB 0.14 0.00 3.76167 -136.697 -3.76167 3.76167 0.70 0.000775026 0.000720943 0.0634274 0.058953 38 4624 46 6.99608e+06 250167 678818. 2348.85 14.60 0.397108 0.343933 26626 170182 -1 3094 26 3220 4367 459390 106270 5.58961 5.58961 -197.91 -5.58961 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0378025 0.0329733 111 62 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 7.83 vpr 63.28 MiB 0.04 6940 -1 -1 1 0.04 -1 -1 30720 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.8 MiB 1.88 827 12302 5146 6841 315 63.3 MiB 0.11 0.00 2.55629 -90.2605 -2.55629 2.55629 0.70 0.000635746 0.000590914 0.0501909 0.0467276 40 2899 31 6.99608e+06 191304 706193. 2443.58 3.26 0.1836 0.160479 26914 176310 -1 2221 21 1717 1969 218253 49201 3.42976 3.42976 -129.421 -3.42976 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0262442 0.0229163 85 47 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.09 vpr 62.70 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30700 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.22 827 6584 2301 3391 892 62.7 MiB 0.06 0.00 2.6052 -101.674 -2.6052 2.6052 0.70 0.000599268 0.000557502 0.027302 0.0254847 36 2357 48 6.99608e+06 161872 648988. 2245.63 5.19 0.241426 0.207576 26050 158493 -1 1907 21 1461 2133 192336 38707 3.25127 3.25127 -132.009 -3.25127 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0256303 0.0223904 63 -1 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 7.75 vpr 63.54 MiB 0.05 7112 -1 -1 1 0.03 -1 -1 30452 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.7 MiB 0.82 883 15306 5805 7397 2104 63.5 MiB 0.14 0.00 3.28468 -111.155 -3.28468 3.28468 0.70 0.000732294 0.000680311 0.066944 0.0622421 46 2780 37 6.99608e+06 250167 828058. 2865.25 4.02 0.30578 0.265951 28066 200906 -1 2060 24 1937 2302 242879 87060 4.1066 4.1066 -142.744 -4.1066 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0406796 0.0354206 102 56 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 17.37 vpr 63.67 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30564 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.9 MiB 1.28 1310 12863 4974 6723 1166 63.7 MiB 0.13 0.00 3.50704 -125.989 -3.50704 3.50704 0.71 0.000767846 0.000712993 0.0575057 0.0534331 38 3316 29 6.99608e+06 279598 678818. 2348.85 13.26 0.358685 0.310708 26626 170182 -1 2660 19 2101 2529 215904 44576 4.38461 4.38461 -159.379 -4.38461 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0293359 0.0257565 115 81 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 23.13 vpr 63.40 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30672 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.36 1028 9679 2238 7129 312 63.4 MiB 0.11 0.00 3.52884 -121.946 -3.52884 3.52884 0.70 0.000790193 0.00073316 0.0406874 0.0378429 40 3667 45 6.99608e+06 397324 706193. 2443.58 19.85 0.4049 0.349596 26914 176310 -1 2871 24 2539 4098 510643 127163 4.83435 4.83435 -175.405 -4.83435 0 0 926341. 3205.33 0.22 0.14 0.15 -1 -1 0.22 0.0360529 0.0315328 100 -1 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.77 vpr 63.52 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30704 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65040 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.89 965 9006 2605 5458 943 63.5 MiB 0.09 0.00 2.98539 -96.6942 -2.98539 2.98539 0.70 0.000712125 0.000663215 0.0393112 0.0365945 50 2377 26 6.99608e+06 279598 902133. 3121.57 4.09 0.242433 0.209774 28642 213929 -1 2016 19 1674 2338 176507 40585 3.52216 3.52216 -124.198 -3.52216 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0274739 0.0240657 101 47 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.56 vpr 62.77 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30744 -1 -1 16 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.23 649 11767 4976 6146 645 62.8 MiB 0.09 0.00 3.14605 -90.9377 -3.14605 3.14605 0.69 0.000574416 0.000534977 0.0442244 0.0412292 36 1863 26 6.99608e+06 235451 648988. 2245.63 1.64 0.158226 0.138012 26050 158493 -1 1610 21 1196 1627 135468 29282 3.51531 3.51531 -118.163 -3.51531 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0235021 0.0204386 67 26 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.81 vpr 63.83 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30724 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65360 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.6 MiB 0.84 1421 16267 5306 8320 2641 63.8 MiB 0.18 0.00 3.71224 -126.308 -3.71224 3.71224 0.73 0.000911496 0.000847398 0.0831602 0.0773268 48 4131 46 6.99608e+06 309029 865456. 2994.66 3.90 0.30024 0.262564 28354 207349 -1 3308 20 2646 3656 369464 74390 4.70261 4.70261 -167.467 -4.70261 0 0 1.05005e+06 3633.38 0.26 0.12 0.20 -1 -1 0.26 0.0365068 0.0319892 141 85 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 8.50 vpr 63.60 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30792 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.2 MiB 2.49 1360 10873 2955 6516 1402 63.6 MiB 0.11 0.00 4.12662 -139.924 -4.12662 4.12662 0.70 0.000819123 0.000758483 0.0513094 0.0474747 40 3568 37 6.99608e+06 323745 706193. 2443.58 3.13 0.232659 0.20213 26914 176310 -1 3049 27 3262 3683 445422 124364 4.76741 4.76741 -175.079 -4.76741 0 0 926341. 3205.33 0.23 0.15 0.15 -1 -1 0.23 0.0416003 0.036159 138 105 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 9.83 vpr 63.62 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30788 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.8 MiB 2.76 913 11402 4307 6069 1026 63.6 MiB 0.11 0.00 3.09393 -108.803 -3.09393 3.09393 0.70 0.000686877 0.000638341 0.0492778 0.0458272 50 2463 23 6.99608e+06 220735 902133. 3121.57 4.19 0.264744 0.229026 28642 213929 -1 1873 25 1499 1771 164066 38252 3.709 3.709 -131.446 -3.709 0 0 1.08113e+06 3740.92 0.26 0.08 0.20 -1 -1 0.26 0.0323955 0.0282107 102 86 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 8.48 vpr 63.59 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.89 859 14184 4098 8238 1848 63.6 MiB 0.10 0.00 3.25275 -112.645 -3.25275 3.25275 0.78 0.000321237 0.000296319 0.0392698 0.0362394 56 2136 30 6.99608e+06 235451 973134. 3367.25 4.62 0.301148 0.259575 29794 239141 -1 1769 22 1680 2285 203548 44746 3.90682 3.90682 -138.18 -3.90682 0 0 1.19926e+06 4149.71 0.29 0.09 0.21 -1 -1 0.29 0.0308721 0.0270019 92 31 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 6.48 vpr 63.72 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30908 -1 -1 20 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65248 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1150 14303 5210 6691 2402 63.7 MiB 0.15 0.00 3.18065 -113.702 -3.18065 3.18065 0.70 0.000840408 0.000781879 0.0699591 0.0651043 44 3552 26 6.99608e+06 294314 787024. 2723.27 2.09 0.211534 0.18614 27778 195446 -1 2630 22 2411 3392 277602 57518 4.04612 4.04612 -149.773 -4.04612 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0359318 0.0313417 117 50 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 6.00 vpr 63.48 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30752 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.6 MiB 1.02 1074 15034 5140 7920 1974 63.5 MiB 0.14 0.00 2.91629 -101.949 -2.91629 2.91629 0.72 0.000711721 0.000661336 0.0629155 0.0585085 44 3105 38 6.99608e+06 294314 787024. 2723.27 2.08 0.189493 0.166722 27778 195446 -1 2431 22 1755 2538 229335 47213 3.33071 3.33071 -127.202 -3.33071 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0310115 0.0270913 101 50 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.64 vpr 63.53 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30808 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.61 1219 14431 5894 7189 1348 63.5 MiB 0.15 0.00 3.42564 -124.648 -3.42564 3.42564 0.70 0.00077956 0.000723995 0.0671315 0.0624612 46 2921 25 6.99608e+06 250167 828058. 2865.25 4.16 0.297032 0.258641 28066 200906 -1 2404 23 2413 2951 226319 45544 4.0717 4.0717 -153.774 -4.0717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342566 0.0299665 107 61 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 5.75 vpr 63.78 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30848 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 25.0 MiB 0.70 1121 9516 2286 6786 444 63.8 MiB 0.11 0.00 2.98529 -113.988 -2.98529 2.98529 0.69 0.000771141 0.000716321 0.0440347 0.040958 42 3518 43 6.99608e+06 264882 744469. 2576.02 2.19 0.217695 0.189362 27202 183097 -1 2799 25 2417 3136 404801 128985 3.73346 3.73346 -148.566 -3.73346 0 0 949917. 3286.91 0.23 0.14 0.16 -1 -1 0.23 0.03656 0.0316941 108 61 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.00 vpr 63.04 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30608 -1 -1 14 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64556 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.4 MiB 1.06 703 7975 3243 4416 316 63.0 MiB 0.07 0.00 2.67044 -92.1549 -2.67044 2.67044 0.70 0.000602711 0.000561517 0.0322226 0.0300272 36 2173 27 6.99608e+06 206020 648988. 2245.63 3.19 0.212899 0.183336 26050 158493 -1 1641 22 1774 2300 183155 39077 3.31727 3.31727 -120.693 -3.31727 0 0 828058. 2865.25 0.21 0.15 0.14 -1 -1 0.21 0.0394029 0.025488 73 28 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.69 vpr 63.16 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30324 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.28 782 13524 5494 6370 1660 63.2 MiB 0.11 0.00 3.03413 -98.808 -3.03413 3.03413 0.70 0.000652621 0.0006061 0.0556128 0.0516737 58 1811 23 6.99608e+06 206020 997811. 3452.63 4.52 0.253778 0.220159 30370 251734 -1 1459 23 1545 1915 159805 35997 3.4974 3.4974 -119.099 -3.4974 0 0 1.25153e+06 4330.55 0.31 0.08 0.22 -1 -1 0.31 0.029204 0.0254736 91 79 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 5.82 vpr 63.45 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30784 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1113 9540 2479 6269 792 63.4 MiB 0.10 0.00 3.16964 -118.693 -3.16964 3.16964 0.70 0.000719949 0.000669337 0.0424286 0.0394944 44 2934 43 6.99608e+06 250167 787024. 2723.27 2.46 0.205524 0.17899 27778 195446 -1 2291 19 1901 2511 203847 43613 3.88476 3.88476 -149.664 -3.88476 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0275703 0.0241917 92 29 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.29 vpr 62.94 MiB 0.05 6860 -1 -1 1 0.03 -1 -1 30616 -1 -1 16 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64452 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.5 MiB 1.48 718 11487 4796 6151 540 62.9 MiB 0.10 0.00 2.55329 -83.4486 -2.55329 2.55329 0.73 0.000605009 0.000563097 0.0445733 0.0415064 40 2187 27 6.99608e+06 235451 706193. 2443.58 2.04 0.166873 0.145385 26914 176310 -1 1827 22 1524 1703 164562 36836 3.19936 3.19936 -110.852 -3.19936 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0259758 0.0226158 81 48 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 12.69 vpr 63.23 MiB 0.05 6912 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.6 MiB 0.65 874 12628 5294 7161 173 63.2 MiB 0.11 0.00 2.94309 -113.391 -2.94309 2.94309 0.70 0.00064987 0.000605008 0.0524414 0.0488442 38 2626 29 6.99608e+06 191304 678818. 2348.85 9.24 0.311209 0.269766 26626 170182 -1 2051 23 1900 2387 210058 42870 3.58916 3.58916 -142.929 -3.58916 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0285907 0.0249291 79 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.71 vpr 63.51 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30560 -1 -1 19 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.07 992 11474 4129 5634 1711 63.5 MiB 0.11 0.00 3.32078 -115.499 -3.32078 3.32078 0.70 0.000741725 0.000688624 0.0505664 0.047013 46 2994 30 6.99608e+06 279598 828058. 2865.25 2.64 0.206153 0.180057 28066 200906 -1 2301 22 2256 3083 284300 60608 4.00165 4.00165 -145.96 -4.00165 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0320695 0.0280749 105 60 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 9.51 vpr 62.93 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30752 -1 -1 13 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.4 MiB 2.14 736 10156 4154 5454 548 62.9 MiB 0.09 0.00 2.61074 -86.8893 -2.61074 2.61074 0.70 0.00062329 0.000580026 0.0417896 0.0389095 54 1997 37 6.99608e+06 191304 949917. 3286.91 4.51 0.257242 0.221891 29506 232905 -1 1518 20 1343 1732 140528 33354 2.90811 2.90811 -103.951 -2.90811 0 0 1.17392e+06 4061.99 0.28 0.07 0.20 -1 -1 0.28 0.0287716 0.0254991 81 49 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 7.10 vpr 63.50 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30644 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.9 MiB 1.47 1087 15034 6077 6939 2018 63.5 MiB 0.14 0.00 2.90049 -105.948 -2.90049 2.90049 0.70 0.000743903 0.00069181 0.065189 0.060658 40 3008 19 6.99608e+06 264882 706193. 2443.58 2.75 0.208483 0.183429 26914 176310 -1 2573 22 1937 2647 260918 53695 3.42926 3.42926 -135.125 -3.42926 0 0 926341. 3205.33 0.22 0.09 0.15 -1 -1 0.22 0.0316204 0.0276641 103 56 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 5.99 vpr 63.40 MiB 0.05 7292 -1 -1 1 0.04 -1 -1 30508 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64924 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 24.9 MiB 0.65 1250 15151 4655 8452 2044 63.4 MiB 0.15 0.00 3.80117 -132.704 -3.80117 3.80117 0.70 0.000778679 0.000722742 0.0664508 0.0617255 48 3342 24 6.99608e+06 323745 865456. 2994.66 2.37 0.221901 0.194648 28354 207349 -1 2805 25 2758 3841 435374 112846 4.55229 4.55229 -165.169 -4.55229 0 0 1.05005e+06 3633.38 0.26 0.14 0.19 -1 -1 0.26 0.0372368 0.0324505 123 88 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 7.30 vpr 63.27 MiB 0.04 6796 -1 -1 1 0.03 -1 -1 30612 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.4 MiB 2.33 1123 12247 3530 7399 1318 63.3 MiB 0.11 0.00 2.76294 -107.953 -2.76294 2.76294 0.70 0.000660285 0.000614486 0.050347 0.0468258 44 2783 27 6.99608e+06 220735 787024. 2723.27 2.20 0.17357 0.152084 27778 195446 -1 2226 20 1427 2072 175472 35568 3.13521 3.13521 -127.464 -3.13521 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0264211 0.0230834 88 54 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 5.91 vpr 63.15 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30268 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.6 MiB 0.69 822 13026 5192 6074 1760 63.1 MiB 0.12 0.00 2.68144 -98.8212 -2.68144 2.68144 0.70 0.000671715 0.000623675 0.0550627 0.0511703 44 2828 42 6.99608e+06 206020 787024. 2723.27 2.39 0.182114 0.159603 27778 195446 -1 1997 18 1606 1945 181244 39353 3.59417 3.59417 -126.796 -3.59417 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0247419 0.0217031 91 60 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 6.33 vpr 63.72 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30976 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 25.0 MiB 0.83 1133 13432 3706 8622 1104 63.7 MiB 0.13 0.00 3.18865 -120.877 -3.18865 3.18865 0.70 0.00077314 0.000718856 0.0606379 0.0563847 38 3671 47 6.99608e+06 264882 678818. 2348.85 2.67 0.220987 0.193825 26626 170182 -1 2742 23 2470 3027 280219 56177 4.37502 4.37502 -165.22 -4.37502 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0349212 0.0304106 110 49 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 8.34 vpr 63.46 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30696 -1 -1 21 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.6 MiB 1.45 1012 9338 2405 5407 1526 63.5 MiB 0.09 0.00 2.77374 -94.5628 -2.77374 2.77374 0.70 0.000708402 0.000659311 0.0397428 0.0370193 48 2292 32 6.99608e+06 309029 865456. 2994.66 4.09 0.279172 0.240781 28354 207349 -1 1859 29 1985 2571 169666 41184 3.32451 3.32451 -122.361 -3.32451 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0390102 0.034046 101 54 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 6.30 vpr 63.62 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30864 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.2 MiB 0.75 1299 16718 5576 8625 2517 63.6 MiB 0.16 0.00 3.68467 -132.476 -3.68467 3.68467 0.70 0.000852002 0.000792552 0.0786797 0.0731945 44 3895 30 6.99608e+06 323745 787024. 2723.27 2.54 0.233121 0.205288 27778 195446 -1 2962 23 3088 3627 334215 68305 4.64614 4.64614 -173.894 -4.64614 0 0 997811. 3452.63 0.25 0.11 0.17 -1 -1 0.25 0.0375298 0.0326712 140 117 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.55 vpr 62.65 MiB 0.06 6952 -1 -1 1 0.03 -1 -1 30608 -1 -1 11 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.1 MiB 0.87 514 10459 4246 5559 654 62.7 MiB 0.09 0.00 2.29975 -78.1061 -2.29975 2.29975 0.75 0.00057495 0.000535124 0.0409283 0.0381621 46 1757 29 6.99608e+06 161872 828058. 2865.25 1.82 0.158694 0.138357 28066 200906 -1 1292 19 1131 1699 111188 28371 2.98392 2.98392 -102.233 -2.98392 0 0 1.01997e+06 3529.29 0.25 0.06 0.17 -1 -1 0.25 0.0220215 0.0192365 57 -1 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.99 vpr 63.73 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30672 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.57 1130 14483 6123 8043 317 63.7 MiB 0.15 0.00 3.96833 -132.934 -3.96833 3.96833 0.72 0.000778762 0.000722691 0.0662795 0.0615807 44 3781 41 6.99608e+06 279598 787024. 2723.27 2.52 0.214396 0.188413 27778 195446 -1 2541 22 2582 3268 286786 61145 5.1817 5.1817 -174.644 -5.1817 0 0 997811. 3452.63 0.25 0.11 0.17 -1 -1 0.25 0.0337668 0.0295194 118 89 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.33 vpr 63.67 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30404 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 25.0 MiB 0.80 1227 11432 4105 5518 1809 63.7 MiB 0.12 0.00 3.78697 -141.648 -3.78697 3.78697 0.70 0.000710851 0.000660525 0.0496195 0.0461155 48 3157 25 6.99608e+06 235451 865456. 2994.66 2.66 0.193768 0.169537 28354 207349 -1 2747 20 2655 3351 343908 67316 4.54314 4.54314 -168.67 -4.54314 0 0 1.05005e+06 3633.38 0.26 0.11 0.18 -1 -1 0.26 0.0286741 0.0251429 110 93 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 6.17 vpr 63.64 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30704 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.73 1085 15203 6053 6785 2365 63.6 MiB 0.15 0.00 2.81774 -106.087 -2.81774 2.81774 0.70 0.000775476 0.000716363 0.0668618 0.0621483 46 3119 22 6.99608e+06 279598 828058. 2865.25 2.47 0.219269 0.193544 28066 200906 -1 2313 21 1854 2387 161999 34734 3.33851 3.33851 -130.469 -3.33851 0 0 1.01997e+06 3529.29 0.26 0.09 0.18 -1 -1 0.26 0.0349465 0.0308964 106 59 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.09 vpr 63.70 MiB 0.05 7312 -1 -1 1 0.03 -1 -1 30940 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1363 18230 5788 10225 2217 63.7 MiB 0.19 0.00 4.08848 -143.899 -4.08848 4.08848 0.70 0.000912114 0.000847588 0.0913068 0.084928 44 3879 25 6.99608e+06 323745 787024. 2723.27 2.40 0.276675 0.243979 27778 195446 -1 2924 21 2809 3304 279548 58109 5.02915 5.02915 -186.301 -5.02915 0 0 997811. 3452.63 0.25 0.13 0.18 -1 -1 0.25 0.0388944 0.0341093 140 81 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 6.06 vpr 62.78 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30468 -1 -1 13 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.2 MiB 1.90 607 9081 3829 4985 267 62.8 MiB 0.07 0.00 2.25155 -75.8841 -2.25155 2.25155 0.70 0.000527701 0.000490989 0.0321275 0.0299354 38 1604 26 6.99608e+06 191304 678818. 2348.85 1.51 0.117839 0.102736 26626 170182 -1 1300 16 781 796 72036 16677 2.38442 2.38442 -90.2393 -2.38442 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0178292 0.0155937 65 51 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.40 vpr 62.78 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.82 904 9196 2794 5382 1020 62.8 MiB 0.08 0.00 2.78909 -102.456 -2.78909 2.78909 0.70 0.000611466 0.000569251 0.0373452 0.034796 34 2336 43 6.99608e+06 206020 618332. 2139.56 1.90 0.177236 0.153864 25762 151098 -1 1932 23 1589 2311 221713 43953 3.53111 3.53111 -137.583 -3.53111 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0269701 0.0234525 72 29 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.73 vpr 62.90 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 743 10156 3938 5001 1217 62.9 MiB 0.10 0.00 2.73464 -102.968 -2.73464 2.73464 0.73 0.000644456 0.00059903 0.0432964 0.0403182 56 1875 22 6.99608e+06 176588 973134. 3367.25 4.60 0.260141 0.225443 29794 239141 -1 1604 21 1874 2809 205500 48100 3.36551 3.36551 -131.986 -3.36551 0 0 1.19926e+06 4149.71 0.29 0.09 0.21 -1 -1 0.29 0.0268489 0.0234846 80 31 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.61 vpr 62.76 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30604 -1 -1 18 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64264 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.65 564 11767 5035 5869 863 62.8 MiB 0.09 0.00 2.79475 -75.6465 -2.79475 2.79475 0.70 0.000541407 0.000505084 0.0421182 0.0393001 36 1944 30 6.99608e+06 264882 648988. 2245.63 2.29 0.15353 0.133701 26050 158493 -1 1437 20 1058 1290 105106 23589 3.20617 3.20617 -100.805 -3.20617 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0232491 0.0203873 68 19 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 8.61 vpr 63.33 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.8 MiB 0.92 1355 15822 6352 8244 1226 63.3 MiB 0.16 0.00 3.11645 -118.464 -3.11645 3.11645 0.70 0.000800883 0.000744158 0.0726387 0.0675666 48 3628 23 6.99608e+06 294314 865456. 2994.66 4.73 0.340105 0.295128 28354 207349 -1 3106 23 2879 4161 371484 73160 3.86782 3.86782 -148.883 -3.86782 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.03549 0.0309731 125 84 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 6.03 vpr 63.70 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30664 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1169 11245 4587 6328 330 63.7 MiB 0.11 0.00 3.44908 -119.058 -3.44908 3.44908 0.70 0.000769408 0.000713297 0.049517 0.0459731 46 3491 48 6.99608e+06 323745 828058. 2865.25 2.31 0.201756 0.176031 28066 200906 -1 2670 23 2632 3467 307761 65058 4.39175 4.39175 -157.725 -4.39175 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0348509 0.0304396 121 88 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 7.77 vpr 62.76 MiB 0.05 6740 -1 -1 14 0.28 -1 -1 33100 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1207 10883 3399 5297 2187 62.8 MiB 0.12 0.00 6.88531 -140.929 -6.88531 6.88531 0.69 0.00090631 0.000840486 0.0586277 0.054331 38 3301 35 6.79088e+06 255968 678818. 2348.85 2.79 0.260096 0.226826 25966 169698 -1 2589 30 1356 3708 391901 162486 7.12821 7.12821 -159.652 -7.12821 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.050671 0.0441711 134 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 9.14 vpr 62.78 MiB 0.05 6712 -1 -1 14 0.28 -1 -1 33164 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.2 MiB 1.54 1185 7736 2049 4631 1056 62.8 MiB 0.09 0.00 6.84273 -137.288 -6.84273 6.84273 0.69 0.000901549 0.000835261 0.0429153 0.0397979 36 3770 42 6.79088e+06 269440 648988. 2245.63 4.66 0.255053 0.221351 25390 158009 -1 3035 19 1508 3919 252170 55728 7.21863 7.21863 -159.794 -7.21863 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0361935 0.0317663 132 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 7.14 vpr 62.73 MiB 0.04 6740 -1 -1 11 0.21 -1 -1 32888 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1223 14907 4838 7037 3032 62.7 MiB 0.15 0.00 5.53913 -119.059 -5.53913 5.53913 0.70 0.000868852 0.000803109 0.0756981 0.0700758 38 3273 22 6.79088e+06 269440 678818. 2348.85 2.55 0.25276 0.22138 25966 169698 -1 2703 17 1290 3963 219958 48134 5.78973 5.78973 -137.436 -5.78973 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0329526 0.0290974 138 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 10.66 vpr 62.92 MiB 0.05 6760 -1 -1 12 0.33 -1 -1 32996 -1 -1 22 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64428 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.3 MiB 1.33 1131 13403 3788 8000 1615 62.9 MiB 0.14 0.00 6.20837 -119.597 -6.20837 6.20837 0.70 0.000896077 0.000832238 0.0708379 0.0658188 30 3310 28 6.79088e+06 296384 556674. 1926.21 6.24 0.293975 0.256305 24526 138013 -1 2673 23 1209 3641 277827 93750 6.70957 6.70957 -142.44 -6.70957 0 0 706193. 2443.58 0.18 0.11 0.12 -1 -1 0.18 0.0408712 0.0357998 136 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 8.02 vpr 63.07 MiB 0.02 6688 -1 -1 13 0.30 -1 -1 33352 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.5 MiB 2.03 1487 9058 2433 5850 775 63.1 MiB 0.11 0.00 6.71311 -140.591 -6.71311 6.71311 0.72 0.00104067 0.000964093 0.0526021 0.0488049 36 4251 39 6.79088e+06 323328 648988. 2245.63 2.80 0.268679 0.234122 25390 158009 -1 3551 28 1796 4820 498846 194483 7.08901 7.08901 -165.99 -7.08901 0 0 828058. 2865.25 0.21 0.19 0.14 -1 -1 0.21 0.0551999 0.048276 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 9.45 vpr 63.06 MiB 0.04 6628 -1 -1 12 0.28 -1 -1 33004 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.5 MiB 2.24 1402 4573 806 3508 259 63.1 MiB 0.06 0.00 6.00472 -133.713 -6.00472 6.00472 0.70 0.000960023 0.000885296 0.0263416 0.0244287 48 3294 23 6.79088e+06 323328 865456. 2994.66 4.15 0.292929 0.252471 27694 206865 -1 2879 16 1327 4014 229606 50817 6.63122 6.63122 -155.064 -6.63122 0 0 1.05005e+06 3633.38 0.26 0.09 0.18 -1 -1 0.26 0.0338156 0.0299238 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 7.94 vpr 62.42 MiB 0.04 6636 -1 -1 12 0.18 -1 -1 32652 -1 -1 20 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.8 MiB 1.35 936 8867 2145 5603 1119 62.4 MiB 0.08 0.00 6.07963 -115.463 -6.07963 6.07963 0.70 0.00069817 0.000649132 0.0397022 0.0368966 38 2671 29 6.79088e+06 269440 678818. 2348.85 3.76 0.268261 0.232003 25966 169698 -1 2227 17 1050 2721 157727 35440 6.07963 6.07963 -129.694 -6.07963 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0256713 0.0226593 101 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 8.10 vpr 62.84 MiB 0.05 6732 -1 -1 11 0.19 -1 -1 33068 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1189 9181 2410 5800 971 62.8 MiB 0.09 0.00 5.53137 -115.544 -5.53137 5.53137 0.71 0.000690428 0.000623111 0.0465455 0.0428984 38 3205 23 6.79088e+06 242496 678818. 2348.85 3.93 0.216813 0.188341 25966 169698 -1 2556 18 1200 3519 208685 44225 5.65667 5.65667 -134.13 -5.65667 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0322131 0.0283393 118 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 9.13 vpr 62.66 MiB 0.04 6628 -1 -1 12 0.17 -1 -1 32688 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.3 MiB 2.31 1195 12681 3570 7352 1759 62.7 MiB 0.13 0.00 5.36693 -115.136 -5.36693 5.36693 0.70 0.000751527 0.000696831 0.0501728 0.0463128 36 3157 31 6.79088e+06 242496 648988. 2245.63 3.95 0.215376 0.18799 25390 158009 -1 2529 19 1183 2632 156128 34949 5.82544 5.82544 -135.331 -5.82544 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0299001 0.0262962 111 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 7.03 vpr 62.53 MiB 0.04 6648 -1 -1 13 0.19 -1 -1 32948 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.1 MiB 1.38 1095 6444 1316 4879 249 62.5 MiB 0.07 0.00 6.12227 -138.064 -6.12227 6.12227 0.69 0.000808877 0.000750781 0.0335276 0.0311483 38 2828 28 6.79088e+06 215552 678818. 2348.85 2.81 0.202814 0.175748 25966 169698 -1 2359 15 1073 2647 163068 35827 6.78448 6.78448 -159.066 -6.78448 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0273224 0.0241438 107 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 6.28 vpr 62.49 MiB 0.05 6672 -1 -1 12 0.17 -1 -1 32796 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63988 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.8 MiB 1.33 815 11698 2819 8556 323 62.5 MiB 0.10 0.00 5.87167 -120.486 -5.87167 5.87167 0.70 0.000697143 0.000646828 0.0520579 0.0482319 38 2313 19 6.79088e+06 215552 678818. 2348.85 2.08 0.187301 0.163602 25966 169698 -1 1889 19 882 2340 120780 28110 6.24757 6.24757 -138.774 -6.24757 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0278028 0.0244064 93 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 7.88 vpr 62.32 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 33076 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 23.7 MiB 1.78 1033 5556 1234 3958 364 62.3 MiB 0.06 0.00 5.57489 -132.09 -5.57489 5.57489 0.69 0.000705149 0.000653016 0.026771 0.0248476 48 2295 16 6.79088e+06 188608 865456. 2994.66 3.21 0.212321 0.183159 27694 206865 -1 2160 16 837 2217 141177 30892 5.57489 5.57489 -144.839 -5.57489 0 0 1.05005e+06 3633.38 0.26 0.06 0.19 -1 -1 0.26 0.0250454 0.0221402 94 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 18.58 vpr 63.11 MiB 0.05 6704 -1 -1 13 0.26 -1 -1 33024 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.30 1301 14965 4673 7835 2457 63.1 MiB 0.16 0.00 6.62696 -138.747 -6.62696 6.62696 0.70 0.000968506 0.000896091 0.0823688 0.0762854 40 3278 29 6.79088e+06 282912 706193. 2443.58 14.11 0.494348 0.427614 26254 175826 -1 2989 20 1446 4130 303854 66816 6.96366 6.96366 -157.659 -6.96366 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0407473 0.0358762 148 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 8.99 vpr 63.30 MiB 0.04 6788 -1 -1 14 0.31 -1 -1 33284 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.6 MiB 1.62 1439 10129 2578 5912 1639 63.3 MiB 0.12 0.00 7.51535 -153.524 -7.51535 7.51535 0.70 0.000974603 0.000902738 0.0576412 0.0534581 44 3514 35 6.79088e+06 282912 787024. 2723.27 4.19 0.358781 0.310418 27118 194962 -1 2842 15 1340 3585 198477 44563 7.67985 7.67985 -171.49 -7.67985 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0346686 0.0309037 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 6.80 vpr 62.38 MiB 0.04 6696 -1 -1 11 0.17 -1 -1 32704 -1 -1 20 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 854 13206 4245 6384 2577 62.4 MiB 0.12 0.00 5.70368 -111.531 -5.70368 5.70368 0.69 0.000745554 0.000690884 0.0593092 0.054955 38 2577 21 6.79088e+06 269440 678818. 2348.85 2.57 0.206389 0.180625 25966 169698 -1 2076 16 1041 2554 131966 30895 5.91508 5.91508 -124.652 -5.91508 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0267305 0.0236622 111 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 26.92 vpr 63.32 MiB 0.05 6756 -1 -1 12 0.27 -1 -1 33104 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.5 MiB 2.28 1288 14907 4729 7632 2546 63.3 MiB 0.17 0.00 6.24408 -131.418 -6.24408 6.24408 0.70 0.000987615 0.000915542 0.0843877 0.0781335 46 4020 41 6.79088e+06 269440 828058. 2865.25 21.39 0.563182 0.487029 27406 200422 -1 2874 21 1618 5065 284539 68688 6.71301 6.71301 -149.666 -6.71301 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0428296 0.0376968 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 8.32 vpr 63.20 MiB 0.05 6708 -1 -1 13 0.26 -1 -1 33032 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.5 MiB 1.47 1294 10501 3225 5467 1809 63.2 MiB 0.12 0.00 7.00635 -141.623 -7.00635 7.00635 0.70 0.00101095 0.000927482 0.0600965 0.0554444 44 3206 33 6.79088e+06 282912 787024. 2723.27 3.71 0.347458 0.300764 27118 194962 -1 2706 17 1293 3723 193821 43812 7.29615 7.29615 -160.39 -7.29615 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0365894 0.032342 144 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 6.42 vpr 62.60 MiB 0.04 6552 -1 -1 12 0.14 -1 -1 32844 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.8 MiB 1.85 925 10916 2952 6074 1890 62.6 MiB 0.10 0.00 5.36693 -123.503 -5.36693 5.36693 0.70 0.000747308 0.000692477 0.0509797 0.0473043 34 2527 27 6.79088e+06 215552 618332. 2139.56 1.77 0.204422 0.178478 25102 150614 -1 2155 16 987 2583 147333 34498 5.86813 5.86813 -148.234 -5.86813 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0260275 0.0233973 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 7.60 vpr 61.92 MiB 0.04 6456 -1 -1 10 0.10 -1 -1 32264 -1 -1 12 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63408 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.37 707 7204 1785 5164 255 61.9 MiB 0.06 0.00 4.41351 -102.294 -4.41351 4.41351 0.70 0.000569797 0.00052985 0.0285368 0.0265507 36 2080 41 6.79088e+06 161664 648988. 2245.63 2.53 0.157846 0.136382 25390 158009 -1 1773 20 871 1939 123699 28659 4.96161 4.96161 -123.561 -4.96161 0 0 828058. 2865.25 0.23 0.07 0.14 -1 -1 0.23 0.0258171 0.0227624 67 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 6.50 vpr 62.74 MiB 0.04 6696 -1 -1 13 0.16 -1 -1 33096 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64244 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 24.3 MiB 1.78 1007 5994 1309 4365 320 62.7 MiB 0.07 0.00 6.16152 -135.51 -6.16152 6.16152 0.70 0.000730754 0.000677359 0.0292686 0.027186 34 2899 46 6.79088e+06 215552 618332. 2139.56 1.92 0.182898 0.158827 25102 150614 -1 2257 17 984 2360 152044 34097 6.58083 6.58083 -153.266 -6.58083 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0269009 0.0237377 99 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 9.01 vpr 63.10 MiB 0.05 6696 -1 -1 13 0.28 -1 -1 33004 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.7 MiB 1.19 1345 9914 2546 6157 1211 63.1 MiB 0.11 0.00 6.366 -136.357 -6.366 6.366 0.69 0.000973261 0.000898156 0.0548469 0.0506853 36 3724 50 6.79088e+06 296384 648988. 2245.63 4.79 0.291727 0.253485 25390 158009 -1 3122 20 1491 4003 236609 53248 6.70613 6.70613 -162.599 -6.70613 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0400063 0.0352045 143 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 21.23 vpr 63.17 MiB 0.05 6872 -1 -1 13 0.28 -1 -1 33500 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.94 1380 11063 3219 6127 1717 63.2 MiB 0.13 0.00 6.55321 -142.566 -6.55321 6.55321 0.70 0.000959721 0.000886855 0.0631319 0.0583788 40 3365 32 6.79088e+06 255968 706193. 2443.58 16.18 0.470484 0.406152 26254 175826 -1 3138 17 1441 3940 256041 55705 6.80802 6.80802 -159.336 -6.80802 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0351711 0.0310648 141 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 5.40 vpr 61.92 MiB 0.05 6408 -1 -1 9 0.11 -1 -1 32252 -1 -1 16 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63404 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.3 MiB 1.49 571 10614 3246 6037 1331 61.9 MiB 0.08 0.00 3.9703 -73.7999 -3.9703 3.9703 0.70 0.000388258 0.000357446 0.0281663 0.0259425 30 2002 44 6.79088e+06 215552 556674. 1926.21 1.25 0.105712 0.0920007 24526 138013 -1 1380 17 686 1513 88609 21906 4.2209 4.2209 -90.4948 -4.2209 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0179917 0.0157519 64 66 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 9.06 vpr 63.30 MiB 0.05 6648 -1 -1 13 0.30 -1 -1 32980 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.6 MiB 2.08 1418 10103 3085 6417 601 63.3 MiB 0.14 0.00 6.88531 -141.114 -6.88531 6.88531 0.71 0.000971971 0.000895687 0.0607512 0.0560651 38 3542 20 6.79088e+06 296384 678818. 2348.85 3.89 0.346941 0.300266 25966 169698 -1 3082 19 1554 4381 228369 51276 7.1002 7.1002 -157.932 -7.1002 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0383342 0.0337633 137 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.53 vpr 61.87 MiB 0.04 6440 -1 -1 8 0.09 -1 -1 31380 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63352 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.39 673 11631 3304 6221 2106 61.9 MiB 0.08 0.00 3.9703 -84.9145 -3.9703 3.9703 0.72 0.000509974 0.000474301 0.0348869 0.0324251 34 1784 16 6.79088e+06 229024 618332. 2139.56 1.42 0.133868 0.116674 25102 150614 -1 1587 16 660 1471 98739 22601 4.0956 4.0956 -98.9872 -4.0956 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0176637 0.0155106 64 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 15.72 vpr 62.75 MiB 0.05 6788 -1 -1 15 0.23 -1 -1 33296 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.77 1164 6206 1316 4251 639 62.7 MiB 0.07 0.00 7.38667 -150.094 -7.38667 7.38667 0.70 0.000835281 0.000775813 0.03305 0.0307085 36 3538 33 6.79088e+06 229024 648988. 2245.63 11.11 0.351195 0.302392 25390 158009 -1 2804 20 1366 3736 256614 54377 7.45804 7.45804 -167.512 -7.45804 0 0 828058. 2865.25 0.20 0.06 0.09 -1 -1 0.20 0.0201277 0.0181242 118 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 8.86 vpr 63.21 MiB 0.04 6604 -1 -1 12 0.25 -1 -1 33000 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.5 MiB 1.51 1227 5567 1085 4272 210 63.2 MiB 0.07 0.00 5.95772 -127.546 -5.95772 5.95772 0.70 0.00098226 0.000905261 0.0327252 0.0302786 36 3935 47 6.79088e+06 296384 648988. 2245.63 4.35 0.276153 0.239519 25390 158009 -1 2968 16 1437 4314 264849 59513 6.45892 6.45892 -148.488 -6.45892 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0349004 0.0308726 145 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 8.98 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.27 -1 -1 32852 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.5 MiB 1.30 1176 5208 952 4097 159 63.1 MiB 0.07 0.00 6.38755 -132.959 -6.38755 6.38755 0.70 0.000920289 0.000853879 0.0299674 0.0277959 36 3568 24 6.79088e+06 269440 648988. 2245.63 4.70 0.22162 0.191971 25390 158009 -1 2841 21 1578 4712 279242 61435 6.88875 6.88875 -156.501 -6.88875 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0393558 0.0344471 136 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 14.79 vpr 62.55 MiB 0.05 6580 -1 -1 12 0.17 -1 -1 32584 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.02 1046 4403 824 3392 187 62.6 MiB 0.05 0.00 5.40269 -122.396 -5.40269 5.40269 0.70 0.000756912 0.000700897 0.0214716 0.0199393 30 3108 41 6.79088e+06 255968 556674. 1926.21 9.96 0.297938 0.256017 24526 138013 -1 2356 16 1122 2925 169213 38935 5.52799 5.52799 -139.515 -5.52799 0 0 706193. 2443.58 0.18 0.09 0.12 -1 -1 0.18 0.0319493 0.0281501 106 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 12.19 vpr 62.23 MiB 0.05 6604 -1 -1 11 0.17 -1 -1 32872 -1 -1 20 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63728 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.6 MiB 1.90 979 12008 3479 7251 1278 62.2 MiB 0.10 0.00 5.19894 -110.719 -5.19894 5.19894 0.70 0.000683916 0.000634365 0.048978 0.0454571 40 2242 17 6.79088e+06 269440 706193. 2443.58 7.39 0.309424 0.267204 26254 175826 -1 2120 18 1082 2778 174761 38178 5.44605 5.44605 -128.52 -5.44605 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0263326 0.0231221 97 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.22 vpr 62.42 MiB 0.04 6564 -1 -1 11 0.16 -1 -1 32740 -1 -1 19 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 24.0 MiB 1.17 1041 11064 3324 5841 1899 62.4 MiB 0.10 0.00 5.52794 -112.262 -5.52794 5.52794 0.69 0.000730518 0.000677803 0.0507277 0.0471004 36 2664 19 6.79088e+06 255968 648988. 2245.63 3.28 0.235514 0.204959 25390 158009 -1 2296 16 1021 2595 154778 35052 5.90384 5.90384 -127.824 -5.90384 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0257883 0.0228198 107 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 9.24 vpr 62.69 MiB 0.04 6468 -1 -1 12 0.19 -1 -1 32664 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.90 1120 4943 969 3627 347 62.7 MiB 0.06 0.00 5.82544 -133.42 -5.82544 5.82544 0.70 0.000853189 0.000790916 0.0278942 0.0258001 36 3756 40 6.79088e+06 255968 648988. 2245.63 4.43 0.301049 0.258358 25390 158009 -1 2842 20 1475 3551 212886 48683 6.04038 6.04038 -156.337 -6.04038 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.035686 0.0313522 119 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 6.53 vpr 62.55 MiB 0.04 6596 -1 -1 11 0.17 -1 -1 32760 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 24.1 MiB 1.48 920 10228 2707 5353 2168 62.6 MiB 0.10 0.00 5.40264 -123.039 -5.40264 5.40264 0.70 0.000774314 0.000718222 0.0488672 0.045345 36 3294 41 6.79088e+06 229024 648988. 2245.63 2.22 0.19216 0.167836 25390 158009 -1 2322 20 1291 3543 214907 49098 5.98983 5.98983 -144.455 -5.98983 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0316867 0.0278117 107 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 7.16 vpr 62.26 MiB 0.04 6548 -1 -1 10 0.14 -1 -1 32844 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63752 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.7 MiB 1.36 899 9205 2421 5901 883 62.3 MiB 0.08 0.00 5.07702 -108.463 -5.07702 5.07702 0.73 0.000715071 0.000662361 0.0420514 0.0390041 34 2287 21 6.79088e+06 242496 618332. 2139.56 2.94 0.216036 0.187214 25102 150614 -1 2035 24 958 2630 333251 150851 5.07702 5.07702 -121.058 -5.07702 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0339566 0.0296844 103 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.01 vpr 63.35 MiB 0.05 6856 -1 -1 13 0.36 -1 -1 33464 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1445 7079 1584 5263 232 63.3 MiB 0.09 0.00 6.58432 -140.322 -6.58432 6.58432 0.73 0.00105469 0.000975949 0.0437648 0.0405003 38 4056 45 6.79088e+06 296384 678818. 2348.85 4.24 0.299594 0.259814 25966 169698 -1 3256 23 1663 5535 310101 66593 6.79572 6.79572 -155.871 -6.79572 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0486828 0.0427376 162 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 9.05 vpr 62.87 MiB 0.05 6692 -1 -1 13 0.31 -1 -1 33256 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.68 1368 14035 4287 7111 2637 62.9 MiB 0.16 0.00 6.20842 -135.639 -6.20842 6.20842 0.71 0.00096672 0.00089458 0.0777371 0.0716907 48 3209 24 6.79088e+06 282912 865456. 2994.66 4.11 0.35123 0.304806 27694 206865 -1 2979 17 1430 4011 251543 55615 6.87412 6.87412 -159.654 -6.87412 0 0 1.05005e+06 3633.38 0.26 0.10 0.19 -1 -1 0.26 0.0362217 0.032005 152 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 7.81 vpr 62.43 MiB 0.05 6528 -1 -1 12 0.15 -1 -1 32884 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.8 MiB 1.25 953 10756 4361 6105 290 62.4 MiB 0.10 0.00 5.91508 -130.196 -5.91508 5.91508 0.69 0.000758313 0.000704522 0.0485812 0.0450438 46 2238 15 6.79088e+06 242496 828058. 2865.25 3.69 0.239558 0.208105 27406 200422 -1 1894 14 922 2567 128840 29643 6.16568 6.16568 -143.188 -6.16568 0 0 1.01997e+06 3529.29 0.25 0.06 0.17 -1 -1 0.25 0.0238943 0.021196 102 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 7.94 vpr 63.17 MiB 0.06 6836 -1 -1 12 0.29 -1 -1 33248 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.4 MiB 1.17 1455 9536 2650 5645 1241 63.2 MiB 0.11 0.00 6.45902 -138.574 -6.45902 6.45902 0.70 0.000990021 0.000912883 0.053201 0.0492397 38 3812 26 6.79088e+06 309856 678818. 2348.85 3.71 0.255437 0.222217 25966 169698 -1 3030 18 1535 4883 244095 54350 6.79572 6.79572 -152.177 -6.79572 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0379489 0.0333018 148 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 8.13 vpr 62.85 MiB 0.05 6804 -1 -1 14 0.38 -1 -1 33292 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1407 9051 2173 5719 1159 62.9 MiB 0.10 0.00 6.97147 -143.854 -6.97147 6.97147 0.70 0.000949997 0.000881123 0.0508076 0.0470586 40 3030 17 6.79088e+06 282912 706193. 2443.58 3.82 0.34735 0.300318 26254 175826 -1 3064 18 1406 3876 229676 51940 7.22207 7.22207 -162.077 -7.22207 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0366911 0.0324303 146 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 8.01 vpr 63.01 MiB 0.04 6796 -1 -1 13 0.26 -1 -1 33020 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1258 12162 3945 6130 2087 63.0 MiB 0.12 0.00 6.79572 -139.555 -6.79572 6.79572 0.70 0.00087974 0.000815864 0.0624719 0.0579914 40 3353 28 6.79088e+06 282912 706193. 2443.58 2.65 0.250503 0.219089 26254 175826 -1 3050 32 1816 4963 685431 285566 7.42222 7.42222 -163.924 -7.42222 0 0 926341. 3205.33 0.23 0.22 0.15 -1 -1 0.23 0.052107 0.0452641 126 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 7.94 vpr 62.78 MiB 0.05 6696 -1 -1 12 0.24 -1 -1 33132 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.2 MiB 0.97 1319 12182 3409 7340 1433 62.8 MiB 0.12 0.00 6.13346 -132.947 -6.13346 6.13346 0.70 0.000914068 0.000847892 0.062249 0.0576434 44 3137 17 6.79088e+06 309856 787024. 2723.27 3.89 0.315926 0.273801 27118 194962 -1 2562 16 1116 3384 181865 39572 6.25876 6.25876 -146.704 -6.25876 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0321659 0.0284291 135 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 7.71 vpr 62.54 MiB 0.06 6864 -1 -1 12 0.19 -1 -1 32916 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.09 1008 11106 4041 5130 1935 62.5 MiB 0.13 0.00 5.78552 -118.279 -5.78552 5.78552 0.79 0.0021701 0.00201452 0.0644465 0.0597042 44 2607 18 6.79088e+06 229024 787024. 2723.27 3.47 0.295438 0.25628 27118 194962 -1 2130 16 1122 2950 150502 35324 5.99348 5.99348 -133.873 -5.99348 0 0 997811. 3452.63 0.29 0.08 0.17 -1 -1 0.29 0.0318506 0.0283165 113 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 7.65 vpr 63.40 MiB 0.05 7016 -1 -1 14 0.43 -1 -1 32844 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.6 MiB 1.30 1467 14147 4008 8155 1984 63.4 MiB 0.16 0.00 6.95723 -148.867 -6.95723 6.95723 0.72 0.00106922 0.000989948 0.0816394 0.0755583 40 3667 23 6.79088e+06 336800 706193. 2443.58 2.84 0.310612 0.273162 26254 175826 -1 3487 33 1801 5379 708158 291453 7.17511 7.17511 -169.328 -7.17511 0 0 926341. 3205.33 0.23 0.24 0.15 -1 -1 0.23 0.0651525 0.0567456 169 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 8.88 vpr 62.59 MiB 0.04 6520 -1 -1 11 0.19 -1 -1 32620 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.69 1052 10756 3360 5843 1553 62.6 MiB 0.10 0.00 5.69587 -118.416 -5.69587 5.69587 0.70 0.000807261 0.00074878 0.052954 0.0491299 38 2934 32 6.79088e+06 242496 678818. 2348.85 4.30 0.355972 0.306757 25966 169698 -1 2335 19 1195 3170 173839 39190 5.89608 5.89608 -135.751 -5.89608 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.031949 0.028066 113 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.29 vpr 63.09 MiB 0.05 6932 -1 -1 13 0.27 -1 -1 33172 -1 -1 19 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1144 5956 1217 4545 194 63.1 MiB 0.07 0.00 6.29796 -125.135 -6.29796 6.29796 0.72 0.000883573 0.000819965 0.033254 0.0308403 38 2938 19 6.79088e+06 255968 678818. 2348.85 3.76 0.278903 0.240343 25966 169698 -1 2485 15 1128 3480 183672 39971 6.67386 6.67386 -140.924 -6.67386 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0301468 0.0267083 132 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 8.93 vpr 63.27 MiB 0.05 6672 -1 -1 12 0.26 -1 -1 33148 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.5 MiB 1.34 1408 7525 1730 5097 698 63.3 MiB 0.09 0.00 5.91857 -133.131 -5.91857 5.91857 0.70 0.000995249 0.000921365 0.044559 0.0412506 44 3617 37 6.79088e+06 282912 787024. 2723.27 4.52 0.359265 0.310225 27118 194962 -1 2956 16 1326 4210 237118 51452 6.29098 6.29098 -151.123 -6.29098 0 0 997811. 3452.63 0.25 0.09 0.18 -1 -1 0.25 0.0359816 0.0318599 153 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 7.35 vpr 62.79 MiB 0.05 6716 -1 -1 13 0.24 -1 -1 33052 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1284 10883 2759 6457 1667 62.8 MiB 0.11 0.00 6.33023 -134.932 -6.33023 6.33023 0.69 0.000892185 0.000827368 0.0575464 0.0533942 38 3299 20 6.79088e+06 255968 678818. 2348.85 3.13 0.232908 0.203247 25966 169698 -1 2728 17 1329 3654 188738 42934 6.95673 6.95673 -157.232 -6.95673 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0327794 0.0289115 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 8.12 vpr 62.69 MiB 0.05 6896 -1 -1 13 0.22 -1 -1 33136 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.80 1077 10931 3598 5001 2332 62.7 MiB 0.11 0.00 6.53393 -136.797 -6.53393 6.53393 0.69 0.000868743 0.000804996 0.0577465 0.0535452 36 3226 24 6.79088e+06 229024 648988. 2245.63 3.33 0.235638 0.205273 25390 158009 -1 2558 23 1316 3494 204544 46906 7.07084 7.07084 -157.284 -7.07084 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0399206 0.0349015 118 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 8.90 vpr 62.93 MiB 0.05 6716 -1 -1 12 0.26 -1 -1 33240 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.85 1343 8919 2074 5792 1053 62.9 MiB 0.10 0.00 6.24757 -138.882 -6.24757 6.24757 0.70 0.00095879 0.000887196 0.0484594 0.0448567 36 3507 43 6.79088e+06 309856 648988. 2245.63 3.97 0.276442 0.23956 25390 158009 -1 3022 17 1394 4319 259588 56482 6.82717 6.82717 -161.868 -6.82717 0 0 828058. 2865.25 0.25 0.10 0.14 -1 -1 0.25 0.0361866 0.0319792 150 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 8.50 vpr 63.27 MiB 0.05 6740 -1 -1 13 0.27 -1 -1 32956 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.8 MiB 1.94 1424 6855 1530 4759 566 63.3 MiB 0.09 0.00 6.58776 -143.42 -6.58776 6.58776 0.70 0.000958963 0.000889544 0.0403133 0.0373633 38 3655 22 6.79088e+06 269440 678818. 2348.85 3.52 0.233786 0.202936 25966 169698 -1 2830 20 1427 3874 196013 44778 7.21426 7.21426 -167.313 -7.21426 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0401103 0.0353126 143 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.41 vpr 63.04 MiB 0.04 6808 -1 -1 14 0.28 -1 -1 33112 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.2 MiB 2.00 1221 7558 1837 5223 498 63.0 MiB 0.08 0.00 7.08907 -148.787 -7.08907 7.08907 0.70 0.000861362 0.000800066 0.0400102 0.0371271 48 2811 19 6.79088e+06 242496 865456. 2994.66 3.31 0.274806 0.237508 27694 206865 -1 2581 16 1149 3222 192579 42292 7.21437 7.21437 -162.739 -7.21437 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0303008 0.0267263 123 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 14.82 vpr 62.97 MiB 0.05 6708 -1 -1 13 0.27 -1 -1 33096 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.4 MiB 3.04 1312 8502 1906 5672 924 63.0 MiB 0.10 0.00 6.66621 -141.12 -6.66621 6.66621 0.70 0.000926353 0.000859174 0.0469357 0.0435604 36 3614 23 6.79088e+06 269440 648988. 2245.63 8.74 0.358844 0.309841 25390 158009 -1 2957 18 1459 3902 221477 50071 7.04278 7.04278 -160.644 -7.04278 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0356332 0.031443 134 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.48 vpr 63.46 MiB 0.04 6792 -1 -1 13 0.27 -1 -1 33248 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1336 9725 2391 6910 424 63.5 MiB 0.12 0.00 6.96028 -144.325 -6.96028 6.96028 0.70 0.00099712 0.000912627 0.0560803 0.0517168 44 3633 23 6.79088e+06 309856 787024. 2723.27 4.26 0.337821 0.291894 27118 194962 -1 2751 21 1440 4211 219339 49729 7.54757 7.54757 -165.452 -7.54757 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0426764 0.0374462 154 218 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 8.73 vpr 63.23 MiB 0.04 6784 -1 -1 12 0.30 -1 -1 33092 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.23 1335 12373 3606 6623 2144 63.2 MiB 0.14 0.00 6.24752 -135.566 -6.24752 6.24752 0.70 0.00100947 0.000935564 0.0683138 0.0633566 44 3583 29 6.79088e+06 323328 787024. 2723.27 4.37 0.372167 0.322567 27118 194962 -1 2702 16 1409 3932 189055 45597 6.62347 6.62347 -154.358 -6.62347 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0368593 0.0327402 157 229 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 6.10 vpr 62.36 MiB 0.04 6456 -1 -1 11 0.13 -1 -1 32652 -1 -1 13 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.32 922 7412 1713 5080 619 62.4 MiB 0.07 0.00 5.22351 -115.977 -5.22351 5.22351 0.70 0.000684751 0.000634789 0.0337878 0.0313569 44 2316 28 6.79088e+06 175136 787024. 2723.27 1.95 0.143353 0.125623 27118 194962 -1 1873 13 876 2162 125044 29370 5.59941 5.59941 -134.346 -5.59941 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0211515 0.0187881 90 121 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 7.68 vpr 62.57 MiB 0.04 6672 -1 -1 13 0.19 -1 -1 33124 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.40 1117 10056 2741 5089 2226 62.6 MiB 0.10 0.00 6.38411 -138.388 -6.38411 6.38411 0.70 0.000805026 0.000747257 0.0494929 0.0459776 38 3068 39 6.79088e+06 229024 678818. 2348.85 2.35 0.230244 0.199862 25966 169698 -1 2419 31 1202 3086 347254 157295 6.88531 6.88531 -162.282 -6.88531 0 0 902133. 3121.57 0.22 0.14 0.14 -1 -1 0.22 0.0464343 0.0403947 113 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 9.25 vpr 63.51 MiB 0.05 6880 -1 -1 14 0.43 -1 -1 33072 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1515 15883 4784 8717 2382 63.5 MiB 0.18 0.00 7.16747 -150.878 -7.16747 7.16747 0.69 0.00112996 0.00104577 0.0970425 0.0897507 46 4366 35 6.79088e+06 323328 828058. 2865.25 4.77 0.455096 0.395792 27406 200422 -1 3322 19 1962 5914 298803 68536 7.41806 7.41806 -168.104 -7.41806 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0453122 0.0400236 180 266 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.45 vpr 63.12 MiB 0.05 6720 -1 -1 13 0.32 -1 -1 33056 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.31 1433 4735 888 3424 423 63.1 MiB 0.07 0.00 6.9672 -152.576 -6.9672 6.9672 0.70 0.00101853 0.00093879 0.0302993 0.0281055 36 3952 44 6.79088e+06 282912 648988. 2245.63 3.06 0.262127 0.226575 25390 158009 -1 3262 17 1452 3988 247399 54136 7.3431 7.3431 -175.069 -7.3431 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0386274 0.0342024 154 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 6.78 vpr 62.44 MiB 0.04 6620 -1 -1 11 0.16 -1 -1 32916 -1 -1 17 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 884 13937 6023 7591 323 62.4 MiB 0.12 0.00 5.65673 -120.617 -5.65673 5.65673 0.72 0.000581847 0.000535467 0.0573769 0.0529072 44 2158 23 6.79088e+06 229024 787024. 2723.27 3.21 0.279253 0.242649 27118 194962 -1 1793 15 797 2329 112204 26437 5.65673 5.65673 -129.656 -5.65673 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.0243535 0.0215572 99 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 9.70 vpr 63.18 MiB 0.05 7028 -1 -1 15 0.43 -1 -1 33132 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.6 MiB 1.25 1539 13543 3429 7947 2167 63.2 MiB 0.16 0.00 7.89136 -160.045 -7.89136 7.89136 0.71 0.00108024 0.000996105 0.0796709 0.0736292 38 4504 34 6.79088e+06 323328 678818. 2348.85 5.09 0.325791 0.285498 25966 169698 -1 3483 20 1827 5367 295750 65181 8.14196 8.14196 -179.214 -8.14196 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0452053 0.0398076 172 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 9.07 vpr 63.02 MiB 0.05 6736 -1 -1 13 0.30 -1 -1 33456 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.6 MiB 1.07 1376 11426 3439 6869 1118 63.0 MiB 0.13 0.00 6.5798 -147.556 -6.5798 6.5798 0.70 0.000986106 0.000909067 0.063189 0.0583551 36 4027 40 6.79088e+06 296384 648988. 2245.63 4.90 0.290889 0.253792 25390 158009 -1 3196 20 1503 4085 229850 51292 7.14467 7.14467 -172.914 -7.14467 0 0 828058. 2865.25 0.21 0.10 0.15 -1 -1 0.21 0.0407068 0.0357962 149 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 6.76 vpr 62.32 MiB 0.04 6676 -1 -1 11 0.14 -1 -1 32848 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.7 MiB 1.50 983 12292 4495 6144 1653 62.3 MiB 0.11 0.00 5.49998 -127.786 -5.49998 5.49998 0.71 0.000729966 0.000673787 0.0549856 0.0508077 36 2550 20 6.79088e+06 215552 648988. 2245.63 2.44 0.201599 0.176373 25390 158009 -1 2115 17 985 2488 138111 31480 5.82549 5.82549 -143.996 -5.82549 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0269795 0.0237508 97 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 16.00 vpr 63.20 MiB 0.05 6952 -1 -1 12 0.29 -1 -1 33036 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.5 MiB 1.50 1368 12733 3238 7715 1780 63.2 MiB 0.14 0.00 6.44783 -141.106 -6.44783 6.44783 0.71 0.000975426 0.000902353 0.0718275 0.0663319 36 3849 50 6.79088e+06 282912 648988. 2245.63 11.34 0.471014 0.405952 25390 158009 -1 3129 25 1488 4475 397580 134471 6.74877 6.74877 -158.46 -6.74877 0 0 828058. 2865.25 0.21 0.15 0.15 -1 -1 0.21 0.0484843 0.0424405 152 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 9.28 vpr 62.73 MiB 0.04 6544 -1 -1 12 0.20 -1 -1 32616 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 24.2 MiB 1.61 1123 12464 4867 6424 1173 62.7 MiB 0.13 0.00 5.91857 -129.518 -5.91857 5.91857 0.72 0.000832874 0.0007725 0.0637851 0.0590627 44 3074 50 6.79088e+06 215552 787024. 2723.27 4.64 0.372039 0.322687 27118 194962 -1 2274 16 1155 3013 155932 36215 6.41628 6.41628 -149.469 -6.41628 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0294373 0.0260279 115 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 4.90 vpr 62.41 MiB 0.04 6728 -1 -1 12 0.18 -1 -1 32980 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 23.7 MiB 1.22 903 12506 3860 6811 1835 62.4 MiB 0.11 0.00 6.47016 -128.362 -6.47016 6.47016 0.70 0.000752652 0.00069885 0.0563982 0.0523568 30 2198 17 6.79088e+06 255968 556674. 1926.21 0.87 0.141268 0.125322 24526 138013 -1 1894 15 786 2236 100202 24528 6.47016 6.47016 -141.726 -6.47016 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0250333 0.0221598 105 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 6.70 vpr 62.91 MiB 0.05 6708 -1 -1 12 0.28 -1 -1 33040 -1 -1 24 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.2 MiB 1.28 1104 15337 5572 7539 2226 62.9 MiB 0.16 0.00 6.68272 -126.167 -6.68272 6.68272 0.70 0.000949844 0.000879449 0.08226 0.0762154 36 3351 29 6.79088e+06 323328 648988. 2245.63 2.32 0.238469 0.209762 25390 158009 -1 2578 18 1229 3872 209774 48623 6.80802 6.80802 -137.056 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0365835 0.0322047 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 9.22 vpr 63.13 MiB 0.05 6668 -1 -1 14 0.33 -1 -1 33044 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.6 MiB 2.30 1439 7835 2127 5026 682 63.1 MiB 0.10 0.00 6.81035 -143.688 -6.81035 6.81035 0.70 0.00102079 0.000942101 0.0463719 0.0429621 46 3456 24 6.79088e+06 296384 828058. 2865.25 3.68 0.339829 0.293471 27406 200422 -1 2788 18 1574 4030 190006 43883 7.18625 7.18625 -160.884 -7.18625 0 0 1.01997e+06 3529.29 0.25 0.09 0.20 -1 -1 0.25 0.0394501 0.0348921 155 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.78 vpr 62.79 MiB 0.05 6752 -1 -1 12 0.24 -1 -1 32968 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.1 MiB 1.35 1301 12863 4333 6208 2322 62.8 MiB 0.14 0.00 6.25532 -137.4 -6.25532 6.25532 0.69 0.000926556 0.000856583 0.0705058 0.0653533 38 3767 23 6.79088e+06 255968 678818. 2348.85 3.44 0.25838 0.225652 25966 169698 -1 2930 16 1473 4175 235781 52575 6.63122 6.63122 -157.534 -6.63122 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0328556 0.0290452 137 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 5.90 vpr 62.42 MiB 0.04 6636 -1 -1 12 0.14 -1 -1 32888 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63920 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 1.25 955 5994 1268 4551 175 62.4 MiB 0.06 0.00 5.91857 -125.686 -5.91857 5.91857 0.70 0.00070598 0.000654348 0.0275773 0.0255826 34 2667 34 6.79088e+06 202080 618332. 2139.56 1.87 0.181346 0.15707 25102 150614 -1 2281 18 940 2542 165864 36026 6.54507 6.54507 -150.386 -6.54507 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0268422 0.023631 95 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 6.51 vpr 62.77 MiB 0.02 6596 -1 -1 12 0.20 -1 -1 32604 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1085 10756 3299 5343 2114 62.8 MiB 0.11 0.00 5.87937 -127.933 -5.87937 5.87937 0.70 0.000836069 0.000774913 0.0544571 0.0505321 44 2719 21 6.79088e+06 242496 787024. 2723.27 1.80 0.18163 0.159261 27118 194962 -1 2163 17 957 2664 138721 32032 6.20488 6.20488 -142.231 -6.20488 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0310804 0.0273453 114 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 15.31 vpr 62.77 MiB 0.05 6700 -1 -1 11 0.19 -1 -1 32920 -1 -1 22 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.59 1231 5940 1419 3879 642 62.8 MiB 0.07 0.00 5.61753 -119.458 -5.61753 5.61753 0.70 0.000888877 0.000815433 0.0332358 0.0307663 36 3633 41 6.79088e+06 296384 648988. 2245.63 9.81 0.339367 0.292022 25390 158009 -1 3101 20 1542 4906 357493 74822 5.81774 5.81774 -141.549 -5.81774 0 0 828058. 2865.25 0.22 0.12 0.14 -1 -1 0.22 0.0368549 0.0324214 129 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 6.75 vpr 62.68 MiB 0.05 6772 -1 -1 11 0.21 -1 -1 32992 -1 -1 21 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.28 1038 12331 4331 5522 2478 62.7 MiB 0.13 0.00 5.95423 -109.675 -5.95423 5.95423 0.69 0.000876349 0.000816454 0.065883 0.0614539 38 3200 42 6.79088e+06 282912 678818. 2348.85 2.57 0.232375 0.204337 25966 169698 -1 2487 19 1267 3681 218788 47871 6.32664 6.32664 -126.134 -6.32664 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0336082 0.0295348 125 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 7.34 vpr 62.33 MiB 0.02 6624 -1 -1 13 0.20 -1 -1 33052 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63824 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.8 MiB 2.69 1071 10868 2961 6635 1272 62.3 MiB 0.10 0.00 6.00472 -122.546 -6.00472 6.00472 0.69 0.000729133 0.000671018 0.0504412 0.0467844 38 2656 19 6.79088e+06 215552 678818. 2348.85 1.81 0.19104 0.167048 25966 169698 -1 2176 15 981 2525 138923 31372 6.13002 6.13002 -136.956 -6.13002 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0245924 0.0217619 104 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 8.17 vpr 62.66 MiB 0.04 6704 -1 -1 12 0.19 -1 -1 32744 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 1.86 1163 6123 1243 4041 839 62.7 MiB 0.07 0.00 6.03612 -137.142 -6.03612 6.03612 0.69 0.000865568 0.000802683 0.032464 0.0301387 44 2891 18 6.79088e+06 269440 787024. 2723.27 3.38 0.262005 0.226365 27118 194962 -1 2394 15 1026 2772 158126 34627 6.16142 6.16142 -149.124 -6.16142 0 0 997811. 3452.63 0.25 0.07 0.17 -1 -1 0.25 0.0296096 0.0262621 125 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 7.96 vpr 62.83 MiB 0.04 6668 -1 -1 13 0.31 -1 -1 33100 -1 -1 20 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.4 MiB 1.85 1247 8183 2047 4915 1221 62.8 MiB 0.09 0.00 6.54518 -135.608 -6.54518 6.54518 0.69 0.000914376 0.000847181 0.0455028 0.0422426 34 3324 47 6.79088e+06 269440 618332. 2139.56 2.97 0.265808 0.231168 25102 150614 -1 2767 31 1518 4912 524576 227997 6.97141 6.97141 -155.863 -6.97141 0 0 787024. 2723.27 0.20 0.19 0.13 -1 -1 0.20 0.0531956 0.0463426 137 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 7.60 vpr 63.11 MiB 0.02 6776 -1 -1 14 0.31 -1 -1 32976 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.4 MiB 1.56 1351 15337 4423 8268 2646 63.1 MiB 0.17 0.00 7.47965 -152.205 -7.47965 7.47965 0.70 0.000988975 0.000915625 0.0864125 0.0800178 30 4181 36 6.79088e+06 282912 556674. 1926.21 3.01 0.232328 0.205468 24526 138013 -1 3111 19 1467 3914 231699 50971 7.98084 7.98084 -179.109 -7.98084 0 0 706193. 2443.58 0.18 0.10 0.12 -1 -1 0.18 0.0397637 0.0350459 149 213 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 7.91 vpr 63.05 MiB 0.05 6832 -1 -1 14 0.26 -1 -1 32948 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.28 1294 14175 4633 7001 2541 63.0 MiB 0.14 0.00 6.67053 -135.191 -6.67053 6.67053 0.76 0.000904554 0.000838444 0.0740216 0.0686321 46 3069 16 6.79088e+06 269440 828058. 2865.25 2.45 0.24672 0.216457 27406 200422 -1 2573 16 1095 3307 173235 38446 7.09333 7.09333 -152.136 -7.09333 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0322043 0.0285172 136 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 9.72 vpr 63.02 MiB 0.04 6744 -1 -1 13 0.34 -1 -1 33524 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1321 11243 2895 6563 1785 63.0 MiB 0.12 0.00 6.74882 -141.446 -6.74882 6.74882 0.72 0.000726018 0.000650182 0.0555349 0.0512166 48 3051 35 6.79088e+06 255968 865456. 2994.66 4.46 0.339982 0.293605 27694 206865 -1 2740 29 1387 4154 573520 260774 6.79921 6.79921 -153.546 -6.79921 0 0 1.05005e+06 3633.38 0.26 0.19 0.18 -1 -1 0.26 0.0523294 0.0457351 139 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 6.55 vpr 62.47 MiB 0.02 6628 -1 -1 13 0.18 -1 -1 32852 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.75 936 7880 2110 5433 337 62.5 MiB 0.08 0.00 5.84133 -123.22 -5.84133 5.84133 0.77 0.000740713 0.00068638 0.0383925 0.0356348 38 2409 16 6.79088e+06 215552 678818. 2348.85 1.95 0.177142 0.154723 25966 169698 -1 1962 16 942 2307 114703 27072 6.08307 6.08307 -137.638 -6.08307 0 0 902133. 3121.57 0.23 0.07 0.19 -1 -1 0.23 0.0261098 0.023499 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 8.24 vpr 63.01 MiB 0.04 6836 -1 -1 13 0.55 -1 -1 32936 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.6 MiB 1.87 1355 13849 4587 6805 2457 63.0 MiB 0.15 0.00 6.88105 -138.606 -6.88105 6.88105 0.70 0.000967167 0.000896786 0.0760308 0.0705121 36 3765 38 6.79088e+06 309856 648988. 2245.63 2.86 0.280549 0.246476 25390 158009 -1 3057 20 1544 3847 238269 53162 7.50755 7.50755 -166.516 -7.50755 0 0 828058. 2865.25 0.22 0.10 0.14 -1 -1 0.22 0.0397295 0.034964 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 17.77 vpr 63.09 MiB 0.05 6840 -1 -1 14 0.32 -1 -1 31792 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 2.00 1247 9234 2286 5752 1196 63.1 MiB 0.10 0.00 7.05757 -151.342 -7.05757 7.05757 0.71 0.000900748 0.000834027 0.0487736 0.0450964 38 3461 40 6.79088e+06 269440 678818. 2348.85 12.57 0.395164 0.34051 25966 169698 -1 2738 17 1308 3997 221034 48180 7.55876 7.55876 -170.855 -7.55876 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0359263 0.0317928 133 181 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.73 vpr 62.80 MiB 0.05 6892 -1 -1 12 0.25 -1 -1 33032 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.99 1324 9417 2512 5098 1807 62.8 MiB 0.10 0.00 6.38406 -131.556 -6.38406 6.38406 0.73 0.000732118 0.000672007 0.0462865 0.0427122 38 3318 30 6.79088e+06 282912 678818. 2348.85 2.46 0.239717 0.209307 25966 169698 -1 2789 19 1455 4136 238644 53434 7.13586 7.13586 -158.701 -7.13586 0 0 902133. 3121.57 0.24 0.12 0.15 -1 -1 0.24 0.04428 0.0390121 143 200 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 9.95 vpr 62.90 MiB 0.05 6752 -1 -1 13 0.26 -1 -1 33028 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.3 MiB 2.19 1252 13943 4131 7787 2025 62.9 MiB 0.14 0.00 6.43218 -124.616 -6.43218 6.43218 0.90 0.00087774 0.00081347 0.0719019 0.0665678 38 3281 31 6.79088e+06 282912 678818. 2348.85 4.26 0.286506 0.252561 25966 169698 -1 2745 17 1277 3627 199406 43657 6.88531 6.88531 -145.276 -6.88531 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0331626 0.0293208 126 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 10.00 vpr 63.13 MiB 0.05 6868 -1 -1 14 0.36 -1 -1 33104 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.6 MiB 1.43 1309 5665 1191 4158 316 63.1 MiB 0.07 0.00 7.1394 -148.126 -7.1394 7.1394 0.94 0.000769308 0.000705288 0.0282287 0.0259649 36 4224 43 6.79088e+06 282912 648988. 2245.63 5.21 0.2757 0.240715 25390 158009 -1 3367 21 1928 5435 325403 72600 7.58683 7.58683 -172.287 -7.58683 0 0 828058. 2865.25 0.21 0.12 0.11 -1 -1 0.21 0.0432534 0.0380274 154 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.10 vpr 62.80 MiB 0.05 6788 -1 -1 11 0.28 -1 -1 33032 -1 -1 22 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.2 MiB 1.21 1117 13583 4273 7173 2137 62.8 MiB 0.14 0.00 5.79316 -113.465 -5.79316 5.79316 0.70 0.000870017 0.000799669 0.0689568 0.063733 38 2905 37 6.79088e+06 296384 678818. 2348.85 2.70 0.263454 0.229983 25966 169698 -1 2400 17 1225 3756 189361 43568 5.91846 5.91846 -125.483 -5.91846 0 0 902133. 3121.57 0.29 0.08 0.16 -1 -1 0.29 0.0330581 0.0293778 130 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.79 vpr 62.77 MiB 0.04 6656 -1 -1 13 0.16 -1 -1 32972 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 24.0 MiB 2.88 956 3896 669 3171 56 62.8 MiB 0.05 0.00 5.99004 -137.535 -5.99004 5.99004 0.71 0.000741012 0.000689523 0.0206865 0.0192818 38 2528 21 6.79088e+06 188608 678818. 2348.85 4.15 0.244143 0.210869 25966 169698 -1 2141 15 1062 2543 138483 31366 6.36594 6.36594 -154.161 -6.36594 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0253973 0.0225389 99 130 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 6.22 vpr 62.72 MiB 0.04 6772 -1 -1 14 0.23 -1 -1 33000 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.1 MiB 1.75 1330 6203 1275 4418 510 62.7 MiB 0.07 0.00 7.08136 -148.99 -7.08136 7.08136 0.70 0.000887837 0.000823628 0.034019 0.0316138 36 3325 22 6.79088e+06 255968 648988. 2245.63 1.56 0.176899 0.153855 25390 158009 -1 2842 18 1301 3451 204853 44851 7.70786 7.70786 -169.927 -7.70786 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033819 0.0298091 129 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.07 vpr 63.11 MiB 0.06 6680 -1 -1 15 0.38 -1 -1 33456 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.5 MiB 1.80 1318 14072 3818 8001 2253 63.1 MiB 0.15 0.00 7.4405 -153.485 -7.4405 7.4405 0.70 0.00102404 0.00094947 0.0805919 0.0747063 38 3903 34 6.79088e+06 296384 678818. 2348.85 2.04 0.28032 0.246096 25966 169698 -1 3027 18 1808 4920 253529 57045 7.60151 7.60151 -170.21 -7.60151 0 0 902133. 3121.57 0.25 0.10 0.15 -1 -1 0.25 0.0383326 0.0345297 153 227 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 6.81 vpr 62.43 MiB 0.04 6604 -1 -1 11 0.16 -1 -1 32724 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.9 MiB 1.91 950 7714 1786 5577 351 62.4 MiB 0.04 0.00 5.37463 -116.656 -5.37463 5.37463 0.58 0.000313802 0.00028876 0.0167725 0.0153958 36 2517 35 6.79088e+06 188608 648988. 2245.63 2.36 0.150258 0.129634 25390 158009 -1 2051 14 838 2195 128152 28851 5.62523 5.62523 -132.963 -5.62523 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0223533 0.0197979 91 123 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 12.75 vpr 62.50 MiB 0.04 6588 -1 -1 12 0.20 -1 -1 32844 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63996 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 24.1 MiB 1.47 1057 9374 3046 4951 1377 62.5 MiB 0.10 0.00 6.07958 -130.8 -6.07958 6.07958 0.75 0.000793351 0.000735695 0.0472791 0.0438602 36 2888 27 6.79088e+06 215552 648988. 2245.63 8.36 0.343953 0.298709 25390 158009 -1 2329 19 1133 2939 156061 36828 6.15449 6.15449 -145.921 -6.15449 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0315977 0.0277722 111 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 15.80 vpr 62.99 MiB 0.06 6824 -1 -1 12 0.30 -1 -1 33144 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.31 1285 5391 1173 3641 577 63.0 MiB 0.07 0.00 6.13341 -133.877 -6.13341 6.13341 0.70 0.000980457 0.00090513 0.0329443 0.0304896 36 3589 43 6.79088e+06 269440 648988. 2245.63 11.41 0.406176 0.349817 25390 158009 -1 2946 15 1363 3801 220488 49526 6.53732 6.53732 -153.535 -6.53732 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0335753 0.0297591 145 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 8.08 vpr 62.91 MiB 0.05 6780 -1 -1 12 0.24 -1 -1 33036 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.3 MiB 1.59 1371 11963 3320 6896 1747 62.9 MiB 0.13 0.00 6.38411 -138.005 -6.38411 6.38411 0.72 0.000895667 0.000826451 0.064266 0.0596074 44 3343 19 6.79088e+06 255968 787024. 2723.27 3.37 0.268224 0.231962 27118 194962 -1 2836 16 1223 3625 203387 43784 6.84611 6.84611 -157.473 -6.84611 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0315475 0.0278879 133 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 17.61 vpr 63.40 MiB 0.05 6796 -1 -1 14 0.44 -1 -1 33380 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1402 5847 1146 4426 275 63.4 MiB 0.08 0.00 7.25706 -151.473 -7.25706 7.25706 0.73 0.00105136 0.000970225 0.0375023 0.0347817 38 3848 28 6.79088e+06 309856 678818. 2348.85 13.00 0.437135 0.377348 25966 169698 -1 3179 18 1629 4855 252754 57306 7.50765 7.50765 -168.347 -7.50765 0 0 902133. 3121.57 0.26 0.10 0.14 -1 -1 0.26 0.0421474 0.0373204 170 238 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 9.99 vpr 62.69 MiB 0.04 6780 -1 -1 11 0.23 -1 -1 32632 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.89 1193 11603 3025 6544 2034 62.7 MiB 0.12 0.00 5.74632 -118.944 -5.74632 5.74632 0.70 0.00085973 0.000797291 0.0592796 0.0550432 36 3216 45 6.79088e+06 282912 648988. 2245.63 5.12 0.273089 0.238258 25390 158009 -1 2757 17 1203 3500 219160 47838 6.33362 6.33362 -139.072 -6.33362 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0318858 0.0281513 128 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 7.19 vpr 62.33 MiB 0.05 6676 -1 -1 11 0.17 -1 -1 32668 -1 -1 19 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63828 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.7 MiB 1.07 888 6552 1588 4538 426 62.3 MiB 0.07 0.00 5.56719 -105.877 -5.56719 5.56719 0.69 0.000706968 0.000655507 0.0306632 0.0284558 38 2131 15 6.79088e+06 255968 678818. 2348.85 3.24 0.21098 0.182125 25966 169698 -1 1722 14 826 2193 111460 25465 5.94309 5.94309 -118.085 -5.94309 0 0 902133. 3121.57 0.27 0.06 0.14 -1 -1 0.27 0.0230204 0.0204159 101 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.21 vpr 63.90 MiB 0.05 6928 -1 -1 13 0.41 -1 -1 33048 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 25.2 MiB 1.64 1664 10803 2748 6552 1503 63.9 MiB 0.13 0.00 6.71306 -140.604 -6.71306 6.71306 0.72 0.00118695 0.00109952 0.0658977 0.0610254 38 5244 30 6.79088e+06 390688 678818. 2348.85 4.17 0.307267 0.26876 25966 169698 -1 4038 22 2412 7433 451231 96265 7.08552 7.08552 -163.889 -7.08552 0 0 902133. 3121.57 0.26 0.16 0.14 -1 -1 0.26 0.05403 0.0476519 191 278 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 7.88 vpr 62.66 MiB 0.05 6776 -1 -1 14 0.26 -1 -1 33612 -1 -1 20 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.28 1198 6563 1639 4474 450 62.7 MiB 0.08 0.00 6.92462 -143.403 -6.92462 6.92462 0.70 0.000872149 0.000809321 0.0353052 0.0327303 38 3013 28 6.79088e+06 269440 678818. 2348.85 3.62 0.296382 0.254888 25966 169698 -1 2461 16 1132 2960 150915 34570 7.39006 7.39006 -162.294 -7.39006 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0312196 0.0275254 128 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 9.86 vpr 62.43 MiB 0.04 6512 -1 -1 12 0.16 -1 -1 32512 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.8 MiB 2.12 1221 12683 3575 7368 1740 62.4 MiB 0.12 0.00 6.04387 -140.065 -6.04387 6.04387 0.70 0.000747645 0.000692926 0.055748 0.0516653 36 3346 41 6.79088e+06 255968 648988. 2245.63 4.93 0.231243 0.202245 25390 158009 -1 2846 18 1233 3027 265470 81462 6.54507 6.54507 -165.372 -6.54507 0 0 828058. 2865.25 0.21 0.10 0.10 -1 -1 0.21 0.0286727 0.025291 109 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 7.65 vpr 62.71 MiB 0.05 6756 -1 -1 13 0.28 -1 -1 32964 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.2 MiB 2.55 1257 6846 1533 4910 403 62.7 MiB 0.08 0.00 6.79927 -138.851 -6.79927 6.79927 0.69 0.000874041 0.000811605 0.0371319 0.0344807 44 2987 17 6.79088e+06 242496 787024. 2723.27 2.18 0.16006 0.140046 27118 194962 -1 2607 18 1145 3269 189479 41480 7.67637 7.67637 -161.202 -7.67637 0 0 997811. 3452.63 0.24 0.08 0.11 -1 -1 0.24 0.0336817 0.0297262 125 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 9.38 vpr 63.51 MiB 0.05 6904 -1 -1 13 0.32 -1 -1 33680 -1 -1 25 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.7 MiB 1.85 1535 9253 2272 5893 1088 63.5 MiB 0.11 0.00 6.33023 -139.512 -6.33023 6.33023 0.72 0.00103634 0.000951696 0.0534091 0.0493383 44 3778 28 6.79088e+06 336800 787024. 2723.27 4.35 0.36111 0.311804 27118 194962 -1 3204 18 1581 4568 244546 53457 6.53737 6.53737 -156.162 -6.53737 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0396743 0.0351101 159 232 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.40 vpr 62.91 MiB 0.05 6660 -1 -1 11 0.23 -1 -1 32972 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.3 MiB 1.50 1104 12175 3724 6206 2245 62.9 MiB 0.13 0.00 5.58182 -114.064 -5.58182 5.58182 0.69 0.000916287 0.000849573 0.06394 0.0592281 40 2756 21 6.79088e+06 309856 706193. 2443.58 3.90 0.343925 0.297715 26254 175826 -1 2899 19 1478 4771 313028 68750 6.41972 6.41972 -140.724 -6.41972 0 0 926341. 3205.33 0.22 0.11 0.15 -1 -1 0.22 0.0371832 0.0327133 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 8.11 vpr 62.95 MiB 0.04 6816 -1 -1 15 0.32 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1191 8363 1968 5530 865 62.9 MiB 0.10 0.00 7.59386 -151.645 -7.59386 7.59386 0.69 0.000952889 0.000882695 0.0483003 0.0447071 40 2934 16 6.79088e+06 255968 706193. 2443.58 3.59 0.284245 0.246339 26254 175826 -1 2857 16 1440 3933 237668 54766 7.71916 7.71916 -166.22 -7.71916 0 0 926341. 3205.33 0.22 0.09 0.15 -1 -1 0.22 0.0339233 0.0299848 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 8.82 vpr 63.28 MiB 0.05 6788 -1 -1 13 0.31 -1 -1 33140 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.7 MiB 1.91 1473 6039 1263 4478 298 63.3 MiB 0.08 0.00 6.80265 -147.99 -6.80265 6.80265 0.70 0.00101008 0.000935409 0.0359636 0.0333152 38 3843 23 6.79088e+06 309856 678818. 2348.85 3.78 0.30138 0.259927 25966 169698 -1 3103 17 1434 4361 230879 51074 7.09245 7.09245 -166.749 -7.09245 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.037256 0.0329047 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 7.26 vpr 62.49 MiB 0.04 6504 -1 -1 12 0.20 -1 -1 32528 -1 -1 18 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.83 1011 13430 3737 7773 1920 62.5 MiB 0.12 0.00 6.04736 -124.651 -6.04736 6.04736 0.69 0.000753484 0.00069778 0.0628502 0.0583002 30 2678 43 6.79088e+06 242496 556674. 1926.21 2.63 0.298638 0.259555 24526 138013 -1 2189 17 1071 2392 114345 27946 6.29796 6.29796 -145.197 -6.29796 0 0 706193. 2443.58 0.19 0.06 0.11 -1 -1 0.19 0.0280897 0.0248593 109 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 8.56 vpr 62.52 MiB 0.05 6552 -1 -1 11 0.15 -1 -1 32592 -1 -1 14 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 23.8 MiB 1.37 1195 9540 2725 5911 904 62.5 MiB 0.09 0.00 5.75402 -126.863 -5.75402 5.75402 0.69 0.000728965 0.000672607 0.0447732 0.0413469 44 3001 33 6.79088e+06 188608 787024. 2723.27 4.29 0.261854 0.226482 27118 194962 -1 2477 17 1196 2924 164298 36063 5.90384 5.90384 -145.204 -5.90384 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0271794 0.0239539 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 6.36 vpr 62.86 MiB 0.05 6688 -1 -1 13 0.32 -1 -1 33184 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64372 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.4 MiB 1.05 1170 13291 4109 6846 2336 62.9 MiB 0.14 0.00 6.45897 -130.377 -6.45897 6.45897 0.70 0.000955897 0.000882166 0.0724516 0.0669562 38 3207 45 6.79088e+06 296384 678818. 2348.85 2.23 0.259396 0.226899 25966 169698 -1 2518 19 1424 3988 195051 45562 6.83487 6.83487 -146.802 -6.83487 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0382325 0.0336878 144 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 6.35 vpr 62.40 MiB 0.04 6676 -1 -1 10 0.18 -1 -1 33208 -1 -1 17 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63900 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.8 MiB 1.65 780 11532 2774 8300 458 62.4 MiB 0.10 0.00 4.98748 -102.107 -4.98748 4.98748 0.69 0.000712316 0.00066003 0.0520421 0.0482183 36 2607 22 6.79088e+06 229024 648988. 2245.63 1.92 0.191891 0.167849 25390 158009 -1 2015 17 938 2544 139672 33699 5.48868 5.48868 -124.802 -5.48868 0 0 828058. 2865.25 0.21 0.07 0.15 -1 -1 0.21 0.0262483 0.0230896 98 132 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 7.65 vpr 62.59 MiB 0.05 6636 -1 -1 14 0.18 -1 -1 33044 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 24.2 MiB 2.60 1126 7914 1880 5363 671 62.6 MiB 0.08 0.00 6.62358 -137.265 -6.62358 6.62358 0.74 0.000731424 0.000685014 0.0369782 0.034276 38 2913 18 6.79088e+06 242496 678818. 2348.85 2.14 0.184313 0.160345 25966 169698 -1 2328 16 994 2622 150594 33014 6.74888 6.74888 -151.891 -6.74888 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0272739 0.0241453 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 8.05 vpr 62.83 MiB 0.04 6724 -1 -1 12 0.30 -1 -1 33112 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.4 MiB 1.10 1317 13477 4228 7095 2154 62.8 MiB 0.14 0.00 6.13341 -133.654 -6.13341 6.13341 0.71 0.000941489 0.000871619 0.0724591 0.0672128 44 3215 20 6.79088e+06 296384 787024. 2723.27 3.76 0.331805 0.28817 27118 194962 -1 2679 17 1250 3606 192867 43461 6.50931 6.50931 -150.869 -6.50931 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0349331 0.0308849 143 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 8.24 vpr 62.23 MiB 0.04 6584 -1 -1 12 0.15 -1 -1 32516 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63724 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 2.01 1106 10895 2978 6886 1031 62.2 MiB 0.10 0.00 5.48879 -122.645 -5.48879 5.48879 0.70 0.000717156 0.000664431 0.0492554 0.0456756 36 2715 24 6.79088e+06 215552 648988. 2245.63 3.33 0.196832 0.171924 25390 158009 -1 2364 15 997 2331 142145 31645 5.86469 5.86469 -139.836 -5.86469 0 0 828058. 2865.25 0.21 0.07 0.15 -1 -1 0.21 0.0246679 0.0218008 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 7.93 vpr 62.99 MiB 0.06 6784 -1 -1 12 0.19 -1 -1 32980 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1118 5600 1157 4246 197 63.0 MiB 0.07 0.00 6.03617 -130.052 -6.03617 6.03617 0.70 0.000883942 0.000818517 0.0314949 0.0291809 40 2763 19 6.79088e+06 242496 706193. 2443.58 3.63 0.282208 0.242478 26254 175826 -1 2599 18 1202 3592 216394 47185 6.38406 6.38406 -148.739 -6.38406 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0342786 0.0301669 123 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 20.92 vpr 62.80 MiB 0.05 6796 -1 -1 13 0.27 -1 -1 33092 -1 -1 19 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.39 1288 12898 3442 7509 1947 62.8 MiB 0.14 0.00 6.08307 -132.825 -6.08307 6.08307 0.69 0.000895497 0.000825867 0.06818 0.0629697 40 3171 25 6.79088e+06 255968 706193. 2443.58 16.48 0.429292 0.371582 26254 175826 -1 2917 18 1360 3737 232337 51719 6.67037 6.67037 -150.1 -6.67037 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0346284 0.0305464 134 176 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 6.19 vpr 62.46 MiB 0.04 6504 -1 -1 11 0.16 -1 -1 32496 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.1 MiB 1.24 1178 5318 1175 3841 302 62.5 MiB 0.06 0.00 5.79322 -121.931 -5.79322 5.79322 0.70 0.000712023 0.000646413 0.0269893 0.0249943 44 2837 26 6.79088e+06 202080 787024. 2723.27 2.10 0.182719 0.158711 27118 194962 -1 2408 16 1092 2912 174297 37997 6.04382 6.04382 -138.411 -6.04382 0 0 997811. 3452.63 0.25 0.07 0.17 -1 -1 0.25 0.0268774 0.023814 105 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 7.22 vpr 62.66 MiB 0.04 6632 -1 -1 13 0.20 -1 -1 32768 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.74 1048 13556 4917 6504 2135 62.7 MiB 0.14 0.00 6.24757 -135.485 -6.24757 6.24757 0.69 0.000841286 0.000780145 0.0686005 0.0636322 38 2772 50 6.79088e+06 229024 678818. 2348.85 2.50 0.26958 0.234857 25966 169698 -1 2302 16 1207 3241 170978 39195 6.24757 6.24757 -148.04 -6.24757 0 0 902133. 3121.57 0.25 0.08 0.15 -1 -1 0.25 0.0303741 0.0268871 116 164 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 8.35 vpr 62.95 MiB 0.05 6716 -1 -1 13 0.25 -1 -1 33216 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.3 MiB 1.52 1312 7736 1841 5181 714 63.0 MiB 0.09 0.00 6.07958 -135.388 -6.07958 6.07958 0.70 0.000907349 0.000831682 0.0426362 0.0394617 38 3364 27 6.79088e+06 242496 678818. 2348.85 3.77 0.233262 0.202645 25966 169698 -1 2904 31 1664 4670 381673 139340 6.49108 6.49108 -154.781 -6.49108 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0518376 0.0451168 130 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 7.95 vpr 62.62 MiB 0.05 6812 -1 -1 11 0.19 -1 -1 32968 -1 -1 22 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.2 MiB 1.47 970 13763 4666 6399 2698 62.6 MiB 0.13 0.00 5.69593 -108.04 -5.69593 5.69593 0.69 0.000798164 0.000735427 0.0639542 0.0593011 36 2670 49 6.79088e+06 296384 648988. 2245.63 3.59 0.257051 0.223764 25390 158009 -1 2156 17 982 2901 164876 36449 5.69593 5.69593 -121.9 -5.69593 0 0 828058. 2865.25 0.20 0.07 0.15 -1 -1 0.20 0.029522 0.0260076 115 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 10.03 vpr 63.41 MiB 0.05 6892 -1 -1 14 0.32 -1 -1 33644 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1558 8213 1877 5750 586 63.4 MiB 0.10 0.00 7.15065 -156.51 -7.15065 7.15065 0.70 0.00103362 0.000952635 0.0488425 0.0451322 36 4197 44 6.79088e+06 296384 648988. 2245.63 5.50 0.299374 0.259974 25390 158009 -1 3385 20 1776 5168 292405 64166 7.90244 7.90244 -179.353 -7.90244 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0468599 0.0418825 160 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 7.76 vpr 62.53 MiB 0.04 6636 -1 -1 12 0.16 -1 -1 32700 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.66 1155 7606 2033 5115 458 62.5 MiB 0.08 0.00 5.46189 -119.381 -5.46189 5.46189 0.70 0.000737764 0.000683715 0.0350322 0.0324994 38 2729 30 6.79088e+06 242496 678818. 2348.85 2.39 0.192835 0.16713 25966 169698 -1 2343 14 1006 2443 131204 29565 5.83779 5.83779 -138.097 -5.83779 0 0 902133. 3121.57 0.21 0.06 0.10 -1 -1 0.21 0.0240868 0.0214092 108 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 8.83 vpr 62.96 MiB 0.06 6784 -1 -1 13 0.27 -1 -1 33172 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.3 MiB 1.83 1330 13763 4075 7902 1786 63.0 MiB 0.15 0.00 6.28677 -133.699 -6.28677 6.28677 0.75 0.000908422 0.000842504 0.076575 0.0708226 36 4165 45 6.79088e+06 255968 648988. 2245.63 3.77 0.273125 0.239371 25390 158009 -1 3304 19 1823 5143 372017 77479 6.99593 6.99593 -159.964 -6.99593 0 0 828058. 2865.25 0.24 0.12 0.14 -1 -1 0.24 0.0379976 0.0335434 132 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 9.55 vpr 62.41 MiB 0.04 6680 -1 -1 13 0.19 -1 -1 33000 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 24.0 MiB 1.93 953 13152 4443 6083 2626 62.4 MiB 0.12 0.00 6.20842 -135.02 -6.20842 6.20842 0.69 0.000750872 0.000694373 0.059993 0.055585 36 3272 50 6.79088e+06 215552 648988. 2245.63 4.69 0.245293 0.214332 25390 158009 -1 2448 22 1310 3299 282018 79438 6.99937 6.99937 -165.953 -6.99937 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0329706 0.0289251 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 7.75 vpr 62.88 MiB 0.07 6892 -1 -1 12 0.21 -1 -1 33140 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.84 1050 11963 4064 5699 2200 62.9 MiB 0.13 0.00 5.94653 -127.305 -5.94653 5.94653 0.71 0.000883295 0.000809489 0.0618009 0.0570991 40 2958 23 6.79088e+06 255968 706193. 2443.58 2.85 0.239645 0.208763 26254 175826 -1 2571 26 1409 4336 329758 88083 6.33013 6.33013 -149.23 -6.33013 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0437286 0.0381288 121 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 10.82 vpr 63.42 MiB 0.05 7036 -1 -1 15 0.47 -1 -1 33148 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.9 MiB 1.92 1685 12568 3240 7073 2255 63.4 MiB 0.15 0.00 8.067 -161.456 -8.067 8.067 0.73 0.00113942 0.00105535 0.077834 0.0721204 48 4050 30 6.79088e+06 323328 865456. 2994.66 5.31 0.455881 0.395857 27694 206865 -1 3676 18 1862 5619 368162 78062 8.5605 8.5605 -184.841 -8.5605 0 0 1.05005e+06 3633.38 0.26 0.13 0.18 -1 -1 0.26 0.0439122 0.0388403 176 249 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 6.79 vpr 61.95 MiB 0.04 6424 -1 -1 10 0.10 -1 -1 32336 -1 -1 11 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.3 MiB 1.48 672 9041 3550 3974 1517 61.9 MiB 0.07 0.00 4.44354 -98.5083 -4.44354 4.44354 0.72 0.00055425 0.000515251 0.0350602 0.0326006 36 1954 18 6.79088e+06 148192 648988. 2245.63 2.60 0.181816 0.156423 25390 158009 -1 1530 18 634 1526 82973 19629 4.56884 4.56884 -113.07 -4.56884 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0208519 0.01826 63 82 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.62 vpr 62.54 MiB 0.04 6668 -1 -1 13 0.17 -1 -1 32912 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 1.65 996 10931 3459 5604 1868 62.5 MiB 0.10 0.00 6.07969 -127.643 -6.07969 6.07969 0.70 0.000748683 0.000695235 0.0499355 0.0462497 36 2548 21 6.79088e+06 255968 648988. 2245.63 3.17 0.243865 0.21181 25390 158009 -1 2174 18 966 2361 117649 28977 6.20499 6.20499 -142.021 -6.20499 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0286282 0.0252807 105 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.99 vpr 62.46 MiB 0.04 6528 -1 -1 12 0.20 -1 -1 32708 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.0 MiB 1.83 1061 12156 4313 5619 2224 62.5 MiB 0.12 0.00 6.20144 -135.729 -6.20144 6.20144 0.69 0.000828494 0.000768404 0.0610277 0.056612 46 2933 42 6.79088e+06 229024 828058. 2865.25 4.11 0.321991 0.278751 27406 200422 -1 2330 23 1360 3350 172777 40632 6.67037 6.67037 -156.354 -6.67037 0 0 1.01997e+06 3529.29 0.27 0.09 0.17 -1 -1 0.27 0.0384217 0.0336624 115 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 4.58 vpr 62.15 MiB 0.04 6512 -1 -1 9 0.13 -1 -1 32640 -1 -1 20 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63640 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.7 MiB 1.05 810 9205 3227 4315 1663 62.1 MiB 0.07 0.00 4.29134 -84.3574 -4.29134 4.29134 0.71 0.000604516 0.000561203 0.0365624 0.03396 30 2017 21 6.79088e+06 269440 556674. 1926.21 0.87 0.109279 0.0959172 24526 138013 -1 1649 17 711 1803 86329 20503 4.79254 4.79254 -100.238 -4.79254 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0221452 0.019468 86 103 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 9.11 vpr 63.34 MiB 0.04 6884 -1 -1 12 0.23 -1 -1 32940 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.6 MiB 2.32 1465 12567 3358 7071 2138 63.3 MiB 0.13 0.00 6.50598 -146.734 -6.50598 6.50598 0.77 0.000953265 0.000881739 0.0669387 0.062067 44 3928 50 6.79088e+06 309856 787024. 2723.27 3.65 0.26805 0.23422 27118 194962 -1 3010 17 1487 4004 241731 52633 6.97141 6.97141 -164.49 -6.97141 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0354339 0.0313628 146 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 7.40 vpr 63.30 MiB 0.05 6716 -1 -1 14 0.35 -1 -1 33124 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1211 11617 3125 6074 2418 63.3 MiB 0.13 0.00 7.26825 -144.231 -7.26825 7.26825 0.69 0.000956789 0.000886084 0.0638171 0.0590994 38 3741 49 6.79088e+06 296384 678818. 2348.85 3.07 0.29085 0.252758 25966 169698 -1 2630 16 1344 3864 196246 46473 8.23144 8.23144 -167.896 -8.23144 0 0 902133. 3121.57 0.22 0.09 0.16 -1 -1 0.22 0.0343597 0.0303994 151 202 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 4.96 vpr 63.55 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30836 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.19 1154 19136 5133 11894 2109 63.5 MiB 0.16 0.00 3.40379 -121.869 -3.40379 3.40379 0.70 0.000368692 0.000339818 0.0554576 0.0513203 32 3149 24 6.87369e+06 517032 586450. 2029.24 0.92 0.154586 0.136123 25474 144626 -1 2337 24 2117 3531 256172 63496 3.9507 3.9507 -150.514 -3.9507 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0353479 0.0306202 155 80 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 7.11 vpr 63.43 MiB 0.05 7300 -1 -1 1 0.03 -1 -1 30796 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64948 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.6 MiB 3.27 898 13477 4489 6093 2895 63.4 MiB 0.13 0.00 3.28949 -105.746 -3.28949 3.28949 0.70 0.000758162 0.00070497 0.0574837 0.0534317 28 2852 32 6.87369e+06 321398 531479. 1839.03 1.12 0.158368 0.139786 24610 126494 -1 2239 21 1930 3184 235221 57433 4.2163 4.2163 -147.123 -4.2163 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0300909 0.0261588 141 78 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.41 vpr 63.39 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30600 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.6 MiB 1.67 1120 13788 3768 8666 1354 63.4 MiB 0.13 0.00 3.10276 -112.163 -3.10276 3.10276 0.70 0.00070048 0.000647797 0.0460979 0.0428191 32 3060 31 6.87369e+06 503058 586450. 2029.24 1.02 0.14216 0.125103 25474 144626 -1 2273 25 1759 2842 242562 53549 3.7734 3.7734 -141.816 -3.7734 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0334472 0.0289134 145 50 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.46 vpr 63.16 MiB 0.05 7124 -1 -1 1 0.03 -1 -1 30668 -1 -1 23 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64672 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.21 824 14541 6075 6866 1600 63.2 MiB 0.14 0.00 3.41479 -107.028 -3.41479 3.41479 0.69 0.000682775 0.0006354 0.0564305 0.0525272 34 2403 26 6.87369e+06 321398 618332. 2139.56 1.56 0.193838 0.169782 25762 151098 -1 1861 20 1665 2797 201551 49462 3.966 3.966 -129.326 -3.966 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0261981 0.0227827 136 25 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.15 vpr 63.32 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.59 1097 15709 4359 9936 1414 63.3 MiB 0.16 0.00 3.32249 -121.731 -3.32249 3.32249 0.70 0.000735268 0.000683707 0.0644241 0.059916 34 3217 27 6.87369e+06 293451 618332. 2139.56 1.76 0.212532 0.186377 25762 151098 -1 2585 21 2135 3873 324966 71954 3.8174 3.8174 -153.688 -3.8174 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0293583 0.0255742 147 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.79 vpr 63.44 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30712 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.09 1042 20347 6734 10808 2805 63.4 MiB 0.19 0.00 2.82225 -101.243 -2.82225 2.82225 0.72 0.000766216 0.000711724 0.0674107 0.0623818 30 2386 25 6.87369e+06 544980 556674. 1926.21 0.89 0.160768 0.142443 25186 138497 -1 1801 21 1418 2336 120487 29724 2.83366 2.83366 -117.615 -2.83366 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0301977 0.0262618 154 61 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.96 vpr 62.52 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30792 -1 -1 20 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64016 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.0 MiB 2.00 738 12585 3661 8060 864 62.5 MiB 0.11 0.00 2.9476 -89.3645 -2.9476 2.9476 0.70 0.000533111 0.000494184 0.043883 0.0408742 34 1761 33 6.87369e+06 279477 618332. 2139.56 1.29 0.163638 0.142222 25762 151098 -1 1619 21 1137 1863 128881 30787 3.08856 3.08856 -109.349 -3.08856 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224712 0.0194547 102 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.39 vpr 63.14 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30320 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.83 1005 18323 5874 9822 2627 63.1 MiB 0.16 0.00 2.79225 -94.7428 -2.79225 2.79225 0.70 0.000668953 0.000615108 0.0559709 0.051985 30 2284 19 6.87369e+06 489084 556674. 1926.21 0.84 0.131206 0.116304 25186 138497 -1 1855 20 1132 1883 107673 25305 2.74566 2.74566 -109.299 -2.74566 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0253612 0.0220906 141 -1 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.97 vpr 63.09 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.2 MiB 2.47 878 8867 2122 5923 822 63.1 MiB 0.09 0.00 2.60257 -93.0115 -2.60257 2.60257 0.69 0.000659823 0.000612932 0.036574 0.0340165 32 2247 23 6.87369e+06 223581 586450. 2029.24 0.84 0.115072 0.101047 25474 144626 -1 1877 19 1018 1636 136208 31037 2.82396 2.82396 -113.225 -2.82396 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0245521 0.0213443 103 81 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.50 vpr 62.81 MiB 0.05 6868 -1 -1 1 0.04 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.43 893 12808 4637 6630 1541 62.8 MiB 0.13 0.00 3.0558 -113.308 -3.0558 3.0558 0.70 0.000644275 0.00059951 0.0513025 0.0477423 34 2279 23 6.87369e+06 223581 618332. 2139.56 1.42 0.176549 0.154454 25762 151098 -1 1964 19 1418 2168 168131 37349 3.27981 3.27981 -137.457 -3.27981 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0237131 0.0206567 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.34 vpr 63.04 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 2.83 809 11088 3034 7381 673 63.0 MiB 0.11 0.00 2.9678 -100.962 -2.9678 2.9678 0.70 0.000649361 0.000604053 0.0438052 0.040798 30 1960 24 6.87369e+06 251529 556674. 1926.21 0.83 0.122669 0.108288 25186 138497 -1 1584 22 1292 1951 114183 26971 2.98516 2.98516 -120.054 -2.98516 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0266547 0.0230939 109 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.45 vpr 62.84 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30640 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.2 MiB 1.30 904 16521 5325 8687 2509 62.8 MiB 0.14 0.00 2.78925 -97.7982 -2.78925 2.78925 0.70 0.000657287 0.000611217 0.051765 0.0479737 34 2149 23 6.87369e+06 447163 618332. 2139.56 1.36 0.178641 0.156072 25762 151098 -1 1898 25 1359 2133 169549 38763 2.99326 2.99326 -117.613 -2.99326 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0299102 0.0258566 116 57 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.19 vpr 63.32 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30472 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 4.15 1117 14235 4102 9173 960 63.3 MiB 0.14 0.00 2.94755 -108.52 -2.94755 2.94755 0.70 0.000751838 0.000698791 0.0489394 0.0454053 28 2825 46 6.87369e+06 489084 531479. 1839.03 1.30 0.163564 0.143514 24610 126494 -1 2450 21 1775 3079 235795 53627 3.18556 3.18556 -132.173 -3.18556 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0293677 0.025504 147 55 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 8.68 vpr 63.54 MiB 0.07 6968 -1 -1 1 0.03 -1 -1 30760 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65068 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 2.04 1102 21486 7060 11872 2554 63.5 MiB 0.19 0.00 3.32249 -120.167 -3.32249 3.32249 0.70 0.000774859 0.00071963 0.0733099 0.0679925 32 3210 26 6.87369e+06 517032 586450. 2029.24 3.77 0.316847 0.275878 25474 144626 -1 2453 24 2274 3583 308818 69682 3.9114 3.9114 -152.771 -3.9114 0 0 744469. 2576.02 0.19 0.11 0.13 -1 -1 0.19 0.0342507 0.0297282 155 60 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.19 vpr 62.57 MiB 0.04 6976 -1 -1 1 0.04 -1 -1 30812 -1 -1 19 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 24.0 MiB 1.66 750 13152 4502 6708 1942 62.6 MiB 0.11 0.00 2.8846 -91.7788 -2.8846 2.8846 0.70 0.000573868 0.00053491 0.0457428 0.0426027 32 2171 35 6.87369e+06 265503 586450. 2029.24 0.86 0.124935 0.110061 25474 144626 -1 1723 22 1183 2017 153775 37011 3.29521 3.29521 -110.378 -3.29521 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0243859 0.0211685 102 21 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.90 vpr 63.34 MiB 0.03 7016 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1104 14035 5419 6340 2276 63.3 MiB 0.15 0.00 2.89925 -106.104 -2.89925 2.89925 0.70 0.000761193 0.000707578 0.0599458 0.0557442 34 3227 26 6.87369e+06 293451 618332. 2139.56 1.73 0.212491 0.185971 25762 151098 -1 2595 22 2124 3679 314333 69059 3.46616 3.46616 -137.831 -3.46616 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0314504 0.0273517 145 60 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.77 vpr 63.31 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.12 1042 12716 3225 8592 899 63.3 MiB 0.12 0.00 2.93045 -106.857 -2.93045 2.93045 0.70 0.000740933 0.00068913 0.0417571 0.038762 32 2510 27 6.87369e+06 531006 586450. 2029.24 0.90 0.134112 0.117762 25474 144626 -1 2063 22 1662 2455 183554 41767 2.86466 2.86466 -121.199 -2.86466 0 0 744469. 2576.02 0.19 0.08 0.14 -1 -1 0.19 0.0305699 0.0264918 148 54 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.38 vpr 63.25 MiB 0.06 6892 -1 -1 1 0.03 -1 -1 30304 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.6 MiB 2.19 737 16683 5033 9271 2379 63.3 MiB 0.15 0.00 2.46506 -88.629 -2.46506 2.46506 0.70 0.000673697 0.000626698 0.0554139 0.0515025 34 2068 24 6.87369e+06 405241 618332. 2139.56 1.41 0.187316 0.163962 25762 151098 -1 1576 22 1239 1725 138529 33554 2.43847 2.43847 -104.173 -2.43847 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0275745 0.0238817 117 62 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.80 vpr 62.38 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30308 -1 -1 14 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63880 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.8 MiB 0.49 636 11276 4224 5295 1757 62.4 MiB 0.09 0.00 2.31406 -76.3141 -2.31406 2.31406 0.69 0.000501742 0.000467307 0.0369146 0.0343694 32 1608 19 6.87369e+06 195634 586450. 2029.24 0.77 0.0942019 0.0831535 25474 144626 -1 1334 18 731 1077 100985 22228 2.17017 2.17017 -89.6612 -2.17017 0 0 744469. 2576.02 0.19 0.05 0.13 -1 -1 0.19 0.0178126 0.0154444 73 29 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.66 vpr 62.80 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30640 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.06 830 11776 4241 5226 2309 62.8 MiB 0.11 0.00 3.40515 -106.776 -3.40515 3.40515 0.70 0.000673538 0.000627072 0.0473907 0.0440848 28 2237 26 6.87369e+06 237555 531479. 1839.03 0.96 0.12942 0.114139 24610 126494 -1 2029 23 1258 1868 172516 39375 3.75446 3.75446 -134.427 -3.75446 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0283254 0.0245554 113 55 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 4.56 vpr 63.34 MiB 0.04 6900 -1 -1 1 0.04 -1 -1 30496 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.6 MiB 0.85 988 19820 5893 11008 2919 63.3 MiB 0.17 0.00 3.38299 -114.786 -3.38299 3.38299 0.70 0.000723701 0.00067704 0.0646779 0.0601234 30 2397 23 6.87369e+06 503058 556674. 1926.21 0.89 0.151301 0.134412 25186 138497 -1 1948 18 1287 1902 111463 26868 3.6811 3.6811 -136.278 -3.6811 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0257872 0.0225459 150 31 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 6.97 vpr 63.61 MiB 0.05 7216 -1 -1 1 0.03 -1 -1 30968 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.8 MiB 2.73 908 14012 3432 8685 1895 63.6 MiB 0.14 0.00 3.11996 -103.369 -3.11996 3.11996 0.70 0.000836379 0.000778429 0.0506938 0.047093 30 2730 44 6.87369e+06 558954 556674. 1926.21 1.46 0.177768 0.155518 25186 138497 -1 1885 22 1314 2044 121936 29004 3.5761 3.5761 -127.345 -3.5761 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0342059 0.0296182 154 108 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.00 vpr 62.20 MiB 0.04 6728 -1 -1 1 0.02 -1 -1 30896 -1 -1 16 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63692 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.7 MiB 1.75 578 11544 4134 5945 1465 62.2 MiB 0.08 0.00 2.29206 -65.3809 -2.29206 2.29206 0.70 0.000440443 0.000410001 0.0341593 0.0318117 28 1378 21 6.87369e+06 223581 531479. 1839.03 0.71 0.0857943 0.0758479 24610 126494 -1 1175 20 589 924 64917 15653 1.93052 1.93052 -75.9101 -1.93052 0 0 648988. 2245.63 0.17 0.04 0.11 -1 -1 0.17 0.0170463 0.0147643 69 21 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.05 vpr 63.14 MiB 0.03 7024 -1 -1 1 0.03 -1 -1 30228 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.4 MiB 1.22 1113 14593 4729 7610 2254 63.1 MiB 0.14 0.00 3.28949 -118.069 -3.28949 3.28949 0.70 0.000683263 0.000634942 0.0558727 0.0519715 28 2797 23 6.87369e+06 293451 531479. 1839.03 1.15 0.138434 0.122827 24610 126494 -1 2521 24 2132 3471 271701 61412 4.1493 4.1493 -158.166 -4.1493 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0306237 0.0266126 141 -1 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.64 vpr 62.16 MiB 0.04 6628 -1 -1 1 0.03 -1 -1 30508 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63648 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.39 722 11916 4162 6143 1611 62.2 MiB 0.09 0.00 2.05403 -78.601 -2.05403 2.05403 0.70 0.000465149 0.000432562 0.0361034 0.0335882 28 1564 18 6.87369e+06 167686 531479. 1839.03 0.74 0.0889135 0.078938 24610 126494 -1 1415 16 618 832 71857 16126 2.24247 2.24247 -94.6905 -2.24247 0 0 648988. 2245.63 0.17 0.04 0.11 -1 -1 0.17 0.0153205 0.0134346 71 -1 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.64 vpr 63.36 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30716 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.5 MiB 0.73 956 13324 3127 8393 1804 63.4 MiB 0.12 0.00 3.45399 -118.97 -3.45399 3.45399 0.69 0.000742755 0.000691027 0.0472246 0.0438792 32 3345 32 6.87369e+06 503058 586450. 2029.24 1.18 0.144617 0.127382 25474 144626 -1 2255 25 2037 3026 272019 63685 3.8033 3.8033 -147.757 -3.8033 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0348692 0.0303468 155 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.39 vpr 63.30 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30328 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.79 1099 13324 3300 9172 852 63.3 MiB 0.13 0.00 2.78315 -101.341 -2.78315 2.78315 0.70 0.000840161 0.00078011 0.0435096 0.0403588 32 2916 26 6.87369e+06 503058 586450. 2029.24 0.90 0.129309 0.113947 25474 144626 -1 2160 22 1667 2748 186383 43288 2.71436 2.71436 -117.74 -2.71436 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0287528 0.0249887 151 -1 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.29 vpr 63.30 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30756 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.93 1003 13599 3914 8538 1147 63.3 MiB 0.14 0.00 3.42579 -116.992 -3.42579 3.42579 0.73 0.000768761 0.000714926 0.0457805 0.0425152 32 3628 50 6.87369e+06 544980 586450. 2029.24 1.54 0.170015 0.148903 25474 144626 -1 2450 19 1854 3276 294416 66625 3.8844 3.8844 -147.293 -3.8844 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0282951 0.0246911 156 54 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.89 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.3 MiB 0.87 821 11233 3895 4919 2419 62.9 MiB 0.10 0.00 2.42892 -90.0422 -2.42892 2.42892 0.64 0.000612755 0.000569814 0.0431811 0.0401719 34 2085 22 6.87369e+06 209608 618332. 2139.56 1.33 0.162205 0.141478 25762 151098 -1 1799 19 1097 1745 132537 31633 2.83496 2.83496 -112.219 -2.83496 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228027 0.0198177 104 31 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.54 vpr 62.63 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30296 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64132 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 0.96 748 11432 4615 5530 1287 62.6 MiB 0.11 0.00 3.0418 -102.924 -3.0418 3.0418 0.71 0.000625184 0.000581062 0.0430287 0.0400985 32 2290 26 6.87369e+06 251529 586450. 2029.24 0.91 0.119228 0.10519 25474 144626 -1 1666 18 1262 1820 144385 33686 3.21861 3.21861 -124.318 -3.21861 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0218833 0.0190654 109 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.92 vpr 62.46 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30472 -1 -1 19 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63960 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 0.96 701 13937 4070 8648 1219 62.5 MiB 0.12 0.00 2.72995 -87.9955 -2.72995 2.72995 0.70 0.000583464 0.000543965 0.0498682 0.0464722 34 2006 25 6.87369e+06 265503 618332. 2139.56 1.29 0.16539 0.144743 25762 151098 -1 1605 25 1470 2503 176315 44027 2.94596 2.94596 -108.636 -2.94596 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0266562 0.0230063 104 27 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.25 vpr 62.68 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.13 923 15216 6477 8149 590 62.7 MiB 0.14 0.00 2.77395 -103.937 -2.77395 2.77395 0.70 0.00060978 0.000567407 0.0559896 0.0521776 34 2244 23 6.87369e+06 223581 618332. 2139.56 1.39 0.175685 0.154297 25762 151098 -1 1907 22 1615 2652 198614 45300 2.95696 2.95696 -122.187 -2.95696 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0253155 0.0219699 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.35 vpr 62.74 MiB 0.05 6976 -1 -1 1 0.05 -1 -1 30428 -1 -1 32 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.3 MiB 0.72 757 10895 2701 7333 861 62.7 MiB 0.11 0.00 2.75195 -93.4764 -2.75195 2.75195 0.70 0.000625919 0.000583536 0.0335146 0.0311323 28 2158 25 6.87369e+06 447163 531479. 1839.03 0.96 0.109907 0.0963876 24610 126494 -1 1930 22 1461 2433 183904 43240 2.93196 2.93196 -119.49 -2.93196 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0256149 0.0221596 119 26 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.41 vpr 63.13 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30396 -1 -1 32 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.2 MiB 2.54 713 7653 1712 5343 598 63.1 MiB 0.08 0.00 2.28471 -74.2789 -2.28471 2.28471 0.71 0.000623733 0.000580521 0.0253238 0.0234812 34 1671 19 6.87369e+06 447163 618332. 2139.56 1.22 0.142595 0.123155 25762 151098 -1 1445 17 1097 1823 103820 25925 2.11082 2.11082 -87.9591 -2.11082 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0209378 0.0182035 113 55 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 7.95 vpr 63.66 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30692 -1 -1 44 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.59 1264 20925 5923 12168 2834 63.7 MiB 0.20 0.00 3.42579 -121.507 -3.42579 3.42579 0.70 0.000827037 0.000769123 0.0699998 0.0650722 28 3322 26 6.87369e+06 614849 531479. 1839.03 1.53 0.173349 0.153681 24610 126494 -1 2724 20 1936 3445 229269 55359 4.3856 4.3856 -159.829 -4.3856 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0313728 0.0273177 184 26 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.33 vpr 63.37 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30660 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 2.70 987 16732 4883 9735 2114 63.4 MiB 0.17 0.00 2.91945 -104.64 -2.91945 2.91945 0.70 0.000774822 0.00071653 0.0560342 0.0520008 30 2376 22 6.87369e+06 544980 556674. 1926.21 0.88 0.146633 0.129844 25186 138497 -1 1845 20 1632 2578 146439 34321 2.73636 2.73636 -118.743 -2.73636 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.029268 0.0254685 154 62 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 6.64 vpr 63.14 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30632 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.5 MiB 3.14 914 16921 5281 9385 2255 63.1 MiB 0.14 0.00 2.78925 -98.2919 -2.78925 2.78925 0.70 0.000672637 0.000624487 0.0559383 0.0519376 30 2146 19 6.87369e+06 433189 556674. 1926.21 0.82 0.131725 0.116598 25186 138497 -1 1756 18 951 1596 97159 22823 2.69236 2.69236 -113.473 -2.69236 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0235636 0.0204924 116 77 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 5.49 vpr 63.29 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30576 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.80 1098 10501 2878 6897 726 63.3 MiB 0.12 0.00 2.78315 -100.719 -2.78315 2.78315 0.74 0.000750472 0.000697269 0.0447162 0.0415651 30 2645 21 6.87369e+06 307425 556674. 1926.21 0.96 0.13292 0.116933 25186 138497 -1 2115 20 1467 2460 138677 33120 2.95696 2.95696 -123.406 -2.95696 0 0 706193. 2443.58 0.18 0.04 0.14 -1 -1 0.18 0.0155454 0.0137588 141 59 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.29 vpr 63.54 MiB 0.06 7260 -1 -1 1 0.04 -1 -1 30736 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.61 1013 14965 4406 8574 1985 63.5 MiB 0.16 0.00 3.93354 -120.17 -3.93354 3.93354 0.70 0.000834181 0.000774545 0.0699342 0.0649694 34 2656 23 6.87369e+06 307425 618332. 2139.56 1.83 0.231604 0.202451 25762 151098 -1 2224 20 1440 2440 225422 48129 3.97905 3.97905 -146.671 -3.97905 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.031544 0.0273619 145 111 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.96 vpr 63.29 MiB 0.06 7268 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.73 976 13291 3888 8516 887 63.3 MiB 0.14 0.00 3.73124 -112.462 -3.73124 3.73124 0.70 0.000768141 0.000714064 0.05738 0.0533246 34 2646 22 6.87369e+06 307425 618332. 2139.56 1.47 0.20531 0.179518 25762 151098 -1 2059 19 1543 2460 193183 44597 3.82995 3.82995 -140.719 -3.82995 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0281908 0.0245463 141 86 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.11 vpr 63.30 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30424 -1 -1 36 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 2.34 945 10815 2405 7783 627 63.3 MiB 0.12 0.00 2.83325 -97.8513 -2.83325 2.83325 0.70 0.000757065 0.000696791 0.0380667 0.0352163 28 2719 34 6.87369e+06 503058 531479. 1839.03 1.09 0.14003 0.122548 24610 126494 -1 2417 23 1944 3344 252452 60954 3.37216 3.37216 -132.646 -3.37216 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0317365 0.0275316 148 58 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 6.16 vpr 63.60 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30672 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.8 MiB 1.63 1095 14144 4093 9120 931 63.6 MiB 0.14 0.00 3.40379 -121.579 -3.40379 3.40379 0.70 0.000765214 0.000710699 0.0480277 0.0445666 28 2936 41 6.87369e+06 531006 531479. 1839.03 1.82 0.160838 0.141078 24610 126494 -1 2640 24 2161 3577 357147 74819 4.143 4.143 -155.46 -4.143 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0332816 0.0288171 156 42 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.85 vpr 63.57 MiB 0.06 7304 -1 -1 1 0.03 -1 -1 30832 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.0 MiB 2.98 1409 16356 4170 10517 1669 63.6 MiB 0.17 0.00 3.57129 -124.235 -3.57129 3.57129 0.70 0.00091217 0.000846202 0.0627301 0.0582027 32 3618 26 6.87369e+06 586901 586450. 2029.24 0.99 0.176443 0.155272 25474 144626 -1 2829 19 2191 3601 292533 66277 3.9456 3.9456 -151.849 -3.9456 0 0 744469. 2576.02 0.19 0.11 0.13 -1 -1 0.19 0.0332216 0.0289147 186 91 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.43 vpr 62.65 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30760 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 1.80 929 13668 4908 6925 1835 62.7 MiB 0.13 0.00 3.0136 -109.099 -3.0136 3.0136 0.72 0.000630605 0.000586727 0.0520217 0.0484204 32 2402 26 6.87369e+06 237555 586450. 2029.24 0.89 0.129992 0.115073 25474 144626 -1 1961 20 1375 2141 163902 37470 3.11231 3.11231 -127.469 -3.11231 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0240414 0.0208841 112 24 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.90 vpr 63.43 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30504 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64952 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.43 983 21212 6553 11753 2906 63.4 MiB 0.20 0.00 3.37079 -114.461 -3.37079 3.37079 0.70 0.00075876 0.000704863 0.0717402 0.066628 34 2741 22 6.87369e+06 517032 618332. 2139.56 1.71 0.21691 0.190615 25762 151098 -1 2214 23 1940 3007 230195 53484 3.8814 3.8814 -141.957 -3.8814 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.031994 0.0277794 152 59 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 7.33 vpr 63.42 MiB 0.02 7140 -1 -1 1 0.05 -1 -1 30864 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.77 1144 14007 4025 9052 930 63.4 MiB 0.14 0.00 2.84425 -105.01 -2.84425 2.84425 0.73 0.000762905 0.000710075 0.0489754 0.0454951 34 2935 23 6.87369e+06 489084 618332. 2139.56 2.92 0.24332 0.211079 25762 151098 -1 2443 25 1998 3556 267744 61427 3.09326 3.09326 -128.029 -3.09326 0 0 787024. 2723.27 0.19 0.06 0.09 -1 -1 0.19 0.0180626 0.0157815 150 54 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.59 vpr 63.25 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30752 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.40 907 14407 3742 8743 1922 63.2 MiB 0.13 0.00 3.32249 -116.136 -3.32249 3.32249 0.70 0.000707926 0.000658097 0.0570844 0.0531442 34 2970 28 6.87369e+06 293451 618332. 2139.56 2.44 0.200981 0.175951 25762 151098 -1 2269 21 1988 3526 276987 67545 4.1413 4.1413 -153.583 -4.1413 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.028264 0.0246147 147 -1 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.46 MiB 0.05 7244 -1 -1 1 0.03 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.49 1074 20980 6833 11559 2588 63.5 MiB 0.19 0.00 2.77395 -102.786 -2.77395 2.77395 0.70 0.00077879 0.000724305 0.0730006 0.0677563 34 2465 23 6.87369e+06 503058 618332. 2139.56 1.45 0.224309 0.197 25762 151098 -1 2052 25 1815 2773 189223 44836 2.86166 2.86166 -120.269 -2.86166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0351339 0.0304163 148 81 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.00 vpr 63.31 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.41 988 9984 2204 6674 1106 63.3 MiB 0.11 0.00 2.84425 -100.846 -2.84425 2.84425 0.70 0.000760421 0.000706139 0.0339383 0.0314933 30 2404 24 6.87369e+06 544980 556674. 1926.21 0.89 0.125125 0.109486 25186 138497 -1 1903 16 1189 2124 99680 25706 2.96826 2.96826 -119.745 -2.96826 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0243349 0.0212607 152 58 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.47 vpr 63.49 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.66 1087 19624 5642 11815 2167 63.5 MiB 0.18 0.00 2.85525 -104.284 -2.85525 2.85525 0.70 0.000774579 0.00071733 0.0653725 0.0604763 32 2947 31 6.87369e+06 558954 586450. 2029.24 0.99 0.166094 0.14679 25474 144626 -1 2363 22 1944 3165 280289 62118 2.98226 2.98226 -126.223 -2.98226 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0374499 0.0326585 156 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.84 vpr 63.29 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30728 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.79 1123 17214 5291 10264 1659 63.3 MiB 0.16 0.00 3.44779 -122.508 -3.44779 3.44779 0.70 0.000744739 0.00069282 0.0551154 0.0512604 28 2899 27 6.87369e+06 544980 531479. 1839.03 1.28 0.148661 0.131574 24610 126494 -1 2501 22 2096 3290 283698 62051 4.2243 4.2243 -156.545 -4.2243 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.030359 0.0264064 156 21 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.47 vpr 63.46 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30832 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.5 MiB 2.61 1077 15913 4114 10237 1562 63.5 MiB 0.15 0.00 3.40379 -121.915 -3.40379 3.40379 0.70 0.000773043 0.000717555 0.0517896 0.0480129 32 2987 33 6.87369e+06 572927 586450. 2029.24 1.06 0.155235 0.13664 25474 144626 -1 2435 23 2086 3374 280289 61997 3.9507 3.9507 -150.984 -3.9507 0 0 744469. 2576.02 0.21 0.11 0.13 -1 -1 0.21 0.0327399 0.0284289 157 50 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.63 vpr 63.49 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30604 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 24.7 MiB 3.70 1055 12860 3360 8578 922 63.5 MiB 0.13 0.00 3.25649 -111.552 -3.25649 3.25649 0.70 0.000818679 0.000761679 0.0480449 0.0445882 28 2899 28 6.87369e+06 517032 531479. 1839.03 1.17 0.151457 0.132838 24610 126494 -1 2568 23 1900 3335 267692 60629 4.1823 4.1823 -149.269 -4.1823 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0340941 0.0294278 150 110 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.20 vpr 63.54 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 30736 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.69 1090 15709 4767 9147 1795 63.5 MiB 0.17 0.00 3.25649 -117.299 -3.25649 3.25649 0.69 0.000802758 0.000746293 0.0700036 0.0650799 34 3245 28 6.87369e+06 293451 618332. 2139.56 1.66 0.231985 0.20316 25762 151098 -1 2517 23 2087 3838 291799 67941 3.9317 3.9317 -146.733 -3.9317 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0342687 0.0297333 145 86 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.07 vpr 62.79 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30720 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.2 MiB 0.83 922 13455 3976 8502 977 62.8 MiB 0.12 0.00 2.84425 -105.64 -2.84425 2.84425 0.70 0.000638763 0.000593314 0.0418643 0.0388242 26 2427 30 6.87369e+06 447163 503264. 1741.40 1.58 0.12604 0.110861 24322 120374 -1 2242 25 1619 2548 268173 59570 3.36116 3.36116 -133.148 -3.36116 0 0 618332. 2139.56 0.16 0.10 0.11 -1 -1 0.16 0.0289752 0.0250812 121 20 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 8.15 vpr 63.17 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.2 MiB 2.81 912 14184 3871 9141 1172 63.2 MiB 0.14 0.00 2.9366 -107.369 -2.9366 2.9366 0.70 0.00070076 0.000650382 0.0599657 0.0557131 34 2327 18 6.87369e+06 223581 618332. 2139.56 2.62 0.233542 0.203372 25762 151098 -1 2083 20 1379 2215 175826 39960 3.12156 3.12156 -128.322 -3.12156 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0268939 0.0233573 112 91 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 6.75 vpr 63.45 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 30968 -1 -1 44 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 25.2 MiB 1.87 1358 15271 3964 10217 1090 63.4 MiB 0.17 0.00 4.00554 -140.249 -4.00554 4.00554 0.70 0.000879776 0.000818639 0.0549503 0.051042 28 3511 24 6.87369e+06 614849 531479. 1839.03 2.09 0.162814 0.143542 24610 126494 -1 2881 23 2710 4669 347859 79514 4.91215 4.91215 -180.649 -4.91215 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0372622 0.0323213 189 53 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.83 vpr 63.40 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30580 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 2.45 906 11043 2840 6812 1391 63.4 MiB 0.12 0.00 2.88645 -99.0315 -2.88645 2.88645 0.70 0.000730784 0.000677707 0.0384326 0.0356504 34 2328 26 6.87369e+06 489084 618332. 2139.56 2.65 0.252671 0.21824 25762 151098 -1 1757 21 1421 2200 123798 33422 2.86466 2.86466 -116.016 -2.86466 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0290782 0.0253374 150 31 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 6.00 vpr 63.07 MiB 0.05 6904 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.64 753 16263 5676 8027 2560 63.1 MiB 0.14 0.00 2.84425 -94.6902 -2.84425 2.84425 0.70 0.000615889 0.000572234 0.049584 0.0460397 34 1894 34 6.87369e+06 433189 618332. 2139.56 2.66 0.214312 0.185896 25762 151098 -1 1566 24 1346 2045 146733 34546 3.09326 3.09326 -115.117 -3.09326 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0271611 0.0235119 116 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 10.54 vpr 63.56 MiB 0.05 7324 -1 -1 1 0.03 -1 -1 31116 -1 -1 47 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 5.28 1288 22189 6624 12465 3100 63.6 MiB 0.22 0.00 3.99454 -136.751 -3.99454 3.99454 0.70 0.000942396 0.000875935 0.082073 0.0762282 34 3237 34 6.87369e+06 656770 618332. 2139.56 2.29 0.282947 0.247585 25762 151098 -1 2538 24 2663 4284 318553 75651 4.78985 4.78985 -174.717 -4.78985 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0411769 0.0355908 190 109 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 7.05 vpr 63.48 MiB 0.07 7016 -1 -1 1 0.04 -1 -1 30672 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.6 MiB 2.87 1005 20112 5924 11488 2700 63.5 MiB 0.18 0.00 3.47899 -122.797 -3.47899 3.47899 0.69 0.000740258 0.00068871 0.0633591 0.0589071 32 2754 26 6.87369e+06 558954 586450. 2029.24 1.35 0.18095 0.159644 25474 144626 -1 2217 24 2005 2986 257366 56478 3.9064 3.9064 -151.976 -3.9064 0 0 744469. 2576.02 0.21 0.10 0.13 -1 -1 0.21 0.0329607 0.028642 156 31 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.17 vpr 62.76 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 0.59 932 16525 5186 8718 2621 62.8 MiB 0.14 0.00 2.77395 -101.909 -2.77395 2.77395 0.70 0.0006153 0.000572674 0.0473126 0.0439759 30 2168 38 6.87369e+06 461137 556674. 1926.21 0.89 0.134498 0.118571 25186 138497 -1 1808 19 1219 1956 123533 28468 2.72836 2.72836 -117.731 -2.72836 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0224176 0.0195133 123 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.47 vpr 63.64 MiB 0.05 7132 -1 -1 1 0.03 -1 -1 31148 -1 -1 45 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.9 MiB 2.37 1200 15189 4121 9721 1347 63.6 MiB 0.16 0.00 3.95234 -135.161 -3.95234 3.95234 0.70 0.00084739 0.000788891 0.0526917 0.0490211 34 3191 24 6.87369e+06 628823 618332. 2139.56 2.18 0.220235 0.192039 25762 151098 -1 2630 22 2560 4288 322579 73654 4.96415 4.96415 -180.679 -4.96415 0 0 787024. 2723.27 0.22 0.12 0.13 -1 -1 0.22 0.0350961 0.0305143 189 26 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.04 vpr 62.58 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30664 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 922 13668 4604 7236 1828 62.6 MiB 0.13 0.00 3.0246 -113.373 -3.0246 3.0246 0.70 0.000608168 0.000565461 0.0501581 0.0467042 34 2333 23 6.87369e+06 223581 618332. 2139.56 1.51 0.169293 0.148253 25762 151098 -1 1974 16 1366 2203 170182 37981 3.01826 3.01826 -129.058 -3.01826 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.020001 0.0174857 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.54 vpr 63.02 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30596 -1 -1 33 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64532 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.1 MiB 2.08 873 17159 5289 9369 2501 63.0 MiB 0.16 0.00 2.84425 -97.4511 -2.84425 2.84425 0.66 0.000616209 0.000571759 0.0568398 0.0527856 28 2086 24 6.87369e+06 461137 531479. 1839.03 0.91 0.131113 0.116207 24610 126494 -1 1832 22 1391 2277 164677 37846 3.20756 3.20756 -121.167 -3.20756 0 0 648988. 2245.63 0.17 0.07 0.11 -1 -1 0.17 0.0252912 0.0218903 118 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 6.83 vpr 63.36 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30412 -1 -1 35 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.02 823 10827 2627 7276 924 63.4 MiB 0.11 0.00 2.86625 -89.4747 -2.86625 2.86625 0.70 0.000737433 0.000685316 0.0385719 0.0357858 28 2340 26 6.87369e+06 489084 531479. 1839.03 1.10 0.129196 0.11327 24610 126494 -1 2193 24 1863 3282 280804 68253 3.07126 3.07126 -116.542 -3.07126 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0324687 0.0281242 141 81 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.31 vpr 63.46 MiB 0.05 7060 -1 -1 1 0.05 -1 -1 30764 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 1.97 850 10315 2292 7470 553 63.5 MiB 0.12 0.00 3.36169 -116.932 -3.36169 3.36169 0.70 0.000764621 0.000710394 0.044941 0.0417974 34 2599 25 6.87369e+06 293451 618332. 2139.56 1.53 0.196399 0.170995 25762 151098 -1 2101 26 2331 3527 257639 62165 4.1712 4.1712 -159.787 -4.1712 0 0 787024. 2723.27 0.20 0.11 0.15 -1 -1 0.20 0.0366313 0.0317982 147 53 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.55 vpr 63.49 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30788 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.58 1085 17256 4389 10954 1913 63.5 MiB 0.12 0.00 3.40379 -123.373 -3.40379 3.40379 0.71 0.000783786 0.000728806 0.0327894 0.0301549 32 3133 38 6.87369e+06 517032 586450. 2029.24 1.15 0.143031 0.124817 25474 144626 -1 2383 23 2136 3628 317877 69493 4.0317 4.0317 -151.405 -4.0317 0 0 744469. 2576.02 0.19 0.11 0.13 -1 -1 0.19 0.0327315 0.0283908 155 55 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.63 vpr 63.21 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30696 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.5 MiB 2.82 901 18745 6241 10231 2273 63.2 MiB 0.16 0.00 2.83325 -103.4 -2.83325 2.83325 0.70 0.000676123 0.000629001 0.0592813 0.0550611 32 2375 40 6.87369e+06 461137 586450. 2029.24 1.08 0.157899 0.139343 25474 144626 -1 1857 21 1471 2291 206071 45458 2.86166 2.86166 -122.132 -2.86166 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0266332 0.0230948 123 55 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.56 vpr 63.21 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30568 -1 -1 18 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.3 MiB 3.48 818 11106 3048 7274 784 63.2 MiB 0.11 0.00 2.9476 -102.942 -2.9476 2.9476 0.69 0.000675116 0.000627374 0.0448928 0.0417142 34 2083 18 6.87369e+06 251529 618332. 2139.56 1.41 0.171347 0.149355 25762 151098 -1 1888 18 1140 1992 147769 34732 3.04631 3.04631 -121.905 -3.04631 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241759 0.0210895 108 82 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 8.27 vpr 63.39 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 34 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64912 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.6 MiB 2.76 1012 12360 3250 8182 928 63.4 MiB 0.12 0.00 2.75195 -96.1074 -2.75195 2.75195 0.70 0.000720481 0.000670561 0.0429652 0.0398871 26 2684 30 6.87369e+06 475111 503264. 1741.40 2.76 0.221607 0.192449 24322 120374 -1 2378 22 1572 2693 229121 51393 3.07126 3.07126 -122.77 -3.07126 0 0 618332. 2139.56 0.16 0.09 0.11 -1 -1 0.16 0.029586 0.0256462 143 52 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.85 vpr 63.24 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 35 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64756 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.5 MiB 1.47 1073 13055 3447 8098 1510 63.2 MiB 0.12 0.00 3.47409 -108.324 -3.47409 3.47409 0.70 0.000662636 0.000616565 0.0421864 0.0392108 26 2644 41 6.87369e+06 489084 503264. 1741.40 2.70 0.212229 0.184091 24322 120374 -1 2314 21 1639 2747 239524 52390 4.2243 4.2243 -140.603 -4.2243 0 0 618332. 2139.56 0.16 0.09 0.11 -1 -1 0.16 0.0262189 0.0227233 139 20 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.02 vpr 63.13 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64648 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.2 MiB 2.24 696 10228 4291 5125 812 63.1 MiB 0.09 0.00 3.1059 -100.619 -3.1059 3.1059 0.70 0.000643887 0.000597895 0.0402784 0.0374617 30 2027 24 6.87369e+06 251529 556674. 1926.21 1.15 0.118491 0.104193 25186 138497 -1 1529 23 1390 2235 157083 43944 3.19661 3.19661 -117.103 -3.19661 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0276314 0.0239169 110 58 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.02 vpr 62.97 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30484 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.1 MiB 2.95 976 14956 4864 8603 1489 63.0 MiB 0.14 0.00 2.8626 -100.959 -2.8626 2.8626 0.72 0.000691442 0.000641826 0.0612034 0.0568823 34 2336 21 6.87369e+06 237555 618332. 2139.56 1.41 0.193607 0.169728 25762 151098 -1 2067 19 1152 1907 171320 37144 2.81601 2.81601 -118.823 -2.81601 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0253292 0.0219851 110 88 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.91 vpr 63.06 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.79 1186 14948 3587 9414 1947 63.1 MiB 0.14 0.00 3.40379 -118.304 -3.40379 3.40379 0.71 0.000685038 0.000637591 0.0463989 0.0431813 32 3152 24 6.87369e+06 517032 586450. 2029.24 1.37 0.152999 0.134412 25474 144626 -1 2520 24 1946 3218 286772 61038 3.8704 3.8704 -146.438 -3.8704 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0304463 0.026449 151 -1 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 7.99 vpr 63.41 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30912 -1 -1 38 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.5 MiB 3.67 974 13192 3365 8245 1582 63.4 MiB 0.14 0.00 3.39279 -117.077 -3.39279 3.39279 0.70 0.000775432 0.000718639 0.0461391 0.0427557 32 3403 26 6.87369e+06 531006 586450. 2029.24 1.52 0.170373 0.149124 25474 144626 -1 2544 24 2178 3882 357526 81134 3.8924 3.8924 -149.936 -3.8924 0 0 744469. 2576.02 0.19 0.12 0.14 -1 -1 0.19 0.0343599 0.0295858 156 57 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.48 vpr 63.35 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30532 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.42 1137 15846 4309 9710 1827 63.3 MiB 0.16 0.00 3.32249 -120.919 -3.32249 3.32249 0.69 0.000772338 0.000717 0.0548533 0.0509195 32 3489 35 6.87369e+06 517032 586450. 2029.24 1.28 0.160594 0.141524 25474 144626 -1 2605 25 2356 3955 384564 84489 3.9427 3.9427 -156.046 -3.9427 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0353064 0.0306159 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 7.12 vpr 63.36 MiB 0.05 6952 -1 -1 1 0.04 -1 -1 30680 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.7 MiB 2.79 1132 20829 6091 12282 2456 63.4 MiB 0.19 0.00 3.27849 -114.846 -3.27849 3.27849 0.70 0.000759742 0.000705043 0.0682816 0.0633628 28 2950 49 6.87369e+06 544980 531479. 1839.03 1.55 0.188431 0.166115 24610 126494 -1 2542 23 1970 3436 276364 62524 4.5832 4.5832 -152.927 -4.5832 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0326753 0.0284312 152 62 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.87 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30628 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.28 833 14956 4735 8443 1778 62.7 MiB 0.14 0.00 2.9806 -102.791 -2.9806 2.9806 0.72 0.000624178 0.000580852 0.0543382 0.05058 32 2399 23 6.87369e+06 265503 586450. 2029.24 0.88 0.126431 0.112157 25474 144626 -1 1991 21 1351 2214 195131 43586 3.18556 3.18556 -125.765 -3.18556 0 0 744469. 2576.02 0.19 0.08 0.15 -1 -1 0.19 0.0247023 0.0214364 110 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 7.21 vpr 63.58 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30668 -1 -1 23 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65108 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.8 MiB 2.95 1004 16081 5076 9146 1859 63.6 MiB 0.16 0.00 3.36289 -114.657 -3.36289 3.36289 0.71 0.000746604 0.000693348 0.0660966 0.0614101 34 2393 36 6.87369e+06 321398 618332. 2139.56 1.49 0.22397 0.196075 25762 151098 -1 1949 20 1756 2688 199119 44379 3.6873 3.6873 -139.446 -3.6873 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0279879 0.02431 140 58 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 10.65 vpr 63.64 MiB 0.05 7316 -1 -1 1 0.03 -1 -1 31020 -1 -1 43 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.9 MiB 4.75 1196 13516 3591 8696 1229 63.6 MiB 0.13 0.00 3.38179 -119.932 -3.38179 3.38179 0.73 0.000853912 0.000793969 0.0479931 0.044562 34 2890 23 6.87369e+06 600875 618332. 2139.56 3.03 0.258591 0.223524 25762 151098 -1 2341 22 1818 3147 235782 53351 3.8814 3.8814 -146.202 -3.8814 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0342165 0.0295146 158 106 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.78 vpr 63.48 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30632 -1 -1 33 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1081 13236 3366 8464 1406 63.5 MiB 0.14 0.00 3.39279 -116.856 -3.39279 3.39279 0.70 0.000779836 0.000725825 0.0493624 0.0458696 32 2977 40 6.87369e+06 461137 586450. 2029.24 1.01 0.161684 0.141928 25474 144626 -1 2300 25 2313 3851 301988 68124 3.8397 3.8397 -143.761 -3.8397 0 0 744469. 2576.02 0.19 0.11 0.13 -1 -1 0.19 0.0355371 0.030814 149 79 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.28 vpr 63.31 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30620 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64828 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 2.05 946 17347 4997 9339 3011 63.3 MiB 0.17 0.00 2.84425 -94.1254 -2.84425 2.84425 0.70 0.000750252 0.000697324 0.0637826 0.0591848 34 2648 22 6.87369e+06 447163 618332. 2139.56 1.48 0.209822 0.183741 25762 151098 -1 2055 21 1813 2892 211572 50323 2.97426 2.97426 -114.46 -2.97426 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297537 0.0258529 141 83 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.76 vpr 63.37 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30824 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 4.08 1042 9757 2795 6300 662 63.4 MiB 0.12 0.00 3.32249 -119.056 -3.32249 3.32249 0.70 0.000770438 0.000715681 0.0438886 0.0407997 34 3174 39 6.87369e+06 293451 618332. 2139.56 1.88 0.212056 0.184311 25762 151098 -1 2639 24 2392 4184 353000 79796 4.0037 4.0037 -158.549 -4.0037 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0338367 0.0293639 147 58 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.55 vpr 63.15 MiB 0.04 7208 -1 -1 1 0.03 -1 -1 30460 -1 -1 36 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.4 MiB 2.01 925 12307 3344 8097 866 63.2 MiB 0.12 0.00 2.83325 -92.0544 -2.83325 2.83325 0.70 0.000726517 0.000675684 0.0426734 0.0395497 26 2506 20 6.87369e+06 503058 503264. 1741.40 0.89 0.12539 0.110297 24322 120374 -1 2289 21 1734 2863 257541 58345 3.18076 3.18076 -115.562 -3.18076 0 0 618332. 2139.56 0.16 0.05 0.12 -1 -1 0.16 0.0156233 0.013751 138 81 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.68 vpr 62.75 MiB 0.05 6776 -1 -1 1 0.03 -1 -1 30456 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.58 863 11604 3100 7674 830 62.8 MiB 0.11 0.00 2.9586 -108.713 -2.9586 2.9586 0.70 0.000613735 0.000572181 0.043077 0.0401368 34 2357 23 6.87369e+06 223581 618332. 2139.56 1.38 0.160609 0.140328 25762 151098 -1 1962 22 1473 2220 174109 40844 3.17461 3.17461 -132.992 -3.17461 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0253361 0.0220081 114 -1 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 7.99 vpr 63.41 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30624 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.7 MiB 4.14 1037 14436 3761 9923 752 63.4 MiB 0.14 0.00 3.41479 -121.507 -3.41479 3.41479 0.70 0.000781434 0.000727412 0.0513791 0.0476388 30 2825 23 6.87369e+06 517032 556674. 1926.21 1.10 0.144124 0.12716 25186 138497 -1 2166 23 1781 2843 185706 42410 3.6701 3.6701 -144.481 -3.6701 0 0 706193. 2443.58 0.18 0.09 0.12 -1 -1 0.18 0.0337057 0.0293261 155 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.24 vpr 63.37 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30516 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 3.70 1118 15151 4982 8461 1708 63.4 MiB 0.16 0.00 3.36169 -123.823 -3.36169 3.36169 0.70 0.000771144 0.000716614 0.0654214 0.0608046 34 2973 36 6.87369e+06 293451 618332. 2139.56 1.62 0.230418 0.201771 25762 151098 -1 2467 22 2227 3572 263121 60018 4.11 4.11 -159.819 -4.11 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0318811 0.0277372 147 62 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 6.82 vpr 63.16 MiB 0.05 6892 -1 -1 1 0.03 -1 -1 30576 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.4 MiB 3.29 861 16708 5672 8044 2992 63.2 MiB 0.15 0.00 2.71895 -93.3094 -2.71895 2.71895 0.70 0.00063845 0.000592913 0.0551144 0.0511719 30 2153 21 6.87369e+06 419215 556674. 1926.21 0.85 0.128981 0.114317 25186 138497 -1 1659 24 1058 1812 106930 25415 2.90996 2.90996 -108.602 -2.90996 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0276089 0.0238774 112 47 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.31 vpr 62.55 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30592 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.85 635 6616 1513 4390 713 62.6 MiB 0.07 0.00 3.1169 -104.319 -3.1169 3.1169 0.70 0.000595242 0.000554521 0.0247448 0.023063 32 2351 24 6.87369e+06 237555 586450. 2029.24 0.88 0.0971546 0.0849786 25474 144626 -1 1767 22 1509 2421 197902 47107 3.21561 3.21561 -126.244 -3.21561 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0248503 0.0215431 112 -1 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.30 vpr 63.34 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30436 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 2.66 1099 18111 4857 10932 2322 63.3 MiB 0.16 0.00 3.28769 -114.366 -3.28769 3.28769 0.69 0.000740541 0.000689228 0.0611549 0.0568203 32 2583 25 6.87369e+06 489084 586450. 2029.24 0.87 0.151149 0.133962 25474 144626 -1 2164 21 1619 2421 183083 41912 3.7041 3.7041 -138.662 -3.7041 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0289107 0.0251065 144 56 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 4.98 vpr 63.32 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30456 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1093 12973 3522 8653 798 63.3 MiB 0.13 0.00 3.31562 -113.632 -3.31562 3.31562 0.69 0.000762449 0.000708291 0.0469037 0.0435305 28 2717 24 6.87369e+06 461137 531479. 1839.03 1.19 0.138442 0.121906 24610 126494 -1 2408 23 1670 2702 221808 48787 3.87196 3.87196 -143.919 -3.87196 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.0323129 0.0279774 142 81 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.35 vpr 63.45 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30640 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1256 14678 3781 9107 1790 63.5 MiB 0.15 0.00 3.98354 -133.533 -3.98354 3.98354 0.77 0.000788403 0.000733384 0.0493553 0.0458474 34 3394 45 6.87369e+06 572927 618332. 2139.56 2.55 0.231514 0.201801 25762 151098 -1 2548 22 2061 3464 282502 62879 4.43015 4.43015 -162.278 -4.43015 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0327975 0.0285996 183 -1 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.50 vpr 63.09 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30664 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64608 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.3 MiB 2.41 989 11383 2876 6987 1520 63.1 MiB 0.12 0.00 2.85525 -98.377 -2.85525 2.85525 0.70 0.000721196 0.000668774 0.0408008 0.0377519 34 2362 23 6.87369e+06 447163 618332. 2139.56 1.38 0.179299 0.155786 25762 151098 -1 2013 21 1804 2958 197582 48155 3.06356 3.06356 -117.791 -3.06356 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0309191 0.0269255 141 47 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.15 vpr 62.54 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30896 -1 -1 20 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.69 802 12585 5037 6178 1370 62.5 MiB 0.10 0.00 2.9348 -90.1886 -2.9348 2.9348 0.70 0.000576011 0.000530807 0.0442692 0.0412158 32 1846 26 6.87369e+06 279477 586450. 2029.24 0.82 0.114823 0.101359 25474 144626 -1 1558 19 1025 1514 109122 26165 3.08856 3.08856 -105.251 -3.08856 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0209338 0.018149 102 26 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.21 vpr 63.59 MiB 0.05 7360 -1 -1 1 0.03 -1 -1 30824 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.2 MiB 2.36 1460 13606 3334 9470 802 63.6 MiB 0.16 0.00 3.31149 -117.473 -3.31149 3.31149 0.71 0.000906714 0.000843665 0.0535831 0.049818 34 3825 23 6.87369e+06 586901 618332. 2139.56 3.96 0.326161 0.28173 25762 151098 -1 3045 21 2416 4275 318446 72493 3.9957 3.9957 -147.469 -3.9957 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.035493 0.0307975 184 85 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.98 vpr 63.49 MiB 0.05 7256 -1 -1 1 0.03 -1 -1 30776 -1 -1 23 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.6 MiB 3.09 867 13127 3132 8828 1167 63.5 MiB 0.14 0.00 3.97274 -121.868 -3.97274 3.97274 0.73 0.000835278 0.000776237 0.0605729 0.0563347 34 2729 32 6.87369e+06 321398 618332. 2139.56 3.10 0.279321 0.241684 25762 151098 -1 2031 22 1700 2664 187062 48246 4.24185 4.24185 -152.771 -4.24185 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0338831 0.0292794 144 105 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 6.97 vpr 62.96 MiB 0.04 7008 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 2.98 931 14528 5023 7251 2254 63.0 MiB 0.14 0.00 3.8283 -107.868 -3.8283 3.8283 0.70 0.000690926 0.000640452 0.0599966 0.0555381 34 2194 23 6.87369e+06 223581 618332. 2139.56 1.31 0.192154 0.168145 25762 151098 -1 1979 16 777 1154 108142 23264 3.18321 3.18321 -121.925 -3.18321 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0218529 0.0190752 107 86 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.73 vpr 63.25 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30532 -1 -1 34 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.90 1146 17873 5435 10742 1696 63.2 MiB 0.16 0.00 3.30669 -116.779 -3.30669 3.30669 0.70 0.000722363 0.000672492 0.0597219 0.0554404 28 2604 28 6.87369e+06 475111 531479. 1839.03 1.07 0.151487 0.134116 24610 126494 -1 2334 23 1911 2857 272048 74234 3.9097 3.9097 -149.041 -3.9097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313844 0.0273225 147 31 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 5.66 vpr 63.68 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30980 -1 -1 40 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.8 MiB 1.87 1126 12153 3063 8050 1040 63.7 MiB 0.13 0.00 3.43499 -116.277 -3.43499 3.43499 0.70 0.000841369 0.000782519 0.0452143 0.0420568 28 2928 28 6.87369e+06 558954 531479. 1839.03 1.05 0.153562 0.134729 24610 126494 -1 2590 20 1976 2974 214206 49825 3.9957 3.9957 -147.321 -3.9957 0 0 648988. 2245.63 0.17 0.09 0.11 -1 -1 0.17 0.032053 0.0278708 176 50 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.02 vpr 63.27 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30732 -1 -1 36 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1028 18548 5822 10051 2675 63.3 MiB 0.17 0.00 2.72995 -93.9691 -2.72995 2.72995 0.72 0.000719111 0.000668393 0.0617574 0.0573252 34 2715 21 6.87369e+06 503058 618332. 2139.56 1.47 0.199848 0.175147 25762 151098 -1 2168 21 1558 2657 200940 45914 3.13056 3.13056 -113.939 -3.13056 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0287519 0.024976 144 50 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.35 vpr 63.37 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30660 -1 -1 46 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.47 1119 15101 4188 9666 1247 63.4 MiB 0.15 0.00 3.40379 -121.611 -3.40379 3.40379 0.73 0.000774481 0.000720286 0.0481185 0.044592 30 2913 21 6.87369e+06 642796 556674. 1926.21 1.00 0.138561 0.121979 25186 138497 -1 2344 23 1795 3131 217243 47489 3.8064 3.8064 -149.286 -3.8064 0 0 706193. 2443.58 0.18 0.09 0.12 -1 -1 0.18 0.0330624 0.0287129 160 61 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.46 vpr 63.54 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30556 -1 -1 42 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.66 1036 11856 2744 8552 560 63.5 MiB 0.12 0.00 2.85525 -102.512 -2.85525 2.85525 0.71 0.000769349 0.000713401 0.0392976 0.0364219 26 2923 29 6.87369e+06 586901 503264. 1741.40 1.13 0.138008 0.120985 24322 120374 -1 2570 20 1705 2727 233306 51946 3.62446 3.62446 -140.667 -3.62446 0 0 618332. 2139.56 0.16 0.09 0.07 -1 -1 0.16 0.0292794 0.0254864 157 61 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.48 vpr 62.57 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30692 -1 -1 19 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64076 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.55 777 13496 5102 6217 2177 62.6 MiB 0.12 0.00 2.9256 -96.8343 -2.9256 2.9256 0.70 0.000595415 0.000553941 0.0492003 0.0457965 34 1780 19 6.87369e+06 265503 618332. 2139.56 1.24 0.163027 0.142606 25762 151098 -1 1458 18 1097 1599 108534 24440 3.02431 3.02431 -113.313 -3.02431 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0211707 0.018398 107 28 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.07 vpr 63.02 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30232 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.10 815 7256 1765 4960 531 63.0 MiB 0.08 0.00 3.34714 -97.9722 -3.34714 3.34714 0.73 0.000667565 0.000621519 0.0293415 0.0273071 34 1967 22 6.87369e+06 237555 618332. 2139.56 1.30 0.157322 0.136154 25762 151098 -1 1673 15 771 1114 79985 19370 2.9699 2.9699 -112.303 -2.9699 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0200788 0.017531 102 79 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 5.64 vpr 63.19 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30596 -1 -1 39 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.4 MiB 1.62 1072 18666 5318 11018 2330 63.2 MiB 0.17 0.00 3.39279 -116.84 -3.39279 3.39279 0.70 0.000731708 0.000673868 0.0589618 0.0546865 32 3162 39 6.87369e+06 544980 586450. 2029.24 1.31 0.164307 0.145044 25474 144626 -1 2302 21 1725 2828 251871 52831 3.8877 3.8877 -144.551 -3.8877 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.028209 0.0245578 152 29 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.67 vpr 62.62 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30620 -1 -1 32 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64120 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 24.0 MiB 3.00 840 16683 5423 8908 2352 62.6 MiB 0.14 0.00 2.70795 -88.6836 -2.70795 2.70795 0.72 0.000606683 0.000564597 0.0500309 0.0464938 26 1943 23 6.87369e+06 447163 503264. 1741.40 1.01 0.122547 0.108147 24322 120374 -1 1865 23 1419 2302 204519 45693 3.14356 3.14356 -117.011 -3.14356 0 0 618332. 2139.56 0.16 0.08 0.11 -1 -1 0.16 0.0257103 0.0221801 108 48 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.04 vpr 62.75 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30600 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 2.92 783 7992 1793 5935 264 62.7 MiB 0.09 0.00 2.9586 -104.965 -2.9586 2.9586 0.70 0.000644343 0.000599471 0.0314327 0.0292507 34 2348 22 6.87369e+06 223581 618332. 2139.56 1.45 0.157353 0.136461 25762 151098 -1 1899 24 1624 2579 214156 49740 3.19191 3.19191 -129.746 -3.19191 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284181 0.0245958 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.47 vpr 63.30 MiB 0.06 7140 -1 -1 1 0.03 -1 -1 30592 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64820 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.36 884 7523 1554 5228 741 63.3 MiB 0.09 0.00 2.92745 -99.4139 -2.92745 2.92745 0.70 0.000744068 0.000691619 0.0270963 0.0251929 34 2308 22 6.87369e+06 489084 618332. 2139.56 1.41 0.170102 0.147415 25762 151098 -1 1831 21 1783 2623 169965 41271 3.04646 3.04646 -118.099 -3.04646 0 0 787024. 2723.27 0.20 0.08 0.11 -1 -1 0.20 0.0300909 0.0262403 146 60 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.10 vpr 62.59 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30608 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.0 MiB 2.64 815 11909 3743 6558 1608 62.6 MiB 0.11 0.00 2.63557 -92.717 -2.63557 2.63557 0.70 0.000625309 0.000582162 0.0458935 0.0427283 32 2138 27 6.87369e+06 223581 586450. 2029.24 0.83 0.124075 0.109509 25474 144626 -1 1963 22 1280 2091 181938 41802 2.99961 2.99961 -117.097 -2.99961 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0258376 0.0223931 103 49 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.23 vpr 63.36 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30604 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.6 MiB 2.59 875 18196 5657 9490 3049 63.4 MiB 0.16 0.00 2.70795 -92.7972 -2.70795 2.70795 0.72 0.000750227 0.000697023 0.05939 0.0551007 30 2553 27 6.87369e+06 517032 556674. 1926.21 0.91 0.152001 0.134541 25186 138497 -1 1859 19 1188 1961 118509 29041 2.89296 2.89296 -113.82 -2.89296 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0270196 0.0235394 143 56 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.71 vpr 63.70 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30548 -1 -1 39 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65224 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 25.0 MiB 3.10 918 10574 2512 6926 1136 63.7 MiB 0.11 0.00 2.86625 -97.1498 -2.86625 2.86625 0.70 0.000790011 0.000726259 0.0373387 0.0346005 30 2259 23 6.87369e+06 544980 556674. 1926.21 0.87 0.131035 0.11494 25186 138497 -1 1784 22 1609 2572 132885 32808 2.84766 2.84766 -116.128 -2.84766 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0321973 0.0279277 151 88 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.44 vpr 63.04 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30576 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.38 773 13381 4004 7711 1666 63.0 MiB 0.13 0.00 2.62457 -92.3566 -2.62457 2.62457 0.70 0.000659728 0.0006135 0.0525296 0.0489015 34 2158 23 6.87369e+06 237555 618332. 2139.56 1.34 0.181884 0.159005 25762 151098 -1 1784 18 1170 1842 140531 33128 2.93831 2.93831 -116.047 -2.93831 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0234447 0.0204335 110 54 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.59 vpr 63.01 MiB 0.05 6812 -1 -1 1 0.03 -1 -1 30236 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.1 MiB 2.88 888 14356 4651 8330 1375 63.0 MiB 0.14 0.00 2.9366 -108.513 -2.9366 2.9366 0.69 0.000670532 0.000623681 0.0577934 0.0537703 32 2630 35 6.87369e+06 223581 586450. 2029.24 0.99 0.149291 0.131926 25474 144626 -1 2201 22 1530 2543 226671 50878 3.19656 3.19656 -130.509 -3.19656 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0276379 0.0239692 112 60 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.50 vpr 63.24 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30916 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.5 MiB 2.64 1054 12304 2830 8610 864 63.2 MiB 0.12 0.00 3.41299 -121.626 -3.41299 3.41299 0.70 0.000777842 0.000715227 0.0411186 0.0381004 32 2770 46 6.87369e+06 558954 586450. 2029.24 1.21 0.15867 0.138803 25474 144626 -1 2218 23 2017 3201 247754 56274 3.8954 3.8954 -148.224 -3.8954 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323646 0.02808 157 49 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 9.47 vpr 63.18 MiB 0.04 7196 -1 -1 1 0.03 -1 -1 30668 -1 -1 34 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64700 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.16 865 11975 2818 8366 791 63.2 MiB 0.12 0.00 2.81125 -91.014 -2.81125 2.81125 0.70 0.000707346 0.000657089 0.0422509 0.0391113 26 2776 44 6.87369e+06 475111 503264. 1741.40 4.68 0.243645 0.210676 24322 120374 -1 2333 21 1562 2520 216050 51112 3.26116 3.26116 -122.615 -3.26116 0 0 618332. 2139.56 0.16 0.09 0.13 -1 -1 0.16 0.0282619 0.0245597 140 54 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.30 vpr 63.53 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30740 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.8 MiB 4.78 872 19868 6214 10501 3153 63.5 MiB 0.19 0.00 3.46799 -118.73 -3.46799 3.46799 0.69 0.000857729 0.000797183 0.0729263 0.0676667 28 3434 36 6.87369e+06 558954 531479. 1839.03 1.73 0.190225 0.167552 24610 126494 -1 2595 24 2243 3595 332112 78532 4.3969 4.3969 -158.324 -4.3969 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0371267 0.0320552 157 117 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.12 vpr 62.66 MiB 0.06 6860 -1 -1 1 0.03 -1 -1 30604 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.1 MiB 0.68 777 6163 1332 4488 343 62.7 MiB 0.05 0.00 2.44612 -83.5574 -2.44612 2.44612 0.70 0.000582367 0.000543368 0.0140703 0.0130474 30 1964 33 6.87369e+06 223581 556674. 1926.21 0.85 0.0916129 0.0792892 25186 138497 -1 1576 19 1080 1722 100467 25109 2.81596 2.81596 -107.853 -2.81596 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0212363 0.0184811 104 -1 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.77 vpr 63.50 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30572 -1 -1 37 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.6 MiB 1.52 1090 17021 4618 10264 2139 63.5 MiB 0.16 0.00 3.34879 -116.796 -3.34879 3.34879 0.70 0.000779814 0.000723766 0.0596693 0.0554407 34 2422 25 6.87369e+06 517032 618332. 2139.56 1.42 0.214086 0.187427 25762 151098 -1 2020 25 1705 2386 175296 40330 3.7371 3.7371 -140.307 -3.7371 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0353322 0.0305663 147 89 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.92 vpr 63.36 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.7 MiB 3.85 787 6960 1516 4800 644 63.4 MiB 0.07 0.00 2.9898 -104.77 -2.9898 2.9898 0.70 0.000713927 0.000663555 0.0309477 0.0288012 34 2312 27 6.87369e+06 223581 618332. 2139.56 1.43 0.172891 0.149721 25762 151098 -1 1702 20 1355 1885 128289 32629 3.17461 3.17461 -125.877 -3.17461 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0273144 0.0236914 114 93 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.86 vpr 63.26 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30612 -1 -1 39 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.5 MiB 2.70 1065 20829 6194 12011 2624 63.3 MiB 0.18 0.00 2.77395 -101.87 -2.77395 2.77395 0.70 0.000764522 0.000711323 0.0687947 0.0638489 34 2468 24 6.87369e+06 544980 618332. 2139.56 1.36 0.21773 0.191087 25762 151098 -1 2003 22 1602 2326 156599 36445 2.98526 2.98526 -122.139 -2.98526 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0315146 0.0273627 153 59 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.62 vpr 63.61 MiB 0.05 7288 -1 -1 1 0.03 -1 -1 30940 -1 -1 47 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.22 1175 16603 4582 10105 1916 63.6 MiB 0.17 0.00 3.98354 -133.428 -3.98354 3.98354 0.70 0.000928291 0.000864978 0.0611459 0.056854 28 3437 22 6.87369e+06 656770 531479. 1839.03 1.59 0.169047 0.149196 24610 126494 -1 2808 24 2835 4652 378334 86695 5.04545 5.04545 -180.247 -5.04545 0 0 648988. 2245.63 0.17 0.13 0.11 -1 -1 0.17 0.0398631 0.0345163 190 81 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.21 vpr 62.20 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30396 -1 -1 14 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63688 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.88 731 9356 3075 4892 1389 62.2 MiB 0.08 0.00 2.30306 -77.7553 -2.30306 2.30306 0.70 0.000525768 0.000489468 0.0323387 0.0301177 32 1529 22 6.87369e+06 195634 586450. 2029.24 0.77 0.0945185 0.0830602 25474 144626 -1 1317 21 678 967 76003 17743 2.13917 2.13917 -88.4706 -2.13917 0 0 744469. 2576.02 0.19 0.05 0.14 -1 -1 0.19 0.0208479 0.0179885 72 51 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.55 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30472 -1 -1 18 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64052 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.85 853 11948 3578 6451 1919 62.6 MiB 0.11 0.00 2.9678 -102.451 -2.9678 2.9678 0.71 0.000609963 0.000568219 0.0444011 0.0413328 32 2174 22 6.87369e+06 251529 586450. 2029.24 0.85 0.117147 0.10349 25474 144626 -1 1742 22 1398 1988 178710 40332 3.04151 3.04151 -121.821 -3.04151 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0260054 0.0225503 109 29 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.77 vpr 62.93 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30280 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.17 841 7992 1818 5930 244 62.9 MiB 0.09 0.00 2.77395 -101.431 -2.77395 2.77395 0.70 0.00064522 0.000600395 0.0318919 0.0297004 34 2815 28 6.87369e+06 223581 618332. 2139.56 1.90 0.166384 0.144193 25762 151098 -1 2223 24 1757 3111 240778 57570 3.12956 3.12956 -131.983 -3.12956 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.028731 0.0248611 114 31 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.32 vpr 62.60 MiB 0.02 6860 -1 -1 1 0.04 -1 -1 30536 -1 -1 37 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64100 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 24.1 MiB 0.71 639 16282 5333 8086 2863 62.6 MiB 0.12 0.00 2.78925 -75.2553 -2.78925 2.78925 0.70 0.000535234 0.000498941 0.0417975 0.0387907 26 1752 23 6.87369e+06 517032 503264. 1741.40 1.01 0.106113 0.0934093 24322 120374 -1 1491 21 1064 1809 140461 30973 2.90196 2.90196 -92.6674 -2.90196 0 0 618332. 2139.56 0.17 0.06 0.12 -1 -1 0.17 0.0213476 0.0183938 105 19 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.00 vpr 63.49 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65012 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.50 1078 11059 3231 6919 909 63.5 MiB 0.13 0.00 3.39279 -118.067 -3.39279 3.39279 0.70 0.000795883 0.000740269 0.0499409 0.0464192 34 3295 30 6.87369e+06 293451 618332. 2139.56 1.75 0.214751 0.186916 25762 151098 -1 2692 22 1922 3501 260373 61476 4.2949 4.2949 -153.46 -4.2949 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0331072 0.0287812 145 84 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.57 vpr 63.31 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30512 -1 -1 40 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.8 MiB 2.43 1018 14081 3637 8739 1705 63.3 MiB 0.14 0.00 2.87245 -101.624 -2.87245 2.87245 0.69 0.000781855 0.000723931 0.0479727 0.0443656 34 2312 22 6.87369e+06 558954 618332. 2139.56 1.34 0.197742 0.172261 25762 151098 -1 2041 23 1887 2923 206175 47131 3.06846 3.06846 -124.09 -3.06846 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0331951 0.0287459 151 88 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 6.13 vpr 63.51 MiB 0.05 7128 -1 -1 1 0.04 -1 -1 30736 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.7 MiB 1.48 1424 20673 7364 10652 2657 63.5 MiB 0.21 0.00 4.17364 -142.53 -4.17364 4.17364 0.70 0.000821828 0.000765062 0.0826097 0.0768049 36 3253 33 6.89349e+06 408721 648988. 2245.63 1.74 0.251831 0.221159 26050 158493 -1 2777 23 2231 2724 188616 41259 4.22185 4.22185 -162.946 -4.22185 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0345438 0.0300242 192 80 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.24 vpr 63.45 MiB 0.06 7132 -1 -1 1 0.03 -1 -1 30804 -1 -1 29 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64976 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1354 15595 4586 8288 2721 63.5 MiB 0.16 0.00 4.21067 -131.732 -4.21067 4.21067 0.70 0.000757088 0.000703875 0.0601992 0.0559542 34 3729 31 6.89349e+06 408721 618332. 2139.56 2.00 0.220368 0.192679 25762 151098 -1 2889 22 2200 3136 253066 54904 4.51278 4.51278 -155.357 -4.51278 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0315182 0.0273443 177 78 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.05 vpr 63.10 MiB 0.06 7108 -1 -1 1 0.03 -1 -1 30572 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.74 1308 15137 4287 8597 2253 63.1 MiB 0.15 0.00 3.18936 -113.949 -3.18936 3.18936 0.70 0.000740519 0.000688869 0.0591071 0.0549621 36 2999 45 6.89349e+06 352346 648988. 2245.63 1.46 0.202966 0.178096 26050 158493 -1 2523 19 1605 1966 147605 32155 3.7003 3.7003 -138.567 -3.7003 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276144 0.0241317 167 50 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.12 vpr 62.79 MiB 0.07 7096 -1 -1 1 0.03 -1 -1 30612 -1 -1 25 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64292 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.4 MiB 1.84 947 11237 3150 7479 608 62.8 MiB 0.12 0.00 3.65595 -112.917 -3.65595 3.65595 0.70 0.000681625 0.000634206 0.0426026 0.039656 36 2265 27 6.89349e+06 352346 648988. 2245.63 1.44 0.179612 0.156407 26050 158493 -1 1995 22 1731 2605 165266 40044 3.77346 3.77346 -132.73 -3.77346 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0284081 0.0247048 148 25 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 8.06 vpr 63.08 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30520 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 1.78 1296 15298 4425 8938 1935 63.1 MiB 0.18 0.00 4.01094 -139.821 -4.01094 4.01094 0.70 0.000740986 0.000689438 0.0625316 0.0580341 38 3169 21 6.89349e+06 338252 678818. 2348.85 3.40 0.256967 0.224019 26626 170182 -1 2771 22 2154 3703 266586 56515 4.44945 4.44945 -164.037 -4.44945 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0302337 0.026354 163 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.58 vpr 63.45 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30520 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.5 MiB 1.61 1308 20853 6182 11632 3039 63.4 MiB 0.21 0.00 3.51229 -115.801 -3.51229 3.51229 0.73 0.000762863 0.000709102 0.0673941 0.0625908 34 3858 45 6.89349e+06 577847 618332. 2139.56 2.08 0.242116 0.211738 25762 151098 -1 2808 22 2062 3233 262458 55527 3.3575 3.3575 -134.424 -3.3575 0 0 787024. 2723.27 0.20 0.10 0.15 -1 -1 0.20 0.0319064 0.0276514 179 61 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.04 vpr 62.47 MiB 0.05 6884 -1 -1 1 0.03 -1 -1 30692 -1 -1 21 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63968 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.38 716 14700 4346 9327 1027 62.5 MiB 0.12 0.00 3.0242 -88.7873 -3.0242 3.0242 0.71 0.000567081 0.000528781 0.0502898 0.0468507 28 2104 28 6.89349e+06 295971 531479. 1839.03 0.98 0.123306 0.109057 24610 126494 -1 1694 21 1463 2015 151363 36332 3.56481 3.56481 -114.845 -3.56481 0 0 648988. 2245.63 0.17 0.07 0.12 -1 -1 0.17 0.0227699 0.0196726 112 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.74 vpr 62.84 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30488 -1 -1 35 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.0 MiB 0.69 1006 18548 5600 10104 2844 62.8 MiB 0.16 0.00 2.7253 -92.6455 -2.7253 2.7253 0.70 0.00066723 0.000620282 0.056705 0.052694 34 2314 21 6.89349e+06 493284 618332. 2139.56 1.32 0.184832 0.162119 25762 151098 -1 1923 20 1170 1864 117658 27366 2.57831 2.57831 -104.454 -2.57831 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0253508 0.0220564 141 -1 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.58 vpr 63.05 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30348 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64560 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.4 MiB 1.44 1150 11979 3218 6740 2021 63.0 MiB 0.11 0.00 2.93075 -102.191 -2.93075 2.93075 0.70 0.000664381 0.000617386 0.0452403 0.0420424 34 2741 36 6.89349e+06 295971 618332. 2139.56 1.45 0.166302 0.145078 25762 151098 -1 2143 16 1315 1605 101742 24802 3.25321 3.25321 -121.056 -3.25321 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0216995 0.0189803 140 81 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.73 vpr 62.54 MiB 0.04 6816 -1 -1 1 0.03 -1 -1 30604 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.0 MiB 1.53 805 14303 3805 8843 1655 62.5 MiB 0.13 0.00 2.96065 -102.945 -2.96065 2.96065 0.69 0.000642699 0.000598468 0.0533225 0.0496674 34 2275 24 6.89349e+06 267783 618332. 2139.56 1.42 0.180173 0.157691 25762 151098 -1 1842 23 1697 2222 142754 35264 3.25491 3.25491 -131.046 -3.25491 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0278235 0.0241117 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.88 vpr 62.91 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30296 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1097 13223 4269 6936 2018 62.9 MiB 0.12 0.00 3.44524 -114.518 -3.44524 3.44524 0.70 0.00064764 0.000601961 0.04931 0.0458392 34 2525 23 6.89349e+06 295971 618332. 2139.56 1.37 0.151567 0.132968 25762 151098 -1 2217 21 1674 2242 181591 38014 3.6004 3.6004 -136.397 -3.6004 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0258448 0.0224506 135 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 5.52 vpr 63.01 MiB 0.04 6968 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.45 963 16371 5985 7858 2528 63.0 MiB 0.15 0.00 3.0432 -100.428 -3.0432 3.0432 0.70 0.000657388 0.00061142 0.0608441 0.0565874 34 2680 29 6.89349e+06 281877 618332. 2139.56 1.50 0.168531 0.148262 25762 151098 -1 1987 22 1509 1753 142568 32672 3.05461 3.05461 -116.216 -3.05461 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0145927 0.0128334 135 57 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.47 vpr 63.20 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30452 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.4 MiB 1.22 989 17711 5347 9041 3323 63.2 MiB 0.17 0.00 3.35709 -112.94 -3.35709 3.35709 0.70 0.000743087 0.000690536 0.069304 0.0644411 38 2554 29 6.89349e+06 352346 678818. 2348.85 3.48 0.319772 0.277757 26626 170182 -1 2118 21 1789 2388 158339 38150 3.2833 3.2833 -125.777 -3.2833 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295911 0.0257551 161 55 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.75 vpr 63.26 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.32 1377 15824 4640 9359 1825 63.3 MiB 0.16 0.00 4.12524 -135.26 -4.12524 4.12524 0.70 0.000776821 0.000723167 0.0617482 0.0574218 34 3387 25 6.89349e+06 394628 618332. 2139.56 1.62 0.18619 0.163831 25762 151098 -1 2713 21 2287 2982 216861 48762 4.37425 4.37425 -163.405 -4.37425 0 0 787024. 2723.27 0.20 0.09 0.15 -1 -1 0.20 0.0312401 0.027247 175 60 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.12 vpr 62.43 MiB 0.03 6896 -1 -1 1 0.03 -1 -1 30840 -1 -1 21 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63924 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.27 886 10940 3249 6105 1586 62.4 MiB 0.10 0.00 2.86465 -93.837 -2.86465 2.86465 0.70 0.000576156 0.000536386 0.0372399 0.0346475 34 2095 31 6.89349e+06 295971 618332. 2139.56 1.27 0.15579 0.135266 25762 151098 -1 1786 21 1111 1575 115052 26187 2.92016 2.92016 -109.804 -2.92016 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0229147 0.0198618 112 21 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.36 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.5 MiB 2.06 1404 17711 5866 9888 1957 63.4 MiB 0.19 0.00 3.54049 -122.38 -3.54049 3.54049 0.70 0.000762313 0.000708152 0.0705449 0.0655191 36 3345 24 6.89349e+06 352346 648988. 2245.63 2.03 0.221143 0.194088 26050 158493 -1 2852 22 2189 3559 260564 56340 3.70535 3.70535 -143.77 -3.70535 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0319616 0.027699 174 60 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.45 vpr 63.28 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.5 MiB 1.06 1328 15731 5142 8859 1730 63.3 MiB 0.16 0.00 3.06395 -109.655 -3.06395 3.06395 0.70 0.000744787 0.000690192 0.0618973 0.0575356 34 2977 31 6.89349e+06 352346 618332. 2139.56 1.57 0.222018 0.194256 25762 151098 -1 2416 22 1799 2266 186974 40515 3.15766 3.15766 -127.959 -3.15766 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0308739 0.0268253 160 54 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.91 vpr 62.96 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30332 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/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.58 1089 15395 5830 7789 1776 63.0 MiB 0.16 0.00 2.80245 -99.8458 -2.80245 2.80245 0.70 0.000672642 0.000625464 0.0586002 0.0544636 34 2735 26 6.89349e+06 310065 618332. 2139.56 1.59 0.192647 0.16855 25762 151098 -1 1975 20 1701 2222 143417 34882 2.71196 2.71196 -115.525 -2.71196 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0259107 0.0225679 139 62 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.73 vpr 62.38 MiB 0.04 6712 -1 -1 1 0.03 -1 -1 30432 -1 -1 15 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.7 MiB 0.88 775 11650 3432 6734 1484 62.4 MiB 0.09 0.00 2.54456 -86.0724 -2.54456 2.54456 0.73 0.000507055 0.000472004 0.0377885 0.0352238 34 1663 18 6.89349e+06 211408 618332. 2139.56 1.20 0.123182 0.107716 25762 151098 -1 1484 19 735 897 63728 15127 2.10607 2.10607 -92.6106 -2.10607 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0187828 0.0162965 85 29 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.45 vpr 62.91 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1116 13849 3916 8310 1623 62.9 MiB 0.13 0.00 3.39499 -119.193 -3.39499 3.39499 0.72 0.00067442 0.000628407 0.0514064 0.0478165 34 2572 25 6.89349e+06 310065 618332. 2139.56 1.38 0.183909 0.16075 25762 151098 -1 2121 19 1492 1983 142056 32595 3.4278 3.4278 -137.122 -3.4278 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0244228 0.0212714 141 55 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 4.70 vpr 63.41 MiB 0.05 6944 -1 -1 1 0.03 -1 -1 30332 -1 -1 40 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.7 MiB 0.85 1178 18648 5399 10601 2648 63.4 MiB 0.17 0.00 3.64283 -127.034 -3.64283 3.64283 0.70 0.000731633 0.000672674 0.0578531 0.0535143 30 2791 22 6.89349e+06 563754 556674. 1926.21 1.07 0.143447 0.126817 25186 138497 -1 2334 19 1701 2369 160856 34766 3.96414 3.96414 -153.801 -3.96414 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0266857 0.023305 166 31 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.63 vpr 63.51 MiB 0.05 7276 -1 -1 1 0.03 -1 -1 31052 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.8 MiB 1.15 1544 19967 6161 11521 2285 63.5 MiB 0.16 0.00 3.37919 -119.275 -3.37919 3.37919 0.72 0.000391033 0.000361215 0.059074 0.0546691 34 3811 31 6.89349e+06 436909 618332. 2139.56 1.60 0.233553 0.203147 25762 151098 -1 2967 23 2286 2607 199056 45296 4.11156 4.11156 -146.863 -4.11156 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0357453 0.0309493 201 108 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 4.56 vpr 62.01 MiB 0.03 6732 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 26 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63500 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.5 MiB 1.23 719 9996 3588 4915 1493 62.0 MiB 0.07 0.00 2.21891 -67.1246 -2.21891 2.21891 0.70 0.0004391 0.00040863 0.0288822 0.0268821 30 1477 20 6.89349e+06 253689 556674. 1926.21 0.73 0.0799939 0.0704387 25186 138497 -1 1268 21 600 792 56957 12443 2.05135 2.05135 -77.0861 -2.05135 0 0 706193. 2443.58 0.19 0.04 0.12 -1 -1 0.19 0.0177374 0.0153585 77 21 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.21 vpr 62.65 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.1 MiB 1.01 1022 11617 2808 8147 662 62.6 MiB 0.12 0.00 3.25074 -113.04 -3.25074 3.25074 0.70 0.000684538 0.000637309 0.045037 0.0419155 34 2767 26 6.89349e+06 295971 618332. 2139.56 1.45 0.182079 0.159075 25762 151098 -1 2192 23 1915 3245 230641 52878 3.81755 3.81755 -139.15 -3.81755 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0293866 0.0255139 141 -1 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 4.02 vpr 61.99 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30540 -1 -1 12 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.6 MiB 0.31 748 11596 4396 6072 1128 62.0 MiB 0.09 0.00 1.93068 -78.0559 -1.93068 1.93068 0.70 0.000463901 0.000431588 0.035109 0.0326659 34 1542 18 6.89349e+06 169126 618332. 2139.56 1.13 0.122782 0.107601 25762 151098 -1 1404 18 679 997 78060 17646 1.82846 1.82846 -87.5357 -1.82846 0 0 787024. 2723.27 0.20 0.05 0.13 -1 -1 0.20 0.0165388 0.0144256 71 -1 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 5.81 vpr 63.25 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30680 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.5 MiB 1.20 992 11969 3400 7456 1113 63.2 MiB 0.14 0.00 3.76105 -125.893 -3.76105 3.76105 0.74 0.000741959 0.000690935 0.0472358 0.0439586 34 3020 35 6.89349e+06 352346 618332. 2139.56 1.77 0.204112 0.177918 25762 151098 -1 2358 21 1974 2824 202764 46560 3.95996 3.95996 -152.571 -3.95996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292238 0.0254492 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.33 vpr 63.29 MiB 0.05 7024 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1163 16572 4457 10734 1381 63.3 MiB 0.16 0.00 2.9104 -106.195 -2.9104 2.9104 0.70 0.000675436 0.000624204 0.0524558 0.0485878 32 2786 27 6.89349e+06 507378 586450. 2029.24 0.94 0.145633 0.128487 25474 144626 -1 2303 18 1336 2061 145063 32487 2.88381 2.88381 -124.451 -2.88381 0 0 744469. 2576.02 0.22 0.07 0.13 -1 -1 0.22 0.0244098 0.0212709 151 -1 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.10 vpr 63.37 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30724 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.58 1428 12351 3459 7662 1230 63.4 MiB 0.14 0.00 3.69695 -131.826 -3.69695 3.69695 0.73 0.000773627 0.000719922 0.0517175 0.0480487 34 3509 39 6.89349e+06 366440 618332. 2139.56 1.73 0.221768 0.193585 25762 151098 -1 2763 22 2289 3324 223369 50307 4.03496 4.03496 -157.578 -4.03496 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0320642 0.0278886 174 54 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 5.77 vpr 62.58 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30316 -1 -1 17 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 24.0 MiB 1.67 1049 13031 4328 6818 1885 62.6 MiB 0.12 0.00 2.82445 -104.768 -2.82445 2.82445 0.69 0.00061724 0.000574203 0.0476791 0.0443644 34 2571 30 6.89349e+06 239595 618332. 2139.56 1.40 0.17632 0.153801 25762 151098 -1 2199 22 1761 2563 180735 40891 2.92316 2.92316 -125.995 -2.92316 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0255174 0.0221321 118 31 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.66 vpr 62.47 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30340 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63968 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 23.9 MiB 1.48 1019 12856 4206 6637 2013 62.5 MiB 0.12 0.00 3.51849 -117.934 -3.51849 3.51849 0.69 0.000614232 0.000571839 0.0471857 0.0439345 34 2492 30 6.89349e+06 267783 618332. 2139.56 1.44 0.174125 0.15178 25762 151098 -1 2019 19 1488 2296 171838 36692 3.4497 3.4497 -134.604 -3.4497 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.023922 0.0208763 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.37 vpr 62.66 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.90 812 11806 3140 7921 745 62.7 MiB 0.11 0.00 3.33999 -102.134 -3.33999 3.33999 0.70 0.000584099 0.000544002 0.0416442 0.0387976 30 2275 22 6.89349e+06 295971 556674. 1926.21 0.87 0.11059 0.0975202 25186 138497 -1 1802 20 1093 1842 114354 27410 3.4197 3.4197 -124.413 -3.4197 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0224285 0.0194435 115 27 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 6.97 vpr 62.53 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.94 886 15216 6255 7964 997 62.5 MiB 0.14 0.00 2.85355 -105.803 -2.85355 2.85355 0.74 0.000609873 0.000567711 0.056233 0.0524052 36 2129 19 6.89349e+06 225501 648988. 2245.63 3.19 0.226135 0.196908 26050 158493 -1 1904 19 1359 2255 162819 35626 2.85366 2.85366 -124.037 -2.85366 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0225403 0.0196326 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 5.56 vpr 62.60 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30572 -1 -1 19 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 24.0 MiB 1.27 1041 10762 2759 7122 881 62.6 MiB 0.11 0.00 2.93565 -104.908 -2.93565 2.93565 0.70 0.000626885 0.000583948 0.0396443 0.0369261 34 2481 42 6.89349e+06 267783 618332. 2139.56 1.59 0.178106 0.154717 25762 151098 -1 2108 19 1292 1901 132683 29440 2.76366 2.76366 -117.553 -2.76366 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0258763 0.0225906 121 26 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.47 vpr 62.92 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30288 -1 -1 23 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64432 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 24.0 MiB 1.33 1078 14724 4728 7751 2245 62.9 MiB 0.13 0.00 2.91975 -93.9329 -2.91975 2.91975 0.75 0.000622418 0.000578671 0.0520384 0.0483913 34 2491 21 6.89349e+06 324158 618332. 2139.56 1.30 0.174342 0.152522 25762 151098 -1 2100 19 1250 1658 127345 27678 2.82896 2.82896 -110.607 -2.82896 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0230818 0.0200578 130 55 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 5.73 vpr 63.38 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30664 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.85 1380 16615 4969 9296 2350 63.4 MiB 0.19 0.00 3.73615 -131.998 -3.73615 3.73615 0.70 0.00082231 0.000764144 0.0709912 0.0660654 30 3640 43 6.89349e+06 380534 556674. 1926.21 1.12 0.194203 0.171504 25186 138497 -1 2686 21 1773 2839 182820 41233 4.07896 4.07896 -157.947 -4.07896 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0328705 0.0286292 184 26 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.88 vpr 63.35 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30576 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.55 1249 14939 5254 6510 3175 63.4 MiB 0.16 0.00 3.27164 -115.251 -3.27164 3.27164 0.73 0.000782152 0.00072659 0.0612982 0.0570205 36 3335 22 6.89349e+06 352346 648988. 2245.63 2.47 0.210961 0.184914 26050 158493 -1 2675 23 2727 3725 311211 67638 4.2329 4.2329 -151.8 -4.2329 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0334201 0.0291264 173 62 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.64 vpr 63.27 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30652 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64792 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.6 MiB 0.81 1144 14965 4253 8678 2034 63.3 MiB 0.14 0.00 2.90265 -100.254 -2.90265 2.90265 0.70 0.000677107 0.000629285 0.0561778 0.0522173 36 2345 19 6.89349e+06 310065 648988. 2245.63 3.10 0.237301 0.206288 26050 158493 -1 2067 20 1221 1264 96636 21225 2.91496 2.91496 -115.045 -2.91496 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0257524 0.0223842 143 77 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.41 vpr 63.19 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30464 -1 -1 26 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64704 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.4 MiB 2.04 1206 10385 2623 6478 1284 63.2 MiB 0.12 0.00 3.50749 -114.822 -3.50749 3.50749 0.70 0.000747188 0.000694243 0.0415433 0.0386108 34 3280 35 6.89349e+06 366440 618332. 2139.56 1.67 0.20115 0.174758 25762 151098 -1 2478 21 1687 2477 183816 40832 3.6062 3.6062 -139.31 -3.6062 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298602 0.0260006 170 59 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.66 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30768 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.73 1597 17347 5424 9486 2437 63.6 MiB 0.19 0.00 4.14544 -138.579 -4.14544 4.14544 0.72 0.000832762 0.000774938 0.0705267 0.0655862 36 3573 25 6.89349e+06 436909 648988. 2245.63 2.08 0.235704 0.206052 26050 158493 -1 2933 18 2146 2507 188738 41711 4.53865 4.53865 -162.579 -4.53865 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0294719 0.0256893 201 111 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 8.01 vpr 63.28 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30660 -1 -1 28 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.4 MiB 2.09 1401 17431 7367 8878 1186 63.3 MiB 0.17 0.00 4.39023 -138.954 -4.39023 4.39023 0.70 0.000768126 0.000713365 0.0683292 0.0634604 36 3574 42 6.89349e+06 394628 648988. 2245.63 3.07 0.247366 0.216597 26050 158493 -1 2729 22 2143 2967 257902 54404 5.23164 5.23164 -177.815 -5.23164 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0317633 0.0275905 181 86 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 5.77 vpr 63.27 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30596 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.5 MiB 1.49 1380 8130 1734 5596 800 63.3 MiB 0.10 0.00 3.12215 -108.981 -3.12215 3.12215 0.70 0.000751999 0.000698479 0.0326236 0.0303349 34 3473 32 6.89349e+06 380534 618332. 2139.56 1.60 0.154996 0.135009 25762 151098 -1 2768 20 2151 2973 227346 52094 3.52946 3.52946 -136.354 -3.52946 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0288089 0.0251241 168 58 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.53 vpr 63.38 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30616 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 1.70 1328 14779 4122 8396 2261 63.4 MiB 0.15 0.00 3.75005 -132.712 -3.75005 3.75005 0.70 0.000773797 0.000719096 0.0587982 0.0546969 34 3554 34 6.89349e+06 380534 618332. 2139.56 2.03 0.221306 0.193902 25762 151098 -1 2779 23 2106 2778 221390 49279 4.03976 4.03976 -158.985 -4.03976 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0330435 0.0287479 178 42 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.55 vpr 63.74 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30788 -1 -1 31 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 24.8 MiB 1.90 1599 15431 4493 9114 1824 63.7 MiB 0.19 0.00 4.14118 -143.258 -4.14118 4.14118 0.70 0.000917695 0.000854452 0.0690406 0.0642036 36 4917 42 6.89349e+06 436909 648988. 2245.63 4.65 0.279462 0.24392 26050 158493 -1 3342 21 3188 4606 360762 78824 4.66269 4.66269 -175.955 -4.66269 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0367972 0.0320574 220 91 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.50 vpr 62.54 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30680 -1 -1 20 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64036 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.47 854 4943 997 3592 354 62.5 MiB 0.06 0.00 3.1513 -105.266 -3.1513 3.1513 0.70 0.000634221 0.000590525 0.0194838 0.0181872 34 2287 32 6.89349e+06 281877 618332. 2139.56 1.41 0.150177 0.12931 25762 151098 -1 1908 21 1460 1950 142554 32387 3.27501 3.27501 -128.178 -3.27501 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0250618 0.0217631 127 24 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.02 vpr 63.23 MiB 0.05 7172 -1 -1 1 0.03 -1 -1 30708 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1325 17376 6843 8957 1576 63.2 MiB 0.18 0.00 4.12524 -134.849 -4.12524 4.12524 0.71 0.000771122 0.000717313 0.0686789 0.0639307 36 3266 24 6.89349e+06 380534 648988. 2245.63 1.70 0.188351 0.166649 26050 158493 -1 2425 21 1738 2180 191364 43221 4.22365 4.22365 -152.909 -4.22365 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297539 0.025883 168 59 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 7.80 vpr 63.58 MiB 0.04 7172 -1 -1 1 0.03 -1 -1 30764 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.8 MiB 1.73 1384 15391 5043 8079 2269 63.6 MiB 0.16 0.00 3.51049 -122.247 -3.51049 3.51049 0.70 0.000756636 0.000703923 0.0600699 0.0558681 38 2946 26 6.89349e+06 380534 678818. 2348.85 3.25 0.268906 0.233786 26626 170182 -1 2503 17 1495 2296 147667 32646 3.3354 3.3354 -134.776 -3.3354 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0256398 0.0224169 172 54 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.74 vpr 62.99 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30588 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.1 MiB 1.16 888 17011 4426 10315 2270 63.0 MiB 0.15 0.00 3.45729 -119.077 -3.45729 3.45729 0.69 0.000712251 0.000662919 0.0671425 0.0624811 34 3078 30 6.89349e+06 295971 618332. 2139.56 1.81 0.213816 0.187964 25762 151098 -1 2176 22 1974 3533 258621 61853 3.9144 3.9144 -150.013 -3.9144 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0290435 0.0252676 147 -1 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.20 vpr 63.46 MiB 0.05 7212 -1 -1 1 0.03 -1 -1 30508 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.8 MiB 1.40 1273 18515 6514 9101 2900 63.5 MiB 0.19 0.00 3.53749 -120.284 -3.53749 3.53749 0.69 0.000792949 0.000729205 0.0732016 0.0680599 34 3606 26 6.89349e+06 394628 618332. 2139.56 1.96 0.229716 0.201594 25762 151098 -1 2587 20 1773 2052 162238 36731 3.6751 3.6751 -133.021 -3.6751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0300099 0.0261848 184 81 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.12 vpr 63.38 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30648 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.5 MiB 1.85 1211 17839 5892 8872 3075 63.4 MiB 0.18 0.00 3.41219 -119.031 -3.41219 3.41219 0.70 0.000755512 0.000702287 0.0687105 0.0638553 36 3193 22 6.89349e+06 380534 648988. 2245.63 2.41 0.217326 0.190815 26050 158493 -1 2520 22 1841 2798 211735 45856 3.525 3.525 -138.152 -3.525 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0313503 0.0272666 169 58 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 6.03 vpr 63.27 MiB 0.05 7080 -1 -1 1 0.03 -1 -1 30568 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1343 12535 3316 8501 718 63.3 MiB 0.14 0.00 3.11405 -111.761 -3.11405 3.11405 0.70 0.000769207 0.000715689 0.0497047 0.0462374 34 3487 25 6.89349e+06 380534 618332. 2139.56 1.68 0.20148 0.175729 25762 151098 -1 2810 23 2513 3483 279943 60066 3.27886 3.27886 -136.596 -3.27886 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0347499 0.0299573 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 7.00 vpr 63.17 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30768 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1255 12568 3422 7903 1243 63.2 MiB 0.14 0.00 3.76105 -133.875 -3.76105 3.76105 0.73 0.000750335 0.000697917 0.0504627 0.0469992 34 3225 27 6.89349e+06 338252 618332. 2139.56 2.70 0.264477 0.229385 25762 151098 -1 2694 34 2353 3396 264082 57180 4.29836 4.29836 -165.562 -4.29836 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.0432285 0.0373926 161 21 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.39 vpr 63.40 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30752 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 1.16 1224 16207 4715 9284 2208 63.4 MiB 0.16 0.00 3.72815 -130.331 -3.72815 3.72815 0.70 0.000768111 0.000714218 0.0634325 0.0589825 34 3042 22 6.89349e+06 380534 618332. 2139.56 1.42 0.211936 0.185916 25762 151098 -1 2560 21 2223 2797 193612 44771 3.86746 3.86746 -153.917 -3.86746 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0304758 0.02655 177 50 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.80 vpr 63.49 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30676 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.8 MiB 1.19 1501 18838 5421 11003 2414 63.5 MiB 0.20 0.00 4.07024 -128.102 -4.07024 4.07024 0.70 0.000832474 0.000774829 0.0756497 0.0703901 36 3555 34 6.89349e+06 436909 648988. 2245.63 1.74 0.248129 0.217146 26050 158493 -1 2918 21 1982 2314 163057 37153 4.18785 4.18785 -148.903 -4.18785 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0322761 0.0279785 195 110 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.27 vpr 63.38 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30660 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.34 1494 11107 2813 7230 1064 63.4 MiB 0.13 0.00 3.77645 -132.253 -3.77645 3.77645 0.70 0.00081672 0.000759522 0.0469273 0.0436581 36 3760 45 6.89349e+06 380534 648988. 2245.63 2.03 0.232272 0.202022 26050 158493 -1 2998 22 2556 3654 239256 53374 3.78876 3.78876 -150.416 -3.78876 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0330966 0.028788 190 86 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.41 vpr 62.73 MiB 0.04 6884 -1 -1 1 0.03 -1 -1 30756 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 1.40 1053 13105 4100 7961 1044 62.7 MiB 0.12 0.00 2.93565 -110.397 -2.93565 2.93565 0.70 0.000641312 0.00059798 0.0474664 0.0442448 34 2353 22 6.89349e+06 295971 618332. 2139.56 1.29 0.170511 0.149258 25762 151098 -1 2019 20 1269 1786 114557 26904 2.85086 2.85086 -122.952 -2.85086 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0244703 0.0213153 127 20 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.34 vpr 63.42 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30684 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.7 MiB 1.35 1347 7525 1748 5284 493 63.4 MiB 0.09 0.00 3.40739 -119.926 -3.40739 3.40739 0.70 0.000707412 0.000657403 0.0308593 0.0286763 38 2854 28 6.89349e+06 295971 678818. 2348.85 3.27 0.260144 0.223885 26626 170182 -1 2592 20 1624 1945 151012 32088 3.65099 3.65099 -140.759 -3.65099 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0274455 0.0239013 154 91 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.34 vpr 63.47 MiB 0.05 7200 -1 -1 1 0.03 -1 -1 30996 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.58 1508 18625 6220 9873 2532 63.5 MiB 0.21 0.00 4.31889 -149.004 -4.31889 4.31889 0.69 0.000883745 0.000822015 0.079815 0.0742482 36 3403 29 6.89349e+06 422815 648988. 2245.63 1.84 0.25932 0.227307 26050 158493 -1 2770 21 2439 3285 205645 47832 4.6067 4.6067 -174.205 -4.6067 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0347384 0.0302367 209 53 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.20 vpr 63.10 MiB 0.07 7064 -1 -1 1 0.03 -1 -1 30644 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.60 1127 14871 4886 7742 2243 63.1 MiB 0.15 0.00 3.1543 -109.62 -3.1543 3.1543 0.70 0.000731696 0.000680747 0.0588596 0.0547946 34 3101 41 6.89349e+06 324158 618332. 2139.56 1.78 0.221257 0.193511 25762 151098 -1 2257 21 1859 2692 208706 46091 3.22056 3.22056 -126.727 -3.22056 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0300171 0.0262491 156 31 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.88 vpr 62.64 MiB 0.05 6792 -1 -1 1 0.03 -1 -1 30460 -1 -1 32 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64140 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 24.0 MiB 1.00 793 11596 3004 7952 640 62.6 MiB 0.11 0.00 3.49649 -106.457 -3.49649 3.49649 0.69 0.000613651 0.000570856 0.0354485 0.0329542 36 2052 20 6.89349e+06 451003 648988. 2245.63 3.21 0.198506 0.171713 26050 158493 -1 1630 21 1174 1848 111105 27298 3.46065 3.46065 -125.648 -3.46065 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0244108 0.0211827 129 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.48 vpr 63.46 MiB 0.05 7240 -1 -1 1 0.03 -1 -1 31052 -1 -1 35 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.62 1905 20163 6025 11483 2655 63.5 MiB 0.23 0.00 4.60062 -159.311 -4.60062 4.60062 0.73 0.00094837 0.000881631 0.087309 0.0811464 36 4445 48 6.89349e+06 493284 648988. 2245.63 2.85 0.30971 0.270407 26050 158493 -1 3593 22 2865 3620 324518 68385 5.25654 5.25654 -192.456 -5.25654 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0389537 0.0337909 239 109 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.49 vpr 63.21 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1137 15639 5091 8145 2403 63.2 MiB 0.16 0.00 3.54039 -126.1 -3.54039 3.54039 0.70 0.000741185 0.000688213 0.0623285 0.0579217 34 2818 20 6.89349e+06 324158 618332. 2139.56 1.44 0.203038 0.178215 25762 151098 -1 2354 21 2123 2862 205293 47422 4.1813 4.1813 -154.961 -4.1813 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0299075 0.0260448 159 31 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.27 vpr 62.50 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30596 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.0 MiB 0.51 929 16525 5295 8720 2510 62.5 MiB 0.14 0.00 2.98385 -107.859 -2.98385 2.98385 0.70 0.000613303 0.000571243 0.0475278 0.0442313 32 2401 41 6.89349e+06 465097 586450. 2029.24 1.07 0.136886 0.120649 25474 144626 -1 1951 23 1407 2262 196738 41502 2.99616 2.99616 -125.802 -2.99616 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0263702 0.0228809 123 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 6.57 vpr 63.43 MiB 0.05 7128 -1 -1 1 0.03 -1 -1 30900 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1376 12483 3527 7567 1389 63.4 MiB 0.15 0.00 4.29569 -148.985 -4.29569 4.29569 0.70 0.000831738 0.000773139 0.053856 0.05017 34 3583 32 6.89349e+06 408721 618332. 2139.56 2.03 0.233903 0.203977 25762 151098 -1 2879 19 2284 3507 271288 57429 4.7308 4.7308 -176.014 -4.7308 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0313783 0.0273654 194 26 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.79 vpr 62.71 MiB 0.05 6736 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.3 MiB 0.73 866 13668 4630 7290 1748 62.7 MiB 0.13 0.00 3.095 -115.431 -3.095 3.095 0.70 0.000607584 0.000565244 0.0501284 0.0466748 34 2349 21 6.89349e+06 225501 618332. 2139.56 1.34 0.168007 0.147256 25762 151098 -1 2001 19 1395 2274 186315 39426 3.02921 3.02921 -130.815 -3.02921 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0226565 0.0197492 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 4.64 vpr 62.64 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30664 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.0 MiB 1.07 775 12331 2931 8892 508 62.6 MiB 0.11 0.00 2.94665 -97.1284 -2.94665 2.94665 0.70 0.00062118 0.000577341 0.0454822 0.0423732 32 2666 27 6.89349e+06 267783 586450. 2029.24 0.90 0.12366 0.109272 25474 144626 -1 1859 24 1556 2031 164412 39257 3.32386 3.32386 -122.41 -3.32386 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0271904 0.0235331 121 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.43 vpr 63.23 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.4 MiB 1.31 1259 16652 5432 8581 2639 63.2 MiB 0.16 0.00 3.34494 -104.582 -3.34494 3.34494 0.70 0.000734285 0.000681871 0.06179 0.0570532 34 2777 21 6.89349e+06 436909 618332. 2139.56 1.35 0.202622 0.17722 25762 151098 -1 2342 18 1549 2084 148463 34073 3.437 3.437 -123.648 -3.437 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026189 0.0228522 171 81 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.31 vpr 63.57 MiB 0.07 7120 -1 -1 1 0.03 -1 -1 30832 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.7 MiB 1.68 1177 8934 2146 5917 871 63.6 MiB 0.10 0.00 4.15944 -139.101 -4.15944 4.15944 0.71 0.000772697 0.000718436 0.0372721 0.0346343 36 3045 41 6.89349e+06 366440 648988. 2245.63 1.87 0.207495 0.179902 26050 158493 -1 2560 20 2246 3188 216363 50274 4.44145 4.44145 -164.124 -4.44145 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.029953 0.0261403 178 53 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 7.77 vpr 63.32 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30716 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1274 18984 5788 10844 2352 63.3 MiB 0.20 0.00 4.12824 -141.991 -4.12824 4.12824 0.70 0.00077201 0.000718271 0.0752713 0.0700062 36 3095 25 6.89349e+06 366440 648988. 2245.63 3.43 0.299393 0.260906 26050 158493 -1 2625 21 2163 3095 226931 50612 4.39915 4.39915 -167.496 -4.39915 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0306794 0.026744 175 55 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.16 vpr 63.01 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30640 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.12 1082 11059 2947 6528 1584 63.0 MiB 0.11 0.00 3.54849 -125.828 -3.54849 3.54849 0.69 0.000677669 0.000630707 0.0422878 0.0393739 34 2632 21 6.89349e+06 295971 618332. 2139.56 1.29 0.139945 0.122799 25762 151098 -1 2217 20 1332 1489 108793 24989 3.3182 3.3182 -137.939 -3.3182 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0258738 0.0224976 141 55 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.56 vpr 63.11 MiB 0.03 7044 -1 -1 1 0.03 -1 -1 30592 -1 -1 22 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64628 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1177 7525 1811 5263 451 63.1 MiB 0.09 0.00 3.36019 -112.607 -3.36019 3.36019 0.70 0.000675521 0.000628071 0.0295174 0.0274609 34 2798 25 6.89349e+06 310065 618332. 2139.56 1.42 0.163449 0.141434 25762 151098 -1 2283 18 1414 1795 117720 28140 3.4858 3.4858 -130.63 -3.4858 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0242338 0.0211463 146 82 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 5.81 vpr 63.07 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30576 -1 -1 29 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64588 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.3 MiB 1.66 1237 18247 6280 9756 2211 63.1 MiB 0.18 0.00 3.073 -104.503 -3.073 3.073 0.70 0.000732143 0.000681294 0.0674823 0.0627847 34 2831 24 6.89349e+06 408721 618332. 2139.56 1.40 0.208512 0.182915 25762 151098 -1 2299 21 1654 2347 152074 35923 3.33291 3.33291 -125.287 -3.33291 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0285458 0.024816 164 52 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.29 vpr 62.87 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30524 -1 -1 27 28 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64380 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.11 946 11415 3025 7505 885 62.9 MiB 0.12 0.00 3.63875 -110.52 -3.63875 3.63875 0.70 0.000665072 0.000619782 0.0415506 0.0386904 34 2571 21 6.89349e+06 380534 618332. 2139.56 1.43 0.168639 0.146963 25762 151098 -1 2086 25 1739 2586 178469 41343 4.02696 4.02696 -138.478 -4.02696 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0305419 0.0264952 145 20 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.69 vpr 62.66 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30276 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64164 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.71 960 10163 2639 6237 1287 62.7 MiB 0.10 0.00 3.30999 -105.547 -3.30999 3.30999 0.70 0.000649822 0.000605348 0.0384168 0.0357462 36 2430 22 6.89349e+06 295971 648988. 2245.63 3.30 0.223208 0.19276 26050 158493 -1 2018 20 1763 2386 206720 44592 3.7034 3.7034 -131.935 -3.7034 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0233429 0.0203866 136 58 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.72 vpr 63.15 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30724 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1246 15151 5126 7831 2194 63.2 MiB 0.15 0.00 3.0132 -108.457 -3.0132 3.0132 0.70 0.00069218 0.000643254 0.0587392 0.0545966 34 2937 40 6.89349e+06 295971 618332. 2139.56 1.45 0.210951 0.184265 25762 151098 -1 2326 21 1664 1935 139268 32143 3.30541 3.30541 -126.145 -3.30541 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0275067 0.02389 150 88 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 7.49 vpr 63.06 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.1 MiB 0.67 1096 7756 1697 5533 526 63.1 MiB 0.09 0.00 3.55259 -123.404 -3.55259 3.55259 0.70 0.000696781 0.00064783 0.0251362 0.023384 26 3190 37 6.89349e+06 521472 503264. 1741.40 4.13 0.20045 0.172957 24322 120374 -1 2626 35 2458 4106 513529 165318 4.05425 4.05425 -151.598 -4.05425 0 0 618332. 2139.56 0.17 0.17 0.11 -1 -1 0.17 0.0414855 0.0357923 151 -1 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.90 vpr 63.33 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30748 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.5 MiB 1.15 1268 12150 3594 7463 1093 63.3 MiB 0.14 0.00 3.76028 -131.272 -3.76028 3.76028 0.70 0.000774001 0.000719331 0.0492722 0.0458236 34 3463 47 6.89349e+06 366440 618332. 2139.56 1.87 0.227026 0.197516 25762 151098 -1 2689 22 2038 2716 204367 46297 4.25189 4.25189 -159.733 -4.25189 0 0 787024. 2723.27 0.24 0.11 0.13 -1 -1 0.24 0.0439546 0.0384852 173 57 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 5.99 vpr 63.39 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30644 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.5 MiB 1.46 1498 16974 5061 9810 2103 63.4 MiB 0.18 0.00 3.97668 -140.388 -3.97668 3.97668 0.70 0.000782428 0.000727691 0.0684737 0.0636926 34 3500 28 6.89349e+06 366440 618332. 2139.56 1.72 0.229479 0.20187 25762 151098 -1 2780 24 2557 3555 249526 57133 4.37725 4.37725 -168.093 -4.37725 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0344503 0.0299475 171 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.16 vpr 63.57 MiB 0.05 7168 -1 -1 1 0.03 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.7 MiB 1.57 1322 13555 3159 9259 1137 63.6 MiB 0.14 0.00 3.38904 -116.548 -3.38904 3.38904 0.69 0.000765624 0.000711155 0.0531504 0.049438 34 4020 47 6.89349e+06 380534 618332. 2139.56 2.82 0.231357 0.201609 25762 151098 -1 2930 24 2091 3116 234932 55440 3.91355 3.91355 -149.629 -3.91355 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0337473 0.0293171 172 62 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 6.74 vpr 62.46 MiB 0.03 6880 -1 -1 1 0.03 -1 -1 30508 -1 -1 19 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.48 924 14606 5297 7499 1810 62.5 MiB 0.13 0.00 3.0572 -103.07 -3.0572 3.0572 0.70 0.000613436 0.00057168 0.0532098 0.0495908 30 2381 23 6.89349e+06 267783 556674. 1926.21 2.61 0.201173 0.175333 25186 138497 -1 2021 19 1226 1695 123248 27075 3.16061 3.16061 -123.129 -3.16061 0 0 706193. 2443.58 0.19 0.06 0.13 -1 -1 0.19 0.0231987 0.0202552 122 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.44 vpr 63.29 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30480 -1 -1 26 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64812 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.5 MiB 2.00 1231 13738 4025 7643 2070 63.3 MiB 0.14 0.00 3.93084 -128.259 -3.93084 3.93084 0.69 0.000735632 0.00068485 0.0541617 0.0503952 34 3138 39 6.89349e+06 366440 618332. 2139.56 1.71 0.214981 0.187584 25762 151098 -1 2596 21 2066 2812 211082 46265 4.39214 4.39214 -159.836 -4.39214 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0304358 0.0264096 165 58 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 6.23 vpr 63.54 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30996 -1 -1 30 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.7 MiB 1.02 1603 17986 5434 10270 2282 63.5 MiB 0.19 0.00 3.78021 -130.506 -3.78021 3.78021 0.70 0.000850194 0.00079066 0.0745761 0.0693483 36 3769 47 6.89349e+06 422815 648988. 2245.63 2.37 0.270526 0.236044 26050 158493 -1 3060 20 1888 1932 152962 32513 4.13765 4.13765 -153.359 -4.13765 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0321055 0.0278688 204 106 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 5.93 vpr 63.28 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30728 -1 -1 29 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64796 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.41 1415 14789 4457 8940 1392 63.3 MiB 0.16 0.00 4.10624 -138.636 -4.10624 4.10624 0.70 0.000782493 0.000727911 0.0584779 0.0542499 34 3352 23 6.89349e+06 408721 618332. 2139.56 1.75 0.211253 0.184643 25762 151098 -1 2655 20 2129 2738 175583 41248 4.39915 4.39915 -165.084 -4.39915 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0300686 0.0262209 186 79 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.45 vpr 63.26 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30592 -1 -1 28 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64780 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.83 1222 17376 5849 8594 2933 63.3 MiB 0.17 0.00 3.44329 -111.204 -3.44329 3.44329 0.70 0.000752481 0.000699185 0.0674064 0.0626106 34 3343 23 6.89349e+06 394628 618332. 2139.56 1.82 0.213272 0.186811 25762 151098 -1 2523 23 2555 3571 270182 58632 3.6957 3.6957 -133.466 -3.6957 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0324296 0.0281509 175 83 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 7.87 vpr 63.36 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30812 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.56 1368 9738 2878 6441 419 63.4 MiB 0.12 0.00 4.15024 -141.645 -4.15024 4.15024 0.70 0.000780623 0.000725862 0.0398291 0.036982 36 3378 22 6.89349e+06 366440 648988. 2245.63 3.51 0.266329 0.230033 26050 158493 -1 2961 23 2602 3624 292865 61539 4.75605 4.75605 -173.809 -4.75605 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0332768 0.0287949 177 58 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.23 vpr 63.29 MiB 0.05 7236 -1 -1 1 0.03 -1 -1 30448 -1 -1 30 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64808 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1300 15799 5272 7855 2672 63.3 MiB 0.16 0.00 3.58265 -112.274 -3.58265 3.58265 0.71 0.00072372 0.000673092 0.0585649 0.0543898 34 3402 33 6.89349e+06 422815 618332. 2139.56 1.66 0.211863 0.184951 25762 151098 -1 2751 19 1871 2575 198698 43099 3.5593 3.5593 -129.586 -3.5593 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0270904 0.0235981 170 81 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.60 vpr 62.44 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30592 -1 -1 16 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.47 933 14700 5059 8048 1593 62.4 MiB 0.13 0.00 3.037 -111.842 -3.037 3.037 0.70 0.00060959 0.000567119 0.0539498 0.0502355 34 2366 25 6.89349e+06 225501 618332. 2139.56 1.41 0.174737 0.153237 25762 151098 -1 2022 20 1365 2211 179993 39751 3.11526 3.11526 -131.632 -3.11526 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0234169 0.0203808 114 -1 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 7.63 vpr 63.30 MiB 0.04 7140 -1 -1 1 0.03 -1 -1 30508 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.4 MiB 1.36 1158 10087 2436 6119 1532 63.3 MiB 0.11 0.00 4.05227 -133.337 -4.05227 4.05227 0.70 0.000780115 0.000725425 0.0412642 0.0383855 38 2950 25 6.89349e+06 380534 678818. 2348.85 3.44 0.270241 0.23386 26626 170182 -1 2316 27 2552 3644 278219 63746 4.56578 4.56578 -165.325 -4.56578 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0378023 0.0328437 174 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.63 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30620 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.31 1419 16721 5040 9789 1892 63.4 MiB 0.18 0.00 4.08314 -143.84 -4.08314 4.08314 0.70 0.000776298 0.00072038 0.0682587 0.0632965 36 3333 32 6.89349e+06 352346 648988. 2245.63 3.44 0.305505 0.265487 26050 158493 -1 2837 22 2601 3608 284709 61559 4.72558 4.72558 -170.011 -4.72558 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.032166 0.0279868 176 62 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.76 vpr 62.77 MiB 0.06 6900 -1 -1 1 0.03 -1 -1 30624 -1 -1 19 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.0 MiB 1.42 880 14663 4334 8029 2300 62.8 MiB 0.13 0.00 2.7431 -91.4239 -2.7431 2.7431 0.70 0.000630466 0.000586496 0.0533434 0.0496241 34 2630 45 6.89349e+06 267783 618332. 2139.56 1.60 0.197412 0.17222 25762 151098 -1 1885 20 1266 1501 115960 27089 3.15806 3.15806 -112.174 -3.15806 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0242791 0.0211091 128 47 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 6.25 vpr 62.40 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30600 -1 -1 17 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.65 634 7648 1830 4987 831 62.4 MiB 0.09 0.00 3.1953 -106.279 -3.1953 3.1953 0.72 0.000603398 0.000562617 0.0288017 0.0268681 32 2312 47 6.89349e+06 239595 586450. 2029.24 2.91 0.233181 0.200538 25474 144626 -1 1715 20 1459 2276 168307 41195 3.37211 3.37211 -127.135 -3.37211 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0229319 0.0198787 112 -1 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 7.15 vpr 63.18 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30396 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.4 MiB 1.26 1187 9989 2768 6570 651 63.2 MiB 0.11 0.00 3.44139 -113.851 -3.44139 3.44139 0.69 0.000740715 0.000689695 0.040145 0.0373768 36 2593 24 6.89349e+06 352346 648988. 2245.63 3.16 0.250715 0.216968 26050 158493 -1 2254 20 1683 2106 143742 33420 3.7595 3.7595 -136.057 -3.7595 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0280174 0.0244011 158 56 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.60 vpr 63.57 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30500 -1 -1 26 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.7 MiB 1.35 1360 11748 3227 7768 753 63.6 MiB 0.13 0.00 4.07324 -130.543 -4.07324 4.07324 0.70 0.00076758 0.000714023 0.0474473 0.0441193 34 3282 32 6.89349e+06 366440 618332. 2139.56 1.47 0.176205 0.154004 25762 151098 -1 2482 22 1818 2244 149481 35599 4.70905 4.70905 -160.604 -4.70905 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0314768 0.0274 170 81 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 7.72 vpr 63.25 MiB 0.05 7040 -1 -1 1 0.03 -1 -1 30684 -1 -1 41 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1115 18383 5415 8358 4610 63.2 MiB 0.16 0.00 3.94478 -129.743 -3.94478 3.94478 0.72 0.000799183 0.000735111 0.0615822 0.0570899 36 3099 28 6.89349e+06 577847 648988. 2245.63 4.15 0.228809 0.200421 26050 158493 -1 2242 24 2107 3606 243899 61678 4.69989 4.69989 -163.367 -4.69989 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0345848 0.0300882 183 -1 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 7.24 vpr 63.07 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64580 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.3 MiB 1.46 1196 17117 5643 8880 2594 63.1 MiB 0.17 0.00 3.1264 -106.114 -3.1264 3.1264 0.70 0.000717427 0.000666462 0.064363 0.0598852 40 2463 23 6.89349e+06 380534 706193. 2443.58 2.93 0.270268 0.235606 26914 176310 -1 2416 18 1704 2427 189656 42483 3.02141 3.02141 -119.681 -3.02141 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0254603 0.022218 160 47 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.66 vpr 62.40 MiB 0.04 6808 -1 -1 1 0.03 -1 -1 30784 -1 -1 22 27 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63896 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 717 13206 3506 8495 1205 62.4 MiB 0.11 0.00 3.34299 -95.8941 -3.34299 3.34299 0.70 0.000571582 0.000532156 0.0446169 0.0415769 28 2042 25 6.89349e+06 310065 531479. 1839.03 1.00 0.114055 0.100691 24610 126494 -1 1761 20 1422 1991 151265 38797 4.0213 4.0213 -130.439 -4.0213 0 0 648988. 2245.63 0.17 0.07 0.11 -1 -1 0.17 0.0218077 0.0188843 112 26 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.32 vpr 63.73 MiB 0.07 7284 -1 -1 1 0.03 -1 -1 30820 -1 -1 32 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.56 1764 18930 5418 11040 2472 63.7 MiB 0.22 0.00 3.95894 -136.322 -3.95894 3.95894 0.70 0.000907723 0.000843511 0.0816503 0.0758265 36 4071 28 6.89349e+06 451003 648988. 2245.63 1.78 0.22809 0.200901 26050 158493 -1 3190 21 2363 3377 226115 50137 4.47245 4.47245 -162.907 -4.47245 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0369059 0.0320756 219 85 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.49 vpr 63.52 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30764 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65044 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.9 MiB 1.92 1474 11596 3243 7129 1224 63.5 MiB 0.13 0.00 4.10624 -137.211 -4.10624 4.10624 0.70 0.000842175 0.000775516 0.0486414 0.0450832 34 3673 33 6.89349e+06 436909 618332. 2139.56 1.72 0.221514 0.192172 25762 151098 -1 2897 22 2358 2739 203859 46810 4.55275 4.55275 -163.902 -4.55275 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0340347 0.0295234 201 105 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.27 vpr 63.01 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30608 -1 -1 22 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1189 9725 2520 6822 383 63.0 MiB 0.10 0.00 3.32419 -112.929 -3.32419 3.32419 0.70 0.000685365 0.000636981 0.0373597 0.0347224 36 2852 25 6.89349e+06 310065 648988. 2245.63 1.79 0.172795 0.150105 26050 158493 -1 2409 18 1651 1885 168895 35423 3.3557 3.3557 -134.966 -3.3557 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0243079 0.0212134 150 86 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 6.98 vpr 63.19 MiB 0.05 6888 -1 -1 1 0.03 -1 -1 30500 -1 -1 23 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.53 1132 11799 3237 7477 1085 63.2 MiB 0.13 0.00 3.66075 -124.245 -3.66075 3.66075 0.71 0.00072254 0.000672217 0.0468158 0.043551 34 2956 47 6.89349e+06 324158 618332. 2139.56 2.71 0.266974 0.231279 25762 151098 -1 2366 21 1704 2431 174696 40994 3.97676 3.97676 -146.839 -3.97676 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0287371 0.0250239 151 31 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.48 MiB 0.05 7156 -1 -1 1 0.03 -1 -1 30844 -1 -1 30 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65000 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.8 MiB 1.38 1415 17523 5456 10422 1645 63.5 MiB 0.19 0.00 3.68095 -127.804 -3.68095 3.68095 0.70 0.000839343 0.000781153 0.0730576 0.0680506 34 3370 26 6.89349e+06 422815 618332. 2139.56 1.72 0.240229 0.210504 25762 151098 -1 2770 21 2307 3315 230830 51953 4.07716 4.07716 -152.655 -4.07716 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0333346 0.0289317 193 50 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.34 vpr 63.23 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30552 -1 -1 28 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64752 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.4 MiB 1.68 1138 8331 2077 5720 534 63.2 MiB 0.09 0.00 3.48849 -110.607 -3.48849 3.48849 0.69 0.00071702 0.000667249 0.0319112 0.0297216 36 2874 29 6.89349e+06 394628 648988. 2245.63 1.96 0.178591 0.154716 26050 158493 -1 2439 20 1575 2447 171824 38595 3.8597 3.8597 -135.066 -3.8597 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0277404 0.0241483 162 50 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 5.89 vpr 63.27 MiB 0.07 7136 -1 -1 1 0.03 -1 -1 30732 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.4 MiB 1.31 1423 11684 3369 7494 821 63.3 MiB 0.13 0.00 4.01094 -140.385 -4.01094 4.01094 0.70 0.000778253 0.000724435 0.0463438 0.043142 36 3479 37 6.89349e+06 394628 648988. 2245.63 1.76 0.213388 0.186002 26050 158493 -1 2777 22 1911 2632 209125 44370 3.99205 3.99205 -157.474 -3.99205 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0320029 0.0278577 173 61 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 5.93 vpr 63.36 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30688 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.62 1383 18247 5278 11310 1659 63.4 MiB 0.20 0.00 2.96065 -108.556 -2.96065 2.96065 0.70 0.000788017 0.000731077 0.0718324 0.0665571 40 2714 21 6.89349e+06 380534 706193. 2443.58 1.43 0.18958 0.167423 26914 176310 -1 2613 19 1990 2785 210198 46848 3.14501 3.14501 -128.453 -3.14501 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0284831 0.0248447 175 61 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.20 vpr 62.52 MiB 0.05 6988 -1 -1 1 0.03 -1 -1 30752 -1 -1 21 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64024 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.15 858 15212 5499 7330 2383 62.5 MiB 0.13 0.00 3.0572 -99.7396 -3.0572 3.0572 0.69 0.000603181 0.000561621 0.0530972 0.0494862 34 1975 23 6.89349e+06 295971 618332. 2139.56 1.34 0.170051 0.148424 25762 151098 -1 1656 21 1510 1966 127606 29995 3.06831 3.06831 -115.765 -3.06831 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.023852 0.0206751 118 28 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.30 vpr 63.00 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30320 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.3 MiB 1.08 1132 6306 1445 4549 312 63.0 MiB 0.08 0.00 3.61399 -107.656 -3.61399 3.61399 0.75 0.000659082 0.000612724 0.0248434 0.0231195 34 2778 22 6.89349e+06 281877 618332. 2139.56 1.49 0.137117 0.11867 25762 151098 -1 2267 20 1680 1965 145343 33816 3.47 3.47 -125.661 -3.47 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252109 0.0219168 136 79 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.13 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30568 -1 -1 24 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.20 1180 16023 5115 8581 2327 63.1 MiB 0.16 0.00 3.72305 -126.858 -3.72305 3.72305 0.69 0.000724464 0.000673741 0.0623043 0.0579476 36 2674 22 6.89349e+06 338252 648988. 2245.63 3.22 0.26716 0.232769 26050 158493 -1 2179 22 1794 2604 173916 39235 3.79986 3.79986 -144.634 -3.79986 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297638 0.0258943 154 29 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.09 vpr 62.65 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30592 -1 -1 21 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 24.1 MiB 1.08 942 13254 4882 6404 1968 62.6 MiB 0.12 0.00 2.7321 -88.6094 -2.7321 2.7321 0.70 0.000602307 0.000560615 0.0467447 0.0435131 34 2263 39 6.89349e+06 295971 618332. 2139.56 1.34 0.178404 0.155184 25762 151098 -1 1818 20 1183 1385 100464 23264 2.76496 2.76496 -100.567 -2.76496 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0213267 0.0185524 123 48 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.98 vpr 62.69 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.2 MiB 1.60 1031 12542 3547 7125 1870 62.7 MiB 0.12 0.00 3.0872 -111.93 -3.0872 3.0872 0.70 0.000645723 0.000601391 0.0474723 0.0442127 34 2619 45 6.89349e+06 253689 618332. 2139.56 1.66 0.194638 0.169633 25762 151098 -1 2161 21 1681 2386 182085 39232 3.25986 3.25986 -134.233 -3.25986 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0256174 0.0222476 127 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.10 vpr 63.32 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30644 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.5 MiB 1.47 1287 17175 4781 10450 1944 63.3 MiB 0.18 0.00 3.37794 -116.765 -3.37794 3.37794 0.70 0.000740858 0.000687764 0.0661859 0.0615322 34 3220 29 6.89349e+06 380534 618332. 2139.56 1.76 0.224013 0.195969 25762 151098 -1 2650 21 2204 3021 243995 53250 3.81335 3.81335 -146.826 -3.81335 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0296994 0.0258732 164 60 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.32 vpr 62.56 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30468 -1 -1 21 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64060 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 1008 10515 2970 6860 685 62.6 MiB 0.10 0.00 2.66772 -92.8854 -2.66772 2.66772 0.70 0.000630287 0.00058592 0.0378872 0.0352442 34 2434 45 6.89349e+06 295971 618332. 2139.56 1.42 0.151202 0.131731 25762 151098 -1 2054 19 1225 1506 126240 28091 3.05956 3.05956 -112.938 -3.05956 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0230226 0.0199933 125 49 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 7.50 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30660 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.3 MiB 1.45 1285 11375 3243 7317 815 63.1 MiB 0.12 0.00 3.45549 -118.245 -3.45549 3.45549 0.70 0.000741528 0.000690312 0.0454159 0.0419433 30 3091 21 6.89349e+06 352346 556674. 1926.21 3.35 0.230156 0.199818 25186 138497 -1 2510 22 1531 2195 143849 32578 3.503 3.503 -135.43 -3.503 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0305175 0.0266003 162 56 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.37 vpr 63.42 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.7 MiB 1.64 1503 15004 3761 8780 2463 63.4 MiB 0.16 0.00 4.11342 -131.718 -4.11342 4.11342 0.73 0.000792781 0.000737014 0.0583869 0.0542756 34 3637 43 6.89349e+06 436909 618332. 2139.56 1.88 0.234724 0.20461 25762 151098 -1 2936 21 2414 3506 246991 55852 4.18984 4.18984 -157.022 -4.18984 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0313596 0.027275 185 88 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.55 vpr 62.94 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.23 1130 13477 3780 7902 1795 62.9 MiB 0.13 0.00 2.88675 -103.845 -2.88675 2.88675 0.70 0.00066449 0.000618099 0.0498453 0.0463646 34 2817 49 6.89349e+06 295971 618332. 2139.56 1.61 0.205062 0.178728 25762 151098 -1 2368 21 1820 2532 202384 43726 3.11876 3.11876 -123.177 -3.11876 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0263587 0.0228864 137 54 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.26 vpr 63.14 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30252 -1 -1 20 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1094 9234 2349 6229 656 63.1 MiB 0.10 0.00 3.0652 -108.154 -3.0652 3.0652 0.69 0.000675938 0.000628104 0.0358472 0.033351 34 2687 36 6.89349e+06 281877 618332. 2139.56 1.40 0.179477 0.155808 25762 151098 -1 2255 19 1547 1831 152972 33219 3.04636 3.04636 -125.393 -3.04636 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246409 0.0214401 139 60 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.57 vpr 63.35 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30920 -1 -1 27 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.30 1302 16207 5602 8499 2106 63.3 MiB 0.16 0.00 3.75305 -132.428 -3.75305 3.75305 0.70 0.00076404 0.000710067 0.0631802 0.0587216 34 3213 28 6.89349e+06 380534 618332. 2139.56 1.50 0.19571 0.172044 25762 151098 -1 2566 21 2077 2590 181765 41362 4.05696 4.05696 -159.677 -4.05696 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0303153 0.0263655 178 49 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.58 vpr 63.12 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30652 -1 -1 26 29 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.4 MiB 1.43 1201 11991 3478 7371 1142 63.1 MiB 0.12 0.00 2.92765 -97.7496 -2.92765 2.92765 0.70 0.000714639 0.000664438 0.0467249 0.0434798 34 2687 22 6.89349e+06 366440 618332. 2139.56 1.41 0.183837 0.160475 25762 151098 -1 2237 19 1750 2287 152369 34798 2.94006 2.94006 -116.356 -2.94006 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262013 0.0228295 157 54 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.30 vpr 63.42 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30776 -1 -1 29 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.22 1505 18573 5614 10502 2457 63.4 MiB 0.20 0.00 3.96268 -136.341 -3.96268 3.96268 0.75 0.000853178 0.000792814 0.0781742 0.0726122 36 3945 26 6.89349e+06 408721 648988. 2245.63 2.12 0.247658 0.216778 26050 158493 -1 3110 22 2502 2906 212252 47581 4.60149 4.60149 -169.03 -4.60149 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0350166 0.0303809 203 117 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.99 vpr 62.25 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30488 -1 -1 16 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63740 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.6 MiB 0.51 879 11402 3694 5860 1848 62.2 MiB 0.10 0.00 2.34777 -87.9271 -2.34777 2.34777 0.70 0.000572745 0.000533426 0.0402291 0.0374804 30 2128 19 6.89349e+06 225501 556674. 1926.21 0.82 0.105655 0.0934028 25186 138497 -1 1759 21 1260 2060 139246 30583 2.62551 2.62551 -108.458 -2.62551 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0229369 0.0199181 104 -1 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.14 vpr 63.35 MiB 0.09 7088 -1 -1 1 0.09 -1 -1 30292 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1316 17066 5532 8557 2977 63.4 MiB 0.18 0.00 4.40923 -144.475 -4.40923 4.40923 0.70 0.000776271 0.000721632 0.066914 0.0619782 34 3676 33 6.89349e+06 394628 618332. 2139.56 1.60 0.18926 0.166223 25762 151098 -1 2763 23 2479 3295 251502 55477 4.85274 4.85274 -174.823 -4.85274 0 0 787024. 2723.27 0.22 0.10 0.13 -1 -1 0.22 0.0335058 0.0291404 179 89 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.73 vpr 63.47 MiB 0.08 7044 -1 -1 1 0.11 -1 -1 30408 -1 -1 24 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.7 MiB 1.94 1327 17638 6261 9008 2369 63.5 MiB 0.17 0.00 3.82148 -134.143 -3.82148 3.82148 0.70 0.000707016 0.000656389 0.06672 0.0619544 38 3045 23 6.89349e+06 338252 678818. 2348.85 1.76 0.205708 0.180411 26626 170182 -1 2570 22 2360 2932 225287 47845 4.1616 4.1616 -159.239 -4.1616 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0297516 0.0258981 161 93 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.09 vpr 63.25 MiB 0.09 7072 -1 -1 1 0.11 -1 -1 30528 -1 -1 25 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.4 MiB 1.48 1404 16127 4906 9154 2067 63.3 MiB 0.17 0.00 3.00785 -110.457 -3.00785 3.00785 0.70 0.000763027 0.000708376 0.0649697 0.0603545 34 3187 30 6.89349e+06 352346 618332. 2139.56 1.54 0.226395 0.197756 25762 151098 -1 2586 19 1851 2453 183287 40490 3.26776 3.26776 -135.361 -3.26776 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0283077 0.0247238 170 59 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 7.98 vpr 63.33 MiB 0.10 7360 -1 -1 1 0.08 -1 -1 30908 -1 -1 33 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.8 MiB 1.44 1658 21853 7761 11309 2783 63.3 MiB 0.25 0.00 4.16434 -145.014 -4.16434 4.16434 0.70 0.000909268 0.000845655 0.0925029 0.0860398 38 3620 32 6.89349e+06 465097 678818. 2348.85 3.47 0.378706 0.329934 26626 170182 -1 3029 21 2356 2829 189975 42357 4.69665 4.69665 -180.328 -4.69665 0 0 902133. 3121.57 0.22 0.09 0.10 -1 -1 0.22 0.0360793 0.0313831 224 81 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.93 vpr 62.24 MiB 0.09 6848 -1 -1 1 0.13 -1 -1 30256 -1 -1 16 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 0.94 811 13358 4243 7085 2030 62.2 MiB 0.10 0.00 2.56796 -80.5183 -2.56796 2.56796 0.70 0.000527973 0.000492532 0.0441672 0.0411433 34 1759 19 6.89349e+06 225501 618332. 2139.56 1.16 0.143613 0.125403 25762 151098 -1 1549 17 722 734 57569 13583 2.42407 2.42407 -92.043 -2.42407 0 0 787024. 2723.27 0.20 0.04 0.13 -1 -1 0.20 0.0178304 0.0154704 93 51 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.26 vpr 62.55 MiB 0.08 6792 -1 -1 1 0.12 -1 -1 30248 -1 -1 21 30 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64048 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.03 939 14663 4555 8160 1948 62.5 MiB 0.13 0.00 3.34479 -111.77 -3.34479 3.34479 0.70 0.000612552 0.000570152 0.0518615 0.0482969 34 2084 23 6.89349e+06 295971 618332. 2139.56 1.31 0.171286 0.149712 25762 151098 -1 1840 18 1385 2035 133628 31592 3.54975 3.54975 -134.383 -3.54975 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0218763 0.0190745 124 29 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.63 vpr 62.78 MiB 0.08 6700 -1 -1 1 0.13 -1 -1 30244 -1 -1 18 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1049 11118 2860 7705 553 62.8 MiB 0.12 0.00 3.42319 -119.68 -3.42319 3.42319 0.70 0.000643046 0.000598127 0.042582 0.0396568 34 2967 35 6.89349e+06 253689 618332. 2139.56 1.79 0.180505 0.157071 25762 151098 -1 2279 21 1978 3449 247916 55786 3.611 3.611 -143.254 -3.611 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0257815 0.0224084 129 31 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.72 vpr 62.24 MiB 0.08 6972 -1 -1 1 0.12 -1 -1 30516 -1 -1 24 25 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63732 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 1.06 626 13731 3794 8862 1075 62.2 MiB 0.12 0.00 3.0352 -80.8507 -3.0352 3.0352 0.70 0.000531499 0.000495429 0.0438587 0.0409243 30 1984 24 6.89349e+06 338252 556674. 1926.21 0.81 0.108934 0.0962486 25186 138497 -1 1437 19 918 1238 82597 19971 3.10271 3.10271 -101.019 -3.10271 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.0196843 0.0170513 107 19 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 6.95 vpr 63.48 MiB 0.09 7200 -1 -1 1 0.11 -1 -1 30632 -1 -1 28 32 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.20 1501 18101 5858 9877 2366 63.5 MiB 0.19 0.00 3.78745 -132.366 -3.78745 3.78745 0.70 0.000804941 0.000747336 0.0728796 0.0676559 36 3749 22 6.89349e+06 394628 648988. 2245.63 1.67 0.198472 0.174943 26050 158493 -1 3065 24 2671 3877 262209 58973 4.21366 4.21366 -160.918 -4.21366 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0354436 0.0307574 190 84 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 8.03 vpr 63.34 MiB 0.09 7272 -1 -1 1 0.09 -1 -1 30472 -1 -1 27 31 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.6 MiB 1.66 1353 6120 1183 4662 275 63.3 MiB 0.08 0.00 3.92478 -128.199 -3.92478 3.92478 0.69 0.000780265 0.000725131 0.0262479 0.0244122 38 2988 24 6.89349e+06 380534 678818. 2348.85 3.35 0.251664 0.216427 26626 170182 -1 2709 21 2160 3003 200761 45247 4.01729 4.01729 -149.881 -4.01729 0 0 902133. 3121.57 0.24 0.09 0.17 -1 -1 0.24 0.0316324 0.0275811 183 88 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt index 135ed2280ca..87f3082917d 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_circuit_list/config/golden_results.txt @@ -1,15 +1,15 @@ - 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 total_power routing_power_perc clock_power_perc tile_power_perc - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 1158.34 vpr 654.19 MiB 19.13 380172 -1 -1 22 623.27 -1 -1 153916 -1 -1 2560 257 0 11 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 669888 257 32 32041 31556 1 18759 2860 61 61 3721 clb auto 298.5 MiB 33.84 251753 1991476 696912 1265671 28893 654.2 MiB 76.52 0.64 16.5734 -22933.9 -16.5734 16.5734 46.82 0.105627 0.0935122 11.9299 9.92482 80 384548 22 2.18169e+08 1.42327e+08 2.00267e+07 5382.08 197.59 46.9746 39.1945 471644 4196100 -1 361024 19 92659 411237 25095698 4152723 18.7755 18.7755 -25578.3 -18.7755 0 0 2.52656e+07 6790.00 13.60 14.58 4.74 -1 -1 13.60 6.16129 5.35847 0.1659 0.4519 0.02586 0.5223 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 210.67 vpr 146.54 MiB 0.60 63028 -1 -1 18 108.49 -1 -1 71564 -1 -1 547 36 0 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 150052 36 100 6600 6700 1 2892 683 30 30 900 clb auto 82.9 MiB 4.50 46820 253187 73719 164339 15129 118.4 MiB 6.06 0.06 8.52559 -2631.69 -8.52559 8.52559 3.99 0.0212439 0.0189993 2.12129 1.8644 74 71372 20 4.8774e+07 2.948e+07 4.36038e+06 4844.86 61.15 7.41705 6.31772 108532 889332 -1 67949 15 13108 65279 3135957 404464 9.50971 9.50971 -2971.05 -9.50971 0 0 5.47246e+06 6080.51 2.37 1.92 0.93 -1 -1 2.37 1.02105 0.902468 0.02514 0.4084 0.04387 0.5478 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 6.49 vpr 67.57 MiB 0.73 47508 -1 -1 2 0.52 -1 -1 41768 -1 -1 84 114 0 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69188 114 193 455 648 1 311 391 13 13 169 clb auto 29.3 MiB 0.09 834 108995 33700 58062 17233 67.6 MiB 0.29 0.00 1.88448 -225.656 -1.88448 1.88448 0.43 0.00112059 0.00104845 0.089609 0.0835437 34 2300 28 6.63067e+06 4.5271e+06 352978. 2088.63 1.13 0.348089 0.321345 14332 67287 -1 2036 17 818 1175 94455 25733 2.46912 2.46912 -288.033 -2.46912 0 0 434699. 2572.18 0.14 0.08 0.06 -1 -1 0.14 0.0433326 0.0403127 0.005685 0.4496 0.1079 0.4426 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.74 vpr 65.92 MiB 0.05 9620 -1 -1 3 0.33 -1 -1 39736 -1 -1 68 99 1 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67504 99 130 363 493 1 258 298 12 12 144 clb auto 27.5 MiB 0.09 672 70943 23318 36188 11437 65.9 MiB 0.20 0.00 1.86328 -197.512 -1.86328 1.86328 0.36 0.000739543 0.000679661 0.0568138 0.0522351 50 1455 11 5.66058e+06 4.21279e+06 406292. 2821.48 0.92 0.208883 0.188229 13526 77840 -1 1389 8 490 582 50837 17408 2.46581 2.46581 -230.196 -2.46581 0 0 520805. 3616.70 0.15 0.04 0.09 -1 -1 0.15 0.0203596 0.0189584 0.008146 0.2397 0.0807 0.6796 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 13.51 vpr 70.20 MiB 0.03 9600 -1 -1 15 0.45 -1 -1 38172 -1 -1 40 162 0 5 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71884 162 96 999 932 1 694 303 16 16 256 mult_36 auto 31.8 MiB 0.30 5320 84714 26090 52054 6570 70.2 MiB 0.58 0.01 19.648 -1708.97 -19.648 19.648 0.83 0.00279075 0.00261198 0.247434 0.229988 48 12138 35 1.21132e+07 4.13576e+06 756778. 2956.16 6.97 1.00129 0.92608 25228 149258 -1 9432 18 3067 6192 1620719 406139 22.3982 22.3982 -1959.56 -22.3982 0 0 968034. 3781.38 0.31 0.48 0.16 -1 -1 0.31 0.131788 0.123742 0.007619 0.3575 0.0172 0.6253 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 12.64 vpr 68.47 MiB 0.03 8952 -1 -1 14 0.32 -1 -1 37416 -1 -1 26 66 0 7 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70116 66 96 719 590 1 526 195 18 18 324 mult_36 auto 30.2 MiB 0.21 4682 40310 10498 25365 4447 68.5 MiB 0.38 0.01 15.8793 -906.107 -15.8793 15.8793 1.13 0.00248632 0.00233267 0.190053 0.178212 42 10912 21 1.57076e+07 4.17324e+06 871282. 2689.14 5.79 0.765043 0.713755 31320 173624 -1 9682 19 2916 6331 3327264 793878 17.6741 17.6741 -1048.13 -17.6741 0 0 1.09181e+06 3369.80 0.42 0.85 0.18 -1 -1 0.42 0.115787 0.109251 0.009271 0.3219 0.02028 0.6578 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1091.30 vpr 562.31 MiB 18.13 219300 -1 -1 127 353.11 -1 -1 95968 -1 -1 2029 114 44 8 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 575804 114 102 29627 29353 1 15978 2297 55 55 3025 clb auto 267.3 MiB 29.49 234003 1683836 607119 1051442 25275 546.8 MiB 48.62 0.37 68.3523 -53170 -68.3523 68.3523 37.08 0.0769347 0.0675732 9.85486 8.1608 100 339702 26 1.75831e+08 1.36634e+08 1.97786e+07 6538.36 456.99 34.7464 28.6617 423192 4219482 -1 310907 20 61848 243643 50879072 12045971 78.5012 78.5012 -64967.5 -78.5012 -26.3502 -0.295467 2.49494e+07 8247.73 12.68 22.05 5.38 -1 -1 12.68 5.08322 4.36898 0.1072 0.426 0.01055 0.5635 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 106.26 vpr 335.35 MiB 0.96 71632 -1 -1 5 12.05 -1 -1 56032 -1 -1 456 506 47 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 343396 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 55.5 MiB 3.54 14659 1179232 578011 414480 186741 335.3 MiB 4.86 0.05 6.55594 -1840.74 -6.55594 6.55594 33.92 0.0155105 0.0138677 2.17227 1.94208 38 22285 13 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 21.13 5.99958 5.48447 251304 1421084 -1 21296 15 3873 4877 3915686 1028816 7.66154 7.66154 -2250.35 -7.66154 -5.14637 -0.200681 8.69095e+06 3476.38 4.85 1.73 1.50 -1 -1 4.85 0.715915 0.670325 0.1607 0.1407 0.0393 0.82 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 22.27 vpr 72.46 MiB 0.13 16876 -1 -1 2 0.14 -1 -1 37528 -1 -1 26 311 15 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74204 311 156 972 1128 1 953 508 28 28 784 memory auto 33.6 MiB 0.51 8955 207160 77780 119683 9697 72.5 MiB 1.03 0.01 3.69226 -4200.25 -3.69226 3.69226 3.06 0.00435808 0.0038307 0.437679 0.381329 40 15069 15 4.25198e+07 9.62124e+06 2.13295e+06 2720.61 8.88 1.48424 1.3242 76686 431115 -1 14030 14 2950 3385 3423965 942900 4.17303 4.17303 -5108.83 -4.17303 -15.3521 -0.341744 2.67004e+06 3405.67 1.14 1.01 0.44 -1 -1 1.14 0.168866 0.154959 0.08846 0.1599 0.01826 0.8219 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 25.40 vpr 78.77 MiB 0.30 30468 -1 -1 7 3.68 -1 -1 41436 -1 -1 167 193 5 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80660 193 205 2232 2437 1 1226 570 20 20 400 memory auto 41.1 MiB 1.09 9257 243856 84624 132269 26963 78.8 MiB 1.61 0.02 4.68834 -2604.89 -4.68834 4.68834 1.42 0.00549349 0.00490057 0.6172 0.54805 48 18668 42 2.07112e+07 1.17403e+07 1.23055e+06 3076.38 9.54 2.18351 1.94145 40448 245963 -1 15042 14 4488 11178 1008301 239107 5.44858 5.44858 -3144.45 -5.44858 -7.47454 -0.340786 1.57502e+06 3937.55 0.60 0.48 0.26 -1 -1 0.60 0.232065 0.214211 0.02836 0.2152 0.02605 0.7588 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 91.48 vpr 104.16 MiB 0.58 41288 -1 -1 27 7.16 -1 -1 46616 -1 -1 246 385 2 1 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 106664 385 394 3979 4310 1 2376 1028 27 27 729 io auto 56.3 MiB 2.69 31559 555930 205259 326847 23824 93.4 MiB 4.66 0.05 12.6971 -11648.5 -12.6971 12.6971 2.96 0.0132104 0.0122326 1.4659 1.31319 80 50044 42 3.93038e+07 1.47499e+07 3.74040e+06 5130.86 55.87 6.78959 6.09417 91129 774047 -1 45214 14 10349 36002 3490124 694286 14.2907 14.2907 -13368.7 -14.2907 0 0 4.71674e+06 6470.15 1.93 1.58 0.83 -1 -1 1.93 0.59438 0.548677 0.02316 0.4663 0.02683 0.5069 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 30.51 vpr 80.99 MiB 0.36 33012 -1 -1 8 2.23 -1 -1 40948 -1 -1 135 214 0 9 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82932 214 305 2625 2741 1 1503 663 22 22 484 mult_36 auto 43.1 MiB 1.11 12253 283785 97100 170993 15692 81.0 MiB 2.03 0.02 4.58213 -2427.86 -4.58213 4.58213 1.96 0.00541307 0.00486783 0.666164 0.60094 58 23474 23 2.50602e+07 1.08397e+07 1.81652e+06 3753.13 11.55 2.6726 2.4104 52870 368945 -1 20825 16 5391 12049 3054783 707858 4.9099 4.9099 -2928.51 -4.9099 0 0 2.31597e+06 4785.06 1.01 0.92 0.39 -1 -1 1.01 0.257046 0.238113 0.0229 0.4785 0.04658 0.4749 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 711.88 abc 96.87 MiB 1.28 38872 -1 -1 20 681.57 -1 -1 99196 -1 -1 233 38 0 0 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89216 38 36 3404 3440 1 1306 307 20 20 400 clb auto 50.6 MiB 1.72 14482 67582 17860 46315 3407 87.1 MiB 1.16 0.02 11.6953 -4259.7 -11.6953 11.6953 1.31 0.00607578 0.00539079 0.485389 0.418292 56 24652 33 2.07112e+07 1.25573e+07 1.41661e+06 3541.53 10.70 2.60228 2.26566 42444 283345 -1 21506 17 5569 21566 763045 127653 13.9544 13.9544 -5007.48 -13.9544 0 0 1.80858e+06 4521.44 0.64 0.66 0.30 -1 -1 0.64 0.42644 0.386599 0.0105 0.3852 0.02967 0.5852 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 9174.66 vpr 1.83 GiB 70.62 924196 -1 -1 75 7360.39 -1 -1 449884 -1 -1 7392 36 159 27 success 5175469-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-15T16:56:44 gh-actions-runner-vtr-auto-spawned222 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1915440 36 356 135102 133883 1 43386 7970 102 102 10404 clb auto 907.2 MiB 56.32 532514 10830306 4429071 6317643 83592 1870.5 MiB 143.40 1.02 61.2567 -311810 -61.2567 61.2567 88.47 0.136504 0.116673 21.1957 17.3482 88 719636 49 6.36957e+08 4.9617e+08 6.24837e+07 6005.73 1099.15 66.5978 55.11 1388044 13170686 -1 678648 19 156908 481793 78344450 16675821 68.8704 68.8704 -385254 -68.8704 -0.103902 -0.0259755 7.83483e+07 7530.59 27.93 22.78 8.75 -1 -1 27.93 8.39631 7.32436 0.3021 0.3871 0.01337 0.5995 +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 total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml bgm.v common 901.84 vpr 658.58 MiB 27.76 379808 -1 -1 22 443.63 -1 -1 154224 -1 -1 2560 257 0 11 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 674388 257 32 32041 31556 1 18759 2860 61 61 3721 clb auto 295.9 MiB 34.39 252899 2011768 702640 1279151 29977 658.6 MiB 56.63 0.51 15.7285 -22748.5 -15.7285 15.7285 34.02 0.108599 0.0906392 11.5975 9.71043 80 389035 32 2.18169e+08 1.42327e+08 2.00267e+07 5382.08 161.39 45.6163 38.0542 471644 4196100 -1 363812 19 95803 425818 22940970 3678854 17.8727 17.8727 -25458.3 -17.8727 0 0 2.52656e+07 6790.00 7.71 11.64 3.89 -1 -1 7.71 4.93721 4.29875 0.1698 0.4556 0.02643 0.518 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 138.11 vpr 145.16 MiB 0.79 62824 -1 -1 18 67.84 -1 -1 66132 -1 -1 547 36 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 148644 36 100 6600 6700 1 2892 683 30 30 900 clb auto 80.5 MiB 4.34 46887 262205 75783 170066 16356 116.3 MiB 4.66 0.05 8.65971 -2582.56 -8.65971 8.65971 2.71 0.0190569 0.0170894 1.8772 1.65347 74 70481 23 4.8774e+07 2.948e+07 4.36038e+06 4844.86 32.71 6.21532 5.40062 108532 889332 -1 67475 15 12777 61906 2956048 382256 10.2648 10.2648 -2895.78 -10.2648 0 0 5.47246e+06 6080.51 1.36 1.56 0.78 -1 -1 1.36 0.800871 0.719925 0.02468 0.4108 0.04154 0.5477 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 7.56 vpr 65.02 MiB 0.97 47240 -1 -1 2 0.46 -1 -1 36536 -1 -1 84 114 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66576 114 193 455 648 1 311 391 13 13 169 clb auto 26.6 MiB 0.11 834 108995 33700 58062 17233 65.0 MiB 0.37 0.01 1.88448 -225.656 -1.88448 1.88448 0.34 0.00181251 0.00172715 0.14333 0.136133 34 2338 25 6.63067e+06 4.5271e+06 352978. 2088.63 1.16 0.547368 0.510293 14332 67287 -1 2080 20 778 1106 85902 22956 2.44268 2.44268 -290.771 -2.44268 0 0 434699. 2572.18 0.10 0.11 0.07 -1 -1 0.10 0.073808 0.0686686 0.005797 0.4556 0.1069 0.4375 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.85 vpr 64.12 MiB 0.09 9372 -1 -1 3 0.26 -1 -1 34436 -1 -1 68 99 1 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65660 99 130 363 493 1 258 298 12 12 144 clb auto 25.5 MiB 0.10 672 70943 23318 36188 11437 64.1 MiB 0.26 0.00 1.86328 -197.512 -1.86328 1.86328 0.28 0.0012914 0.00122227 0.0962865 0.0911407 50 1447 13 5.66058e+06 4.21279e+06 406292. 2821.48 0.91 0.350514 0.322685 13526 77840 -1 1411 8 508 601 50867 17185 2.46581 2.46581 -230.409 -2.46581 0 0 520805. 3616.70 0.10 0.05 0.08 -1 -1 0.10 0.0271191 0.0251404 0.008179 0.2428 0.08037 0.6768 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 12.10 vpr 68.04 MiB 0.06 9392 -1 -1 15 0.35 -1 -1 34780 -1 -1 40 162 0 5 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69668 162 96 999 932 1 694 303 16 16 256 mult_36 auto 29.7 MiB 0.28 5320 84714 26090 52054 6570 68.0 MiB 0.63 0.01 19.648 -1708.97 -19.648 19.648 0.56 0.00347063 0.00327419 0.305628 0.288184 48 12565 43 1.21132e+07 4.13576e+06 756778. 2956.16 6.08 1.21683 1.12845 25228 149258 -1 9569 19 3044 6141 1596003 401584 22.4159 22.4159 -1993.64 -22.4159 0 0 968034. 3781.38 0.21 0.52 0.14 -1 -1 0.21 0.159814 0.149092 0.007632 0.3586 0.01716 0.6242 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 11.45 vpr 66.44 MiB 0.05 8636 -1 -1 14 0.27 -1 -1 34468 -1 -1 26 66 0 7 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68036 66 96 719 590 1 526 195 18 18 324 mult_36 auto 28.0 MiB 0.21 4682 40310 10498 25365 4447 66.4 MiB 0.40 0.01 15.8793 -906.107 -15.8793 15.8793 0.75 0.00295299 0.00279978 0.22275 0.21117 42 10852 23 1.57076e+07 4.17324e+06 871282. 2689.14 5.44 0.974243 0.909813 31320 173624 -1 9789 20 3049 6653 3536965 840348 17.6352 17.6352 -1052.71 -17.6352 0 0 1.09181e+06 3369.80 0.25 0.82 0.13 -1 -1 0.25 0.137423 0.128452 0.009305 0.3237 0.02025 0.6561 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 835.18 vpr 642.09 MiB 14.60 219100 -1 -1 127 247.78 -1 -1 94256 -1 -1 2029 114 44 8 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 657500 114 102 29627 29353 1 15978 2297 55 55 3025 clb auto 265.1 MiB 28.02 232879 1668687 610012 1033958 24717 559.6 MiB 40.37 0.32 68.0335 -56223 -68.0335 68.0335 25.83 0.0901307 0.0794814 10.8628 9.21825 106 340329 35 1.75831e+08 1.36634e+08 2.08021e+07 6876.72 345.68 56.119 46.6204 435288 4469558 -1 314438 18 61301 242321 42908846 9765127 77.6468 77.6468 -69782.5 -77.6468 -19.4974 -0.29436 2.63366e+07 8706.31 8.88 17.62 4.76 -1 -1 8.88 4.73822 4.09137 0.11 0.439 0.0108 0.5502 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 81.94 vpr 333.39 MiB 1.46 71304 -1 -1 5 7.42 -1 -1 52920 -1 -1 456 506 47 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 341388 506 553 3285 3838 1 3022 1562 50 50 2500 memory auto 53.7 MiB 4.40 16538 1170173 565691 418663 185819 333.4 MiB 5.62 0.06 7.59149 -1893.02 -7.59149 7.59149 20.61 0.0214743 0.0193503 2.89895 2.58366 38 24092 16 1.47946e+08 5.03323e+07 6.86584e+06 2746.33 18.09 8.09137 7.32477 251304 1421084 -1 23207 15 3746 4802 4236670 1113431 8.80089 8.80089 -2399.67 -8.80089 -2.89537 -0.295467 8.69095e+06 3476.38 2.98 1.79 1.33 -1 -1 2.98 0.854311 0.78904 0.1442 0.1537 0.03834 0.808 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 24.97 vpr 70.79 MiB 0.20 16412 -1 -1 2 0.14 -1 -1 33904 -1 -1 26 311 15 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72492 311 156 972 1128 1 953 508 28 28 784 memory auto 31.4 MiB 0.45 8781 207160 78246 119769 9145 70.7 MiB 1.23 0.02 3.7545 -4172.31 -3.7545 3.7545 2.23 0.00566042 0.00501831 0.604079 0.531089 36 15452 21 4.25198e+07 9.62124e+06 1.94918e+06 2486.20 13.47 2.63782 2.33097 74338 387760 -1 14064 14 3250 3762 3439540 941086 4.12209 4.12209 -5158.34 -4.12209 -15.2326 -0.339827 2.40571e+06 3068.51 0.71 0.91 0.34 -1 -1 0.71 0.194372 0.175352 0.08849 0.1512 0.01752 0.8313 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 24.04 vpr 76.89 MiB 0.45 30228 -1 -1 7 2.81 -1 -1 38100 -1 -1 167 193 5 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 78740 193 205 2232 2437 1 1226 570 20 20 400 memory auto 39.3 MiB 0.89 9257 243856 84624 132269 26963 76.9 MiB 1.70 0.02 4.68834 -2604.89 -4.68834 4.68834 0.98 0.00696491 0.00630055 0.74024 0.665126 50 17012 38 2.07112e+07 1.17403e+07 1.26944e+06 3173.59 9.75 3.04279 2.71321 40848 252947 -1 15064 14 4445 11214 1106086 267890 5.44083 5.44083 -3084.26 -5.44083 -8.88615 -0.340786 1.63222e+06 4080.54 0.40 0.53 0.23 -1 -1 0.40 0.263966 0.240809 0.02849 0.2185 0.02552 0.756 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 63.97 vpr 126.35 MiB 0.90 41032 -1 -1 27 5.15 -1 -1 44148 -1 -1 246 385 2 1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 129384 385 394 3979 4310 1 2376 1028 27 27 729 io auto 53.9 MiB 2.51 31559 555930 205259 326847 23824 90.9 MiB 4.68 0.05 12.6971 -11648.5 -12.6971 12.6971 2.15 0.0164803 0.0153361 1.79527 1.65057 82 50617 37 3.93038e+07 1.47499e+07 3.81403e+06 5231.86 32.55 7.82604 7.19564 91857 789111 -1 45134 15 10253 35846 3473092 683800 14.1308 14.1308 -13281.8 -14.1308 0 0 4.78922e+06 6569.57 1.22 1.51 0.72 -1 -1 1.22 0.646929 0.602786 0.02341 0.4696 0.02708 0.5034 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 42.41 vpr 79.00 MiB 0.50 32772 -1 -1 8 1.58 -1 -1 40876 -1 -1 135 214 0 9 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 80892 214 305 2625 2741 1 1503 663 22 22 484 mult_36 auto 41.3 MiB 0.98 12134 272229 94623 163851 13755 79.0 MiB 1.86 0.02 4.44217 -2412.88 -4.44217 4.44217 1.27 0.00768934 0.00710572 0.752631 0.693965 50 27093 44 2.50602e+07 1.08397e+07 1.56759e+06 3238.82 26.19 4.1742 3.81071 49974 314245 -1 21862 17 6563 14681 3346583 750085 4.87311 4.87311 -3028.03 -4.87311 0 0 2.01671e+06 4166.75 0.46 1.00 0.28 -1 -1 0.46 0.317836 0.294617 0.02247 0.4711 0.04268 0.4862 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 505.68 abc 94.36 MiB 2.08 38652 -1 -1 20 473.79 -1 -1 96624 -1 -1 233 38 0 0 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87024 38 36 3404 3440 1 1306 307 20 20 400 clb auto 48.6 MiB 1.58 14329 67582 17871 46599 3112 85.0 MiB 1.23 0.02 11.4946 -4190.44 -11.4946 11.4946 0.98 0.00774988 0.0069104 0.580756 0.510864 56 23896 24 2.07112e+07 1.25573e+07 1.41661e+06 3541.53 10.84 2.52236 2.19083 42444 283345 -1 21304 18 5509 21465 741245 124297 13.8216 13.8216 -4865.87 -13.8216 0 0 1.80858e+06 4521.44 0.39 0.61 0.25 -1 -1 0.39 0.377002 0.337511 0.01057 0.3861 0.02974 0.5842 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 10455.45 vpr 1.77 GiB 77.56 923812 -1 -1 75 7268.00 -1 -1 448064 -1 -1 7392 36 159 27 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1851860 36 356 135102 133883 1 43386 7970 102 102 10404 clb auto 897.4 MiB 82.88 552012 11069034 4564294 6411584 93156 1808.5 MiB 214.92 1.27 60.7191 -330608 -60.7191 60.7191 101.68 0.26206 0.226082 41.8922 35.0401 80 761563 43 6.36957e+08 4.9617e+08 5.72326e+07 5501.02 2229.49 157.004 130.205 1336032 12064248 -1 705885 20 166894 510433 92797502 21927304 68.2929 68.2929 -396896 -68.2929 0 0 7.21233e+07 6932.26 24.49 38.86 11.08 -1 -1 24.49 14.8343 12.655 0.2945 0.3703 0.01329 0.6164 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt index 76cfc3fc986..f2a367bfa8a 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt @@ -1,20 +1,20 @@ 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 -k6_N10_40nm.xml alu4.pre-vpr.blif common 6.07 vpr 64.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66348 14 8 926 934 0 478 118 12 12 144 clb auto 27.3 MiB 0.40 4890 8499 1547 6397 555 64.8 MiB 0.19 0.01 4.30411 -31.1204 -4.30411 nan 0.37 0.0025308 0.00215882 0.0899043 0.0793119 46 7481 41 5.3894e+06 5.17382e+06 394751. 2741.33 2.57 0.784621 0.684588 11608 77537 -1 6887 22 4011 15773 516109 90362 4.67591 nan -33.9187 -4.67591 0 0 505417. 3509.84 0.16 0.31 0.08 -1 -1 0.16 0.143016 0.128366 -k6_N10_40nm.xml apex2.pre-vpr.blif common 12.34 vpr 66.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68360 39 3 1113 1117 0 655 156 13 13 169 clb auto 29.3 MiB 0.52 7935 15659 2991 11028 1640 66.8 MiB 0.34 0.01 4.92741 -14.6454 -4.92741 nan 0.45 0.00326239 0.00273555 0.141311 0.122251 68 13030 33 6.52117e+06 6.14392e+06 686008. 4059.22 7.88 1.5607 1.32761 16038 133463 -1 11835 21 6567 33176 1277336 184624 5.27803 nan -15.6183 -5.27803 0 0 842935. 4987.78 0.27 0.53 0.13 -1 -1 0.27 0.180088 0.160669 -k6_N10_40nm.xml apex4.pre-vpr.blif common 7.96 vpr 65.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66696 9 19 897 916 0 536 123 12 12 144 clb auto 27.4 MiB 0.45 6438 8968 1701 6804 463 65.1 MiB 0.21 0.01 4.47343 -73.0574 -4.47343 nan 0.37 0.0023972 0.00205499 0.0912586 0.0804037 62 11039 50 5.3894e+06 5.11993e+06 523024. 3632.11 4.43 0.987151 0.849778 13040 101000 -1 9472 26 6626 34582 1376638 204970 4.82975 nan -79.6217 -4.82975 0 0 643745. 4470.45 0.21 0.54 0.10 -1 -1 0.21 0.16793 0.149478 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 10.17 vpr 66.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67948 263 197 1372 1603 1 490 554 17 17 289 io auto 28.4 MiB 0.33 4418 171104 52785 107808 10511 66.4 MiB 0.77 0.02 2.50072 -621.681 -2.50072 2.50072 0.92 0.00309872 0.00266365 0.233408 0.208695 36 7542 36 1.21262e+07 5.06604e+06 690635. 2389.74 5.40 1.1272 1.01064 21654 134225 -1 7060 19 2486 11874 613324 117315 2.78085 2.78085 -723.103 -2.78085 0 0 848598. 2936.33 0.33 0.26 0.12 -1 -1 0.33 0.109612 0.100563 -k6_N10_40nm.xml clma.pre-vpr.blif common 37.21 vpr 91.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 93188 383 82 3674 4077 1 2327 845 22 22 484 clb auto 53.6 MiB 1.80 31267 412124 152635 204610 54879 91.0 MiB 4.73 0.05 7.47585 -312.521 -7.47585 7.47585 1.76 0.0103669 0.0092138 1.28241 1.05783 84 53656 50 2.15576e+07 2.04797e+07 2.51888e+06 5204.31 18.68 4.74525 3.9249 52004 527324 -1 45510 31 23367 107028 5021544 674019 7.8817 7.8817 -343.677 -7.8817 0 0 3.18804e+06 6586.86 0.87 1.48 0.31 -1 -1 0.87 0.480732 0.419667 -k6_N10_40nm.xml des.pre-vpr.blif common 10.55 vpr 64.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65900 256 245 954 1199 0 610 600 18 18 324 io auto 26.2 MiB 0.24 5170 154869 45044 102028 7797 64.4 MiB 0.65 0.01 3.62435 -664.313 -3.62435 nan 1.14 0.00303774 0.00283048 0.197719 0.183667 34 8174 25 1.37969e+07 5.33551e+06 748928. 2311.50 5.31 1.02829 0.953324 24000 145208 -1 7456 24 2752 6594 388502 81269 4.34006 nan -764.522 -4.34006 0 0 917842. 2832.85 0.37 0.29 0.14 -1 -1 0.37 0.157159 0.147126 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.60 vpr 65.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67056 64 39 1371 1410 1 553 200 12 12 144 clb auto 27.6 MiB 0.33 3803 26480 5673 19127 1680 65.5 MiB 0.30 0.01 4.81228 -954.181 -4.81228 4.81228 0.36 0.00260486 0.00233444 0.133003 0.117784 42 5586 22 5.3894e+06 5.22772e+06 360275. 2501.91 3.48 1.0327 0.897645 11180 70362 -1 4978 23 3033 10025 379090 65211 5.41396 5.41396 -1077.53 -5.41396 0 0 451357. 3134.42 0.16 0.25 0.07 -1 -1 0.16 0.136917 0.123283 -k6_N10_40nm.xml dsip.pre-vpr.blif common 7.50 vpr 66.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68244 229 197 1370 1567 1 535 521 16 16 256 io auto 28.7 MiB 0.33 4719 161836 50938 103448 7450 66.6 MiB 0.79 0.01 2.55942 -628.566 -2.55942 2.55942 0.78 0.00290561 0.00255691 0.250634 0.222586 36 8208 25 1.05632e+07 5.11993e+06 605313. 2364.50 2.72 0.848706 0.759386 19136 117450 -1 7476 24 2889 11085 601661 118409 3.08179 3.08179 -752.817 -3.08179 0 0 744064. 2906.50 0.29 0.36 0.10 -1 -1 0.29 0.179079 0.162337 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 22.60 vpr 78.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79908 131 114 3421 3535 1 1217 475 18 18 324 clb auto 40.9 MiB 0.99 11253 126411 35653 84646 6112 78.0 MiB 1.31 0.02 6.86727 -3961.07 -6.86727 6.86727 1.04 0.00663872 0.00593268 0.512602 0.434451 50 18798 30 1.37969e+07 1.23956e+07 1.02665e+06 3168.68 6.20 2.11618 1.79852 27232 203968 -1 16839 30 8794 41217 1812646 269971 7.43094 7.43094 -4578.41 -7.43094 0 0 1.31637e+06 4062.87 0.50 0.99 0.20 -1 -1 0.50 0.47927 0.419332 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 33.10 vpr 82.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84116 10 10 2659 2669 0 1417 322 20 20 400 clb auto 45.7 MiB 1.59 27044 60987 17180 41783 2024 82.1 MiB 1.51 0.02 6.33128 -61.2732 -6.33128 nan 1.43 0.00940461 0.0076833 0.567585 0.47702 92 46231 38 1.74617e+07 1.6276e+07 2.23535e+06 5588.37 19.70 3.85809 3.28618 44892 464844 -1 41031 23 12315 74941 3786397 446925 6.7446 nan -64.6536 -6.7446 0 0 2.81709e+06 7042.72 1.23 1.78 0.51 -1 -1 1.23 0.613196 0.546276 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 7.22 vpr 63.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65372 8 63 761 824 0 443 149 11 11 121 clb auto 26.0 MiB 0.35 4386 12363 2288 9164 911 63.8 MiB 0.20 0.01 3.57272 -159.885 -3.57272 nan 0.30 0.00220506 0.00189053 0.0853102 0.0755085 60 6581 25 4.36541e+06 4.20373e+06 415439. 3433.38 4.34 0.988765 0.854799 10782 80709 -1 6074 24 4603 21281 754452 122569 4.15666 nan -180.098 -4.15666 0 0 519794. 4295.81 0.17 0.35 0.08 -1 -1 0.17 0.132875 0.118969 -k6_N10_40nm.xml frisc.pre-vpr.blif common 24.38 vpr 77.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79728 20 116 3175 3291 1 1254 376 18 18 324 clb auto 40.8 MiB 1.00 15316 84448 21608 57191 5649 77.9 MiB 1.22 0.02 8.10215 -4225.02 -8.10215 8.10215 1.06 0.00674827 0.00600474 0.483891 0.422166 64 24240 38 1.37969e+07 1.29346e+07 1.31637e+06 4062.87 9.12 2.75941 2.35598 30460 263268 -1 21638 31 9039 38390 1872289 276520 8.94296 8.94296 -4800.31 -8.94296 0 0 1.63962e+06 5060.55 0.64 1.06 0.26 -1 -1 0.64 0.519553 0.454465 -k6_N10_40nm.xml misex3.pre-vpr.blif common 9.33 vpr 64.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 14 14 828 842 0 488 115 12 12 144 clb auto 26.8 MiB 0.37 4825 7927 1280 6128 519 64.6 MiB 0.19 0.01 4.14228 -53.1378 -4.14228 nan 0.38 0.00242545 0.00207747 0.0856943 0.0757414 60 7402 27 5.3894e+06 4.68878e+06 505417. 3509.84 5.72 1.23535 1.06899 12896 98790 -1 6820 27 5624 26487 956143 146571 4.40603 nan -57.9879 -4.40603 0 0 632511. 4392.44 0.20 0.44 0.09 -1 -1 0.20 0.1627 0.145831 -k6_N10_40nm.xml pdc.pre-vpr.blif common 31.93 vpr 82.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84404 16 40 2839 2879 0 1501 363 20 20 400 clb auto 45.9 MiB 1.35 24742 75415 21527 50762 3126 82.4 MiB 1.62 0.03 6.09076 -226.074 -6.09076 nan 1.37 0.00932421 0.00762758 0.582784 0.483557 82 41591 49 1.74617e+07 1.65455e+07 2.00877e+06 5021.92 16.86 3.85256 3.20398 42096 413520 -1 36583 23 13448 77785 3454726 451976 6.817 nan -248.809 -6.817 0 0 2.51236e+06 6280.89 1.05 1.71 0.43 -1 -1 1.05 0.598579 0.521671 -k6_N10_40nm.xml s298.pre-vpr.blif common 5.53 vpr 63.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65144 4 6 726 732 1 378 87 11 11 121 clb auto 26.0 MiB 0.34 3794 4887 737 3962 188 63.6 MiB 0.13 0.00 5.75107 -47.4803 -5.75107 5.75107 0.30 0.00190472 0.0016554 0.0665635 0.0599984 44 6402 37 4.36541e+06 4.14984e+06 309216. 2555.51 2.15 0.542759 0.476337 9582 61621 -1 5464 31 4013 21407 843648 129067 6.53551 6.53551 -54.1344 -6.53551 0 0 401578. 3318.83 0.13 0.38 0.06 -1 -1 0.13 0.144276 0.129264 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 43.48 vpr 87.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89852 39 304 4677 4982 1 2229 711 22 22 484 clb auto 50.4 MiB 1.21 16540 260815 76679 170596 13540 87.7 MiB 2.54 0.03 4.30486 -2914.55 -4.30486 4.30486 1.74 0.00881974 0.00778731 0.817958 0.693317 50 23250 29 2.15576e+07 1.9833e+07 1.57675e+06 3257.74 16.64 4.93294 4.16686 40896 315528 -1 21935 24 12300 34302 1482300 264679 5.38319 5.38319 -3311.71 -5.38319 0 0 2.02322e+06 4180.21 0.86 1.04 0.30 -1 -1 0.86 0.592523 0.514758 -k6_N10_40nm.xml seq.pre-vpr.blif common 9.00 vpr 65.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67344 41 35 1006 1041 0 588 179 13 13 169 clb auto 28.2 MiB 0.48 6805 20339 4089 14118 2132 65.8 MiB 0.32 0.01 4.30872 -124.209 -4.30872 nan 0.45 0.00265853 0.00223755 0.118679 0.104361 58 12595 48 6.52117e+06 5.55108e+06 584019. 3455.73 4.88 0.997222 0.862162 15030 115912 -1 10412 27 6403 30982 1209689 183801 4.5826 nan -137.56 -4.5826 0 0 741857. 4389.69 0.24 0.50 0.11 -1 -1 0.24 0.168804 0.151179 -k6_N10_40nm.xml spla.pre-vpr.blif common 30.87 vpr 77.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79280 16 46 2232 2278 0 1154 307 18 18 324 clb auto 40.4 MiB 1.03 16792 54127 13369 38397 2361 77.4 MiB 1.07 0.02 5.72007 -192.648 -5.72007 nan 1.07 0.00700376 0.00561536 0.403736 0.340883 70 27913 31 1.37969e+07 1.3204e+07 1.42834e+06 4408.47 19.34 3.72484 3.14416 31752 286880 -1 24212 20 9068 51429 2055146 284738 6.33879 nan -215.924 -6.33879 0 0 1.78317e+06 5503.60 0.76 1.10 0.29 -1 -1 0.76 0.43343 0.390124 -k6_N10_40nm.xml tseng.pre-vpr.blif common 15.96 vpr 66.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success b37c31d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-04-04T16:52:52 gh-actions-runner-vtr-auto-spawned68 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67708 52 122 1461 1583 1 509 284 13 13 169 clb auto 28.3 MiB 0.31 3040 50666 12428 35214 3024 66.1 MiB 0.39 0.01 4.35011 -1184.05 -4.35011 4.35011 0.46 0.00243756 0.00218747 0.151219 0.134845 182 3991 21 6.52117e+06 5.92834e+06 1.59512e+06 9438.56 10.81 1.57927 1.37403 28470 343752 -1 3959 62 2500 7090 410715 53869 4.65244 4.65244 -1282.16 -4.65244 0 0 2.00730e+06 11877.5 0.70 0.43 0.46 -1 -1 0.70 0.281266 0.247293 +k6_N10_40nm.xml alu4.pre-vpr.blif common 5.57 vpr 62.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64332 14 8 926 934 0 478 118 12 12 144 clb auto 25.3 MiB 0.31 4883 9366 1630 7102 634 62.8 MiB 0.19 0.00 4.28812 -30.9258 -4.28812 nan 0.27 0.00231946 0.00204563 0.093222 0.0838883 46 7615 33 5.3894e+06 5.17382e+06 394751. 2741.33 2.39 0.704487 0.602753 11608 77537 -1 6996 25 4856 19700 686382 115972 4.71098 nan -33.985 -4.71098 0 0 505417. 3509.84 0.10 0.32 0.06 -1 -1 0.10 0.143351 0.126206 +k6_N10_40nm.xml apex2.pre-vpr.blif common 8.06 vpr 64.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66288 39 3 1113 1117 0 655 156 13 13 169 clb auto 27.0 MiB 0.48 7913 17335 3246 12395 1694 64.7 MiB 0.31 0.01 4.97634 -14.8471 -4.97634 nan 0.33 0.00280265 0.00246598 0.136338 0.122374 64 12995 30 6.52117e+06 6.14392e+06 645515. 3819.62 3.88 1.00664 0.868022 15702 127304 -1 12306 28 7937 40377 1683171 240757 5.62482 nan -16.314 -5.62482 0 0 804841. 4762.37 0.16 0.60 0.10 -1 -1 0.16 0.196986 0.17333 +k6_N10_40nm.xml apex4.pre-vpr.blif common 8.52 vpr 63.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 64632 9 19 897 916 0 536 123 12 12 144 clb auto 25.3 MiB 0.35 6363 8053 1451 6205 397 63.1 MiB 0.17 0.01 4.45266 -73.0877 -4.45266 nan 0.27 0.00236425 0.00210196 0.0800892 0.0725777 64 10297 33 5.3894e+06 5.11993e+06 539713. 3748.01 5.33 1.11801 0.957332 13324 105965 -1 9735 29 5866 29084 1229091 187607 5.16608 nan -82.7106 -5.16608 0 0 673071. 4674.10 0.13 0.46 0.09 -1 -1 0.13 0.165862 0.145708 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 8.18 vpr 64.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66040 263 197 1372 1603 1 490 554 17 17 289 io auto 26.7 MiB 0.28 4583 173378 53848 108921 10609 64.5 MiB 0.87 0.02 2.51577 -623.394 -2.51577 2.51577 0.62 0.00425654 0.00394307 0.341625 0.317485 36 7726 30 1.21262e+07 5.06604e+06 690635. 2389.74 3.67 1.40025 1.28095 21654 134225 -1 7365 18 2574 12370 616429 120582 2.91748 2.91748 -755.09 -2.91748 0 0 848598. 2936.33 0.21 0.34 0.11 -1 -1 0.21 0.17838 0.164307 +k6_N10_40nm.xml clma.pre-vpr.blif common 46.44 vpr 98.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 100656 383 82 3674 4077 1 2327 845 22 22 484 clb auto 52.0 MiB 1.35 30606 412124 150163 207700 54261 88.4 MiB 3.43 0.06 7.51325 -315.281 -7.51325 7.51325 1.12 0.0155149 0.0119903 0.960546 0.814466 86 49587 37 2.15576e+07 2.04797e+07 2.58188e+06 5334.46 28.16 6.34301 5.37985 52488 536144 -1 44160 27 22932 103421 4545548 614980 7.76019 7.76019 -348.538 -7.76019 0 0 3.23937e+06 6692.90 0.76 1.69 0.45 -1 -1 0.76 0.607182 0.535673 +k6_N10_40nm.xml des.pre-vpr.blif common 9.51 vpr 62.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63800 256 245 954 1199 0 610 600 18 18 324 io auto 24.5 MiB 0.24 5153 154869 42679 104131 8059 62.3 MiB 0.72 0.01 3.39358 -650.111 -3.39358 nan 0.74 0.00423558 0.00404064 0.272703 0.25993 36 7884 27 1.37969e+07 5.33551e+06 781479. 2411.97 5.06 1.63571 1.53902 24324 152120 -1 7167 21 2741 6934 358607 73986 4.07861 nan -750.338 -4.07861 0 0 959866. 2962.55 0.24 0.29 0.12 -1 -1 0.24 0.187291 0.176592 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 6.64 vpr 63.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65172 64 39 1371 1410 1 553 200 12 12 144 clb auto 25.9 MiB 0.29 3803 24144 4932 17893 1319 63.6 MiB 0.29 0.01 4.78075 -957.298 -4.78075 4.78075 0.27 0.00286066 0.00255029 0.136506 0.123142 44 5237 28 5.3894e+06 5.22772e+06 376278. 2613.04 2.97 1.003 0.868151 11464 75372 -1 4806 17 2884 9056 307867 53644 5.27496 5.27496 -1061.97 -5.27496 0 0 488429. 3391.87 0.11 0.21 0.06 -1 -1 0.11 0.119737 0.106859 +k6_N10_40nm.xml dsip.pre-vpr.blif common 7.37 vpr 64.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65720 229 197 1370 1567 1 535 521 16 16 256 io auto 26.4 MiB 0.31 4527 159741 48351 103227 8163 64.2 MiB 0.86 0.01 2.55942 -626.866 -2.55942 2.55942 0.54 0.00420016 0.00390126 0.33776 0.313839 36 8225 26 1.05632e+07 5.11993e+06 605313. 2364.50 3.46 1.34329 1.23058 19136 117450 -1 7393 18 2976 11188 657349 131548 2.85702 2.85702 -739.427 -2.85702 0 0 744064. 2906.50 0.17 0.19 0.07 -1 -1 0.17 0.0918428 0.0851509 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 23.76 vpr 76.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77896 131 114 3421 3535 1 1217 475 18 18 324 clb auto 38.9 MiB 0.81 11626 122707 35259 81883 5565 76.1 MiB 1.24 0.02 6.53723 -3985.25 -6.53723 6.53723 0.73 0.0074327 0.00651604 0.525675 0.463636 60 17649 25 1.37969e+07 1.23956e+07 1.23138e+06 3800.55 11.07 3.58889 3.0892 29492 245544 -1 16435 23 7995 36403 1514518 219517 7.19713 7.19713 -4487.25 -7.19713 0 0 1.54106e+06 4756.35 0.37 0.82 0.22 -1 -1 0.37 0.411213 0.361679 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 30.02 vpr 79.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81440 10 10 2659 2669 0 1417 322 20 20 400 clb auto 43.0 MiB 1.20 26641 60987 16496 42484 2007 79.5 MiB 1.18 0.02 6.29976 -60.6106 -6.29976 nan 0.92 0.00743155 0.0063774 0.45149 0.391635 88 50531 50 1.74617e+07 1.6276e+07 2.14967e+06 5374.18 19.17 3.1167 2.64194 43692 443252 -1 42150 23 13756 83881 4620701 547846 6.66403 nan -64.6106 -6.66403 0 0 2.68685e+06 6717.13 0.62 1.59 0.41 -1 -1 0.62 0.458697 0.403684 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 5.27 vpr 61.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62916 8 63 761 824 0 443 149 11 11 121 clb auto 23.8 MiB 0.27 4410 11575 2278 8438 859 61.4 MiB 0.17 0.00 3.74623 -161.99 -3.74623 nan 0.23 0.00208267 0.00185981 0.0758048 0.0687931 56 6622 40 4.36541e+06 4.20373e+06 384634. 3178.79 2.21 0.653272 0.562617 10422 75339 -1 6418 25 4478 20301 788176 130441 4.2427 nan -184.712 -4.2427 0 0 491412. 4061.26 0.10 0.31 0.06 -1 -1 0.10 0.123799 0.109548 +k6_N10_40nm.xml frisc.pre-vpr.blif common 24.21 vpr 75.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 77812 20 116 3175 3291 1 1254 376 18 18 324 clb auto 38.6 MiB 0.81 15365 85804 22720 57215 5869 76.0 MiB 1.13 0.02 7.89593 -4249.8 -7.89593 7.89593 0.71 0.00694868 0.00624172 0.481681 0.426902 66 25126 32 1.37969e+07 1.29346e+07 1.36437e+06 4211.00 12.07 3.43625 2.9494 30784 270180 -1 21586 29 9180 39028 1867434 273807 8.56586 8.56586 -4729.24 -8.56586 0 0 1.68162e+06 5190.19 0.41 1.06 0.26 -1 -1 0.41 0.502385 0.441117 +k6_N10_40nm.xml misex3.pre-vpr.blif common 7.32 vpr 62.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 63592 14 14 828 842 0 488 115 12 12 144 clb auto 24.3 MiB 0.32 4815 8206 1401 6230 575 62.1 MiB 0.17 0.00 4.13595 -53.855 -4.13595 nan 0.28 0.00218947 0.00194958 0.0811904 0.0736449 48 8115 45 5.3894e+06 4.68878e+06 408411. 2836.19 3.98 0.908929 0.778436 11752 79838 -1 7167 37 5919 26811 1037569 163917 4.60602 nan -59.9732 -4.60602 0 0 523024. 3632.11 0.11 0.45 0.07 -1 -1 0.11 0.178285 0.155836 +k6_N10_40nm.xml pdc.pre-vpr.blif common 37.96 vpr 82.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 84152 16 40 2839 2879 0 1501 363 20 20 400 clb auto 43.8 MiB 1.08 25138 74121 20955 50142 3024 80.2 MiB 1.34 0.02 6.09592 -219.8 -6.09592 nan 0.93 0.00806319 0.00679504 0.494878 0.428798 86 44801 49 1.74617e+07 1.65455e+07 2.10771e+06 5269.28 25.86 4.98584 4.20943 43296 436264 -1 38349 25 14603 86548 4239816 521326 6.62511 nan -238.851 -6.62511 0 0 2.64451e+06 6611.28 0.60 1.45 0.37 -1 -1 0.60 0.44426 0.390967 +k6_N10_40nm.xml s298.pre-vpr.blif common 6.11 vpr 61.40 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62872 4 6 726 732 1 378 87 11 11 121 clb auto 23.7 MiB 0.25 3807 4695 667 3828 200 61.4 MiB 0.12 0.00 5.57995 -45.7771 -5.57995 5.57995 0.22 0.00206264 0.00185517 0.0629695 0.0575928 46 5778 27 4.36541e+06 4.14984e+06 324627. 2682.87 3.20 0.78646 0.674759 9702 63375 -1 5459 23 3676 19081 682135 104789 6.57636 6.57636 -54.5026 -6.57636 0 0 415439. 3433.38 0.08 0.28 0.06 -1 -1 0.08 0.116301 0.103248 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 31.68 vpr 85.06 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 87100 39 304 4677 4982 1 2229 711 22 22 484 clb auto 48.3 MiB 0.97 16466 241783 71390 157436 12957 85.1 MiB 2.18 0.03 4.53005 -2909.39 -4.53005 4.53005 1.12 0.00938895 0.00808842 0.789246 0.688956 46 25151 41 2.15576e+07 1.9833e+07 1.47372e+06 3044.87 12.10 4.5817 3.95033 39928 297508 -1 22705 28 12867 35674 1526688 272502 5.35198 5.35198 -3307.36 -5.35198 0 0 1.89173e+06 3908.53 0.46 1.05 0.24 -1 -1 0.46 0.614233 0.541015 +k6_N10_40nm.xml seq.pre-vpr.blif common 6.69 vpr 63.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65076 41 35 1006 1041 0 588 179 13 13 169 clb auto 25.9 MiB 0.38 6804 19331 3948 13272 2111 63.6 MiB 0.19 0.00 4.28358 -123.827 -4.28358 nan 0.32 0.00131937 0.00114199 0.0674175 0.0605206 58 12308 40 6.52117e+06 5.55108e+06 584019. 3455.73 2.95 0.767205 0.661084 15030 115912 -1 10225 36 6349 30076 1168998 179003 4.84926 nan -138.062 -4.84926 0 0 741857. 4389.69 0.17 0.53 0.10 -1 -1 0.17 0.212958 0.186696 +k6_N10_40nm.xml spla.pre-vpr.blif common 18.57 vpr 75.12 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76928 16 46 2232 2278 0 1154 307 18 18 324 clb auto 38.0 MiB 0.81 16948 53092 13536 36559 2997 75.1 MiB 0.86 0.01 5.83538 -192.429 -5.83538 nan 0.73 0.00547399 0.00476053 0.332483 0.291692 68 29987 38 1.37969e+07 1.3204e+07 1.39738e+06 4312.90 8.99 2.29233 1.94952 31108 275828 -1 25260 26 10107 57352 2408049 326904 6.29819 nan -215.569 -6.29819 0 0 1.71505e+06 5293.36 0.39 1.10 0.23 -1 -1 0.39 0.405276 0.357753 +k6_N10_40nm.xml tseng.pre-vpr.blif common 8.72 vpr 63.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success v8.0.0-10505-gd906ea860 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-25T10:25:54 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65420 52 122 1461 1583 1 509 284 13 13 169 clb auto 26.0 MiB 0.26 3177 47867 11740 33135 2992 63.9 MiB 0.38 0.01 4.30477 -1189.46 -4.30477 4.30477 0.34 0.00293544 0.00266797 0.16588 0.15024 32 5609 42 6.52117e+06 5.92834e+06 352895. 2088.14 5.00 1.53215 1.33043 12174 67024 -1 4707 49 3188 9858 396519 77824 5.10662 5.10662 -1338.65 -5.10662 0 0 431135. 2551.09 0.11 0.40 0.05 -1 -1 0.11 0.267801 0.235096 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt index 83634a0405b..2fa697f04b1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test2_odin/vtr_bidir/config/golden_results.txt @@ -1,41 +1,41 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time - k4_n4_v7_bidir.xml alu4.blif common 13.75 vpr 69.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70992 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.8 MiB 0.28 14134 126385 38348 86426 1611 69.3 MiB 0.97 0.01 13.255 -90.9995 -13.255 nan 1.40 0.003557 0.00298094 0.251107 0.212857 28 20090 46 1.452e+07 1.425e+07 -1 -1 6.86 1.13383 0.963548 21174 279108 -1 19775 17 6940 26358 2047634 193487 15.9258 nan -111.424 -15.9258 0 0 -1 -1 0.54 0.60 0.18 -1 -1 0.54 0.156767 0.139455 - k4_n4_v7_bidir.xml apex2.blif common 27.33 vpr 72.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74668 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.1 MiB 0.38 20019 182933 56436 122365 4132 72.9 MiB 1.45 0.02 14.8244 -44.3432 -14.8244 nan 1.81 0.00447479 0.00374517 0.337751 0.287002 33 30312 44 1.875e+07 1.8e+07 -1 -1 17.63 2.2957 1.95305 28938 414941 -1 29102 19 10422 34306 4069237 342109 18.1374 nan -54.2381 -18.1374 0 0 -1 -1 0.90 1.03 0.28 -1 -1 0.90 0.240599 0.21349 - k4_n4_v7_bidir.xml apex4.blif common 25.79 vpr 67.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69152 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.9 MiB 0.23 13512 101208 29460 70503 1245 67.5 MiB 0.78 0.01 13.2732 -211.28 -13.2732 nan 1.24 0.00295966 0.0025462 0.19186 0.166653 31 21137 43 1.323e+07 1.224e+07 -1 -1 19.62 1.45728 1.24547 20514 283063 -1 18985 17 7038 25135 2424508 203976 16.4265 nan -264.324 -16.4265 0 0 -1 -1 0.53 0.57 0.18 -1 -1 0.53 0.11696 0.104582 - k4_n4_v7_bidir.xml bigkey.blif common 22.68 vpr 73.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74952 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.1 MiB 0.27 12818 444822 139676 293280 11866 73.2 MiB 2.51 0.03 7.89704 -1842.89 -7.89704 7.89704 2.16 0.00560195 0.00480616 0.601917 0.519861 20 18282 21 2.187e+07 1.368e+07 -1 -1 11.73 2.88261 2.50926 26634 302857 -1 18150 23 7950 23153 1607684 167848 10.3957 10.3957 -2491.82 -10.3957 0 0 -1 -1 0.69 0.73 0.21 -1 -1 0.69 0.322616 0.284099 - k4_n4_v7_bidir.xml clma.blif common 175.00 vpr 206.65 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 211612 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.3 MiB 2.30 106569 1740445 687899 1041683 10863 201.2 MiB 18.57 0.17 27.0884 -1463.9 -27.0884 27.0884 9.54 0.0263249 0.021495 2.57266 2.09297 39 141900 43 7.803e+07 7.569e+07 -1 -1 107.52 11.7791 9.61277 121914 1953961 -1 147212 36 50880 176013 43716060 3876361 40.34 40.34 -2131.61 -40.34 0 0 -1 -1 5.42 10.93 1.36 -1 -1 5.42 2.16318 1.78039 - k4_n4_v7_bidir.xml des.blif common 22.39 vpr 76.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 78176 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.9 MiB 0.34 16079 393062 126936 252226 13900 76.3 MiB 2.20 0.03 13.7858 -2244.06 -13.7858 nan 3.48 0.00589503 0.00512442 0.516196 0.452453 20 22821 39 3.072e+07 1.347e+07 -1 -1 8.14 2.14915 1.91239 36518 419916 -1 22247 25 8626 28912 2382403 229849 17.9305 nan -2855.37 -17.9305 0 0 -1 -1 1.02 0.87 0.30 -1 -1 1.02 0.334003 0.302852 - k4_n4_v7_bidir.xml diffeq.blif common 18.43 vpr 70.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71716 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.5 MiB 0.28 10671 127643 33203 91251 3189 70.0 MiB 0.97 0.02 11.0843 -2583.18 -11.0843 11.0843 1.25 0.00396036 0.00324711 0.289952 0.248596 24 16107 31 1.323e+07 1.248e+07 -1 -1 11.97 1.63669 1.40188 18402 227975 -1 14791 21 6642 23031 1552999 152845 13.9975 13.9975 -3302.1 -13.9975 0 0 -1 -1 0.46 0.58 0.14 -1 -1 0.46 0.227489 0.201476 - k4_n4_v7_bidir.xml dsip.blif common 15.95 vpr 69.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71580 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.2 MiB 0.28 11693 366672 119417 237628 9627 69.9 MiB 1.93 0.02 7.20075 -1792.44 -7.20075 7.20075 2.17 0.00440657 0.00383105 0.463711 0.40193 20 16895 34 2.187e+07 1.17e+07 -1 -1 5.90 1.71114 1.51122 26634 302857 -1 16732 21 7156 24786 1876345 187570 8.82999 8.82999 -2321.97 -8.82999 0 0 -1 -1 0.63 0.65 0.20 -1 -1 0.63 0.231689 0.207264 - k4_n4_v7_bidir.xml elliptic.blif common 44.12 vpr 93.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 95656 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.2 MiB 0.70 31440 554519 192097 355960 6462 93.4 MiB 4.14 0.05 22.159 -11772.6 -22.159 22.159 3.22 0.0117291 0.00929388 0.999287 0.840711 31 44118 25 3.072e+07 2.988e+07 -1 -1 25.62 4.68853 3.95034 44604 633776 -1 41645 18 10857 51510 4411492 372626 25.5451 25.5451 -15076.7 -25.5451 0 0 -1 -1 1.52 1.61 0.45 -1 -1 1.52 0.581766 0.503582 - k4_n4_v7_bidir.xml ex1010.blif common 132.70 vpr 121.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 124048 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.7 MiB 0.88 46521 735344 262533 470688 2123 121.1 MiB 6.89 0.08 23.9635 -232.397 -23.9635 nan 5.15 0.0123894 0.00999337 1.05173 0.849038 28 71051 40 4.563e+07 4.5e+07 -1 -1 104.33 5.61388 4.59791 61362 838935 -1 66151 19 24692 99252 7662175 716031 28.1417 nan -271.07 -28.1417 0 0 -1 -1 1.99 2.48 0.60 -1 -1 1.99 0.594419 0.503648 - k4_n4_v7_bidir.xml ex5p.blif common 14.39 vpr 65.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67444 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.0 MiB 0.20 11732 95394 27893 65533 1968 65.9 MiB 0.70 0.01 12.0714 -544.337 -12.0714 nan 0.98 0.00265601 0.00230964 0.181897 0.159 31 17606 29 1.083e+07 1.038e+07 -1 -1 8.67 1.04201 0.905417 17122 234247 -1 16688 33 10144 36184 3569851 310427 14.6464 nan -694.293 -14.6464 0 0 -1 -1 0.44 0.92 0.15 -1 -1 0.44 0.204757 0.181961 - k4_n4_v7_bidir.xml frisc.blif common 61.60 vpr 98.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 100856 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.6 MiB 0.79 37688 525930 181145 335523 9262 97.6 MiB 4.34 0.05 22.8805 -12386.3 -22.8805 22.8805 3.44 0.00990918 0.00882927 0.991638 0.839633 35 53135 26 3.267e+07 3.138e+07 -1 -1 40.18 5.86503 4.9616 50922 772933 -1 55579 32 17461 79286 15000358 1397162 30.6828 30.6828 -17423.6 -30.6828 0 0 -1 -1 1.72 3.58 0.51 -1 -1 1.72 0.741321 0.633915 - k4_n4_v7_bidir.xml misex3.blif common 17.18 vpr 68.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 70104 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.8 MiB 0.31 13733 114060 32802 79361 1897 68.5 MiB 0.91 0.01 12.0612 -158.449 -12.0612 nan 1.26 0.00336391 0.00286315 0.235038 0.202183 31 19992 26 1.323e+07 1.296e+07 -1 -1 10.65 1.31277 1.12941 20514 283063 -1 19268 19 7240 26551 2234302 201974 14.7411 nan -192.302 -14.7411 0 0 -1 -1 0.56 0.63 0.18 -1 -1 0.56 0.163671 0.147203 - k4_n4_v7_bidir.xml pdc.blif common 124.69 vpr 127.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 130740 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.9 MiB 1.15 68978 832915 324530 504467 3918 125.6 MiB 7.66 0.08 22.1199 -753.379 -22.1199 nan 5.26 0.0139597 0.0110722 1.25356 1.01926 44 100098 50 4.8e+07 4.587e+07 -1 -1 91.90 6.71471 5.53917 83766 1407084 -1 93228 19 24307 101241 13823590 1057139 26.8075 nan -916.99 -26.8075 0 0 -1 -1 3.44 3.54 0.97 -1 -1 3.44 0.673993 0.585015 - k4_n4_v7_bidir.xml s298.blif common 21.18 vpr 72.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74380 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.1 MiB 0.30 13947 152535 44623 106887 1025 72.6 MiB 1.19 0.02 21.2374 -159.71 -21.2374 21.2374 1.65 0.00521438 0.00445067 0.337412 0.287514 24 20070 30 1.728e+07 1.707e+07 -1 -1 12.82 2.00404 1.69875 23472 293888 -1 19722 22 6848 37779 2799654 237120 24.7448 24.7448 -195.266 -24.7448 0 0 -1 -1 0.60 0.89 0.18 -1 -1 0.60 0.257468 0.227043 - k4_n4_v7_bidir.xml s38417.blif common 80.85 vpr 147.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 151344 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.5 MiB 1.22 44894 1049826 387132 645378 17316 147.8 MiB 10.09 0.11 18.0736 -10160.5 -18.0736 18.0736 6.20 0.0179841 0.014292 1.82379 1.46634 24 60621 33 5.292e+07 5.205e+07 -1 -1 45.80 8.40705 6.77827 66744 864380 -1 57843 21 26183 85515 5318187 535457 20.9792 20.9792 -12910.4 -20.9792 0 0 -1 -1 2.09 2.36 0.60 -1 -1 2.09 1.02615 0.86097 - k4_n4_v7_bidir.xml s38584.1.blif common 71.77 vpr 141.01 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 144392 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.5 MiB 1.30 44860 1202277 446953 732147 23177 140.4 MiB 10.50 0.11 12.026 -8457.32 -12.026 12.026 5.66 0.0211393 0.0175597 1.96939 1.60063 28 57027 22 5.043e+07 4.941e+07 -1 -1 37.82 9.49657 7.90492 67458 924519 -1 55713 19 20830 63662 4242207 425990 14.1428 14.1428 -10518.6 -14.1428 0 0 -1 -1 2.21 1.97 0.65 -1 -1 2.21 0.968895 0.831555 - k4_n4_v7_bidir.xml seq.blif common 22.96 vpr 71.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73544 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.9 MiB 0.35 18054 186209 57020 124085 5104 71.8 MiB 1.41 0.02 13.5873 -395.56 -13.5873 nan 1.67 0.00425614 0.00351883 0.333808 0.281457 31 27105 32 1.728e+07 1.617e+07 -1 -1 14.32 1.78211 1.51982 26172 364912 -1 25208 18 8627 29678 2567103 227783 16.1026 nan -484.148 -16.1026 0 0 -1 -1 0.74 0.73 0.24 -1 -1 0.74 0.204566 0.184124 - k4_n4_v7_bidir.xml spla.blif common 76.80 vpr 105.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 108452 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 52.0 MiB 0.85 48240 600374 216312 380375 3687 102.1 MiB 5.14 0.05 20.0753 -648.715 -20.0753 nan 4.14 0.00908378 0.00800327 0.912519 0.750307 39 70409 37 3.888e+07 3.696e+07 -1 -1 49.20 4.53501 3.73396 62858 992060 -1 76555 39 24345 104217 26186080 2590220 34.3955 nan -1159.36 -34.3955 0 0 -1 -1 2.34 6.00 0.68 -1 -1 2.34 0.898675 0.760137 - k4_n4_v7_bidir.xml tseng.blif common 8.44 vpr 66.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68084 52 122 1483 1605 1 736 453 19 19 361 clb auto 28.7 MiB 0.19 6067 106532 27815 74929 3788 66.5 MiB 0.70 0.01 10.0043 -2022.48 -10.0043 10.0043 0.78 0.00330035 0.00285806 0.224087 0.194738 20 9708 32 8.67e+06 8.37e+06 -1 -1 3.97 0.800193 0.696432 11514 125901 -1 10325 35 5341 17375 1470182 171997 26.7854 26.7854 -3518.56 -26.7854 0 0 -1 -1 0.22 0.56 0.08 -1 -1 0.22 0.241367 0.212622 - k4_n4_v7_l1_bidir.xml alu4.blif common 33.89 vpr 69.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71124 14 8 1536 1544 0 1091 497 24 24 576 clb auto 31.9 MiB 0.29 14362 138187 43336 92800 2051 69.5 MiB 1.02 0.01 16.2524 -118.165 -16.2524 nan 2.03 0.00320537 0.00276136 0.255758 0.219591 22 16517 35 1.452e+07 1.425e+07 -1 -1 24.48 1.17963 1.01292 39160 271852 -1 14620 18 7278 28892 2151822 386319 17.68 nan -129.086 -17.68 0 0 -1 -1 0.67 0.84 0.20 -1 -1 0.67 0.167119 0.146881 - k4_n4_v7_l1_bidir.xml apex2.blif common 97.54 vpr 73.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75116 38 3 1916 1919 0 1509 641 27 27 729 clb auto 35.0 MiB 0.39 19978 196743 63018 129046 4679 73.4 MiB 1.52 0.02 23.2097 -66.4319 -23.2097 nan 2.76 0.00444938 0.00372849 0.352902 0.298724 24 22744 42 1.875e+07 1.8e+07 -1 -1 84.61 1.97975 1.67901 55250 396047 -1 20113 15 9581 33929 2905503 410759 24.7486 nan -70.4392 -24.7486 0 0 -1 -1 1.04 1.03 0.31 -1 -1 1.04 0.196202 0.174522 - k4_n4_v7_l1_bidir.xml apex4.blif common 69.02 vpr 67.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69060 9 19 1271 1290 0 990 436 23 23 529 clb auto 29.8 MiB 0.23 14046 124336 39690 83097 1549 67.4 MiB 0.97 0.01 15.3296 -251.289 -15.3296 nan 1.84 0.00293703 0.00250302 0.238909 0.205822 26 18210 48 1.323e+07 1.224e+07 -1 -1 59.69 1.24231 1.06246 41370 301109 -1 15293 20 8755 31737 4925771 837783 16.9118 nan -288.563 -16.9118 0 0 -1 -1 0.75 1.31 0.22 -1 -1 0.75 0.152551 0.134444 - k4_n4_v7_l1_bidir.xml bigkey.blif common 22.48 vpr 80.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 82828 229 197 2152 2349 1 1587 882 29 29 841 io auto 35.3 MiB 0.26 12791 444822 144197 289217 11408 80.9 MiB 2.28 0.02 9.49212 -2257.52 -9.49212 9.49212 3.29 0.00456013 0.00389815 0.531681 0.458031 13 12690 42 2.187e+07 1.368e+07 -1 -1 8.53 1.67611 1.46101 39906 235943 -1 11856 16 7540 21784 1186101 225835 10.6552 10.6552 -2601.88 -10.6552 0 0 -1 -1 0.60 0.63 0.18 -1 -1 0.60 0.216922 0.191936 - k4_n4_v7_l1_bidir.xml clma.blif common 1146.80 vpr 259.58 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 265812 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 92.2 MiB 1.76 106120 1925315 767415 1142328 15572 255.2 MiB 20.98 0.19 35.274 -2009.57 -35.274 35.274 13.72 0.0257702 0.0208734 2.90612 2.36163 32 110085 49 7.803e+07 7.569e+07 -1 -1 1061.87 13.5505 10.9423 274482 2081397 -1 104976 19 44244 163772 26116475 4937895 38.1544 38.1544 -2288.28 -38.1544 0 0 -1 -1 6.87 9.35 1.87 -1 -1 6.87 1.36721 1.1558 - k4_n4_v7_l1_bidir.xml des.blif common 39.65 vpr 94.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 96352 256 245 1847 2092 0 1443 950 34 34 1156 io auto 33.8 MiB 0.34 15994 407066 134258 257674 15134 94.1 MiB 2.11 0.02 16.0918 -2830.21 -16.0918 nan 4.76 0.0054351 0.00473485 0.501493 0.442178 13 16978 38 3.072e+07 1.347e+07 -1 -1 20.88 1.73486 1.54582 55296 328128 -1 15805 17 8999 30443 2700117 501901 16.8506 nan -3113.12 -16.8506 0 0 -1 -1 0.86 0.95 0.26 -1 -1 0.86 0.234117 0.2125 - k4_n4_v7_l1_bidir.xml diffeq.blif common 39.66 vpr 69.96 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71640 64 39 1935 1974 1 1104 519 23 23 529 clb auto 32.5 MiB 0.29 10440 142231 40504 98416 3311 70.0 MiB 1.09 0.02 12.9882 -2992.62 -12.9882 12.9882 1.90 0.0045983 0.00388127 0.328887 0.28104 17 10808 27 1.323e+07 1.248e+07 -1 -1 30.95 1.95587 1.6699 30282 197837 -1 10351 19 7168 24801 2266778 414373 15.3106 15.3106 -3545.95 -15.3106 0 0 -1 -1 0.49 0.80 0.14 -1 -1 0.49 0.206135 0.181314 - k4_n4_v7_l1_bidir.xml dsip.blif common 21.97 vpr 78.69 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80580 229 197 1815 2012 1 1190 816 29 29 841 io auto 32.3 MiB 0.28 11426 359050 117729 232216 9105 78.7 MiB 1.92 0.02 8.78943 -2134.03 -8.78943 8.78943 3.28 0.0043662 0.0037626 0.458994 0.397621 13 11522 32 2.187e+07 1.17e+07 -1 -1 8.49 1.44484 1.26966 39906 235943 -1 10934 19 6435 22769 1305074 235559 9.06804 9.06804 -2382.01 -9.06804 0 0 -1 -1 0.62 0.65 0.18 -1 -1 0.62 0.215433 0.19249 - k4_n4_v7_l1_bidir.xml elliptic.blif common 259.39 vpr 111.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 114612 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 53.1 MiB 0.70 31775 587849 206959 374211 6679 111.9 MiB 4.32 0.05 24.8429 -14309.6 -24.8429 24.8429 4.81 0.0113589 0.00939896 1.05383 0.872256 24 35027 36 3.072e+07 2.988e+07 -1 -1 234.35 5.48209 4.58132 89088 639360 -1 31261 17 11943 54448 5877227 990403 26.0072 26.0072 -16512.6 -26.0072 0 0 -1 -1 1.76 2.22 0.50 -1 -1 1.76 0.542653 0.472806 - k4_n4_v7_l1_bidir.xml ex1010.blif common 91.68 vpr 154.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 158440 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 59.6 MiB 0.88 45457 761552 272142 487721 1689 154.7 MiB 6.80 0.07 33.6677 -322.857 -33.6677 nan 7.51 0.0125483 0.0100768 1.05112 0.846213 23 53400 40 4.563e+07 4.5e+07 -1 -1 53.18 5.3178 4.38831 124722 886389 -1 46367 18 28388 111323 9133897 1665136 36.7131 nan -355.585 -36.7131 0 0 -1 -1 2.51 3.60 0.70 -1 -1 2.51 0.604564 0.518958 - k4_n4_v7_l1_bidir.xml ex5p.blif common 25.61 vpr 66.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67768 8 63 1072 1135 0 907 417 21 21 441 clb auto 28.3 MiB 0.20 11889 109407 33266 74263 1878 66.2 MiB 0.80 0.01 14.8212 -663.939 -14.8212 nan 1.48 0.00287865 0.00246157 0.202708 0.176988 28 12889 25 1.083e+07 1.038e+07 -1 -1 18.35 1.15802 1.00827 35682 261999 -1 12203 17 7544 25651 2190183 320708 15.5241 nan -730.332 -15.5241 0 0 -1 -1 0.63 0.70 0.20 -1 -1 0.63 0.123489 0.111003 - k4_n4_v7_l1_bidir.xml frisc.blif common 171.81 vpr 116.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 119012 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 52.7 MiB 0.81 38115 557165 195425 351820 9920 116.2 MiB 4.65 0.05 25.8853 -15117.7 -25.8853 25.8853 5.18 0.0111954 0.00926267 1.08659 0.906632 28 40565 30 3.267e+07 3.138e+07 -1 -1 144.51 5.11424 4.2688 103554 761463 -1 38187 27 15303 68757 6915038 1116125 28.3067 28.3067 -17153.7 -28.3067 0 0 -1 -1 2.09 2.72 0.58 -1 -1 2.09 0.680998 0.589101 - k4_n4_v7_l1_bidir.xml misex3.blif common 52.42 vpr 68.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69964 14 14 1411 1425 0 1075 460 23 23 529 clb auto 30.6 MiB 0.29 13716 121160 37552 81574 2034 68.3 MiB 0.94 0.01 14.9328 -182.468 -14.9328 nan 1.84 0.00320637 0.00274065 0.245777 0.211023 24 15762 33 1.323e+07 1.296e+07 -1 -1 43.73 1.46481 1.24532 39522 283015 -1 14159 15 7036 26260 2040209 327980 16.2244 nan -204.779 -16.2244 0 0 -1 -1 0.70 0.71 0.21 -1 -1 0.70 0.13988 0.123736 - k4_n4_v7_l1_bidir.xml pdc.blif common 296.60 vpr 169.80 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 173876 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 60.9 MiB 1.12 69847 906811 352994 547566 6251 151.8 MiB 8.29 0.08 29.749 -973.679 -29.749 nan 7.91 0.0125022 0.0100706 1.37038 1.11546 40 74353 30 4.8e+07 4.587e+07 -1 -1 250.90 8.352 6.91681 203200 1589872 -1 70986 16 23471 95600 10248218 1435560 32.117 nan -1055.65 -32.117 0 0 -1 -1 5.28 4.01 1.40 -1 -1 5.28 0.646181 0.558833 - k4_n4_v7_l1_bidir.xml s298.blif common 29.68 vpr 72.70 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74444 4 6 1942 1948 1 1189 579 26 26 676 clb auto 35.2 MiB 0.29 14138 171831 53667 116783 1381 72.7 MiB 1.35 0.02 26.1051 -194.876 -26.1051 26.1051 2.61 0.00483958 0.00407647 0.38077 0.324522 18 15506 34 1.728e+07 1.707e+07 -1 -1 18.16 1.67436 1.42691 41472 276960 -1 14191 15 7513 37317 2670769 369425 27.3673 27.3673 -212.058 -27.3673 0 0 -1 -1 0.70 0.94 0.21 -1 -1 0.70 0.19949 0.178106 - k4_n4_v7_l1_bidir.xml s38417.blif common 109.20 vpr 179.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 183492 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 75.3 MiB 1.20 46564 1095890 398355 680987 16548 179.2 MiB 11.10 0.12 22.5207 -13239.8 -22.5207 22.5207 8.76 0.0218386 0.0175987 2.02719 1.63032 18 43226 31 5.292e+07 5.205e+07 -1 -1 62.95 7.65496 6.23711 122472 822684 -1 40176 16 24246 77630 4279200 752342 24.1367 24.1367 -15318.3 -24.1367 0 0 -1 -1 2.49 2.39 0.71 -1 -1 2.49 0.891493 0.757308 - k4_n4_v7_l1_bidir.xml s38584.1.blif common 169.53 vpr 173.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 177404 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 74.4 MiB 1.32 43032 1227283 457537 745329 24417 173.2 MiB 10.67 0.13 16.5278 -11078.5 -16.5278 16.5278 8.45 0.0192776 0.0153152 1.99283 1.61811 18 40610 44 5.043e+07 4.941e+07 -1 -1 125.38 9.64324 7.93808 116850 784767 -1 37025 12 19738 60661 3375063 570669 17.2487 17.2487 -12345.1 -17.2487 0 0 -1 -1 2.32 1.82 0.63 -1 -1 2.32 0.727301 0.625777 - k4_n4_v7_l1_bidir.xml seq.blif common 36.16 vpr 71.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 73436 41 35 1791 1826 0 1383 615 26 26 676 clb auto 33.9 MiB 0.36 18015 207121 65869 135848 5404 71.7 MiB 1.55 0.02 16.6753 -486.802 -16.6753 nan 2.55 0.00442358 0.00372597 0.367156 0.311154 25 20400 37 1.728e+07 1.617e+07 -1 -1 24.12 1.89536 1.6099 51072 366016 -1 18415 15 8953 32374 2759278 410967 18.0537 nan -535.744 -18.0537 0 0 -1 -1 0.95 0.94 0.28 -1 -1 0.95 0.178787 0.157787 - k4_n4_v7_l1_bidir.xml spla.blif common 320.75 vpr 129.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 132476 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 51.7 MiB 0.84 48643 649710 239203 407582 2925 128.9 MiB 5.58 0.06 24.7125 -858.664 -24.7125 nan 6.34 0.0105702 0.00866673 1.00344 0.819712 32 54414 39 3.888e+07 3.696e+07 -1 -1 285.12 5.0505 4.13478 138672 1051752 -1 51400 25 21005 88968 14946164 2742235 33.9008 nan -1010 -33.9008 0 0 -1 -1 3.13 5.01 0.86 -1 -1 3.13 0.657258 0.55892 - k4_n4_v7_l1_bidir.xml tseng.blif common 15.28 vpr 66.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success efe606d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-06T17:24:56 gh-actions-runner-vtr-auto-spawned198 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68380 52 122 1483 1605 1 736 453 19 19 361 clb auto 29.0 MiB 0.19 5859 113488 31414 78149 3925 66.8 MiB 0.74 0.01 10.2405 -2435.2 -10.2405 10.2405 1.14 0.0032842 0.00282233 0.235423 0.202792 14 6460 50 8.67e+06 8.37e+06 -1 -1 9.80 1.04576 0.912818 17850 109085 -1 5660 20 4854 16606 910348 182061 11.1931 11.1931 -2968.9 -11.1931 0 0 -1 -1 0.26 0.44 0.08 -1 -1 0.26 0.161569 0.143489 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time +k4_n4_v7_bidir.xml alu4.blif common 15.51 vpr 67.17 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68780 14 8 1536 1544 0 1091 497 24 24 576 clb auto 29.7 MiB 0.34 14492 124418 37578 85089 1751 67.2 MiB 0.87 0.01 13.064 -93.6341 -13.064 nan 1.07 0.00348931 0.00304824 0.237041 0.209113 28 21463 31 1.452e+07 1.425e+07 -1 -1 9.61 1.31834 1.11924 21174 279108 -1 20043 18 7227 27667 2226365 207860 15.9561 nan -113.112 -15.9561 0 0 -1 -1 0.38 0.55 0.16 -1 -1 0.38 0.134467 0.117723 +k4_n4_v7_bidir.xml apex2.blif common 16.68 vpr 70.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72604 38 3 1916 1919 0 1509 641 27 27 729 clb auto 33.0 MiB 0.45 19880 182933 55134 123551 4248 70.9 MiB 1.25 0.02 14.5986 -42.6101 -14.5986 nan 1.36 0.00401719 0.00349457 0.308681 0.271103 31 29700 30 1.875e+07 1.8e+07 -1 -1 8.75 1.34864 1.15204 28210 394495 -1 27929 18 9808 34341 3048416 265235 17.4931 nan -51.8828 -17.4931 0 0 -1 -1 0.56 0.74 0.25 -1 -1 0.56 0.17637 0.154798 +k4_n4_v7_bidir.xml apex4.blif common 17.20 vpr 65.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66644 9 19 1271 1290 0 990 436 23 23 529 clb auto 27.4 MiB 0.28 13754 106164 30782 73959 1423 65.1 MiB 0.75 0.01 12.8655 -214.535 -12.8655 nan 0.95 0.00264982 0.00236602 0.190007 0.169245 31 22214 38 1.323e+07 1.224e+07 -1 -1 11.74 1.10339 0.943233 20514 283063 -1 19720 19 7989 28465 2830751 236852 15.9675 nan -261.673 -15.9675 0 0 -1 -1 0.39 0.63 0.16 -1 -1 0.39 0.128404 0.112514 +k4_n4_v7_bidir.xml bigkey.blif common 15.07 vpr 70.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72536 229 197 2152 2349 1 1587 882 29 29 841 io auto 33.2 MiB 0.35 12720 444822 139334 293651 11837 70.8 MiB 2.33 0.02 7.04457 -1707.05 -7.04457 7.04457 1.64 0.00572475 0.00520384 0.633194 0.5747 20 18467 30 2.187e+07 1.368e+07 -1 -1 5.89 2.01855 1.80143 26634 302857 -1 18217 20 8112 24197 1688786 175431 8.8272 8.8272 -2367.13 -8.8272 0 0 -1 -1 0.44 0.62 0.18 -1 -1 0.44 0.24701 0.221375 +k4_n4_v7_bidir.xml clma.blif common 117.96 vpr 203.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 208052 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 90.2 MiB 2.00 104482 1777419 700519 1061513 15387 199.1 MiB 13.98 0.14 26.7958 -1410.51 -26.7958 26.7958 6.88 0.0261116 0.0215218 2.57063 2.1172 39 140367 50 7.803e+07 7.569e+07 -1 -1 68.33 9.36599 7.76548 121914 1953961 -1 146229 38 49581 174525 39821256 3448046 40.0381 40.0381 -1927.62 -40.0381 0 0 -1 -1 3.04 8.26 1.12 -1 -1 3.04 1.51251 1.28375 +k4_n4_v7_bidir.xml des.blif common 18.09 vpr 74.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 76156 256 245 1847 2092 0 1443 950 34 34 1156 io auto 31.6 MiB 0.43 15728 379058 122346 243174 13538 74.4 MiB 1.88 0.02 12.6882 -2221.93 -12.6882 nan 2.37 0.00608177 0.00558434 0.511482 0.470427 20 22136 48 3.072e+07 1.347e+07 -1 -1 7.15 2.23868 2.04084 36518 419916 -1 21828 21 9065 31031 2515013 246843 15.865 nan -2825.7 -15.865 0 0 -1 -1 0.63 0.78 0.25 -1 -1 0.63 0.286333 0.263471 +k4_n4_v7_bidir.xml diffeq.blif common 14.13 vpr 67.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69620 64 39 1935 1974 1 1104 519 23 23 529 clb auto 30.4 MiB 0.34 10676 127643 33321 91149 3173 68.0 MiB 0.88 0.01 11.3528 -2545.54 -11.3528 11.3528 0.96 0.00392379 0.00347154 0.259992 0.229366 24 15534 33 1.323e+07 1.248e+07 -1 -1 8.49 1.5504 1.3278 18402 227975 -1 14571 19 6373 21554 1393093 138737 13.9718 13.9718 -3254.11 -13.9718 0 0 -1 -1 0.31 0.49 0.13 -1 -1 0.31 0.181248 0.158794 +k4_n4_v7_bidir.xml dsip.blif common 26.61 vpr 67.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69576 229 197 1815 2012 1 1190 816 29 29 841 io auto 30.4 MiB 0.36 11338 355239 113557 232117 9565 67.9 MiB 1.84 0.02 7.45533 -1710.54 -7.45533 7.45533 1.62 0.00522143 0.00478406 0.510916 0.467117 17 18820 35 2.187e+07 1.17e+07 -1 -1 18.19 2.45369 2.20309 24954 258369 -1 15965 19 6881 21184 1530662 161982 8.88963 8.88963 -2332.87 -8.88963 0 0 -1 -1 0.42 0.56 0.16 -1 -1 0.42 0.230602 0.208563 +k4_n4_v7_bidir.xml elliptic.blif common 87.47 vpr 91.37 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 93564 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 50.9 MiB 0.79 31687 561185 198227 355001 7957 91.4 MiB 3.53 0.04 22.2209 -11394.8 -22.2209 22.2209 2.38 0.010024 0.0088992 0.895165 0.773746 29 48636 47 3.072e+07 2.988e+07 -1 -1 71.62 5.01696 4.24196 43448 604980 -1 45339 25 13230 58737 9644190 874860 31.1226 31.1226 -16838.3 -31.1226 0 0 -1 -1 0.87 2.25 0.38 -1 -1 0.87 0.552294 0.479922 +k4_n4_v7_bidir.xml ex1010.blif common 72.62 vpr 119.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 122176 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 57.2 MiB 1.00 45279 752816 282194 468868 1754 119.3 MiB 5.76 0.06 24.3239 -237.092 -24.3239 nan 4.05 0.0100382 0.0087351 1.02213 0.859022 28 67202 36 4.563e+07 4.5e+07 -1 -1 49.59 4.57438 3.8105 61362 838935 -1 66040 19 26979 113958 8933163 818795 27.8346 nan -270.545 -27.8346 0 0 -1 -1 1.29 2.41 0.48 -1 -1 1.29 0.469356 0.406981 +k4_n4_v7_bidir.xml ex5p.blif common 12.19 vpr 63.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65300 8 63 1072 1135 0 907 417 21 21 441 clb auto 25.8 MiB 0.23 11708 93837 27069 64630 2138 63.8 MiB 0.65 0.01 12.4074 -557.811 -12.4074 nan 0.77 0.00267829 0.00240549 0.174981 0.158061 31 18083 34 1.083e+07 1.038e+07 -1 -1 7.51 0.974615 0.841833 17122 234247 -1 16652 21 7718 27154 2580113 226279 15.6818 nan -705.274 -15.6818 0 0 -1 -1 0.31 0.58 0.13 -1 -1 0.31 0.125267 0.109793 +k4_n4_v7_bidir.xml frisc.blif common 84.21 vpr 95.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 97840 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 50.6 MiB 0.91 37748 519683 178378 331865 9440 95.5 MiB 3.57 0.04 22.474 -12146.9 -22.474 22.474 2.48 0.0102555 0.00884829 0.871252 0.754907 32 54020 43 3.267e+07 3.138e+07 -1 -1 66.71 4.43502 3.76037 48474 707469 -1 55532 36 17692 77402 14489739 1344143 33.6264 33.6264 -17898.1 -33.6264 0 0 -1 -1 1.06 3.21 0.40 -1 -1 1.06 0.7015 0.60378 +k4_n4_v7_bidir.xml misex3.blif common 18.39 vpr 66.03 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67612 14 14 1411 1425 0 1075 460 23 23 529 clb auto 28.5 MiB 0.33 13773 110510 31854 77048 1608 66.0 MiB 0.76 0.01 12.9788 -162.672 -12.9788 nan 0.95 0.00312893 0.0027462 0.197348 0.17514 29 21974 42 1.323e+07 1.296e+07 -1 -1 12.70 1.35312 1.15089 19986 270173 -1 20287 26 8530 29928 3721012 337286 18.4945 nan -217.903 -18.4945 0 0 -1 -1 0.36 0.81 0.15 -1 -1 0.36 0.173258 0.150595 +k4_n4_v7_bidir.xml pdc.blif common 93.93 vpr 136.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 139812 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 58.5 MiB 1.28 69296 832915 317771 510237 4907 123.4 MiB 6.03 0.06 23.7165 -825.182 -23.7165 nan 4.30 0.0109541 0.00918243 1.0921 0.917758 47 96151 32 4.8e+07 4.587e+07 -1 -1 67.60 5.878 4.90759 87292 1502116 -1 92286 19 22888 96643 12191502 930092 26.8818 nan -966.044 -26.8818 0 0 -1 -1 2.50 2.91 0.87 -1 -1 2.50 0.511763 0.444209 +k4_n4_v7_bidir.xml s298.blif common 13.19 vpr 70.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72636 4 6 1942 1948 1 1189 579 26 26 676 clb auto 33.1 MiB 0.35 14048 159771 47511 111138 1122 70.9 MiB 1.09 0.02 21.2667 -165.944 -21.2667 21.2667 1.25 0.00431077 0.00380898 0.310375 0.275876 22 23258 45 1.728e+07 1.707e+07 -1 -1 6.22 1.29609 1.11603 22122 258376 -1 19803 19 7316 37170 2732025 242363 25.3019 25.3019 -201.867 -25.3019 0 0 -1 -1 0.36 0.75 0.15 -1 -1 0.36 0.198558 0.1743 +k4_n4_v7_bidir.xml s38417.blif common 69.87 vpr 145.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 149160 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 73.1 MiB 1.31 46044 1038310 380422 641926 15962 145.7 MiB 7.80 0.09 17.0471 -10090 -17.0471 17.0471 4.84 0.0157324 0.0138369 1.5815 1.32551 24 63196 48 5.292e+07 5.205e+07 -1 -1 42.26 6.22629 5.17979 66744 864380 -1 59182 23 26435 85154 5535498 549469 21.1815 21.1815 -12681.3 -21.1815 0 0 -1 -1 1.33 2.10 0.50 -1 -1 1.33 0.817031 0.708979 +k4_n4_v7_bidir.xml s38584.1.blif common 64.41 vpr 143.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 146948 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 72.3 MiB 1.38 44702 1189774 441852 724992 22930 142.3 MiB 8.12 0.11 12.8306 -8587.56 -12.8306 12.8306 4.20 0.0161093 0.0133928 1.63832 1.37275 24 59721 36 5.043e+07 4.941e+07 -1 -1 37.89 6.7536 5.65396 63762 824815 -1 55715 21 21817 67758 4505617 450610 14.3685 14.3685 -10398.9 -14.3685 0 0 -1 -1 1.24 1.75 0.46 -1 -1 1.24 0.745898 0.647737 +k4_n4_v7_bidir.xml seq.blif common 18.80 vpr 69.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70836 41 35 1791 1826 0 1383 615 26 26 676 clb auto 31.6 MiB 0.40 18117 183595 57461 121393 4741 69.2 MiB 1.20 0.02 13.8942 -393.232 -13.8942 nan 1.28 0.00367395 0.00321985 0.288459 0.254496 31 27144 34 1.728e+07 1.617e+07 -1 -1 11.17 1.59598 1.36473 26172 364912 -1 25709 23 10032 36832 3383617 289496 15.2747 nan -464.134 -15.2747 0 0 -1 -1 0.52 0.97 0.21 -1 -1 0.52 0.232584 0.202727 +k4_n4_v7_bidir.xml spla.blif common 57.62 vpr 103.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 105972 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 49.8 MiB 0.98 48284 586278 204405 379300 2573 99.8 MiB 4.08 0.05 20.1209 -661.294 -20.1209 nan 3.11 0.00917445 0.0076866 0.772092 0.658787 39 72604 31 3.888e+07 3.696e+07 -1 -1 34.87 3.40392 2.8657 62858 992060 -1 76274 41 24808 104383 25721970 2482564 35.6194 nan -1107.5 -35.6194 0 0 -1 -1 1.55 5.61 0.57 -1 -1 1.55 0.851248 0.726003 +k4_n4_v7_bidir.xml tseng.blif common 10.60 vpr 64.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65956 52 122 1483 1605 1 736 453 19 19 361 clb auto 26.5 MiB 0.22 6112 103054 27352 71967 3735 64.4 MiB 0.65 0.01 9.55592 -2100.22 -9.55592 9.55592 0.61 0.0033439 0.0029805 0.212601 0.190316 24 8832 24 8.67e+06 8.37e+06 -1 -1 6.78 1.75903 1.52449 12594 153055 -1 8520 17 3732 12234 665782 74240 12.6439 12.6439 -2825.01 -12.6439 0 0 -1 -1 0.20 0.27 0.09 -1 -1 0.20 0.127008 0.11267 +k4_n4_v7_l1_bidir.xml alu4.blif common 28.13 vpr 67.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 475 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 68712 14 8 1536 1544 0 1091 497 24 24 576 clb auto 29.7 MiB 0.34 14362 138187 43336 92800 2051 67.1 MiB 0.91 0.01 16.2524 -118.165 -16.2524 nan 1.51 0.00296843 0.00259624 0.226452 0.199909 21 16486 45 1.452e+07 1.425e+07 -1 -1 20.45 1.12901 0.965007 39160 271852 -1 14613 17 7090 27567 1954153 351615 17.3251 nan -130.098 -17.3251 0 0 -1 -1 0.47 0.73 0.22 -1 -1 0.47 0.153278 0.134732 +k4_n4_v7_l1_bidir.xml apex2.blif common 28.80 vpr 71.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 600 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 73428 38 3 1916 1919 0 1509 641 27 27 729 clb auto 32.6 MiB 0.46 19978 196743 63018 129046 4679 71.5 MiB 1.30 0.02 23.2097 -66.4319 -23.2097 nan 2.01 0.00378932 0.00331534 0.29431 0.25934 25 21737 29 1.875e+07 1.8e+07 -1 -1 18.64 1.49829 1.28 55250 396047 -1 20232 16 9584 33682 2945139 417708 24.9872 nan -71.1099 -24.9872 0 0 -1 -1 0.70 0.88 0.29 -1 -1 0.70 0.168062 0.14808 +k4_n4_v7_l1_bidir.xml apex4.blif common 48.38 vpr 65.18 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 408 9 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66744 9 19 1271 1290 0 990 436 23 23 529 clb auto 27.5 MiB 0.28 14046 124336 39690 83097 1549 65.2 MiB 0.88 0.01 15.3296 -251.289 -15.3296 nan 1.44 0.00279562 0.00247728 0.229644 0.204635 26 17990 41 1.323e+07 1.224e+07 -1 -1 40.66 1.12419 0.963552 41370 301109 -1 15275 25 8776 31683 4961186 846365 19.5742 nan -300.066 -19.5742 0 0 -1 -1 0.51 1.17 0.22 -1 -1 0.51 0.157775 0.137274 +k4_n4_v7_l1_bidir.xml bigkey.blif common 18.86 vpr 79.14 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 456 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 81036 229 197 2152 2349 1 1587 882 29 29 841 io auto 33.1 MiB 0.37 12791 444822 144197 289217 11408 79.1 MiB 2.37 0.03 9.49212 -2257.52 -9.49212 9.49212 2.49 0.00615142 0.00553249 0.657693 0.595957 13 12596 28 2.187e+07 1.368e+07 -1 -1 7.35 1.70291 1.52274 39906 235943 -1 11774 13 7322 21586 1176610 233855 12.1231 12.1231 -2747.34 -12.1231 0 0 -1 -1 0.43 0.54 0.18 -1 -1 0.43 0.178023 0.160519 +k4_n4_v7_l1_bidir.xml clma.blif common 195.81 vpr 263.62 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2523 62 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 269944 62 82 8460 8542 1 6360 2667 53 53 2809 clb auto 90.1 MiB 2.02 106120 1925315 767415 1142328 15572 253.2 MiB 14.30 0.13 35.274 -2009.57 -35.274 35.274 10.17 0.021043 0.0173521 2.33838 1.96096 33 109478 43 7.803e+07 7.569e+07 -1 -1 134.77 9.66457 7.9929 274482 2081397 -1 104788 17 43619 160542 25618092 4861674 38.8766 38.8766 -2339.59 -38.8766 0 0 -1 -1 4.56 7.00 1.61 -1 -1 4.56 0.85522 0.740129 +k4_n4_v7_l1_bidir.xml des.blif common 33.50 vpr 92.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 449 256 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 94736 256 245 1847 2092 0 1443 950 34 34 1156 io auto 31.6 MiB 0.43 15994 407066 134258 257674 15134 91.9 MiB 2.18 0.02 16.0918 -2830.21 -16.0918 nan 3.64 0.00657972 0.00604891 0.609688 0.559399 13 16892 41 3.072e+07 1.347e+07 -1 -1 18.58 2.09913 1.90913 55296 328128 -1 15807 17 9276 31051 2809529 520178 16.7012 nan -3129.26 -16.7012 0 0 -1 -1 0.62 0.92 0.26 -1 -1 0.62 0.246301 0.226587 +k4_n4_v7_l1_bidir.xml diffeq.blif common 32.83 vpr 67.99 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 416 64 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69620 64 39 1935 1974 1 1104 519 23 23 529 clb auto 30.4 MiB 0.35 10440 142231 40504 98416 3311 68.0 MiB 0.97 0.01 12.9882 -2992.62 -12.9882 12.9882 1.36 0.00391026 0.0034585 0.286623 0.254118 16 11082 46 1.323e+07 1.248e+07 -1 -1 25.82 1.54842 1.32799 28434 179743 -1 9985 15 6744 23786 1901290 348721 13.6141 13.6141 -3460.74 -13.6141 0 0 -1 -1 0.31 0.61 0.13 -1 -1 0.31 0.150389 0.132388 +k4_n4_v7_l1_bidir.xml dsip.blif common 17.49 vpr 77.26 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 390 229 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 79112 229 197 1815 2012 1 1190 816 29 29 841 io auto 30.5 MiB 0.38 11426 359050 117729 232216 9105 77.1 MiB 1.85 0.02 8.78943 -2134.03 -8.78943 8.78943 2.48 0.00528394 0.00483173 0.51798 0.472926 13 11155 22 2.187e+07 1.17e+07 -1 -1 6.59 1.46172 1.31811 39906 235943 -1 10676 16 5917 20172 1064426 206703 10.7113 10.7113 -2532.12 -10.7113 0 0 -1 -1 0.44 0.52 0.18 -1 -1 0.44 0.190292 0.172359 +k4_n4_v7_l1_bidir.xml elliptic.blif common 178.16 vpr 110.51 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 996 131 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 113164 131 114 4855 4969 1 2150 1241 34 34 1156 clb auto 51.0 MiB 0.80 31775 587849 206959 374211 6679 110.1 MiB 3.77 0.04 24.8429 -14309.6 -24.8429 24.8429 3.62 0.0109705 0.00924243 1.00454 0.858326 24 35056 37 3.072e+07 2.988e+07 -1 -1 158.46 4.48408 3.78895 89088 639360 -1 31157 17 12236 54672 5608600 887341 26.0893 26.0893 -16614.9 -26.0893 0 0 -1 -1 1.25 1.89 0.51 -1 -1 1.25 0.408765 0.354605 +k4_n4_v7_l1_bidir.xml ex1010.blif common 51.47 vpr 151.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1500 10 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 155568 10 10 4608 4618 0 3623 1520 41 41 1681 clb auto 57.3 MiB 1.00 45457 761552 272142 487721 1689 151.9 MiB 5.84 0.06 33.6677 -322.857 -33.6677 nan 5.57 0.0102248 0.00851377 1.0614 0.889865 22 49488 35 4.563e+07 4.5e+07 -1 -1 23.09 3.06206 2.56389 118482 826103 -1 45324 16 25131 98403 5940189 1022487 35.4589 nan -345.878 -35.4589 0 0 -1 -1 1.69 2.35 0.63 -1 -1 1.69 0.417275 0.3644 +k4_n4_v7_l1_bidir.xml ex5p.blif common 39.99 vpr 64.10 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 346 8 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65636 8 63 1072 1135 0 907 417 21 21 441 clb auto 26.1 MiB 0.14 11889 109407 33266 74263 1878 64.1 MiB 0.73 0.01 14.8212 -663.939 -14.8212 nan 1.11 0.00267683 0.00240159 0.191284 0.17246 25 14526 35 1.083e+07 1.038e+07 -1 -1 34.17 1.08922 0.938754 32642 233591 -1 12281 18 8068 27995 2688226 416112 15.3998 nan -728.218 -15.3998 0 0 -1 -1 0.39 0.75 0.17 -1 -1 0.39 0.117425 0.10395 +k4_n4_v7_l1_bidir.xml frisc.blif common 132.07 vpr 114.33 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1046 20 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 117072 20 116 4445 4561 1 2328 1182 35 35 1225 clb auto 50.5 MiB 0.90 38115 557165 195425 351820 9920 114.3 MiB 3.90 0.04 25.8853 -15117.7 -25.8853 25.8853 3.88 0.0102824 0.00883256 0.987917 0.848876 28 40742 33 3.267e+07 3.138e+07 -1 -1 110.78 4.22481 3.58418 103554 761463 -1 38139 16 14418 63755 6641824 1105950 27.7778 27.7778 -16859.8 -27.7778 0 0 -1 -1 1.46 2.09 0.57 -1 -1 1.46 0.379236 0.330288 +k4_n4_v7_l1_bidir.xml misex3.blif common 38.00 vpr 66.24 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 432 14 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67828 14 14 1411 1425 0 1075 460 23 23 529 clb auto 28.7 MiB 0.33 13716 121160 37552 81574 2034 66.2 MiB 0.85 0.01 14.9328 -182.468 -14.9328 nan 1.42 0.00335433 0.00296166 0.226847 0.201355 24 15358 38 1.323e+07 1.296e+07 -1 -1 30.83 1.32813 1.13645 39522 283015 -1 14047 15 6919 25785 1966435 320519 15.6861 nan -202.444 -15.6861 0 0 -1 -1 0.49 0.63 0.21 -1 -1 0.49 0.123311 0.108712 +k4_n4_v7_l1_bidir.xml pdc.blif common 182.75 vpr 163.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1529 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 167216 16 40 4591 4631 0 3652 1585 42 42 1764 clb auto 58.6 MiB 1.29 69847 906811 352994 547566 6251 149.8 MiB 6.48 0.06 29.749 -973.679 -29.749 nan 5.93 0.0110291 0.00924426 1.14561 0.964084 39 90313 40 4.8e+07 4.587e+07 -1 -1 143.88 4.64989 3.87333 196640 1532920 -1 73941 22 28230 117756 26408846 5244302 34.5972 nan -1133.63 -34.5972 0 0 -1 -1 3.32 7.84 1.26 -1 -1 3.32 0.622691 0.534582 +k4_n4_v7_l1_bidir.xml s298.blif common 25.70 vpr 70.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 569 4 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72372 4 6 1942 1948 1 1189 579 26 26 676 clb auto 32.8 MiB 0.35 14138 171831 53667 116783 1381 70.7 MiB 1.23 0.02 26.1051 -194.876 -26.1051 26.1051 1.89 0.00494459 0.00433471 0.368145 0.32557 17 15803 44 1.728e+07 1.707e+07 -1 -1 16.16 1.50301 1.29012 39072 255848 -1 14538 20 8680 42365 3804256 568074 28.1876 28.1876 -219.477 -28.1876 0 0 -1 -1 0.46 1.11 0.19 -1 -1 0.46 0.206719 0.180497 +k4_n4_v7_l1_bidir.xml s38417.blif common 75.98 vpr 177.34 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1735 29 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 181592 29 106 7534 7640 1 4766 1870 44 44 1936 clb auto 73.1 MiB 1.32 46564 1095890 398355 680987 16548 177.3 MiB 8.23 0.09 22.5207 -13239.8 -22.5207 22.5207 6.57 0.0162188 0.0135988 1.67606 1.40707 18 43172 30 5.292e+07 5.205e+07 -1 -1 41.44 5.49683 4.60048 122472 822684 -1 40146 15 23398 74360 4088843 721327 24.0049 24.0049 -15268.5 -24.0049 0 0 -1 -1 1.72 1.96 0.63 -1 -1 1.72 0.631678 0.548027 +k4_n4_v7_l1_bidir.xml s38584.1.blif common 83.57 vpr 171.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1647 38 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 175560 38 304 7475 7779 1 4418 1989 43 43 1849 clb auto 72.3 MiB 1.37 43032 1227283 457537 745329 24417 171.4 MiB 8.31 0.10 16.5278 -11078.5 -16.5278 16.5278 6.23 0.0163138 0.0135312 1.67245 1.40288 18 40117 43 5.043e+07 4.941e+07 -1 -1 50.01 5.48392 4.61292 116850 784767 -1 37130 13 19800 60812 3487707 599325 17.3291 17.3291 -12377.8 -17.3291 0 0 -1 -1 1.64 1.76 0.60 -1 -1 1.64 0.623368 0.543539 +k4_n4_v7_l1_bidir.xml seq.blif common 36.82 vpr 69.15 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 539 41 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70812 41 35 1791 1826 0 1383 615 26 26 676 clb auto 31.6 MiB 0.40 18015 207121 65869 135848 5404 69.2 MiB 1.33 0.02 16.6753 -486.802 -16.6753 nan 1.85 0.00371978 0.00325972 0.30676 0.270249 24 21542 46 1.728e+07 1.617e+07 -1 -1 27.23 1.27531 1.09241 51072 366016 -1 18342 15 9038 32481 2759841 410898 18.0048 nan -533.902 -18.0048 0 0 -1 -1 0.65 0.84 0.32 -1 -1 0.65 0.155572 0.137082 +k4_n4_v7_l1_bidir.xml spla.blif common 276.55 vpr 127.77 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1232 16 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 130832 16 46 3706 3752 0 2880 1294 38 38 1444 clb auto 49.9 MiB 0.97 48643 649710 239203 407582 2925 127.3 MiB 4.60 0.05 24.7125 -858.664 -24.7125 nan 4.52 0.0110009 0.00936496 0.935844 0.797653 32 55162 44 3.888e+07 3.696e+07 -1 -1 250.15 4.07172 3.41122 138672 1051752 -1 51486 21 20303 86763 15074452 2879132 30.1741 nan -1022.06 -30.1741 0 0 -1 -1 1.97 3.87 0.80 -1 -1 1.97 0.449697 0.387433 +k4_n4_v7_l1_bidir.xml tseng.blif common 13.41 vpr 64.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 279 52 -1 -1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66124 52 122 1483 1605 1 736 453 19 19 361 clb auto 26.6 MiB 0.22 5859 113488 31414 78149 3925 64.6 MiB 0.71 0.01 10.2405 -2435.2 -10.2405 10.2405 0.87 0.00325048 0.00291196 0.23049 0.206545 14 6661 37 8.67e+06 8.37e+06 -1 -1 8.70 1.00951 0.878973 17850 109085 -1 5761 18 4777 15947 893383 178727 11.3513 11.3513 -3010.79 -11.3513 0 0 -1 -1 0.18 0.39 0.08 -1 -1 0.18 0.139853 0.123516 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt index 8f41ead5e7a..fa4597ccf84 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3_odin/vtr_reg_qor_chain_predictor_off/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 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 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 -k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 583.54 vpr 284.30 MiB 2.26 127036 -1 -1 18 143.67 -1 -1 69044 -1 -1 1012 133 24 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 291128 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 182.8 MiB 38.65 139498 723319 238538 468975 15806 214.7 MiB 25.63 0.23 16.8897 -129110 -16.8897 16.8897 7.69 0.0626154 0.0544242 7.09752 5.71448 102 202542 32 8.65E+07 6.77E+07 9.95E+06 6539.54 278.54 32.6623 26.1014 217584 2108762 -1 184530 15 36437 132687 21876289 4735687 0 0 21876289 4735687 116013 44730 0 0 387139 354311 0 0 461172 389401 0 0 119910 49834 0 0 10292289 1936912 0 0 10499766 1960499 0 0 116013 0 0 82407 744922 777099 4024753 18649 7546 18.3658 18.3658 -144874 -18.3658 0 0 1.25E+07 8203.53 7.68 11.9 2.76 -1 -1 7.68 3.72028 3.19167 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 1047.98 vpr 668.36 MiB 6.44 373064 -1 -1 14 372.53 -1 -1 149696 -1 -1 2738 257 0 11 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 684400 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 379.1 MiB 95.55 254590 2202438 775550 1395801 31087 668.4 MiB 149.56 1.15 17.922 -23247.4 -17.922 17.922 74.01 0.176172 0.136174 19.2625 15.0121 76 397155 41 2.37E+08 1.52E+08 2.06E+07 5189.55 229.02 70.1957 55.6831 506266 4280222 -1 375988 23 94107 422462 29079480 4995732 0 0 29079480 4995732 422462 153170 0 0 646594 537328 0 0 910439 649559 0 0 443385 175289 0 0 13141347 1723999 0 0 13515253 1756387 0 0 422462 0 0 340947 2219541 2157492 15111548 0 0 20.0923 20.0923 -25869.8 -20.0923 0 0 2.58E+07 6488.59 14.89 24.61 5.56 -1 -1 14.89 11.265 9.47638 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 304.07 vpr 164.58 MiB 0.68 57488 -1 -1 5 75.57 -1 -1 66788 -1 -1 616 36 0 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 168528 36 100 14036 11283 1 3221 752 31 31 961 clb auto 122.9 MiB 23.95 45792 311790 99765 194358 17667 156.0 MiB 8.56 0.08 13.3702 -2605.71 -13.3702 13.3702 4.96 0.0320431 0.0281398 3.37408 2.78262 62 75192 47 5.15E+07 3.32E+07 4.00E+06 4161.1 167.92 14.3783 11.4346 110674 804802 -1 66248 17 12785 58727 2464123 325270 0 0 2464123 325270 57043 15402 0 0 74924 59239 0 0 104321 74938 0 0 58116 17535 0 0 1077044 78388 0 0 1092675 79768 0 0 57043 0 0 46702 407614 420451 2440416 1861 123 15.1322 15.1322 -2935.85 -15.1322 0 0 4.97E+06 5169.75 2.65 2.78 0.97 -1 -1 2.65 1.89928 1.61546 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 9.78 vpr 72.69 MiB 0.69 45372 -1 -1 3 0.75 -1 -1 40416 -1 -1 92 142 0 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 74432 142 193 1069 1140 1 565 427 14 14 196 clb auto 34.7 MiB 1.06 1752 149878 48868 80243 20767 72.7 MiB 0.76 0.01 2.96377 -460.634 -2.96377 2.96377 0.71 0.0028657 0.0026696 0.307281 0.286074 38 3669 14 9.20E+06 4.96E+06 467348 2384.43 1.8 0.896693 0.825641 18724 93853 -1 3301 11 1157 1822 77690 20816 0 0 77690 20816 1822 1367 0 0 3401 2932 0 0 4076 3408 0 0 1961 1456 0 0 32524 5850 0 0 33906 5803 0 0 1822 0 0 670 1672 1664 11474 0 0 3.62254 3.62254 -560.037 -3.62254 0 0 593372 3027.41 0.24 0.13 0.11 -1 -1 0.24 0.105696 0.0999064 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.2 vpr 67.44 MiB 0.06 9784 -1 -1 3 0.39 -1 -1 37396 -1 -1 65 99 1 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 69060 99 130 363 493 1 251 295 12 12 144 clb auto 29.2 MiB 0.24 717 71908 25870 34054 11984 67.4 MiB 0.27 0 1.83922 -198.941 -1.83922 1.83922 0.45 0.00107536 0.000983006 0.084569 0.0781498 40 1645 10 5.66E+06 4.05E+06 333335 2314.82 1.04 0.284185 0.258873 12946 64812 -1 1532 9 620 808 72040 24269 0 0 72040 24269 808 743 0 0 3914 3738 0 0 4492 3914 0 0 867 808 0 0 29829 7624 0 0 32130 7442 0 0 808 0 0 188 245 173 1848 0 0 2.45075 2.45075 -235.916 -2.45075 0 0 419432 2912.72 0.16 0.06 0.08 -1 -1 0.16 0.0334775 0.0315937 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 43.62 vpr 71.27 MiB 0.05 9636 -1 -1 6 0.3 -1 -1 36860 -1 -1 32 162 0 5 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72980 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 33.3 MiB 0.67 4798 79756 25666 46693 7397 71.3 MiB 0.76 0.01 15.573 -1229.29 -15.573 15.573 1.08 0.00404968 0.00376809 0.326322 0.303508 66 9962 44 1.21E+07 3.70E+06 1.04E+06 4046.83 36.92 2.32322 2.13815 28848 203676 -1 8389 22 3031 5003 1662328 462996 0 0 1662328 462996 5003 3821 0 0 74447 73340 0 0 78985 74896 0 0 5423 4117 0 0 758826 152086 0 0 739644 154736 0 0 5003 0 0 1990 4631 4970 27606 0 0 17.0901 17.0901 -1355.89 -17.0901 0 0 1.29E+06 5032.87 0.5 0.64 0.29 -1 -1 0.5 0.177776 0.166942 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 19.92 vpr 70.00 MiB 0.03 8412 -1 -1 6 0.17 -1 -1 36716 -1 -1 20 66 0 7 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71680 66 96 866 607 1 547 189 18 18 324 mult_36 auto 32.0 MiB 0.61 4654 51137 19049 27853 4235 70.0 MiB 0.59 0.01 12.016 -717.144 -12.016 12.016 1.33 0.00288125 0.00270837 0.299383 0.281 46 11715 25 1.57E+07 3.85E+06 949518 2930.61 12.33 1.06453 0.994468 33056 191736 -1 9693 19 4291 9311 4610800 1111878 0 0 4610800 1111878 9311 7047 0 0 162170 160836 0 0 175341 162904 0 0 10385 8089 0 0 2127055 392581 0 0 2126538 380421 0 0 9311 0 0 5030 13904 14865 63106 0 0 13.2812 13.2812 -865.402 -13.2812 0 0 1.22E+06 3769.23 0.55 1.5 0.28 -1 -1 0.55 0.161177 0.152592 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 5168.34 vpr 613.42 MiB 6.03 207148 -1 -1 101 162.07 -1 -1 107064 -1 -1 2196 114 44 8 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 628144 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 367.2 MiB 109.09 234636 1915489 724304 1164028 27157 581.5 MiB 112.18 0.83 66.9135 -51945.6 -66.9135 66.9135 57.34 0.131263 0.114164 18.2276 14.4048 90 365741 48 1.92E+08 1.46E+08 1.94E+07 5982.34 400 106.508 83.4994 441623 4070163 -1 327184 24 72941 275676 44891770 9678649 0 0 44891770 9678649 266831 93636 0 0 740951 671825 0 0 917391 747345 0 0 277270 108185 0 0 21096127 3960057 0 0 21593200 4097601 0 0 266831 0 0 202110 1035110 1041645 6661945 9314 7656 76.3379 76.3379 -66111.6 -76.3379 0 0 2.43E+07 7486.9 15.86 27.84 5.88 -1 -1 15.86 9.32536 7.81205 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 12253.51 vpr 2.06 GiB 24.8 702124 -1 -1 101 1393.87 -1 -1 324392 -1 -1 7514 114 167 32 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 2159640 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1159.2 MiB 360.78 1052983 9965835 4119074 5792066 54695 1877.1 MiB 704.52 3.21 65.2375 -338588 -65.2375 65.2375 220.28 0.329452 0.260932 61.6871 48.1144 126 1412558 40 6.46E+08 5.09E+08 8.73E+07 8231.76 9221.47 183.942 146.5 1710436 19091112 -1 1339294 22 215646 900684 223339649 51896881 0 0 223339649 51896881 844018 267615 0 0 2644985 2402486 0 0 3287959 2664786 0 0 877062 319916 0 0 106407801 22685912 0 0 109277824 23556166 0 0 844018 0 0 658116 4296012 4273075 23348543 59126 221175 75.0218 75.0218 -494523 -75.0218 0 0 1.10E+08 10406.3 49.82 82.53 17.74 -1 -1 49.82 18.8426 16.0775 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 126.67 vpr 317.73 MiB 1.18 69740 -1 -1 5 11.78 -1 -1 56008 -1 -1 456 506 45 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 325356 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 62.0 MiB 7.03 15735 1150148 545151 422976 182021 317.7 MiB 6.5 0.07 6.80432 -1955.3 -6.80432 6.80432 41.74 0.0218543 0.0199401 2.87939 2.5967 40 23990 15 1.48E+08 4.92E+07 7.18E+06 2873.75 28.29 8.28019 7.61139 260716 1475984 -1 22959 13 3800 4917 3473456 838921 0 0 3473456 838921 4527 4369 0 0 98810 97630 0 0 101330 99135 0 0 4798 4570 0 0 1607324 314105 0 0 1656667 319112 0 0 4527 0 0 730 5238 3996 9252 399 961 7.7292 7.7292 -2395.07 -7.7292 0 0 8.98E+06 3590.19 5.57 1.91 1.79 -1 -1 5.57 0.875143 0.823244 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 24.69 vpr 73.60 MiB 0.16 16940 -1 -1 2 0.16 -1 -1 36836 -1 -1 29 311 15 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 75364 311 156 1019 1160 1 965 511 28 28 784 memory auto 35.3 MiB 0.88 8204 204711 70832 123314 10565 73.6 MiB 1.31 0.02 3.71444 -4070.46 -3.71444 3.71444 3.71 0.00555979 0.00485305 0.567935 0.494678 36 15411 35 4.25E+07 9.78E+06 1.95E+06 2486.2 10.48 2.10544 1.87459 76314 389223 -1 13948 14 3166 3562 2712374 748186 0 0 2712374 748186 3562 3377 0 0 87585 86655 0 0 89265 87873 0 0 3598 3433 0 0 1251982 282755 0 0 1276382 284093 0 0 3562 0 0 396 2815 2263 11862 0 0 4.28754 4.28754 -4822.43 -4.28754 -0.00271738 -0.00135869 2.41E+06 3068.51 1.25 1.07 0.47 -1 -1 1.25 0.24306 0.224609 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 30.36 vpr 86.77 MiB 0.38 29320 -1 -1 4 3 -1 -1 40712 -1 -1 188 193 5 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88848 193 205 2863 2789 1 1455 591 20 20 400 memory auto 49.6 MiB 4.06 11642 265844 92770 145763 27311 86.8 MiB 2.7 0.03 4.52152 -2547.1 -4.52152 4.52152 1.7 0.00883134 0.00792978 1.05264 0.927861 52 19913 20 2.07E+07 1.29E+07 1.31E+06 3276.84 11.41 3.39207 2.99277 42580 268535 -1 17905 15 5289 12745 1471240 365825 0 0 1471240 365825 12288 6989 0 0 44474 39572 0 0 50685 44716 0 0 13085 7700 0 0 678707 134588 0 0 672001 132260 0 0 12288 0 0 7269 38367 36966 273159 499 97 4.91806 4.91806 -2995.21 -4.91806 -0.000474482 -0.000474482 1.73E+06 4312.96 0.78 0.93 0.34 -1 -1 0.78 0.452378 0.414209 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 96.18 vpr 121.08 MiB 0.63 39824 -1 -1 8 8.08 -1 -1 44660 -1 -1 258 385 2 1 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 123988 385 394 4673 4537 1 2422 1040 27 27 729 io auto 65.2 MiB 11.38 31057 606745 237084 344221 25440 102.1 MiB 7.51 0.08 8.28895 -9591.03 -8.28895 8.28895 3.54 0.018804 0.0168864 2.31506 1.98075 90 46346 24 3.93E+07 1.54E+07 4.16E+06 5710.65 50.92 10.9219 9.57036 97397 860673 -1 43862 20 10005 34919 3111396 573903 0 0 3111396 573903 33280 14842 0 0 79378 71234 0 0 100615 79428 0 0 34858 16570 0 0 1442455 190475 0 0 1420810 201354 0 0 33280 0 0 23884 120158 117967 736675 1813 56 8.86754 8.86754 -10883.6 -8.86754 0 0 5.21E+06 7143.01 2.53 2.21 1.08 -1 -1 2.53 1.10656 0.994074 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 35.72 vpr 86.49 MiB 0.41 31640 -1 -1 3 1.69 -1 -1 43372 -1 -1 112 214 0 8 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88564 214 305 2963 2869 1 1445 639 19 19 361 io auto 48.9 MiB 3.64 11737 250980 84439 153411 13130 86.5 MiB 2.14 0.03 4.44136 -2511.57 -4.44136 4.44136 1.48 0.00896997 0.00787568 0.881744 0.782364 62 23914 29 1.73E+07 9.20E+06 1.42E+06 3939 18.94 3.93332 3.52675 40483 281719 -1 20358 17 5836 12809 2980957 662877 0 0 2980957 662877 12561 7996 0 0 106408 103314 0 0 111762 106470 0 0 13273 8738 0 0 1374421 214283 0 0 1362532 222076 0 0 12561 0 0 6797 24561 24020 131982 250 0 5.01085 5.01085 -3005.46 -5.01085 0 0 1.77E+06 4892.99 0.83 1.33 0.33 -1 -1 0.83 0.473515 0.440189 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 472.5 abc 92.02 MiB 1.43 38276 -1 -1 3 438.61 -1 -1 94228 -1 -1 156 38 0 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 88096 38 36 2995 2744 1 1210 230 17 17 289 clb auto 49.2 MiB 3.22 11251 51622 14069 33893 3660 86.0 MiB 1.54 0.02 8.56417 -2373.71 -8.56417 8.56417 1.11 0.00846637 0.00771902 0.72726 0.616065 74 16051 22 1.35E+07 8.41E+06 1.29E+06 4475 16.01 5.12739 4.42106 34075 257581 -1 15820 21 5034 13288 534059 89055 0 0 534059 89055 12124 6019 0 0 18350 13547 0 0 27972 18424 0 0 12475 6589 0 0 233543 21727 0 0 229595 22749 0 0 12124 0 0 7379 38933 39445 259032 1453 521 10.3569 10.3569 -2969.66 -10.3569 0 0 1.62E+06 5618.64 0.72 0.82 0.33 -1 -1 0.72 0.607918 0.533068 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 22.76 vpr 75.44 MiB 0.22 20616 -1 -1 15 1.13 -1 -1 39032 -1 -1 65 45 3 1 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 77252 45 32 1275 1232 1 831 146 14 14 196 memory auto 37.8 MiB 3.64 7358 31250 9081 18235 3934 75.4 MiB 0.85 0.01 9.73534 -6189.64 -9.73534 9.73534 0.7 0.00482235 0.00424014 0.453393 0.393707 68 13670 22 9.20E+06 5.54E+06 8.06E+05 4113.37 12.12 2.15945 1.89866 22432 157909 -1 11694 15 3410 9076 1699511 422960 0 0 1699511 422960 9076 4803 0 0 57842 55629 0 0 62777 58202 0 0 9436 5463 0 0 781091 149342 0 0 779289 149521 0 0 9076 0 0 5805 15868 17275 121698 0 0 11.4497 11.4497 -7399.84 -11.4497 0 0 1.00E+06 5106.22 0.36 0.76 0.21 -1 -1 0.36 0.261948 0.241941 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 128.34 vpr 242.26 MiB 2.04 122964 -1 -1 5 14.75 -1 -1 72556 -1 -1 706 157 0 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 248072 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 184.4 MiB 13.02 39660 573672 189186 359589 24897 218.4 MiB 13.09 0.12 2.93357 -13269.6 -2.93357 2.93357 5.64 0.0539527 0.0471024 6.51429 5.29877 50 62562 33 6.05E+07 3.80E+07 3.66E+06 3363.29 51.59 26.461 21.6395 117303 744553 -1 55467 14 16825 26626 925300 189613 0 0 925300 189613 24093 18260 0 0 36490 28373 0 0 44269 36512 0 0 24639 18848 0 0 399098 44399 0 0 396711 43221 0 0 24093 0 0 7448 36551 38303 216006 2825 2823 3.56714 3.56714 -15222.1 -3.56714 0 0 4.72E+06 4331.1 2.34 2.96 0.89 -1 -1 2.34 2.80554 2.43686 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 297.83 vpr 268.80 MiB 1.85 108200 -1 -1 3 76.9 -1 -1 87708 -1 -1 680 115 0 40 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 275248 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 184.5 MiB 14.01 81105 521535 173000 326356 22179 219.1 MiB 13.27 0.14 5.21748 -22044.5 -5.21748 5.21748 8.42 0.0394073 0.0310078 4.48296 3.63749 86 129410 42 9.16E+07 5.25E+07 8.98E+06 5615.38 139.26 21.0186 17.3992 212028 1885476 -1 117897 15 31467 49921 21563487 4242494 0 0 21563487 4242494 44253 35730 0 0 536149 521931 0 0 565778 536801 0 0 45751 36730 0 0 9907327 1569796 0 0 10464229 1541506 0 0 44253 0 0 13245 171517 157850 650283 6340 4366 5.68185 5.68185 -25366.7 -5.68185 0 0 1.14E+07 7104.67 5.66 9.3 2.46 -1 -1 5.66 2.74907 2.40761 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 1071.34 vpr 1.43 GiB 2.73 155960 -1 -1 3 12.63 -1 -1 205240 -1 -1 1652 149 0 324 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1504576 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 447.2 MiB 45.89 336953 1998354 713359 1226619 58376 1469.3 MiB 93.66 0.68 14.2356 -61247.3 -14.2356 14.2356 217.14 0.150337 0.134365 21.9577 18.3417 80 459361 44 6.68E+08 2.17E+08 5.95E+07 5499.9 491.07 83.3494 70.3513 1421150 12563967 -1 438469 19 116078 136003 31818336 6380705 0 0 31818336 6380705 133312 120755 0 0 920582 880817 0 0 1055780 924151 0 0 134353 121973 0 0 14806651 2154500 0 0 14767658 2178509 0 0 133312 0 0 17330 113879 106009 442672 3046 3323 15.8508 15.8508 -71468.9 -15.8508 0 0 7.50E+07 6931.63 63.24 19.17 16.36 -1 -1 63.24 8.28146 7.20915 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.98 vpr 66.86 MiB 0.08 10132 -1 -1 5 0.22 -1 -1 35988 -1 -1 14 11 0 0 success 3634420-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2023-11-11 22:36:49 gh-actions-runner-vtr-auto-spawned42 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68468 11 30 313 321 2 118 55 7 7 49 clb auto 28.8 MiB 0.41 384 2655 498 2061 96 66.9 MiB 0.06 0 2.27568 -156.828 -2.27568 2.03361 0.11 0.000855836 0.000749128 0.0300177 0.0268101 30 982 28 1.08E+06 754516 77114.5 1573.76 0.5 0.184304 0.159996 3660 13876 -1 704 13 435 770 24606 8197 0 0 24606 8197 770 615 0 0 1332 1096 0 0 1458 1332 0 0 860 650 0 0 10575 2148 0 0 9611 2356 0 0 770 0 0 335 365 317 2897 0 0 2.49945 2.25671 -184.718 -2.49945 0 0 95414.1 1947.23 0.03 0.06 0.02 -1 -1 0.03 0.0448362 0.0411822 +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 +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 334.69 vpr 365.70 MiB 3.37 127004 -1 -1 18 54.36 -1 -1 67200 -1 -1 1012 133 24 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 374472 133 179 18379 18161 1 8999 1348 39 39 1521 clb auto 184.5 MiB 29.82 144060 738205 248575 468279 21351 215.1 MiB 18.83 0.15 17.1699 -131223 -17.1699 17.1699 4.87 0.0506337 0.0441806 6.40319 5.4237 112 208604 33 8.65315e+07 6.7694e+07 1.08482e+07 7132.26 165.12 27.5774 22.9896 228224 2324812 -1 188733 15 35042 128004 17022386 3250891 19.1027 19.1027 -147766 -19.1027 0 0 1.37577e+07 9045.20 4.01 6.90 2.22 -1 -1 4.01 2.50736 2.19784 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 651.69 vpr 702.59 MiB 8.28 372844 -1 -1 14 269.00 -1 -1 148760 -1 -1 2738 257 0 11 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 719448 257 32 36518 33906 1 19790 3038 63 63 3969 clb auto 378.2 MiB 73.47 251687 2224432 781909 1412981 29542 702.6 MiB 52.37 0.44 19.2697 -23462.8 -19.2697 19.2697 35.11 0.0948663 0.0841656 10.9602 9.18481 76 393283 26 2.36641e+08 1.5192e+08 2.05973e+07 5189.55 130.77 35.72 29.8406 506266 4280222 -1 372686 22 93485 423745 26471778 4304940 20.967 20.967 -26080.3 -20.967 0 0 2.57532e+07 6488.59 7.77 13.05 3.94 -1 -1 7.77 5.92528 5.13048 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 126.84 vpr 187.75 MiB 0.79 57608 -1 -1 5 43.13 -1 -1 60744 -1 -1 616 36 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 192252 36 100 14036 11283 1 3221 752 31 31 961 clb auto 121.1 MiB 18.16 45251 318626 99099 201803 17724 153.9 MiB 6.11 0.06 13.284 -2581.7 -13.284 13.284 3.14 0.0261856 0.0235045 2.73197 2.35717 64 69975 29 5.14688e+07 3.31987e+07 4.14665e+06 4314.93 37.36 11.5394 9.75824 112594 842736 -1 66218 18 12842 58127 2453496 323654 15.0076 15.0076 -2956.37 -15.0076 0 0 5.17798e+06 5388.12 1.40 2.38 0.72 -1 -1 1.40 1.52456 1.33239 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 9.95 vpr 70.68 MiB 0.77 45136 -1 -1 3 0.55 -1 -1 37796 -1 -1 92 142 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 72380 142 193 1069 1140 1 565 427 14 14 196 clb auto 32.6 MiB 0.84 1731 153092 55303 76776 21013 70.7 MiB 0.70 0.01 2.96377 -460.331 -2.96377 2.96377 0.45 0.00313342 0.00293973 0.312756 0.293562 46 3502 15 9.20055e+06 4.95825e+06 553089. 2821.88 2.77 1.16586 1.07158 19700 110383 -1 3192 11 1046 1503 66693 17680 3.53379 3.53379 -551.721 -3.53379 0 0 710723. 3626.14 0.16 0.11 0.11 -1 -1 0.16 0.0898472 0.0839766 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 4.37 vpr 65.79 MiB 0.08 9600 -1 -1 3 0.26 -1 -1 34708 -1 -1 65 99 1 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 67372 99 130 363 493 1 251 295 12 12 144 clb auto 27.3 MiB 0.20 693 75832 27261 34967 13604 65.8 MiB 0.28 0.00 1.81713 -195.782 -1.81713 1.81713 0.29 0.00129119 0.00122176 0.104618 0.099014 42 1617 27 5.66058e+06 4.05111e+06 345696. 2400.67 1.76 0.41586 0.382362 13090 66981 -1 1361 10 591 786 53197 17659 2.33284 2.33284 -229.325 -2.33284 0 0 434636. 3018.30 0.10 0.06 0.07 -1 -1 0.10 0.0336083 0.0312581 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 34.77 vpr 69.34 MiB 0.07 9420 -1 -1 6 0.20 -1 -1 34236 -1 -1 32 162 0 5 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 71004 162 96 1075 884 1 667 295 16 16 256 mult_36 auto 31.3 MiB 0.46 4994 80737 27056 46539 7142 69.3 MiB 0.62 0.01 15.41 -1219.34 -15.41 15.41 0.56 0.00347819 0.00328549 0.304345 0.287221 58 12077 46 1.21132e+07 3.70461e+06 904541. 3533.36 29.95 2.25695 2.08615 27572 180683 -1 8978 25 3943 6858 2220489 645038 17.2506 17.2506 -1410.53 -17.2506 0 0 1.15318e+06 4504.63 0.25 0.64 0.12 -1 -1 0.25 0.187399 0.17429 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 18.23 vpr 68.01 MiB 0.05 8432 -1 -1 6 0.13 -1 -1 34248 -1 -1 20 66 0 7 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 69640 66 96 866 607 1 547 189 18 18 324 mult_36 auto 29.8 MiB 0.53 4610 52763 19774 29242 3747 68.0 MiB 0.55 0.01 12.0911 -731.952 -12.0911 12.0911 0.82 0.00296584 0.00281604 0.301375 0.286709 60 9575 21 1.57076e+07 3.84988e+06 1.22123e+06 3769.23 12.54 1.40873 1.31439 35964 244344 -1 8775 18 3450 7638 4266801 1049707 13.0575 13.0575 -835.859 -13.0575 0 0 1.53789e+06 4746.57 0.37 0.98 0.23 -1 -1 0.37 0.126585 0.118804 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 607.64 vpr 702.29 MiB 5.34 206972 -1 -1 101 93.78 -1 -1 104860 -1 -1 2196 114 44 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 719144 114 102 38224 33865 1 18116 2464 57 57 3249 clb auto 364.7 MiB 81.72 233977 1915489 716871 1169800 28818 662.4 MiB 54.95 0.46 66.3008 -51621.3 -66.3008 66.3008 31.55 0.109183 0.0906968 13.4394 11.2402 94 350096 26 1.92089e+08 1.45633e+08 2.02161e+07 6222.26 261.48 64.2989 53.1484 451367 4270599 -1 324363 23 70727 264269 39859790 8295252 76.0336 76.0336 -63585.6 -76.0336 0 0 2.54722e+07 7840.01 7.95 17.16 4.09 -1 -1 7.95 6.53243 5.60136 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU32PEEng.v common 6187.52 vpr 2.20 GiB 26.75 702060 -1 -1 101 767.22 -1 -1 314028 -1 -1 7514 114 167 32 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 2311200 114 102 124851 111146 1 59132 7929 103 103 10609 clb auto 1166.3 MiB 271.79 1035312 9965835 4110686 5813660 41489 2065.6 MiB 306.68 2.10 65.2427 -316473 -65.2427 65.2427 101.75 0.359288 0.291955 48.4324 40.1749 122 1406703 33 6.46441e+08 5.09111e+08 8.50538e+07 8017.14 4405.82 186.819 152.933 1678612 18422568 -1 1312721 21 218000 917359 239981423 58563313 74.5793 74.5793 -466339 -74.5793 0 0 1.06559e+08 10044.2 36.92 84.69 18.86 -1 -1 36.92 20.7991 17.72 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 83.14 vpr 362.01 MiB 1.40 69548 -1 -1 5 7.43 -1 -1 53180 -1 -1 456 506 45 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 370696 506 553 3519 4017 1 3099 1560 50 50 2500 memory auto 59.9 MiB 6.57 14973 1195368 576875 429416 189077 362.0 MiB 6.08 0.06 7.59398 -1950.03 -7.59398 7.59398 23.91 0.02307 0.0208704 3.18242 2.85556 38 22877 18 1.47946e+08 4.92362e+07 6.86579e+06 2746.32 17.53 7.17404 6.5016 258216 1426232 -1 21961 13 3882 5108 3069527 742138 8.45526 8.45526 -2377.37 -8.45526 0 0 8.69102e+06 3476.41 2.98 1.53 1.29 -1 -1 2.98 0.83626 0.776511 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 24.25 vpr 80.21 MiB 0.22 16824 -1 -1 2 0.13 -1 -1 33896 -1 -1 29 311 15 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 82140 311 156 1019 1160 1 965 511 28 28 784 memory auto 33.4 MiB 0.68 8099 204711 70854 122925 10932 72.4 MiB 1.21 0.01 3.79881 -4082.84 -3.79881 3.79881 2.16 0.00566364 0.00502872 0.598764 0.528302 40 14666 19 4.25198e+07 9.78293e+06 2.13295e+06 2720.61 14.11 2.55124 2.25938 78662 432578 -1 13573 15 2991 3325 2515491 691996 4.22024 4.22024 -4792.68 -4.22024 -0.00135869 -0.00135869 2.67004e+06 3405.67 0.69 0.75 0.37 -1 -1 0.69 0.218167 0.197337 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 20.90 vpr 84.54 MiB 0.31 29312 -1 -1 4 1.90 -1 -1 38196 -1 -1 188 193 5 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86568 193 205 2863 2789 1 1455 591 20 20 400 memory auto 47.2 MiB 3.16 11382 258407 89174 142491 26742 84.5 MiB 2.06 0.02 4.38335 -2485.96 -4.38335 4.38335 1.00 0.00789629 0.00711184 0.884738 0.792741 50 20715 23 2.07112e+07 1.28721e+07 1.26946e+06 3173.65 6.98 2.71226 2.41859 41784 253636 -1 18210 16 5405 13125 1234393 273769 5.03699 5.03699 -2913.45 -5.03699 0 0 1.63222e+06 4080.54 0.39 0.59 0.24 -1 -1 0.39 0.328717 0.300566 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 66.46 vpr 139.24 MiB 0.89 39748 -1 -1 8 4.30 -1 -1 42292 -1 -1 258 385 2 1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 142580 385 394 4673 4537 1 2422 1040 27 27 729 io auto 63.0 MiB 9.27 31023 601478 232508 343226 25744 99.8 MiB 5.84 0.06 7.85739 -9392.97 -7.85739 7.85739 2.17 0.019554 0.018322 2.19615 2.01911 104 44724 20 3.93038e+07 1.53967e+07 4.71674e+06 6470.15 32.53 8.60668 7.89913 104677 1002137 -1 43429 16 8895 30713 2906212 548924 8.95537 8.95537 -10435.9 -8.95537 0 0 5.98611e+06 8211.40 1.72 1.55 0.98 -1 -1 1.72 0.745307 0.695937 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 26.84 vpr 84.81 MiB 0.50 31528 -1 -1 3 1.09 -1 -1 40568 -1 -1 112 214 0 8 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 86848 214 305 2963 2869 1 1445 639 19 19 361 io auto 47.0 MiB 2.83 11031 267486 91112 161762 14612 84.8 MiB 1.88 0.02 4.46763 -2516.31 -4.46763 4.46763 0.91 0.00848802 0.00786106 0.841914 0.778411 60 23395 40 1.72706e+07 9.20413e+06 1.37250e+06 3801.94 13.31 3.47236 3.17503 40123 275431 -1 19467 16 5805 13616 3871628 860651 5.01085 5.01085 -2959.94 -5.01085 0 0 1.72840e+06 4787.81 0.42 1.11 0.26 -1 -1 0.42 0.344211 0.320956 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 266.36 abc 92.95 MiB 2.15 38188 -1 -1 3 240.81 -1 -1 95184 -1 -1 156 38 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 85816 38 36 2995 2744 1 1210 230 17 17 289 clb auto 47.2 MiB 2.45 11408 50918 13894 33681 3343 83.8 MiB 1.10 0.02 8.54673 -2331.25 -8.54673 8.54673 0.67 0.00680907 0.00582344 0.516235 0.450111 76 16220 23 1.34605e+07 8.40746e+06 1.31783e+06 4559.95 9.36 2.87439 2.46844 34363 263318 -1 15704 18 4220 11454 419491 71530 9.9202 9.9202 -2651.07 -9.9202 0 0 1.64970e+06 5708.31 0.39 0.49 0.25 -1 -1 0.39 0.3446 0.312166 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 13.78 vpr 73.44 MiB 0.30 20608 -1 -1 15 0.69 -1 -1 35984 -1 -1 65 45 3 1 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 75204 45 32 1275 1232 1 831 146 14 14 196 memory auto 35.8 MiB 2.82 7426 32402 9321 19321 3760 73.4 MiB 0.62 0.01 9.9697 -6171.83 -9.9697 9.9697 0.44 0.0036417 0.00322624 0.33534 0.297023 64 14009 24 9.20055e+06 5.54311e+06 762053. 3888.03 5.53 1.24025 1.07968 22040 150681 -1 12448 16 3919 10439 2018287 476445 11.4585 11.4585 -7360.19 -11.4585 0 0 953435. 4864.47 0.20 0.58 0.15 -1 -1 0.20 0.173348 0.156844 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 92.36 vpr 237.81 MiB 2.42 122552 -1 -1 5 8.00 -1 -1 71292 -1 -1 706 157 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 243520 157 197 23846 21799 1 6628 1060 33 33 1089 clb auto 182.2 MiB 9.69 40648 573672 189155 357492 27025 216.3 MiB 8.12 0.07 3.00378 -13359.4 -3.00378 3.00378 3.56 0.0342376 0.0295835 3.90287 3.32249 50 64823 44 6.0475e+07 3.80493e+07 3.66263e+06 3363.29 36.92 14.0165 11.7867 117303 744553 -1 56771 13 16527 25900 967449 187987 3.99365 3.99365 -15321.4 -3.99365 0 0 4.71657e+06 4331.10 1.32 1.73 0.64 -1 -1 1.32 1.57875 1.41133 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 210.08 vpr 340.62 MiB 2.10 107944 -1 -1 3 38.09 -1 -1 85212 -1 -1 680 115 0 40 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 348796 115 145 23133 19546 1 9699 980 40 40 1600 mult_36 auto 181.3 MiB 9.72 79900 536130 179159 332616 24355 226.9 MiB 10.13 0.09 5.15634 -21382 -5.15634 5.15634 5.55 0.0337921 0.0293125 4.1644 3.53965 88 125912 31 9.16046e+07 5.24886e+07 9.19823e+06 5748.90 109.58 18.8387 15.9772 213624 1916262 -1 116877 15 31773 50291 24638412 4912718 5.45839 5.45839 -24499.7 -5.45839 0 0 1.15336e+07 7208.51 3.10 6.49 1.74 -1 -1 3.10 1.54772 1.38119 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 547.27 vpr 1.56 GiB 2.68 155944 -1 -1 3 8.71 -1 -1 202488 -1 -1 1652 149 0 324 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 1632712 149 182 65737 42630 1 35969 2307 104 104 10816 mult_36 auto 448.2 MiB 35.14 334235 2013591 711329 1238643 63619 1594.4 MiB 51.38 0.39 14.0948 -60352.2 -14.0948 14.0948 107.99 0.115501 0.104145 16.2093 14.2431 76 465221 34 6.67561e+08 2.17331e+08 5.69471e+07 5265.08 211.66 51.9987 45.5626 1388702 11875539 -1 449537 19 126291 147443 41775440 8371510 15.7877 15.7877 -69783.5 -15.7877 0 0 7.12204e+07 6584.73 23.32 14.69 10.99 -1 -1 23.32 5.73235 5.14032 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.37 vpr 64.83 MiB 0.12 10172 -1 -1 5 0.14 -1 -1 33480 -1 -1 14 11 0 0 success v8.0.0-10485-g15fb10844 release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T15:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 66388 11 30 313 321 2 118 55 7 7 49 clb auto 26.6 MiB 0.27 419 2863 613 2168 82 64.8 MiB 0.06 0.00 2.27568 -164.018 -2.27568 2.03361 0.06 0.00089528 0.000816155 0.0297828 0.0273249 30 870 24 1.07788e+06 754516 77114.5 1573.76 0.29 0.14728 0.127266 3660 13876 -1 743 17 484 867 26840 8953 2.49945 2.26992 -185.454 -2.49945 0 0 95414.1 1947.23 0.02 0.05 0.01 -1 -1 0.02 0.0367311 0.0325187 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/config.txt new file mode 100644 index 00000000000..5e529d47f53 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/config.txt @@ -0,0 +1,28 @@ +############################################## +# Configuration file for running experiments +############################################## + +# Path to directory of circuits to use +circuits_dir=benchmarks/verilog + +# Path to directory of architectures to use +archs_dir=arch/timing + +# Add circuits to list to sweep +circuit_list_add=ch_intrinsics.v + +# Add architectures to list to sweep +arch_list_add=k6_frac_N10_mem32K_40nm.xml + +# Parse info and how to parse +parse_file=vpr_standard.txt + +# How to parse QoR info +qor_parse_file=qor_standard.txt + +# Pass requirements +pass_requirements_file=pass_requirements.txt + +# Script parameters +script_params_common = -track_memory_usage +script_params_list_add = --router_heap binary diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt new file mode 100644 index 00000000000..b9f129eb9b4 --- /dev/null +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary_heap/config/golden_results.txt @@ -0,0 +1,2 @@ +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 +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common_--router_heap_binary 3.84 vpr 64.02 MiB -1 -1 0.36 18356 3 0.08 -1 -1 33268 -1 -1 68 99 1 0 success v8.0.0-10487-g332d0eee5-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-24T23:20:04 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65556 99 130 343 473 1 225 298 12 12 144 clb auto 25.6 MiB 0.16 546 70943 21532 36057 13354 64.0 MiB 0.25 0.00 1.62851 -108.971 -1.62851 1.62851 0.28 0.00128139 0.00121193 0.0942161 0.0891007 40 1360 13 5.66058e+06 4.21279e+06 333335. 2314.82 1.46 0.492954 0.451517 12666 64609 -1 1238 7 411 665 40240 12831 2.02375 2.02375 -140.243 -2.02375 -0.301105 -0.10796 419432. 2912.72 0.09 0.04 0.07 -1 -1 0.09 0.0250123 0.0232731 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt index ee0b1475e7f..aac17a8bd11 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fc_abs/config/golden_results.txt @@ -1,2 +1,2 @@ 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 -k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 1.82 vpr 63.97 MiB -1 -1 0.58 25532 5 0.16 -1 -1 36972 -1 -1 12 10 0 0 success b93114b release IPO VTR_ASSERT_LEVEL=3 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-05-16T13:37:54 gh-actions-runner-vtr-auto-spawned30 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65508 10 2 181 183 1 40 24 6 6 36 clb auto 25.5 MiB 0.04 174 92 23 64 5 64.0 MiB 0.01 0.00 2.07517 -86.4376 -2.07517 2.07517 0.05 0.000355588 0.000315311 0.00287009 0.00268552 8 234 44 646728 646728 33486.6 930.184 0.21 0.0643387 0.0544077 1588 8314 -1 240 19 270 565 23832 7408 2.63212 2.63212 -118.257 -2.63212 0 0 42482.2 1180.06 0.01 0.03 0.01 -1 -1 0.01 0.0164962 0.0145092 +k6_N10_mem32K_40nm_fc_abs.xml stereovision3.v common 3.26 vpr 60.91 MiB -1 -1 0.72 22552 5 0.45 -1 -1 33444 -1 -1 12 10 0 0 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 62376 10 2 181 183 1 40 24 6 6 36 clb auto 22.2 MiB 0.04 174 92 23 64 5 60.9 MiB 0.01 0.00 2.07517 -86.4376 -2.07517 2.07517 0.04 0.000492958 0.000453322 0.00292737 0.00275391 12 210 19 646728 646728 46454.1 1290.39 0.25 0.104303 0.0865769 1696 12788 -1 190 14 229 450 16294 3769 2.31307 2.31307 -105.081 -2.31307 0 0 57919.4 1608.87 0.01 0.03 0.01 -1 -1 0.01 0.0152419 0.0132254 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt index a019b89b620..764dc6c146e 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_delay_calc_method/config/golden_results.txt @@ -1,5 +1,5 @@ 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 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 39.81 vpr 978.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 106a52a release IPO VTR_ASSERT_LEVEL=3 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-03-01T18:56:15 gh-actions-runner-vtr-auto-spawned12 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1001932 10 10 168 178 1 62 30 11 8 88 io auto 954.7 MiB 0.59 345 766 84 629 53 978.4 MiB 0.05 0.00 6.42093 -69.165 -6.42093 6.42093 3.07 0.000437885 0.00039127 0.0125651 0.0115806 20 749 20 0 0 100248. 1139.18 1.73 0.19564 0.171991 11180 23751 -1 759 16 363 1367 129159 52560 7.05752 7.05752 -76.511 -7.05752 0 0 125464. 1425.72 0.03 0.08 0.08 -1 -1 0.03 0.0329119 0.0303443 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 40.02 vpr 978.43 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 106a52a release IPO VTR_ASSERT_LEVEL=3 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-03-01T18:56:15 gh-actions-runner-vtr-auto-spawned12 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1001908 10 10 168 178 1 62 30 11 8 88 io auto 954.8 MiB 0.62 344 720 82 581 57 978.4 MiB 0.05 0.00 6.39032 -69.1435 -6.39032 6.39032 3.05 0.000477436 0.000414516 0.0134354 0.0123555 18 826 22 0 0 88979.3 1011.13 1.84 0.21881 0.191881 11100 22242 -1 787 17 455 1856 167337 66315 7.03645 7.03645 -77.7495 -7.03645 0 0 114778. 1304.29 0.03 0.08 0.08 -1 -1 0.03 0.0333434 0.0307725 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 40.20 vpr 978.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 106a52a release IPO VTR_ASSERT_LEVEL=3 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-03-01T18:56:15 gh-actions-runner-vtr-auto-spawned12 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1001904 10 10 168 178 1 62 30 11 8 88 io auto 954.7 MiB 0.62 334 766 75 633 58 978.4 MiB 0.05 0.00 6.24004 -68.8638 -6.24004 6.24004 4.21 0.00043712 0.00039058 0.0135251 0.0124714 20 746 22 0 0 100248. 1139.18 0.58 0.10259 0.0909598 11180 23751 -1 649 15 376 1644 145960 58750 6.75777 6.75777 -74.5795 -6.75777 0 0 125464. 1425.72 0.04 0.08 0.08 -1 -1 0.04 0.0325761 0.0301424 -stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 41.96 vpr 978.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success 106a52a release IPO VTR_ASSERT_LEVEL=3 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-03-01T18:56:15 gh-actions-runner-vtr-auto-spawned12 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 1002092 10 10 168 178 1 62 30 11 8 88 io auto 954.8 MiB 0.62 339 720 76 599 45 978.6 MiB 0.05 0.00 6.3798 -68.6604 -6.3798 6.3798 4.27 0.000432929 0.000377889 0.0149805 0.0140656 18 805 24 0 0 88979.3 1011.13 2.25 0.280633 0.247426 11100 22242 -1 659 19 387 1549 135401 55869 6.92851 6.92851 -76.1613 -6.92851 0 0 114778. 1304.29 0.03 0.08 0.07 -1 -1 0.03 0.0337395 0.0309553 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_astar 31.68 vpr 976.39 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999828 10 10 168 178 1 62 30 11 8 88 io auto 952.7 MiB 0.49 368 766 91 620 55 976.4 MiB 0.07 0.00 6.32355 -69.2597 -6.32355 6.32355 3.03 0.000606959 0.000542424 0.0138306 0.0128873 28 702 21 0 0 134428. 1527.59 0.57 0.101778 0.0894085 11590 29630 -1 622 11 230 891 89731 31995 6.89935 6.89935 -73.8866 -6.89935 0 0 173354. 1969.93 0.03 0.06 0.10 -1 -1 0.03 0.0214102 0.0193672 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_astar 32.09 vpr 976.50 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999936 10 10 168 178 1 62 30 11 8 88 io auto 952.8 MiB 0.49 344 720 82 581 57 976.5 MiB 0.07 0.00 6.39032 -69.1435 -6.39032 6.39032 3.04 0.000600169 0.000551234 0.0130613 0.0122073 18 839 22 0 0 88979.3 1011.13 0.65 0.101009 0.0885949 11100 22242 -1 762 18 447 1915 168871 66281 7.03645 7.03645 -77.8983 -7.03645 0 0 114778. 1304.29 0.02 0.08 0.09 -1 -1 0.02 0.0279206 0.0247821 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_--place_delta_delay_matrix_calculation_method_dijkstra 34.28 vpr 976.46 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999896 10 10 168 178 1 62 30 11 8 88 io auto 952.8 MiB 0.49 334 766 75 633 58 976.5 MiB 0.10 0.00 6.24004 -68.8638 -6.24004 6.24004 4.07 0.000634706 0.000586765 0.0149754 0.0140212 18 899 39 0 0 88979.3 1011.13 0.73 0.110608 0.0954776 11100 22242 -1 696 22 510 2363 198597 78898 6.62875 6.62875 -75.2001 -6.62875 0 0 114778. 1304.29 0.02 0.10 0.09 -1 -1 0.02 0.0320727 0.028307 +stratixiv_arch.timing.xml styr.blif common_--place_delay_model_delta_override_--place_delta_delay_matrix_calculation_method_dijkstra 34.15 vpr 976.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 10 -1 -1 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 999816 10 10 168 178 1 62 30 11 8 88 io auto 952.7 MiB 0.50 339 720 76 599 45 976.4 MiB 0.08 0.00 6.3798 -68.6604 -6.3798 6.3798 4.15 0.000660135 0.000609847 0.0138725 0.0129932 18 811 22 0 0 88979.3 1011.13 0.62 0.0967468 0.0834932 11100 22242 -1 677 19 362 1443 129672 53439 6.93449 6.93449 -74.8141 -6.93449 0 0 114778. 1304.29 0.02 0.08 0.09 -1 -1 0.02 0.0289955 0.0256269 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt index 6cc4cc0eb4f..05b72aef923 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_custom_pin_locs/config/golden_results.txt @@ -1,2 +1,2 @@ - 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 - k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 5.54 vpr 62.11 MiB 0.09 9428 -1 -1 3 0.28 -1 -1 36388 -1 -1 65 99 1 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 63596 99 130 363 493 1 251 295 12 12 144 clb auto 24.0 MiB 0.31 686 62.1 MiB 0.45 0.00 2.09536 -200 -2.09536 2.09536 0.39 0.000659078 0.000579598 0.0648306 0.0586616 36 1781 16 5.66058e+06 4.05111e+06 314518. 2184.15 2.05 0.327517 0.299975 1452 8 533 700 58546 20432 2.70931 2.70931 -237.037 -2.70931 0 0 390367. 2710.88 0.12 0.10 0.0222878 0.0211727 +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 +k6_frac_N10_mem32K_40nm_custom_pins.xml ch_intrinsics.v common 4.11 vpr 64.18 MiB 0.11 9384 -1 -1 3 0.25 -1 -1 34556 -1 -1 65 99 1 0 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65720 99 130 363 493 1 251 295 12 12 144 clb auto 25.7 MiB 0.12 622 69946 24703 33944 11299 64.2 MiB 0.26 0.00 2.16091 -205.436 -2.16091 2.16091 0.29 0.0012912 0.0012237 0.0961186 0.0910662 48 1444 10 5.66058e+06 4.05111e+06 405754. 2817.73 1.54 0.404478 0.371498 13382 80270 -1 1262 8 582 753 44166 14431 2.70001 2.70001 -235.841 -2.70001 0 0 516884. 3589.47 0.10 0.05 0.08 -1 -1 0.10 0.0277344 0.0257451 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt index f7631cf97e0..53e1a99cf04 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_fix_pins_random/config/golden_results.txt @@ -1,2 +1,2 @@ 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 - k6_N10_mem32K_40nm.xml stereovision3.v common 4.02 vpr 61.07 MiB 0.13 10072 -1 -1 4 0.16 -1 -1 33252 -1 -1 19 11 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 62540 11 30 262 292 2 104 60 7 7 49 clb auto 22.4 MiB 0.17 491 61.1 MiB 0.14 0.00 2.22129 -174.848 -2.22129 2.12256 0.08 0.000609229 0.000514776 0.0130362 0.0113054 30 570 24 1.07788e+06 1.02399e+06 58936.16 1202.776 1.53 0.218794 0.187902 537 22 693 1872 55819 14529 2.35993 2.22897 -183.816 -2.35993 0 0 90369.8 1844.28 0.02 0.10 0.0321781 0.0283564 + k6_N10_mem32K_40nm.xml stereovision3.v common 4.02 vpr 61.07 MiB 0.13 10072 -1 -1 4 0.16 -1 -1 33252 -1 -1 19 11 0 0 success v8.0.0-6793-gb52911b9f release IPO VTR_ASSERT_LEVEL=2 GNU 7.5.0 on Linux-4.15.0-167-generic x86_64 2022-11-27T15:52:14 betzgrp-wintermute.eecg.utoronto.ca /home/elgamma8/research/pack_refactor/vtr-verilog-to-routing 62540 11 30 262 292 2 104 60 7 7 49 clb auto 22.4 MiB 0.17 491 61.1 MiB 0.14 0.00 2.22129 -174.848 -2.22129 2.12256 0.08 0.000609229 0.000514776 0.0130362 0.0113054 30 570 24 1.07788e+06 1.02399e+06 77018.1 1571.80 1.53 0.218794 0.187902 537 22 693 1872 55819 14529 2.35993 2.22897 -183.816 -2.35993 0 0 90369.8 1844.28 0.02 0.10 0.0321781 0.0283564 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt index e4756f04eed..54bf24aa31b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_power/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_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 total_power routing_power_perc clock_power_perc tile_power_perc -k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 5.18 vpr 64.90 MiB 0.07 9156 -1 -1 3 0.39 -1 -1 37008 -1 -1 65 99 1 0 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 66456 99 130 363 493 1 251 295 12 12 144 clb auto 26.4 MiB 0.14 716 64.9 MiB 0.33 0.01 1.90626 -194.539 -1.90626 1.90626 0.31 0.000604703 0.000530122 0.0515231 0.0453894 54 1587 13 5.66058e+06 4.05111e+06 434679. 3018.61 1.70 0.253791 0.231502 13954 85374 -1 1437 8 553 729 56439 17785 0 0 56439 17785 729 650 0 0 3121 2933 0 0 4058 3129 0 0 782 738 0 0 24058 5531 0 0 23691 4804 0 0 729 0 0 176 202 126 1613 0 0 2.40865 2.40865 -228.021 -2.40865 0 0 565229. 3925.20 0.21 0.04 0.09 -1 -1 0.21 0.0207778 0.0197602 0.009639 0.2257 0.07523 0.699 -k6_frac_N10_mem32K_40nm.xml diffeq1.v common 16.40 vpr 69.00 MiB 0.05 9192 -1 -1 15 0.48 -1 -1 36976 -1 -1 36 162 0 5 success v8.0.0-7649-g3eb9a4e-dirty Release IPO VTR_ASSERT_LEVEL=3 GNU 9.4.0 on Linux-4.13.1-041301-generic x86_64 2023-04-20T17:52:50 agent-1 /home/mahmo494/RL_experiment/vtr-verilog-to-routing/vtr_flow/tasks 70656 162 96 999 932 1 693 299 16 16 256 mult_36 auto 30.6 MiB 0.44 5330 69.0 MiB 0.67 0.01 19.9673 -1772.48 -19.9673 19.9673 0.66 0.00152488 0.00136724 0.150821 0.135746 58 12269 42 1.21132e+07 3.92018e+06 904549. 3533.39 9.47 0.786766 0.718303 27012 180273 -1 9297 18 3060 6039 1647819 468987 0 0 1647819 468987 6039 3809 0 0 77932 76600 0 0 80649 78124 0 0 6383 4237 0 0 750165 154190 0 0 726651 152027 0 0 6039 0 0 3011 8536 8247 50331 0 0 22.3411 22.3411 -2046.61 -22.3411 0 0 1.15318e+06 4504.63 0.39 0.41 0.19 -1 -1 0.39 0.090292 0.0850759 0.008084 0.3612 0.0179 0.6209 +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 total_power routing_power_perc clock_power_perc tile_power_perc +k6_frac_N10_mem32K_40nm.xml ch_intrinsics.v common 5.03 vpr 64.38 MiB 0.08 9300 -1 -1 3 0.27 -1 -1 34472 -1 -1 65 99 1 0 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 65920 99 130 363 493 1 251 295 12 12 144 clb auto 26.0 MiB 0.11 689 74851 27588 35358 11905 64.4 MiB 0.27 0.00 1.95917 -193.957 -1.95917 1.95917 0.28 0.00128697 0.00120386 0.102392 0.0970051 36 1783 25 5.66058e+06 4.05111e+06 305235. 2119.69 2.13 0.564442 0.516955 12238 58442 -1 1507 10 626 795 63145 21656 2.40991 2.40991 -234.13 -2.40991 0 0 378970. 2631.74 0.08 0.06 0.06 -1 -1 0.08 0.0320782 0.0297388 0.009088 0.1924 0.0657 0.7419 +k6_frac_N10_mem32K_40nm.xml diffeq1.v common 15.47 vpr 68.46 MiB 0.06 9320 -1 -1 15 0.34 -1 -1 34492 -1 -1 36 162 0 5 success v8.0.0-10480-g679618a2e release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-06-23T21:50:39 betzgrp-wintermute.eecg.utoronto.ca /home/shrevena/Documents/vtr/vtr-verilog-to-routing/vtr_flow/tasks 70104 162 96 999 932 1 693 299 16 16 256 mult_36 auto 30.3 MiB 0.31 5536 80219 26586 47265 6368 68.5 MiB 0.60 0.01 20.1302 -1839.52 -20.1302 20.1302 0.58 0.00341385 0.00322318 0.300638 0.283642 48 12311 38 1.21132e+07 3.92018e+06 756778. 2956.16 8.97 1.50918 1.39359 25228 149258 -1 9827 21 3419 7238 2420080 610031 22.8977 22.8977 -2139.63 -22.8977 0 0 968034. 3781.38 0.21 0.61 0.14 -1 -1 0.21 0.162729 0.151531 0.007773 0.348 0.01653 0.6354