From 6ef34fc18fbeb1bee6343ed4ab50ed6ff0e1ee5c Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 15:41:28 -0400 Subject: [PATCH 01/17] move calculate_channel_width() to rr_graph.cpp --- vpr/src/base/stats.cpp | 35 ------------- vpr/src/base/stats.h | 12 ----- vpr/src/base/vpr_context.h | 5 ++ vpr/src/place/net_cost_handler.cpp | 3 +- .../route/rr_graph_generation/rr_graph.cpp | 49 +++++++++++++++++++ 5 files changed, 56 insertions(+), 48 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 7ece122c4b..6d6d7cadb6 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -126,41 +126,6 @@ void routing_stats(const Netlist<>& net_list, } } -std::pair, vtr::NdMatrix> calculate_channel_width() { - const auto& device_ctx = g_vpr_ctx.device(); - const auto& rr_graph = device_ctx.rr_graph; - - auto chanx_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), - device_ctx.grid.height()}}, - 0); - - auto chany_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), - device_ctx.grid.height()}}, - 0); - - for (RRNodeId node_id : rr_graph.nodes()) { - e_rr_type rr_type = rr_graph.node_type(node_id); - - if (rr_type == e_rr_type::CHANX) { - int y = rr_graph.node_ylow(node_id); - int layer = rr_graph.node_layer_low(node_id); - for (int x = rr_graph.node_xlow(node_id); x <= rr_graph.node_xhigh(node_id); x++) { - chanx_width[layer][x][y] += rr_graph.node_capacity(node_id); - } - } else if (rr_type == e_rr_type::CHANY) { - int x = rr_graph.node_xlow(node_id); - int layer = rr_graph.node_layer_low(node_id); - for (int y = rr_graph.node_ylow(node_id); y <= rr_graph.node_yhigh(node_id); y++) { - chany_width[layer][x][y] += rr_graph.node_capacity(node_id); - } - } - } - - return {chanx_width, chany_width}; -} - void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { int max_bends = 0; int total_bends = 0; diff --git a/vpr/src/base/stats.h b/vpr/src/base/stats.h index 1f9efe45af..d2c6b58fbd 100644 --- a/vpr/src/base/stats.h +++ b/vpr/src/base/stats.h @@ -24,18 +24,6 @@ void routing_stats(const Netlist<>& net_list, RRSwitchId wire_to_ipin_switch, bool is_flat); -/** - * @brief Calculates the routing channel width at each grid location. - * - * Iterates through all RR nodes and counts how many wires pass through each (x, y) location - * for both horizontal (CHANX) and vertical (CHANY) channels. - * - * @return A pair of 3D matrices: - * - First: CHANX width per [layer][x][y] - * - Second: CHANY width per [layer][x][y] - */ -std::pair, vtr::NdMatrix> calculate_channel_width(); - void print_wirelen_prob_dist(bool is_flat); void print_lambda(); diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 6464f97468..1bfe2e1046 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -263,6 +263,11 @@ struct DeviceContext : public Context { int delayless_switch_idx = UNDEFINED; + /// Stores the number of CHANX wire segments in each routing channel at [layer][x][y] + vtr::NdMatrix rr_chanx_width; + /// Stores the number of CHANY wire segments in each routing channel at [layer][x][y] + vtr::NdMatrix rr_chany_width; + bool rr_graph_is_flat = false; /* diff --git a/vpr/src/place/net_cost_handler.cpp b/vpr/src/place/net_cost_handler.cpp index 243bd0cba8..473f15c2b7 100644 --- a/vpr/src/place/net_cost_handler.cpp +++ b/vpr/src/place/net_cost_handler.cpp @@ -1819,7 +1819,8 @@ std::pair, vtr::NdMatrix> NetCostHandler::es } } - const auto [chanx_width, chany_width] = calculate_channel_width(); + const vtr::NdMatrix& chanx_width = device_ctx.rr_chanx_width; + const vtr::NdMatrix& chany_width = device_ctx.rr_chany_width; VTR_ASSERT(chanx_util.size() == chany_util.size()); VTR_ASSERT(chanx_util.ndims() == chany_util.ndims()); diff --git a/vpr/src/route/rr_graph_generation/rr_graph.cpp b/vpr/src/route/rr_graph_generation/rr_graph.cpp index 7671a72e91..e3ce3e9ee9 100644 --- a/vpr/src/route/rr_graph_generation/rr_graph.cpp +++ b/vpr/src/route/rr_graph_generation/rr_graph.cpp @@ -376,6 +376,18 @@ static void build_rr_graph(e_graph_type graph_type, static int get_delayless_switch_id(const t_det_routing_arch& det_routing_arch, bool load_rr_graph); +/** + * @brief Calculates the routing channel width at each grid location. + * + * Iterates through all RR nodes and counts how many wires pass through each (x, y) location + * for both horizontal (CHANX) and vertical (CHANY) channels. + * + * @return A pair of 3D matrices: + * - First: CHANX width per [layer][x][y] + * - Second: CHANY width per [layer][x][y] + */ +static std::pair, vtr::NdMatrix> calculate_channel_width(); + /******************* Subroutine definitions *******************************/ void create_rr_graph(e_graph_type graph_type, @@ -533,6 +545,8 @@ void create_rr_graph(e_graph_type graph_type, device_ctx.rr_graph.rr_nodes(), is_flat); + std::tie(mutable_device_ctx.rr_chanx_width, mutable_device_ctx.rr_chany_width) = calculate_channel_width(); + print_rr_graph_stats(); // Write out rr graph file if needed - Currently, writing the flat rr-graph is not supported since loading from a flat rr-graph is not supported. @@ -1116,6 +1130,41 @@ static int get_delayless_switch_id(const t_det_routing_arch& det_routing_arch, return delayless_switch; } +static std::pair, vtr::NdMatrix> calculate_channel_width() { + const auto& device_ctx = g_vpr_ctx.device(); + const auto& rr_graph = device_ctx.rr_graph; + + auto chanx_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), + device_ctx.grid.width(), + device_ctx.grid.height()}}, + 0); + + auto chany_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), + device_ctx.grid.width(), + device_ctx.grid.height()}}, + 0); + + for (RRNodeId node_id : rr_graph.nodes()) { + e_rr_type rr_type = rr_graph.node_type(node_id); + + if (rr_type == e_rr_type::CHANX) { + int y = rr_graph.node_ylow(node_id); + int layer = rr_graph.node_layer_low(node_id); + for (int x = rr_graph.node_xlow(node_id); x <= rr_graph.node_xhigh(node_id); x++) { + chanx_width[layer][x][y] += rr_graph.node_capacity(node_id); + } + } else if (rr_type == e_rr_type::CHANY) { + int x = rr_graph.node_xlow(node_id); + int layer = rr_graph.node_layer_low(node_id); + for (int y = rr_graph.node_ylow(node_id); y <= rr_graph.node_yhigh(node_id); y++) { + chany_width[layer][x][y] += rr_graph.node_capacity(node_id); + } + } + } + + return {chanx_width, chany_width}; +} + void build_tile_rr_graph(RRGraphBuilder& rr_graph_builder, const t_det_routing_arch& det_routing_arch, t_physical_tile_type_ptr physical_tile, From 416ce965576c06273523be506b99b50769e54d9d Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 15:56:38 -0400 Subject: [PATCH 02/17] use chan widths extracted from rr garph in drawing --- vpr/src/draw/draw.cpp | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/vpr/src/draw/draw.cpp b/vpr/src/draw/draw.cpp index 4593410afb..b96cc2a159 100644 --- a/vpr/src/draw/draw.cpp +++ b/vpr/src/draw/draw.cpp @@ -431,6 +431,7 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { t_draw_state* draw_state = get_draw_state_vars(); t_draw_coords* draw_coords = get_draw_coords_vars(); const DeviceContext& device_ctx = g_vpr_ctx.device(); + const DeviceGrid& grid = device_ctx.grid; const RRGraphView& rr_graph = device_ctx.rr_graph; /* Store a reference to block location variables so that other drawing @@ -438,9 +439,10 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { * the global placement state, which is inaccessible during placement.*/ draw_state->set_graphics_blk_loc_registry_ref(blk_loc_registry); - if (!draw_state->show_graphics && !draw_state->save_graphics - && draw_state->graphics_commands.empty()) - return; //do not initialize only if --disp off and --save_graphics off + // do not initialize only if --disp off and --save_graphics off + if (!draw_state->show_graphics && !draw_state->save_graphics && draw_state->graphics_commands.empty()) { + return; + } /* Each time routing is on screen, need to reallocate the color of each * * rr_node, as the number of rr_nodes may change. */ @@ -461,22 +463,28 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { } } + std::vector chanx_width_list(grid.height(), 0); + std::vector chany_width_list(grid.width(), 0); + + for (t_physical_tile_loc loc : grid.all_locations()) { + chanx_width_list[loc.y] = std::max(device_ctx.rr_chanx_width[loc.layer_num][loc.x][loc.y], chanx_width_list[loc.y]); + chany_width_list[loc.x] = std::max(device_ctx.rr_chany_width[loc.layer_num][loc.x][loc.y], chany_width_list[loc.x]); + } + size_t j = 0; - for (size_t i = 0; i < (device_ctx.grid.width() - 1); i++) { + for (size_t i = 0; i < grid.width() - 1; i++) { draw_coords->tile_x[i] = (i * draw_coords->get_tile_width()) + j; - j += device_ctx.chan_width.y_list[i] + 1; /* N wires need N+1 units of space */ + j += chany_width_list[i] + 1; // N wires need N+1 units of space } - draw_coords->tile_x[device_ctx.grid.width() - 1] = ((device_ctx.grid.width() - - 1) - * draw_coords->get_tile_width()) - + j; + draw_coords->tile_x[grid.width() - 1] = (grid.width() - 1) * draw_coords->get_tile_width() + j; + j = 0; - for (size_t i = 0; i < (device_ctx.grid.height() - 1); ++i) { + for (size_t i = 0; i < device_ctx.grid.height() - 1; ++i) { draw_coords->tile_y[i] = (i * draw_coords->get_tile_width()) + j; - j += device_ctx.chan_width.x_list[i] + 1; + j += chanx_width_list[i] + 1; } - draw_coords->tile_y[device_ctx.grid.height() - 1] = ((device_ctx.grid.height() - 1) * draw_coords->get_tile_width()) - + j; + draw_coords->tile_y[grid.height() - 1] = (grid.height() - 1) * draw_coords->get_tile_width() + j; + /* Load coordinates of sub-blocks inside the clbs */ draw_internal_init_blk(); //Margin beyond edge of the drawn device to extend the visible world @@ -484,10 +492,8 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { //space around the device edges constexpr float VISIBLE_MARGIN = 0.01; - float draw_width = draw_coords->tile_x[device_ctx.grid.width() - 1] - + draw_coords->get_tile_width(); - float draw_height = draw_coords->tile_y[device_ctx.grid.height() - 1] - + draw_coords->get_tile_width(); + float draw_width = draw_coords->tile_x[grid.width() - 1] + draw_coords->get_tile_width(); + float draw_height = draw_coords->tile_y[grid.height() - 1] + draw_coords->get_tile_width(); initial_world = ezgl::rectangle( {-VISIBLE_MARGIN * draw_width, -VISIBLE_MARGIN * draw_height}, From e2972023f81458676d5f09973a60c8c37ac74ed7 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 16:22:07 -0400 Subject: [PATCH 03/17] add rr_chanx/y_list to device context --- vpr/src/base/vpr_context.h | 3 ++ vpr/src/draw/draw.cpp | 12 +---- .../route/rr_graph_generation/rr_graph.cpp | 46 +++++++++++-------- 3 files changed, 32 insertions(+), 29 deletions(-) diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 1bfe2e1046..4ecb0c0f4a 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -268,6 +268,9 @@ struct DeviceContext : public Context { /// Stores the number of CHANY wire segments in each routing channel at [layer][x][y] vtr::NdMatrix rr_chany_width; + std::vector rr_chanx_list; + std::vector rr_chany_list; + bool rr_graph_is_flat = false; /* diff --git a/vpr/src/draw/draw.cpp b/vpr/src/draw/draw.cpp index b96cc2a159..5e499118a2 100644 --- a/vpr/src/draw/draw.cpp +++ b/vpr/src/draw/draw.cpp @@ -463,25 +463,17 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { } } - std::vector chanx_width_list(grid.height(), 0); - std::vector chany_width_list(grid.width(), 0); - - for (t_physical_tile_loc loc : grid.all_locations()) { - chanx_width_list[loc.y] = std::max(device_ctx.rr_chanx_width[loc.layer_num][loc.x][loc.y], chanx_width_list[loc.y]); - chany_width_list[loc.x] = std::max(device_ctx.rr_chany_width[loc.layer_num][loc.x][loc.y], chany_width_list[loc.x]); - } - size_t j = 0; for (size_t i = 0; i < grid.width() - 1; i++) { draw_coords->tile_x[i] = (i * draw_coords->get_tile_width()) + j; - j += chany_width_list[i] + 1; // N wires need N+1 units of space + j += device_ctx.rr_chany_list[i] + 1; // N wires need N+1 units of space } draw_coords->tile_x[grid.width() - 1] = (grid.width() - 1) * draw_coords->get_tile_width() + j; j = 0; for (size_t i = 0; i < device_ctx.grid.height() - 1; ++i) { draw_coords->tile_y[i] = (i * draw_coords->get_tile_width()) + j; - j += chanx_width_list[i] + 1; + j += device_ctx.rr_chanx_list[i] + 1; } draw_coords->tile_y[grid.height() - 1] = (grid.height() - 1) * draw_coords->get_tile_width() + j; diff --git a/vpr/src/route/rr_graph_generation/rr_graph.cpp b/vpr/src/route/rr_graph_generation/rr_graph.cpp index e3ce3e9ee9..f790a5a3d5 100644 --- a/vpr/src/route/rr_graph_generation/rr_graph.cpp +++ b/vpr/src/route/rr_graph_generation/rr_graph.cpp @@ -379,14 +379,10 @@ static int get_delayless_switch_id(const t_det_routing_arch& det_routing_arch, /** * @brief Calculates the routing channel width at each grid location. * - * Iterates through all RR nodes and counts how many wires pass through each (x, y) location + * Iterates through all RR nodes and counts how many wires pass through each (layer, x, y) location * for both horizontal (CHANX) and vertical (CHANY) channels. - * - * @return A pair of 3D matrices: - * - First: CHANX width per [layer][x][y] - * - Second: CHANY width per [layer][x][y] */ -static std::pair, vtr::NdMatrix> calculate_channel_width(); +static void alloc_and_init_channel_width(); /******************* Subroutine definitions *******************************/ @@ -545,7 +541,7 @@ void create_rr_graph(e_graph_type graph_type, device_ctx.rr_graph.rr_nodes(), is_flat); - std::tie(mutable_device_ctx.rr_chanx_width, mutable_device_ctx.rr_chany_width) = calculate_channel_width(); + alloc_and_init_channel_width(); print_rr_graph_stats(); @@ -1130,19 +1126,19 @@ static int get_delayless_switch_id(const t_det_routing_arch& det_routing_arch, return delayless_switch; } -static std::pair, vtr::NdMatrix> calculate_channel_width() { - const auto& device_ctx = g_vpr_ctx.device(); - const auto& rr_graph = device_ctx.rr_graph; +static void alloc_and_init_channel_width() { + DeviceContext& mutable_device_ctx = g_vpr_ctx.mutable_device(); + const DeviceGrid& grid = mutable_device_ctx.grid; + const auto& rr_graph = mutable_device_ctx.rr_graph; + + vtr::NdMatrix& chanx_width = mutable_device_ctx.rr_chanx_width; + vtr::NdMatrix& chany_width = mutable_device_ctx.rr_chany_width; - auto chanx_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), - device_ctx.grid.height()}}, - 0); + chanx_width.resize({grid.get_num_layers(), grid.width(), grid.height()}); + chany_width.resize({grid.get_num_layers(), grid.width(), grid.height()}); - auto chany_width = vtr::NdMatrix({{device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), - device_ctx.grid.height()}}, - 0); + chanx_width.fill(0); + chany_width.fill(0); for (RRNodeId node_id : rr_graph.nodes()) { e_rr_type rr_type = rr_graph.node_type(node_id); @@ -1162,7 +1158,19 @@ static std::pair, vtr::NdMatrix> calculate_channel } } - return {chanx_width, chany_width}; + std::vector& chanx_width_list = mutable_device_ctx.rr_chanx_list; + std::vector& chany_width_list = mutable_device_ctx.rr_chany_list; + + chanx_width_list.resize(grid.height()); + chany_width_list.resize(grid.width()); + + std::ranges::fill(chanx_width_list, 0); + std::ranges::fill(chany_width_list, 0); + + for (t_physical_tile_loc loc : grid.all_locations()) { + chanx_width_list[loc.y] = std::max(chanx_width[loc.layer_num][loc.x][loc.y], chanx_width_list[loc.y]); + chany_width_list[loc.x] = std::max(chany_width[loc.layer_num][loc.x][loc.y], chany_width_list[loc.x]); + } } void build_tile_rr_graph(RRGraphBuilder& rr_graph_builder, From 441400ad21222208087efa5ced1c97ddbe4f9ae5 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 16:25:59 -0400 Subject: [PATCH 04/17] use rr extracted chan widths in NetCostHandler::alloc_and_load_chan_w_factors_for_place_cost_() --- vpr/src/place/net_cost_handler.cpp | 35 +++++++++++++++--------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/vpr/src/place/net_cost_handler.cpp b/vpr/src/place/net_cost_handler.cpp index 473f15c2b7..995e91a209 100644 --- a/vpr/src/place/net_cost_handler.cpp +++ b/vpr/src/place/net_cost_handler.cpp @@ -143,33 +143,34 @@ void NetCostHandler::alloc_and_load_chan_w_factors_for_place_cost_() { const size_t grid_height = device_ctx.grid.height(); const size_t grid_width = device_ctx.grid.width(); - /* These arrays contain accumulative channel width between channel zero and - * the channel specified by the given index. The accumulated channel width - * is inclusive, meaning that it includes both channel zero and channel `idx`. - * To compute the total channel width between channels 'low' and 'high', use the - * following formula: - * acc_chan?_width_[high] - acc_chan?_width_[low - 1] - * This returns the total number of tracks between channels 'low' and 'high', - * including tracks in these channels. - */ + // These arrays contain accumulative channel width between channel zero and + // the channel specified by the given index. The accumulated channel width + // is inclusive, meaning that it includes both channel zero and channel `idx`. + // To compute the total channel width between channels 'low' and 'high', use the + // following formula: + // acc_chan?_width_[high] - acc_chan?_width_[low - 1] + // This returns the total number of tracks between channels 'low' and 'high', + // including tracks in these channels. acc_chanx_width_ = vtr::PrefixSum1D(grid_height, [&](size_t y) noexcept { - int chan_x_width = device_ctx.chan_width.x_list[y]; + int chan_x_width = device_ctx.rr_chanx_list[y]; - /* If the number of tracks in a channel is zero, two consecutive elements take the same - * value. This can lead to a division by zero in get_chanxy_cost_fac_(). To avoid this - * potential issue, we assume that the channel width is at least 1. - */ - if (chan_x_width == 0) + // If the number of tracks in a channel is zero, two consecutive elements take the same + // value. This can lead to a division by zero in get_chanxy_cost_fac_(). To avoid this + // potential issue, we assume that the channel width is at least 1. + if (chan_x_width == 0) { return 1; + } return chan_x_width; }); + acc_chany_width_ = vtr::PrefixSum1D(grid_width, [&](size_t x) noexcept { - int chan_y_width = device_ctx.chan_width.y_list[x]; + int chan_y_width = device_ctx.rr_chany_list[x]; // to avoid a division by zero - if (chan_y_width == 0) + if (chan_y_width == 0) { return 1; + } return chan_y_width; }); From ada220f486916656f3c57a511724b581fa60eb76 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 17:21:25 -0400 Subject: [PATCH 05/17] extend occupancy repots to 3d and use rr graph extracted width --- vpr/src/base/stats.cpp | 176 +++++++++++++++++++++++++---------------- 1 file changed, 106 insertions(+), 70 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 6d6d7cadb6..5c3b2af492 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -30,25 +30,25 @@ * channel segments in the FPGA. */ static void load_channel_occupancies(const Netlist<>& net_list, - vtr::Matrix& chanx_occ, - vtr::Matrix& chany_occ); + vtr::NdMatrix& chanx_occ, + vtr::NdMatrix& chany_occ); /** * @brief Writes channel occupancy data to a file. * * Each row contains: - * - (x, y) coordinate + * - (layer, x, y) coordinate * - Occupancy count * - Occupancy percentage (occupancy / capacity) * - Channel capacity * * @param filename Output file path. * @param occupancy Matrix of occupancy counts. - * @param capacity_list List of channel capacities (per y for chanx, per x for chany). + * @param capacity Channel capacities. */ -static void write_channel_occupancy_table(const std::string_view filename, - const vtr::Matrix& occupancy, - const std::vector& capacity_list); +static void write_channel_occupancy_table( std::string_view filename, + const vtr::NdMatrix& occupancy, + const vtr::NdMatrix& capacity); /** * @brief Figures out maximum, minimum and average number of bends @@ -188,13 +188,15 @@ void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/) { const auto& device_ctx = g_vpr_ctx.device(); - auto chanx_occ = vtr::Matrix({{ + auto chanx_occ = vtr::NdMatrix({{ + device_ctx.grid.get_num_layers(), device_ctx.grid.width(), //[0 .. device_ctx.grid.width() - 1] (length of x channel) device_ctx.grid.height() - 1 //[0 .. device_ctx.grid.height() - 2] (# x channels) }}, 0); - auto chany_occ = vtr::Matrix({{ + auto chany_occ = vtr::NdMatrix({{ + device_ctx.grid.get_num_layers(), device_ctx.grid.width() - 1, //[0 .. device_ctx.grid.width() - 2] (# y channels) device_ctx.grid.height() //[0 .. device_ctx.grid.height() - 1] (length of y channel) }}, @@ -202,52 +204,78 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/) { load_channel_occupancies(net_list, chanx_occ, chany_occ); - write_channel_occupancy_table("chanx_occupancy.txt", chanx_occ, device_ctx.chan_width.x_list); - write_channel_occupancy_table("chany_occupancy.txt", chany_occ, device_ctx.chan_width.y_list); + write_channel_occupancy_table("chanx_occupancy.txt", chanx_occ, device_ctx.rr_chanx_width); + write_channel_occupancy_table("chany_occupancy.txt", chany_occ, device_ctx.rr_chany_width); + + int total_cap_x = 0; + int total_used_x = 0; + int total_cap_y = 0; + int total_used_y = 0; VTR_LOG("\n"); - VTR_LOG("X - Directed channels: j max occ ave occ capacity\n"); - VTR_LOG(" ---- ------- ------- --------\n"); - - int total_x = 0; - for (size_t j = 0; j < device_ctx.grid.height() - 1; ++j) { - total_x += device_ctx.chan_width.x_list[j]; - float ave_occ = 0.0; - int max_occ = -1; - - for (size_t i = 1; i < device_ctx.grid.width(); ++i) { - max_occ = std::max(chanx_occ[i][j], max_occ); - ave_occ += chanx_occ[i][j]; + VTR_LOG("X - Directed channels: layer j max occ ave occ ave cap\n"); + VTR_LOG(" ----- ---- -------- -------- --------\n"); + + for (size_t layer = 0; layer < device_ctx.grid.get_num_layers(); ++layer) { + for (size_t j = 0; j < device_ctx.grid.height() - 1; ++j) { + float ave_occ = 0.0f; + float ave_cap = 0.0f; + int max_occ = -1; + + for (size_t i = 1; i < device_ctx.grid.width(); ++i) { + max_occ = std::max(chanx_occ[layer][i][j], max_occ); + ave_occ += chanx_occ[layer][i][j]; + ave_cap += device_ctx.rr_chanx_width[layer][i][j]; + + total_cap_x += chanx_occ[layer][i][j]; + total_used_x += chanx_occ[layer][i][j]; + } + ave_occ /= device_ctx.grid.width() - 2; + ave_cap /= device_ctx.grid.width() - 2; + VTR_LOG(" %5zu %4zu %8d %8.3f %8.0f\n", + layer, j, max_occ, ave_occ, ave_cap); } - ave_occ /= device_ctx.grid.width(); - VTR_LOG(" %4d %7d %7.3f %8d\n", j, max_occ, ave_occ, device_ctx.chan_width.x_list[j]); } - VTR_LOG("Y - Directed channels: i max occ ave occ capacity\n"); - VTR_LOG(" ---- ------- ------- --------\n"); + VTR_LOG("Y - Directed channels: layer i max occ ave occ ave cap\n"); + VTR_LOG(" ----- ---- -------- -------- --------\n"); + + for (size_t layer = 0; layer < device_ctx.grid.get_num_layers(); ++layer) { + for (size_t i = 0; i < device_ctx.grid.width() - 1; ++i) { + float ave_occ = 0.0; + float ave_cap = 0.0; + int max_occ = -1; - int total_y = 0; - for (size_t i = 0; i < device_ctx.grid.width() - 1; ++i) { - total_y += device_ctx.chan_width.y_list[i]; - float ave_occ = 0.0; - int max_occ = -1; + for (size_t j = 1; j < device_ctx.grid.height(); ++j) { + max_occ = std::max(chany_occ[layer][i][j], max_occ); + ave_occ += chany_occ[layer][i][j]; + ave_cap += device_ctx.rr_chany_width[layer][i][j]; - for (size_t j = 1; j < device_ctx.grid.height(); ++j) { - max_occ = std::max(chany_occ[i][j], max_occ); - ave_occ += chany_occ[i][j]; + total_cap_y += chany_occ[layer][i][j]; + total_used_y += chany_occ[layer][i][j]; + } + ave_occ /= device_ctx.grid.height() - 2; + ave_cap /= device_ctx.grid.height() - 2; + VTR_LOG(" %5zu %4zu %8d %8.3f %8.0f\n", + layer, i, max_occ, ave_occ, ave_cap); } - ave_occ /= device_ctx.grid.height(); - VTR_LOG(" %4d %7d %7.3f %8d\n", i, max_occ, ave_occ, device_ctx.chan_width.y_list[i]); } VTR_LOG("\n"); - VTR_LOG("Total tracks in x-direction: %d, in y-direction: %d\n", total_x, total_y); + + VTR_LOG("Total existing wires segments: CHANX %d, CHANY %d, ALL %d\n", + total_cap_x, total_cap_y, total_cap_x + total_cap_y); + VTR_LOG("Total used wires segments: CHANX %d, CHANY %d, ALL %d\n", + total_used_x, total_used_y, total_used_x + total_used_y); + VTR_LOG("Usage percentage: CHANX %d%%, CHANY %d%%, ALL %d%%\n", + (float)total_used_x / total_cap_x, (float)total_used_y / total_cap_y, (float)(total_used_x + total_used_y) / (total_cap_x + total_cap_y)); + VTR_LOG("\n"); } -static void write_channel_occupancy_table(const std::string_view filename, - const vtr::Matrix& occupancy, - const std::vector& capacity_list) { +static void write_channel_occupancy_table(std::string_view filename, + const vtr::NdMatrix& occupancy, + const vtr::NdMatrix& capacity) { constexpr int w_coord = 6; constexpr int w_value = 12; constexpr int w_percent = 12; @@ -258,25 +286,29 @@ static void write_channel_occupancy_table(const std::string_view filename, return; } - file << std::setw(w_coord) << "x" - << std::setw(w_coord) << "y" - << std::setw(w_value) << "occupancy" + file << std::setw(w_coord) << "layer" + << std::setw(w_coord) << "x" + << std::setw(w_coord) << "y" + << std::setw(w_value) << "occupancy" << std::setw(w_percent) << "%" - << std::setw(w_value) << "capacity" + << std::setw(w_value) << "capacity" << "\n"; - for (size_t y = 0; y < occupancy.dim_size(1); ++y) { - int capacity = capacity_list[y]; - for (size_t x = 0; x < occupancy.dim_size(0); ++x) { - int occ = occupancy[x][y]; - float percent = capacity > 0 ? static_cast(occ) / capacity * 100.0f : 0.0f; - - file << std::setw(w_coord) << x - << std::setw(w_coord) << y - << std::setw(w_value) << occ - << std::setw(w_percent) << std::fixed << std::setprecision(3) << percent - << std::setw(w_value) << capacity - << "\n"; + for (size_t layer = 0; layer < occupancy.dim_size(0); ++layer) { + for (size_t x = 0; x < occupancy.dim_size(1); ++x) { + for (size_t y = 0; y < occupancy.dim_size(2); ++y) { + int occ = occupancy[layer][x][y]; + int cap = capacity[layer][x][y]; + float percent = (cap > 0) ? static_cast(occ) / cap * 100.0f : 0.0f; + + file << std::setw(w_coord) << layer + << std::setw(w_coord) << x + << std::setw(w_coord) << y + << std::setw(w_value) << occ + << std::setw(w_percent) << std::fixed << std::setprecision(3) << percent + << std::setw(w_value) << cap + << "\n"; + } } } @@ -284,25 +316,27 @@ static void write_channel_occupancy_table(const std::string_view filename, } static void load_channel_occupancies(const Netlist<>& net_list, - vtr::Matrix& chanx_occ, - vtr::Matrix& chany_occ) { - const auto& device_ctx = g_vpr_ctx.device(); + vtr::NdMatrix& chanx_occ, + vtr::NdMatrix& chany_occ) { + const DeviceContext& device_ctx = g_vpr_ctx.device(); const auto& rr_graph = device_ctx.rr_graph; - const auto& route_ctx = g_vpr_ctx.routing(); + const RoutingContext& route_ctx = g_vpr_ctx.routing(); - /* First set the occupancy of everything to zero. */ + // First set the occupancy of everything to zero. chanx_occ.fill(0); chany_occ.fill(0); - /* Now go through each net and count the tracks and pins used everywhere */ - for (auto net_id : net_list.nets()) { - /* Skip global and empty nets. */ - if (net_list.net_is_ignored(net_id) && net_list.net_sinks(net_id).size() != 0) + // Now go through each net and count the tracks and pins used everywhere + for (ParentNetId net_id : net_list.nets()) { + // Skip global and empty nets. + if (net_list.net_is_ignored(net_id) && net_list.net_sinks(net_id).size() != 0) { continue; + } - auto& tree = route_ctx.route_trees[net_id]; - if (!tree) + const vtr::optional& tree = route_ctx.route_trees[net_id]; + if (!tree) { continue; + } for (const RouteTreeNode& rt_node : tree.value().all_nodes()) { RRNodeId inode = rt_node.inode; @@ -310,12 +344,14 @@ static void load_channel_occupancies(const Netlist<>& net_list, if (rr_type == e_rr_type::CHANX) { int j = rr_graph.node_ylow(inode); + int layer = rr_graph.node_layer_low(inode); for (int i = rr_graph.node_xlow(inode); i <= rr_graph.node_xhigh(inode); i++) - chanx_occ[i][j]++; + chanx_occ[layer][i][j]++; } else if (rr_type == e_rr_type::CHANY) { int i = rr_graph.node_xlow(inode); + int layer = rr_graph.node_layer_low(inode); for (int j = rr_graph.node_ylow(inode); j <= rr_graph.node_yhigh(inode); j++) - chany_occ[i][j]++; + chany_occ[layer][i][j]++; } } } From fe0db61da2363f403095188a6c3a66cb6d0d2944 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Thu, 9 Oct 2025 17:25:22 -0400 Subject: [PATCH 06/17] make format --- vpr/src/base/stats.cpp | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 5c3b2af492..0825f3f0ea 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -46,7 +46,7 @@ static void load_channel_occupancies(const Netlist<>& net_list, * @param occupancy Matrix of occupancy counts. * @param capacity Channel capacities. */ -static void write_channel_occupancy_table( std::string_view filename, +static void write_channel_occupancy_table(std::string_view filename, const vtr::NdMatrix& occupancy, const vtr::NdMatrix& capacity); @@ -189,18 +189,18 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/) { const auto& device_ctx = g_vpr_ctx.device(); auto chanx_occ = vtr::NdMatrix({{ - device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), //[0 .. device_ctx.grid.width() - 1] (length of x channel) - device_ctx.grid.height() - 1 //[0 .. device_ctx.grid.height() - 2] (# x channels) - }}, - 0); + device_ctx.grid.get_num_layers(), + device_ctx.grid.width(), //[0 .. device_ctx.grid.width() - 1] (length of x channel) + device_ctx.grid.height() - 1 //[0 .. device_ctx.grid.height() - 2] (# x channels) + }}, + 0); auto chany_occ = vtr::NdMatrix({{ - device_ctx.grid.get_num_layers(), - device_ctx.grid.width() - 1, //[0 .. device_ctx.grid.width() - 2] (# y channels) - device_ctx.grid.height() //[0 .. device_ctx.grid.height() - 1] (length of y channel) - }}, - 0); + device_ctx.grid.get_num_layers(), + device_ctx.grid.width() - 1, //[0 .. device_ctx.grid.width() - 2] (# y channels) + device_ctx.grid.height() //[0 .. device_ctx.grid.height() - 1] (length of y channel) + }}, + 0); load_channel_occupancies(net_list, chanx_occ, chany_occ); @@ -286,12 +286,12 @@ static void write_channel_occupancy_table(std::string_view filename, return; } - file << std::setw(w_coord) << "layer" - << std::setw(w_coord) << "x" - << std::setw(w_coord) << "y" - << std::setw(w_value) << "occupancy" + file << std::setw(w_coord) << "layer" + << std::setw(w_coord) << "x" + << std::setw(w_coord) << "y" + << std::setw(w_value) << "occupancy" << std::setw(w_percent) << "%" - << std::setw(w_value) << "capacity" + << std::setw(w_value) << "capacity" << "\n"; for (size_t layer = 0; layer < occupancy.dim_size(0); ++layer) { @@ -301,12 +301,12 @@ static void write_channel_occupancy_table(std::string_view filename, int cap = capacity[layer][x][y]; float percent = (cap > 0) ? static_cast(occ) / cap * 100.0f : 0.0f; - file << std::setw(w_coord) << layer - << std::setw(w_coord) << x - << std::setw(w_coord) << y - << std::setw(w_value) << occ + file << std::setw(w_coord) << layer + << std::setw(w_coord) << x + << std::setw(w_coord) << y + << std::setw(w_value) << occ << std::setw(w_percent) << std::fixed << std::setprecision(3) << percent - << std::setw(w_value) << cap + << std::setw(w_value) << cap << "\n"; } } From ac620785e8586639bde6d12ff452833782a04b79 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 12:33:23 -0400 Subject: [PATCH 07/17] add comment explaining dimension sizes of chanx_occ and chany_occ --- vpr/src/base/stats.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 0825f3f0ea..66eaec7b00 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -190,15 +190,15 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/) { auto chanx_occ = vtr::NdMatrix({{ device_ctx.grid.get_num_layers(), - device_ctx.grid.width(), //[0 .. device_ctx.grid.width() - 1] (length of x channel) - device_ctx.grid.height() - 1 //[0 .. device_ctx.grid.height() - 2] (# x channels) + device_ctx.grid.width(), // Length of each x channel + device_ctx.grid.height() - 1 // Total number of x channels. There is no CHANX above the top row. }}, 0); auto chany_occ = vtr::NdMatrix({{ device_ctx.grid.get_num_layers(), - device_ctx.grid.width() - 1, //[0 .. device_ctx.grid.width() - 2] (# y channels) - device_ctx.grid.height() //[0 .. device_ctx.grid.height() - 1] (length of y channel) + device_ctx.grid.width() - 1, // Total number of y channels. There is no CHANY to the right of the most right column. + device_ctx.grid.height() // Length of each y channel. }}, 0); From ef48dddd999fc2b61851f158f64a2fd7c1352303 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 12:34:06 -0400 Subject: [PATCH 08/17] remove unused argument from get_channel_occupancy_stats() --- vpr/src/base/stats.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 66eaec7b00..56d0468a3f 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -57,7 +57,7 @@ static void write_channel_occupancy_table(std::string_view filename, static void length_and_bends_stats(const Netlist<>& net_list, bool is_flat); ///@brief Determines how many tracks are used in each channel. -static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/); +static void get_channel_occupancy_stats(const Netlist<>& net_list); /************************* Subroutine definitions ****************************/ @@ -80,7 +80,7 @@ void routing_stats(const Netlist<>& net_list, length_and_bends_stats(net_list, is_flat); print_channel_stats(is_flat); - get_channel_occupancy_stats(net_list, is_flat); + get_channel_occupancy_stats(net_list); VTR_LOG("Logic area (in minimum width transistor areas, excludes I/Os and empty grid tiles)...\n"); @@ -185,7 +185,7 @@ void length_and_bends_stats(const Netlist<>& net_list, bool is_flat) { VTR_LOG("Total number of nets absorbed: %d\n", num_absorbed_nets); } -static void get_channel_occupancy_stats(const Netlist<>& net_list, bool /***/) { +static void get_channel_occupancy_stats(const Netlist<>& net_list) { const auto& device_ctx = g_vpr_ctx.device(); auto chanx_occ = vtr::NdMatrix({{ From 4d4fd91758f0a133a00786071893731f75becd76 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 12:39:16 -0400 Subject: [PATCH 09/17] replace i/j with x/y --- vpr/src/base/stats.cpp | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 56d0468a3f..d78593ec31 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -213,51 +213,51 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { int total_used_y = 0; VTR_LOG("\n"); - VTR_LOG("X - Directed channels: layer j max occ ave occ ave cap\n"); + VTR_LOG("X - Directed channels: layer y max occ ave occ ave cap\n"); VTR_LOG(" ----- ---- -------- -------- --------\n"); for (size_t layer = 0; layer < device_ctx.grid.get_num_layers(); ++layer) { - for (size_t j = 0; j < device_ctx.grid.height() - 1; ++j) { + for (size_t y = 0; y < device_ctx.grid.height() - 1; y++) { float ave_occ = 0.0f; float ave_cap = 0.0f; int max_occ = -1; - for (size_t i = 1; i < device_ctx.grid.width(); ++i) { - max_occ = std::max(chanx_occ[layer][i][j], max_occ); - ave_occ += chanx_occ[layer][i][j]; - ave_cap += device_ctx.rr_chanx_width[layer][i][j]; + for (size_t x = 1; x < device_ctx.grid.width(); x++) { + max_occ = std::max(chanx_occ[layer][x][y], max_occ); + ave_occ += chanx_occ[layer][x][y]; + ave_cap += device_ctx.rr_chanx_width[layer][x][y]; - total_cap_x += chanx_occ[layer][i][j]; - total_used_x += chanx_occ[layer][i][j]; + total_cap_x += chanx_occ[layer][x][y]; + total_used_x += chanx_occ[layer][x][y]; } ave_occ /= device_ctx.grid.width() - 2; ave_cap /= device_ctx.grid.width() - 2; VTR_LOG(" %5zu %4zu %8d %8.3f %8.0f\n", - layer, j, max_occ, ave_occ, ave_cap); + layer, y, max_occ, ave_occ, ave_cap); } } - VTR_LOG("Y - Directed channels: layer i max occ ave occ ave cap\n"); + VTR_LOG("Y - Directed channels: layer x max occ ave occ ave cap\n"); VTR_LOG(" ----- ---- -------- -------- --------\n"); for (size_t layer = 0; layer < device_ctx.grid.get_num_layers(); ++layer) { - for (size_t i = 0; i < device_ctx.grid.width() - 1; ++i) { + for (size_t x = 0; x < device_ctx.grid.width() - 1; x++) { float ave_occ = 0.0; float ave_cap = 0.0; int max_occ = -1; - for (size_t j = 1; j < device_ctx.grid.height(); ++j) { - max_occ = std::max(chany_occ[layer][i][j], max_occ); - ave_occ += chany_occ[layer][i][j]; - ave_cap += device_ctx.rr_chany_width[layer][i][j]; + for (size_t y = 1; y < device_ctx.grid.height(); y++) { + max_occ = std::max(chany_occ[layer][x][y], max_occ); + ave_occ += chany_occ[layer][x][y]; + ave_cap += device_ctx.rr_chany_width[layer][x][y]; - total_cap_y += chany_occ[layer][i][j]; - total_used_y += chany_occ[layer][i][j]; + total_cap_y += chany_occ[layer][x][y]; + total_used_y += chany_occ[layer][x][y]; } ave_occ /= device_ctx.grid.height() - 2; ave_cap /= device_ctx.grid.height() - 2; VTR_LOG(" %5zu %4zu %8d %8.3f %8.0f\n", - layer, i, max_occ, ave_occ, ave_cap); + layer, x, max_occ, ave_occ, ave_cap); } } From 801a8d8415f7fb3cacafd840c149d51bec4b9a8c Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 13:58:44 -0400 Subject: [PATCH 10/17] add comments --- vpr/src/base/stats.cpp | 8 +++++--- vpr/src/base/vpr_context.h | 6 ++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index d78593ec31..9f9a7c7aa3 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -56,7 +56,7 @@ static void write_channel_occupancy_table(std::string_view filename, */ static void length_and_bends_stats(const Netlist<>& net_list, bool is_flat); -///@brief Determines how many tracks are used in each channel. +///@brief Determines how many tracks are used in each channel and prints out statistics static void get_channel_occupancy_stats(const Netlist<>& net_list); /************************* Subroutine definitions ****************************/ @@ -71,9 +71,9 @@ void routing_stats(const Netlist<>& net_list, e_directionality directionality, RRSwitchId wire_to_ipin_switch, bool is_flat) { - auto& device_ctx = g_vpr_ctx.device(); + const DeviceContext& device_ctx = g_vpr_ctx.device(); auto& rr_graph = device_ctx.rr_graph; - auto& cluster_ctx = g_vpr_ctx.clustering(); + const ClusteringContext& cluster_ctx = g_vpr_ctx.clustering(); const auto& block_locs = g_vpr_ctx.placement().block_locs(); int num_rr_switch = rr_graph.num_rr_switches(); @@ -222,6 +222,7 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { float ave_cap = 0.0f; int max_occ = -1; + // It is assumed that there is no CHANX at x=0 for (size_t x = 1; x < device_ctx.grid.width(); x++) { max_occ = std::max(chanx_occ[layer][x][y], max_occ); ave_occ += chanx_occ[layer][x][y]; @@ -246,6 +247,7 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { float ave_cap = 0.0; int max_occ = -1; + // It is assumed that there is no CHANY at y=0 for (size_t y = 1; y < device_ctx.grid.height(); y++) { max_occ = std::max(chany_occ[layer][x][y], max_occ); ave_occ += chany_occ[layer][x][y]; diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 4ecb0c0f4a..7a6a928d4a 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -263,12 +263,14 @@ struct DeviceContext : public Context { int delayless_switch_idx = UNDEFINED; - /// Stores the number of CHANX wire segments in each routing channel at [layer][x][y] + /// Stores the number of CHANX wire segments in each routing channel segment at [layer][x][y] vtr::NdMatrix rr_chanx_width; - /// Stores the number of CHANY wire segments in each routing channel at [layer][x][y] + /// Stores the number of CHANY wire segments in each routing channel segment at [layer][x][y] vtr::NdMatrix rr_chany_width; + /// Stores the maximum channel segment width in each horizontal channel std::vector rr_chanx_list; + /// Stores the maximum channel segment width in each vertical channel std::vector rr_chany_list; bool rr_graph_is_flat = false; From b25c6269ea0061d31e150af180dca6c05975f4f1 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 14:16:22 -0400 Subject: [PATCH 11/17] rename rr_chan?_width --> rr_chan?_segment_width --- vpr/src/base/stats.cpp | 8 ++++---- vpr/src/base/vpr_context.h | 4 ++-- vpr/src/place/net_cost_handler.cpp | 4 ++-- vpr/src/route/rr_graph_generation/rr_graph.cpp | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/vpr/src/base/stats.cpp b/vpr/src/base/stats.cpp index 9f9a7c7aa3..25a0fafcc2 100644 --- a/vpr/src/base/stats.cpp +++ b/vpr/src/base/stats.cpp @@ -204,8 +204,8 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { load_channel_occupancies(net_list, chanx_occ, chany_occ); - write_channel_occupancy_table("chanx_occupancy.txt", chanx_occ, device_ctx.rr_chanx_width); - write_channel_occupancy_table("chany_occupancy.txt", chany_occ, device_ctx.rr_chany_width); + write_channel_occupancy_table("chanx_occupancy.txt", chanx_occ, device_ctx.rr_chanx_segment_width); + write_channel_occupancy_table("chany_occupancy.txt", chany_occ, device_ctx.rr_chany_segment_width); int total_cap_x = 0; int total_used_x = 0; @@ -226,7 +226,7 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { for (size_t x = 1; x < device_ctx.grid.width(); x++) { max_occ = std::max(chanx_occ[layer][x][y], max_occ); ave_occ += chanx_occ[layer][x][y]; - ave_cap += device_ctx.rr_chanx_width[layer][x][y]; + ave_cap += device_ctx.rr_chanx_segment_width[layer][x][y]; total_cap_x += chanx_occ[layer][x][y]; total_used_x += chanx_occ[layer][x][y]; @@ -251,7 +251,7 @@ static void get_channel_occupancy_stats(const Netlist<>& net_list) { for (size_t y = 1; y < device_ctx.grid.height(); y++) { max_occ = std::max(chany_occ[layer][x][y], max_occ); ave_occ += chany_occ[layer][x][y]; - ave_cap += device_ctx.rr_chany_width[layer][x][y]; + ave_cap += device_ctx.rr_chany_segment_width[layer][x][y]; total_cap_y += chany_occ[layer][x][y]; total_used_y += chany_occ[layer][x][y]; diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index 7a6a928d4a..def2c64e28 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -264,9 +264,9 @@ struct DeviceContext : public Context { int delayless_switch_idx = UNDEFINED; /// Stores the number of CHANX wire segments in each routing channel segment at [layer][x][y] - vtr::NdMatrix rr_chanx_width; + vtr::NdMatrix rr_chanx_segment_width; /// Stores the number of CHANY wire segments in each routing channel segment at [layer][x][y] - vtr::NdMatrix rr_chany_width; + vtr::NdMatrix rr_chany_segment_width; /// Stores the maximum channel segment width in each horizontal channel std::vector rr_chanx_list; diff --git a/vpr/src/place/net_cost_handler.cpp b/vpr/src/place/net_cost_handler.cpp index 995e91a209..5d67ee31a3 100644 --- a/vpr/src/place/net_cost_handler.cpp +++ b/vpr/src/place/net_cost_handler.cpp @@ -1820,8 +1820,8 @@ std::pair, vtr::NdMatrix> NetCostHandler::es } } - const vtr::NdMatrix& chanx_width = device_ctx.rr_chanx_width; - const vtr::NdMatrix& chany_width = device_ctx.rr_chany_width; + const vtr::NdMatrix& chanx_width = device_ctx.rr_chanx_segment_width; + const vtr::NdMatrix& chany_width = device_ctx.rr_chany_segment_width; VTR_ASSERT(chanx_util.size() == chany_util.size()); VTR_ASSERT(chanx_util.ndims() == chany_util.ndims()); diff --git a/vpr/src/route/rr_graph_generation/rr_graph.cpp b/vpr/src/route/rr_graph_generation/rr_graph.cpp index f790a5a3d5..447813cd76 100644 --- a/vpr/src/route/rr_graph_generation/rr_graph.cpp +++ b/vpr/src/route/rr_graph_generation/rr_graph.cpp @@ -1131,8 +1131,8 @@ static void alloc_and_init_channel_width() { const DeviceGrid& grid = mutable_device_ctx.grid; const auto& rr_graph = mutable_device_ctx.rr_graph; - vtr::NdMatrix& chanx_width = mutable_device_ctx.rr_chanx_width; - vtr::NdMatrix& chany_width = mutable_device_ctx.rr_chany_width; + vtr::NdMatrix& chanx_width = mutable_device_ctx.rr_chanx_segment_width; + vtr::NdMatrix& chany_width = mutable_device_ctx.rr_chany_segment_width; chanx_width.resize({grid.get_num_layers(), grid.width(), grid.height()}); chany_width.resize({grid.get_num_layers(), grid.width(), grid.height()}); From af94c44abd1982be596af95da23d4dddc9c906d7 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Fri, 10 Oct 2025 14:17:33 -0400 Subject: [PATCH 12/17] rename rr_chany_list --> rr_chany_width --- vpr/src/base/vpr_context.h | 4 ++-- vpr/src/draw/draw.cpp | 4 ++-- vpr/src/place/net_cost_handler.cpp | 4 ++-- vpr/src/route/rr_graph_generation/rr_graph.cpp | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/vpr/src/base/vpr_context.h b/vpr/src/base/vpr_context.h index def2c64e28..28f5a86989 100644 --- a/vpr/src/base/vpr_context.h +++ b/vpr/src/base/vpr_context.h @@ -269,9 +269,9 @@ struct DeviceContext : public Context { vtr::NdMatrix rr_chany_segment_width; /// Stores the maximum channel segment width in each horizontal channel - std::vector rr_chanx_list; + std::vector rr_chanx_width; /// Stores the maximum channel segment width in each vertical channel - std::vector rr_chany_list; + std::vector rr_chany_width; bool rr_graph_is_flat = false; diff --git a/vpr/src/draw/draw.cpp b/vpr/src/draw/draw.cpp index 5e499118a2..f927bb0b15 100644 --- a/vpr/src/draw/draw.cpp +++ b/vpr/src/draw/draw.cpp @@ -466,14 +466,14 @@ void init_draw_coords(float clb_width, const BlkLocRegistry& blk_loc_registry) { size_t j = 0; for (size_t i = 0; i < grid.width() - 1; i++) { draw_coords->tile_x[i] = (i * draw_coords->get_tile_width()) + j; - j += device_ctx.rr_chany_list[i] + 1; // N wires need N+1 units of space + j += device_ctx.rr_chany_width[i] + 1; // N wires need N+1 units of space } draw_coords->tile_x[grid.width() - 1] = (grid.width() - 1) * draw_coords->get_tile_width() + j; j = 0; for (size_t i = 0; i < device_ctx.grid.height() - 1; ++i) { draw_coords->tile_y[i] = (i * draw_coords->get_tile_width()) + j; - j += device_ctx.rr_chanx_list[i] + 1; + j += device_ctx.rr_chanx_width[i] + 1; } draw_coords->tile_y[grid.height() - 1] = (grid.height() - 1) * draw_coords->get_tile_width() + j; diff --git a/vpr/src/place/net_cost_handler.cpp b/vpr/src/place/net_cost_handler.cpp index 5d67ee31a3..9bcdde45e0 100644 --- a/vpr/src/place/net_cost_handler.cpp +++ b/vpr/src/place/net_cost_handler.cpp @@ -152,7 +152,7 @@ void NetCostHandler::alloc_and_load_chan_w_factors_for_place_cost_() { // This returns the total number of tracks between channels 'low' and 'high', // including tracks in these channels. acc_chanx_width_ = vtr::PrefixSum1D(grid_height, [&](size_t y) noexcept { - int chan_x_width = device_ctx.rr_chanx_list[y]; + int chan_x_width = device_ctx.rr_chanx_width[y]; // If the number of tracks in a channel is zero, two consecutive elements take the same // value. This can lead to a division by zero in get_chanxy_cost_fac_(). To avoid this @@ -165,7 +165,7 @@ void NetCostHandler::alloc_and_load_chan_w_factors_for_place_cost_() { }); acc_chany_width_ = vtr::PrefixSum1D(grid_width, [&](size_t x) noexcept { - int chan_y_width = device_ctx.rr_chany_list[x]; + int chan_y_width = device_ctx.rr_chany_width[x]; // to avoid a division by zero if (chan_y_width == 0) { diff --git a/vpr/src/route/rr_graph_generation/rr_graph.cpp b/vpr/src/route/rr_graph_generation/rr_graph.cpp index 447813cd76..75ce6e5cf5 100644 --- a/vpr/src/route/rr_graph_generation/rr_graph.cpp +++ b/vpr/src/route/rr_graph_generation/rr_graph.cpp @@ -1158,8 +1158,8 @@ static void alloc_and_init_channel_width() { } } - std::vector& chanx_width_list = mutable_device_ctx.rr_chanx_list; - std::vector& chany_width_list = mutable_device_ctx.rr_chany_list; + std::vector& chanx_width_list = mutable_device_ctx.rr_chanx_width; + std::vector& chany_width_list = mutable_device_ctx.rr_chany_width; chanx_width_list.resize(grid.height()); chany_width_list.resize(grid.width()); From 9f257420940710a6126c8b8db718bf7078cd381a Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Tue, 14 Oct 2025 15:57:14 -0400 Subject: [PATCH 13/17] change seed and update golden resutls for figure8 --- .../figure_8/config/config.txt | 2 +- .../figure_8/config/golden_results.txt | 422 +++++++++--------- 2 files changed, 212 insertions(+), 212 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt index 2946d48655..e5457ca479 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/config.txt @@ -128,4 +128,4 @@ qor_parse_file=qor_standard.txt # Pass requirements pass_requirements_file=pass_requirements_chain_small.txt -script_params=-lut_size 6 -routing_failure_predictor off -seed 2 +script_params=-lut_size 6 -routing_failure_predictor off -seed 3 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt index 554c5cb069..ea23cb6ebd 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/figure_8/config/golden_results.txt @@ -1,211 +1,211 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.73 vpr 64.27 MiB -1 -1 0.09 27060 2 0.05 -1 -1 35760 -1 -1 2 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65816 9 5 28 33 1 17 16 17 17 289 -1 unnamed_device 25.8 MiB 0.01 202.662 67 276 59 202 15 64.3 MiB 0.00 0.00 1.26496 1.11131 -10.5032 -1.11131 1.11131 0.38 6.529e-05 5.7404e-05 0.00120346 0.00106204 -1 -1 -1 -1 20 127 7 6.55708e+06 24110 394039. 1363.46 0.25 0.00377579 0.00335577 19870 87366 -1 128 6 38 44 2099 743 1.11131 1.11131 -10.8981 -1.11131 0 0 477104. 1650.88 0.03 0.00 0.08 -1 -1 0.03 0.00225637 0.00204757 13 6 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.74 vpr 63.99 MiB -1 -1 0.10 26984 2 0.05 -1 -1 35052 -1 -1 2 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65524 11 6 34 40 1 20 19 17 17 289 -1 unnamed_device 25.8 MiB 0.01 241.58 121 444 102 339 3 64.0 MiB 0.00 0.00 1.27071 1.15051 -13.6381 -1.15051 1.15051 0.38 8.5735e-05 7.6508e-05 0.00174369 0.00155671 -1 -1 -1 -1 20 210 4 6.55708e+06 24110 394039. 1363.46 0.26 0.00431869 0.00390216 19870 87366 -1 198 6 39 43 2847 722 1.15051 1.15051 -14.3458 -1.15051 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00257749 0.00233375 16 7 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.75 vpr 63.81 MiB -1 -1 0.09 27572 3 0.05 -1 -1 35500 -1 -1 3 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65340 13 7 41 48 1 27 23 17 17 289 -1 unnamed_device 25.6 MiB 0.01 299.159 145 471 87 380 4 63.8 MiB 0.00 0.00 1.59011 1.34971 -15.9081 -1.34971 1.34971 0.38 9.1102e-05 8.1174e-05 0.00180197 0.001622 -1 -1 -1 -1 20 252 7 6.55708e+06 36165 394039. 1363.46 0.26 0.00510477 0.00459593 19870 87366 -1 249 7 62 72 3726 1167 1.22951 1.22951 -16.7495 -1.22951 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00296613 0.00269183 19 9 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.06 vpr 64.23 MiB -1 -1 0.10 27080 3 0.06 -1 -1 35752 -1 -1 4 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 15 8 47 55 1 35 27 17 17 289 -1 unnamed_device 25.7 MiB 0.01 446 142 867 185 673 9 64.2 MiB 0.01 0.00 1.71231 1.23151 -17.8867 -1.23151 1.23151 0.38 0.000119698 0.000108298 0.0028612 0.00257385 -1 -1 -1 -1 20 298 12 6.55708e+06 48220 394039. 1363.46 0.53 0.00992075 0.00867182 19870 87366 -1 261 12 126 174 6875 2635 1.35171 1.35171 -19.2555 -1.35171 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00436453 0.00389247 23 10 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.41 vpr 64.23 MiB -1 -1 0.11 27068 3 0.06 -1 -1 35928 -1 -1 6 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65768 17 9 56 65 1 37 32 17 17 289 -1 unnamed_device 25.6 MiB 0.01 487.401 213 1582 387 1152 43 64.2 MiB 0.01 0.00 1.83051 1.46991 -22.2575 -1.46991 1.46991 0.38 0.000130109 0.000117587 0.00481256 0.00432957 -1 -1 -1 -1 22 392 14 6.55708e+06 72330 420624. 1455.45 0.88 0.0320361 0.0271166 20158 92377 -1 371 11 122 166 8972 2957 1.46991 1.46991 -24.2837 -1.46991 0 0 500653. 1732.36 0.03 0.01 0.08 -1 -1 0.03 0.00436025 0.00388568 26 14 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 2.27 vpr 64.30 MiB -1 -1 0.10 27076 4 0.06 -1 -1 35820 -1 -1 6 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65848 19 10 60 70 1 46 35 17 17 289 -1 unnamed_device 25.8 MiB 0.02 589.14 256 1118 238 875 5 64.3 MiB 0.01 0.00 2.31897 1.83817 -27.6609 -1.83817 1.83817 0.38 0.000137274 0.000123357 0.00324084 0.00292637 -1 -1 -1 -1 22 578 13 6.55708e+06 72330 420624. 1455.45 0.72 0.0256811 0.0217274 20158 92377 -1 525 17 181 272 14059 4126 2.03937 2.03937 -31.0538 -2.03937 0 0 500653. 1732.36 0.03 0.01 0.08 -1 -1 0.03 0.00586732 0.00514086 29 13 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.66 vpr 64.14 MiB -1 -1 0.10 26932 4 0.06 -1 -1 35504 -1 -1 7 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65684 21 11 69 80 1 45 39 17 17 289 -1 unnamed_device 25.8 MiB 0.01 579.395 213 1491 322 1141 28 64.1 MiB 0.01 0.00 2.40197 1.95837 -29.4863 -1.95837 1.95837 0.38 0.000152333 0.000137036 0.00407952 0.00368079 -1 -1 -1 -1 32 438 12 6.55708e+06 84385 554710. 1919.41 1.06 0.0415579 0.0352447 22174 131602 -1 361 7 107 141 6871 2100 1.83817 1.83817 -29.6895 -1.83817 0 0 701300. 2426.64 0.05 0.01 0.12 -1 -1 0.05 0.00414857 0.00376993 33 17 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 1.93 vpr 64.18 MiB -1 -1 0.10 27136 5 0.06 -1 -1 35876 -1 -1 7 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65716 23 12 76 88 1 52 42 17 17 289 -1 unnamed_device 25.8 MiB 0.02 626.484 358 1338 274 1061 3 64.2 MiB 0.01 0.00 2.39796 2.15756 -35.9738 -2.15756 2.15756 0.38 0.000167477 0.000151372 0.00378821 0.00343905 -1 -1 -1 -1 26 590 11 6.55708e+06 84385 477104. 1650.88 0.35 0.0220808 0.0190545 21022 109990 -1 584 7 127 172 10572 2793 2.15756 2.15756 -37.7778 -2.15756 0 0 585099. 2024.56 0.04 0.01 0.10 -1 -1 0.04 0.00458739 0.00417997 36 19 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.30 vpr 64.15 MiB -1 -1 0.10 27632 5 0.06 -1 -1 35416 -1 -1 8 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65688 25 13 83 96 1 61 46 17 17 289 -1 unnamed_device 25.6 MiB 0.02 633.408 410 1522 327 1184 11 64.1 MiB 0.01 0.00 2.16047 2.1433 -40.7332 -2.1433 2.1433 0.38 0.000182127 0.000164475 0.00409508 0.0037246 -1 -1 -1 -1 22 709 6 6.55708e+06 96440 420624. 1455.45 0.75 0.0294441 0.0252317 20158 92377 -1 662 12 177 250 11084 3245 2.07656 2.07656 -42.0492 -2.07656 0 0 500653. 1732.36 0.03 0.01 0.08 -1 -1 0.03 0.00609918 0.00548827 39 21 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.33 vpr 64.44 MiB -1 -1 0.11 27396 5 0.06 -1 -1 35416 -1 -1 10 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65988 27 14 91 105 1 72 51 17 17 289 -1 unnamed_device 26.1 MiB 0.02 772.146 432 2025 337 1678 10 64.4 MiB 0.01 0.00 2.91796 2.31696 -43.8983 -2.31696 2.31696 0.38 0.000200735 0.000182156 0.00521993 0.00473686 -1 -1 -1 -1 22 866 17 6.55708e+06 120550 420624. 1455.45 0.75 0.0381321 0.0327278 20158 92377 -1 789 14 248 369 19891 5735 2.27776 2.27776 -46.2592 -2.27776 0 0 500653. 1732.36 0.03 0.02 0.08 -1 -1 0.03 0.00729468 0.00648782 44 24 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.45 vpr 64.37 MiB -1 -1 0.10 27432 6 0.06 -1 -1 35496 -1 -1 10 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 29 15 95 110 1 74 54 17 17 289 -1 unnamed_device 25.9 MiB 0.02 935.019 432 1788 304 1475 9 64.4 MiB 0.01 0.00 2.95516 2.92362 -49.686 -2.92362 2.92362 0.39 0.00021356 0.000188495 0.00472148 0.00429071 -1 -1 -1 -1 24 867 11 6.55708e+06 120550 448715. 1552.65 0.84 0.0410714 0.0353212 20734 103517 -1 762 11 256 422 18928 5591 2.88442 2.88442 -52.8169 -2.88442 0 0 554710. 1919.41 0.04 0.01 0.09 -1 -1 0.04 0.00668315 0.00598818 46 23 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 1.97 vpr 64.55 MiB -1 -1 0.11 27108 6 0.07 -1 -1 35588 -1 -1 10 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66104 31 16 104 120 1 74 57 17 17 289 -1 unnamed_device 26.0 MiB 0.02 920.395 408 2891 618 2254 19 64.6 MiB 0.02 0.00 2.63636 2.51616 -51.5613 -2.51616 2.51616 0.38 0.000226475 0.000205625 0.00694963 0.00632194 -1 -1 -1 -1 26 680 10 6.55708e+06 120550 477104. 1650.88 0.36 0.0311669 0.0272081 21022 109990 -1 704 10 210 290 16148 4619 2.39596 2.39596 -52.186 -2.39596 0 0 585099. 2024.56 0.04 0.02 0.10 -1 -1 0.04 0.0076673 0.00693048 50 27 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.69 vpr 64.19 MiB -1 -1 0.11 27220 7 0.07 -1 -1 35140 -1 -1 10 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65728 33 17 112 129 1 80 60 17 17 289 -1 unnamed_device 25.4 MiB 0.02 998.229 511 2751 510 2229 12 64.2 MiB 0.02 0.00 3.22499 3.08762 -62.9616 -3.08762 3.08762 0.38 0.000235742 0.000214143 0.00658364 0.00596131 -1 -1 -1 -1 30 868 11 6.55708e+06 120550 526063. 1820.29 1.05 0.063622 0.0547363 21886 126133 -1 791 9 221 287 16345 4407 3.08762 3.08762 -63.5748 -3.08762 0 0 666494. 2306.21 0.04 0.01 0.11 -1 -1 0.04 0.00690449 0.00626029 54 30 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.54 vpr 64.73 MiB -1 -1 0.11 26912 7 0.07 -1 -1 35892 -1 -1 13 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66288 37 19 127 146 1 95 69 17 17 289 -1 unnamed_device 25.8 MiB 0.05 1118.88 647 3030 584 2438 8 64.7 MiB 0.02 0.00 3.19556 2.92562 -67.6966 -2.92562 2.92562 0.37 0.000271109 0.000247137 0.00683853 0.00622818 -1 -1 -1 -1 26 1126 11 6.55708e+06 156715 477104. 1650.88 0.89 0.0716539 0.0619642 21022 109990 -1 1066 9 254 379 19545 5193 2.80542 2.80542 -70.0302 -2.80542 0 0 585099. 2024.56 0.04 0.02 0.10 -1 -1 0.04 0.0078852 0.00717304 63 35 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.88 vpr 64.37 MiB -1 -1 0.11 27040 8 0.07 -1 -1 35500 -1 -1 14 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65912 41 21 139 160 1 106 76 17 17 289 -1 unnamed_device 25.5 MiB 0.04 1409.56 562 4396 770 3608 18 64.4 MiB 0.03 0.00 3.10856 3.03216 -74.5371 -3.03216 3.03216 0.38 0.000289643 0.000263277 0.0101385 0.00924127 -1 -1 -1 -1 30 1061 16 6.55708e+06 168770 526063. 1820.29 1.16 0.0876371 0.0762087 21886 126133 -1 902 13 299 410 19802 5824 2.79176 2.79176 -72.9988 -2.79176 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.0106023 0.00956515 67 37 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.48 vpr 64.84 MiB -1 -1 0.16 27464 9 0.07 -1 -1 35460 -1 -1 15 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66392 45 23 153 176 1 107 83 17 17 289 -1 unnamed_device 25.6 MiB 0.03 1333.1 632 4043 686 3346 11 64.8 MiB 0.02 0.00 4.29328 3.93268 -88.3399 -3.93268 3.93268 0.38 0.000310699 0.000282715 0.00834974 0.00759754 -1 -1 -1 -1 26 1236 14 6.55708e+06 180825 477104. 1650.88 0.77 0.0749295 0.0653944 21022 109990 -1 1145 9 325 493 25291 7325 3.69228 3.69228 -88.4738 -3.69228 0 0 585099. 2024.56 0.04 0.02 0.11 -1 -1 0.04 0.00868201 0.00789759 73 41 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.82 vpr 64.70 MiB -1 -1 0.11 27324 10 0.07 -1 -1 35628 -1 -1 15 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66256 49 25 166 191 1 117 89 17 17 289 -1 unnamed_device 25.4 MiB 0.03 1524.16 616 5831 1119 4689 23 64.7 MiB 0.03 0.00 5.10314 4.50214 -103.372 -4.50214 4.50214 0.38 0.000337234 0.000305681 0.0114013 0.0103688 -1 -1 -1 -1 28 1204 11 6.55708e+06 180825 500653. 1732.36 1.12 0.0750322 0.0658782 21310 115450 -1 1153 13 359 551 29443 8349 4.26174 4.26174 -103.505 -4.26174 0 0 612192. 2118.31 0.04 0.02 0.11 -1 -1 0.04 0.0121582 0.0110089 78 44 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.17 vpr 64.95 MiB -1 -1 0.12 27100 11 0.08 -1 -1 35768 -1 -1 19 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66512 57 29 198 227 1 147 105 17 17 289 -1 unnamed_device 25.8 MiB 0.05 1827.18 892 7515 1451 6038 26 65.0 MiB 0.04 0.00 4.97308 4.55851 -129.791 -4.55851 4.55851 0.38 0.000429602 0.000392962 0.0143144 0.0130624 -1 -1 -1 -1 30 1463 12 6.55708e+06 229045 526063. 1820.29 0.43 0.0587155 0.0519502 21886 126133 -1 1341 10 377 543 25865 7228 4.54134 4.54134 -130.256 -4.54134 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.0118693 0.0108218 93 56 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.02 vpr 65.02 MiB -1 -1 0.12 27448 13 0.09 -1 -1 36228 -1 -1 20 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66580 65 33 224 257 1 164 118 17 17 289 -1 unnamed_device 25.7 MiB 0.05 2083.59 1000 10811 2335 8460 16 65.0 MiB 0.05 0.00 6.45854 5.37674 -159.249 -5.37674 5.37674 0.38 0.000446356 0.000406197 0.0187527 0.0170618 -1 -1 -1 -1 30 1671 12 6.55708e+06 241100 526063. 1820.29 1.22 0.134848 0.118701 21886 126133 -1 1491 11 422 598 30574 8453 5.17554 5.17554 -157.484 -5.17554 0 0 666494. 2306.21 0.04 0.03 0.11 -1 -1 0.04 0.0136481 0.012327 107 62 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.58 vpr 66.07 MiB -1 -1 0.14 28048 19 0.12 -1 -1 36108 -1 -1 35 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67656 97 49 340 389 1 260 181 17 17 289 -1 unnamed_device 26.6 MiB 0.09 3375.48 1675 20621 4188 16389 44 66.1 MiB 0.09 0.00 8.30379 7.34845 -296.935 -7.34845 7.34845 0.38 0.000676355 0.000604162 0.0305736 0.0277825 -1 -1 -1 -1 28 3107 28 6.55708e+06 421925 500653. 1732.36 0.63 0.125078 0.112056 21310 115450 -1 2692 11 781 1135 62861 17279 6.89519 6.89519 -292.074 -6.89519 0 0 612192. 2118.31 0.04 0.04 0.10 -1 -1 0.04 0.020195 0.0185126 165 98 -1 -1 -1 -1 - fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.69 vpr 66.25 MiB -1 -1 0.16 27828 26 0.12 -1 -1 35840 -1 -1 41 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67840 129 65 453 518 1 334 235 17 17 289 -1 unnamed_device 26.7 MiB 0.09 4072.94 1691 32091 6992 24926 173 66.2 MiB 0.14 0.00 11.8877 11.1931 -501.71 -11.1931 11.1931 0.39 0.000885322 0.000810187 0.0435724 0.0396906 -1 -1 -1 -1 30 3076 24 6.55708e+06 494255 526063. 1820.29 0.56 0.162696 0.146984 21886 126133 -1 2784 12 821 1073 55977 15898 10.5921 10.5921 -488.503 -10.5921 0 0 666494. 2306.21 0.05 0.05 0.11 -1 -1 0.05 0.0277347 0.0255696 210 131 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.49 abc 32.98 MiB -1 -1 0.09 27652 1 0.02 -1 -1 33768 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26656 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.48 abc 32.78 MiB -1 -1 0.10 27016 1 0.02 -1 -1 33568 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26656 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.46 abc 32.80 MiB -1 -1 0.09 27184 1 0.02 -1 -1 33592 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26656 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.47 abc 32.79 MiB -1 -1 0.10 27108 1 0.02 -1 -1 33576 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26348 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.46 abc 33.03 MiB -1 -1 0.10 26872 1 0.02 -1 -1 33824 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26656 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.46 abc 32.63 MiB -1 -1 0.10 27288 1 0.02 -1 -1 33412 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26464 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.48 abc 32.82 MiB -1 -1 0.10 27440 1 0.02 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26848 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.47 abc 33.03 MiB -1 -1 0.11 27196 1 0.03 -1 -1 33824 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26464 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.48 abc 32.50 MiB -1 -1 0.10 26852 1 0.02 -1 -1 33276 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26336 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.50 abc 32.55 MiB -1 -1 0.10 27072 1 0.02 -1 -1 33332 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26552 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.49 abc 32.85 MiB -1 -1 0.11 27076 1 0.02 -1 -1 33640 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26544 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.50 abc 32.76 MiB -1 -1 0.10 26916 1 0.02 -1 -1 33544 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26272 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.51 abc 32.82 MiB -1 -1 0.10 26940 1 0.02 -1 -1 33608 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26364 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.52 abc 32.78 MiB -1 -1 0.10 27084 1 0.03 -1 -1 33564 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26368 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.51 abc 32.96 MiB -1 -1 0.12 27284 1 0.03 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26428 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.50 abc 32.41 MiB -1 -1 0.10 27448 1 0.03 -1 -1 33188 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26444 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.49 abc 32.80 MiB -1 -1 0.12 26728 1 0.03 -1 -1 33592 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26824 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.49 abc 32.73 MiB -1 -1 0.11 27392 1 0.03 -1 -1 33512 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26848 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.71 abc 32.54 MiB -1 -1 0.11 27428 1 0.03 -1 -1 33324 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26272 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 1.08 abc 33.05 MiB -1 -1 0.12 27080 1 0.03 -1 -1 33848 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26332 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.19 abc 33.35 MiB -1 -1 0.13 27296 1 0.03 -1 -1 34152 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26656 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.16 abc 32.60 MiB -1 -1 0.09 26948 1 0.02 -1 -1 33384 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 25896 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.11 abc 32.80 MiB -1 -1 0.09 26584 1 0.02 -1 -1 33592 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26084 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.19 abc 32.76 MiB -1 -1 0.09 27208 1 0.02 -1 -1 33548 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26008 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.30 abc 32.60 MiB -1 -1 0.10 27132 1 0.02 -1 -1 33380 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26292 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 1.25 abc 32.46 MiB -1 -1 0.09 27368 1 0.02 -1 -1 33244 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.20 abc 32.62 MiB -1 -1 0.09 26652 1 0.02 -1 -1 33400 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 25700 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.28 abc 32.68 MiB -1 -1 0.09 26468 1 0.03 -1 -1 33460 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.54 abc 32.47 MiB -1 -1 0.10 27072 1 0.02 -1 -1 33248 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26280 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.67 abc 32.66 MiB -1 -1 0.10 27180 1 0.02 -1 -1 33444 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 25908 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.74 abc 33.03 MiB -1 -1 0.10 26892 1 0.02 -1 -1 33824 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.56 abc 32.85 MiB -1 -1 0.09 26840 1 0.02 -1 -1 33640 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 25900 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.62 abc 32.55 MiB -1 -1 0.12 26848 1 0.03 -1 -1 33332 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.59 abc 32.78 MiB -1 -1 0.10 27120 1 0.02 -1 -1 33564 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26112 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.53 abc 32.98 MiB -1 -1 0.10 26924 1 0.02 -1 -1 33776 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26272 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.51 abc 32.95 MiB -1 -1 0.11 27316 1 0.02 -1 -1 33744 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26344 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.50 abc 32.98 MiB -1 -1 0.11 27136 1 0.02 -1 -1 33776 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.57 abc 33.02 MiB -1 -1 0.11 27100 1 0.03 -1 -1 33808 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26188 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.63 abc 32.77 MiB -1 -1 0.11 26888 1 0.03 -1 -1 33552 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26572 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.87 abc 32.58 MiB -1 -1 0.11 26948 1 0.03 -1 -1 33364 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26348 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.93 abc 32.86 MiB -1 -1 0.12 27236 1 0.03 -1 -1 33652 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26468 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 1.02 abc 33.19 MiB -1 -1 0.12 27472 1 0.03 -1 -1 33988 -1 -1 -1 -1 -1 -1 exited with return code 134 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 26276 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.95 vpr 64.64 MiB -1 -1 0.10 26660 1 0.02 -1 -1 33384 -1 -1 3 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 26.2 MiB 0.01 232 57 521 155 319 47 64.6 MiB 0.01 0.00 1.02974 0.792048 -9.42058 -0.792048 0.792048 0.40 8.5798e-05 7.4289e-05 0.00212041 0.00187898 -1 -1 -1 -1 20 101 8 6.64007e+06 37674 394039. 1363.46 0.27 0.00513246 0.00453499 20530 87850 -1 102 6 44 44 2428 1040 0.83871 0.83871 -9.81142 -0.83871 0 0 477104. 1650.88 0.03 0.00 0.08 -1 -1 0.03 0.00227462 0.00205122 14 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 1.97 vpr 64.86 MiB -1 -1 0.09 26880 1 0.02 -1 -1 33752 -1 -1 4 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 26.2 MiB 0.01 319 88 609 131 464 14 64.9 MiB 0.01 0.00 1.09689 0.803048 -11.6339 -0.803048 0.803048 0.38 8.1795e-05 7.2702e-05 0.00216022 0.00193065 -1 -1 -1 -1 20 202 9 6.64007e+06 50232 394039. 1363.46 0.26 0.00535291 0.00477226 20530 87850 -1 160 12 92 92 3335 1226 0.923248 0.923248 -12.7072 -0.923248 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00355562 0.0031268 17 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 1.75 vpr 64.53 MiB -1 -1 0.09 26680 1 0.02 -1 -1 33912 -1 -1 5 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 26.4 MiB 0.01 386 96 781 179 561 41 64.5 MiB 0.01 0.00 1.17465 0.825048 -14.1126 -0.825048 0.825048 0.39 0.00010739 9.7402e-05 0.00240892 0.00215149 -1 -1 -1 -1 20 237 13 6.64007e+06 62790 394039. 1363.46 0.27 0.00655547 0.00577031 20530 87850 -1 240 10 112 112 5500 1975 1.02145 1.02145 -16.4191 -1.02145 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00347554 0.00309673 20 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 2.19 vpr 64.56 MiB -1 -1 0.10 26840 1 0.02 -1 -1 33632 -1 -1 4 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66108 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 26.0 MiB 0.01 464 183 987 193 783 11 64.6 MiB 0.01 0.00 1.52396 1.18536 -17.5265 -1.18536 1.18536 0.38 0.00010928 9.8107e-05 0.00354792 0.00319717 -1 -1 -1 -1 20 353 14 6.64007e+06 50232 394039. 1363.46 0.70 0.0154441 0.0131684 20530 87850 -1 315 11 161 161 6919 2107 1.07445 1.07445 -19.354 -1.07445 0 0 477104. 1650.88 0.03 0.01 0.09 -1 -1 0.03 0.00385293 0.00342319 22 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.16 vpr 64.46 MiB -1 -1 0.10 26908 1 0.02 -1 -1 33632 -1 -1 5 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66012 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 26.2 MiB 0.02 543 240 1087 205 871 11 64.5 MiB 0.01 0.00 1.54596 1.19636 -22.183 -1.19636 1.19636 0.39 0.000138453 0.000125998 0.00326195 0.0029354 -1 -1 -1 -1 24 402 14 6.64007e+06 62790 448715. 1552.65 0.64 0.0204983 0.0172192 21394 104001 -1 378 8 140 140 10896 2817 0.965248 0.965248 -23.1002 -0.965248 0 0 554710. 1919.41 0.04 0.01 0.09 -1 -1 0.04 0.00366161 0.00330234 25 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.81 vpr 64.71 MiB -1 -1 0.10 26716 1 0.02 -1 -1 33460 -1 -1 5 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66264 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 26.2 MiB 0.02 542 222 1189 294 883 12 64.7 MiB 0.01 0.00 1.31656 1.20736 -23.7011 -1.20736 1.20736 0.38 0.000134243 0.000120948 0.00340332 0.00305324 -1 -1 -1 -1 20 423 16 6.64007e+06 62790 394039. 1363.46 0.27 0.00952883 0.0083947 20530 87850 -1 410 13 191 191 11538 3373 1.10745 1.10745 -26.3304 -1.10745 0 0 477104. 1650.88 0.03 0.01 0.09 -1 -1 0.03 0.00489964 0.0043111 28 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 1.92 vpr 64.50 MiB -1 -1 0.10 27248 1 0.02 -1 -1 33660 -1 -1 6 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 26.0 MiB 0.02 565 259 1361 235 1113 13 64.5 MiB 0.01 0.00 1.3323 1.21836 -26.8402 -1.21836 1.21836 0.39 0.000170066 0.000154306 0.00369068 0.00334076 -1 -1 -1 -1 26 457 10 6.64007e+06 75348 477104. 1650.88 0.35 0.0195656 0.0168127 21682 110474 -1 423 12 157 157 8822 2688 0.943248 0.943248 -27.1953 -0.943248 0 0 585099. 2024.56 0.04 0.01 0.10 -1 -1 0.04 0.00494127 0.00440465 31 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.35 vpr 65.02 MiB -1 -1 0.10 27104 1 0.02 -1 -1 33296 -1 -1 7 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 26.3 MiB 0.01 655 311 2346 484 1830 32 65.0 MiB 0.01 0.00 1.3433 1.22936 -29.135 -1.22936 1.22936 0.38 0.000171137 0.000155426 0.00568404 0.00514597 -1 -1 -1 -1 26 545 9 6.64007e+06 87906 477104. 1650.88 0.80 0.043328 0.0369125 21682 110474 -1 496 9 118 118 7477 1988 0.998248 0.998248 -30.3091 -0.998248 0 0 585099. 2024.56 0.04 0.01 0.10 -1 -1 0.04 0.00458078 0.00409926 35 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 1.86 vpr 64.68 MiB -1 -1 0.10 26936 1 0.02 -1 -1 33660 -1 -1 8 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 26.2 MiB 0.01 879 334 2424 471 1930 23 64.7 MiB 0.02 0.00 1.79736 1.24036 -32.6529 -1.24036 1.24036 0.39 0.000170342 0.00015465 0.00549746 0.00498165 -1 -1 -1 -1 22 638 13 6.64007e+06 100464 420624. 1455.45 0.33 0.0246062 0.0212481 20818 92861 -1 604 10 219 219 15962 4388 0.998248 0.998248 -34.3689 -0.998248 0 0 500653. 1732.36 0.03 0.01 0.08 -1 -1 0.03 0.0051066 0.00458263 38 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 1.94 vpr 64.98 MiB -1 -1 0.11 27056 1 0.02 -1 -1 33812 -1 -1 9 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66536 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 26.4 MiB 0.01 861 455 2442 504 1913 25 65.0 MiB 0.01 0.00 1.60096 1.25136 -37.2431 -1.25136 1.25136 0.39 0.000180822 0.000164956 0.00551221 0.0050126 -1 -1 -1 -1 26 752 11 6.64007e+06 113022 477104. 1650.88 0.38 0.0268282 0.0233267 21682 110474 -1 673 10 195 195 14060 3600 1.02025 1.02025 -38.1349 -1.02025 0 0 585099. 2024.56 0.04 0.01 0.10 -1 -1 0.04 0.00533517 0.0048099 41 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.40 vpr 64.86 MiB -1 -1 0.10 27036 1 0.02 -1 -1 33352 -1 -1 9 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66420 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 26.4 MiB 0.02 899 403 2825 560 2238 27 64.9 MiB 0.02 0.00 1.45876 1.26236 -37.5043 -1.26236 1.26236 0.39 0.000187397 0.000170328 0.00610889 0.00553411 -1 -1 -1 -1 30 676 11 6.64007e+06 113022 526063. 1820.29 0.80 0.0439243 0.0377977 22546 126617 -1 577 12 176 176 9570 2711 0.867048 0.867048 -35.506 -0.867048 0 0 666494. 2306.21 0.04 0.01 0.11 -1 -1 0.04 0.00600824 0.00538071 44 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.68 vpr 65.05 MiB -1 -1 0.10 27416 1 0.02 -1 -1 33788 -1 -1 9 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66616 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 26.3 MiB 0.02 943 496 2838 532 2292 14 65.1 MiB 0.02 0.00 1.98327 1.62267 -43.8494 -1.62267 1.62267 0.38 0.000317706 0.000287263 0.00622 0.00561541 -1 -1 -1 -1 28 821 14 6.64007e+06 113022 500653. 1732.36 1.12 0.0447248 0.0385136 21970 115934 -1 738 12 291 291 22219 5659 0.965248 0.965248 -41.6936 -0.965248 0 0 612192. 2118.31 0.04 0.02 0.10 -1 -1 0.04 0.00662735 0.00594691 46 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.81 vpr 64.61 MiB -1 -1 0.10 27040 1 0.02 -1 -1 33388 -1 -1 9 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 26.2 MiB 0.03 1020 523 3479 681 2779 19 64.6 MiB 0.02 0.00 1.70987 1.63367 -46.38 -1.63367 1.63367 0.39 0.00021263 0.000193186 0.00741085 0.00673147 -1 -1 -1 -1 30 853 15 6.64007e+06 113022 526063. 1820.29 1.15 0.0645839 0.0554976 22546 126617 -1 770 14 266 266 19048 4840 0.998248 0.998248 -44.1876 -0.998248 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.00754869 0.00671493 49 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 1.99 vpr 64.96 MiB -1 -1 0.10 27488 1 0.02 -1 -1 33616 -1 -1 11 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 26.3 MiB 0.03 1388 367 3739 709 2999 31 65.0 MiB 0.02 0.00 2.09247 1.65567 -47.0767 -1.65567 1.65567 0.38 0.000268802 0.000246835 0.00779655 0.00709902 -1 -1 -1 -1 30 688 15 6.64007e+06 138138 526063. 1820.29 0.40 0.0351741 0.0307546 22546 126617 -1 591 10 230 230 12808 4234 0.942048 0.942048 -43.8733 -0.942048 0 0 666494. 2306.21 0.04 0.01 0.11 -1 -1 0.04 0.00687507 0.00619222 55 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.81 vpr 65.09 MiB -1 -1 0.10 27212 1 0.03 -1 -1 33560 -1 -1 13 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 26.0 MiB 0.02 1387 548 5447 1107 4301 39 65.1 MiB 0.03 0.00 1.81016 1.67767 -55.7386 -1.67767 1.67767 0.38 0.00028103 0.000257243 0.0109546 0.0100446 -1 -1 -1 -1 30 931 12 6.64007e+06 163254 526063. 1820.29 1.17 0.0832059 0.0724152 22546 126617 -1 850 13 259 259 17985 4873 1.01905 1.01905 -52.8193 -1.01905 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.00884215 0.00793384 62 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.99 vpr 65.01 MiB -1 -1 0.11 27128 1 0.03 -1 -1 33540 -1 -1 14 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66568 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 26.1 MiB 0.02 1319 608 4176 746 3404 26 65.0 MiB 0.02 0.00 1.83216 1.69967 -62.7876 -1.69967 1.69967 0.38 0.000283824 0.000258812 0.00761822 0.00695263 -1 -1 -1 -1 32 1107 19 6.64007e+06 175812 554710. 1919.41 1.20 0.0822987 0.0715119 22834 132086 -1 969 11 312 312 17753 5079 1.04105 1.04105 -57.9222 -1.04105 0 0 701300. 2426.64 0.07 0.03 0.20 -1 -1 0.07 0.0136984 0.0123119 68 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.78 vpr 65.19 MiB -1 -1 0.11 27256 1 0.03 -1 -1 33944 -1 -1 14 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66752 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 26.2 MiB 0.03 1548 709 8278 1757 6489 32 65.2 MiB 0.05 0.00 2.43158 2.07098 -71.5071 -2.07098 2.07098 0.38 0.000303755 0.000276078 0.0149795 0.0136431 -1 -1 -1 -1 28 1266 21 6.64007e+06 175812 500653. 1732.36 1.13 0.0958412 0.0836208 21970 115934 -1 1141 16 482 482 37208 9285 1.09645 1.09645 -64.5925 -1.09645 0 0 612192. 2118.31 0.04 0.03 0.10 -1 -1 0.04 0.0112556 0.0100089 73 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.89 vpr 65.10 MiB -1 -1 0.11 27380 1 0.03 -1 -1 33180 -1 -1 18 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66660 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 25.9 MiB 0.03 1813 903 13524 3009 10449 66 65.1 MiB 0.07 0.00 2.51162 2.11498 -89.1149 -2.11498 2.11498 0.38 0.000345202 0.000314198 0.0210153 0.0191575 -1 -1 -1 -1 28 1499 14 6.64007e+06 226044 500653. 1732.36 1.20 0.0913205 0.0805431 21970 115934 -1 1344 9 437 437 28279 7424 1.18125 1.18125 -78.7158 -1.18125 0 0 612192. 2118.31 0.04 0.02 0.10 -1 -1 0.04 0.00892708 0.00810073 86 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 2.90 vpr 65.43 MiB -1 -1 0.11 27368 1 0.03 -1 -1 33988 -1 -1 19 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66996 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 26.2 MiB 0.04 2260 1036 15275 3530 11675 70 65.4 MiB 0.08 0.00 2.92192 2.50829 -105.984 -2.50829 2.50829 0.38 0.000396519 0.000361598 0.0225746 0.020584 -1 -1 -1 -1 30 1705 31 6.64007e+06 238602 526063. 1820.29 1.17 0.124276 0.109497 22546 126617 -1 1509 13 487 487 37944 9728 1.12505 1.12505 -87.9715 -1.12505 0 0 666494. 2306.21 0.04 0.03 0.11 -1 -1 0.04 0.0124007 0.011165 97 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 3.56 vpr 66.26 MiB -1 -1 0.12 27592 1 0.03 -1 -1 33836 -1 -1 29 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67848 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 26.8 MiB 0.05 3154 1581 33916 8320 25514 82 66.3 MiB 0.17 0.00 3.76354 3.38291 -178.288 -3.38291 3.38291 0.39 0.000576852 0.000526655 0.0430073 0.0393032 -1 -1 -1 -1 32 2514 20 6.64007e+06 364182 554710. 1919.41 1.50 0.171829 0.153583 22834 132086 -1 2253 10 704 704 53562 13788 1.43025 1.43025 -139.323 -1.43025 0 0 701300. 2426.64 0.04 0.04 0.19 -1 -1 0.04 0.0149683 0.0136304 145 2 -1 -1 -1 -1 - fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.75 vpr 66.40 MiB -1 -1 0.12 27716 1 0.03 -1 -1 33616 -1 -1 39 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67992 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 26.9 MiB 0.06 4254 2039 58945 16272 42425 248 66.4 MiB 0.32 0.01 4.45393 4.25753 -264.915 -4.25753 4.25753 0.39 0.000801827 0.000735445 0.0710486 0.0651409 -1 -1 -1 -1 32 3447 17 6.64007e+06 489762 554710. 1919.41 0.59 0.168149 0.152595 22834 132086 -1 2999 17 1059 1059 89076 22784 1.63525 1.63525 -191.163 -1.63525 0 0 701300. 2426.64 0.05 0.06 0.12 -1 -1 0.05 0.0287479 0.0262093 193 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 1.76 vpr 64.58 MiB -1 -1 0.09 26756 1 0.02 -1 -1 33552 -1 -1 3 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66132 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 26.1 MiB 0.01 232 77 416 91 316 9 64.6 MiB 0.00 0.00 1.02974 0.781048 -9.42616 -0.781048 0.781048 0.40 6.8036e-05 6.0016e-05 0.00169859 0.00150081 -1 -1 -1 -1 20 159 9 6.65987e+06 38034 394039. 1363.46 0.27 0.00458634 0.00406208 20530 87850 -1 127 11 63 63 2396 828 0.939389 0.939389 -9.69538 -0.939389 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00295761 0.00262217 14 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.30 vpr 64.24 MiB -1 -1 0.09 26948 1 0.02 -1 -1 33588 -1 -1 4 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65784 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 25.9 MiB 0.01 319 94 693 150 518 25 64.2 MiB 0.01 0.00 1.09689 0.803048 -11.5224 -0.803048 0.803048 0.39 8.9622e-05 8.0507e-05 0.0024312 0.00217146 -1 -1 -1 -1 22 215 9 6.65987e+06 50712 420624. 1455.45 0.84 0.0168042 0.0140044 20818 92861 -1 185 10 68 68 2424 857 0.922189 0.922189 -13.4231 -0.922189 0 0 500653. 1732.36 0.03 0.01 0.08 -1 -1 0.03 0.00304494 0.00272911 17 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.33 vpr 64.04 MiB -1 -1 0.09 27080 1 0.02 -1 -1 33920 -1 -1 5 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65572 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 25.6 MiB 0.01 386 107 709 160 522 27 64.0 MiB 0.01 0.00 1.17465 0.814048 -14.206 -0.814048 0.814048 0.38 9.1449e-05 8.1573e-05 0.00221971 0.00198306 -1 -1 -1 -1 22 295 18 6.65987e+06 63390 420624. 1455.45 0.86 0.022611 0.0187393 20818 92861 -1 242 12 145 145 6166 2293 1.04345 1.04345 -16.2609 -1.04345 0 0 500653. 1732.36 0.03 0.01 0.09 -1 -1 0.03 0.00373375 0.00328512 20 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 1.76 vpr 64.68 MiB -1 -1 0.10 27104 1 0.02 -1 -1 33596 -1 -1 4 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66232 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 26.2 MiB 0.01 464 175 907 185 713 9 64.7 MiB 0.01 0.00 1.4419 1.17436 -17.2062 -1.17436 1.17436 0.40 0.00010626 9.5215e-05 0.00294073 0.00264412 -1 -1 -1 -1 20 360 15 6.65987e+06 50712 394039. 1363.46 0.27 0.00778036 0.00689232 20530 87850 -1 347 13 153 153 9009 2727 1.07445 1.07445 -20.0342 -1.07445 0 0 477104. 1650.88 0.03 0.01 0.08 -1 -1 0.03 0.00410693 0.00361977 22 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 2.33 vpr 64.23 MiB -1 -1 0.10 27184 1 0.02 -1 -1 33428 -1 -1 5 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65772 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 25.8 MiB 0.01 543 198 1183 233 936 14 64.2 MiB 0.01 0.00 1.54596 1.18536 -19.9173 -1.18536 1.18536 0.39 0.000120525 0.000108627 0.00355602 0.00321108 -1 -1 -1 -1 26 359 14 6.65987e+06 63390 477104. 1650.88 0.80 0.0335761 0.028024 21682 110474 -1 355 16 153 153 10406 3033 1.02539 1.02539 -22.3875 -1.02539 0 0 585099. 2024.56 0.04 0.01 0.10 -1 -1 0.04 0.00511399 0.00447269 25 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 1.90 vpr 64.32 MiB -1 -1 0.10 27280 1 0.02 -1 -1 33276 -1 -1 5 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65868 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 26.0 MiB 0.01 542 195 1079 235 836 8 64.3 MiB 0.01 0.00 1.31656 1.19636 -22.7609 -1.19636 1.19636 0.38 0.000132511 0.000119255 0.00312787 0.00282329 -1 -1 -1 -1 22 431 37 6.65987e+06 63390 420624. 1455.45 0.35 0.0241255 0.0204031 20818 92861 -1 379 14 185 185 10324 3059 1.02539 1.02539 -24.7886 -1.02539 0 0 500653. 1732.36 0.06 0.02 0.10 -1 -1 0.06 0.00827257 0.0073299 28 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.20 vpr 64.34 MiB -1 -1 0.10 27204 1 0.02 -1 -1 34020 -1 -1 6 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65888 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 25.8 MiB 0.01 565 170 1424 273 1139 12 64.3 MiB 0.01 0.00 1.32756 1.20736 -24.1495 -1.20736 1.20736 0.38 0.000143168 0.000129058 0.00386461 0.00350767 -1 -1 -1 -1 24 439 17 6.65987e+06 76068 448715. 1552.65 0.65 0.0264562 0.0225705 21394 104001 -1 360 11 174 174 9116 3114 0.976248 0.976248 -26.1005 -0.976248 0 0 554710. 1919.41 0.04 0.01 0.10 -1 -1 0.04 0.00484859 0.00432995 31 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 2.35 vpr 64.53 MiB -1 -1 0.10 26808 1 0.02 -1 -1 33252 -1 -1 7 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66076 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 26.1 MiB 0.01 655 269 2058 395 1634 29 64.5 MiB 0.01 0.00 1.33856 1.21836 -28.0575 -1.21836 1.21836 0.38 0.000170023 0.00014676 0.00517227 0.00469007 -1 -1 -1 -1 26 490 16 6.65987e+06 88746 477104. 1650.88 0.81 0.0441192 0.0374777 21682 110474 -1 495 13 215 215 11593 3562 0.998248 0.998248 -29.9046 -0.998248 0 0 585099. 2024.56 0.05 0.01 0.10 -1 -1 0.05 0.00548401 0.00487976 35 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 2.65 vpr 64.31 MiB -1 -1 0.10 27072 1 0.02 -1 -1 33600 -1 -1 8 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65852 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 26.0 MiB 0.01 879 277 2916 595 2288 33 64.3 MiB 0.02 0.00 1.79736 1.22936 -30.6114 -1.22936 1.22936 0.39 0.000183607 0.000167113 0.00716537 0.0065183 -1 -1 -1 -1 28 557 11 6.65987e+06 101424 500653. 1732.36 1.09 0.043001 0.0368501 21970 115934 -1 484 13 244 244 13574 3989 0.938189 0.938189 -30.7355 -0.938189 0 0 612192. 2118.31 0.04 0.01 0.10 -1 -1 0.04 0.00589428 0.00523534 38 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 2.03 vpr 64.50 MiB -1 -1 0.10 26976 1 0.02 -1 -1 33844 -1 -1 9 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66044 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 26.0 MiB 0.02 861 467 2994 665 2298 31 64.5 MiB 0.02 0.00 1.60096 1.24036 -36.8417 -1.24036 1.24036 0.39 0.000176854 0.000159977 0.00729906 0.00662161 -1 -1 -1 -1 26 754 14 6.65987e+06 114102 477104. 1650.88 0.38 0.0276116 0.0239372 21682 110474 -1 732 20 314 314 30233 7151 1.14045 1.14045 -39.8529 -1.14045 0 0 585099. 2024.56 0.04 0.02 0.10 -1 -1 0.04 0.00860078 0.00753294 41 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 2.42 vpr 64.42 MiB -1 -1 0.09 26856 1 0.02 -1 -1 33236 -1 -1 9 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65968 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 26.0 MiB 0.02 899 385 2330 419 1886 25 64.4 MiB 0.01 0.00 1.45876 1.25136 -36.8023 -1.25136 1.25136 0.38 0.000187281 0.000170139 0.0052305 0.00475497 -1 -1 -1 -1 24 739 16 6.65987e+06 114102 448715. 1552.65 0.88 0.0433623 0.0371394 21394 104001 -1 677 14 285 285 20856 5981 1.00925 1.00925 -38.5139 -1.00925 0 0 554710. 1919.41 0.04 0.02 0.09 -1 -1 0.04 0.00688777 0.00613986 44 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 2.75 vpr 64.48 MiB -1 -1 0.10 27712 1 0.02 -1 -1 33584 -1 -1 9 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66032 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 26.0 MiB 0.02 943 535 3052 584 2454 14 64.5 MiB 0.02 0.00 1.97227 1.61167 -43.2453 -1.61167 1.61167 0.38 0.000201299 0.000182925 0.00661477 0.00602099 -1 -1 -1 -1 30 862 14 6.65987e+06 114102 526063. 1820.29 1.16 0.0606595 0.0519091 22546 126617 -1 791 15 318 318 25963 6160 1.04025 1.04025 -42.4523 -1.04025 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.00761162 0.00670458 46 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 2.74 vpr 64.56 MiB -1 -1 0.10 26896 1 0.02 -1 -1 33768 -1 -1 9 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66112 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 25.7 MiB 0.02 1020 521 3365 656 2692 17 64.6 MiB 0.02 0.00 1.70987 1.62267 -46.0631 -1.62267 1.62267 0.38 0.000219079 0.000199416 0.00724851 0.00658394 -1 -1 -1 -1 30 858 16 6.65987e+06 114102 526063. 1820.29 1.17 0.0653051 0.0561244 22546 126617 -1 797 13 288 288 20034 5167 1.07325 1.07325 -45.8625 -1.07325 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.00743462 0.00666841 49 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 2.73 vpr 64.61 MiB -1 -1 0.10 27012 1 0.02 -1 -1 33204 -1 -1 11 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 26.0 MiB 0.02 1388 445 4011 806 3190 15 64.6 MiB 0.02 0.00 2.08531 1.64467 -49.1459 -1.64467 1.64467 0.38 0.000236274 0.000214689 0.00809306 0.00736969 -1 -1 -1 -1 30 814 12 6.65987e+06 139458 526063. 1820.29 1.14 0.0706492 0.0608867 22546 126617 -1 760 17 337 337 19437 5425 1.19345 1.19345 -49.8283 -1.19345 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.00933251 0.00828476 55 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 2.03 vpr 64.82 MiB -1 -1 0.10 27380 1 0.02 -1 -1 33588 -1 -1 13 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 25.9 MiB 0.02 1387 540 5605 1126 4441 38 64.8 MiB 0.03 0.00 1.81016 1.66667 -55.3185 -1.66667 1.66667 0.38 0.00027307 0.000249327 0.0102293 0.00931217 -1 -1 -1 -1 28 1045 20 6.65987e+06 164814 500653. 1732.36 0.42 0.0422072 0.0368974 21970 115934 -1 950 16 370 370 27176 7721 1.16639 1.16639 -56.8941 -1.16639 0 0 612192. 2118.31 0.04 0.02 0.10 -1 -1 0.04 0.00961054 0.00851447 62 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 2.05 vpr 64.86 MiB -1 -1 0.11 27148 1 0.02 -1 -1 33392 -1 -1 14 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 25.6 MiB 0.02 1319 625 4888 830 4025 33 64.9 MiB 0.03 0.00 1.83216 1.68867 -61.5897 -1.68867 1.68867 0.38 0.000323171 0.000277083 0.00926117 0.00844834 -1 -1 -1 -1 30 1115 13 6.65987e+06 177492 526063. 1820.29 0.43 0.0419962 0.0370788 22546 126617 -1 1006 13 350 350 22257 5986 1.07919 1.07919 -59.16 -1.07919 0 0 666494. 2306.21 0.04 0.02 0.11 -1 -1 0.04 0.0089594 0.0080461 68 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 2.96 vpr 64.46 MiB -1 -1 0.10 27436 1 0.03 -1 -1 33776 -1 -1 14 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66008 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 25.3 MiB 0.02 1548 796 10813 2654 8118 41 64.5 MiB 0.06 0.00 2.34952 2.05998 -73.5992 -2.05998 2.05998 0.39 0.000316263 0.000288925 0.0218688 0.0199482 -1 -1 -1 -1 32 1290 13 6.65987e+06 177492 554710. 1919.41 1.27 0.0901467 0.0790764 22834 132086 -1 1204 14 412 412 28081 7398 1.10625 1.10625 -67.9857 -1.10625 0 0 701300. 2426.64 0.05 0.02 0.12 -1 -1 0.05 0.0103907 0.00930633 73 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 2.90 vpr 64.82 MiB -1 -1 0.11 26964 1 0.03 -1 -1 33292 -1 -1 18 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 25.8 MiB 0.03 1813 897 15232 3697 11472 63 64.8 MiB 0.07 0.00 2.51162 2.10398 -88.134 -2.10398 2.10398 0.38 0.000353586 0.000322896 0.0237267 0.0216408 -1 -1 -1 -1 30 1438 16 6.65987e+06 228204 526063. 1820.29 1.22 0.0976748 0.0861122 22546 126617 -1 1319 17 418 418 30998 7826 1.13219 1.13219 -77.627 -1.13219 0 0 666494. 2306.21 0.04 0.03 0.11 -1 -1 0.04 0.0137174 0.0123526 86 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.22 vpr 65.05 MiB -1 -1 0.11 27272 1 0.03 -1 -1 33948 -1 -1 19 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66612 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 25.6 MiB 0.03 2260 1029 19565 4516 14966 83 65.1 MiB 0.10 0.00 2.92192 2.49729 -105.35 -2.49729 2.49729 0.51 0.000391252 0.000356722 0.0307915 0.0280481 -1 -1 -1 -1 30 1724 26 6.65987e+06 240882 526063. 1820.29 1.30 0.13207 0.116381 22546 126617 -1 1512 13 542 542 41404 10758 1.17025 1.17025 -88.8715 -1.17025 0 0 666494. 2306.21 0.04 0.03 0.11 -1 -1 0.04 0.0128283 0.0115741 97 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 2.46 vpr 65.88 MiB -1 -1 0.12 27528 1 0.03 -1 -1 33408 -1 -1 29 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 26.0 MiB 0.04 3154 1583 33916 8167 25663 86 65.9 MiB 0.18 0.00 3.68148 3.37191 -177.614 -3.37191 3.37191 0.38 0.000580303 0.000529598 0.0444385 0.0406928 -1 -1 -1 -1 32 2594 30 6.65987e+06 367662 554710. 1919.41 0.55 0.126493 0.11374 22834 132086 -1 2350 26 833 833 83269 27682 1.55439 1.55439 -146.238 -1.55439 0 0 701300. 2426.64 0.04 0.06 0.12 -1 -1 0.04 0.0298601 0.0267359 145 2 -1 -1 -1 -1 - fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 2.86 vpr 66.37 MiB -1 -1 0.13 27640 1 0.03 -1 -1 33868 -1 -1 39 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67960 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 26.9 MiB 0.06 4254 1907 57513 16177 41023 313 66.4 MiB 0.32 0.01 4.37187 4.24653 -260.18 -4.24653 4.24653 0.39 0.00080354 0.000735927 0.0693326 0.0637241 -1 -1 -1 -1 32 3433 36 6.65987e+06 494442 554710. 1919.41 0.73 0.192064 0.174506 22834 132086 -1 3051 17 1119 1119 84988 22936 1.64625 1.64625 -190.662 -1.64625 0 0 701300. 2426.64 0.05 0.06 0.12 -1 -1 0.05 0.0305021 0.027986 193 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 2.35 vpr 65.09 MiB -1 -1 0.09 27564 1 0.02 -1 -1 33948 -1 -1 1 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 26.8 MiB 0.02 187 45 267 63 198 6 65.1 MiB 0.00 0.00 1.08519 0.723895 -9.83098 -0.723895 0.723895 0.41 6.6497e-05 5.8599e-05 0.00132309 0.00117417 -1 -1 -1 -1 20 120 8 6.95648e+06 14475.7 414966. 1435.87 0.78 0.0191285 0.0157599 23170 95770 -1 99 5 26 26 1510 489 0.723895 0.723895 -10.4754 -0.723895 0 0 503264. 1741.40 0.03 0.00 0.09 -1 -1 0.03 0.00236391 0.00217548 7 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 1.84 vpr 65.17 MiB -1 -1 0.09 27172 1 0.02 -1 -1 33944 -1 -1 1 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66732 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 26.8 MiB 0.04 209 66 386 89 281 16 65.2 MiB 0.01 0.00 1.08519 0.834592 -12.2081 -0.834592 0.834592 0.40 0.000148381 0.000133926 0.00303406 0.00273401 -1 -1 -1 -1 18 171 13 6.95648e+06 14475.7 376052. 1301.22 0.27 0.00686114 0.00610855 22882 88689 -1 157 15 81 81 5590 1931 0.87204 0.87204 -13.6938 -0.87204 0 0 470940. 1629.55 0.03 0.01 0.08 -1 -1 0.03 0.00380925 0.00335931 8 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.51 vpr 65.07 MiB -1 -1 0.10 26916 1 0.02 -1 -1 32956 -1 -1 2 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66632 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 26.8 MiB 0.04 289 105 802 209 583 10 65.1 MiB 0.01 0.00 1.08519 0.802432 -14.9435 -0.802432 0.802432 0.41 9.0482e-05 8.0457e-05 0.00290621 0.00260066 -1 -1 -1 -1 22 235 14 6.95648e+06 28951.4 443629. 1535.05 0.91 0.0212081 0.0177137 23458 102101 -1 191 6 58 58 2991 1005 0.834592 0.834592 -16.0369 -0.834592 0 0 531479. 1839.03 0.03 0.01 0.09 -1 -1 0.03 0.00293204 0.0026648 10 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 2.00 vpr 65.03 MiB -1 -1 0.10 26708 1 0.02 -1 -1 33292 -1 -1 2 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66588 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 26.6 MiB 0.04 412 116 889 202 677 10 65.0 MiB 0.01 0.00 1.32908 0.841632 -17.496 -0.841632 0.841632 0.40 0.000104297 9.2514e-05 0.00319829 0.00283626 -1 -1 -1 -1 26 229 10 6.95648e+06 28951.4 503264. 1741.40 0.37 0.0153593 0.0130756 24322 120374 -1 224 11 119 119 5921 2198 0.938732 0.938732 -19.2829 -0.938732 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00398188 0.00355518 11 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 2.63 vpr 65.33 MiB -1 -1 0.10 27244 1 0.02 -1 -1 33604 -1 -1 2 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 26.8 MiB 0.04 385 130 784 145 634 5 65.3 MiB 0.01 0.00 1.08519 0.852632 -19.6618 -0.852632 0.852632 0.42 0.000131374 0.000118886 0.00305992 0.00279184 -1 -1 -1 -1 26 392 39 6.95648e+06 28951.4 503264. 1741.40 0.97 0.0356618 0.0298883 24322 120374 -1 277 18 220 220 12309 4224 1.20033 1.20033 -21.8651 -1.20033 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00551134 0.00479695 13 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 2.85 vpr 64.96 MiB -1 -1 0.10 27196 1 0.02 -1 -1 33428 -1 -1 4 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66516 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 26.6 MiB 0.02 535 141 1229 233 952 44 65.0 MiB 0.01 0.00 1.21049 0.863632 -22.4225 -0.863632 0.863632 0.41 0.000140542 0.000127255 0.00401979 0.0036629 -1 -1 -1 -1 30 373 24 6.95648e+06 57902.7 556674. 1926.21 1.20 0.034569 0.0290346 25186 138497 -1 294 13 225 225 13113 4301 0.938732 0.938732 -24.8179 -0.938732 0 0 706193. 2443.58 0.04 0.01 0.12 -1 -1 0.04 0.0050703 0.00447385 15 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 2.10 vpr 65.18 MiB -1 -1 0.10 26812 1 0.02 -1 -1 33660 -1 -1 4 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66748 21 11 76 77 1 49 36 17 17 289 -1 unnamed_device 26.8 MiB 0.03 538 230 1275 243 1017 15 65.2 MiB 0.01 0.00 1.28156 0.885632 -25.0606 -0.885632 0.885632 0.41 0.000142856 0.000129078 0.00372185 0.00337618 -1 -1 -1 -1 26 511 18 6.95648e+06 57902.7 503264. 1741.40 0.39 0.0229922 0.0197649 24322 120374 -1 446 14 244 244 16954 4612 1.11423 1.11423 -28.9526 -1.11423 0 0 618332. 2139.56 0.04 0.01 0.12 -1 -1 0.04 0.00564651 0.00499937 17 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 2.02 vpr 65.68 MiB -1 -1 0.10 27396 1 0.02 -1 -1 33828 -1 -1 4 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 23 12 83 84 1 55 39 17 17 289 -1 unnamed_device 27.1 MiB 0.02 716 181 2349 660 1661 28 65.7 MiB 0.01 0.00 1.20294 0.896632 -26.8649 -0.896632 0.896632 0.40 0.00014725 0.000131995 0.00600583 0.00540282 -1 -1 -1 -1 26 498 17 6.95648e+06 57902.7 503264. 1741.40 0.39 0.0257031 0.0221954 24322 120374 -1 442 12 276 276 16182 5630 1.35863 1.35863 -34.7316 -1.35863 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00575866 0.00513774 18 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 2.50 vpr 65.05 MiB -1 -1 0.10 26988 1 0.02 -1 -1 33440 -1 -1 5 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66608 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 26.5 MiB 0.02 657 347 2668 695 1941 32 65.0 MiB 0.01 0.00 1.16923 0.918632 -32.2386 -0.918632 0.918632 0.40 0.000156313 0.000140876 0.00639907 0.00579694 -1 -1 -1 -1 30 664 11 6.95648e+06 72378.4 556674. 1926.21 0.86 0.0431269 0.0368483 25186 138497 -1 585 16 309 309 22411 5459 1.16923 1.16923 -36.2259 -1.16923 0 0 706193. 2443.58 0.04 0.02 0.12 -1 -1 0.04 0.00660253 0.00584039 20 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 3.22 vpr 65.80 MiB -1 -1 0.10 26768 1 0.02 -1 -1 33824 -1 -1 5 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67384 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 26.9 MiB 0.02 767 248 2260 493 1728 39 65.8 MiB 0.01 0.00 1.21049 0.951632 -33.3155 -0.951632 0.951632 0.41 0.000171645 0.000155117 0.00564227 0.00505786 -1 -1 -1 -1 32 725 34 6.95648e+06 72378.4 586450. 2029.24 1.53 0.063328 0.0537537 25474 144626 -1 536 19 432 432 34653 9597 1.33663 1.33663 -38.276 -1.33663 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00802842 0.00703266 21 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 2.97 vpr 65.21 MiB -1 -1 0.10 26912 1 0.02 -1 -1 33408 -1 -1 5 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66772 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 26.6 MiB 0.02 853 447 2363 494 1838 31 65.2 MiB 0.02 0.00 1.21049 0.951632 -39.7547 -0.951632 0.951632 0.41 0.000192284 0.000168724 0.00605782 0.00547835 -1 -1 -1 -1 28 897 21 6.95648e+06 72378.4 531479. 1839.03 1.30 0.0667921 0.0568975 24610 126494 -1 812 18 530 530 48044 11465 1.15203 1.15203 -44.8925 -1.15203 0 0 648988. 2245.63 0.04 0.03 0.11 -1 -1 0.04 0.0091933 0.00811059 23 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 2.90 vpr 65.32 MiB -1 -1 0.10 26924 1 0.02 -1 -1 33576 -1 -1 5 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 26.8 MiB 0.04 958 356 3156 691 2456 9 65.3 MiB 0.02 0.00 1.56686 1.35186 -41.5615 -1.35186 1.35186 0.41 0.000199497 0.00018087 0.0076877 0.00696841 -1 -1 -1 -1 28 896 36 6.95648e+06 72378.4 531479. 1839.03 1.20 0.0750098 0.0642469 24610 126494 -1 706 16 462 462 35365 9765 1.19403 1.19403 -46.1245 -1.19403 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00825891 0.00726009 24 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 2.20 vpr 65.60 MiB -1 -1 0.11 27116 1 0.02 -1 -1 33220 -1 -1 5 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67172 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 26.9 MiB 0.06 937 290 5983 1758 4192 33 65.6 MiB 0.03 0.00 1.54966 1.34496 -41.6682 -1.34496 1.34496 0.41 0.00021003 0.000189645 0.0130825 0.0118772 -1 -1 -1 -1 28 892 26 6.95648e+06 72378.4 531479. 1839.03 0.50 0.0432608 0.0377949 24610 126494 -1 690 16 471 471 32415 10190 1.41163 1.41163 -50.6588 -1.41163 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00879185 0.00781444 25 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 2.24 vpr 65.46 MiB -1 -1 0.10 27172 1 0.02 -1 -1 33024 -1 -1 5 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67036 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 26.7 MiB 0.08 978 312 6301 1848 4411 42 65.5 MiB 0.03 0.00 1.49656 1.36696 -47.5638 -1.36696 1.36696 0.40 0.000229979 0.000207983 0.0132894 0.012069 -1 -1 -1 -1 32 819 25 6.95648e+06 72378.4 586450. 2029.24 0.49 0.0449294 0.0392069 25474 144626 -1 650 17 481 481 30991 9637 1.42263 1.42263 -54.7009 -1.42263 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00958348 0.00849977 28 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 2.26 vpr 65.68 MiB -1 -1 0.10 27236 1 0.02 -1 -1 33888 -1 -1 5 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67256 41 21 146 147 1 95 67 17 17 289 -1 unnamed_device 26.8 MiB 0.09 1137 464 6867 1572 5258 37 65.7 MiB 0.03 0.00 1.54536 1.38896 -55.4294 -1.38896 1.38896 0.41 0.000253171 0.000230065 0.0140494 0.0128038 -1 -1 -1 -1 32 1002 27 6.95648e+06 72378.4 586450. 2029.24 0.50 0.0483555 0.0423897 25474 144626 -1 888 14 446 446 36174 9195 1.34133 1.34133 -61.7828 -1.34133 0 0 744469. 2576.02 0.04 0.02 0.13 -1 -1 0.04 0.00939768 0.0084219 31 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 3.14 vpr 65.90 MiB -1 -1 0.11 27304 1 0.02 -1 -1 33548 -1 -1 6 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67480 45 23 160 161 1 107 74 17 17 289 -1 unnamed_device 27.0 MiB 0.09 1553 555 7824 1776 5998 50 65.9 MiB 0.04 0.00 2.02359 1.41096 -63.7053 -1.41096 1.41096 0.41 0.000284962 0.0002596 0.016525 0.0150561 -1 -1 -1 -1 30 1108 43 6.95648e+06 86854.1 556674. 1926.21 1.34 0.0999978 0.0871491 25186 138497 -1 919 19 590 590 47534 12002 1.32123 1.32123 -67.8778 -1.32123 0 0 706193. 2443.58 0.04 0.03 0.12 -1 -1 0.04 0.0127411 0.0113616 34 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 3.18 vpr 65.62 MiB -1 -1 0.11 26912 1 0.03 -1 -1 33760 -1 -1 8 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67196 49 25 174 175 1 119 82 17 17 289 -1 unnamed_device 26.8 MiB 0.03 1593 644 10584 2706 7791 87 65.6 MiB 0.05 0.00 1.65536 1.43296 -71.3884 -1.43296 1.43296 0.40 0.000299036 0.000272068 0.0194392 0.0176685 -1 -1 -1 -1 32 1301 22 6.95648e+06 115805 586450. 2029.24 1.42 0.0967255 0.0843643 25474 144626 -1 1131 18 600 600 51886 13177 1.19403 1.19403 -72.8984 -1.19403 0 0 744469. 2576.02 0.05 0.03 0.13 -1 -1 0.05 0.0129317 0.0115446 38 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 4.18 vpr 65.88 MiB -1 -1 0.11 27260 1 0.03 -1 -1 33480 -1 -1 9 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67460 57 29 202 203 1 142 95 17 17 289 -1 unnamed_device 26.8 MiB 0.04 1724 1014 14135 3996 10053 86 65.9 MiB 0.07 0.00 1.63336 1.47696 -90.2676 -1.47696 1.47696 0.40 0.000339862 0.000308579 0.0244642 0.0222572 -1 -1 -1 -1 32 1794 33 6.95648e+06 130281 586450. 2029.24 2.38 0.150973 0.13245 25474 144626 -1 1621 20 738 738 83069 18423 1.31503 1.31503 -92.8921 -1.31503 0 0 744469. 2576.02 0.05 0.04 0.13 -1 -1 0.05 0.0160113 0.0142741 44 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 4.20 vpr 65.89 MiB -1 -1 0.11 26912 1 0.03 -1 -1 33588 -1 -1 9 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67476 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 26.6 MiB 0.07 2066 1011 16805 5337 11414 54 65.9 MiB 0.08 0.00 2.35429 1.88129 -99.6514 -1.88129 1.88129 0.41 0.000394161 0.000357164 0.0284016 0.0257766 -1 -1 -1 -1 34 1995 37 6.95648e+06 130281 618332. 2139.56 2.26 0.181399 0.159228 25762 151098 -1 1714 23 885 885 112729 42986 1.32403 1.32403 -101.433 -1.32403 0 0 787024. 2723.27 0.05 0.06 0.14 -1 -1 0.05 0.0196768 0.0175086 50 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 5.12 vpr 66.63 MiB -1 -1 0.12 27424 1 0.03 -1 -1 33612 -1 -1 14 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68228 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 27.0 MiB 0.10 3098 1566 30540 9087 21400 53 66.6 MiB 0.14 0.00 3.01593 2.41762 -164.401 -2.41762 2.41762 0.41 0.000604695 0.00055494 0.0460009 0.0421522 -1 -1 -1 -1 52 2544 38 6.95648e+06 202660 926341. 3205.33 2.97 0.275851 0.245897 29218 227130 -1 2309 17 1074 1074 108969 25086 1.50433 1.50433 -150.76 -1.50433 0 0 1.14541e+06 3963.36 0.07 0.06 0.21 -1 -1 0.07 0.0227182 0.0205757 74 2 -1 -1 -1 -1 - fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 5.85 vpr 67.03 MiB -1 -1 0.13 27424 1 0.03 -1 -1 33676 -1 -1 19 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68640 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 27.6 MiB 0.11 3936 2111 45298 14615 30598 85 67.0 MiB 0.22 0.00 3.42696 2.95395 -236.293 -2.95395 2.95395 0.41 0.000804733 0.000735768 0.060597 0.055616 -1 -1 -1 -1 54 3195 30 6.95648e+06 275038 949917. 3286.91 3.56 0.370096 0.334499 29506 232905 -1 2956 16 1282 1282 106867 24972 1.69593 1.69593 -205.292 -1.69593 0 0 1.17392e+06 4061.99 0.07 0.07 0.22 -1 -1 0.07 0.029183 0.0268108 98 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 2.32 vpr 65.09 MiB -1 -1 0.09 27404 1 0.02 -1 -1 33528 -1 -1 1 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66648 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 26.8 MiB 0.01 187 47 267 61 200 6 65.1 MiB 0.00 0.00 1.08519 0.583992 -8.90017 -0.583992 0.583992 0.41 6.7106e-05 5.9251e-05 0.00130638 0.00115316 -1 -1 -1 -1 20 132 5 6.99608e+06 14715.7 414966. 1435.87 0.77 0.0186203 0.015279 23170 95770 -1 99 8 37 37 2720 882 0.62144 0.62144 -9.50877 -0.62144 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00246426 0.00222416 7 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 2.45 vpr 65.29 MiB -1 -1 0.10 27028 1 0.02 -1 -1 33388 -1 -1 1 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66852 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 26.7 MiB 0.01 207 63 340 65 258 17 65.3 MiB 0.00 0.00 1.08519 0.691615 -11.9288 -0.691615 0.691615 0.41 8.0235e-05 7.1312e-05 0.00159963 0.00143636 -1 -1 -1 -1 22 186 15 6.99608e+06 14715.7 443629. 1535.05 0.90 0.017161 0.0142737 23458 102101 -1 143 10 87 87 6174 2123 0.74674 0.74674 -12.9312 -0.74674 0 0 531479. 1839.03 0.03 0.01 0.09 -1 -1 0.03 0.00310362 0.00277031 8 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 2.61 vpr 64.91 MiB -1 -1 0.09 26804 1 0.02 -1 -1 33536 -1 -1 2 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66468 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 26.8 MiB 0.01 291 93 802 209 585 8 64.9 MiB 0.01 0.00 1.08519 0.802432 -14.9614 -0.802432 0.802432 0.40 9.2937e-05 8.2216e-05 0.00291298 0.0025901 -1 -1 -1 -1 26 184 7 6.99608e+06 29431.4 503264. 1741.40 1.03 0.0204019 0.0170557 24322 120374 -1 201 11 104 104 5774 2133 0.957879 0.957879 -16.6657 -0.957879 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00361563 0.00321083 10 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 2.33 vpr 65.20 MiB -1 -1 0.10 26912 1 0.02 -1 -1 33828 -1 -1 2 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66760 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 26.8 MiB 0.01 410 96 817 175 630 12 65.2 MiB 0.01 0.00 1.32908 0.813432 -16.7232 -0.813432 0.813432 0.42 0.000103559 9.2583e-05 0.00294456 0.00265138 -1 -1 -1 -1 20 216 15 6.99608e+06 29431.4 414966. 1435.87 0.76 0.0174758 0.0147093 23170 95770 -1 192 15 153 153 7461 3267 0.940679 0.940679 -18.6642 -0.940679 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00607256 0.00537936 11 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 2.59 vpr 65.02 MiB -1 -1 0.10 27220 1 0.02 -1 -1 33632 -1 -1 2 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66584 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 26.8 MiB 0.01 385 122 826 167 653 6 65.0 MiB 0.01 0.00 1.08519 0.824432 -19.1369 -0.824432 0.824432 0.41 0.000115199 0.000102959 0.00280402 0.00252135 -1 -1 -1 -1 26 358 18 6.99608e+06 29431.4 503264. 1741.40 0.96 0.033222 0.0276499 24322 120374 -1 250 18 224 224 12173 3940 0.938732 0.938732 -19.6705 -0.938732 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00564653 0.00489364 13 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 1.98 vpr 64.93 MiB -1 -1 0.10 26668 1 0.02 -1 -1 33596 -1 -1 4 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66492 19 10 69 70 1 43 33 17 17 289 -1 unnamed_device 26.4 MiB 0.01 533 139 1229 253 942 34 64.9 MiB 0.01 0.00 1.21049 0.846432 -21.9347 -0.846432 0.846432 0.41 0.00012801 0.000115067 0.00378622 0.00342185 -1 -1 -1 -1 26 366 14 6.99608e+06 58862.7 503264. 1741.40 0.39 0.0204453 0.0175173 24322 120374 -1 305 12 203 203 11738 4050 1.00188 1.00188 -24.9697 -1.00188 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00471702 0.0041902 15 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 2.06 vpr 65.27 MiB -1 -1 0.10 27096 1 0.02 -1 -1 33832 -1 -1 4 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66840 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 26.9 MiB 0.01 554 166 1334 232 1089 13 65.3 MiB 0.01 0.00 1.24794 0.868432 -24.1656 -0.868432 0.868432 0.40 0.000139976 0.000126197 0.00378594 0.00342989 -1 -1 -1 -1 28 372 44 6.99608e+06 58862.7 531479. 1839.03 0.43 0.0275565 0.0234139 24610 126494 -1 300 13 191 191 8354 3072 1.00188 1.00188 -24.1855 -1.00188 0 0 648988. 2245.63 0.04 0.01 0.11 -1 -1 0.04 0.00522033 0.00465038 17 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 2.08 vpr 65.24 MiB -1 -1 0.10 27008 1 0.02 -1 -1 33624 -1 -1 4 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 23 12 83 84 1 54 39 17 17 289 -1 unnamed_device 26.9 MiB 0.02 714 286 1359 291 1049 19 65.2 MiB 0.01 0.00 1.08519 0.879432 -28.0997 -0.879432 0.879432 0.41 0.000148304 0.000134188 0.00379791 0.00344351 -1 -1 -1 -1 26 539 29 6.99608e+06 58862.7 503264. 1741.40 0.43 0.0264293 0.0226027 24322 120374 -1 462 12 209 209 15291 4004 0.971732 0.971732 -30.0792 -0.971732 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00550324 0.00491274 18 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 2.13 vpr 65.31 MiB -1 -1 0.10 27084 1 0.02 -1 -1 33272 -1 -1 5 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66880 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 26.8 MiB 0.02 657 353 2218 531 1660 27 65.3 MiB 0.01 0.00 1.12264 0.901432 -31.3068 -0.901432 0.901432 0.40 0.000163235 0.000148077 0.00574505 0.00523042 -1 -1 -1 -1 30 721 19 6.99608e+06 73578.4 556674. 1926.21 0.44 0.0267138 0.0230961 25186 138497 -1 625 15 350 350 28090 7130 1.00473 1.00473 -35.7086 -1.00473 0 0 706193. 2443.58 0.05 0.02 0.12 -1 -1 0.05 0.00799173 0.00700707 20 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 2.39 vpr 65.00 MiB -1 -1 0.10 26884 1 0.02 -1 -1 33832 -1 -1 5 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66556 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 26.4 MiB 0.02 767 269 2014 414 1572 28 65.0 MiB 0.02 0.00 1.21049 0.912432 -33.8382 -0.912432 0.912432 0.43 0.0003331 0.000303998 0.00927227 0.00840348 -1 -1 -1 -1 30 589 20 6.99608e+06 73578.4 556674. 1926.21 0.70 0.0475536 0.0410251 25186 138497 -1 456 16 356 356 20538 5881 1.00668 1.00668 -34.5491 -1.00668 0 0 706193. 2443.58 0.05 0.02 0.12 -1 -1 0.05 0.0069145 0.00609466 21 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 3.70 vpr 65.09 MiB -1 -1 0.10 27116 1 0.02 -1 -1 32988 -1 -1 5 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 26.8 MiB 0.02 847 261 2897 622 2246 29 65.1 MiB 0.02 0.00 1.33579 0.934432 -35.6417 -0.934432 0.934432 0.41 0.000194396 0.000176368 0.0073342 0.00666583 -1 -1 -1 -1 34 800 47 6.99608e+06 73578.4 618332. 2139.56 1.89 0.0810677 0.069277 25762 151098 -1 575 68 699 699 191209 126236 1.18218 1.18218 -38.7224 -1.18218 0 0 787024. 2723.27 0.05 0.12 0.13 -1 -1 0.05 0.0232476 0.0198776 23 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 2.97 vpr 65.22 MiB -1 -1 0.10 27248 1 0.02 -1 -1 33544 -1 -1 5 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66788 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 26.7 MiB 0.02 958 343 2865 625 2224 16 65.2 MiB 0.02 0.00 1.44351 1.30576 -39.0804 -1.30576 1.30576 0.40 0.000206488 0.000187015 0.00679294 0.00618432 -1 -1 -1 -1 32 783 22 6.99608e+06 73578.4 586450. 2029.24 1.30 0.0678159 0.0580751 25474 144626 -1 647 14 388 388 24143 6364 1.16103 1.16103 -42.5163 -1.16103 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00752276 0.00670348 24 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 2.68 vpr 64.79 MiB -1 -1 0.10 26716 1 0.02 -1 -1 33580 -1 -1 5 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66344 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 26.2 MiB 0.02 937 290 5983 1740 4219 24 64.8 MiB 0.03 0.00 1.45451 1.31676 -41.1509 -1.31676 1.31676 0.40 0.000212196 0.000191594 0.0131866 0.0119677 -1 -1 -1 -1 28 820 20 6.99608e+06 73578.4 531479. 1839.03 1.02 0.0663486 0.0571973 24610 126494 -1 733 17 447 447 29712 9554 1.34133 1.34133 -52.1155 -1.34133 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00887389 0.00786558 25 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 3.18 vpr 65.24 MiB -1 -1 0.10 27292 1 0.02 -1 -1 33212 -1 -1 5 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66808 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 26.6 MiB 0.02 978 325 6301 1702 4564 35 65.2 MiB 0.03 0.00 1.39154 1.32776 -47.2083 -1.32776 1.32776 0.41 0.000233634 0.000210878 0.0136948 0.0124113 -1 -1 -1 -1 34 808 24 6.99608e+06 73578.4 618332. 2139.56 1.45 0.0716256 0.0616771 25762 151098 -1 640 17 442 442 27754 8359 1.16103 1.16103 -51.3979 -1.16103 0 0 787024. 2723.27 0.05 0.02 0.13 -1 -1 0.05 0.00952357 0.00840797 28 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 2.21 vpr 65.45 MiB -1 -1 0.10 27168 1 0.02 -1 -1 33736 -1 -1 5 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67020 41 21 146 147 1 94 67 17 17 289 -1 unnamed_device 26.6 MiB 0.03 1135 443 4691 1165 3483 43 65.4 MiB 0.03 0.00 1.43921 1.36076 -56.2977 -1.36076 1.36076 0.41 0.000257028 0.000233354 0.00992128 0.00902443 -1 -1 -1 -1 28 1098 26 6.99608e+06 73578.4 531479. 1839.03 0.51 0.0456385 0.0398129 24610 126494 -1 900 19 472 472 38516 10600 1.62493 1.62493 -68.4894 -1.62493 0 0 648988. 2245.63 0.04 0.03 0.11 -1 -1 0.04 0.0114263 0.0101086 31 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 2.24 vpr 65.33 MiB -1 -1 0.11 27160 1 0.02 -1 -1 33364 -1 -1 6 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66900 45 23 160 161 1 108 74 17 17 289 -1 unnamed_device 26.5 MiB 0.03 1555 665 7204 1651 5525 28 65.3 MiB 0.04 0.00 1.88924 1.38276 -65.7449 -1.38276 1.38276 0.40 0.000291917 0.000266561 0.0150461 0.0137223 -1 -1 -1 -1 30 1233 25 6.99608e+06 88294.1 556674. 1926.21 0.52 0.0535743 0.0472209 25186 138497 -1 1104 13 525 525 44755 10837 1.23803 1.23803 -69.1133 -1.23803 0 0 706193. 2443.58 0.04 0.02 0.12 -1 -1 0.04 0.00931041 0.00836058 34 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 3.15 vpr 65.71 MiB -1 -1 0.11 27152 1 0.03 -1 -1 33716 -1 -1 8 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 49 25 174 175 1 118 82 17 17 289 -1 unnamed_device 26.7 MiB 0.03 1591 639 10762 2597 8074 91 65.7 MiB 0.05 0.00 1.65536 1.40476 -69.4613 -1.40476 1.40476 0.40 0.000307027 0.000279923 0.019772 0.0178786 -1 -1 -1 -1 32 1306 22 6.99608e+06 117725 586450. 2029.24 1.40 0.097329 0.0848397 25474 144626 -1 1129 19 585 585 49844 12685 1.16773 1.16773 -71.9115 -1.16773 0 0 744469. 2576.02 0.05 0.03 0.13 -1 -1 0.05 0.0129528 0.0115463 38 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 3.56 vpr 65.71 MiB -1 -1 0.11 27312 1 0.03 -1 -1 33516 -1 -1 9 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67284 57 29 202 203 1 141 95 17 17 289 -1 unnamed_device 26.6 MiB 0.04 1722 1012 13271 3822 9381 68 65.7 MiB 0.06 0.00 1.5284 1.44876 -89.0473 -1.44876 1.44876 0.40 0.000354041 0.000321546 0.0236107 0.0214353 -1 -1 -1 -1 28 1879 29 6.99608e+06 132441 531479. 1839.03 1.79 0.131556 0.115249 24610 126494 -1 1660 16 724 724 82640 18737 1.46233 1.46233 -98.3142 -1.46233 0 0 648988. 2245.63 0.04 0.04 0.11 -1 -1 0.04 0.0132492 0.0118682 44 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 4.01 vpr 65.98 MiB -1 -1 0.11 27216 1 0.04 -1 -1 33180 -1 -1 9 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67564 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 26.7 MiB 0.04 2066 1037 16805 4670 12076 59 66.0 MiB 0.08 0.00 2.23714 1.84209 -99.6161 -1.84209 1.84209 0.40 0.000389502 0.000353978 0.0276783 0.0252547 -1 -1 -1 -1 40 1745 19 6.99608e+06 132441 706193. 2443.58 2.11 0.16681 0.14659 26914 176310 -1 1662 21 747 747 75594 17576 1.20973 1.20973 -97.273 -1.20973 0 0 926341. 3205.33 0.05 0.04 0.16 -1 -1 0.05 0.018355 0.0164075 50 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 3.24 vpr 66.46 MiB -1 -1 0.12 27536 1 0.03 -1 -1 33804 -1 -1 14 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68052 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 26.9 MiB 0.06 3098 1573 30540 8562 21904 74 66.5 MiB 0.14 0.00 2.89877 2.37842 -162.096 -2.37842 2.37842 0.40 0.000616777 0.000566692 0.0442253 0.0404783 -1 -1 -1 -1 48 2455 23 6.99608e+06 206020 865456. 2994.66 1.19 0.144934 0.13 28354 207349 -1 2336 18 998 998 94723 21252 1.54203 1.54203 -155.425 -1.54203 0 0 1.05005e+06 3633.38 0.06 0.05 0.18 -1 -1 0.06 0.0233264 0.0211236 74 2 -1 -1 -1 -1 - fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 5.27 vpr 66.91 MiB -1 -1 0.13 27344 1 0.03 -1 -1 33852 -1 -1 19 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68512 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 27.3 MiB 0.08 3936 2107 45298 14223 30986 89 66.9 MiB 0.21 0.01 3.3098 2.91475 -233.282 -2.91475 2.91475 0.41 0.000816284 0.000743719 0.0603986 0.0550518 -1 -1 -1 -1 52 3374 49 6.99608e+06 279598 926341. 3205.33 3.00 0.342456 0.308757 29218 227130 -1 2954 17 1367 1367 120332 27934 1.69168 1.69168 -203.584 -1.69168 0 0 1.14541e+06 3963.36 0.07 0.07 0.21 -1 -1 0.07 0.030747 0.0281581 98 2 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_004bits.v common 2.07 vpr 64.38 MiB -1 -1 0.10 27000 2 0.05 -1 -1 35844 -1 -1 1 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65920 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 25.9 MiB 0.01 191 50 339 77 252 10 64.4 MiB 0.00 0.00 0.942216 0.808785 -9.82231 -0.808785 0.808785 0.41 6.6634e-05 5.8257e-05 0.00155695 0.00138139 -1 -1 -1 -1 18 139 11 6.79088e+06 13472 376052. 1301.22 0.52 0.00618068 0.00534214 22222 88205 -1 112 5 39 39 1600 563 0.808785 0.808785 -10.5741 -0.808785 0 0 470940. 1629.55 0.03 0.00 0.08 -1 -1 0.03 0.00214571 0.00196344 8 6 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_005bits.v common 2.45 vpr 64.84 MiB -1 -1 0.10 26840 2 0.05 -1 -1 35852 -1 -1 2 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66400 11 6 34 40 1 22 19 17 17 289 -1 unnamed_device 26.3 MiB 0.01 226 71 344 72 262 10 64.8 MiB 0.00 0.00 1.08519 0.847985 -12.8035 -0.847985 0.847985 0.40 7.9719e-05 7.0679e-05 0.00167787 0.00149668 -1 -1 -1 -1 22 188 9 6.79088e+06 26944 443629. 1535.05 0.90 0.0159203 0.0132396 22798 101617 -1 151 10 64 72 3340 1177 0.847985 0.847985 -13.5732 -0.847985 0 0 531479. 1839.03 0.03 0.01 0.09 -1 -1 0.03 0.00309643 0.0027808 10 7 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_006bits.v common 1.87 vpr 64.51 MiB -1 -1 0.10 27048 3 0.05 -1 -1 35672 -1 -1 2 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66060 13 7 41 48 1 29 22 17 17 289 -1 unnamed_device 26.2 MiB 0.01 281 105 532 110 411 11 64.5 MiB 0.01 0.00 1.20264 1.18474 -16.3347 -1.18474 1.18474 0.41 9.0817e-05 8.0777e-05 0.00204706 0.00183657 -1 -1 -1 -1 20 243 12 6.79088e+06 26944 414966. 1435.87 0.29 0.00625234 0.00553558 22510 95286 -1 229 8 95 98 5338 1787 1.0952 1.0952 -17.9943 -1.0952 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00314371 0.00281798 11 9 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_007bits.v common 2.47 vpr 64.66 MiB -1 -1 0.10 27112 3 0.06 -1 -1 35768 -1 -1 2 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 15 8 47 55 1 35 25 17 17 289 -1 unnamed_device 26.2 MiB 0.05 429 129 889 182 674 33 64.7 MiB 0.01 0.00 1.43878 1.27433 -19.8648 -1.27433 1.27433 0.41 0.00010613 9.475e-05 0.00317316 0.00283906 -1 -1 -1 -1 30 271 9 6.79088e+06 26944 556674. 1926.21 0.80 0.0272552 0.0229211 24526 138013 -1 211 7 77 83 3584 1090 1.27433 1.27433 -19.9841 -1.27433 0 0 706193. 2443.58 0.04 0.01 0.12 -1 -1 0.04 0.00330582 0.00300622 13 10 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_008bits.v common 2.04 vpr 64.91 MiB -1 -1 0.10 27408 3 0.06 -1 -1 35356 -1 -1 4 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66472 17 9 56 65 1 41 30 17 17 289 -1 unnamed_device 26.6 MiB 0.07 532.828 151 950 239 703 8 64.9 MiB 0.01 0.00 2.22292 1.77558 -23.748 -1.77558 1.77558 0.40 0.0002166 0.000202201 0.0037814 0.00342224 -1 -1 -1 -1 26 362 9 6.79088e+06 53888 503264. 1741.40 0.37 0.0181417 0.0155534 23662 119890 -1 319 10 155 198 8300 2765 1.52498 1.52498 -24.4078 -1.52498 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.0045949 0.00411382 16 14 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_009bits.v common 2.06 vpr 64.26 MiB -1 -1 0.10 27092 4 0.06 -1 -1 35488 -1 -1 3 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 65804 19 10 60 70 1 46 32 17 17 289 -1 unnamed_device 26.0 MiB 0.08 562 165 1282 285 972 25 64.3 MiB 0.01 0.00 1.70654 1.65028 -27.2476 -1.65028 1.65028 0.40 0.00013531 0.000121121 0.00401157 0.0036142 -1 -1 -1 -1 26 384 10 6.79088e+06 40416 503264. 1741.40 0.37 0.0203442 0.017482 23662 119890 -1 364 9 174 198 9862 3357 1.52498 1.52498 -28.765 -1.52498 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00426463 0.00384558 17 13 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_010bits.v common 2.17 vpr 64.61 MiB -1 -1 0.10 26932 4 0.06 -1 -1 35616 -1 -1 4 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66156 21 11 69 80 1 55 36 17 17 289 -1 unnamed_device 26.2 MiB 0.12 723 227 2278 514 1748 16 64.6 MiB 0.02 0.00 2.31593 1.77558 -30.9762 -1.77558 1.77558 0.40 0.000155447 0.000140216 0.00661226 0.00597629 -1 -1 -1 -1 26 602 25 6.79088e+06 53888 503264. 1741.40 0.39 0.0278145 0.0239918 23662 119890 -1 446 10 209 257 14592 4324 1.72868 1.72868 -32.2112 -1.72868 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00510495 0.00461329 21 17 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_011bits.v common 2.54 vpr 64.59 MiB -1 -1 0.11 27112 5 0.06 -1 -1 35492 -1 -1 4 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66140 23 12 76 88 1 59 39 17 17 289 -1 unnamed_device 26.0 MiB 0.07 825 356 1689 389 1290 10 64.6 MiB 0.01 0.00 2.40208 1.90432 -36.6103 -1.90432 1.90432 0.41 0.000166396 0.000150403 0.00499764 0.00450817 -1 -1 -1 -1 22 733 20 6.79088e+06 53888 443629. 1535.05 0.83 0.0382026 0.0324747 22798 101617 -1 652 14 252 306 18292 4841 1.76444 1.76444 -38.4941 -1.76444 0 0 531479. 1839.03 0.04 0.02 0.09 -1 -1 0.04 0.00659409 0.00585879 23 19 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_012bits.v common 3.04 vpr 64.67 MiB -1 -1 0.11 27152 5 0.06 -1 -1 35480 -1 -1 4 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66224 25 13 83 96 1 65 42 17 17 289 -1 unnamed_device 26.2 MiB 0.12 888 253 1626 299 1321 6 64.7 MiB 0.01 0.00 2.31598 1.85398 -37.8686 -1.85398 1.85398 0.42 0.000184485 0.000166793 0.00491457 0.00444886 -1 -1 -1 -1 32 572 14 6.79088e+06 53888 586450. 2029.24 1.22 0.058365 0.0498585 24814 144142 -1 469 14 237 285 14717 4912 1.76444 1.76444 -38.8582 -1.76444 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00719754 0.00643219 24 21 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_013bits.v common 2.21 vpr 64.47 MiB -1 -1 0.11 27252 5 0.06 -1 -1 35604 -1 -1 5 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66016 27 14 91 105 1 70 46 17 17 289 -1 unnamed_device 26.0 MiB 0.09 910.306 328 2342 484 1843 15 64.5 MiB 0.02 0.00 2.6855 2.15497 -43.2276 -2.15497 2.15497 0.40 0.000205223 0.000185648 0.00683859 0.00621003 -1 -1 -1 -1 26 765 19 6.79088e+06 67360 503264. 1741.40 0.46 0.0333854 0.0290303 23662 119890 -1 694 14 303 416 24493 6908 2.02962 2.02962 -45.6665 -2.02962 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00801862 0.0071764 28 24 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_014bits.v common 2.12 vpr 64.71 MiB -1 -1 0.11 27092 6 0.06 -1 -1 35680 -1 -1 5 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66260 29 15 95 110 1 77 49 17 17 289 -1 unnamed_device 26.0 MiB 0.07 1017.73 527 3253 824 2407 22 64.7 MiB 0.02 0.00 3.53332 2.40562 -53.0763 -2.40562 2.40562 0.40 0.000209489 0.000189623 0.00865213 0.00787228 -1 -1 -1 -1 26 963 14 6.79088e+06 67360 503264. 1741.40 0.40 0.0330526 0.0287411 23662 119890 -1 920 12 336 418 27162 6830 2.1796 2.1796 -54.2113 -2.1796 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00725359 0.00650085 29 23 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_015bits.v common 2.52 vpr 64.96 MiB -1 -1 0.11 27164 6 0.06 -1 -1 35160 -1 -1 6 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 31 16 104 120 1 82 53 17 17 289 -1 unnamed_device 26.2 MiB 0.09 938 533 5300 1383 3886 31 65.0 MiB 0.03 0.00 2.62239 2.31609 -55.6676 -2.31609 2.31609 0.40 0.000222298 0.000201295 0.0137665 0.0125157 -1 -1 -1 -1 26 984 13 6.79088e+06 80832 503264. 1741.40 0.78 0.0639699 0.0555989 23662 119890 -1 857 9 250 286 17496 4537 2.26575 2.26575 -56.4256 -2.26575 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00698636 0.00635169 32 27 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_016bits.v common 2.79 vpr 65.06 MiB -1 -1 0.11 27596 7 0.07 -1 -1 35560 -1 -1 6 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66620 33 17 112 129 1 84 56 17 17 289 -1 unnamed_device 26.6 MiB 0.08 1000.8 565 4229 1044 3163 22 65.1 MiB 0.03 0.00 2.81732 2.65628 -62.4926 -2.65628 2.65628 0.40 0.000239066 0.000216509 0.0106806 0.00972326 -1 -1 -1 -1 26 1121 37 6.79088e+06 80832 503264. 1741.40 1.02 0.0813657 0.0699989 23662 119890 -1 972 11 318 432 28531 7125 2.44144 2.44144 -62.4806 -2.44144 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00763806 0.00686684 33 30 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_018bits.v common 3.27 vpr 64.61 MiB -1 -1 0.11 27428 7 0.07 -1 -1 35868 -1 -1 8 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66160 37 19 127 146 1 96 64 17 17 289 -1 unnamed_device 26.0 MiB 0.22 1238.41 391 4763 1112 3455 196 64.6 MiB 0.03 0.00 3.19324 2.69204 -65.8357 -2.69204 2.69204 0.40 0.000270927 0.000246905 0.0113116 0.0102254 -1 -1 -1 -1 30 931 18 6.79088e+06 107776 556674. 1926.21 1.33 0.0808537 0.07016 24526 138013 -1 701 10 313 391 17528 5253 2.56674 2.56674 -62.7264 -2.56674 0 0 706193. 2443.58 0.05 0.02 0.12 -1 -1 0.05 0.00827324 0.00750605 38 35 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_020bits.v common 2.82 vpr 64.79 MiB -1 -1 0.11 27232 8 0.07 -1 -1 35952 -1 -1 9 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66340 41 21 139 160 1 108 71 17 17 289 -1 unnamed_device 26.0 MiB 0.10 1264.98 678 4597 953 3629 15 64.8 MiB 0.03 0.00 3.73493 3.12177 -79.8332 -3.12177 3.12177 0.41 0.000312899 0.000287225 0.0110655 0.0101527 -1 -1 -1 -1 26 1414 16 6.79088e+06 121248 503264. 1741.40 0.99 0.0685123 0.060251 23662 119890 -1 1220 15 358 468 36946 9027 2.93499 2.93499 -83.7778 -2.93499 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.0112697 0.0101266 42 37 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_022bits.v common 3.03 vpr 64.87 MiB -1 -1 0.11 27420 9 0.07 -1 -1 35716 -1 -1 9 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66428 45 23 153 176 1 118 77 17 17 289 -1 unnamed_device 26.1 MiB 0.18 1490 677 4967 1008 3938 21 64.9 MiB 0.03 0.00 3.78403 3.32208 -92.5459 -3.32208 3.32208 0.41 0.000311491 0.000282733 0.0122898 0.0112561 -1 -1 -1 -1 26 1356 14 6.79088e+06 121248 503264. 1741.40 1.13 0.0836983 0.0733749 23662 119890 -1 1259 15 446 588 37798 9962 3.23255 3.23255 -94.3854 -3.23255 0 0 618332. 2139.56 0.04 0.03 0.11 -1 -1 0.04 0.0121174 0.0109102 45 41 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_024bits.v common 3.38 vpr 65.18 MiB -1 -1 0.11 27096 10 0.07 -1 -1 35904 -1 -1 10 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66740 49 25 166 191 1 129 84 17 17 289 -1 unnamed_device 26.2 MiB 0.25 1488 834 5208 1063 4126 19 65.2 MiB 0.03 0.00 3.96377 3.65114 -103.303 -3.65114 3.65114 0.41 0.000334029 0.000303268 0.0110197 0.0100257 -1 -1 -1 -1 26 1573 20 6.79088e+06 134720 503264. 1741.40 1.41 0.109374 0.0958038 23662 119890 -1 1418 19 502 625 43517 11128 3.6477 3.6477 -109.83 -3.6477 0 0 618332. 2139.56 0.04 0.03 0.11 -1 -1 0.04 0.0150678 0.0134222 48 44 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_028bits.v common 3.37 vpr 65.40 MiB -1 -1 0.12 27408 11 0.08 -1 -1 35860 -1 -1 12 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66968 57 29 198 227 1 154 98 17 17 289 -1 unnamed_device 26.2 MiB 0.30 1796.66 788 9773 2109 7630 34 65.4 MiB 0.05 0.00 4.87618 4.28888 -129.517 -4.28888 4.28888 0.42 0.000420311 0.000382576 0.019631 0.0178226 -1 -1 -1 -1 26 1732 20 6.79088e+06 161664 503264. 1741.40 1.26 0.131806 0.115239 23662 119890 -1 1537 16 656 843 50329 13399 3.94874 3.94874 -128.45 -3.94874 0 0 618332. 2139.56 0.04 0.03 0.11 -1 -1 0.04 0.0163888 0.0148158 57 56 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_032bits.v common 4.49 vpr 65.38 MiB -1 -1 0.12 27748 13 0.09 -1 -1 35904 -1 -1 11 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66952 65 33 224 257 1 173 109 17 17 289 -1 unnamed_device 26.0 MiB 0.25 2249.14 824 11549 2380 9144 25 65.4 MiB 0.06 0.00 5.41674 4.79024 -153.852 -4.79024 4.79024 0.40 0.000476039 0.000433341 0.0222546 0.0202325 -1 -1 -1 -1 52 1358 25 6.79088e+06 148192 926341. 3205.33 2.34 0.194783 0.171288 28558 226646 -1 1118 14 608 814 37253 11264 4.4893 4.4893 -141.658 -4.4893 0 0 1.14541e+06 3963.36 0.07 0.03 0.20 -1 -1 0.07 0.0164474 0.0148874 68 62 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_048bits.v common 4.12 vpr 66.62 MiB -1 -1 0.14 27372 19 0.11 -1 -1 36120 -1 -1 19 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68216 97 49 340 389 1 266 165 17 17 289 -1 unnamed_device 26.9 MiB 0.44 2911.57 1428 30901 7121 23730 50 66.6 MiB 0.13 0.00 7.67944 7.05294 -285.997 -7.05294 7.05294 0.41 0.000678931 0.000619643 0.0492377 0.0449458 -1 -1 -1 -1 28 3100 33 6.79088e+06 255968 531479. 1839.03 1.69 0.240242 0.214812 23950 126010 -1 2727 15 1109 1439 85761 22983 6.88844 6.88844 -288.19 -6.88844 0 0 648988. 2245.63 0.04 0.05 0.11 -1 -1 0.04 0.0257993 0.0235989 102 98 -1 -1 -1 -1 - fixed_k6_frac_N8_22nm.xml adder_064bits.v common 3.87 vpr 66.68 MiB -1 -1 0.15 27912 26 0.12 -1 -1 35700 -1 -1 25 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68280 129 65 453 518 1 343 219 17 17 289 -1 unnamed_device 27.1 MiB 0.65 4066.09 2073 52939 14226 38496 217 66.7 MiB 0.22 0.00 10.8223 10.3105 -504.98 -10.3105 10.3105 0.40 0.000922759 0.000823922 0.0781099 0.0714458 -1 -1 -1 -1 32 4150 45 6.79088e+06 336800 586450. 2029.24 0.94 0.234737 0.213066 24814 144142 -1 3571 27 1324 1787 220523 95893 9.684 9.684 -494.727 -9.684 0 0 744469. 2576.02 0.05 0.15 0.13 -1 -1 0.05 0.055311 0.0506 133 131 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 2.14 vpr 64.96 MiB -1 -1 0.09 26812 1 0.02 -1 -1 33548 -1 -1 2 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66524 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 26.7 MiB 0.04 202 61 376 69 287 20 65.0 MiB 0.00 0.00 1.11887 0.789073 -10.0989 -0.789073 0.789073 0.41 6.7444e-05 5.9558e-05 0.00159388 0.00140845 -1 -1 -1 -1 20 144 10 6.87369e+06 27947.7 414966. 1435.87 0.56 0.00614738 0.0053056 23170 95770 -1 115 11 54 54 2159 697 0.778073 0.778073 -10.2818 -0.778073 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00419809 0.00359699 10 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 2.38 vpr 64.88 MiB -1 -1 0.09 26792 1 0.02 -1 -1 33552 -1 -1 3 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66440 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 26.6 MiB 0.05 290 82 425 120 289 16 64.9 MiB 0.00 0.00 1.0737 0.811073 -12.7888 -0.811073 0.811073 0.41 8.1386e-05 7.2284e-05 0.00171148 0.0015212 -1 -1 -1 -1 20 206 11 6.87369e+06 41921.5 414966. 1435.87 0.79 0.0105479 0.00888006 23170 95770 -1 186 9 108 108 5742 1890 0.914373 0.914373 -14.3776 -0.914373 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00291948 0.00261245 13 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 2.53 vpr 64.88 MiB -1 -1 0.10 26724 1 0.02 -1 -1 33612 -1 -1 4 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66436 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 26.6 MiB 0.06 296 131 670 183 479 8 64.9 MiB 0.01 0.00 0.981892 0.834592 -16.5147 -0.834592 0.834592 0.40 9.1488e-05 8.0679e-05 0.00219213 0.00193742 -1 -1 -1 -1 22 293 10 6.87369e+06 55895.4 443629. 1535.05 0.92 0.0226271 0.0187501 23458 102101 -1 255 8 131 131 6734 2035 0.947373 0.947373 -17.9961 -0.947373 0 0 531479. 1839.03 0.03 0.01 0.09 -1 -1 0.03 0.00305585 0.00274345 15 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 2.55 vpr 64.89 MiB -1 -1 0.10 27280 1 0.02 -1 -1 33908 -1 -1 3 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66444 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 26.6 MiB 0.07 406 132 862 179 611 72 64.9 MiB 0.01 0.00 1.2044 1.2044 -18.4338 -1.2044 1.2044 0.40 0.000114202 0.000103325 0.0031572 0.00284964 -1 -1 -1 -1 26 305 22 6.87369e+06 41921.5 503264. 1741.40 0.90 0.0323769 0.0269404 24322 120374 -1 269 10 163 163 7604 2794 0.978373 0.978373 -20.2671 -0.978373 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00366354 0.00326048 16 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 2.41 vpr 64.64 MiB -1 -1 0.09 26768 1 0.02 -1 -1 33428 -1 -1 3 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66196 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 26.3 MiB 0.06 575 151 997 205 782 10 64.6 MiB 0.01 0.00 1.74531 1.2154 -20.8893 -1.2154 1.2154 0.41 0.000115246 0.000103488 0.00309901 0.0027905 -1 -1 -1 -1 22 365 12 6.87369e+06 41921.5 443629. 1535.05 0.79 0.0231198 0.019487 23458 102101 -1 329 11 141 141 8796 3127 1.12567 1.12567 -24.4688 -1.12567 0 0 531479. 1839.03 0.03 0.01 0.10 -1 -1 0.03 0.00418888 0.00371157 19 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 2.11 vpr 64.91 MiB -1 -1 0.10 26928 1 0.02 -1 -1 33412 -1 -1 3 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66464 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 26.6 MiB 0.07 605 213 1282 268 1005 9 64.9 MiB 0.01 0.00 1.68574 1.2264 -25.4266 -1.2264 1.2264 0.40 0.000129665 0.000117058 0.00390629 0.00353142 -1 -1 -1 -1 32 422 12 6.87369e+06 41921.5 586450. 2029.24 0.43 0.0191383 0.016399 25474 144626 -1 343 9 151 151 6889 2131 1.00037 1.00037 -26.4268 -1.00037 0 0 744469. 2576.02 0.05 0.01 0.13 -1 -1 0.05 0.00427014 0.00384558 20 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 2.57 vpr 64.99 MiB -1 -1 0.10 27072 1 0.02 -1 -1 33640 -1 -1 4 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66552 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 26.6 MiB 0.06 584 155 1865 423 1433 9 65.0 MiB 0.01 0.00 1.3077 1.2374 -26.5961 -1.2374 1.2374 0.40 0.000141738 0.000128342 0.00508838 0.00460704 -1 -1 -1 -1 26 412 14 6.87369e+06 55895.4 503264. 1741.40 0.93 0.0339949 0.02887 24322 120374 -1 391 9 194 194 11378 3996 1.10367 1.10367 -30.0363 -1.10367 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.0044581 0.00398437 22 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 2.14 vpr 64.92 MiB -1 -1 0.10 27268 1 0.02 -1 -1 33640 -1 -1 5 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66480 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 26.6 MiB 0.07 831 217 1672 376 1270 26 64.9 MiB 0.01 0.00 1.77831 1.2484 -30.3595 -1.2484 1.2484 0.42 0.000155546 0.000140084 0.00438631 0.00395259 -1 -1 -1 -1 30 451 29 6.87369e+06 69869.2 556674. 1926.21 0.43 0.0264883 0.0226951 25186 138497 -1 369 13 228 228 13360 4030 1.15867 1.15867 -31.6818 -1.15867 0 0 706193. 2443.58 0.05 0.01 0.12 -1 -1 0.05 0.00546985 0.00486941 24 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 2.51 vpr 65.00 MiB -1 -1 0.10 27132 1 0.02 -1 -1 33468 -1 -1 5 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66564 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 26.4 MiB 0.07 691 294 2518 571 1927 20 65.0 MiB 0.02 0.00 1.3847 1.2594 -34.7549 -1.2594 1.2594 0.42 0.000165923 0.000149492 0.00638727 0.00570484 -1 -1 -1 -1 26 568 17 6.87369e+06 69869.2 503264. 1741.40 0.81 0.0434351 0.0368808 24322 120374 -1 516 12 240 240 15287 4509 1.13667 1.13667 -36.3281 -1.13667 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00554 0.00495407 26 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 2.79 vpr 64.86 MiB -1 -1 0.10 27136 1 0.02 -1 -1 33444 -1 -1 5 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66412 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 26.4 MiB 0.07 835 334 2014 404 1594 16 64.9 MiB 0.01 0.00 1.3957 1.2704 -36.837 -1.2704 1.2704 0.40 0.000174363 0.000157405 0.0049633 0.00448703 -1 -1 -1 -1 26 675 16 6.87369e+06 69869.2 503264. 1741.40 1.10 0.0500894 0.0426201 24322 120374 -1 591 13 327 327 20575 5548 1.05537 1.05537 -38.3275 -1.05537 0 0 618332. 2139.56 0.04 0.02 0.12 -1 -1 0.04 0.00604448 0.00530516 28 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 2.17 vpr 65.28 MiB -1 -1 0.09 27256 1 0.02 -1 -1 33376 -1 -1 7 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66844 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 26.8 MiB 0.09 803 380 2119 374 1730 15 65.3 MiB 0.01 0.00 1.3737 1.2814 -40.3224 -1.2814 1.2814 0.41 0.000187508 0.000169844 0.00511405 0.00462846 -1 -1 -1 -1 30 700 15 6.87369e+06 97816.9 556674. 1926.21 0.44 0.0275946 0.0239488 25186 138497 -1 658 16 333 333 23997 6342 1.18067 1.18067 -43.6729 -1.18067 0 0 706193. 2443.58 0.04 0.02 0.12 -1 -1 0.04 0.00730527 0.0064467 31 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 2.19 vpr 65.30 MiB -1 -1 0.10 26852 1 0.02 -1 -1 33776 -1 -1 6 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66868 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 26.7 MiB 0.11 857 339 3023 613 2392 18 65.3 MiB 0.02 0.00 1.87033 1.65273 -42.4233 -1.65273 1.65273 0.41 0.000218769 0.000199484 0.00702713 0.0063684 -1 -1 -1 -1 30 688 18 6.87369e+06 83843 556674. 1926.21 0.44 0.0329451 0.028663 25186 138497 -1 636 12 337 337 18842 5309 1.08637 1.08637 -43.0226 -1.08637 0 0 706193. 2443.58 0.04 0.02 0.12 -1 -1 0.04 0.00666362 0.00593082 32 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 2.78 vpr 65.30 MiB -1 -1 0.10 27076 1 0.02 -1 -1 33544 -1 -1 6 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66864 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 26.6 MiB 0.10 919 522 3373 756 2605 12 65.3 MiB 0.02 0.00 1.81471 1.66373 -49.6024 -1.66373 1.66373 0.40 0.00022254 0.000202575 0.00758883 0.00689547 -1 -1 -1 -1 26 974 15 6.87369e+06 83843 503264. 1741.40 1.06 0.0642061 0.0548572 24322 120374 -1 920 13 412 412 32852 8175 1.20067 1.20067 -51.8391 -1.20067 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00739514 0.00658629 35 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 2.25 vpr 65.14 MiB -1 -1 0.11 27392 1 0.02 -1 -1 33420 -1 -1 7 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66704 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 26.6 MiB 0.10 1085 473 4813 963 3806 44 65.1 MiB 0.03 0.00 2.02863 1.68573 -54.907 -1.68573 1.68573 0.40 0.000236247 0.000211159 0.00995983 0.0090036 -1 -1 -1 -1 32 908 20 6.87369e+06 97816.9 586450. 2029.24 0.47 0.0396248 0.0344542 25474 144626 -1 814 13 380 380 27251 7117 1.23367 1.23367 -56.543 -1.23367 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00784198 0.00697981 38 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 2.69 vpr 65.32 MiB -1 -1 0.10 27184 1 0.02 -1 -1 33620 -1 -1 8 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66888 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 26.7 MiB 0.10 1190 488 7414 1621 5736 57 65.3 MiB 0.04 0.00 1.82651 1.70773 -60.6821 -1.70773 1.70773 0.40 0.00025838 0.000235896 0.0144019 0.0131162 -1 -1 -1 -1 28 1004 18 6.87369e+06 111791 531479. 1839.03 0.93 0.07341 0.0637497 24610 126494 -1 885 14 406 406 23831 6872 1.04437 1.04437 -58.0111 -1.04437 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00870359 0.00777648 42 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 2.79 vpr 65.54 MiB -1 -1 0.10 26756 1 0.02 -1 -1 33580 -1 -1 10 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67112 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1360 751 7714 1819 5826 69 65.5 MiB 0.04 0.00 2.07263 1.72973 -72.8945 -1.72973 1.72973 0.41 0.000280692 0.000252904 0.0140711 0.0127489 -1 -1 -1 -1 26 1436 19 6.87369e+06 139738 503264. 1741.40 0.98 0.0821237 0.0716264 24322 120374 -1 1311 14 595 595 58522 14370 1.18067 1.18067 -71.7749 -1.18067 0 0 618332. 2139.56 0.04 0.03 0.11 -1 -1 0.04 0.00957514 0.00850068 47 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.43 vpr 65.36 MiB -1 -1 0.10 26880 1 0.03 -1 -1 33912 -1 -1 9 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66928 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 26.4 MiB 0.11 1490 821 10523 2556 7932 35 65.4 MiB 0.06 0.00 2.14347 2.11206 -81.6144 -2.11206 2.11206 0.40 0.000305661 0.000276906 0.0200104 0.0182731 -1 -1 -1 -1 32 1377 15 6.87369e+06 125765 586450. 2029.24 1.36 0.107679 0.0940655 25474 144626 -1 1256 16 572 572 43501 10829 1.21637 1.21637 -76.4986 -1.21637 0 0 744469. 2576.02 0.05 0.03 0.13 -1 -1 0.05 0.0110997 0.00988207 51 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 3.21 vpr 65.65 MiB -1 -1 0.11 26880 1 0.03 -1 -1 33572 -1 -1 11 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67224 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 26.6 MiB 0.12 1881 1004 15415 4521 10841 53 65.6 MiB 0.07 0.00 2.28136 2.15606 -99.6446 -2.15606 2.15606 0.40 0.000363976 0.00033197 0.0253056 0.0230367 -1 -1 -1 -1 30 1693 20 6.87369e+06 153712 556674. 1926.21 1.34 0.108163 0.0949143 25186 138497 -1 1525 19 736 736 55175 12867 1.23837 1.23837 -90.4614 -1.23837 0 0 706193. 2443.58 0.05 0.03 0.12 -1 -1 0.05 0.0142782 0.0127068 58 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 3.11 vpr 65.92 MiB -1 -1 0.11 27580 1 0.03 -1 -1 33748 -1 -1 12 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67500 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 26.4 MiB 0.11 1889 864 14049 3132 10868 49 65.9 MiB 0.08 0.00 2.60703 2.56039 -107.25 -2.56039 2.56039 0.41 0.000402473 0.000366789 0.0224653 0.0205042 -1 -1 -1 -1 30 1643 17 6.87369e+06 167686 556674. 1926.21 1.23 0.1203 0.10598 25186 138497 -1 1457 18 708 708 43053 11811 1.30237 1.30237 -97.4969 -1.30237 0 0 706193. 2443.58 0.04 0.03 0.12 -1 -1 0.04 0.0165618 0.014814 67 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 4.04 vpr 66.56 MiB -1 -1 0.12 27600 1 0.03 -1 -1 33792 -1 -1 18 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68160 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 26.8 MiB 0.13 3015 1741 30180 7824 22280 76 66.6 MiB 0.15 0.00 3.73631 3.45705 -197.63 -3.45705 3.45705 0.40 0.000597407 0.00054806 0.0419496 0.038414 -1 -1 -1 -1 30 3019 41 6.87369e+06 251529 556674. 1926.21 2.01 0.216868 0.193472 25186 138497 -1 2657 17 1114 1114 90582 21310 1.51837 1.51837 -158.493 -1.51837 0 0 706193. 2443.58 0.04 0.05 0.12 -1 -1 0.04 0.0221376 0.0199738 99 2 -1 -1 -1 -1 - fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 4.75 vpr 66.93 MiB -1 -1 0.13 27756 1 0.03 -1 -1 33876 -1 -1 24 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68536 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 27.3 MiB 0.14 4338 2033 54583 15429 38927 227 66.9 MiB 0.29 0.01 4.60432 4.35372 -280.747 -4.35372 4.35372 0.40 0.000853366 0.000785922 0.0702034 0.0644175 -1 -1 -1 -1 32 3647 19 6.87369e+06 335372 586450. 2029.24 2.50 0.329703 0.297589 25474 144626 -1 3236 16 1312 1312 114930 29175 1.70137 1.70137 -211.259 -1.70137 0 0 744469. 2576.02 0.05 0.08 0.13 -1 -1 0.05 0.0297449 0.0271878 131 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 1.83 vpr 64.76 MiB -1 -1 0.09 26792 1 0.02 -1 -1 33556 -1 -1 2 9 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66312 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 26.4 MiB 0.04 202 61 376 69 287 20 64.8 MiB 0.00 0.00 1.11887 0.789073 -10.1411 -0.789073 0.789073 0.40 8.0259e-05 7.1652e-05 0.0018382 0.00163922 -1 -1 -1 -1 20 145 10 6.89349e+06 28187.7 414966. 1435.87 0.28 0.00481465 0.00427081 23170 95770 -1 112 5 41 41 1881 632 0.66572 0.66572 -10.0933 -0.66572 0 0 503264. 1741.40 0.03 0.00 0.09 -1 -1 0.03 0.0021355 0.00192989 10 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 2.50 vpr 64.47 MiB -1 -1 0.09 26852 1 0.02 -1 -1 33560 -1 -1 3 11 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66020 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 26.1 MiB 0.05 290 102 425 105 310 10 64.5 MiB 0.00 0.00 1.0737 0.817273 -13.6452 -0.817273 0.817273 0.41 8.3356e-05 7.4317e-05 0.00170886 0.00152722 -1 -1 -1 -1 26 196 7 6.89349e+06 42281.5 503264. 1741.40 0.88 0.022532 0.0185461 24322 120374 -1 174 12 100 100 4644 1674 0.925373 0.925373 -14.0649 -0.925373 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00317623 0.00280456 13 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 2.63 vpr 64.69 MiB -1 -1 0.09 27256 1 0.02 -1 -1 33368 -1 -1 4 13 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66240 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 26.4 MiB 0.05 296 212 500 104 384 12 64.7 MiB 0.00 0.00 0.981892 0.833073 -17.8028 -0.833073 0.833073 0.40 8.9308e-05 7.9245e-05 0.00172904 0.00154777 -1 -1 -1 -1 26 391 14 6.89349e+06 56375.4 503264. 1741.40 1.02 0.0271226 0.0224467 24322 120374 -1 362 10 118 118 8816 2234 0.947373 0.947373 -19.7503 -0.947373 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00315786 0.00281068 15 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 2.76 vpr 64.70 MiB -1 -1 0.10 27272 1 0.02 -1 -1 33488 -1 -1 3 15 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66248 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 26.2 MiB 0.06 406 130 862 175 636 51 64.7 MiB 0.01 0.00 1.2044 1.2044 -18.3651 -1.2044 1.2044 0.40 0.000104568 9.3589e-05 0.00282353 0.00253455 -1 -1 -1 -1 28 304 26 6.89349e+06 42281.5 531479. 1839.03 1.07 0.0339644 0.0282893 24610 126494 -1 269 15 190 190 9605 3276 1.08167 1.08167 -20.4176 -1.08167 0 0 648988. 2245.63 0.04 0.01 0.11 -1 -1 0.04 0.00437925 0.00382267 16 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 2.06 vpr 65.09 MiB -1 -1 0.09 27176 1 0.02 -1 -1 33464 -1 -1 3 17 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66656 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 26.6 MiB 0.06 575 150 1041 206 804 31 65.1 MiB 0.01 0.00 1.74531 1.2154 -21.4013 -1.2154 1.2154 0.41 0.000117634 0.000105644 0.0032202 0.00289229 -1 -1 -1 -1 26 322 14 6.89349e+06 42281.5 503264. 1741.40 0.38 0.0175839 0.0149169 24322 120374 -1 272 11 173 173 8245 2807 0.995573 0.995573 -21.0466 -0.995573 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00404916 0.003594 19 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.46 vpr 64.78 MiB -1 -1 0.09 26916 1 0.02 -1 -1 33824 -1 -1 3 19 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66336 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 26.4 MiB 0.06 605 330 1632 400 1225 7 64.8 MiB 0.01 0.00 1.61974 1.2264 -27.2842 -1.2264 1.2264 0.41 0.00012806 0.000115717 0.0046738 0.00423213 -1 -1 -1 -1 20 579 15 6.89349e+06 42281.5 414966. 1435.87 0.82 0.019537 0.0167292 23170 95770 -1 551 11 215 215 15846 4184 1.11467 1.11467 -30.8645 -1.11467 0 0 503264. 1741.40 0.03 0.01 0.09 -1 -1 0.03 0.00447799 0.00396703 20 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 2.61 vpr 64.66 MiB -1 -1 0.10 27036 1 0.02 -1 -1 33368 -1 -1 4 21 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66208 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 26.2 MiB 0.06 584 150 1688 358 1321 9 64.7 MiB 0.01 0.00 1.2445 1.2374 -26.4203 -1.2374 1.2374 0.41 0.000140675 0.000127016 0.00458907 0.00415533 -1 -1 -1 -1 26 380 13 6.89349e+06 56375.4 503264. 1741.40 0.94 0.032658 0.0275913 24322 120374 -1 366 18 272 272 16159 5569 1.13667 1.13667 -30.6122 -1.13667 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.0064782 0.00560703 22 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 2.15 vpr 64.66 MiB -1 -1 0.09 26960 1 0.02 -1 -1 33640 -1 -1 5 23 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66212 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 26.2 MiB 0.06 831 211 1536 323 1191 22 64.7 MiB 0.01 0.00 1.77831 1.2484 -30.439 -1.2484 1.2484 0.40 0.000152433 0.000138008 0.00417168 0.00377754 -1 -1 -1 -1 26 543 26 6.89349e+06 70469.2 503264. 1741.40 0.47 0.0266939 0.0228202 24322 120374 -1 446 18 290 290 22837 6844 1.15387 1.15387 -33.7585 -1.15387 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00711642 0.00620024 24 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 2.45 vpr 64.66 MiB -1 -1 0.10 26720 1 0.02 -1 -1 33440 -1 -1 5 25 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66216 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 26.2 MiB 0.06 691 304 2068 461 1592 15 64.7 MiB 0.01 0.00 1.3847 1.2594 -34.5124 -1.2594 1.2594 0.41 0.000162052 0.000145563 0.0052682 0.00475472 -1 -1 -1 -1 26 608 12 6.89349e+06 70469.2 503264. 1741.40 0.79 0.0430604 0.0367872 24322 120374 -1 559 15 257 257 21580 5845 1.13667 1.13667 -36.4592 -1.13667 0 0 618332. 2139.56 0.04 0.02 0.11 -1 -1 0.04 0.00636743 0.00560648 26 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.08 vpr 65.50 MiB -1 -1 0.10 27224 1 0.02 -1 -1 33624 -1 -1 5 27 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67076 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 26.8 MiB 0.06 835 254 2670 555 2073 42 65.5 MiB 0.02 0.00 1.3957 1.2704 -36.2399 -1.2704 1.2704 0.41 0.000203848 0.000186278 0.00687329 0.006247 -1 -1 -1 -1 34 653 20 6.89349e+06 70469.2 618332. 2139.56 1.35 0.0578447 0.0492297 25762 151098 -1 514 21 409 409 24368 7555 1.18697 1.18697 -36.7517 -1.18697 0 0 787024. 2723.27 0.05 0.02 0.14 -1 -1 0.05 0.00838442 0.00726493 28 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 2.97 vpr 64.82 MiB -1 -1 0.10 27008 1 0.02 -1 -1 33568 -1 -1 7 29 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66372 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 26.4 MiB 0.07 803 386 1931 338 1578 15 64.8 MiB 0.01 0.00 1.2814 1.2814 -40.4965 -1.2814 1.2814 0.40 0.000186265 0.00016916 0.00452151 0.0041095 -1 -1 -1 -1 30 732 19 6.89349e+06 98656.9 556674. 1926.21 1.20 0.0580007 0.0495359 25186 138497 -1 631 17 321 321 19691 5369 1.06637 1.06637 -41.9394 -1.06637 0 0 706193. 2443.58 0.04 0.02 0.12 -1 -1 0.04 0.00761822 0.00670553 31 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 2.88 vpr 65.41 MiB -1 -1 0.10 26852 1 0.02 -1 -1 33396 -1 -1 6 31 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66984 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 26.6 MiB 0.09 857 339 3320 743 2543 34 65.4 MiB 0.02 0.00 1.74698 1.65273 -42.7928 -1.65273 1.65273 0.41 0.000198415 0.000179717 0.00745269 0.00675628 -1 -1 -1 -1 28 710 15 6.89349e+06 84563 531479. 1839.03 1.09 0.0624857 0.053552 24610 126494 -1 648 15 392 392 23306 7105 1.08637 1.08637 -43.7744 -1.08637 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00736333 0.00649972 32 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 3.09 vpr 65.40 MiB -1 -1 0.10 26992 1 0.02 -1 -1 33376 -1 -1 6 33 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66972 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 26.6 MiB 0.09 919 520 3159 675 2467 17 65.4 MiB 0.02 0.00 1.74337 1.66373 -49.569 -1.66373 1.66373 0.40 0.000212997 0.000193697 0.00722466 0.00659204 -1 -1 -1 -1 32 921 12 6.89349e+06 84563 586450. 2029.24 1.28 0.0654632 0.0561299 25474 144626 -1 849 15 394 394 29008 7520 1.21167 1.21167 -51.6081 -1.21167 0 0 744469. 2576.02 0.05 0.02 0.13 -1 -1 0.05 0.00773705 0.00684595 35 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 2.58 vpr 65.11 MiB -1 -1 0.10 26912 1 0.02 -1 -1 33576 -1 -1 7 37 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66672 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 26.4 MiB 0.09 1085 462 3563 697 2835 31 65.1 MiB 0.02 0.00 1.90528 1.68573 -54.3301 -1.68573 1.68573 0.40 0.000245939 0.000224227 0.00805409 0.0072746 -1 -1 -1 -1 28 1006 15 6.89349e+06 98656.9 531479. 1839.03 0.85 0.0623323 0.0535119 24610 126494 -1 852 16 430 430 37067 9697 1.23367 1.23367 -56.4216 -1.23367 0 0 648988. 2245.63 0.04 0.02 0.11 -1 -1 0.04 0.00872 0.00770082 38 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 2.94 vpr 65.20 MiB -1 -1 0.10 27184 1 0.02 -1 -1 33376 -1 -1 8 41 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66768 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 26.5 MiB 0.09 1190 482 5830 1288 4486 56 65.2 MiB 0.03 0.00 1.82651 1.70773 -60.8378 -1.70773 1.70773 0.40 0.000255038 0.000231702 0.0112889 0.0102597 -1 -1 -1 -1 26 1048 37 6.89349e+06 112751 503264. 1741.40 1.19 0.0898533 0.0775512 24322 120374 -1 942 19 559 559 54255 17107 1.06157 1.06157 -58.9046 -1.06157 0 0 618332. 2139.56 0.04 0.03 0.11 -1 -1 0.04 0.0114055 0.0100056 42 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 3.48 vpr 65.21 MiB -1 -1 0.10 27360 1 0.03 -1 -1 33536 -1 -1 10 45 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66776 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1360 734 7714 1785 5875 54 65.2 MiB 0.04 0.00 1.94928 1.72973 -72.825 -1.72973 1.72973 0.41 0.000293116 0.000265179 0.0143555 0.0130022 -1 -1 -1 -1 28 1405 40 6.89349e+06 140938 531479. 1839.03 1.38 0.101306 0.088018 24610 126494 -1 1258 14 552 552 50164 12015 1.20887 1.20887 -70.4392 -1.20887 0 0 648988. 2245.63 0.04 0.03 0.11 -1 -1 0.04 0.0101411 0.00906913 47 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 2.94 vpr 65.17 MiB -1 -1 0.10 27388 1 0.02 -1 -1 33968 -1 -1 9 49 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 66736 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1490 803 8183 1851 6287 45 65.2 MiB 0.05 0.00 2.11206 2.11206 -80.352 -2.11206 2.11206 0.42 0.000303106 0.000274626 0.0150547 0.0137113 -1 -1 -1 -1 30 1425 15 6.89349e+06 126845 556674. 1926.21 1.13 0.0878867 0.07675 25186 138497 -1 1260 16 562 562 52506 12553 1.23367 1.23367 -76.1741 -1.23367 0 0 706193. 2443.58 0.04 0.03 0.12 -1 -1 0.04 0.0114885 0.0102447 51 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 2.38 vpr 65.93 MiB -1 -1 0.10 27608 1 0.03 -1 -1 33436 -1 -1 11 57 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67508 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 26.6 MiB 0.10 1881 873 10531 2777 7722 32 65.9 MiB 0.06 0.00 2.28136 2.15606 -94.1846 -2.15606 2.15606 0.40 0.000345512 0.000314455 0.0202776 0.0184282 -1 -1 -1 -1 32 1617 20 6.89349e+06 155032 586450. 2029.24 0.52 0.0629351 0.0555792 25474 144626 -1 1421 17 622 622 49859 12249 1.40297 1.40297 -90.1623 -1.40297 0 0 744469. 2576.02 0.06 0.03 0.13 -1 -1 0.06 0.0129868 0.0115677 58 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 2.35 vpr 65.76 MiB -1 -1 0.11 27344 1 0.03 -1 -1 33668 -1 -1 12 65 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67340 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 26.4 MiB 0.10 1889 889 10367 2242 8099 26 65.8 MiB 0.07 0.00 2.56039 2.56039 -107.891 -2.56039 2.56039 0.40 0.000404652 0.000369932 0.0181495 0.0165787 -1 -1 -1 -1 32 1700 14 6.89349e+06 169126 586450. 2029.24 0.50 0.0621826 0.0550274 25474 144626 -1 1511 14 595 595 40700 11168 1.42767 1.42767 -101.882 -1.42767 0 0 744469. 2576.02 0.05 0.03 0.13 -1 -1 0.05 0.012918 0.011549 67 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 3.71 vpr 66.00 MiB -1 -1 0.12 27392 1 0.03 -1 -1 33756 -1 -1 18 97 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 67588 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 26.6 MiB 0.11 3015 1726 30180 7766 22332 82 66.0 MiB 0.16 0.00 3.61296 3.45705 -196.695 -3.45705 3.45705 0.40 0.000589924 0.00054083 0.0424984 0.0388597 -1 -1 -1 -1 30 2905 16 6.89349e+06 253689 556674. 1926.21 1.71 0.186958 0.166971 25186 138497 -1 2596 11 981 981 87110 20352 1.53567 1.53567 -161.057 -1.53567 0 0 706193. 2443.58 0.04 0.04 0.12 -1 -1 0.04 0.0163267 0.0147962 99 2 -1 -1 -1 -1 - fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 2.84 vpr 66.93 MiB -1 -1 0.12 27172 1 0.03 -1 -1 34012 -1 -1 24 129 0 0 success 5160a12-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-06-17T12:01:36 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 68532 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 27.4 MiB 0.13 4338 2052 54583 15551 38793 239 66.9 MiB 0.28 0.01 4.60432 4.35372 -281.423 -4.35372 4.35372 0.40 0.000790186 0.0007262 0.0690226 0.0633938 -1 -1 -1 -1 32 3753 22 6.89349e+06 338252 586450. 2029.24 0.64 0.170161 0.154533 25474 144626 -1 3118 15 1200 1200 99459 24957 1.70137 1.70137 -208.261 -1.70137 0 0 744469. 2576.02 0.05 0.06 0.13 -1 -1 0.05 0.0289442 0.0265031 131 2 -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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.68 vpr 66.27 MiB -1 -1 0.09 28172 2 0.06 -1 -1 35588 -1 -1 2 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67864 9 5 28 33 1 17 16 17 17 289 -1 unnamed_device 27.9 MiB 0.01 181.662 52 956 319 616 21 66.3 MiB 0.01 0.00 1.23151 1.11131 -9.88502 -1.11131 1.11131 0.65 0.000112286 8.2969e-05 0.00537242 0.00422818 -1 -1 -1 -1 20 116 17 6.55708e+06 24110 394039. 1363.46 0.42 0.0104458 0.0084878 19870 87366 -1 106 8 45 57 1816 696 0.991107 0.991107 -9.81633 -0.991107 0 0 477104. 1650.88 0.03 0.00 0.10 -1 -1 0.03 0.00204004 0.00179589 13 6 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.32 vpr 65.91 MiB -1 -1 0.08 27948 2 0.04 -1 -1 35932 -1 -1 2 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67488 11 6 34 40 1 20 19 17 17 289 -1 unnamed_device 27.6 MiB 0.01 228.414 64 1519 537 918 64 65.9 MiB 0.02 0.00 1.15051 1.15051 -12.3024 -1.15051 1.15051 0.73 0.000137905 0.00011182 0.00841372 0.00683096 -1 -1 -1 -1 26 161 14 6.55708e+06 24110 477104. 1650.88 1.17 0.0324458 0.0255206 21022 109990 -1 139 4 34 38 1716 607 1.03031 1.03031 -12.7832 -1.03031 0 0 585099. 2024.56 0.04 0.01 0.14 -1 -1 0.04 0.00288416 0.00261369 16 7 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.58 vpr 65.89 MiB -1 -1 0.12 28268 3 0.07 -1 -1 35552 -1 -1 3 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67472 13 7 41 48 1 27 23 17 17 289 -1 unnamed_device 27.5 MiB 0.01 294.159 121 2167 863 1288 16 65.9 MiB 0.03 0.00 1.46991 1.34971 -15.7796 -1.34971 1.34971 0.73 0.000146076 0.000114912 0.0105607 0.00855985 -1 -1 -1 -1 26 237 9 6.55708e+06 36165 477104. 1650.88 1.32 0.0406461 0.0325053 21022 109990 -1 217 9 73 97 3868 1262 1.22951 1.22951 -16.2687 -1.22951 0 0 585099. 2024.56 0.06 0.01 0.16 -1 -1 0.06 0.0043397 0.00379911 19 9 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_007bits.v common 3.65 vpr 66.06 MiB -1 -1 0.13 28016 3 0.07 -1 -1 35624 -1 -1 4 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67644 15 8 47 55 1 35 27 17 17 289 -1 unnamed_device 27.8 MiB 0.02 381 130 2307 826 1469 12 66.1 MiB 0.02 0.00 1.47191 1.23151 -17.7616 -1.23151 1.23151 0.64 0.000157183 0.000126499 0.00968898 0.00783595 -1 -1 -1 -1 26 303 24 6.55708e+06 48220 477104. 1650.88 1.37 0.0503705 0.0402338 21022 109990 -1 249 16 163 221 7014 2820 1.25905 1.25905 -18.5343 -1.25905 0 0 585099. 2024.56 0.05 0.02 0.17 -1 -1 0.05 0.00651012 0.00553395 23 10 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.04 vpr 66.20 MiB -1 -1 0.13 28400 3 0.07 -1 -1 35644 -1 -1 6 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67788 17 9 56 65 1 37 32 17 17 289 -1 unnamed_device 27.8 MiB 0.02 454.573 155 3282 1224 2021 37 66.2 MiB 0.04 0.00 1.59011 1.59011 -22.3808 -1.59011 1.59011 0.68 0.000189417 0.000154131 0.0176389 0.0152055 -1 -1 -1 -1 20 345 9 6.55708e+06 72330 394039. 1363.46 0.74 0.0271681 0.0231341 19870 87366 -1 315 9 127 163 7534 2571 1.59011 1.59011 -23.4423 -1.59011 0 0 477104. 1650.88 0.03 0.01 0.11 -1 -1 0.03 0.00335695 0.00291843 26 14 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.12 vpr 65.92 MiB -1 -1 0.13 28268 4 0.08 -1 -1 35516 -1 -1 6 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67504 19 10 60 70 1 46 35 17 17 289 -1 unnamed_device 27.6 MiB 0.04 551.401 201 3626 1513 2089 24 65.9 MiB 0.04 0.00 1.91917 1.83817 -26.447 -1.83817 1.83817 0.74 0.000201988 0.000163299 0.0133926 0.0108708 -1 -1 -1 -1 22 490 11 6.55708e+06 72330 420624. 1455.45 0.56 0.0438453 0.0371184 20158 92377 -1 478 14 188 244 11506 3493 1.91917 1.91917 -29.7316 -1.91917 0 0 500653. 1732.36 0.04 0.01 0.10 -1 -1 0.04 0.0052075 0.00455216 29 13 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.15 vpr 66.20 MiB -1 -1 0.13 28144 4 0.08 -1 -1 35436 -1 -1 7 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67788 21 11 69 80 1 45 39 17 17 289 -1 unnamed_device 27.8 MiB 0.03 514.656 169 4989 2039 2921 29 66.2 MiB 0.05 0.00 1.95837 1.97554 -28.826 -1.97554 1.97554 0.82 0.000235399 0.000192401 0.0201262 0.0164851 -1 -1 -1 -1 26 367 8 6.55708e+06 84385 477104. 1650.88 1.43 0.0555959 0.0454023 21022 109990 -1 365 9 147 197 8499 2908 1.83817 1.83817 -29.2087 -1.83817 0 0 585099. 2024.56 0.04 0.01 0.13 -1 -1 0.04 0.00455736 0.00403885 33 17 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_011bits.v common 3.20 vpr 66.30 MiB -1 -1 0.13 28400 5 0.07 -1 -1 35712 -1 -1 7 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67888 23 12 76 88 1 52 42 17 17 289 -1 unnamed_device 27.8 MiB 0.03 588.815 322 6378 2937 3408 33 66.3 MiB 0.07 0.00 2.51816 2.27776 -35.0029 -2.27776 2.27776 0.73 0.000256222 0.000199708 0.0253045 0.0210593 -1 -1 -1 -1 26 525 10 6.55708e+06 84385 477104. 1650.88 0.61 0.052112 0.0429442 21022 109990 -1 500 8 145 193 9827 2835 2.27776 2.27776 -35.7344 -2.27776 0 0 585099. 2024.56 0.05 0.01 0.22 -1 -1 0.05 0.00642043 0.00568237 36 19 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.48 vpr 66.17 MiB -1 -1 0.14 28392 5 0.07 -1 -1 35608 -1 -1 8 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67760 25 13 83 96 1 61 46 17 17 289 -1 unnamed_device 27.5 MiB 0.04 688.159 273 5376 2031 3316 29 66.2 MiB 0.05 0.00 2.4667 2.1433 -37.8742 -2.1433 2.1433 0.70 0.000262259 0.000211946 0.0190894 0.0152923 -1 -1 -1 -1 26 639 14 6.55708e+06 96440 477104. 1650.88 1.75 0.0872969 0.0703932 21022 109990 -1 506 10 200 268 13321 3930 2.0231 2.0231 -38.4296 -2.0231 0 0 585099. 2024.56 0.07 0.02 0.17 -1 -1 0.07 0.00748217 0.00652404 39 21 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.41 vpr 66.15 MiB -1 -1 0.13 28292 5 0.07 -1 -1 35544 -1 -1 10 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67736 27 14 91 105 1 72 51 17 17 289 -1 unnamed_device 27.6 MiB 0.03 1020.8 484 9263 4520 4704 39 66.1 MiB 0.08 0.00 3.51896 2.31696 -45.5986 -2.31696 2.31696 0.66 0.00035164 0.00030148 0.0307335 0.0251719 -1 -1 -1 -1 26 842 10 6.55708e+06 120550 477104. 1650.88 1.77 0.113092 0.0864569 21022 109990 -1 766 15 209 329 15203 4314 2.1851 2.1851 -46.4996 -2.1851 0 0 585099. 2024.56 0.06 0.03 0.17 -1 -1 0.06 0.0128496 0.0113293 44 24 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.96 vpr 66.42 MiB -1 -1 0.13 28272 6 0.08 -1 -1 35788 -1 -1 10 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68012 29 15 95 110 1 74 54 17 17 289 -1 unnamed_device 27.9 MiB 0.04 910.541 307 7806 3502 4265 39 66.4 MiB 0.07 0.00 3.24502 2.94079 -47.646 -2.94079 2.94079 0.73 0.000311072 0.000258468 0.0250685 0.0204292 -1 -1 -1 -1 28 740 13 6.55708e+06 120550 500653. 1732.36 2.14 0.106029 0.0861753 21310 115450 -1 580 11 277 432 19930 6373 2.88442 2.88442 -47.8887 -2.88442 0 0 612192. 2118.31 0.08 0.03 0.18 -1 -1 0.08 0.00950459 0.00821044 46 23 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_015bits.v common 3.81 vpr 66.20 MiB -1 -1 0.13 28268 6 0.08 -1 -1 35828 -1 -1 10 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67784 31 16 104 120 1 74 57 17 17 289 -1 unnamed_device 27.6 MiB 0.03 929.146 329 8123 3603 4465 55 66.2 MiB 0.07 0.00 3.11716 2.39596 -47.7491 -2.39596 2.39596 0.70 0.00032713 0.000268256 0.0259205 0.0212833 -1 -1 -1 -1 26 821 19 6.55708e+06 120550 477104. 1650.88 0.86 0.0798435 0.06791 21022 109990 -1 650 9 249 327 18399 5773 2.15556 2.15556 -48.4598 -2.15556 0 0 585099. 2024.56 0.09 0.03 0.25 -1 -1 0.09 0.0133822 0.0122874 50 27 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.18 vpr 66.33 MiB -1 -1 0.13 28784 7 0.09 -1 -1 35616 -1 -1 10 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67924 33 17 112 129 1 80 60 17 17 289 -1 unnamed_device 27.8 MiB 0.04 1032.56 337 8367 3655 4661 51 66.3 MiB 0.10 0.00 3.56842 2.96742 -55.3954 -2.96742 2.96742 0.76 0.000354843 0.000291192 0.0324599 0.0276373 -1 -1 -1 -1 22 855 25 6.55708e+06 120550 420624. 1455.45 1.42 0.108345 0.0863642 20158 92377 -1 699 13 276 369 21813 6969 2.84722 2.84722 -56.6032 -2.84722 0 0 500653. 1732.36 0.05 0.03 0.15 -1 -1 0.05 0.0118806 0.010346 54 30 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.44 vpr 66.32 MiB -1 -1 0.14 28528 7 0.08 -1 -1 35620 -1 -1 13 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67916 37 19 127 146 1 95 69 17 17 289 -1 unnamed_device 27.5 MiB 0.03 1277.96 487 10926 4682 6194 50 66.3 MiB 0.10 0.00 3.75372 2.82259 -64.0365 -2.82259 2.82259 0.76 0.000463582 0.000372781 0.0331604 0.0272644 -1 -1 -1 -1 26 1072 42 6.55708e+06 156715 477104. 1650.88 1.02 0.106056 0.088647 21022 109990 -1 900 9 322 464 24435 7053 2.59256 2.59256 -64.3808 -2.59256 0 0 585099. 2024.56 0.06 0.03 0.20 -1 -1 0.06 0.0120454 0.0107508 63 35 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.13 vpr 66.66 MiB -1 -1 0.11 28224 8 0.08 -1 -1 35584 -1 -1 14 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68264 41 21 139 160 1 106 76 17 17 289 -1 unnamed_device 27.8 MiB 0.05 1282.64 619 13676 5042 8588 46 66.7 MiB 0.13 0.00 3.22876 3.15236 -77.1546 -3.15236 3.15236 0.63 0.000451198 0.000375733 0.0396901 0.032243 -1 -1 -1 -1 30 1091 13 6.55708e+06 168770 526063. 1820.29 0.69 0.0890569 0.0731461 21886 126133 -1 980 11 314 442 22306 6003 3.15236 3.15236 -76.8452 -3.15236 0 0 666494. 2306.21 0.06 0.03 0.20 -1 -1 0.06 0.0127054 0.0111096 67 37 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_022bits.v common 5.22 vpr 66.73 MiB -1 -1 0.14 28396 9 0.10 -1 -1 35900 -1 -1 15 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68332 45 23 153 176 1 107 83 17 17 289 -1 unnamed_device 27.8 MiB 0.05 1187.59 435 11063 4313 6720 30 66.7 MiB 0.17 0.00 4.41348 3.84682 -84.3166 -3.84682 3.84682 0.77 0.000471134 0.000386062 0.0406583 0.0345793 -1 -1 -1 -1 28 1203 34 6.55708e+06 180825 500653. 1732.36 2.34 0.175717 0.144683 21310 115450 -1 874 16 422 653 32714 10806 3.73148 3.73148 -86.9112 -3.73148 0 0 612192. 2118.31 0.06 0.05 0.23 -1 -1 0.06 0.0183905 0.0160247 73 41 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.41 vpr 66.55 MiB -1 -1 0.14 28272 10 0.10 -1 -1 35652 -1 -1 15 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68144 49 25 166 191 1 117 89 17 17 289 -1 unnamed_device 27.5 MiB 0.05 1428.46 516 16721 7605 9068 48 66.5 MiB 0.18 0.00 4.79651 4.39911 -98.3057 -4.39911 4.39911 0.76 0.000617107 0.000526755 0.047023 0.038921 -1 -1 -1 -1 26 1051 11 6.55708e+06 180825 477104. 1650.88 1.50 0.164979 0.134337 21022 109990 -1 1039 12 370 543 25245 7816 4.02134 4.02134 -98.0964 -4.02134 0 0 585099. 2024.56 0.08 0.04 0.23 -1 -1 0.08 0.0184457 0.0161304 78 44 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.48 vpr 67.09 MiB -1 -1 0.15 28272 11 0.10 -1 -1 35428 -1 -1 19 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68704 57 29 198 227 1 147 105 17 17 289 -1 unnamed_device 27.8 MiB 0.07 1847.69 734 19865 9119 10698 48 67.1 MiB 0.16 0.00 5.31651 4.78174 -131.613 -4.78174 4.78174 0.78 0.000637488 0.000519924 0.0524071 0.04289 -1 -1 -1 -1 26 1354 14 6.55708e+06 229045 477104. 1650.88 1.84 0.2161 0.176642 21022 109990 -1 1278 11 471 677 35365 10550 4.66154 4.66154 -133.02 -4.66154 0 0 585099. 2024.56 0.06 0.04 0.16 -1 -1 0.06 0.0210989 0.0189909 93 56 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_032bits.v common 4.22 vpr 67.21 MiB -1 -1 0.16 28396 13 0.11 -1 -1 36080 -1 -1 20 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68824 65 33 224 257 1 164 118 17 17 289 -1 unnamed_device 27.8 MiB 0.07 2018.04 839 22660 9919 12671 70 67.2 MiB 0.18 0.00 5.97774 5.49694 -154.543 -5.49694 5.49694 0.67 0.000742028 0.000612855 0.0629668 0.0529892 -1 -1 -1 -1 26 1649 12 6.55708e+06 241100 477104. 1650.88 1.67 0.220385 0.184785 21022 109990 -1 1560 12 482 674 36949 10431 5.29574 5.29574 -156.883 -5.29574 0 0 585099. 2024.56 0.04 0.03 0.14 -1 -1 0.04 0.0125085 0.0108999 107 62 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_048bits.v common 4.30 vpr 67.88 MiB -1 -1 0.19 28656 19 0.11 -1 -1 36064 -1 -1 35 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69508 97 49 340 389 1 260 181 17 17 289 -1 unnamed_device 28.5 MiB 0.13 3514.81 1508 46171 22403 23691 77 67.9 MiB 0.38 0.00 9.15145 7.34845 -290.689 -7.34845 7.34845 0.83 0.00106455 0.000867624 0.104612 0.0867719 -1 -1 -1 -1 28 2903 21 6.55708e+06 421925 500653. 1732.36 1.01 0.25185 0.214785 21310 115450 -1 2600 12 737 1094 66803 17960 6.86765 6.86765 -283.901 -6.86765 0 0 612192. 2118.31 0.05 0.07 0.18 -1 -1 0.05 0.0299005 0.0263989 165 98 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.71 vpr 68.60 MiB -1 -1 0.19 29168 26 0.15 -1 -1 35904 -1 -1 41 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70244 129 65 453 518 1 334 235 17 17 289 -1 unnamed_device 29.0 MiB 0.13 4217.4 1831 67567 31472 36007 88 68.6 MiB 0.55 0.01 12.4295 10.6093 -483.84 -10.6093 10.6093 0.68 0.00144185 0.00119677 0.148757 0.124876 -1 -1 -1 -1 30 3295 24 6.55708e+06 494255 526063. 1820.29 1.15 0.336117 0.285791 21886 126133 -1 2908 11 812 1038 63146 16982 9.75074 9.75074 -459.415 -9.75074 0 0 666494. 2306.21 0.06 0.08 0.21 -1 -1 0.06 0.0376662 0.0333278 210 131 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.51 abc 32.57 MiB -1 -1 0.12 28228 1 0.02 -1 -1 33352 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28252 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.50 abc 32.65 MiB -1 -1 0.12 28028 1 0.02 -1 -1 33432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28128 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.52 abc 32.87 MiB -1 -1 0.12 28100 1 0.03 -1 -1 33656 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28252 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.56 abc 32.90 MiB -1 -1 0.13 28100 1 0.03 -1 -1 33692 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28380 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.63 abc 32.93 MiB -1 -1 0.12 28100 1 0.03 -1 -1 33720 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28512 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.53 abc 32.60 MiB -1 -1 0.13 28096 1 0.03 -1 -1 33384 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28384 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.65 abc 32.26 MiB -1 -1 0.13 28096 1 0.03 -1 -1 33032 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28432 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.58 abc 32.84 MiB -1 -1 0.12 28352 1 0.02 -1 -1 33628 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28508 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.57 abc 32.94 MiB -1 -1 0.13 28268 1 0.03 -1 -1 33728 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28384 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.56 abc 32.51 MiB -1 -1 0.13 28352 1 0.03 -1 -1 33288 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28512 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.58 abc 32.71 MiB -1 -1 0.13 28100 1 0.03 -1 -1 33496 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28380 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.58 abc 32.76 MiB -1 -1 0.13 28100 1 0.03 -1 -1 33548 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28256 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.60 abc 32.87 MiB -1 -1 0.13 28352 1 0.03 -1 -1 33660 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28384 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.58 abc 33.10 MiB -1 -1 0.13 28352 1 0.03 -1 -1 33892 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28512 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.81 abc 32.91 MiB -1 -1 0.14 28156 1 0.06 -1 -1 33704 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28256 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.69 abc 33.11 MiB -1 -1 0.13 28356 1 0.04 -1 -1 33900 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28380 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.68 abc 32.96 MiB -1 -1 0.14 28228 1 0.03 -1 -1 33748 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28404 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.73 abc 32.65 MiB -1 -1 0.15 28252 1 0.03 -1 -1 33432 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28220 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.72 abc 32.66 MiB -1 -1 0.15 28612 1 0.03 -1 -1 33444 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28496 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.60 abc 32.63 MiB -1 -1 0.14 28480 1 0.04 -1 -1 33412 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28124 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.61 abc 33.37 MiB -1 -1 0.15 28868 1 0.04 -1 -1 34168 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28504 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 0.56 abc 32.44 MiB -1 -1 0.12 28228 1 0.03 -1 -1 33220 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28196 9 5 30 31 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 0.52 abc 32.69 MiB -1 -1 0.12 28096 1 0.02 -1 -1 33476 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28128 11 6 36 37 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 0.56 abc 32.89 MiB -1 -1 0.12 28140 1 0.03 -1 -1 33684 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 27760 13 7 42 43 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 0.64 abc 32.80 MiB -1 -1 0.12 28096 1 0.03 -1 -1 33584 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28008 15 8 49 50 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 0.74 abc 32.76 MiB -1 -1 0.13 28356 1 0.04 -1 -1 33544 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28028 17 9 55 56 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 0.68 abc 32.76 MiB -1 -1 0.13 28100 1 0.03 -1 -1 33544 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28264 19 10 61 62 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 0.47 abc 32.51 MiB -1 -1 0.09 28096 1 0.02 -1 -1 33292 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 27996 21 11 67 68 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 0.48 abc 32.93 MiB -1 -1 0.12 28100 1 0.02 -1 -1 33716 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28008 23 12 74 75 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 0.49 abc 33.05 MiB -1 -1 0.12 28228 1 0.02 -1 -1 33844 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28260 25 13 80 81 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 0.46 abc 32.99 MiB -1 -1 0.12 28044 1 0.03 -1 -1 33784 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28132 27 14 86 87 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 0.57 abc 32.63 MiB -1 -1 0.13 28096 1 0.04 -1 -1 33412 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 27880 29 15 92 93 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 0.58 abc 32.88 MiB -1 -1 0.12 28476 1 0.03 -1 -1 33672 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 27584 31 16 99 100 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 0.59 abc 32.77 MiB -1 -1 0.13 28100 1 0.03 -1 -1 33560 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28136 33 17 105 106 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 0.53 abc 33.06 MiB -1 -1 0.12 28484 1 0.03 -1 -1 33852 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28256 37 19 117 118 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 0.59 abc 33.07 MiB -1 -1 0.13 27904 1 0.03 -1 -1 33860 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28520 41 21 130 131 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 0.58 abc 32.70 MiB -1 -1 0.14 28356 1 0.03 -1 -1 33480 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28264 45 23 142 143 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 0.61 abc 32.85 MiB -1 -1 0.13 28356 1 0.03 -1 -1 33636 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28508 49 25 155 156 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 0.73 abc 32.68 MiB -1 -1 0.14 28352 1 0.03 -1 -1 33460 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28260 57 29 180 181 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 0.68 abc 32.81 MiB -1 -1 0.15 28224 1 0.03 -1 -1 33600 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28132 65 33 205 206 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 0.65 abc 32.97 MiB -1 -1 0.15 28484 1 0.03 -1 -1 33764 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28000 97 49 305 306 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_lookahead_unbalanced_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 0.66 abc 33.21 MiB -1 -1 0.16 28868 1 0.04 -1 -1 34012 -1 -1 -1 -1 -1 -1 exited with return code 134 v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 28000 129 65 405 406 1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 3.24 vpr 66.39 MiB -1 -1 0.12 28088 1 0.06 -1 -1 33420 -1 -1 3 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67980 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 28.1 MiB 0.01 219 56 1613 695 874 44 66.4 MiB 0.02 0.00 0.95891 0.792048 -9.40096 -0.792048 0.792048 0.74 0.00010659 8.6059e-05 0.00858508 0.00695019 -1 -1 -1 -1 20 145 15 6.64007e+06 37674 394039. 1363.46 0.47 0.0132667 0.0109314 20530 87850 -1 111 12 74 74 2299 889 0.901248 0.901248 -9.22142 -0.901248 0 0 477104. 1650.88 0.05 0.01 0.15 -1 -1 0.05 0.00850005 0.00795055 14 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 2.82 vpr 66.31 MiB -1 -1 0.13 28088 1 0.02 -1 -1 33648 -1 -1 4 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67900 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 28.1 MiB 0.01 263 80 1729 661 1032 36 66.3 MiB 0.02 0.00 0.95891 0.803048 -11.5911 -0.803048 0.803048 0.56 0.000120591 9.8216e-05 0.00789352 0.00644496 -1 -1 -1 -1 20 218 18 6.64007e+06 50232 394039. 1363.46 0.49 0.0139337 0.0115052 20530 87850 -1 165 8 113 113 4259 1575 1.01045 1.01045 -12.515 -1.01045 0 0 477104. 1650.88 0.08 0.02 0.18 -1 -1 0.08 0.00375871 0.00332221 17 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 2.66 vpr 66.54 MiB -1 -1 0.12 27960 1 0.03 -1 -1 33552 -1 -1 5 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68140 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 28.1 MiB 0.01 413 184 3337 1642 1638 57 66.5 MiB 0.03 0.00 1.07911 0.825048 -15.1832 -0.825048 0.825048 0.56 8.306e-05 6.7671e-05 0.012091 0.00974289 -1 -1 -1 -1 20 335 14 6.64007e+06 62790 394039. 1363.46 0.32 0.0171759 0.0142142 20530 87850 -1 315 11 134 134 7516 1981 0.934248 0.934248 -16.9909 -0.934248 0 0 477104. 1650.88 0.04 0.01 0.15 -1 -1 0.04 0.00507666 0.00440911 20 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.04 vpr 66.43 MiB -1 -1 0.12 28000 1 0.03 -1 -1 33248 -1 -1 4 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68028 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 28.1 MiB 0.02 429 144 3027 1279 1705 43 66.4 MiB 0.03 0.00 1.40376 1.18536 -17.6919 -1.18536 1.18536 0.67 0.000156441 0.000127957 0.0123166 0.0100766 -1 -1 -1 -1 26 280 8 6.64007e+06 50232 477104. 1650.88 1.45 0.0649845 0.0433241 21682 110474 -1 258 14 111 111 6709 1978 0.823048 0.823048 -17.6412 -0.823048 0 0 585099. 2024.56 0.05 0.01 0.24 -1 -1 0.05 0.0058069 0.00484229 22 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 3.95 vpr 66.69 MiB -1 -1 0.13 27904 1 0.02 -1 -1 33740 -1 -1 5 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68292 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 28.2 MiB 0.02 527 160 3439 1515 1869 55 66.7 MiB 0.03 0.00 1.54596 1.19636 -20.021 -1.19636 1.19636 0.62 0.000103434 8.4361e-05 0.0100684 0.00826624 -1 -1 -1 -1 26 303 15 6.64007e+06 62790 477104. 1650.88 1.42 0.0421347 0.0342248 21682 110474 -1 268 7 99 99 6394 1959 0.867048 0.867048 -20.2412 -0.867048 0 0 585099. 2024.56 0.11 0.02 0.25 -1 -1 0.11 0.00776149 0.00721363 25 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 3.32 vpr 66.32 MiB -1 -1 0.12 27832 1 0.02 -1 -1 33488 -1 -1 5 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67912 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 28.0 MiB 0.02 479 165 3114 1051 2019 44 66.3 MiB 0.03 0.00 1.31656 1.20736 -22.5674 -1.20736 1.20736 0.47 0.000203582 0.000168051 0.0112163 0.00912178 -1 -1 -1 -1 26 302 8 6.64007e+06 62790 477104. 1650.88 1.41 0.0565869 0.0458611 21682 110474 -1 293 11 156 156 8215 2586 1.09645 1.09645 -23.3686 -1.09645 0 0 585099. 2024.56 0.05 0.02 0.12 -1 -1 0.05 0.00626745 0.00544849 28 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 2.86 vpr 66.68 MiB -1 -1 0.13 27956 1 0.02 -1 -1 33468 -1 -1 6 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68284 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 28.2 MiB 0.03 485 190 4259 1816 2373 70 66.7 MiB 0.03 0.00 1.33856 1.21836 -25.0768 -1.21836 1.21836 0.42 0.000119072 9.7443e-05 0.0103308 0.00855325 -1 -1 -1 -1 26 408 10 6.64007e+06 75348 477104. 1650.88 0.66 0.0333895 0.0273893 21682 110474 -1 328 9 130 130 6200 2009 0.987248 0.987248 -25.2106 -0.987248 0 0 585099. 2024.56 0.06 0.01 0.23 -1 -1 0.06 0.00574041 0.00504605 31 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 4.59 vpr 66.58 MiB -1 -1 0.12 28156 1 0.02 -1 -1 33620 -1 -1 7 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68176 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 28.1 MiB 0.02 649 231 5154 2143 2945 66 66.6 MiB 0.05 0.00 1.69916 1.22936 -28.1166 -1.22936 1.22936 0.78 0.000231879 0.000190197 0.0169995 0.0140193 -1 -1 -1 -1 28 433 7 6.64007e+06 87906 500653. 1732.36 1.92 0.060708 0.0466539 21970 115934 -1 392 10 155 155 9109 2776 0.987248 0.987248 -27.9483 -0.987248 0 0 612192. 2118.31 0.06 0.02 0.25 -1 -1 0.06 0.00677477 0.00594609 35 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 4.39 vpr 66.84 MiB -1 -1 0.12 28216 1 0.03 -1 -1 33532 -1 -1 8 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68440 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 28.3 MiB 0.02 581 224 5294 1836 3361 97 66.8 MiB 0.05 0.00 1.36056 1.24036 -30.0435 -1.24036 1.24036 0.67 0.000259955 0.000215248 0.0168278 0.0138558 -1 -1 -1 -1 32 497 23 6.64007e+06 100464 554710. 1919.41 1.91 0.103522 0.0850469 22834 132086 -1 390 17 262 262 12700 4305 0.923248 0.923248 -28.5057 -0.923248 0 0 701300. 2426.64 0.06 0.02 0.20 -1 -1 0.06 0.00902601 0.00767808 38 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 4.40 vpr 66.62 MiB -1 -1 0.13 28596 1 0.03 -1 -1 33504 -1 -1 9 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68224 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 28.1 MiB 0.01 665 253 6122 1843 4169 110 66.6 MiB 0.05 0.00 1.44776 1.25136 -32.8687 -1.25136 1.25136 0.61 0.00026681 0.000219043 0.0186758 0.0154876 -1 -1 -1 -1 30 581 24 6.64007e+06 113022 526063. 1820.29 2.06 0.0910609 0.0741955 22546 126617 -1 432 14 264 264 14777 4589 1.03245 1.03245 -31.4055 -1.03245 0 0 666494. 2306.21 0.06 0.02 0.20 -1 -1 0.06 0.00884973 0.00759468 41 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 4.65 vpr 66.41 MiB -1 -1 0.12 28472 1 0.02 -1 -1 33336 -1 -1 9 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68004 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 27.7 MiB 0.02 779 469 10151 4623 5459 69 66.4 MiB 0.10 0.00 1.38256 1.26236 -40.0779 -1.26236 1.26236 0.50 0.000301798 0.00025082 0.0390391 0.0285294 -1 -1 -1 -1 32 770 18 6.64007e+06 113022 554710. 1919.41 2.26 0.100963 0.0778302 22834 132086 -1 721 14 272 272 23797 6065 0.945248 0.945248 -39.8748 -0.945248 0 0 701300. 2426.64 0.06 0.03 0.21 -1 -1 0.06 0.0100259 0.00863915 44 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.19 vpr 66.53 MiB -1 -1 0.13 28088 1 0.03 -1 -1 33880 -1 -1 9 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68128 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 28.1 MiB 0.03 841 317 7332 2979 4153 200 66.5 MiB 0.07 0.00 1.74287 1.62267 -38.5413 -1.62267 1.62267 0.64 0.000316335 0.000263813 0.0215433 0.0176904 -1 -1 -1 -1 26 783 39 6.64007e+06 113022 477104. 1650.88 1.76 0.119992 0.0986363 21682 110474 -1 551 17 353 353 20871 6536 1.07445 1.07445 -38.1178 -1.07445 0 0 585099. 2024.56 0.06 0.02 0.17 -1 -1 0.06 0.00982478 0.00830493 46 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 4.56 vpr 66.79 MiB -1 -1 0.13 28472 1 0.03 -1 -1 33812 -1 -1 9 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68396 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 28.2 MiB 0.04 911 476 9749 4340 5341 68 66.8 MiB 0.09 0.00 1.95027 1.63367 -45.0678 -1.63367 1.63367 0.62 0.000309411 0.000249538 0.0308289 0.0256464 -1 -1 -1 -1 26 854 17 6.64007e+06 113022 477104. 1650.88 1.93 0.116766 0.0965781 21682 110474 -1 771 16 370 370 45628 19622 1.08425 1.08425 -46.3038 -1.08425 0 0 585099. 2024.56 0.06 0.04 0.20 -1 -1 0.06 0.0115328 0.00985585 49 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 3.50 vpr 66.65 MiB -1 -1 0.13 28344 1 0.03 -1 -1 33624 -1 -1 11 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68248 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 27.8 MiB 0.04 1061 425 11763 5121 6464 178 66.6 MiB 0.10 0.00 1.88507 1.65567 -50.1833 -1.65567 1.65567 0.70 0.000348948 0.000287486 0.0318103 0.0261274 -1 -1 -1 -1 30 823 26 6.64007e+06 138138 526063. 1820.29 0.82 0.0884606 0.0746275 22546 126617 -1 619 13 303 303 19574 5795 0.976248 0.976248 -43.0151 -0.976248 0 0 666494. 2306.21 0.06 0.03 0.19 -1 -1 0.06 0.0110878 0.00955031 55 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 4.37 vpr 66.99 MiB -1 -1 0.13 28088 1 0.03 -1 -1 33556 -1 -1 13 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68596 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 28.1 MiB 0.02 1132 521 15401 5689 9557 155 67.0 MiB 0.14 0.00 1.91807 1.67767 -56.6506 -1.67767 1.67767 0.71 0.000436028 0.000373782 0.039662 0.0317407 -1 -1 -1 -1 28 981 19 6.64007e+06 163254 500653. 1732.36 1.66 0.137278 0.108892 21970 115934 -1 774 12 315 315 17460 5035 1.15145 1.15145 -52.228 -1.15145 0 0 612192. 2118.31 0.06 0.03 0.18 -1 -1 0.06 0.0160329 0.0144926 62 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 4.49 vpr 67.01 MiB -1 -1 0.13 28352 1 0.04 -1 -1 33652 -1 -1 14 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68620 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 27.9 MiB 0.03 1276 669 15568 6133 9314 121 67.0 MiB 0.16 0.00 1.94007 1.69967 -65.8357 -1.69967 1.69967 0.77 0.000438455 0.000366698 0.0503803 0.0437138 -1 -1 -1 -1 30 1106 14 6.64007e+06 175812 526063. 1820.29 1.56 0.150481 0.127697 22546 126617 -1 964 14 360 360 24272 6177 1.03125 1.03125 -57.0908 -1.03125 0 0 666494. 2306.21 0.06 0.03 0.20 -1 -1 0.06 0.0135146 0.011693 68 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.69 vpr 67.37 MiB -1 -1 0.14 28672 1 0.04 -1 -1 33392 -1 -1 14 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68984 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 28.3 MiB 0.05 1659 857 19393 9592 9699 102 67.4 MiB 0.21 0.00 2.42058 2.07098 -76.9692 -2.07098 2.07098 0.72 0.000478579 0.000403851 0.0550588 0.0421618 -1 -1 -1 -1 26 1325 12 6.64007e+06 175812 477104. 1650.88 1.85 0.165433 0.134011 21682 110474 -1 1244 10 393 393 33111 8276 1.07205 1.07205 -69.5843 -1.07205 0 0 585099. 2024.56 0.07 0.03 0.18 -1 -1 0.07 0.0113442 0.00990425 73 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 5.17 vpr 67.36 MiB -1 -1 0.14 28484 1 0.03 -1 -1 33700 -1 -1 18 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68980 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 28.1 MiB 0.04 1731 909 29872 12638 17060 174 67.4 MiB 0.26 0.00 2.58478 2.11498 -89.4657 -2.11498 2.11498 0.75 0.00051143 0.000422451 0.0661696 0.0546494 -1 -1 -1 -1 30 1449 14 6.64007e+06 226044 526063. 1820.29 2.23 0.175752 0.14147 22546 126617 -1 1300 10 357 357 31100 7662 1.08305 1.08305 -76.85 -1.08305 0 0 666494. 2306.21 0.08 0.03 0.21 -1 -1 0.08 0.0137427 0.0120601 86 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 5.37 vpr 67.25 MiB -1 -1 0.13 28368 1 0.02 -1 -1 33244 -1 -1 19 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68868 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 28.0 MiB 0.04 1849 1071 29003 12919 15948 136 67.3 MiB 0.27 0.00 2.61749 2.50829 -105.884 -2.50829 2.50829 0.79 0.000632982 0.000528098 0.0663169 0.0555273 -1 -1 -1 -1 32 1727 12 6.64007e+06 238602 554710. 1919.41 2.56 0.222866 0.184535 22834 132086 -1 1579 16 561 561 39448 9975 1.19225 1.19225 -91.1329 -1.19225 0 0 701300. 2426.64 0.06 0.06 0.24 -1 -1 0.06 0.0275746 0.0231849 97 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 5.25 vpr 68.27 MiB -1 -1 0.15 28984 1 0.02 -1 -1 33684 -1 -1 29 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69912 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 28.7 MiB 0.04 2965 1716 59344 25781 33244 319 68.3 MiB 0.56 0.01 3.73251 3.38291 -182.746 -3.38291 3.38291 0.64 0.000849946 0.000716546 0.109461 0.0906922 -1 -1 -1 -1 30 2637 19 6.64007e+06 364182 526063. 1820.29 2.29 0.31179 0.26084 22546 126617 -1 2313 14 814 814 64832 16287 1.30025 1.30025 -135.247 -1.30025 0 0 666494. 2306.21 0.06 0.07 0.23 -1 -1 0.06 0.0275497 0.0238752 145 2 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 7.19 vpr 68.34 MiB -1 -1 0.17 28548 1 0.04 -1 -1 34056 -1 -1 39 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69976 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 29.0 MiB 0.10 3941 2303 73265 31820 40837 608 68.3 MiB 0.59 0.01 4.49793 4.25753 -271.793 -4.25753 4.25753 0.66 0.000678538 0.00057017 0.103161 0.0833662 -1 -1 -1 -1 30 3615 23 6.64007e+06 489762 526063. 1820.29 3.79 0.442155 0.379467 22546 126617 -1 3086 14 940 940 71495 17727 1.52605 1.52605 -188.135 -1.52605 0 0 666494. 2306.21 0.06 0.08 0.20 -1 -1 0.06 0.0359765 0.0316302 193 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_004bits.v common 2.60 vpr 66.11 MiB -1 -1 0.13 28088 1 0.03 -1 -1 33676 -1 -1 3 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67700 9 5 34 35 1 20 17 17 17 289 -1 unnamed_device 27.9 MiB 0.01 219 55 1655 667 943 45 66.1 MiB 0.01 0.00 0.95891 0.781048 -9.23753 -0.781048 0.781048 0.47 5.7536e-05 4.5539e-05 0.00540091 0.00431447 -1 -1 -1 -1 20 138 17 6.65987e+06 38034 394039. 1363.46 0.43 0.0106934 0.00868647 20530 87850 -1 117 20 114 114 3230 1382 1.17979 1.17979 -9.93578 -1.17979 0 0 477104. 1650.88 0.04 0.01 0.13 -1 -1 0.04 0.00527221 0.00445754 14 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_005bits.v common 3.37 vpr 66.36 MiB -1 -1 0.13 28344 1 0.03 -1 -1 33532 -1 -1 4 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67952 11 6 41 42 1 26 21 17 17 289 -1 unnamed_device 28.0 MiB 0.01 263 78 1617 599 993 25 66.4 MiB 0.02 0.00 0.95891 0.803048 -11.5936 -0.803048 0.803048 0.78 8.5206e-05 7.0693e-05 0.00661996 0.00543747 -1 -1 -1 -1 20 203 20 6.65987e+06 50712 394039. 1363.46 0.79 0.0177844 0.0146629 20530 87850 -1 182 12 106 106 4674 1755 0.901248 0.901248 -12.7664 -0.901248 0 0 477104. 1650.88 0.04 0.01 0.15 -1 -1 0.04 0.00446865 0.00381668 17 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_006bits.v common 3.66 vpr 66.22 MiB -1 -1 0.12 28088 1 0.03 -1 -1 33680 -1 -1 5 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67808 13 7 48 49 1 32 25 17 17 289 -1 unnamed_device 27.8 MiB 0.01 413 129 2941 1259 1620 62 66.2 MiB 0.03 0.00 1.07911 0.814048 -14.3654 -0.814048 0.814048 0.88 0.000141481 0.000115277 0.0153532 0.0131 -1 -1 -1 -1 20 302 15 6.65987e+06 63390 394039. 1363.46 0.97 0.0268016 0.0224637 20530 87850 -1 300 16 175 175 13209 3765 1.07059 1.07059 -17.0986 -1.07059 0 0 477104. 1650.88 0.05 0.02 0.14 -1 -1 0.05 0.00576356 0.00490283 20 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_007bits.v common 4.11 vpr 66.36 MiB -1 -1 0.13 28588 1 0.02 -1 -1 33636 -1 -1 4 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67956 15 8 55 56 1 38 27 17 17 289 -1 unnamed_device 28.1 MiB 0.01 429 143 2747 1151 1526 70 66.4 MiB 0.03 0.00 1.3217 1.17436 -17.1203 -1.17436 1.17436 0.76 0.000166429 0.000130499 0.0111805 0.00909374 -1 -1 -1 -1 26 275 21 6.65987e+06 50712 477104. 1650.88 1.69 0.0570965 0.0433903 21682 110474 -1 272 13 196 196 11496 3626 1.00339 1.00339 -17.6737 -1.00339 0 0 585099. 2024.56 0.05 0.02 0.16 -1 -1 0.05 0.00577606 0.00498978 22 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_008bits.v common 4.41 vpr 66.26 MiB -1 -1 0.12 28088 1 0.03 -1 -1 33636 -1 -1 5 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67848 17 9 62 63 1 41 31 17 17 289 -1 unnamed_device 28.0 MiB 0.02 527 157 3535 1513 1984 38 66.3 MiB 0.04 0.00 1.54596 1.18536 -19.4608 -1.18536 1.18536 0.55 0.000158887 0.000129825 0.0125387 0.0101767 -1 -1 -1 -1 28 346 15 6.65987e+06 63390 500653. 1732.36 2.01 0.0494872 0.0396424 21970 115934 -1 313 15 166 166 9485 2779 0.932248 0.932248 -20.4051 -0.932248 0 0 612192. 2118.31 0.06 0.02 0.24 -1 -1 0.06 0.00722104 0.00620229 25 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_009bits.v common 4.64 vpr 66.20 MiB -1 -1 0.13 28340 1 0.03 -1 -1 33632 -1 -1 5 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67784 19 10 69 70 1 44 34 17 17 289 -1 unnamed_device 27.7 MiB 0.02 479 222 3719 1329 2361 29 66.2 MiB 0.04 0.00 1.27275 1.19636 -22.6495 -1.19636 1.19636 0.70 0.000200241 0.000165682 0.0141582 0.0116471 -1 -1 -1 -1 26 413 14 6.65987e+06 63390 477104. 1650.88 1.94 0.0722673 0.0565915 21682 110474 -1 362 14 173 173 10134 2927 0.976248 0.976248 -23.7644 -0.976248 0 0 585099. 2024.56 0.06 0.02 0.22 -1 -1 0.06 0.00700214 0.00602893 28 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_010bits.v common 4.48 vpr 66.29 MiB -1 -1 0.12 28000 1 0.02 -1 -1 33736 -1 -1 6 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67884 21 11 76 77 1 49 38 17 17 289 -1 unnamed_device 27.8 MiB 0.01 485 184 4637 1927 2627 83 66.3 MiB 0.04 0.00 1.32756 1.20736 -25.0816 -1.20736 1.20736 0.67 0.000210165 0.000171818 0.0162539 0.0133452 -1 -1 -1 -1 26 371 20 6.65987e+06 76068 477104. 1650.88 1.78 0.0758411 0.0574457 21682 110474 -1 343 16 186 186 11265 3484 1.03639 1.03639 -26.3192 -1.03639 0 0 585099. 2024.56 0.06 0.02 0.22 -1 -1 0.06 0.00855959 0.00722665 31 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_011bits.v common 5.07 vpr 66.35 MiB -1 -1 0.13 28380 1 0.05 -1 -1 33668 -1 -1 7 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67944 23 12 83 84 1 55 42 17 17 289 -1 unnamed_device 27.9 MiB 0.02 649 209 5370 2178 3082 110 66.4 MiB 0.05 0.00 1.69916 1.21836 -27.734 -1.21836 1.21836 0.72 0.000236474 0.000196395 0.0186414 0.0153421 -1 -1 -1 -1 28 458 20 6.65987e+06 88746 500653. 1732.36 2.32 0.0874831 0.073546 21970 115934 -1 386 17 257 257 13036 4255 1.00925 1.00925 -28.0422 -1.00925 0 0 612192. 2118.31 0.06 0.02 0.18 -1 -1 0.06 0.00962224 0.00832203 35 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_012bits.v common 5.27 vpr 66.28 MiB -1 -1 0.13 28212 1 0.03 -1 -1 33632 -1 -1 8 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67872 25 13 90 91 1 61 46 17 17 289 -1 unnamed_device 27.7 MiB 0.03 581 228 5458 1984 3344 130 66.3 MiB 0.06 0.00 1.2785 1.22936 -30.3897 -1.22936 1.22936 0.81 0.000254174 0.000207085 0.0253829 0.0177042 -1 -1 -1 -1 30 485 15 6.65987e+06 101424 526063. 1820.29 2.18 0.0915068 0.0689189 22546 126617 -1 407 14 284 284 14931 4835 0.95891 0.95891 -28.6003 -0.95891 0 0 666494. 2306.21 0.06 0.03 0.22 -1 -1 0.06 0.0117662 0.0106085 38 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_013bits.v common 5.62 vpr 66.56 MiB -1 -1 0.13 28344 1 0.04 -1 -1 33716 -1 -1 9 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68156 27 14 97 98 1 67 50 17 17 289 -1 unnamed_device 28.0 MiB 0.02 665 265 5018 1624 3298 96 66.6 MiB 0.07 0.00 1.44776 1.24036 -32.9704 -1.24036 1.24036 0.69 0.000270862 0.000222783 0.018033 0.0125335 -1 -1 -1 -1 28 699 37 6.65987e+06 114102 500653. 1732.36 2.76 0.135864 0.115032 21970 115934 -1 517 24 363 363 30725 12028 1.05959 1.05959 -33.1967 -1.05959 0 0 612192. 2118.31 0.07 0.04 0.25 -1 -1 0.07 0.012912 0.0108996 41 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_014bits.v common 5.82 vpr 66.45 MiB -1 -1 0.14 28472 1 0.03 -1 -1 33352 -1 -1 9 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68044 29 15 104 105 1 73 53 17 17 289 -1 unnamed_device 27.8 MiB 0.03 779 477 11240 4931 6216 93 66.4 MiB 0.09 0.00 1.33856 1.25136 -40.4769 -1.25136 1.25136 0.94 0.000268865 0.000219441 0.0387324 0.0328406 -1 -1 -1 -1 32 753 13 6.65987e+06 114102 554710. 1919.41 2.38 0.145803 0.123376 22834 132086 -1 700 13 264 264 29092 7307 0.960189 0.960189 -40.1241 -0.960189 0 0 701300. 2426.64 0.09 0.04 0.31 -1 -1 0.09 0.0125866 0.0112568 44 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_015bits.v common 4.01 vpr 66.14 MiB -1 -1 0.13 28344 1 0.03 -1 -1 33768 -1 -1 9 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67724 31 16 111 112 1 79 56 17 17 289 -1 unnamed_device 27.7 MiB 0.02 841 334 7974 3134 4636 204 66.1 MiB 0.11 0.00 1.73187 1.61167 -38.7234 -1.61167 1.61167 0.85 0.000304921 0.000252527 0.0298874 0.0256849 -1 -1 -1 -1 30 690 16 6.65987e+06 114102 526063. 1820.29 0.97 0.0672934 0.0556891 22546 126617 -1 534 13 267 267 13806 4246 0.958189 0.958189 -36.1981 -0.958189 0 0 666494. 2306.21 0.06 0.02 0.20 -1 -1 0.06 0.011193 0.00986269 46 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_016bits.v common 5.08 vpr 66.40 MiB -1 -1 0.13 28216 1 0.03 -1 -1 33720 -1 -1 9 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67996 33 17 118 119 1 82 59 17 17 289 -1 unnamed_device 27.8 MiB 0.02 911 566 10775 5016 5691 68 66.4 MiB 0.15 0.00 1.95027 1.62267 -47.0966 -1.62267 1.62267 0.82 0.000324314 0.000265969 0.0366537 0.0309962 -1 -1 -1 -1 26 939 16 6.65987e+06 114102 477104. 1650.88 1.91 0.132976 0.102874 21682 110474 -1 847 16 358 358 33780 8606 1.12239 1.12239 -47.9138 -1.12239 0 0 585099. 2024.56 0.05 0.03 0.18 -1 -1 0.05 0.0120596 0.0104487 49 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_018bits.v common 4.76 vpr 66.60 MiB -1 -1 0.14 28468 1 0.03 -1 -1 33508 -1 -1 11 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68200 37 19 132 133 1 90 67 17 17 289 -1 unnamed_device 28.0 MiB 0.02 1061 569 14755 6095 8562 98 66.6 MiB 0.20 0.00 1.88507 1.64467 -52.982 -1.64467 1.64467 0.73 0.000367397 0.000307912 0.0586547 0.0375228 -1 -1 -1 -1 28 929 16 6.65987e+06 139458 500653. 1732.36 1.94 0.181164 0.138341 21970 115934 -1 862 15 382 382 29687 7729 1.09525 1.09525 -50.4346 -1.09525 0 0 612192. 2118.31 0.11 0.04 0.20 -1 -1 0.11 0.0154121 0.0106119 55 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_020bits.v common 3.65 vpr 66.86 MiB -1 -1 0.13 28472 1 0.03 -1 -1 33772 -1 -1 13 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68460 41 21 146 147 1 102 75 17 17 289 -1 unnamed_device 27.8 MiB 0.03 1132 524 17613 6186 11288 139 66.9 MiB 0.16 0.00 1.83601 1.66667 -56.5769 -1.66667 1.66667 0.68 0.000360088 0.000291752 0.046112 0.0386623 -1 -1 -1 -1 28 989 43 6.65987e+06 164814 500653. 1732.36 1.10 0.133945 0.109461 21970 115934 -1 842 12 430 430 33830 9530 1.15539 1.15539 -55.4911 -1.15539 0 0 612192. 2118.31 0.10 0.04 0.22 -1 -1 0.10 0.015075 0.0135021 62 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_022bits.v common 3.62 vpr 66.78 MiB -1 -1 0.14 28472 1 0.03 -1 -1 33764 -1 -1 14 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68384 45 23 160 161 1 114 82 17 17 289 -1 unnamed_device 27.8 MiB 0.03 1276 580 15924 6168 9620 136 66.8 MiB 0.14 0.00 1.92907 1.68867 -63.6102 -1.68867 1.68867 0.65 0.000439155 0.000365401 0.0395237 0.0326012 -1 -1 -1 -1 30 1034 26 6.65987e+06 177492 526063. 1820.29 0.78 0.0977753 0.0810769 22546 126617 -1 844 15 364 364 22550 6265 0.944048 0.944048 -53.7139 -0.944048 0 0 666494. 2306.21 0.06 0.04 0.26 -1 -1 0.06 0.0189423 0.017023 68 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_024bits.v common 4.09 vpr 67.08 MiB -1 -1 0.14 28472 1 0.03 -1 -1 34132 -1 -1 14 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68692 49 25 174 175 1 123 88 17 17 289 -1 unnamed_device 28.0 MiB 0.03 1659 842 24268 10858 13286 124 67.1 MiB 0.18 0.00 2.42058 2.05998 -76.5341 -2.05998 2.05998 0.69 0.000254449 0.000210015 0.0519532 0.0428839 -1 -1 -1 -1 30 1329 17 6.65987e+06 177492 526063. 1820.29 1.25 0.139265 0.115161 22546 126617 -1 1160 16 457 457 28487 7364 1.17025 1.17025 -68.821 -1.17025 0 0 666494. 2306.21 0.07 0.05 0.19 -1 -1 0.07 0.0159418 0.0137425 73 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_028bits.v common 4.65 vpr 67.32 MiB -1 -1 0.15 28392 1 0.03 -1 -1 33792 -1 -1 18 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68932 57 29 202 203 1 143 104 17 17 289 -1 unnamed_device 28.1 MiB 0.04 1731 1000 30116 13592 16348 176 67.3 MiB 0.23 0.00 2.58478 2.10398 -91.5637 -2.10398 2.10398 0.69 0.000451382 0.000371338 0.0648293 0.0532974 -1 -1 -1 -1 28 1597 16 6.65987e+06 228204 500653. 1732.36 1.72 0.185318 0.154354 21970 115934 -1 1465 18 522 522 43617 10904 1.13219 1.13219 -81.3502 -1.13219 0 0 612192. 2118.31 0.11 0.07 0.23 -1 -1 0.11 0.0265546 0.0224347 86 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_032bits.v common 3.76 vpr 67.32 MiB -1 -1 0.14 28600 1 0.03 -1 -1 33588 -1 -1 19 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68940 65 33 230 231 1 164 117 17 17 289 -1 unnamed_device 28.1 MiB 0.04 1849 1090 33293 13414 19689 190 67.3 MiB 0.28 0.00 2.61749 2.49729 -107.776 -2.49729 2.49729 0.63 0.000575915 0.000447609 0.0702595 0.0578192 -1 -1 -1 -1 30 1705 19 6.65987e+06 240882 526063. 1820.29 0.78 0.143546 0.119902 22546 126617 -1 1542 14 532 532 43234 10694 1.30025 1.30025 -94.0072 -1.30025 0 0 666494. 2306.21 0.06 0.05 0.25 -1 -1 0.06 0.0186582 0.0162318 97 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_048bits.v common 6.65 vpr 67.77 MiB -1 -1 0.14 28492 1 0.03 -1 -1 33736 -1 -1 29 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69400 97 49 342 343 1 246 175 17 17 289 -1 unnamed_device 28.1 MiB 0.06 2965 1563 52987 23582 29020 385 67.8 MiB 0.53 0.01 3.73251 3.37191 -178.159 -3.37191 3.37191 0.88 0.000894658 0.000738782 0.100232 0.083069 -1 -1 -1 -1 28 2818 24 6.65987e+06 367662 500653. 1732.36 3.06 0.370004 0.314339 21970 115934 -1 2416 16 951 951 82557 22309 1.52139 1.52139 -147.037 -1.52139 0 0 612192. 2118.31 0.08 0.12 0.19 -1 -1 0.08 0.0424534 0.0353994 145 2 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml adder_064bits.v common 4.91 vpr 68.24 MiB -1 -1 0.17 29112 1 0.04 -1 -1 34052 -1 -1 39 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69876 129 65 454 455 1 328 233 17 17 289 -1 unnamed_device 28.8 MiB 0.06 3941 2214 79709 33149 45015 1545 68.2 MiB 0.76 0.02 4.43193 4.24653 -270.012 -4.24653 4.24653 0.79 0.00115169 0.000956549 0.134453 0.11248 -1 -1 -1 -1 32 3639 24 6.65987e+06 494442 554710. 1919.41 1.18 0.297727 0.255219 22834 132086 -1 3200 19 1176 1176 103063 26867 1.73739 1.73739 -202.571 -1.73739 0 0 701300. 2426.64 0.06 0.10 0.22 -1 -1 0.06 0.0447434 0.0392062 193 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_004bits.v common 3.65 vpr 66.96 MiB -1 -1 0.10 28216 1 0.02 -1 -1 33704 -1 -1 1 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68568 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 28.7 MiB 0.02 205 44 1023 358 559 106 67.0 MiB 0.02 0.00 1.08519 0.723895 -9.81308 -0.723895 0.723895 0.55 9.5262e-05 7.3457e-05 0.00692684 0.00572052 -1 -1 -1 -1 24 105 11 6.95648e+06 14475.7 470940. 1629.55 1.60 0.0354501 0.0286048 24034 113901 -1 85 8 47 47 1710 701 0.74674 0.74674 -9.47298 -0.74674 0 0 586450. 2029.24 0.07 0.02 0.20 -1 -1 0.07 0.0072894 0.0068815 7 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_005bits.v common 3.56 vpr 67.05 MiB -1 -1 0.13 27836 1 0.02 -1 -1 33556 -1 -1 1 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68656 11 6 41 42 1 20 18 17 17 289 -1 unnamed_device 28.8 MiB 0.03 225 66 1398 490 849 59 67.0 MiB 0.02 0.00 1.08519 0.701895 -12.0649 -0.701895 0.701895 0.51 0.000140911 0.000116158 0.00811914 0.00657498 -1 -1 -1 -1 22 164 17 6.95648e+06 14475.7 443629. 1535.05 1.60 0.0448504 0.0326687 23458 102101 -1 144 11 82 82 4952 1643 0.709292 0.709292 -13.3179 -0.709292 0 0 531479. 1839.03 0.06 0.01 0.20 -1 -1 0.06 0.00509388 0.00453875 8 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_006bits.v common 2.87 vpr 67.22 MiB -1 -1 0.12 28092 1 0.03 -1 -1 33660 -1 -1 2 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68832 13 7 48 49 1 25 22 17 17 289 -1 unnamed_device 28.8 MiB 0.04 275 74 1882 702 1161 19 67.2 MiB 0.02 0.00 1.12264 0.802432 -14.3707 -0.802432 0.802432 0.70 0.000142659 0.00011565 0.00954796 0.00779314 -1 -1 -1 -1 22 149 10 6.95648e+06 28951.4 443629. 1535.05 0.54 0.0252963 0.0205435 23458 102101 -1 109 7 73 73 2542 1210 0.802432 0.802432 -14.8182 -0.802432 0 0 531479. 1839.03 0.06 0.01 0.23 -1 -1 0.06 0.00398209 0.0035468 10 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_007bits.v common 3.16 vpr 67.02 MiB -1 -1 0.13 28348 1 0.02 -1 -1 33476 -1 -1 2 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68632 15 8 55 56 1 32 25 17 17 289 -1 unnamed_device 28.7 MiB 0.05 391 99 2437 1100 1321 16 67.0 MiB 0.02 0.00 1.33579 0.841632 -16.9615 -0.841632 0.841632 0.70 0.000160207 0.000131088 0.0113116 0.00924484 -1 -1 -1 -1 26 262 19 6.95648e+06 28951.4 503264. 1741.40 0.65 0.036773 0.0289872 24322 120374 -1 242 36 229 229 12160 4244 1.09223 1.09223 -19.2502 -1.09223 0 0 618332. 2139.56 0.08 0.03 0.19 -1 -1 0.08 0.0106284 0.0087909 11 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_008bits.v common 3.23 vpr 67.16 MiB -1 -1 0.13 28344 1 0.03 -1 -1 33624 -1 -1 2 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68768 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 28.8 MiB 0.05 382 133 2842 1216 1604 22 67.2 MiB 0.03 0.00 0.977932 0.852632 -20.1272 -0.852632 0.852632 0.73 0.000149882 0.000121525 0.0122458 0.00997338 -1 -1 -1 -1 26 339 16 6.95648e+06 28951.4 503264. 1741.40 0.60 0.0327868 0.0266433 24322 120374 -1 283 12 171 171 9571 2913 0.977932 0.977932 -21.9888 -0.977932 0 0 618332. 2139.56 0.04 0.01 0.20 -1 -1 0.04 0.00565129 0.00484014 13 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_009bits.v common 3.38 vpr 67.16 MiB -1 -1 0.12 28600 1 0.03 -1 -1 33772 -1 -1 4 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68776 19 10 69 70 1 44 33 17 17 289 -1 unnamed_device 28.7 MiB 0.02 456 140 3465 1392 1968 105 67.2 MiB 0.04 0.00 1.08519 0.863632 -22.264 -0.863632 0.863632 0.75 0.000189939 0.000154864 0.01366 0.0112842 -1 -1 -1 -1 30 369 16 6.95648e+06 57902.7 556674. 1926.21 0.71 0.0373212 0.0301685 25186 138497 -1 312 13 191 191 11384 3609 1.16733 1.16733 -24.8755 -1.16733 0 0 706193. 2443.58 0.06 0.02 0.21 -1 -1 0.06 0.00702284 0.00600826 15 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_010bits.v common 4.47 vpr 67.43 MiB -1 -1 0.13 28092 1 0.02 -1 -1 33484 -1 -1 4 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69052 21 11 76 77 1 49 36 17 17 289 -1 unnamed_device 29.1 MiB 0.02 511 160 4402 1963 2390 49 67.4 MiB 0.04 0.00 1.08519 0.885632 -24.8435 -0.885632 0.885632 0.76 0.000219564 0.000180758 0.0165162 0.0134806 -1 -1 -1 -1 30 381 28 6.95648e+06 57902.7 556674. 1926.21 2.04 0.0745397 0.0600463 25186 138497 -1 288 12 264 264 10439 3574 1.09703 1.09703 -25.0856 -1.09703 0 0 706193. 2443.58 0.04 0.01 0.12 -1 -1 0.04 0.00459856 0.00402973 17 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_011bits.v common 4.86 vpr 66.88 MiB -1 -1 0.13 28200 1 0.03 -1 -1 33468 -1 -1 4 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68488 23 12 83 84 1 55 39 17 17 289 -1 unnamed_device 28.3 MiB 0.02 665 176 5319 2284 2997 38 66.9 MiB 0.05 0.00 1.21049 0.896632 -26.9723 -0.896632 0.896632 0.64 0.000227417 0.000187493 0.018909 0.0156033 -1 -1 -1 -1 28 552 19 6.95648e+06 57902.7 531479. 1839.03 2.25 0.0866242 0.0705054 24610 126494 -1 433 16 347 347 21641 7074 1.26153 1.26153 -31.0557 -1.26153 0 0 648988. 2245.63 0.07 0.02 0.21 -1 -1 0.07 0.00865584 0.00738797 18 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_012bits.v common 4.25 vpr 67.13 MiB -1 -1 0.13 28092 1 0.03 -1 -1 33528 -1 -1 5 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68740 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 28.7 MiB 0.03 779 236 6193 2776 3358 59 67.1 MiB 0.06 0.00 1.27733 0.918632 -31.3699 -0.918632 0.918632 0.77 0.00023268 0.000183945 0.0222793 0.0149888 -1 -1 -1 -1 28 581 19 6.95648e+06 72378.4 531479. 1839.03 1.31 0.0807089 0.0638321 24610 126494 -1 482 13 289 289 20055 5869 1.10323 1.10323 -34.2188 -1.10323 0 0 648988. 2245.63 0.06 0.02 0.19 -1 -1 0.06 0.00844868 0.00733041 20 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_013bits.v common 5.65 vpr 67.16 MiB -1 -1 0.12 28092 1 0.05 -1 -1 33648 -1 -1 5 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68776 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 28.6 MiB 0.03 912 432 7262 3489 3710 63 67.2 MiB 0.06 0.00 1.45283 0.951632 -37.1076 -0.951632 0.951632 0.71 0.000228231 0.000185772 0.0236192 0.0194457 -1 -1 -1 -1 34 746 17 6.95648e+06 72378.4 618332. 2139.56 2.85 0.11814 0.0874849 25762 151098 -1 711 21 372 372 34593 8140 1.15203 1.15203 -41.7777 -1.15203 0 0 787024. 2723.27 0.07 0.03 0.23 -1 -1 0.07 0.0116863 0.00992054 21 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_014bits.v common 5.92 vpr 67.51 MiB -1 -1 0.13 27956 1 0.03 -1 -1 33556 -1 -1 5 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69132 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 28.8 MiB 0.05 907 264 7525 3176 4292 57 67.5 MiB 0.06 0.00 1.32753 0.951632 -35.8499 -0.951632 0.951632 0.69 0.000268326 0.000221552 0.0226298 0.0185231 -1 -1 -1 -1 36 750 27 6.95648e+06 72378.4 648988. 2245.63 3.12 0.129539 0.101924 26050 158493 -1 546 27 498 498 52738 20372 1.17403 1.17403 -40.763 -1.17403 0 0 828058. 2865.25 0.08 0.06 0.26 -1 -1 0.08 0.0163018 0.0139171 23 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_015bits.v common 5.58 vpr 67.21 MiB -1 -1 0.13 28348 1 0.10 -1 -1 33640 -1 -1 5 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68824 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 28.6 MiB 0.09 970 357 7618 3706 3854 58 67.2 MiB 0.07 0.00 1.70986 1.33396 -41.3499 -1.33396 1.33396 0.72 0.000319532 0.000259584 0.0250611 0.0208125 -1 -1 -1 -1 30 793 34 6.95648e+06 72378.4 556674. 1926.21 2.48 0.123097 0.0993024 25186 138497 -1 695 16 417 417 29539 7653 1.17203 1.17203 -44.8629 -1.17203 0 0 706193. 2443.58 0.06 0.03 0.16 -1 -1 0.06 0.0109929 0.00947272 24 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_016bits.v common 5.23 vpr 67.47 MiB -1 -1 0.13 28476 1 0.03 -1 -1 33748 -1 -1 5 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69092 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 28.8 MiB 0.07 869 355 8271 3817 4344 110 67.5 MiB 0.08 0.00 1.47026 1.34496 -44.3053 -1.34496 1.34496 0.94 0.000306656 0.000255783 0.0261 0.0214384 -1 -1 -1 -1 30 772 38 6.95648e+06 72378.4 556674. 1926.21 2.19 0.122545 0.100355 25186 138497 -1 666 19 524 524 45931 13348 1.33463 1.33463 -46.379 -1.33463 0 0 706193. 2443.58 0.11 0.04 0.20 -1 -1 0.11 0.0141112 0.0116043 25 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_018bits.v common 5.44 vpr 67.52 MiB -1 -1 0.12 28316 1 0.03 -1 -1 33532 -1 -1 5 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69136 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 28.9 MiB 0.10 839 367 10981 3658 7131 192 67.5 MiB 0.09 0.00 1.36696 1.36696 -50.0497 -1.36696 1.36696 0.69 0.000340862 0.00028324 0.0336687 0.027858 -1 -1 -1 -1 30 979 44 6.95648e+06 72378.4 556674. 1926.21 2.40 0.130819 0.108076 25186 138497 -1 727 20 506 506 42952 11214 1.19403 1.19403 -51.6049 -1.19403 0 0 706193. 2443.58 0.06 0.08 0.33 -1 -1 0.06 0.02841 0.019984 28 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_020bits.v common 3.56 vpr 67.70 MiB -1 -1 0.13 28604 1 0.03 -1 -1 33760 -1 -1 5 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69320 41 21 146 147 1 95 67 17 17 289 -1 unnamed_device 29.1 MiB 0.11 960 470 12307 4705 7498 104 67.7 MiB 0.10 0.00 1.38896 1.38896 -57.1777 -1.38896 1.38896 0.53 0.000407892 0.000339736 0.0391067 0.0305828 -1 -1 -1 -1 32 935 22 6.95648e+06 72378.4 586450. 2029.24 0.84 0.0873189 0.0706385 25474 144626 -1 770 18 500 500 38423 9800 1.29923 1.29923 -60.1992 -1.29923 0 0 744469. 2576.02 0.07 0.05 0.21 -1 -1 0.07 0.015467 0.0133138 31 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_022bits.v common 6.02 vpr 67.41 MiB -1 -1 0.13 28156 1 0.03 -1 -1 33612 -1 -1 6 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69028 45 23 160 161 1 107 74 17 17 289 -1 unnamed_device 28.6 MiB 0.14 1184 477 13559 5769 7641 149 67.4 MiB 0.12 0.00 1.66156 1.41096 -62.4672 -1.41096 1.41096 0.73 0.000431588 0.000359547 0.0383088 0.031557 -1 -1 -1 -1 32 1183 31 6.95648e+06 86854.1 586450. 2029.24 2.72 0.150545 0.12506 25474 144626 -1 865 17 544 544 44599 12124 1.42453 1.42453 -67.1308 -1.42453 0 0 744469. 2576.02 0.09 0.05 0.33 -1 -1 0.09 0.0209503 0.0188903 34 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_024bits.v common 5.80 vpr 67.89 MiB -1 -1 0.13 28220 1 0.03 -1 -1 33864 -1 -1 8 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69524 49 25 174 175 1 119 82 17 17 289 -1 unnamed_device 29.1 MiB 0.05 1512 843 22332 10803 11389 140 67.9 MiB 0.17 0.00 1.71466 1.43296 -76.9075 -1.43296 1.43296 0.91 0.000446788 0.00036791 0.0562328 0.0462791 -1 -1 -1 -1 34 1422 16 6.95648e+06 115805 618332. 2139.56 2.54 0.166978 0.137545 25762 151098 -1 1330 19 584 584 53790 12272 1.26623 1.26623 -78.5169 -1.26623 0 0 787024. 2723.27 0.07 0.08 0.27 -1 -1 0.07 0.0274496 0.0247562 38 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_028bits.v common 6.19 vpr 67.93 MiB -1 -1 0.14 28472 1 0.04 -1 -1 33672 -1 -1 9 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69564 57 29 202 203 1 142 95 17 17 289 -1 unnamed_device 28.8 MiB 0.08 1634 735 26015 11082 14785 148 67.9 MiB 0.19 0.00 1.72756 1.47696 -81.8232 -1.47696 1.47696 0.66 0.000607796 0.000555906 0.0624102 0.0515466 -1 -1 -1 -1 34 1639 41 6.95648e+06 130281 618332. 2139.56 2.96 0.239014 0.197919 25762 151098 -1 1350 22 754 754 69079 18401 1.58763 1.58763 -93.9257 -1.58763 0 0 787024. 2723.27 0.07 0.07 0.37 -1 -1 0.07 0.026632 0.0221903 44 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_032bits.v common 6.98 vpr 68.08 MiB -1 -1 0.15 28476 1 0.03 -1 -1 33740 -1 -1 9 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69716 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 28.8 MiB 0.10 1634 1055 28696 12169 16406 121 68.1 MiB 0.21 0.00 1.88129 1.88129 -102.595 -1.88129 1.88129 0.76 0.000541531 0.000448732 0.0664405 0.0548487 -1 -1 -1 -1 46 1587 21 6.95648e+06 130281 828058. 2865.25 3.51 0.244778 0.204507 28066 200906 -1 1455 18 752 752 59875 14168 1.30203 1.30203 -95.4313 -1.30203 0 0 1.01997e+06 3529.29 0.12 0.07 0.40 -1 -1 0.12 0.0280759 0.0244486 50 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_048bits.v common 6.45 vpr 68.51 MiB -1 -1 0.15 28664 1 0.03 -1 -1 33376 -1 -1 14 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70152 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 29.0 MiB 0.15 2920 1828 51372 23899 27336 137 68.5 MiB 0.33 0.00 2.54292 2.41762 -172.25 -2.41762 2.41762 0.88 0.000458838 0.000376082 0.0894266 0.0742678 -1 -1 -1 -1 52 2732 21 6.95648e+06 202660 926341. 3205.33 2.27 0.287901 0.245238 29218 227130 -1 2509 18 1003 1003 100542 22799 1.72663 1.72663 -165.9 -1.72663 0 0 1.14541e+06 3963.36 0.10 0.10 0.47 -1 -1 0.10 0.0377622 0.0335056 74 2 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml adder_064bits.v common 7.88 vpr 69.17 MiB -1 -1 0.17 28732 1 0.04 -1 -1 33840 -1 -1 19 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70832 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 29.6 MiB 0.22 3954 2427 76413 34812 41380 221 69.2 MiB 0.68 0.01 3.40016 2.95395 -245.391 -2.95395 2.95395 0.92 0.00111889 0.00092483 0.158474 0.133797 -1 -1 -1 -1 52 3653 42 6.95648e+06 275038 926341. 3205.33 3.10 0.44623 0.383142 29218 227130 -1 3183 16 1252 1252 117805 26608 1.73803 1.73803 -215.164 -1.73803 0 0 1.14541e+06 3963.36 0.16 0.16 0.55 -1 -1 0.16 0.0562826 0.0481313 98 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_004bits.v common 4.24 vpr 66.51 MiB -1 -1 0.12 28092 1 0.03 -1 -1 33524 -1 -1 1 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68104 9 5 34 35 1 15 15 17 17 289 -1 unnamed_device 28.1 MiB 0.01 205 44 1023 368 634 21 66.5 MiB 0.01 0.00 1.08519 0.583992 -8.84647 -0.583992 0.583992 0.66 0.000104889 8.4689e-05 0.00635376 0.00515301 -1 -1 -1 -1 24 102 10 6.99608e+06 14715.7 470940. 1629.55 1.75 0.0305048 0.0241497 24034 113901 -1 83 11 40 40 1416 580 0.87204 0.87204 -8.50637 -0.87204 0 0 586450. 2029.24 0.07 0.01 0.17 -1 -1 0.07 0.00378487 0.00327315 7 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_005bits.v common 4.05 vpr 66.83 MiB -1 -1 0.12 28348 1 0.03 -1 -1 33416 -1 -1 1 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68436 11 6 41 42 1 19 18 17 17 289 -1 unnamed_device 28.6 MiB 0.01 223 61 1122 432 676 14 66.8 MiB 0.02 0.00 1.08519 0.688132 -11.6961 -0.688132 0.688132 0.74 0.000123067 0.000100565 0.00640209 0.00520662 -1 -1 -1 -1 18 149 17 6.99608e+06 14715.7 376052. 1301.22 1.27 0.0305162 0.0245625 22882 88689 -1 134 8 73 73 3090 1198 0.834592 0.834592 -12.8059 -0.834592 0 0 470940. 1629.55 0.05 0.01 0.18 -1 -1 0.05 0.0039655 0.00350848 8 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_006bits.v common 3.76 vpr 66.95 MiB -1 -1 0.12 28088 1 0.02 -1 -1 33496 -1 -1 2 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68552 13 7 48 49 1 26 22 17 17 289 -1 unnamed_device 28.6 MiB 0.01 277 79 1912 698 1195 19 66.9 MiB 0.02 0.00 1.12264 0.802432 -14.4781 -0.802432 0.802432 0.87 0.000126043 0.000100685 0.00973281 0.0080729 -1 -1 -1 -1 22 207 11 6.99608e+06 29431.4 443629. 1535.05 1.34 0.0364491 0.0301656 23458 102101 -1 159 7 84 84 3982 1421 0.802432 0.802432 -14.9435 -0.802432 0 0 531479. 1839.03 0.05 0.01 0.16 -1 -1 0.05 0.00408062 0.00343004 10 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_007bits.v common 4.44 vpr 66.87 MiB -1 -1 0.12 28220 1 0.02 -1 -1 33552 -1 -1 2 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68472 15 8 55 56 1 31 25 17 17 289 -1 unnamed_device 28.6 MiB 0.02 389 88 2689 1181 1485 23 66.9 MiB 0.03 0.00 1.33579 0.813432 -16.6874 -0.813432 0.813432 0.90 0.000160816 0.000131584 0.0126923 0.010215 -1 -1 -1 -1 22 260 14 6.99608e+06 29431.4 443629. 1535.05 1.74 0.0428499 0.0344787 23458 102101 -1 145 12 129 129 4768 2057 0.938732 0.938732 -17.5287 -0.938732 0 0 531479. 1839.03 0.06 0.01 0.23 -1 -1 0.06 0.00554449 0.00478795 11 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_008bits.v common 3.01 vpr 66.85 MiB -1 -1 0.13 28472 1 0.03 -1 -1 33768 -1 -1 2 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68452 17 9 62 63 1 37 28 17 17 289 -1 unnamed_device 28.3 MiB 0.02 382 193 3094 1377 1697 20 66.8 MiB 0.03 0.00 0.959892 0.959892 -21.1735 -0.959892 0.959892 0.67 0.000170598 0.000141422 0.0135453 0.0111879 -1 -1 -1 -1 26 389 11 6.99608e+06 29431.4 503264. 1741.40 0.48 0.032785 0.0266152 24322 120374 -1 365 10 116 116 7881 2181 1.04203 1.04203 -22.9324 -1.04203 0 0 618332. 2139.56 0.06 0.01 0.20 -1 -1 0.06 0.00528469 0.004615 13 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_009bits.v common 4.52 vpr 66.73 MiB -1 -1 0.09 28092 1 0.02 -1 -1 33528 -1 -1 4 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68336 19 10 69 70 1 43 33 17 17 289 -1 unnamed_device 28.4 MiB 0.02 454 137 3881 1383 2446 52 66.7 MiB 0.05 0.00 1.08519 0.846432 -21.7557 -0.846432 0.846432 0.78 0.000240475 0.000201299 0.0169614 0.0138061 -1 -1 -1 -1 28 374 24 6.99608e+06 58862.7 531479. 1839.03 2.07 0.0732639 0.0592853 24610 126494 -1 311 24 266 266 17543 5659 1.22233 1.22233 -24.5302 -1.22233 0 0 648988. 2245.63 0.08 0.04 0.21 -1 -1 0.08 0.0101683 0.00857057 15 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_010bits.v common 3.35 vpr 66.90 MiB -1 -1 0.12 27964 1 0.03 -1 -1 33608 -1 -1 4 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68504 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 28.6 MiB 0.01 509 158 4225 1873 2301 51 66.9 MiB 0.05 0.00 1.08519 0.868432 -24.4316 -0.868432 0.868432 0.82 0.000232726 0.000197486 0.0172424 0.014308 -1 -1 -1 -1 28 462 27 6.99608e+06 58862.7 531479. 1839.03 0.80 0.0552084 0.0468769 24610 126494 -1 336 31 370 370 21059 6498 1.09703 1.09703 -25.5384 -1.09703 0 0 648988. 2245.63 0.07 0.03 0.24 -1 -1 0.07 0.0131369 0.0108833 17 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_011bits.v common 4.84 vpr 66.75 MiB -1 -1 0.13 28344 1 0.03 -1 -1 33572 -1 -1 4 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68356 23 12 83 84 1 54 39 17 17 289 -1 unnamed_device 28.2 MiB 0.02 663 190 5715 2454 3184 77 66.8 MiB 0.03 0.00 1.21049 0.879432 -27.0583 -0.879432 0.879432 0.70 0.000128322 0.000105166 0.0120664 0.00995167 -1 -1 -1 -1 30 510 25 6.99608e+06 58862.7 556674. 1926.21 2.23 0.0826051 0.0670478 25186 138497 -1 331 23 368 368 17628 5919 1.36963 1.36963 -29.4613 -1.36963 0 0 706193. 2443.58 0.06 0.03 0.23 -1 -1 0.06 0.0110681 0.00933981 18 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_012bits.v common 4.86 vpr 67.14 MiB -1 -1 0.13 27964 1 0.03 -1 -1 33720 -1 -1 5 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68748 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 28.6 MiB 0.02 779 198 5293 2173 3072 48 67.1 MiB 0.03 0.00 1.27733 0.901432 -29.7374 -0.901432 0.901432 0.79 0.000137032 0.000111947 0.0107843 0.00885278 -1 -1 -1 -1 36 489 22 6.99608e+06 73578.4 648988. 2245.63 1.91 0.0698186 0.0567327 26050 158493 -1 407 18 361 361 25826 8171 1.05303 1.05303 -30.2541 -1.05303 0 0 828058. 2865.25 0.07 0.03 0.33 -1 -1 0.07 0.0111111 0.00957637 20 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_013bits.v common 4.08 vpr 67.14 MiB -1 -1 0.12 28088 1 0.03 -1 -1 33608 -1 -1 5 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68752 27 14 97 98 1 66 46 17 17 289 -1 unnamed_device 28.7 MiB 0.03 912 309 6524 2717 3744 63 67.1 MiB 0.06 0.00 1.31848 0.912432 -33.4679 -0.912432 0.912432 0.75 0.000273599 0.000227467 0.0220854 0.0181238 -1 -1 -1 -1 28 745 16 6.99608e+06 73578.4 531479. 1839.03 1.51 0.082468 0.067609 24610 126494 -1 648 19 368 368 28847 7298 1.03773 1.03773 -38.2288 -1.03773 0 0 648988. 2245.63 0.06 0.03 0.18 -1 -1 0.06 0.01126 0.00950542 21 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_014bits.v common 5.76 vpr 67.31 MiB -1 -1 0.13 28220 1 0.03 -1 -1 33696 -1 -1 5 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68928 29 15 104 105 1 72 49 17 17 289 -1 unnamed_device 28.7 MiB 0.04 907 254 6635 2857 3716 62 67.3 MiB 0.05 0.00 1.24794 0.934432 -35.1503 -0.934432 0.934432 0.70 0.000272176 0.000222375 0.0184514 0.0151282 -1 -1 -1 -1 36 614 27 6.99608e+06 73578.4 648988. 2245.63 3.12 0.111071 0.0913914 26050 158493 -1 480 18 415 415 28029 8782 1.16303 1.16303 -36.4961 -1.16303 0 0 828058. 2865.25 0.07 0.03 0.24 -1 -1 0.07 0.0129642 0.0109493 23 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_015bits.v common 4.54 vpr 67.42 MiB -1 -1 0.13 28476 1 0.03 -1 -1 33520 -1 -1 5 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69040 31 16 111 112 1 78 52 17 17 289 -1 unnamed_device 29.0 MiB 0.03 970 420 8200 3823 4344 33 67.4 MiB 0.06 0.00 1.59366 1.30576 -41.5317 -1.30576 1.30576 0.63 0.000339021 0.000280744 0.0187029 0.0154168 -1 -1 -1 -1 28 959 27 6.99608e+06 73578.4 531479. 1839.03 1.98 0.116521 0.0973071 24610 126494 -1 792 19 428 428 37069 8760 1.17203 1.17203 -45.5785 -1.17203 0 0 648988. 2245.63 0.06 0.03 0.20 -1 -1 0.06 0.0128619 0.011037 24 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_016bits.v common 5.25 vpr 67.07 MiB -1 -1 0.14 28348 1 0.03 -1 -1 33876 -1 -1 5 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68676 33 17 118 119 1 81 55 17 17 289 -1 unnamed_device 28.6 MiB 0.03 869 329 8167 3637 4405 125 67.1 MiB 0.08 0.00 1.36506 1.31676 -42.9708 -1.31676 1.31676 0.73 0.000395815 0.000336742 0.0264197 0.0217988 -1 -1 -1 -1 34 787 40 6.99608e+06 73578.4 618332. 2139.56 2.57 0.156135 0.122727 25762 151098 -1 625 17 469 469 36673 9839 1.18018 1.18018 -43.7027 -1.18018 0 0 787024. 2723.27 0.07 0.04 0.24 -1 -1 0.07 0.0127583 0.0110199 25 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_018bits.v common 4.47 vpr 67.23 MiB -1 -1 0.13 28336 1 0.03 -1 -1 33312 -1 -1 5 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68848 37 19 132 133 1 87 61 17 17 289 -1 unnamed_device 28.6 MiB 0.03 839 367 8821 3129 5541 151 67.2 MiB 0.10 0.00 1.32776 1.32776 -49.0297 -1.32776 1.32776 0.83 0.000351484 0.000287996 0.0322137 0.0274986 -1 -1 -1 -1 32 899 19 6.99608e+06 73578.4 586450. 2029.24 1.35 0.103002 0.0876461 25474 144626 -1 683 19 499 499 46981 11691 1.12803 1.12803 -48.5742 -1.12803 0 0 744469. 2576.02 0.08 0.06 0.23 -1 -1 0.08 0.0162888 0.0129308 28 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_020bits.v common 5.01 vpr 67.46 MiB -1 -1 0.13 28344 1 0.02 -1 -1 33780 -1 -1 5 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69080 41 21 146 147 1 94 67 17 17 289 -1 unnamed_device 28.7 MiB 0.04 958 697 13259 6095 7125 39 67.5 MiB 0.11 0.00 1.37866 1.36076 -62.6109 -1.36076 1.36076 0.76 0.000525987 0.000361951 0.0421702 0.0351921 -1 -1 -1 -1 30 1202 29 6.99608e+06 73578.4 556674. 1926.21 2.24 0.14609 0.122061 25186 138497 -1 1066 18 514 514 45140 9864 1.11273 1.11273 -62.8002 -1.11273 0 0 706193. 2443.58 0.06 0.04 0.21 -1 -1 0.06 0.0150846 0.0128912 31 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_022bits.v common 3.37 vpr 67.36 MiB -1 -1 0.09 28860 1 0.02 -1 -1 33772 -1 -1 6 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68972 45 23 160 161 1 108 74 17 17 289 -1 unnamed_device 28.7 MiB 0.02 1186 792 15729 7645 8021 63 67.4 MiB 0.07 0.00 1.52721 1.38276 -69.0613 -1.38276 1.38276 0.40 0.00022227 0.000181989 0.0243906 0.0200281 -1 -1 -1 -1 28 1478 32 6.99608e+06 88294.1 531479. 1839.03 1.40 0.109093 0.0900961 24610 126494 -1 1293 16 598 598 58207 12938 1.23803 1.23803 -73.3735 -1.23803 0 0 648988. 2245.63 0.06 0.05 0.22 -1 -1 0.06 0.0160396 0.0138586 34 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_024bits.v common 2.13 vpr 67.39 MiB -1 -1 0.10 28472 1 0.03 -1 -1 33896 -1 -1 8 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69004 49 25 174 175 1 118 82 17 17 289 -1 unnamed_device 28.5 MiB 0.03 1510 816 21798 10735 10927 136 67.4 MiB 0.09 0.00 1.60851 1.40476 -73.4247 -1.40476 1.40476 0.39 0.000248903 0.000205436 0.0326884 0.0268938 -1 -1 -1 -1 32 1398 24 6.99608e+06 117725 586450. 2029.24 0.46 0.0635119 0.0524818 25474 144626 -1 1274 16 527 527 44357 10027 1.15673 1.15673 -74.5734 -1.15673 0 0 744469. 2576.02 0.04 0.02 0.12 -1 -1 0.04 0.00915476 0.00791433 38 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_028bits.v common 5.10 vpr 67.19 MiB -1 -1 0.14 28472 1 0.03 -1 -1 33700 -1 -1 9 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68800 57 29 202 203 1 141 95 17 17 289 -1 unnamed_device 28.3 MiB 0.05 1632 819 24719 9992 14592 135 67.2 MiB 0.18 0.00 1.59321 1.44876 -84.2441 -1.44876 1.44876 0.70 0.00050193 0.000409365 0.062609 0.0517038 -1 -1 -1 -1 34 1700 46 6.99608e+06 132441 618332. 2139.56 2.69 0.240825 0.200545 25762 151098 -1 1306 14 649 649 51746 13131 1.31503 1.31503 -84.8663 -1.31503 0 0 787024. 2723.27 0.04 0.03 0.14 -1 -1 0.04 0.0113272 0.0099141 44 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_032bits.v common 5.72 vpr 67.62 MiB -1 -1 0.11 28476 1 0.03 -1 -1 33388 -1 -1 9 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69244 65 33 230 231 1 162 107 17 17 289 -1 unnamed_device 28.7 MiB 0.06 1634 1198 29202 14093 15020 89 67.6 MiB 0.22 0.00 1.84209 1.84209 -103.763 -1.84209 1.84209 0.63 0.000617046 0.000511852 0.069933 0.0577274 -1 -1 -1 -1 36 1995 23 6.99608e+06 132441 648988. 2245.63 3.35 0.259555 0.216826 26050 158493 -1 1854 18 805 805 88831 19656 1.34603 1.34603 -105.836 -1.34603 0 0 828058. 2865.25 0.05 0.04 0.16 -1 -1 0.05 0.0135816 0.0116806 50 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_048bits.v common 10.06 vpr 68.45 MiB -1 -1 0.16 28728 1 0.03 -1 -1 33612 -1 -1 14 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70092 97 49 342 343 1 243 160 17 17 289 -1 unnamed_device 29.0 MiB 0.09 2920 1766 50938 23504 27308 126 68.4 MiB 0.41 0.01 2.50372 2.37842 -169.127 -2.37842 2.37842 0.66 0.000838857 0.000680957 0.105218 0.0871003 -1 -1 -1 -1 42 2796 31 6.99608e+06 206020 744469. 2576.02 6.98 0.356885 0.300749 27202 183097 -1 2556 19 1048 1048 110675 24935 1.75248 1.75248 -169.469 -1.75248 0 0 949917. 3286.91 0.08 0.10 0.25 -1 -1 0.08 0.0425045 0.0318715 74 2 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml adder_064bits.v common 17.72 vpr 68.93 MiB -1 -1 0.17 28988 1 0.05 -1 -1 34076 -1 -1 19 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70584 129 65 454 455 1 324 213 17 17 289 -1 unnamed_device 29.5 MiB 0.11 3954 2398 74508 33216 41078 214 68.9 MiB 0.64 0.01 3.2376 2.91475 -244.27 -2.91475 2.91475 0.48 0.00142811 0.00123445 0.144457 0.119309 -1 -1 -1 -1 46 3720 27 6.99608e+06 279598 828058. 2865.25 14.09 0.721647 0.608061 28066 200906 -1 3253 39 1524 1524 296660 136352 1.63003 1.63003 -208.03 -1.63003 0 0 1.01997e+06 3529.29 0.06 0.30 0.22 -1 -1 0.06 0.0810524 0.0715545 98 2 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_004bits.v common 3.93 vpr 66.54 MiB -1 -1 0.13 28340 2 0.07 -1 -1 35672 -1 -1 1 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68136 9 5 28 33 1 16 15 17 17 289 -1 unnamed_device 28.2 MiB 0.01 209 48 1203 413 737 53 66.5 MiB 0.02 0.00 1.08519 0.808785 -9.78651 -0.808785 0.808785 0.72 0.000105586 8.3906e-05 0.00753565 0.00591177 -1 -1 -1 -1 22 116 5 6.79088e+06 13472 443629. 1535.05 1.22 0.026095 0.0203882 22798 101617 -1 102 7 41 41 1879 668 0.808785 0.808785 -10.4488 -0.808785 0 0 531479. 1839.03 0.05 0.01 0.16 -1 -1 0.05 0.00307235 0.00273422 8 6 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_005bits.v common 3.56 vpr 66.54 MiB -1 -1 0.13 28472 2 0.07 -1 -1 35676 -1 -1 2 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68136 11 6 34 40 1 22 19 17 17 289 -1 unnamed_device 28.1 MiB 0.01 237 69 1719 725 963 31 66.5 MiB 0.02 0.00 1.08519 0.847985 -12.7677 -0.847985 0.847985 0.92 0.000125256 9.9737e-05 0.00898106 0.00715894 -1 -1 -1 -1 20 194 18 6.79088e+06 26944 414966. 1435.87 0.93 0.0175019 0.0142103 22510 95286 -1 138 6 72 79 2773 1069 0.847985 0.847985 -12.5708 -0.847985 0 0 503264. 1741.40 0.04 0.01 0.14 -1 -1 0.04 0.00338054 0.00302163 10 7 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_006bits.v common 4.35 vpr 66.10 MiB -1 -1 0.13 28336 3 0.07 -1 -1 35424 -1 -1 2 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67684 13 7 41 48 1 29 22 17 17 289 -1 unnamed_device 28.0 MiB 0.02 305 92 1912 811 1081 20 66.1 MiB 0.03 0.00 1.31004 1.18474 -15.908 -1.18474 1.18474 0.77 0.000164472 0.000136426 0.0131537 0.0113454 -1 -1 -1 -1 26 205 11 6.79088e+06 26944 503264. 1741.40 1.61 0.0458183 0.0372718 23662 119890 -1 168 9 106 110 3697 1555 1.0952 1.0952 -15.6136 -1.0952 0 0 618332. 2139.56 0.06 0.01 0.25 -1 -1 0.06 0.0044607 0.00392792 11 9 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_007bits.v common 4.31 vpr 66.25 MiB -1 -1 0.13 28468 3 0.08 -1 -1 35644 -1 -1 2 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67836 15 8 47 55 1 35 25 17 17 289 -1 unnamed_device 27.8 MiB 0.07 371 164 2473 1054 1391 28 66.2 MiB 0.02 0.00 1.27433 1.27433 -20.1546 -1.27433 1.27433 0.66 0.000156525 0.00012445 0.0108014 0.00891857 -1 -1 -1 -1 24 328 11 6.79088e+06 26944 470940. 1629.55 1.57 0.0405662 0.0333938 23374 113417 -1 285 7 104 113 5462 1679 1.27433 1.27433 -21.4093 -1.27433 0 0 586450. 2029.24 0.10 0.02 0.18 -1 -1 0.10 0.012745 0.0122181 13 10 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_008bits.v common 4.09 vpr 66.44 MiB -1 -1 0.13 28088 3 0.07 -1 -1 35624 -1 -1 4 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68032 17 9 56 65 1 41 30 17 17 289 -1 unnamed_device 28.2 MiB 0.13 449.662 132 3342 1384 1926 32 66.4 MiB 0.04 0.00 2.02618 1.77558 -23.2443 -1.77558 1.77558 0.71 0.000199503 0.000160971 0.0146309 0.0118484 -1 -1 -1 -1 22 468 19 6.79088e+06 53888 443629. 1535.05 1.31 0.0466651 0.0377349 22798 101617 -1 334 9 170 214 10103 3843 1.65028 1.65028 -24.5406 -1.65028 0 0 531479. 1839.03 0.05 0.01 0.16 -1 -1 0.05 0.00577068 0.00503273 16 14 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_009bits.v common 4.68 vpr 66.59 MiB -1 -1 0.13 28344 4 0.07 -1 -1 35556 -1 -1 3 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68192 19 10 60 70 1 46 32 17 17 289 -1 unnamed_device 28.2 MiB 0.10 639 148 3782 1533 2221 28 66.6 MiB 0.04 0.00 2.02618 1.65028 -26.721 -1.65028 1.65028 0.70 0.000215889 0.000174548 0.0160387 0.0130313 -1 -1 -1 -1 28 442 17 6.79088e+06 40416 531479. 1839.03 2.02 0.0553179 0.0447602 23950 126010 -1 348 11 208 231 9967 3806 1.65028 1.65028 -28.1888 -1.65028 0 0 648988. 2245.63 0.06 0.01 0.23 -1 -1 0.06 0.00621426 0.00541004 17 13 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_010bits.v common 4.97 vpr 66.38 MiB -1 -1 0.13 28344 4 0.05 -1 -1 35400 -1 -1 4 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67968 21 11 69 80 1 55 36 17 17 289 -1 unnamed_device 28.2 MiB 0.14 856 197 4225 1712 2480 33 66.4 MiB 0.05 0.00 2.78939 1.77558 -30.2065 -1.77558 1.77558 0.87 0.000248771 0.000204955 0.0171627 0.0139851 -1 -1 -1 -1 28 594 22 6.79088e+06 53888 531479. 1839.03 2.03 0.0766632 0.0630905 23950 126010 -1 486 14 294 368 20393 6771 1.68943 1.68943 -32.5309 -1.68943 0 0 648988. 2245.63 0.08 0.04 0.25 -1 -1 0.08 0.0110344 0.00785515 21 17 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_011bits.v common 4.41 vpr 66.29 MiB -1 -1 0.13 28216 5 0.07 -1 -1 35300 -1 -1 4 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67884 23 12 76 88 1 59 39 17 17 289 -1 unnamed_device 27.9 MiB 0.09 607 292 4197 1627 2535 35 66.3 MiB 0.04 0.00 2.28022 1.90432 -35.0464 -1.90432 1.90432 0.75 0.000251139 0.000201124 0.0171264 0.0138675 -1 -1 -1 -1 26 646 15 6.79088e+06 53888 503264. 1741.40 1.85 0.0936396 0.0770462 23662 119890 -1 567 14 240 296 18822 5189 1.88974 1.88974 -38.4941 -1.88974 0 0 618332. 2139.56 0.08 0.03 0.29 -1 -1 0.08 0.0098397 0.00794074 23 19 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_012bits.v common 4.33 vpr 66.59 MiB -1 -1 0.14 28228 5 0.08 -1 -1 35456 -1 -1 4 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68192 25 13 83 96 1 65 42 17 17 289 -1 unnamed_device 28.1 MiB 0.18 665 445 7314 3391 3884 39 66.6 MiB 0.07 0.00 1.97928 1.85398 -41.8942 -1.85398 1.85398 0.68 0.000258435 0.000212316 0.0282777 0.0232198 -1 -1 -1 -1 26 826 16 6.79088e+06 53888 503264. 1741.40 1.77 0.0996559 0.08422 23662 119890 -1 759 14 255 316 19671 4969 1.97928 1.97928 -45.2485 -1.97928 0 0 618332. 2139.56 0.04 0.01 0.11 -1 -1 0.04 0.00611981 0.00528011 24 21 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_013bits.v common 3.56 vpr 66.56 MiB -1 -1 0.14 28468 5 0.08 -1 -1 35672 -1 -1 5 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68160 27 14 91 105 1 70 46 17 17 289 -1 unnamed_device 27.9 MiB 0.11 843.637 451 7344 3657 3643 44 66.6 MiB 0.08 0.00 2.65617 2.15497 -46.5473 -2.15497 2.15497 0.69 0.000300421 0.00024642 0.0316715 0.0266846 -1 -1 -1 -1 26 892 14 6.79088e+06 67360 503264. 1741.40 0.78 0.0755657 0.0567422 23662 119890 -1 809 17 279 376 23621 5952 2.01853 2.01853 -48.5015 -2.01853 0 0 618332. 2139.56 0.06 0.03 0.21 -1 -1 0.06 0.0122121 0.0105306 28 24 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_014bits.v common 3.42 vpr 66.43 MiB -1 -1 0.11 28208 6 0.05 -1 -1 35364 -1 -1 5 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68028 29 15 95 110 1 77 49 17 17 289 -1 unnamed_device 27.8 MiB 0.06 961.223 350 7881 3342 4505 34 66.4 MiB 0.07 0.00 2.90682 2.40562 -47.7565 -2.40562 2.40562 0.77 0.000309135 0.000255761 0.0285433 0.0234931 -1 -1 -1 -1 26 1012 19 6.79088e+06 67360 503264. 1741.40 0.82 0.0736885 0.0617762 23662 119890 -1 796 17 382 476 33792 9791 2.3049 2.3049 -52.0812 -2.3049 0 0 618332. 2139.56 0.06 0.03 0.19 -1 -1 0.06 0.0125804 0.0108493 29 23 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_015bits.v common 3.50 vpr 66.55 MiB -1 -1 0.13 28216 6 0.08 -1 -1 35600 -1 -1 6 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68148 31 16 104 120 1 82 53 17 17 289 -1 unnamed_device 28.1 MiB 0.11 834 431 8171 3730 4406 35 66.6 MiB 0.09 0.00 2.56669 2.31609 -52.4812 -2.31609 2.31609 0.81 0.000363819 0.000298311 0.0321494 0.0266549 -1 -1 -1 -1 26 893 24 6.79088e+06 80832 503264. 1741.40 0.74 0.0801804 0.0671659 23662 119890 -1 765 13 299 357 23950 6789 2.15159 2.15159 -53.4184 -2.15159 0 0 618332. 2139.56 0.08 0.04 0.17 -1 -1 0.08 0.0201912 0.0139039 32 27 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_016bits.v common 5.34 vpr 66.82 MiB -1 -1 0.15 28344 7 0.08 -1 -1 35784 -1 -1 6 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68424 33 17 112 129 1 84 56 17 17 289 -1 unnamed_device 28.2 MiB 0.14 1139.21 343 9472 4134 5302 36 66.8 MiB 0.10 0.00 3.53338 2.65628 -57.6475 -2.65628 2.65628 0.68 0.000370855 0.00030722 0.0366829 0.0297386 -1 -1 -1 -1 30 850 34 6.79088e+06 80832 556674. 1926.21 2.57 0.162257 0.131488 24526 138013 -1 637 11 371 500 22689 6902 2.44144 2.44144 -53.5338 -2.44144 0 0 706193. 2443.58 0.05 0.02 0.19 -1 -1 0.05 0.00691349 0.00606703 33 30 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_018bits.v common 3.74 vpr 66.71 MiB -1 -1 0.13 28600 7 0.08 -1 -1 35876 -1 -1 8 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68316 37 19 127 146 1 96 64 17 17 289 -1 unnamed_device 28.1 MiB 0.26 976.159 473 9970 3992 5929 49 66.7 MiB 0.11 0.00 2.68552 2.56674 -65.8297 -2.56674 2.56674 0.74 0.000414941 0.000326887 0.0398844 0.03005 -1 -1 -1 -1 30 910 16 6.79088e+06 107776 556674. 1926.21 0.75 0.0867132 0.068957 24526 138013 -1 837 15 306 399 20730 5795 2.44144 2.44144 -65.5726 -2.44144 0 0 706193. 2443.58 0.04 0.02 0.20 -1 -1 0.04 0.010527 0.00914239 38 35 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_020bits.v common 7.80 vpr 66.68 MiB -1 -1 0.11 28432 8 0.08 -1 -1 35584 -1 -1 9 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68280 41 21 139 160 1 108 71 17 17 289 -1 unnamed_device 28.1 MiB 0.15 1324.99 440 13065 6132 6901 32 66.7 MiB 0.12 0.00 3.89147 3.01437 -75.9466 -3.01437 3.01437 0.82 0.000474981 0.000369882 0.0406798 0.0333334 -1 -1 -1 -1 48 772 22 6.79088e+06 121248 865456. 2994.66 4.55 0.204638 0.170699 27694 206865 -1 671 24 436 567 71362 43109 2.69897 2.69897 -68.9063 -2.69897 0 0 1.05005e+06 3633.38 0.09 0.07 0.33 -1 -1 0.09 0.0200048 0.0171805 42 37 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_022bits.v common 4.00 vpr 67.01 MiB -1 -1 0.15 28372 9 0.09 -1 -1 35900 -1 -1 9 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68616 45 23 153 176 1 118 77 17 17 289 -1 unnamed_device 28.2 MiB 0.22 1277 607 14258 6893 7328 37 67.0 MiB 0.12 0.00 3.71588 3.32208 -90.3763 -3.32208 3.32208 0.58 0.000486408 0.000399688 0.0440882 0.0363112 -1 -1 -1 -1 26 1378 36 6.79088e+06 121248 503264. 1741.40 1.15 0.143857 0.112856 23662 119890 -1 1185 16 505 657 46693 14514 3.23249 3.23249 -92.4973 -3.23249 0 0 618332. 2139.56 0.06 0.05 0.19 -1 -1 0.06 0.019943 0.0172616 45 41 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_024bits.v common 6.06 vpr 66.95 MiB -1 -1 0.15 28076 10 0.10 -1 -1 35652 -1 -1 10 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68560 49 25 166 191 1 129 84 17 17 289 -1 unnamed_device 27.9 MiB 0.40 1982 670 20763 10245 10457 61 67.0 MiB 0.16 0.00 4.27758 3.52584 -98.9645 -3.52584 3.52584 0.70 0.000276667 0.000222965 0.0520816 0.0424048 -1 -1 -1 -1 30 1418 28 6.79088e+06 134720 556674. 1926.21 2.72 0.216585 0.179339 24526 138013 -1 1075 15 458 557 29117 8113 3.1857 3.1857 -95.0294 -3.1857 0 0 706193. 2443.58 0.06 0.04 0.22 -1 -1 0.06 0.0168749 0.0146363 48 44 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_028bits.v common 6.71 vpr 67.58 MiB -1 -1 0.15 28852 11 0.10 -1 -1 35640 -1 -1 12 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69200 57 29 198 227 1 154 98 17 17 289 -1 unnamed_device 28.3 MiB 0.27 1926.99 815 23048 12104 10896 48 67.6 MiB 0.20 0.00 4.87618 4.28888 -131.656 -4.28888 4.28888 0.79 0.000636829 0.000524674 0.0644053 0.0528398 -1 -1 -1 -1 36 1622 22 6.79088e+06 161664 648988. 2245.63 3.30 0.276363 0.233864 25390 158009 -1 1373 14 577 755 45015 12214 3.86264 3.86264 -123.932 -3.86264 0 0 828058. 2865.25 0.07 0.04 0.25 -1 -1 0.07 0.0197281 0.0172016 57 56 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_032bits.v common 8.53 vpr 67.32 MiB -1 -1 0.12 28344 13 0.11 -1 -1 35956 -1 -1 11 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68936 65 33 224 257 1 173 109 17 17 289 -1 unnamed_device 27.9 MiB 0.38 2119.73 1027 24809 11504 13250 55 67.3 MiB 0.23 0.01 5.4723 4.79024 -157.807 -4.79024 4.79024 0.69 0.000690578 0.000562554 0.0668011 0.0545138 -1 -1 -1 -1 32 2132 14 6.79088e+06 148192 586450. 2029.24 5.23 0.321257 0.271839 24814 144142 -1 1848 14 631 858 65124 16340 4.364 4.364 -153.937 -4.364 0 0 744469. 2576.02 0.07 0.05 0.23 -1 -1 0.07 0.0218081 0.0189571 68 62 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_048bits.v common 7.02 vpr 68.36 MiB -1 -1 0.18 28856 19 0.13 -1 -1 36204 -1 -1 19 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70004 97 49 340 389 1 266 165 17 17 289 -1 unnamed_device 28.7 MiB 0.58 3159.23 1354 39489 18240 21162 87 68.4 MiB 0.31 0.01 7.92352 7.17824 -288.692 -7.17824 7.17824 0.51 0.00104986 0.000853181 0.0958819 0.0788641 -1 -1 -1 -1 38 2681 31 6.79088e+06 255968 678818. 2348.85 3.39 0.465601 0.394012 25966 169698 -1 2331 14 1023 1342 68939 19058 6.92764 6.92764 -283.642 -6.92764 0 0 902133. 3121.57 0.08 0.07 0.27 -1 -1 0.08 0.0319553 0.0279491 102 98 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml adder_064bits.v common 6.02 vpr 68.47 MiB -1 -1 0.20 29108 26 0.15 -1 -1 36160 -1 -1 25 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70112 129 65 453 518 1 343 219 17 17 289 -1 unnamed_device 29.1 MiB 0.94 4034.69 1970 65460 29160 36170 130 68.5 MiB 0.52 0.01 10.8833 10.5611 -512.681 -10.5611 10.5611 0.71 0.00137187 0.0011333 0.151405 0.126767 -1 -1 -1 -1 32 4127 18 6.79088e+06 336800 586450. 2029.24 1.45 0.342091 0.29436 24814 144142 -1 3384 16 1188 1571 108263 27652 9.9346 9.9346 -497.569 -9.9346 0 0 744469. 2576.02 0.07 0.13 0.24 -1 -1 0.07 0.0601686 0.0497161 133 131 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_004bits.v common 3.11 vpr 66.91 MiB -1 -1 0.12 28348 1 0.03 -1 -1 33208 -1 -1 2 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68512 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 28.5 MiB 0.06 189 55 816 168 625 23 66.9 MiB 0.01 0.00 0.981892 0.789073 -9.99152 -0.789073 0.789073 0.65 0.000102685 8.168e-05 0.00437409 0.00352528 -1 -1 -1 -1 20 126 13 6.87369e+06 27947.7 414966. 1435.87 0.47 0.00894468 0.00742685 23170 95770 -1 125 17 91 91 3829 1346 0.914373 0.914373 -11.0476 -0.914373 0 0 503264. 1741.40 0.05 0.01 0.14 -1 -1 0.05 0.00472774 0.00399817 10 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_005bits.v common 3.31 vpr 66.68 MiB -1 -1 0.12 28220 1 0.03 -1 -1 33780 -1 -1 3 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68280 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 28.3 MiB 0.06 299 94 1532 544 902 86 66.7 MiB 0.02 0.00 1.23249 0.811073 -13.1826 -0.811073 0.811073 0.76 0.000123776 9.8709e-05 0.00729465 0.00590903 -1 -1 -1 -1 20 212 24 6.87369e+06 41921.5 414966. 1435.87 0.56 0.0144516 0.0118358 23170 95770 -1 178 14 111 111 4595 1751 0.925373 0.925373 -13.8984 -0.925373 0 0 503264. 1741.40 0.07 0.02 0.16 -1 -1 0.07 0.00899426 0.00427346 13 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_006bits.v common 4.94 vpr 66.95 MiB -1 -1 0.13 28220 1 0.03 -1 -1 33684 -1 -1 4 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68560 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 28.7 MiB 0.07 362 134 2540 1085 1411 44 67.0 MiB 0.03 0.00 1.33579 0.833073 -16.2872 -0.833073 0.833073 0.80 0.000137622 0.000110571 0.0112497 0.00907671 -1 -1 -1 -1 26 352 14 6.87369e+06 55895.4 503264. 1741.40 2.10 0.0548167 0.0454284 24322 120374 -1 286 10 150 150 9134 2625 0.947373 0.947373 -17.7455 -0.947373 0 0 618332. 2139.56 0.05 0.01 0.20 -1 -1 0.05 0.00458934 0.00400057 15 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_007bits.v common 5.38 vpr 66.96 MiB -1 -1 0.12 28220 1 0.03 -1 -1 33764 -1 -1 3 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68564 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 28.6 MiB 0.13 368 151 2306 890 1384 32 67.0 MiB 0.04 0.00 1.2044 1.2044 -18.6661 -1.2044 1.2044 0.87 0.000146679 0.000118928 0.0117061 0.00975656 -1 -1 -1 -1 30 324 15 6.87369e+06 41921.5 556674. 1926.21 2.27 0.0552962 0.0447287 25186 138497 -1 290 13 160 160 7715 2416 0.967373 0.967373 -20.0868 -0.967373 0 0 706193. 2443.58 0.08 0.01 0.23 -1 -1 0.08 0.00587176 0.00509638 16 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_008bits.v common 4.44 vpr 66.61 MiB -1 -1 0.13 28348 1 0.03 -1 -1 33744 -1 -1 3 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68208 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 28.2 MiB 0.09 423 152 3417 1367 1982 68 66.6 MiB 0.04 0.00 1.2154 1.2154 -21.6308 -1.2154 1.2154 0.75 0.000159663 0.000130167 0.0154236 0.0128069 -1 -1 -1 -1 26 298 9 6.87369e+06 41921.5 503264. 1741.40 1.72 0.0654932 0.0500277 24322 120374 -1 307 11 201 201 10207 3519 1.00037 1.00037 -22.464 -1.00037 0 0 618332. 2139.56 0.06 0.01 0.19 -1 -1 0.06 0.00551358 0.00476602 19 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_009bits.v common 4.36 vpr 66.96 MiB -1 -1 0.13 28092 1 0.03 -1 -1 33420 -1 -1 3 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68568 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 28.6 MiB 0.08 520 166 3932 1503 2358 71 67.0 MiB 0.05 0.00 1.477 1.2264 -24.6083 -1.2264 1.2264 0.70 0.000253994 0.000210535 0.0162243 0.0132646 -1 -1 -1 -1 26 354 17 6.87369e+06 41921.5 503264. 1741.40 1.61 0.0637053 0.0517207 24322 120374 -1 313 14 191 191 12451 3955 1.11467 1.11467 -25.598 -1.11467 0 0 618332. 2139.56 0.10 0.02 0.25 -1 -1 0.10 0.00673916 0.00579448 20 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_010bits.v common 5.26 vpr 67.02 MiB -1 -1 0.13 28092 1 0.03 -1 -1 33752 -1 -1 4 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68624 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 28.7 MiB 0.10 520 176 4638 1830 2741 67 67.0 MiB 0.07 0.00 1.6836 1.2374 -27.3633 -1.2374 1.2374 0.87 0.000219612 0.000178351 0.0243924 0.0159052 -1 -1 -1 -1 30 346 14 6.87369e+06 55895.4 556674. 1926.21 2.05 0.0862339 0.0666144 25186 138497 -1 299 15 207 207 11595 3488 1.02237 1.02237 -26.7026 -1.02237 0 0 706193. 2443.58 0.07 0.02 0.27 -1 -1 0.07 0.00737863 0.00629384 22 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_011bits.v common 4.34 vpr 66.89 MiB -1 -1 0.13 28216 1 0.03 -1 -1 33628 -1 -1 5 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68500 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 28.6 MiB 0.09 536 200 4732 2023 2604 105 66.9 MiB 0.05 0.00 1.3407 1.2484 -30.1231 -1.2484 1.2484 0.79 0.000251648 0.000206428 0.0171956 0.0141908 -1 -1 -1 -1 28 530 18 6.87369e+06 69869.2 531479. 1839.03 1.43 0.0835793 0.0669808 24610 126494 -1 421 14 259 259 17012 4803 1.15867 1.15867 -31.4312 -1.15867 0 0 648988. 2245.63 0.06 0.02 0.21 -1 -1 0.06 0.00836783 0.00723749 24 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_012bits.v common 5.20 vpr 66.93 MiB -1 -1 0.13 28440 1 0.03 -1 -1 33504 -1 -1 5 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68540 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 28.3 MiB 0.09 640 220 4993 2025 2898 70 66.9 MiB 0.08 0.00 1.3847 1.2594 -33.23 -1.2594 1.2594 0.75 0.000244428 0.000201082 0.0271603 0.0175953 -1 -1 -1 -1 28 613 25 6.87369e+06 69869.2 531479. 1839.03 2.27 0.0911543 0.0705014 24610 126494 -1 500 15 339 339 22925 6897 1.17597 1.17597 -34.9744 -1.17597 0 0 648988. 2245.63 0.07 0.04 0.19 -1 -1 0.07 0.0130208 0.0115675 26 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_013bits.v common 5.08 vpr 67.10 MiB -1 -1 0.13 28476 1 0.03 -1 -1 33628 -1 -1 5 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68712 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 28.6 MiB 0.09 873 255 7262 2944 4216 102 67.1 MiB 0.07 0.00 1.7386 1.2704 -36.565 -1.2704 1.2704 0.64 0.000305095 0.000256401 0.0248111 0.0205115 -1 -1 -1 -1 32 651 23 6.87369e+06 69869.2 586450. 2029.24 2.60 0.153158 0.113113 25474 144626 -1 533 11 311 311 15301 4937 1.19797 1.19797 -38.5646 -1.19797 0 0 744469. 2576.02 0.06 0.02 0.29 -1 -1 0.06 0.00785268 0.00682906 28 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_014bits.v common 3.71 vpr 67.15 MiB -1 -1 0.13 28060 1 0.03 -1 -1 33568 -1 -1 7 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68760 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 28.6 MiB 0.15 774 266 6443 2232 4072 139 67.1 MiB 0.06 0.00 1.44157 1.2814 -38.6429 -1.2814 1.2814 0.69 0.000291364 0.000241235 0.0200494 0.0165272 -1 -1 -1 -1 30 757 22 6.87369e+06 97816.9 556674. 1926.21 0.86 0.0570136 0.0468408 25186 138497 -1 532 22 455 455 26364 7727 1.18697 1.18697 -39.2469 -1.18697 0 0 706193. 2443.58 0.09 0.03 0.26 -1 -1 0.09 0.0131569 0.0110939 31 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_015bits.v common 3.77 vpr 67.17 MiB -1 -1 0.13 28476 1 0.03 -1 -1 33660 -1 -1 6 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68780 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 28.6 MiB 0.13 811 342 7280 2954 4195 131 67.2 MiB 0.12 0.01 1.80712 1.65273 -43.5472 -1.65273 1.65273 0.75 0.00029569 0.000241375 0.0569158 0.0497204 -1 -1 -1 -1 30 662 21 6.87369e+06 83843 556674. 1926.21 0.77 0.0954677 0.0817642 25186 138497 -1 560 13 373 373 21517 6167 1.08637 1.08637 -41.7696 -1.08637 0 0 706193. 2443.58 0.07 0.03 0.23 -1 -1 0.07 0.0108937 0.00879476 32 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_016bits.v common 5.41 vpr 66.93 MiB -1 -1 0.13 28732 1 0.03 -1 -1 33652 -1 -1 6 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68536 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 28.4 MiB 0.12 816 409 11077 3933 7069 75 66.9 MiB 0.10 0.00 2.00663 1.66373 -47.2348 -1.66373 1.66373 0.88 0.000373627 0.000318029 0.0355254 0.0294223 -1 -1 -1 -1 32 752 16 6.87369e+06 83843 586450. 2029.24 2.19 0.13979 0.11496 25474 144626 -1 677 14 407 407 30568 8298 1.09737 1.09737 -44.997 -1.09737 0 0 744469. 2576.02 0.07 0.03 0.29 -1 -1 0.07 0.0108261 0.00937504 35 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_018bits.v common 3.94 vpr 67.26 MiB -1 -1 0.13 28476 1 0.03 -1 -1 33640 -1 -1 7 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68872 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 28.6 MiB 0.12 1063 395 11188 4556 6451 181 67.3 MiB 0.14 0.00 1.93633 1.68573 -53.7999 -1.68573 1.68573 0.92 0.000369139 0.000299623 0.0374337 0.0313537 -1 -1 -1 -1 32 837 18 6.87369e+06 97816.9 586450. 2029.24 0.93 0.0828581 0.0694734 25474 144626 -1 688 15 424 424 29986 8323 1.13037 1.13037 -51.7717 -1.13037 0 0 744469. 2576.02 0.06 0.03 0.22 -1 -1 0.06 0.0118314 0.0101709 38 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_020bits.v common 3.98 vpr 66.86 MiB -1 -1 0.13 28200 1 0.03 -1 -1 33428 -1 -1 8 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68464 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 28.2 MiB 0.13 1154 590 16918 7376 9444 98 66.9 MiB 0.14 0.00 1.70773 1.70773 -63.9965 -1.70773 1.70773 0.72 0.000375193 0.000308634 0.0448242 0.0368147 -1 -1 -1 -1 28 1096 15 6.87369e+06 111791 531479. 1839.03 0.93 0.0893416 0.0738798 24610 126494 -1 957 13 495 495 33932 9065 1.23997 1.23997 -61.5111 -1.23997 0 0 648988. 2245.63 0.10 0.07 0.22 -1 -1 0.10 0.0194539 0.0177565 42 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_022bits.v common 5.53 vpr 67.10 MiB -1 -1 0.14 28216 1 0.03 -1 -1 33640 -1 -1 10 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68712 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 28.4 MiB 0.17 1409 542 19002 8126 10741 135 67.1 MiB 0.15 0.00 1.94733 1.72973 -66.8087 -1.72973 1.72973 0.69 0.00043803 0.000363619 0.0492622 0.0407118 -1 -1 -1 -1 32 1032 19 6.87369e+06 139738 586450. 2029.24 2.34 0.16815 0.13839 25474 144626 -1 905 15 515 515 33455 9285 1.27767 1.27767 -65.4609 -1.27767 0 0 744469. 2576.02 0.06 0.04 0.28 -1 -1 0.06 0.0166587 0.0146931 47 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_024bits.v common 3.80 vpr 67.57 MiB -1 -1 0.14 28248 1 0.03 -1 -1 33764 -1 -1 9 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69196 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 28.6 MiB 0.14 1342 731 15563 6226 9236 101 67.6 MiB 0.14 0.00 2.23923 2.11206 -79.1261 -2.11206 2.11206 0.66 0.000477624 0.000399598 0.0404906 0.0335314 -1 -1 -1 -1 32 1287 17 6.87369e+06 125765 586450. 2029.24 0.84 0.0982659 0.0818083 25474 144626 -1 1181 18 619 619 53852 13481 1.21637 1.21637 -73.7419 -1.21637 0 0 744469. 2576.02 0.09 0.06 0.25 -1 -1 0.09 0.0179584 0.0151771 51 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_028bits.v common 4.51 vpr 67.88 MiB -1 -1 0.14 28424 1 0.03 -1 -1 33732 -1 -1 11 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69504 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 28.7 MiB 0.14 1502 754 25849 9823 15670 356 67.9 MiB 0.21 0.00 2.28136 2.15606 -94.3192 -2.15606 2.15606 0.83 0.000566842 0.000466094 0.0645374 0.053766 -1 -1 -1 -1 30 1530 26 6.87369e+06 153712 556674. 1926.21 1.29 0.148349 0.125871 25186 138497 -1 1262 20 748 748 62095 15808 1.28867 1.28867 -85.5383 -1.28867 0 0 706193. 2443.58 0.08 0.06 0.23 -1 -1 0.08 0.0220821 0.0189031 58 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_032bits.v common 4.24 vpr 68.00 MiB -1 -1 0.14 28604 1 0.03 -1 -1 33556 -1 -1 12 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69636 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 28.8 MiB 0.14 1926 1031 27462 11853 15392 217 68.0 MiB 0.31 0.00 2.67917 2.56039 -115.104 -2.56039 2.56039 0.74 0.000602951 0.000496716 0.0660617 0.0542896 -1 -1 -1 -1 30 1888 18 6.87369e+06 167686 556674. 1926.21 0.90 0.15221 0.129183 25186 138497 -1 1629 15 813 813 69517 16727 1.36997 1.36997 -101.889 -1.36997 0 0 706193. 2443.58 0.07 0.08 0.21 -1 -1 0.07 0.0252641 0.0204049 67 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_048bits.v common 7.10 vpr 68.35 MiB -1 -1 0.16 28728 1 0.05 -1 -1 33736 -1 -1 18 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69992 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 28.7 MiB 0.21 3020 1723 53028 25448 27256 324 68.4 MiB 0.57 0.01 3.70766 3.45705 -195.469 -3.45705 3.45705 0.72 0.000920344 0.000772737 0.126 0.107183 -1 -1 -1 -1 32 3024 37 6.87369e+06 251529 586450. 2029.24 3.15 0.392807 0.337051 25474 144626 -1 2670 18 1104 1104 94593 22762 1.65467 1.65467 -166.142 -1.65467 0 0 744469. 2576.02 0.07 0.08 0.25 -1 -1 0.07 0.0327607 0.0284747 99 2 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml adder_064bits.v common 5.86 vpr 68.81 MiB -1 -1 0.10 29244 1 0.02 -1 -1 33936 -1 -1 24 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70464 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 29.2 MiB 0.19 3814 2028 80128 33924 45713 491 68.8 MiB 0.99 0.02 4.57132 4.35372 -281.869 -4.35372 4.35372 0.87 0.00113963 0.000941778 0.172087 0.142917 -1 -1 -1 -1 32 3850 35 6.87369e+06 335372 586450. 2029.24 1.56 0.388319 0.335167 25474 144626 -1 3195 17 1406 1406 113670 28210 1.73437 1.73437 -212.418 -1.73437 0 0 744469. 2576.02 0.09 0.13 0.30 -1 -1 0.09 0.0443807 0.0383617 131 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_004bits.v common 2.33 vpr 66.93 MiB -1 -1 0.07 28220 1 0.02 -1 -1 33524 -1 -1 2 9 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68536 9 5 34 35 1 20 16 17 17 289 -1 unnamed_device 28.6 MiB 0.03 189 53 696 141 532 23 66.9 MiB 0.01 0.00 0.981892 0.789073 -9.99792 -0.789073 0.789073 0.55 0.000118569 9.8434e-05 0.00417264 0.00339759 -1 -1 -1 -1 20 148 12 6.89349e+06 28187.7 414966. 1435.87 0.49 0.00802902 0.00664154 23170 95770 -1 122 7 55 55 2334 871 0.87204 0.87204 -10.4692 -0.87204 0 0 503264. 1741.40 0.07 0.01 0.19 -1 -1 0.07 0.0034896 0.00311745 10 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_005bits.v common 3.06 vpr 66.45 MiB -1 -1 0.08 28348 1 0.02 -1 -1 33780 -1 -1 3 11 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68044 11 6 41 42 1 27 20 17 17 289 -1 unnamed_device 28.1 MiB 0.03 299 123 1613 599 921 93 66.4 MiB 0.01 0.00 1.23249 0.817273 -13.8548 -0.817273 0.817273 0.42 8.5108e-05 7.1123e-05 0.00468636 0.00379993 -1 -1 -1 -1 20 217 12 6.89349e+06 42281.5 414966. 1435.87 1.24 0.0165516 0.0129206 23170 95770 -1 192 12 93 93 4643 1607 0.925373 0.925373 -14.5661 -0.925373 0 0 503264. 1741.40 0.06 0.01 0.22 -1 -1 0.06 0.00436437 0.00376384 13 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_006bits.v common 3.10 vpr 66.73 MiB -1 -1 0.12 28348 1 0.02 -1 -1 33452 -1 -1 4 13 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68328 13 7 48 49 1 33 24 17 17 289 -1 unnamed_device 28.5 MiB 0.04 362 103 2472 1062 1362 48 66.7 MiB 0.02 0.00 1.33579 0.833073 -15.3007 -0.833073 0.833073 0.43 0.000123501 9.5654e-05 0.00636214 0.00510276 -1 -1 -1 -1 32 278 16 6.89349e+06 56375.4 586450. 2029.24 1.30 0.0303106 0.0238809 25474 144626 -1 246 14 132 132 7909 2736 1.19797 1.19797 -18.8752 -1.19797 0 0 744469. 2576.02 0.07 0.01 0.23 -1 -1 0.07 0.00515926 0.00438861 15 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_007bits.v common 2.17 vpr 66.63 MiB -1 -1 0.08 28348 1 0.02 -1 -1 33592 -1 -1 3 15 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68232 15 8 55 56 1 39 26 17 17 289 -1 unnamed_device 28.2 MiB 0.04 368 135 2496 883 1553 60 66.6 MiB 0.02 0.00 1.2044 1.2044 -18.6793 -1.2044 1.2044 0.42 9.3327e-05 7.5958e-05 0.00652533 0.00533543 -1 -1 -1 -1 26 268 9 6.89349e+06 42281.5 503264. 1741.40 0.68 0.0259186 0.0207219 24322 120374 -1 246 12 168 168 7837 2607 0.945373 0.945373 -18.7975 -0.945373 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00306666 0.00265507 16 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_008bits.v common 1.89 vpr 66.40 MiB -1 -1 0.07 28064 1 0.02 -1 -1 33676 -1 -1 3 17 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 67996 17 9 62 63 1 42 29 17 17 289 -1 unnamed_device 28.1 MiB 0.04 423 145 3153 1265 1835 53 66.4 MiB 0.02 0.00 1.2154 1.2154 -21.3067 -1.2154 1.2154 0.45 0.000101589 8.2406e-05 0.00769449 0.00627543 -1 -1 -1 -1 26 338 17 6.89349e+06 42281.5 503264. 1741.40 0.38 0.019587 0.0158551 24322 120374 -1 266 9 155 155 8134 2616 0.870273 0.870273 -21.0337 -0.870273 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.00293167 0.0025605 19 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_009bits.v common 2.58 vpr 66.61 MiB -1 -1 0.07 28348 1 0.02 -1 -1 33760 -1 -1 3 19 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68212 19 10 69 70 1 45 32 17 17 289 -1 unnamed_device 28.3 MiB 0.04 520 166 3682 1558 2042 82 66.6 MiB 0.02 0.00 1.411 1.2264 -24.4662 -1.2264 1.2264 0.42 0.000114576 9.3718e-05 0.00866754 0.0071145 -1 -1 -1 -1 32 333 9 6.89349e+06 42281.5 586450. 2029.24 1.05 0.0369246 0.0297094 25474 144626 -1 266 11 146 146 7576 2300 0.86602 0.86602 -22.2305 -0.86602 0 0 744469. 2576.02 0.04 0.01 0.12 -1 -1 0.04 0.00348298 0.00302448 20 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_010bits.v common 2.64 vpr 66.73 MiB -1 -1 0.08 28472 1 0.02 -1 -1 33500 -1 -1 4 21 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68336 21 11 76 77 1 48 36 17 17 289 -1 unnamed_device 28.5 MiB 0.04 520 178 3930 1701 2147 82 66.7 MiB 0.02 0.00 1.56025 1.2374 -27.4483 -1.2374 1.2374 0.42 0.000120402 9.8559e-05 0.00820412 0.00667793 -1 -1 -1 -1 32 391 16 6.89349e+06 56375.4 586450. 2029.24 1.11 0.0406715 0.0327837 25474 144626 -1 327 9 169 169 10201 3092 1.00657 1.00657 -26.337 -1.00657 0 0 744469. 2576.02 0.04 0.01 0.12 -1 -1 0.04 0.00332264 0.00292112 22 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_011bits.v common 1.91 vpr 66.91 MiB -1 -1 0.09 28476 1 0.02 -1 -1 33748 -1 -1 5 23 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68516 23 12 83 84 1 53 40 17 17 289 -1 unnamed_device 28.4 MiB 0.04 536 197 4664 2168 2433 63 66.9 MiB 0.02 0.00 1.2484 1.2484 -30.0522 -1.2484 1.2484 0.44 0.000121803 9.9106e-05 0.00899816 0.00733914 -1 -1 -1 -1 26 459 13 6.89349e+06 70469.2 503264. 1741.40 0.36 0.0241142 0.0196724 24322 120374 -1 392 11 243 243 17436 5381 1.02432 1.02432 -30.4645 -1.02432 0 0 618332. 2139.56 0.03 0.01 0.10 -1 -1 0.03 0.0040231 0.00347289 24 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_012bits.v common 2.70 vpr 66.74 MiB -1 -1 0.08 28220 1 0.02 -1 -1 33624 -1 -1 5 25 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68340 25 13 90 91 1 60 43 17 17 289 -1 unnamed_device 28.3 MiB 0.04 640 326 6793 2713 4040 40 66.7 MiB 0.03 0.00 1.3847 1.2594 -35.2282 -1.2594 1.2594 0.39 0.00013984 0.0001146 0.0133535 0.0109459 -1 -1 -1 -1 32 583 14 6.89349e+06 70469.2 586450. 2029.24 1.14 0.0533784 0.0431338 25474 144626 -1 522 10 216 216 12775 3331 1.03337 1.03337 -35.1497 -1.03337 0 0 744469. 2576.02 0.04 0.01 0.12 -1 -1 0.04 0.00408884 0.00358042 26 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_013bits.v common 3.06 vpr 66.83 MiB -1 -1 0.08 28348 1 0.02 -1 -1 33632 -1 -1 5 27 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68436 27 14 97 98 1 67 46 17 17 289 -1 unnamed_device 28.2 MiB 0.05 873 266 6688 2837 3773 78 66.8 MiB 0.05 0.00 1.61525 1.2704 -37.0461 -1.2704 1.2704 0.44 0.000284549 0.00023348 0.0166873 0.0136016 -1 -1 -1 -1 28 722 24 6.89349e+06 70469.2 531479. 1839.03 1.29 0.0687892 0.0557 24610 126494 -1 614 20 452 452 41298 15764 1.28122 1.28122 -39.2586 -1.28122 0 0 648988. 2245.63 0.03 0.02 0.11 -1 -1 0.03 0.00620778 0.00525176 28 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_014bits.v common 2.25 vpr 67.04 MiB -1 -1 0.09 28604 1 0.02 -1 -1 33700 -1 -1 7 29 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68648 29 15 104 105 1 74 51 17 17 289 -1 unnamed_device 28.5 MiB 0.07 774 309 6819 2415 4332 72 67.0 MiB 0.04 0.00 1.44157 1.2814 -39.8572 -1.2814 1.2814 0.46 0.000161588 0.000132881 0.015327 0.0125263 -1 -1 -1 -1 30 594 19 6.89349e+06 98656.9 556674. 1926.21 0.46 0.034083 0.0278633 25186 138497 -1 508 15 334 334 18436 5514 1.00037 1.00037 -37.6837 -1.00037 0 0 706193. 2443.58 0.04 0.01 0.12 -1 -1 0.04 0.00607303 0.00515703 31 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_015bits.v common 2.42 vpr 66.72 MiB -1 -1 0.10 28348 1 0.02 -1 -1 33856 -1 -1 6 31 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68324 31 16 111 112 1 80 53 17 17 289 -1 unnamed_device 28.2 MiB 0.07 811 342 7676 3055 4495 126 66.7 MiB 0.05 0.00 1.68376 1.65273 -43.3909 -1.65273 1.65273 0.51 0.000165935 0.00013603 0.0161724 0.0133896 -1 -1 -1 -1 28 776 14 6.89349e+06 84563 531479. 1839.03 0.44 0.0374795 0.0309063 24610 126494 -1 677 11 365 365 28328 7734 1.21167 1.21167 -45.0294 -1.21167 0 0 648988. 2245.63 0.03 0.02 0.16 -1 -1 0.03 0.00542047 0.00470584 32 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_016bits.v common 2.40 vpr 66.94 MiB -1 -1 0.11 28348 1 0.02 -1 -1 33892 -1 -1 6 33 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68544 33 17 118 119 1 83 56 17 17 289 -1 unnamed_device 28.3 MiB 0.07 816 370 9579 3601 5806 172 66.9 MiB 0.04 0.00 1.88328 1.66373 -47.4246 -1.66373 1.66373 0.50 0.000169129 0.000134375 0.0160809 0.0131309 -1 -1 -1 -1 32 751 14 6.89349e+06 84563 586450. 2029.24 0.52 0.0390276 0.0320421 25474 144626 -1 645 13 327 327 21207 5800 1.22267 1.22267 -46.6278 -1.22267 0 0 744469. 2576.02 0.04 0.01 0.12 -1 -1 0.04 0.00565146 0.00488775 35 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_018bits.v common 3.05 vpr 66.86 MiB -1 -1 0.10 28220 1 0.02 -1 -1 33492 -1 -1 7 37 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68464 37 19 132 133 1 89 63 17 17 289 -1 unnamed_device 28.1 MiB 0.07 1063 529 13313 5991 7273 49 66.9 MiB 0.09 0.00 1.93633 1.68573 -57.042 -1.68573 1.68573 0.44 0.000408485 0.000352714 0.0337913 0.028397 -1 -1 -1 -1 30 912 16 6.89349e+06 98656.9 556674. 1926.21 1.34 0.0786886 0.0649145 25186 138497 -1 793 10 317 317 19781 5172 1.11937 1.11937 -53.4631 -1.11937 0 0 706193. 2443.58 0.04 0.01 0.16 -1 -1 0.04 0.00532392 0.00465337 38 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_020bits.v common 3.19 vpr 67.02 MiB -1 -1 0.13 28348 1 0.02 -1 -1 33644 -1 -1 8 41 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68632 41 21 146 147 1 101 70 17 17 289 -1 unnamed_device 28.5 MiB 0.07 1154 589 15046 6866 8116 64 67.0 MiB 0.12 0.00 1.70773 1.70773 -64.0094 -1.70773 1.70773 0.42 0.000421022 0.000350654 0.0419162 0.0353345 -1 -1 -1 -1 28 1056 16 6.89349e+06 112751 531479. 1839.03 1.37 0.0984078 0.0815511 24610 126494 -1 921 33 598 598 75864 39830 1.05732 1.05732 -58.098 -1.05732 0 0 648988. 2245.63 0.04 0.05 0.12 -1 -1 0.04 0.0144911 0.0121688 42 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_022bits.v common 3.68 vpr 66.97 MiB -1 -1 0.14 28092 1 0.02 -1 -1 33656 -1 -1 10 45 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68576 45 23 160 161 1 115 78 17 17 289 -1 unnamed_device 28.3 MiB 0.09 1409 570 17508 7228 10124 156 67.0 MiB 0.08 0.00 1.82398 1.72973 -69.0962 -1.72973 1.72973 0.42 0.000220978 0.000181089 0.0271584 0.0224279 -1 -1 -1 -1 34 1097 30 6.89349e+06 140938 618332. 2139.56 1.70 0.12211 0.101487 25762 151098 -1 909 15 531 531 36438 10132 1.26667 1.26667 -65.3761 -1.26667 0 0 787024. 2723.27 0.05 0.02 0.17 -1 -1 0.05 0.00946427 0.00810442 47 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_024bits.v common 3.48 vpr 67.22 MiB -1 -1 0.13 28732 1 0.03 -1 -1 33624 -1 -1 9 49 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68832 49 25 174 175 1 124 83 17 17 289 -1 unnamed_device 28.5 MiB 0.12 1342 860 19163 8089 10995 79 67.2 MiB 0.08 0.00 2.11588 2.11206 -84.0288 -2.11206 2.11206 0.44 0.000238898 0.000194777 0.0265187 0.02159 -1 -1 -1 -1 28 1536 20 6.89349e+06 126845 531479. 1839.03 1.38 0.0966579 0.0794189 24610 126494 -1 1391 18 633 633 56105 13466 1.36092 1.36092 -80.1071 -1.36092 0 0 648988. 2245.63 0.04 0.04 0.11 -1 -1 0.04 0.0117185 0.0100697 51 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_028bits.v common 2.74 vpr 67.48 MiB -1 -1 0.09 28348 1 0.02 -1 -1 33732 -1 -1 11 57 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69100 57 29 202 203 1 142 97 17 17 289 -1 unnamed_device 28.3 MiB 0.08 1502 896 26293 11237 14942 114 67.5 MiB 0.13 0.00 2.28136 2.15606 -97.4138 -2.15606 2.15606 0.53 0.000308597 0.000256739 0.0384751 0.0316723 -1 -1 -1 -1 32 1568 40 6.89349e+06 155032 586450. 2029.24 0.57 0.0830566 0.0688599 25474 144626 -1 1403 16 643 643 52598 12951 1.27287 1.27287 -87.4863 -1.27287 0 0 744469. 2576.02 0.05 0.03 0.17 -1 -1 0.05 0.0125317 0.0107292 58 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_032bits.v common 2.53 vpr 67.27 MiB -1 -1 0.11 28348 1 0.03 -1 -1 33568 -1 -1 12 65 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 68888 65 33 230 231 1 165 110 17 17 289 -1 unnamed_device 28.1 MiB 0.08 1926 997 23780 11262 12389 129 67.3 MiB 0.12 0.00 2.67917 2.56039 -112.033 -2.56039 2.56039 0.42 0.000316317 0.000260118 0.0301952 0.0247287 -1 -1 -1 -1 32 1854 18 6.89349e+06 169126 586450. 2029.24 0.50 0.0703362 0.0582857 25474 144626 -1 1688 14 682 682 61668 14653 1.57497 1.57497 -110.701 -1.57497 0 0 744469. 2576.02 0.07 0.05 0.22 -1 -1 0.07 0.0182004 0.0157708 67 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_048bits.v common 3.39 vpr 67.83 MiB -1 -1 0.12 28476 1 0.02 -1 -1 33868 -1 -1 18 97 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 69460 97 49 342 343 1 247 164 17 17 289 -1 unnamed_device 28.6 MiB 0.14 3020 1722 57060 25847 30770 443 67.8 MiB 0.30 0.00 3.70766 3.45705 -198.876 -3.45705 3.45705 0.41 0.000457331 0.000359287 0.0634266 0.0519499 -1 -1 -1 -1 30 3022 23 6.89349e+06 253689 556674. 1926.21 1.04 0.16408 0.138096 25186 138497 -1 2555 16 1100 1100 106523 25048 1.53132 1.53132 -159.847 -1.53132 0 0 706193. 2443.58 0.06 0.05 0.21 -1 -1 0.06 0.018559 0.0161574 99 2 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml adder_064bits.v common 3.51 vpr 68.97 MiB -1 -1 0.14 29240 1 0.04 -1 -1 33960 -1 -1 24 129 0 0 success v8.0.0-14147-g0a1ff77f7 release VTR_ASSERT_LEVEL=4 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-10-14T15:03:24 soheil-pt372 /home/soheil/vtr/vtr-verilog-to-routing/vtr_flow 70628 129 65 454 455 1 329 218 17 17 289 -1 unnamed_device 29.3 MiB 0.13 3814 2257 67683 30938 36245 500 69.0 MiB 0.42 0.01 4.44796 4.35372 -286.88 -4.35372 4.35372 0.44 0.000684667 0.000576536 0.0769593 0.0643224 -1 -1 -1 -1 32 3690 17 6.89349e+06 338252 586450. 2029.24 0.91 0.212958 0.181846 25474 144626 -1 3400 15 1261 1261 108274 26049 1.97397 1.97397 -233.814 -1.97397 0 0 744469. 2576.02 0.06 0.10 0.22 -1 -1 0.06 0.0376612 0.0331452 131 2 -1 -1 -1 -1 From d849ff63c93e67007cef0f06410ef75bca89c044 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Tue, 14 Oct 2025 16:35:55 -0400 Subject: [PATCH 14/17] Update golden results for power_extended_arch_list --- .../config/golden_results.txt | 62 +++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) 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 f5d19494d5..adc7f94f22 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.61 vpr 67.76 MiB -1 -1 0.28 28148 3 0.10 -1 -1 37132 -1 54432 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69388 99 130 344 474 1 225 298 12 12 144 clb auto 28.1 MiB 0.10 1683.04 652 113728 44323 53323 16082 67.8 MiB 0.32 0.00 2.01486 1.59858 -118.946 -1.59858 1.59858 0.16 0.000904144 0.000840452 0.110696 0.102255 -1 -1 -1 -1 46 1138 11 5.66058e+06 4.21279e+06 378970. 2631.74 1.19 0.447336 0.407742 13238 73581 -1 1053 9 404 632 24417 8282 1.92811 1.92811 -129.123 -1.92811 -0.806621 -0.322548 486261. 3376.82 0.02 0.03 0.08 -1 -1 0.02 0.0233369 0.0218239 0.01018 0.2394 0.08222 0.6784 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 11.35 vpr 71.18 MiB -1 -1 0.38 32360 15 0.40 -1 -1 38176 -1 56056 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72884 162 96 998 939 1 696 300 16 16 256 mult_36 auto 31.6 MiB 0.31 8913.16 5510 118654 56128 61852 674 71.2 MiB 0.85 0.01 22.8489 20.8615 -1657.46 -20.8615 20.8615 0.31 0.00268526 0.00249899 0.333984 0.309162 -1 -1 -1 -1 46 12305 42 1.21132e+07 3.97408e+06 727248. 2840.81 5.38 1.12966 1.04257 24972 144857 -1 10032 17 3482 7166 1034444 286850 22.2186 22.2186 -1752.15 -22.2186 0 0 934704. 3651.19 0.05 0.34 0.15 -1 -1 0.05 0.121753 0.114853 0.007599 0.3583 0.01704 0.6247 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 425.27 vpr 402.08 MiB -1 -1 50.38 297844 123 77.88 -1 -1 82520 -1 118324 1371 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 411728 114 102 21839 21749 1 11654 1640 50 50 2500 memory auto 178.7 MiB 22.78 529188 145459 997341 341950 650576 4815 402.1 MiB 24.39 0.23 174.997 78.8223 -51941.7 -78.8223 78.8223 11.44 0.0575187 0.0469464 6.1339 5.11585 -1 -1 -1 -1 84 221441 36 1.47946e+08 1.01719e+08 1.39795e+07 5591.78 159.30 25.9617 21.9719 326276 2968264 -1 201486 24 46497 177522 9877597 1882329 79.6934 79.6934 -66383.9 -79.6934 -12.6378 -0.196253 1.77686e+07 7107.43 1.12 6.67 3.19 -1 -1 1.12 3.80813 3.32579 0.07814 0.4053 0.01172 0.583 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.87 vpr 67.81 MiB -1 -1 0.29 28220 3 0.10 -1 -1 36936 -1 54528 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69440 99 130 344 474 1 226 298 12 12 144 clb auto 28.2 MiB 0.11 1567.87 719 93828 28798 51641 13389 67.8 MiB 0.27 0.00 2.12112 1.84343 -118.369 -1.84343 1.84343 0.16 0.000971034 0.000890412 0.0930491 0.0863645 -1 -1 -1 -1 44 1431 10 5.66058e+06 4.21279e+06 360780. 2505.42 0.48 0.213526 0.196238 13094 71552 -1 1277 10 360 547 24574 7636 2.02173 2.02173 -135.984 -2.02173 -0.809495 -0.31945 470765. 3269.20 0.02 0.04 0.07 -1 -1 0.02 0.0249427 0.0233078 0.01142 0.2426 0.06809 0.6893 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 9.73 vpr 71.46 MiB -1 -1 0.40 32160 15 0.40 -1 -1 38044 -1 56116 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73172 162 96 998 939 1 696 300 16 16 256 mult_36 auto 32.0 MiB 0.38 8913.16 5510 118654 56128 61852 674 71.5 MiB 0.85 0.01 22.8489 20.8615 -1657.46 -20.8615 20.8615 0.31 0.00270484 0.00250853 0.336947 0.312275 -1 -1 -1 -1 46 13090 50 1.21132e+07 3.97408e+06 727248. 2840.81 3.62 0.990294 0.917743 24972 144857 -1 9904 17 3377 7012 1014442 282222 22.2319 22.2319 -1759.18 -22.2319 0 0 934704. 3651.19 0.05 0.35 0.14 -1 -1 0.05 0.124176 0.117194 0.007886 0.3442 0.01641 0.6393 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 690.55 vpr 400.96 MiB -1 -1 51.60 298532 123 80.23 -1 -1 82528 -1 118484 1276 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 410588 114 102 21839 21749 1 11131 1545 50 50 2500 memory auto 181.3 MiB 61.41 509622 143826 903273 301376 596920 4977 401.0 MiB 23.24 0.21 152.893 77.3626 -49768.6 -77.3626 77.3626 11.47 0.0514292 0.0449333 5.91198 4.96219 -1 -1 -1 -1 82 230204 42 1.47946e+08 9.65991e+07 1.36823e+07 5472.91 382.77 28.2869 23.7948 321276 2862592 -1 202544 22 44959 174816 10896845 2041526 79.467 79.467 -66412.1 -79.467 -22.761 -0.29436 1.71595e+07 6863.79 1.09 6.40 3.05 -1 -1 1.09 3.5333 3.10701 0.07877 0.3904 0.01138 0.5982 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.80 vpr 68.12 MiB -1 -1 0.29 27836 3 0.10 -1 -1 37484 -1 54376 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69760 99 130 344 474 1 226 298 12 12 144 clb auto 28.6 MiB 0.19 1458.83 697 95818 30132 51773 13913 68.1 MiB 0.27 0.00 1.97476 1.84343 -120.166 -1.84343 1.84343 0.17 0.000885583 0.000819879 0.089302 0.0826398 -1 -1 -1 -1 32 1457 11 5.66058e+06 4.21279e+06 295695. 2053.44 0.32 0.189198 0.17387 12440 56522 -1 1363 13 447 671 36335 11958 2.02246 2.02246 -145.191 -2.02246 -0.202533 -0.152189 361905. 2513.23 0.02 0.04 0.06 -1 -1 0.02 0.0300773 0.0279514 0.009924 0.2524 0.06791 0.6797 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 11.89 vpr 71.18 MiB -1 -1 0.40 32460 15 0.40 -1 -1 38400 -1 56248 38 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72892 162 96 998 939 1 701 301 16 16 256 mult_36 auto 31.8 MiB 0.69 8989.88 5419 113197 51587 61038 572 71.2 MiB 0.83 0.01 23.116 21.3244 -1607.76 -21.3244 21.3244 0.34 0.00276469 0.00257321 0.330502 0.306794 -1 -1 -1 -1 44 12421 49 1.21132e+07 4.02797e+06 727469. 2841.68 5.37 1.07695 0.996499 25696 150430 -1 9540 18 3051 6204 881397 255729 22.8945 22.8945 -1753.11 -22.8945 0 0 947281. 3700.32 0.05 0.33 0.15 -1 -1 0.05 0.128817 0.121435 0.007682 0.3447 0.01604 0.6393 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 781.59 vpr 455.89 MiB -1 -1 51.25 298152 123 82.36 -1 -1 82304 -1 118484 1293 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 466828 114 102 21839 21749 1 11802 1562 50 50 2500 memory auto 178.6 MiB 332.04 531407 154822 934639 314912 614747 4980 430.6 MiB 30.78 0.29 181.613 79.6436 -54392.2 -79.6436 79.6436 14.09 0.0622598 0.0512506 6.94818 5.73162 -1 -1 -1 -1 88 235176 31 1.47946e+08 9.75153e+07 1.53362e+07 6134.50 186.11 34.5504 28.9267 343368 3288204 -1 206828 21 40749 159950 9746116 1862985 80.3821 80.3821 -69647.4 -80.3821 -19.6753 -0.199574 1.91856e+07 7674.24 1.15 5.99 3.47 -1 -1 1.15 3.42382 3.04268 0.08366 0.4002 0.01157 0.5883 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.43 vpr 68.01 MiB -1 -1 0.29 28064 3 0.10 -1 -1 36992 -1 54184 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69640 99 130 344 474 1 226 298 12 12 144 clb auto 28.4 MiB 0.12 1569.92 669 102783 34796 52683 15304 68.0 MiB 0.29 0.00 1.94486 1.84343 -119.062 -1.84343 1.84343 0.17 0.000899998 0.000836883 0.0957897 0.0886538 -1 -1 -1 -1 36 1320 11 5.66058e+06 4.21279e+06 320299. 2224.30 1.00 0.379925 0.346765 12728 62292 -1 1146 11 385 622 24167 7888 1.95182 1.95182 -138.5 -1.95182 -0.347528 -0.103527 396063. 2750.44 0.02 0.04 0.06 -1 -1 0.02 0.0280927 0.0261545 0.01132 0.206 0.06446 0.7295 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 9.50 vpr 71.62 MiB -1 -1 0.38 32260 15 0.40 -1 -1 37812 -1 56056 38 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73336 162 96 998 939 1 701 301 16 16 256 mult_36 auto 32.1 MiB 0.71 9029.23 5606 105133 49099 55394 640 71.6 MiB 0.78 0.01 23.5111 21.2838 -1646.56 -21.2838 21.2838 0.34 0.00273471 0.00254436 0.303142 0.281221 -1 -1 -1 -1 50 11439 29 1.21132e+07 4.02797e+06 817349. 3192.77 3.07 0.969403 0.896905 26464 163948 -1 9620 19 3084 6560 856479 250377 22.2603 22.2603 -1790.46 -22.2603 0 0 1.05038e+06 4103.04 0.06 0.34 0.16 -1 -1 0.06 0.136486 0.128803 0.008259 0.3437 0.01575 0.6406 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 738.49 vpr 438.79 MiB -1 -1 50.80 298852 123 81.49 -1 -1 82516 -1 118348 1191 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 449324 114 102 21839 21749 1 11058 1460 50 50 2500 memory auto 179.1 MiB 290.70 490438 143126 912150 337792 569225 5133 438.8 MiB 29.72 0.24 195.755 77.0251 -50687.3 -77.0251 77.0251 14.14 0.0586115 0.0517687 7.33107 6.05846 -1 -1 -1 -1 82 222959 40 1.47946e+08 9.20179e+07 1.43296e+07 5731.84 189.84 26.635 22.379 333372 3068224 -1 197298 21 40741 164082 10027263 1938229 79.1376 79.1376 -63408.2 -79.1376 -19.8158 -0.29436 1.79225e+07 7169.01 1.10 6.17 3.20 -1 -1 1.10 3.49317 3.07876 0.08327 0.3758 0.01146 0.6128 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.58 vpr 68.43 MiB -1 -1 0.28 28148 3 0.10 -1 -1 36964 -1 54240 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 70068 99 130 344 474 1 224 298 12 12 144 clb auto 28.7 MiB 0.22 1545.62 655 97808 31311 52351 14146 68.4 MiB 0.28 0.00 2.1333 1.84564 -119.921 -1.84564 1.84564 0.17 0.000887428 0.000823965 0.0918384 0.0850725 -1 -1 -1 -1 38 1327 9 5.66058e+06 4.21279e+06 347689. 2414.51 1.02 0.35982 0.328396 13432 70334 -1 1059 8 381 601 21275 7095 1.90839 1.90839 -132.189 -1.90839 -1.19517 -0.320482 440062. 3055.98 0.02 0.03 0.07 -1 -1 0.02 0.022128 0.0207495 0.01033 0.2368 0.07555 0.6877 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 11.72 vpr 71.64 MiB -1 -1 0.38 32428 15 0.41 -1 -1 38116 -1 56056 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73360 162 96 998 939 1 700 300 16 16 256 mult_36 auto 32.3 MiB 0.77 9459.95 5656 102606 51707 50365 534 71.6 MiB 0.77 0.01 23.3793 20.8121 -1588.9 -20.8121 20.8121 0.34 0.00265311 0.00246727 0.291955 0.270386 -1 -1 -1 -1 48 11793 35 1.21132e+07 3.97408e+06 822491. 3212.85 5.21 1.27532 1.18018 27048 168158 -1 9814 20 2868 5950 837942 234440 21.8871 21.8871 -1716.95 -21.8871 0 0 1.05295e+06 4113.10 0.05 0.32 0.16 -1 -1 0.05 0.135914 0.127966 0.008118 0.3541 0.01662 0.6293 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 907.56 vpr 470.05 MiB -1 -1 49.96 297924 123 81.01 -1 -1 82348 -1 118288 1296 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 481336 114 102 21839 21749 1 11501 1565 50 50 2500 memory auto 179.5 MiB 381.03 529617 150726 973339 351416 616617 5306 470.1 MiB 33.28 0.27 181.329 78.7034 -50471.3 -78.7034 78.7034 17.11 0.06041 0.0531442 7.36489 6.1138 -1 -1 -1 -1 82 236248 42 1.47946e+08 9.7677e+07 1.48840e+07 5953.59 260.64 24.2884 20.4414 343740 3244480 -1 202635 18 37606 150165 9642990 1873334 79.9818 79.9818 -61051.6 -79.9818 -22.5389 -0.21509 1.85742e+07 7429.67 1.19 5.87 3.41 -1 -1 1.19 3.36845 2.9944 0.08477 0.3786 0.01176 0.6096 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.82 vpr 68.15 MiB -1 -1 0.28 28240 3 0.10 -1 -1 36764 -1 54432 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69784 99 130 344 474 1 224 298 12 12 144 clb auto 28.6 MiB 0.13 1648.51 675 112733 44484 53595 14654 68.1 MiB 0.31 0.00 2.12998 1.84564 -117.328 -1.84564 1.84564 0.17 0.000889182 0.000827515 0.103694 0.0957461 -1 -1 -1 -1 32 1507 17 5.66058e+06 4.21279e+06 307825. 2137.67 0.34 0.211649 0.194342 12860 59602 -1 1267 10 410 668 33870 11867 1.98119 1.98119 -142.061 -1.98119 -0.386946 -0.298787 375846. 2610.04 0.02 0.04 0.06 -1 -1 0.02 0.024841 0.0231516 0.01114 0.2082 0.06222 0.7296 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.65 vpr 71.80 MiB -1 -1 0.38 32236 15 0.41 -1 -1 38388 -1 56056 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73528 162 96 998 939 1 701 300 16 16 256 mult_36 auto 32.3 MiB 0.83 9764.67 5632 105615 51085 54079 451 71.8 MiB 0.78 0.01 23.6456 20.5011 -1582.08 -20.5011 20.5011 0.34 0.00268852 0.00249692 0.296292 0.273796 -1 -1 -1 -1 44 14219 45 1.21132e+07 3.97408e+06 756265. 2954.16 4.02 0.925999 0.85617 26536 158550 -1 9873 19 3100 6497 849364 239712 21.8729 21.8729 -1767.05 -21.8729 0 0 982941. 3839.61 0.05 0.32 0.15 -1 -1 0.05 0.131827 0.124143 0.008338 0.3359 0.01547 0.6486 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 906.06 vpr 473.63 MiB -1 -1 48.98 298144 123 80.74 -1 -1 82700 -1 118156 1186 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 484996 114 102 21839 21749 1 10626 1455 50 50 2500 memory auto 178.8 MiB 392.80 476116 139309 842037 281104 556114 4819 473.6 MiB 28.23 0.26 151.586 78.3247 -50779.8 -78.3247 78.3247 16.58 0.0644478 0.0519956 6.93259 5.725 -1 -1 -1 -1 82 214521 31 1.47946e+08 9.17484e+07 1.48840e+07 5953.59 253.58 24.9417 20.9711 343740 3244480 -1 188277 17 34891 146249 9192737 1806347 79.5099 79.5099 -67322.8 -79.5099 -7.21517 -0.195295 1.85742e+07 7429.67 1.15 5.42 3.33 -1 -1 1.15 3.07549 2.72289 0.08584 0.3664 0.01173 0.6219 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.63 vpr 68.18 MiB -1 -1 0.27 28568 3 0.10 -1 -1 36808 -1 54528 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69816 99 130 344 474 1 225 298 12 12 144 clb auto 28.4 MiB 0.21 1683.04 652 113728 44323 53323 16082 68.2 MiB 0.31 0.00 2.01486 1.59858 -118.946 -1.59858 1.59858 0.16 0.000839394 0.000779326 0.0998366 0.0921204 -1 -1 -1 -1 46 1130 11 5.66058e+06 4.21279e+06 378970. 2631.74 1.16 0.42635 0.388564 13238 73581 -1 1053 9 407 648 24846 8371 1.92811 1.92811 -129.109 -1.92811 -0.806621 -0.322548 486261. 3376.82 0.02 0.03 0.07 -1 -1 0.02 0.0230931 0.0215945 0.01023 0.2372 0.08182 0.6809 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 8.96 vpr 71.11 MiB -1 -1 0.38 32584 15 0.41 -1 -1 37856 -1 56116 38 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 72816 162 96 998 939 1 696 301 16 16 256 mult_36 auto 31.8 MiB 0.72 9502.7 5485 105133 48867 55719 547 71.1 MiB 0.77 0.01 23.4382 21.4475 -1756.43 -21.4475 21.4475 0.31 0.00266806 0.00247971 0.298408 0.276004 -1 -1 -1 -1 46 11737 32 1.21132e+07 4.02797e+06 727248. 2840.81 2.68 0.848557 0.784961 24972 144857 -1 9639 18 3126 6418 798900 232651 22.4711 22.4711 -1825.42 -22.4711 0 0 934704. 3651.19 0.05 0.30 0.14 -1 -1 0.05 0.125244 0.117862 0.007649 0.3524 0.01675 0.6308 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 601.11 vpr 431.58 MiB -1 -1 48.95 297860 123 81.06 -1 -1 82404 -1 118460 1329 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 441936 114 102 21839 21749 1 11872 1598 50 50 2500 memory auto 180.3 MiB 222.47 532612 147161 963412 331408 627113 4891 401.2 MiB 30.04 0.26 180.186 77.1533 -51267.5 -77.1533 77.1533 12.01 0.055198 0.0482825 6.80621 5.65573 -1 -1 -1 -1 86 226625 29 1.47946e+08 9.94556e+07 1.43148e+07 5725.91 121.61 32.2405 27.0122 328776 3019144 -1 203186 20 43391 166708 9591834 1814817 77.0511 77.0511 -65220.8 -77.0511 -16.5821 -0.217304 1.81111e+07 7244.46 1.13 6.10 3.27 -1 -1 1.13 3.51024 3.07238 0.08046 0.4027 0.01199 0.5853 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.80 vpr 67.96 MiB -1 -1 0.28 28220 3 0.10 -1 -1 36764 -1 54184 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69592 99 130 344 474 1 226 298 12 12 144 clb auto 28.4 MiB 0.11 1567.87 719 93828 28798 51641 13389 68.0 MiB 0.26 0.00 2.12112 1.84343 -118.369 -1.84343 1.84343 0.16 0.000860158 0.000786756 0.0834798 0.0773091 -1 -1 -1 -1 44 1425 10 5.66058e+06 4.21279e+06 360780. 2505.42 0.45 0.195112 0.17934 13094 71552 -1 1273 10 349 534 24012 7500 2.02173 2.02173 -136.447 -2.02173 -0.809495 -0.31945 470765. 3269.20 0.02 0.03 0.07 -1 -1 0.02 0.0242146 0.0225969 0.01145 0.2399 0.0679 0.6922 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 9.21 vpr 71.63 MiB -1 -1 0.38 32236 15 0.40 -1 -1 38004 -1 56248 38 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73348 162 96 998 939 1 696 301 16 16 256 mult_36 auto 32.1 MiB 0.66 9347.15 5711 97069 40629 55959 481 71.6 MiB 0.68 0.01 23.239 21.3647 -1731.57 -21.3647 21.3647 0.31 0.00262596 0.00243811 0.264434 0.24464 -1 -1 -1 -1 48 13320 39 1.21132e+07 4.02797e+06 756778. 2956.16 3.05 0.890759 0.822906 25228 149258 -1 10105 20 3548 7347 953572 273819 22.9942 22.9942 -1869.6 -22.9942 0 0 968034. 3781.38 0.05 0.34 0.15 -1 -1 0.05 0.132417 0.124158 0.0079 0.3457 0.01607 0.6382 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 651.40 vpr 440.94 MiB -1 -1 47.67 298692 123 80.33 -1 -1 82328 -1 118480 1219 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 451524 114 102 21839 21749 1 11155 1488 50 50 2500 memory auto 179.4 MiB 206.99 516019 142336 901534 320096 576479 4959 404.2 MiB 27.87 0.24 189.795 77.12 -50060 -77.12 77.12 11.93 0.0564029 0.0494318 6.91235 5.74414 -1 -1 -1 -1 88 217645 42 1.47946e+08 9.3527e+07 1.46563e+07 5862.50 191.00 37.0259 30.9903 331272 3068748 -1 196552 21 42072 164339 9968149 1865794 77.6722 77.6722 -64659.2 -77.6722 -23.969 -0.295467 1.83775e+07 7351.00 1.21 6.23 3.39 -1 -1 1.21 3.58435 3.13757 0.0821 0.396 0.01177 0.5922 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.03 vpr 68.23 MiB -1 -1 0.28 28028 3 0.10 -1 -1 36944 -1 54432 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69872 99 130 344 474 1 224 298 12 12 144 clb auto 28.5 MiB 0.20 1545.62 674 97808 31823 52205 13780 68.2 MiB 0.27 0.00 2.12223 1.84343 -120.77 -1.84343 1.84343 0.16 0.000846873 0.000786841 0.087293 0.0808357 -1 -1 -1 -1 52 1278 10 5.66058e+06 4.21279e+06 419432. 2912.72 0.57 0.254046 0.232744 13810 82561 -1 1101 9 413 680 26926 7608 1.90414 1.90414 -132.024 -1.90414 -1.56121 -0.29768 551878. 3832.49 0.02 0.03 0.08 -1 -1 0.02 0.0231256 0.0216389 0.01066 0.2516 0.08403 0.6643 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 9.99 vpr 71.44 MiB -1 -1 0.37 32456 15 0.40 -1 -1 37984 -1 56116 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73156 162 96 998 939 1 706 300 16 16 256 mult_36 auto 31.9 MiB 0.67 9493.05 5529 128684 57858 69775 1051 71.4 MiB 0.90 0.01 22.2685 20.684 -1647.15 -20.684 20.684 0.31 0.00264159 0.0024548 0.353953 0.327529 -1 -1 -1 -1 50 12408 39 1.21132e+07 3.97408e+06 780512. 3048.87 3.58 1.04151 0.962594 25484 153448 -1 9877 16 3251 6820 966437 268030 22.2208 22.2208 -1791.82 -22.2208 0 0 1.00276e+06 3917.05 0.05 0.32 0.15 -1 -1 0.05 0.116934 0.110351 0.007918 0.3571 0.01631 0.6266 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 718.16 vpr 399.50 MiB -1 -1 48.24 297428 123 81.87 -1 -1 82676 -1 118224 1314 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 409084 114 102 21839 21749 1 11803 1583 50 50 2500 memory auto 178.3 MiB 251.58 527505 147690 997559 356800 635187 5572 397.6 MiB 31.01 0.26 182.294 77.7485 -51147.5 -77.7485 77.7485 12.05 0.0574742 0.0505918 7.08451 5.91407 -1 -1 -1 -1 86 227346 29 1.47946e+08 9.86471e+07 1.43148e+07 5725.91 206.88 26.1015 21.9779 328776 3019144 -1 204182 20 43737 169108 10077268 1900182 79.1739 79.1739 -65163.7 -79.1739 -11.2405 -0.29436 1.81111e+07 7244.46 1.16 6.17 3.29 -1 -1 1.16 3.4985 3.08596 0.08116 0.3984 0.01192 0.5896 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.47 vpr 68.38 MiB -1 -1 0.27 28084 3 0.09 -1 -1 37212 -1 54184 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 70024 99 130 344 474 1 224 298 12 12 144 clb auto 28.8 MiB 0.12 1648.51 677 112733 42486 55916 14331 68.4 MiB 0.31 0.00 2.12112 1.84343 -121.391 -1.84343 1.84343 0.16 0.000867345 0.00080527 0.103473 0.0958794 -1 -1 -1 -1 44 1225 12 5.66058e+06 4.21279e+06 360780. 2505.42 1.05 0.436698 0.398847 13094 71552 -1 1072 12 414 675 22597 6936 1.91423 1.91423 -131.69 -1.91423 -0.641826 -0.224664 470765. 3269.20 0.02 0.04 0.07 -1 -1 0.02 0.0270625 0.0251429 0.01173 0.2164 0.06995 0.7137 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 12.21 vpr 71.33 MiB -1 -1 0.38 32100 15 0.40 -1 -1 37920 -1 56116 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73040 162 96 998 939 1 704 300 16 16 256 mult_36 auto 31.8 MiB 0.69 9437.39 5622 109627 51647 57384 596 71.3 MiB 0.77 0.01 22.9489 20.6351 -1662.35 -20.6351 20.6351 0.30 0.00267662 0.00248422 0.296651 0.274335 -1 -1 -1 -1 46 12852 47 1.21132e+07 3.97408e+06 727248. 2840.81 5.84 1.28187 1.18404 24972 144857 -1 10041 18 3367 6971 909621 256498 21.5442 21.5442 -1716.97 -21.5442 0 0 934704. 3651.19 0.05 0.32 0.14 -1 -1 0.05 0.124766 0.117514 0.008278 0.3357 0.01609 0.6483 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 720.96 vpr 407.27 MiB -1 -1 47.32 298912 123 80.25 -1 -1 82516 -1 118596 1204 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 417044 114 102 21839 21749 1 10905 1473 50 50 2500 memory auto 179.6 MiB 251.06 495314 138867 897812 327213 565253 5346 407.3 MiB 28.52 0.24 178.401 77.5048 -50546.6 -77.5048 77.5048 11.96 0.0575756 0.0507822 6.99283 5.81596 -1 -1 -1 -1 86 210948 34 1.47946e+08 9.27186e+07 1.43148e+07 5725.91 217.33 27.3691 23.0392 328776 3019144 -1 191631 19 40126 160542 9315557 1779244 78.2291 78.2291 -63046.9 -78.2291 -17.9311 -0.29436 1.81111e+07 7244.46 1.13 5.68 3.27 -1 -1 1.13 3.27371 2.9062 0.08242 0.3862 0.01192 0.6019 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 2.78 vpr 66.52 MiB -1 -1 0.18 20704 3 0.07 -1 -1 33112 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68116 99 130 344 474 1 225 298 12 12 144 clb auto 27.1 MiB 0.07 1683.04 676 124673 51986 59222 13465 66.5 MiB 0.26 0.00 2.01486 1.59969 -120.553 -1.59969 1.59969 0.10 0.000574327 0.000534278 0.087242 0.0804459 -1 -1 -1 -1 42 1381 15 5.66058e+06 4.21279e+06 345702. 2400.71 0.88 0.327411 0.296519 12810 66778 -1 1269 10 419 649 33010 10159 1.97706 1.97706 -138.9 -1.97706 -0.598658 -0.242394 434679. 3018.61 0.01 0.03 0.04 -1 -1 0.01 0.0171647 0.0160043 0.01009 0.2538 0.07672 0.6694 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 9.10 vpr 69.81 MiB -1 -1 0.24 25192 15 0.27 -1 -1 33564 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71488 162 96 998 939 1 696 300 16 16 256 mult_36 auto 30.5 MiB 0.20 8913.16 5484 103609 45928 57448 233 69.8 MiB 0.47 0.01 22.8489 20.9376 -1654.77 -20.9376 20.9376 0.20 0.00167465 0.00155543 0.186812 0.173041 -1 -1 -1 -1 50 12223 42 1.21132e+07 3.97408e+06 780512. 3048.87 5.08 0.979308 0.901355 25484 153448 -1 9493 19 3342 7063 856562 252014 21.8022 21.8022 -1776.07 -21.8022 0 0 1.00276e+06 3917.05 0.03 0.22 0.10 -1 -1 0.03 0.0902334 0.0845323 0.007718 0.3602 0.01703 0.6228 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 337.32 vpr 398.61 MiB -1 -1 33.77 287624 123 56.62 -1 -1 77936 -1 116368 1371 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 408176 114 102 21839 21749 1 11654 1640 50 50 2500 memory auto 177.2 MiB 13.72 529188 145707 987674 342938 638787 5949 398.6 MiB 17.62 0.16 174.997 78.8612 -51906.9 -78.8612 78.8612 7.79 0.0444552 0.0394553 5.12048 4.19979 -1 -1 -1 -1 84 219950 44 1.47946e+08 1.01719e+08 1.39795e+07 5591.78 154.23 23.1851 19.4476 326276 2968264 -1 201592 19 43106 167590 9635159 1828898 80.0439 80.0439 -66184.6 -80.0439 -33.5519 -0.295467 1.77686e+07 7107.43 0.70 4.46 2.17 -1 -1 0.70 2.50363 2.18503 0.07809 0.4057 0.01169 0.5826 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.62 vpr 66.41 MiB -1 -1 0.18 20704 3 0.07 -1 -1 32744 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68008 99 130 344 474 1 226 298 12 12 144 clb auto 26.7 MiB 0.07 1567.87 742 126663 51951 61456 13256 66.4 MiB 0.23 0.00 2.12112 1.84343 -121.745 -1.84343 1.84343 0.10 0.000576691 0.000536317 0.0770772 0.0713797 -1 -1 -1 -1 40 1413 8 5.66058e+06 4.21279e+06 333335. 2314.82 0.78 0.309429 0.281185 12666 64609 -1 1285 9 412 629 33909 11456 1.92556 1.92556 -137.271 -1.92556 -0.29923 -0.168288 419432. 2912.72 0.01 0.02 0.04 -1 -1 0.01 0.0163425 0.0152651 0.01176 0.2329 0.06661 0.7005 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 8.89 vpr 69.95 MiB -1 -1 0.22 25312 15 0.27 -1 -1 33560 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71632 162 96 998 939 1 696 300 16 16 256 mult_36 auto 30.5 MiB 0.24 8913.16 5484 103609 45928 57448 233 70.0 MiB 0.47 0.01 22.8489 20.9376 -1654.77 -20.9376 20.9376 0.20 0.00183438 0.00171045 0.185957 0.172104 -1 -1 -1 -1 50 11889 36 1.21132e+07 3.97408e+06 780512. 3048.87 4.78 0.92388 0.841532 25484 153448 -1 9535 21 3477 7362 893935 262108 21.859 21.859 -1766.6 -21.859 0 0 1.00276e+06 3917.05 0.03 0.23 0.10 -1 -1 0.03 0.0948119 0.0889229 0.008029 0.3486 0.01633 0.635 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 309.28 vpr 433.80 MiB -1 -1 36.37 286352 123 55.30 -1 -1 78040 -1 116368 1276 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 444208 114 102 21839 21749 1 11131 1545 50 50 2500 memory auto 178.4 MiB 36.46 509622 143933 876489 293991 577832 4666 399.9 MiB 16.19 0.15 152.893 78.7565 -50518.3 -78.7565 78.7565 8.07 0.0429392 0.0379389 4.97749 4.05953 -1 -1 -1 -1 84 221082 39 1.47946e+08 9.65991e+07 1.39795e+07 5591.78 102.57 27.1339 22.4753 326276 2968264 -1 197650 22 42843 167691 9982030 1868115 81.0398 81.0398 -63160.2 -81.0398 -23.8732 -0.29436 1.77686e+07 7107.43 0.72 4.98 2.19 -1 -1 0.72 2.85105 2.47194 0.07929 0.3974 0.01149 0.5911 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.50 vpr 66.74 MiB -1 -1 0.18 20972 3 0.08 -1 -1 32744 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68340 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.12 1458.83 705 125668 53844 57369 14455 66.7 MiB 0.23 0.00 1.97476 1.84675 -119.284 -1.84675 1.84675 0.11 0.000582605 0.000542188 0.0768618 0.0712012 -1 -1 -1 -1 36 1451 13 5.66058e+06 4.21279e+06 320299. 2224.30 0.60 0.234671 0.214021 12728 62292 -1 1263 11 413 651 27407 9067 2.04895 2.04895 -138.803 -2.04895 -1.15921 -0.320482 396063. 2750.44 0.01 0.03 0.04 -1 -1 0.01 0.0183567 0.0170532 0.009789 0.2482 0.07105 0.6808 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 9.60 vpr 69.87 MiB -1 -1 0.24 25312 15 0.27 -1 -1 33564 -1 54328 38 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71544 162 96 998 939 1 701 301 16 16 256 mult_36 auto 30.5 MiB 0.43 8989.88 5483 98077 44392 53310 375 69.9 MiB 0.45 0.01 23.116 21.4995 -1624.06 -21.4995 21.4995 0.21 0.00302731 0.00290088 0.176603 0.163794 -1 -1 -1 -1 50 12388 49 1.21132e+07 4.02797e+06 817349. 3192.77 5.22 0.910779 0.83955 26464 163948 -1 9531 19 2840 6005 794094 235310 22.5869 22.5869 -1699.91 -22.5869 0 0 1.05038e+06 4103.04 0.03 0.24 0.11 -1 -1 0.03 0.104462 0.0978016 0.007861 0.3538 0.01633 0.6298 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 600.25 vpr 427.27 MiB -1 -1 33.53 288000 123 58.05 -1 -1 77936 -1 116348 1293 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 437520 114 102 21839 21749 1 11802 1562 50 50 2500 memory auto 175.4 MiB 206.92 531407 151364 916521 307629 603857 5035 427.3 MiB 17.61 0.17 181.613 79.7224 -53510.4 -79.7224 79.7224 9.50 0.0493294 0.0395251 5.24166 4.27673 -1 -1 -1 -1 88 234269 46 1.47946e+08 9.75153e+07 1.53362e+07 6134.50 220.82 21.6444 18.0789 343368 3288204 -1 205865 20 40556 159579 9674812 1831282 80.1788 80.1788 -66500.6 -80.1788 -23.1556 -0.22164 1.91856e+07 7674.24 0.65 4.21 2.22 -1 -1 0.65 2.45726 2.14644 0.08369 0.4005 0.01159 0.588 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.41 vpr 66.83 MiB -1 -1 0.18 20708 3 0.07 -1 -1 32184 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68436 99 130 344 474 1 226 298 12 12 144 clb auto 27.5 MiB 0.07 1569.92 744 126663 53062 60008 13593 66.8 MiB 0.23 0.00 1.94486 1.84675 -119.816 -1.84675 1.84675 0.11 0.000586484 0.000546623 0.0777139 0.07204 -1 -1 -1 -1 32 1540 15 5.66058e+06 4.21279e+06 295695. 2053.44 0.59 0.264817 0.241282 12440 56522 -1 1356 11 405 625 31691 10602 2.02542 2.02542 -137.117 -2.02542 -0.25719 -0.103248 361905. 2513.23 0.01 0.03 0.04 -1 -1 0.01 0.0183325 0.0170447 0.01122 0.2279 0.05999 0.7121 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 7.63 vpr 70.12 MiB -1 -1 0.24 25316 15 0.27 -1 -1 33564 -1 53812 38 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71804 162 96 998 939 1 701 301 16 16 256 mult_36 auto 30.9 MiB 0.44 9029.23 5653 99085 42660 55954 471 70.1 MiB 0.44 0.01 23.5111 21.4438 -1641.46 -21.4438 21.4438 0.21 0.00172377 0.00159574 0.174934 0.161944 -1 -1 -1 -1 46 12331 33 1.21132e+07 4.02797e+06 761464. 2974.47 3.33 0.746527 0.687742 25952 154797 -1 9760 21 3165 6778 881298 256556 22.8265 22.8265 -1797.89 -22.8265 0 0 979054. 3824.43 0.03 0.23 0.10 -1 -1 0.03 0.0950987 0.0890611 0.008062 0.3381 0.0158 0.6461 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 549.03 vpr 457.32 MiB -1 -1 33.16 287000 123 57.87 -1 -1 77932 -1 116368 1191 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 468292 114 102 21839 21749 1 11058 1460 50 50 2500 memory auto 177.2 MiB 174.93 490438 146928 903871 338457 560659 4755 437.2 MiB 20.20 0.16 195.755 77.6454 -51894.7 -77.6454 77.6454 9.48 0.0555308 0.0498643 7.12189 5.81026 -1 -1 -1 -1 86 226386 41 1.47946e+08 9.20179e+07 1.49824e+07 5992.98 199.11 29.1443 24.2026 340872 3235144 -1 197731 21 37544 153063 9509812 1830414 78.4722 78.4722 -65300.3 -78.4722 -26.4959 -0.29436 1.89069e+07 7562.76 0.61 4.14 2.12 -1 -1 0.61 2.45885 2.12942 0.08479 0.3857 0.01166 0.6026 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.46 vpr 66.75 MiB -1 -1 0.18 20708 3 0.07 -1 -1 32768 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68352 99 130 344 474 1 224 298 12 12 144 clb auto 26.9 MiB 0.14 1545.62 726 120693 47338 60281 13074 66.8 MiB 0.22 0.00 2.1333 1.84564 -124.067 -1.84564 1.84564 0.11 0.000568022 0.000527582 0.0723463 0.0669055 -1 -1 -1 -1 32 1453 13 5.66058e+06 4.21279e+06 307825. 2137.67 0.55 0.216938 0.1977 12860 59602 -1 1414 6 353 511 29765 10023 2.07738 2.07738 -150.611 -2.07738 -0.193352 -0.100806 375846. 2610.04 0.01 0.02 0.04 -1 -1 0.01 0.0136336 0.0128433 0.009851 0.2666 0.06715 0.6662 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 8.84 vpr 70.21 MiB -1 -1 0.24 24928 15 0.27 -1 -1 33568 -1 54324 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71896 162 96 998 939 1 700 300 16 16 256 mult_36 auto 30.9 MiB 0.48 9459.95 5623 104612 51107 53115 390 70.2 MiB 0.48 0.01 23.3793 20.7157 -1644.5 -20.7157 20.7157 0.23 0.00169405 0.00157238 0.187373 0.173358 -1 -1 -1 -1 44 13057 34 1.21132e+07 3.97408e+06 756265. 2954.16 4.33 0.765491 0.705242 26536 158550 -1 9792 20 3101 6318 880215 249373 22.1877 22.1877 -1777.49 -22.1877 0 0 982941. 3839.61 0.03 0.23 0.10 -1 -1 0.03 0.0929629 0.0873041 0.007952 0.347 0.01601 0.637 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 509.90 vpr 466.73 MiB -1 -1 36.96 286736 123 57.80 -1 -1 77920 -1 116364 1296 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 477932 114 102 21839 21749 1 11501 1565 50 50 2500 memory auto 175.4 MiB 231.31 529617 146991 937011 322504 609436 5071 466.7 MiB 17.59 0.15 181.329 79.036 -53840.3 -79.036 79.036 11.01 0.0449279 0.0400432 5.31722 4.4067 -1 -1 -1 -1 84 226902 33 1.47946e+08 9.7677e+07 1.52037e+07 6081.50 100.71 24.4699 20.4643 348740 3363976 -1 197760 19 36312 144495 8744781 1710135 80.1328 80.1328 -66243.8 -80.1328 -15.6629 -0.216197 1.92285e+07 7691.40 0.71 4.02 2.19 -1 -1 0.71 2.39507 2.10805 0.08558 0.3843 0.01196 0.6037 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.67 vpr 66.29 MiB -1 -1 0.19 20324 3 0.07 -1 -1 32716 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67884 99 130 344 474 1 224 298 12 12 144 clb auto 26.4 MiB 0.09 1648.51 702 125668 51204 61728 12736 66.3 MiB 0.24 0.00 2.12998 1.84896 -119.591 -1.84896 1.84896 0.11 0.000599261 0.00055921 0.0812627 0.0754817 -1 -1 -1 -1 44 1272 15 5.66058e+06 4.21279e+06 391831. 2721.05 0.69 0.280198 0.255502 14004 80442 -1 1136 7 390 633 23259 7644 1.94124 1.94124 -133.77 -1.94124 -0.400786 -0.220682 509951. 3541.33 0.01 0.02 0.05 -1 -1 0.01 0.0147397 0.013835 0.01177 0.2255 0.06935 0.7051 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 7.80 vpr 70.39 MiB -1 -1 0.27 24160 15 0.27 -1 -1 33724 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 72076 162 96 998 939 1 701 300 16 16 256 mult_36 auto 30.5 MiB 0.51 9764.67 5743 99597 45248 53913 436 70.4 MiB 0.45 0.01 23.6456 20.412 -1582.35 -20.412 20.412 0.22 0.00168749 0.00156993 0.176631 0.163529 -1 -1 -1 -1 46 12412 26 1.21132e+07 3.97408e+06 791147. 3090.42 3.25 0.750412 0.690056 26792 163197 -1 10108 20 3252 6835 996280 275726 21.8298 21.8298 -1703.94 -21.8298 0 0 1.01637e+06 3970.19 0.03 0.24 0.10 -1 -1 0.03 0.0915539 0.0860036 0.008402 0.34 0.01585 0.6441 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 594.93 vpr 467.32 MiB -1 -1 33.53 285564 123 58.01 -1 -1 77932 -1 116368 1186 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 478540 114 102 21839 21749 1 10626 1455 50 50 2500 memory auto 176.2 MiB 231.01 476116 141168 825555 275723 545230 4602 467.3 MiB 15.77 0.14 151.586 77.8015 -49813.3 -77.8015 77.8015 10.98 0.0429132 0.0380184 5.02579 4.13045 -1 -1 -1 -1 82 220316 34 1.47946e+08 9.17484e+07 1.48840e+07 5953.59 191.55 19.9257 16.7373 343740 3244480 -1 191512 17 35424 149008 9723525 1883982 79.263 79.263 -64732.7 -79.263 -17.8757 -0.292146 1.85742e+07 7429.67 0.71 4.23 2.14 -1 -1 0.71 2.37768 2.09837 0.08621 0.3683 0.01171 0.62 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.80 vpr 65.89 MiB -1 -1 0.22 19620 3 0.07 -1 -1 32720 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67472 99 130 344 474 1 225 298 12 12 144 clb auto 26.0 MiB 0.13 1683.04 676 124673 51986 59222 13465 65.9 MiB 0.23 0.00 2.01486 1.59969 -120.553 -1.59969 1.59969 0.10 0.000580263 0.000537137 0.0785388 0.0727412 -1 -1 -1 -1 42 1398 15 5.66058e+06 4.21279e+06 345702. 2400.71 0.85 0.319432 0.290222 12810 66778 -1 1264 10 431 667 33559 10317 1.97706 1.97706 -137.093 -1.97706 -0.598658 -0.242394 434679. 3018.61 0.01 0.03 0.04 -1 -1 0.01 0.0173176 0.0161399 0.01017 0.2538 0.07611 0.6701 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 6.93 vpr 69.82 MiB -1 -1 0.24 24544 15 0.27 -1 -1 33564 -1 54328 38 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71500 162 96 998 939 1 696 301 16 16 256 mult_36 auto 30.1 MiB 0.45 9502.7 5594 111181 54311 56369 501 69.8 MiB 0.59 0.01 23.4382 21.3761 -1716.74 -21.3761 21.3761 0.21 0.00182794 0.00168766 0.239684 0.222498 -1 -1 -1 -1 46 12421 28 1.21132e+07 4.02797e+06 727248. 2840.81 2.46 0.670996 0.61995 24972 144857 -1 10032 18 3384 6927 979296 272700 22.9206 22.9206 -1876.34 -22.9206 0 0 934704. 3651.19 0.03 0.23 0.09 -1 -1 0.03 0.0861469 0.0810271 0.00761 0.3575 0.01654 0.626 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 454.50 vpr 402.20 MiB -1 -1 32.91 287060 123 58.49 -1 -1 77788 -1 116368 1329 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 411848 114 102 21839 21749 1 11872 1598 50 50 2500 memory auto 176.8 MiB 137.97 532612 149403 982088 347249 629634 5205 397.6 MiB 18.15 0.17 180.186 77.6291 -52093.9 -77.6291 77.6291 7.96 0.048986 0.0397133 5.42067 4.40316 -1 -1 -1 -1 84 231452 45 1.47946e+08 9.94556e+07 1.39795e+07 5591.78 144.49 21.2763 17.7531 326276 2968264 -1 206328 22 44966 171377 10245695 1920894 79.4527 79.4527 -68508.6 -79.4527 -26.867 -0.338869 1.77686e+07 7107.43 0.70 4.99 2.14 -1 -1 0.70 2.86374 2.50727 0.07949 0.4003 0.01183 0.5879 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.67 vpr 65.53 MiB -1 -1 0.19 20584 3 0.08 -1 -1 32352 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67100 99 130 344 474 1 226 298 12 12 144 clb auto 25.5 MiB 0.07 1567.87 742 126663 51951 61456 13256 65.5 MiB 0.24 0.00 2.12112 1.84343 -121.745 -1.84343 1.84343 0.10 0.000571808 0.00053116 0.0790369 0.0732619 -1 -1 -1 -1 40 1413 8 5.66058e+06 4.21279e+06 333335. 2314.82 0.77 0.310249 0.28197 12666 64609 -1 1289 9 410 624 33737 11411 1.92556 1.92556 -137.271 -1.92556 -0.29923 -0.168288 419432. 2912.72 0.01 0.02 0.04 -1 -1 0.01 0.0162589 0.0151541 0.01181 0.2318 0.06631 0.7019 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 6.18 vpr 69.50 MiB -1 -1 0.29 23776 15 0.27 -1 -1 33564 -1 54328 38 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71164 162 96 998 939 1 696 301 16 16 256 mult_36 auto 30.1 MiB 0.42 9347.15 5628 106141 46520 59215 406 69.5 MiB 0.48 0.01 23.239 21.3296 -1715.75 -21.3296 21.3296 0.20 0.0017226 0.00160292 0.190448 0.176299 -1 -1 -1 -1 46 12409 33 1.21132e+07 4.02797e+06 727248. 2840.81 1.81 0.592209 0.546198 24972 144857 -1 9687 19 3100 6365 819866 232775 22.0446 22.0446 -1820.1 -22.0446 0 0 934704. 3651.19 0.03 0.21 0.09 -1 -1 0.03 0.0873818 0.0820905 0.008044 0.3395 0.01621 0.6443 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 438.26 vpr 406.36 MiB -1 -1 33.70 287256 123 60.00 -1 -1 77408 -1 116368 1219 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 416112 114 102 21839 21749 1 11155 1488 50 50 2500 memory auto 177.3 MiB 122.37 516019 142373 893043 320727 567626 4690 396.2 MiB 16.47 0.14 189.795 76.5346 -52466 -76.5346 76.5346 7.96 0.041369 0.0364259 5.08231 4.18712 -1 -1 -1 -1 88 217412 42 1.47946e+08 9.3527e+07 1.46563e+07 5862.50 141.35 21.1291 17.6792 331272 3068748 -1 196693 18 41784 161585 9627890 1833959 77.4566 77.4566 -64934.6 -77.4566 -7.46158 -0.29436 1.83775e+07 7351.00 0.73 4.54 2.29 -1 -1 0.73 2.55806 2.22143 0.08226 0.3966 0.01177 0.5916 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.70 vpr 66.02 MiB -1 -1 0.18 19916 3 0.09 -1 -1 32280 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67600 99 130 344 474 1 224 298 12 12 144 clb auto 26.2 MiB 0.13 1545.62 697 120693 48202 59738 12753 66.0 MiB 0.24 0.00 2.12223 1.84343 -121.681 -1.84343 1.84343 0.10 0.000581309 0.000541225 0.0799061 0.0738725 -1 -1 -1 -1 42 1383 11 5.66058e+06 4.21279e+06 345702. 2400.71 0.74 0.270713 0.246301 12810 66778 -1 1211 9 393 632 26115 8059 1.90428 1.90428 -142.962 -1.90428 -0.178887 -0.0601249 434679. 3018.61 0.01 0.02 0.04 -1 -1 0.01 0.016297 0.0151977 0.01054 0.2528 0.07617 0.671 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 7.77 vpr 69.41 MiB -1 -1 0.24 24260 15 0.27 -1 -1 33180 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71072 162 96 998 939 1 706 300 16 16 256 mult_36 auto 30.1 MiB 0.43 9493.05 5516 103609 48369 54796 444 69.4 MiB 0.47 0.01 22.2685 20.6494 -1643.75 -20.6494 20.6494 0.20 0.0017559 0.00163406 0.185408 0.171694 -1 -1 -1 -1 50 12340 46 1.21132e+07 3.97408e+06 780512. 3048.87 3.37 0.713924 0.659308 25484 153448 -1 10005 19 3249 6990 815897 227584 22.1742 22.1742 -1824.11 -22.1742 0 0 1.00276e+06 3917.05 0.03 0.21 0.10 -1 -1 0.03 0.0895317 0.0842713 0.007924 0.3561 0.01633 0.6275 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 454.59 vpr 441.79 MiB -1 -1 33.25 287836 123 58.27 -1 -1 78312 -1 116368 1314 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 452388 114 102 21839 21749 1 11803 1583 50 50 2500 memory auto 178.2 MiB 153.79 527505 149807 988337 355881 626935 5521 396.9 MiB 18.51 0.15 182.294 77.604 -51316.4 -77.604 77.604 8.12 0.0434913 0.0383798 5.52993 4.52314 -1 -1 -1 -1 92 229751 38 1.47946e+08 9.86471e+07 1.52089e+07 6083.58 128.41 25.445 21.2096 338772 3221652 -1 206150 20 46204 175970 9822486 1824718 78.8411 78.8411 -61497 -78.8411 -29.7828 -0.29436 1.93279e+07 7731.17 0.76 4.73 2.36 -1 -1 0.76 2.70076 2.36629 0.08321 0.4121 0.01176 0.5761 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 2.60 vpr 66.10 MiB -1 -1 0.18 19192 3 0.07 -1 -1 32512 -1 52608 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67684 99 130 344 474 1 224 298 12 12 144 clb auto 26.4 MiB 0.08 1648.51 688 125668 52545 58540 14583 66.1 MiB 0.24 0.00 2.12112 1.84453 -120.071 -1.84453 1.84453 0.10 0.000580786 0.000540353 0.0808245 0.0749721 -1 -1 -1 -1 46 1227 12 5.66058e+06 4.21279e+06 378970. 2631.74 0.68 0.200755 0.183555 13238 73581 -1 1204 11 413 659 29325 9118 1.87786 1.87786 -139.503 -1.87786 -0.897282 -0.322548 486261. 3376.82 0.01 0.03 0.05 -1 -1 0.01 0.0187911 0.017509 0.01211 0.225 0.07094 0.7041 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 8.59 vpr 69.46 MiB -1 -1 0.24 23840 15 0.27 -1 -1 33100 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71124 162 96 998 939 1 704 300 16 16 256 mult_36 auto 30.1 MiB 0.43 9437.39 5535 103609 46905 55746 958 69.5 MiB 0.48 0.01 22.9489 20.5722 -1688.11 -20.5722 20.5722 0.20 0.00167526 0.00155918 0.185276 0.171696 -1 -1 -1 -1 58 11755 31 1.21132e+07 3.97408e+06 904549. 3533.39 4.18 0.826584 0.761884 27012 180273 -1 9395 21 3543 7540 881074 287601 21.8303 21.8303 -1791.27 -21.8303 0 0 1.15318e+06 4504.63 0.03 0.23 0.12 -1 -1 0.03 0.0962146 0.0903 0.008462 0.3539 0.01739 0.6287 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 405.95 vpr 405.30 MiB -1 -1 36.72 285452 123 58.75 -1 -1 77776 -1 116368 1204 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 415028 114 102 21839 21749 1 10905 1473 50 50 2500 memory auto 178.1 MiB 151.84 495314 134790 889435 319428 565008 4999 405.1 MiB 16.71 0.14 178.401 77.6454 -50569.6 -77.6454 77.6454 8.13 0.0422413 0.0374436 5.32021 4.41186 -1 -1 -1 -1 80 215434 46 1.47946e+08 9.27186e+07 1.34171e+07 5366.85 79.47 23.2714 19.4954 318780 2809964 -1 187385 20 42277 165839 9516256 1809717 78.8194 78.8194 -64594.6 -78.8194 -37.7424 -0.29436 1.69139e+07 6765.55 0.66 4.59 2.04 -1 -1 0.66 2.67771 2.33678 0.08039 0.372 0.01176 0.6162 From 4818739e3e88c74068764216e9522bf967dc90e6 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Wed, 15 Oct 2025 12:08:49 -0400 Subject: [PATCH 15/17] Update golden results for power_extended_circuit_list --- .../config/golden_results.txt | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt index 72734801e8..4ee57fa6b1 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_circuit_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 77.61 parmys 213.12 MiB -1 -1 28.83 218232 12 11.53 -1 -1 47624 -1 51168 326 257 0 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 99044 257 32 5074 5106 1 2978 615 23 23 529 clb auto 57.3 MiB 5.05 63696.6 20407 246331 93462 152432 437 96.7 MiB 3.60 0.04 14.2063 8.47019 -3862.5 -8.47019 8.47019 0.72 0.00959449 0.00861792 1.00387 0.880618 -1 -1 -1 -1 56 33158 30 2.70004e+07 1.75694e+07 1.92373e+06 3636.54 11.41 4.38721 3.88586 56706 387443 -1 29746 17 11776 37314 956069 202473 8.48863 8.48863 -3911.74 -8.48863 0 0 2.45466e+06 4640.18 0.14 0.84 0.39 -1 -1 0.14 0.535034 0.495206 0.01742 0.4321 0.03526 0.5326 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 98.28 parmys 249.05 MiB -1 -1 11.53 255028 7 16.98 -1 -1 55544 -1 52320 553 36 0 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 157376 36 100 6954 7054 1 3335 689 30 30 900 clb auto 76.8 MiB 4.52 104798 44338 323141 115707 193812 13622 125.8 MiB 7.39 0.07 9.74759 5.87104 -2211.6 -5.87104 5.87104 1.30 0.0217179 0.0186953 2.16005 1.86169 -1 -1 -1 -1 70 67861 23 4.8774e+07 2.98034e+07 4.18297e+06 4647.75 29.27 8.99464 7.74518 106732 854442 -1 64192 16 16136 69724 2946312 401111 6.18833 6.18833 -2301.72 -6.18833 0 0 5.26086e+06 5845.40 0.30 1.92 0.91 -1 -1 0.30 1.02288 0.925409 0.0263 0.3719 0.06219 0.5659 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 17.04 vpr 71.96 MiB -1 -1 9.65 40492 4 0.26 -1 -1 38040 -1 56756 52 195 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73688 195 193 1087 1280 1 606 441 15 15 225 io auto 32.1 MiB 0.33 7127.77 3154 173275 65583 104219 3473 72.0 MiB 0.78 0.01 2.78606 2.49928 -1097.88 -2.49928 2.49928 0.27 0.0027039 0.00249524 0.291305 0.266261 -1 -1 -1 -1 42 5699 22 1.03862e+07 3.35049e+06 589524. 2620.11 2.51 1.05203 0.966667 21486 116796 -1 5169 13 1551 2385 153127 42964 2.56058 2.56058 -1169.04 -2.56058 -0.221569 -0.0603476 739091. 3284.85 0.04 0.13 0.11 -1 -1 0.04 0.0943623 0.0887286 0.01448 0.38 0.05708 0.5629 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.95 vpr 67.85 MiB -1 -1 0.29 28048 3 0.10 -1 -1 37160 -1 54432 68 99 1 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 69476 99 130 344 474 1 225 298 12 12 144 clb auto 28.4 MiB 0.16 1683.04 652 113728 44323 53323 16082 67.8 MiB 0.32 0.00 2.01486 1.59858 -118.946 -1.59858 1.59858 0.16 0.000859942 0.000800744 0.102414 0.0946435 -1 -1 -1 -1 46 1138 11 5.66058e+06 4.21279e+06 378970. 2631.74 1.19 0.436068 0.396917 13238 73581 -1 1053 9 404 632 24417 8282 1.92811 1.92811 -129.123 -1.92811 -0.806621 -0.322548 486261. 3376.82 0.02 0.03 0.08 -1 -1 0.02 0.0229917 0.0214995 0.01018 0.2394 0.08222 0.6784 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 11.31 vpr 71.38 MiB -1 -1 0.37 32524 15 0.40 -1 -1 38176 -1 56248 37 162 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 73088 162 96 998 939 1 696 300 16 16 256 mult_36 auto 31.8 MiB 0.31 8913.16 5510 118654 56128 61852 674 71.4 MiB 0.82 0.01 22.8489 20.8615 -1657.46 -20.8615 20.8615 0.30 0.00264329 0.00245613 0.320006 0.296261 -1 -1 -1 -1 46 12305 42 1.21132e+07 3.97408e+06 727248. 2840.81 5.24 1.08372 1.00006 24972 144857 -1 10032 17 3482 7166 1034444 286850 22.2186 22.2186 -1752.15 -22.2186 0 0 934704. 3651.19 0.04 0.39 0.14 -1 -1 0.04 0.134853 0.126802 0.007599 0.3583 0.01704 0.6247 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 11.19 vpr 68.88 MiB -1 -1 0.30 31656 16 0.29 -1 -1 37140 -1 55392 25 66 0 5 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 70532 66 96 607 548 1 406 192 16 16 256 mult_36 auto 29.9 MiB 0.27 5993.56 3507 63234 31140 31562 532 68.9 MiB 0.49 0.01 18.9047 17.1854 -970.54 -17.1854 17.1854 0.31 0.00182552 0.0017051 0.214244 0.198429 -1 -1 -1 -1 44 8752 28 1.21132e+07 3.32735e+06 694168. 2711.59 6.64 0.896505 0.827889 24716 140770 -1 6980 19 2411 5049 1004714 316816 18.1158 18.1158 -1071.28 -18.1158 0 0 904549. 3533.39 0.04 0.30 0.14 -1 -1 0.04 0.0885096 0.0832107 0.007377 0.3444 0.0206 0.635 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 427.09 vpr 401.98 MiB -1 -1 47.45 297104 123 80.77 -1 -1 82696 -1 117904 1371 114 45 8 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 411628 114 102 21839 21749 1 11654 1640 50 50 2500 memory auto 178.7 MiB 22.07 529188 145459 997341 341950 650576 4815 402.0 MiB 27.25 0.25 174.997 78.8223 -51941.7 -78.8223 78.8223 11.74 0.0573885 0.0462599 6.51564 5.37998 -1 -1 -1 -1 84 221441 36 1.47946e+08 1.01719e+08 1.39795e+07 5591.78 151.14 25.5124 21.63 326276 2968264 -1 201486 24 46497 177522 9877597 1882329 79.6934 79.6934 -66383.9 -79.6934 -12.6378 -0.196253 1.77686e+07 7107.43 1.05 6.75 3.17 -1 -1 1.05 3.85628 3.36611 0.07814 0.4053 0.01172 0.583 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 64.65 vpr 307.52 MiB -1 -1 9.93 125228 5 4.63 -1 -1 47864 -1 74792 464 506 45 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 314896 506 553 3055 3608 1 2791 1568 50 50 2500 memory auto 53.9 MiB 3.75 40144.8 14847 1476578 812075 429130 235373 307.5 MiB 6.26 0.07 12.1601 6.86914 -1952.91 -6.86914 6.86914 11.78 0.0168363 0.0152507 2.8526 2.56144 -1 -1 -1 -1 38 21801 21 1.47946e+08 4.96674e+07 6.86584e+06 2746.33 11.86 7.38799 6.79591 251304 1421084 -1 21141 15 3981 5254 1023151 270243 6.965 6.965 -2240.25 -6.965 -4.298 -0.340786 8.69095e+06 3476.38 0.57 0.94 1.48 -1 -1 0.57 0.768127 0.726465 0.1693 0.1412 0.04091 0.8178 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 12.13 vpr 73.01 MiB -1 -1 1.03 35116 2 0.13 -1 -1 38212 -1 61576 29 311 15 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 74764 311 156 972 1128 1 953 511 28 28 784 memory auto 33.8 MiB 0.56 19572.2 8561 259845 119453 137740 2652 73.0 MiB 1.33 0.02 5.07008 3.94157 -4433.28 -3.94157 3.94157 1.07 0.00444849 0.00389734 0.551659 0.477174 -1 -1 -1 -1 36 14399 23 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 3.13 1.30774 1.1591 74338 387760 -1 13494 14 2948 3415 693331 204957 4.01477 4.01477 -4926.29 -4.01477 -11.0686 -0.298787 2.40571e+06 3068.51 0.13 0.31 0.45 -1 -1 0.13 0.171577 0.158325 0.09063 0.1511 0.01735 0.8315 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 24.44 vpr 80.29 MiB -1 -1 4.67 59880 7 3.17 -1 -1 40996 -1 60300 158 193 5 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 82220 193 205 2230 2435 1 1220 561 20 20 400 memory auto 40.7 MiB 1.23 20626.6 9948 301121 128988 152490 19643 80.3 MiB 2.15 0.02 7.66755 5.13837 -2887.19 -5.13837 5.13837 0.51 0.00534766 0.00477495 0.736257 0.651473 -1 -1 -1 -1 50 18552 34 2.07112e+07 1.12553e+07 1.26944e+06 3173.59 5.93 2.10606 1.87953 40848 252947 -1 16038 16 4655 11746 661552 148539 5.54623 5.54623 -3064.19 -5.54623 -7.01522 -0.298787 1.63222e+06 4080.54 0.09 0.41 0.27 -1 -1 0.09 0.250231 0.232032 0.0281 0.2205 0.02528 0.7542 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 58.46 vpr 101.17 MiB -1 -1 4.22 72248 27 5.90 -1 -1 45164 -1 62452 238 385 2 1 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 103600 385 394 3869 4200 1 2335 1020 27 27 729 io auto 52.5 MiB 2.96 64819.7 32159 657916 286533 364514 6869 91.8 MiB 6.27 0.06 22.8475 14.5145 -12629.8 -14.5145 14.5145 1.02 0.0131766 0.0121543 1.78987 1.63133 -1 -1 -1 -1 76 49956 41 3.93038e+07 1.43188e+07 3.58343e+06 4915.54 23.59 5.9958 5.53033 88945 732515 -1 44811 13 9856 35004 1903612 343478 14.815 14.815 -13097.4 -14.815 0 0 4.48127e+06 6147.14 0.24 1.05 0.75 -1 -1 0.24 0.538619 0.508781 0.02205 0.4592 0.02649 0.5143 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 24.60 vpr 81.31 MiB -1 -1 3.45 53672 8 1.40 -1 -1 42028 -1 62252 135 235 1 6 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 83264 235 305 2597 2758 1 1491 682 19 19 361 io auto 41.7 MiB 3.37 25574.2 12318 312682 124511 183893 4278 81.3 MiB 2.35 0.03 7.09243 5.23972 -2722.4 -5.23972 5.23972 0.47 0.00643078 0.00580861 0.727061 0.660551 -1 -1 -1 -1 56 23731 25 1.72706e+07 1.01997e+07 1.27879e+06 3542.35 5.22 2.05442 1.88039 38159 255829 -1 20452 14 5902 17007 1410138 375475 5.18967 5.18967 -2949.68 -5.18967 -1.00334 -0.196402 1.63234e+06 4521.70 0.08 0.59 0.25 -1 -1 0.08 0.274426 0.258202 0.02614 0.4079 0.02677 0.5653 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 22.39 vpr 82.86 MiB -1 -1 1.97 54876 20 3.26 -1 -1 44508 -1 47040 148 38 0 0 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 84844 38 36 2580 2616 1 1085 222 17 17 289 clb auto 42.9 MiB 1.24 18135.3 9134 59941 21439 38037 465 82.9 MiB 1.28 0.01 20.3547 13.6282 -2656.46 -13.6282 13.6282 0.37 0.00530882 0.00474036 0.544953 0.473604 -1 -1 -1 -1 48 16252 35 1.34605e+07 7.97631e+06 864508. 2991.38 5.92 1.90165 1.66497 28519 171069 -1 13203 17 4356 13036 386444 73883 14.0309 14.0309 -2847.22 -14.0309 0 0 1.10659e+06 3829.03 0.06 0.39 0.16 -1 -1 0.06 0.279856 0.257093 0.006688 0.3623 0.03163 0.6061 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 4508.98 vpr 1.66 GiB -1 -1 391.44 1206208 64 3077.38 -1 -1 378788 -1 316188 6712 36 159 27 success 0a3c1f2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-47-generic x86_64 2025-10-06T22:22:16 agent-2 /home/pooladam/actions-runner/_work/vtr-verilog-to-routing/vtr-verilog-to-routing 1744936 36 356 123926 122711 1 32986 7290 97 97 9409 clb auto 749.7 MiB 64.57 2.24203e+06 446651 8556545 3079297 5454082 23166 1539.0 MiB 118.45 1.05 154.679 62.0438 -308257 -62.0438 62.0438 40.02 0.172103 0.148001 22.88 19.1591 -1 -1 -1 -1 84 574193 28 5.71422e+08 4.59526e+08 5.37489e+07 5712.50 309.40 97.1465 81.7583 1232963 11469157 -1 550229 18 105310 340653 19722610 3875327 62.679 62.679 -374188 -62.679 0 0 6.82876e+07 7257.69 3.68 13.63 11.10 -1 -1 3.68 9.45318 8.36015 0.2704 0.3703 0.01433 0.6154 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 51.06 parmys 203.72 MiB -1 -1 20.98 208612 12 7.40 -1 -1 46708 -1 49056 326 257 0 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 97760 257 32 5074 5106 1 2978 615 23 23 529 clb auto 56.0 MiB 3.14 63696.6 20878 267243 109279 157119 845 95.5 MiB 2.31 0.02 14.2063 8.39108 -3886.78 -8.39108 8.39108 0.44 0.00557738 0.00492243 0.660452 0.570065 -1 -1 -1 -1 54 35417 25 2.70004e+07 1.75694e+07 1.84580e+06 3489.22 6.00 2.7141 2.36766 56178 377761 -1 30696 18 12172 38663 1027476 213735 8.54217 8.54217 -3941.51 -8.54217 0 0 2.39736e+06 4531.87 0.08 0.62 0.24 -1 -1 0.08 0.395813 0.358442 0.01733 0.4304 0.03593 0.5337 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml blob_merge.v common 59.20 parmys 240.57 MiB -1 -1 8.63 246340 7 10.10 -1 -1 49892 -1 50484 553 36 0 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 136684 36 100 6954 7054 1 3335 689 30 30 900 clb auto 75.1 MiB 2.85 104798 44190 323141 111959 197259 13923 123.6 MiB 4.59 0.04 9.74759 6.09104 -2207.86 -6.09104 6.09104 0.84 0.0137662 0.0124098 1.73488 1.47128 -1 -1 -1 -1 68 68684 19 4.8774e+07 2.98034e+07 4.08678e+06 4540.87 15.34 5.58704 4.81859 104936 820930 -1 63133 16 15924 69340 2883920 388329 6.30339 6.30339 -2283.73 -6.30339 0 0 5.07014e+06 5633.48 0.16 1.30 0.55 -1 -1 0.16 0.712484 0.64751 0.02571 0.3638 0.05989 0.5763 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml boundtop.v common 10.48 vpr 70.31 MiB -1 -1 6.26 33376 4 0.18 -1 -1 34124 -1 54836 52 195 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71996 195 193 1087 1280 1 606 441 15 15 225 io auto 30.5 MiB 0.21 7127.77 3088 138037 51620 83750 2667 70.3 MiB 0.44 0.01 2.78606 2.49928 -1085.86 -2.49928 2.49928 0.17 0.00181589 0.00167237 0.176556 0.16218 -1 -1 -1 -1 40 5836 41 1.03862e+07 3.35049e+06 568276. 2525.67 0.94 0.548631 0.503388 21262 112936 -1 5164 14 1682 2629 168936 50368 2.67647 2.67647 -1178.29 -2.67647 -1.42791 -0.340786 712852. 3168.23 0.02 0.10 0.07 -1 -1 0.02 0.0694241 0.0651037 0.01381 0.3736 0.05649 0.5699 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 2.67 vpr 66.52 MiB -1 -1 0.18 21088 3 0.07 -1 -1 32732 -1 52224 68 99 1 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68120 99 130 344 474 1 225 298 12 12 144 clb auto 27.1 MiB 0.07 1683.04 676 124673 51986 59222 13465 66.5 MiB 0.23 0.00 2.01486 1.59969 -120.553 -1.59969 1.59969 0.10 0.000575668 0.000534951 0.0750345 0.0694459 -1 -1 -1 -1 42 1381 15 5.66058e+06 4.21279e+06 345702. 2400.71 0.87 0.318922 0.289082 12810 66778 -1 1269 10 419 649 33010 10159 1.97706 1.97706 -138.9 -1.97706 -0.598658 -0.242394 434679. 3018.61 0.01 0.03 0.04 -1 -1 0.01 0.0172568 0.016087 0.01009 0.2538 0.07672 0.6694 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 9.26 vpr 69.81 MiB -1 -1 0.23 25312 15 0.27 -1 -1 33564 -1 54328 37 162 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 71488 162 96 998 939 1 696 300 16 16 256 mult_36 auto 30.5 MiB 0.20 8913.16 5484 103609 45928 57448 233 69.8 MiB 0.47 0.01 22.8489 20.9376 -1654.77 -20.9376 20.9376 0.20 0.001661 0.00153724 0.18721 0.17343 -1 -1 -1 -1 50 12223 42 1.21132e+07 3.97408e+06 780512. 3048.87 5.16 0.983973 0.905391 25484 153448 -1 9493 19 3342 7063 856562 252014 21.8022 21.8022 -1776.07 -21.8022 0 0 1.00276e+06 3917.05 0.04 0.22 0.10 -1 -1 0.04 0.0866157 0.0812711 0.007718 0.3602 0.01703 0.6228 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq2.v common 6.88 vpr 67.33 MiB -1 -1 0.18 24164 16 0.20 -1 -1 33264 -1 53048 25 66 0 5 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68944 66 96 607 548 1 406 192 16 16 256 mult_36 auto 28.2 MiB 0.17 5993.56 3573 58257 28226 29482 549 67.3 MiB 0.30 0.00 18.9047 16.9455 -961.251 -16.9455 16.9455 0.20 0.00118629 0.00110774 0.139872 0.130137 -1 -1 -1 -1 38 8340 23 1.21132e+07 3.32735e+06 614590. 2400.74 3.74 0.563228 0.518333 23696 123034 -1 7165 18 2376 4911 956874 286695 17.8183 17.8183 -1073.3 -17.8183 0 0 780512. 3048.87 0.02 0.20 0.08 -1 -1 0.02 0.0599259 0.0562384 0.007305 0.3314 0.0197 0.6489 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 312.19 vpr 398.72 MiB -1 -1 32.88 287316 123 45.93 -1 -1 77932 -1 116368 1371 114 45 8 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 408292 114 102 21839 21749 1 11654 1640 50 50 2500 memory auto 177.2 MiB 13.87 529188 145707 987674 342938 638787 5949 398.7 MiB 17.71 0.16 174.997 78.8612 -51906.9 -78.8612 78.8612 8.00 0.0433223 0.0384214 5.2053 4.27693 -1 -1 -1 -1 84 219950 44 1.47946e+08 1.01719e+08 1.39795e+07 5591.78 142.85 19.6533 16.5173 326276 2968264 -1 201592 19 43106 167590 9635159 1828898 80.0439 80.0439 -66184.6 -80.0439 -33.5519 -0.295467 1.77686e+07 7107.43 0.68 4.36 2.13 -1 -1 0.68 2.46643 2.1503 0.07809 0.4057 0.01169 0.5826 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkDelayWorker32B.v common 42.54 vpr 305.84 MiB -1 -1 7.03 116792 5 2.91 -1 -1 46052 -1 72888 464 506 45 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 313180 506 553 3055 3608 1 2791 1568 50 50 2500 memory auto 52.3 MiB 2.36 40144.8 13223 1467473 790555 443656 233262 305.8 MiB 3.86 0.04 12.1601 7.61062 -1851.52 -7.61062 7.61062 8.18 0.0107971 0.00966556 1.86453 1.65893 -1 -1 -1 -1 38 20499 13 1.47946e+08 4.96674e+07 6.86584e+06 2746.33 7.35 4.54922 4.14442 251304 1421084 -1 19675 13 3900 4856 895705 240494 8.12228 8.12228 -2205.45 -8.12228 -7 -0.29436 8.69095e+06 3476.38 0.34 0.55 0.95 -1 -1 0.34 0.43478 0.409427 0.1478 0.1434 0.04039 0.8163 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkPktMerge.v common 8.45 vpr 71.16 MiB -1 -1 0.62 28000 2 0.10 -1 -1 33616 -1 59464 29 311 15 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 72872 311 156 972 1128 1 953 511 28 28 784 memory auto 32.2 MiB 0.35 19572.2 8909 259845 113289 143927 2629 71.2 MiB 0.83 0.01 5.07008 4.15205 -4546.28 -4.15205 4.15205 0.70 0.00287041 0.00249565 0.371635 0.319343 -1 -1 -1 -1 36 14755 26 4.25198e+07 9.78293e+06 1.94918e+06 2486.20 2.39 1.08357 0.954568 74338 387760 -1 13515 13 2748 3203 677285 197502 4.25762 4.25762 -4977.73 -4.25762 -13.0845 -0.318417 2.40571e+06 3068.51 0.09 0.25 0.27 -1 -1 0.09 0.132861 0.122903 0.0857 0.1508 0.01732 0.8318 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mkSMAdapter4B.v common 16.45 vpr 78.70 MiB -1 -1 3.13 52692 7 1.99 -1 -1 38384 -1 58368 158 193 5 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 80588 193 205 2230 2435 1 1220 561 20 20 400 memory auto 39.1 MiB 0.77 20626.6 9758 308057 128582 158898 20577 78.7 MiB 1.46 0.02 7.66755 5.19822 -2885.56 -5.19822 5.19822 0.34 0.0037258 0.00334144 0.555985 0.492834 -1 -1 -1 -1 50 18484 38 2.07112e+07 1.12553e+07 1.26944e+06 3173.59 4.06 1.5842 1.41214 40848 252947 -1 15349 17 4659 11748 642668 144692 5.36752 5.36752 -3068.41 -5.36752 -8.06122 -0.360359 1.63222e+06 4080.54 0.05 0.31 0.16 -1 -1 0.05 0.190031 0.175951 0.02852 0.2102 0.02572 0.7641 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml or1200.v common 37.99 vpr 97.52 MiB -1 -1 2.82 64100 27 3.79 -1 -1 40864 -1 60148 238 385 2 1 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 99856 385 394 3869 4200 1 2335 1020 27 27 729 io auto 50.4 MiB 2.01 64819.7 32263 657916 286505 364040 7371 89.7 MiB 4.13 0.04 22.8475 14.162 -12639.7 -14.162 14.162 0.67 0.0105742 0.00987593 1.44345 1.30981 -1 -1 -1 -1 76 50330 23 3.93038e+07 1.43188e+07 3.58343e+06 4915.54 14.80 3.89224 3.56392 88945 732515 -1 44699 15 10172 36447 2004898 360185 14.5602 14.5602 -13220.6 -14.5602 0 0 4.48127e+06 6147.14 0.15 0.89 0.50 -1 -1 0.15 0.462793 0.43303 0.02216 0.4578 0.0268 0.5154 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml raygentop.v common 17.99 vpr 79.98 MiB -1 -1 2.19 45580 8 0.92 -1 -1 38164 -1 59192 135 235 1 6 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 81900 235 305 2597 2758 1 1491 682 19 19 361 io auto 40.6 MiB 2.14 25574.2 12406 291682 120940 167214 3528 80.0 MiB 1.44 0.02 7.09243 5.29841 -2714.04 -5.29841 5.29841 0.30 0.00485928 0.00448481 0.506251 0.459673 -1 -1 -1 -1 54 24773 47 1.72706e+07 1.01997e+07 1.22727e+06 3399.63 5.37 1.86588 1.70346 37799 249493 -1 20331 14 5943 16974 1366588 353828 5.48065 5.48065 -3020.24 -5.48065 -0.0144466 -0.0144466 1.59430e+06 4416.33 0.05 0.44 0.16 -1 -1 0.05 0.208292 0.195562 0.02483 0.4025 0.02726 0.5702 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml sha.v common 13.19 vpr 81.22 MiB -1 -1 1.32 47868 20 2.03 -1 -1 40164 -1 44928 148 38 0 0 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 83168 38 36 2580 2616 1 1085 222 17 17 289 clb auto 41.4 MiB 0.80 18135.3 8976 61954 23373 38013 568 81.2 MiB 0.81 0.01 20.3547 13.5459 -2601.32 -13.5459 13.5459 0.23 0.00347206 0.00295362 0.367404 0.317434 -1 -1 -1 -1 48 14808 28 1.34605e+07 7.97631e+06 864508. 2991.38 2.63 1.24287 1.08679 28519 171069 -1 13247 16 4262 12792 379249 71541 13.6805 13.6805 -2945.51 -13.6805 0 0 1.10659e+06 3829.03 0.03 0.29 0.12 -1 -1 0.03 0.20661 0.187925 0.006754 0.3649 0.03207 0.603 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml mcml.v common 4465.06 vpr 1.53 GiB -1 -1 299.40 1188744 64 2556.36 -1 -1 379812 -1 314076 6712 36 159 27 success v8.0.0-14176-g61cda0ee2-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-14T16:16:04 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 1606736 36 356 123926 122711 1 32986 7290 97 97 9409 clb auto 748.4 MiB 43.28 2.24203e+06 438918 8556545 3042562 5489336 24647 1569.1 MiB 90.98 0.77 154.679 62.4912 -302910 -62.4912 62.4912 30.03 0.155569 0.135187 20.6396 17.3438 -1 -1 -1 -1 76 588245 46 5.71422e+08 4.59526e+08 4.94055e+07 5250.88 1042.40 91.3394 75.9361 1176515 10267906 -1 549313 18 107091 345628 20796563 4186509 63.59 63.59 -371135 -63.59 0 0 6.17572e+07 6563.63 2.50 12.38 7.20 -1 -1 2.50 8.26396 7.20897 0.2593 0.3511 0.01421 0.6347 From d044159acada1a34d8029370581bf569d6bd3cc7 Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Wed, 15 Oct 2025 12:36:16 -0400 Subject: [PATCH 16/17] Update golden results --- .../basic_no_timing/config/golden_results.txt | 8 ++-- .../basic_no_timing/config/golden_results.txt | 8 ++-- .../blanket/config/golden_results.txt | 6 +-- .../once/config/golden_results.txt | 8 ++-- .../blanket/config/golden_results.txt | 8 ++-- .../iterative/config/golden_results.txt | 8 ++-- .../once/config/golden_results.txt | 8 ++-- .../vanilla/config/golden_results.txt | 8 ++-- .../strong_binary/config/golden_results.txt | 6 +-- .../config/golden_results.txt | 4 +- .../config/golden_results.txt | 18 ++++----- .../config/golden_results.txt | 2 +- .../config/golden_results.txt | 14 +++---- .../config/golden_results.txt | 2 +- .../config/golden_results.txt | 40 +++++++++---------- .../config/golden_results.txt | 12 +++--- .../strong_sdc/config/golden_results.txt | 14 +++---- .../config/golden_results.txt | 12 +++--- .../config/golden_results.txt | 6 +-- .../config/golden_results.txt | 2 +- .../config/golden_results.txt | 18 ++++----- .../config/golden_results.txt | 14 +++---- .../config/golden_results.txt | 40 +++++++++---------- .../strong_sdc/config/golden_results.txt | 14 +++---- .../config/golden_results.txt | 14 +++---- 25 files changed, 147 insertions(+), 147 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt index 9033d3d987..6d764cb869 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic/basic_no_timing/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_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 -k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 1.07 vpr 64.88 MiB -1 -1 0.15 28236 3 0.06 -1 -1 36544 -1 -1 72 99 1 0 success v8.0.0-12799-g50a644d78 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-06-10T17:21:16 llavign1-OptiPlex-7070 /home/llavign1/Gits/vtr-clone/vtr_flow/tasks 66436 99 130 353 483 1 222 302 13 13 169 clb auto 25.3 MiB 0.03 1748.73 707 29650 4654 11713 13283 64.9 MiB 0.02 0.00 26 1506 9 3.33e+06 2.28e+06 360896. 2135.48 0.38 -k4_N10_memSize16384_memData64.xml diffeq1.v common 2.66 vpr 67.86 MiB -1 -1 0.19 32844 23 0.23 -1 -1 37316 -1 -1 74 162 0 5 success v8.0.0-12799-g50a644d78 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-06-10T17:21:16 llavign1-OptiPlex-7070 /home/llavign1/Gits/vtr-clone/vtr_flow/tasks 69484 162 96 1186 1127 1 667 337 13 13 169 clb auto 28.2 MiB 0.10 7906.16 4859 81205 21212 54650 5343 67.9 MiB 0.08 0.00 50 9091 14 3.33e+06 2.67e+06 641417. 3795.37 1.37 -k4_N10_memSize16384_memData64.xml single_wire.v common 0.31 vpr 62.98 MiB -1 -1 0.05 25804 1 0.01 -1 -1 33044 -1 -1 0 1 0 0 success v8.0.0-12799-g50a644d78 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-06-10T17:21:16 llavign1-OptiPlex-7070 /home/llavign1/Gits/vtr-clone/vtr_flow/tasks 64496 1 1 1 2 0 1 2 3 3 9 -1 auto 24.5 MiB 0.00 2 2 3 0 3 0 63.0 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 -k4_N10_memSize16384_memData64.xml single_ff.v common 0.41 vpr 63.02 MiB -1 -1 0.08 26064 1 0.01 -1 -1 33064 -1 -1 1 2 0 0 success v8.0.0-12799-g50a644d78 release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.8.0-60-generic x86_64 2025-06-10T17:21:16 llavign1-OptiPlex-7070 /home/llavign1/Gits/vtr-clone/vtr_flow/tasks 64532 2 1 3 4 1 3 4 3 3 9 -1 auto 24.7 MiB 0.00 6 6 9 6 0 3 63.0 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 +k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 1.64 vpr 64.26 MiB -1 -1 0.18 21064 3 0.07 -1 -1 32716 -1 -1 72 99 1 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65800 99 130 353 483 1 222 302 13 13 169 clb auto 24.4 MiB 0.03 1748.73 1183 124778 46879 23081 54818 64.3 MiB 0.15 0.00 22 2035 37 3.33e+06 2.28e+06 311708. 1844.43 0.53 +k4_N10_memSize16384_memData64.xml diffeq1.v common 2.81 vpr 67.24 MiB -1 -1 0.22 25288 23 0.24 -1 -1 33564 -1 -1 74 162 0 5 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68852 162 96 1186 1127 1 667 337 13 13 169 clb auto 27.5 MiB 0.12 7906.16 4910 96441 37729 58151 561 67.2 MiB 0.12 0.00 50 9566 16 3.33e+06 2.67e+06 641417. 3795.37 1.17 +k4_N10_memSize16384_memData64.xml single_wire.v common 0.52 vpr 61.97 MiB -1 -1 0.06 19028 1 0.02 -1 -1 29568 -1 -1 0 1 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63456 1 1 1 2 0 1 2 3 3 9 -1 auto 23.7 MiB 0.00 2 2 3 0 3 0 62.0 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 0.49 vpr 62.35 MiB -1 -1 0.06 19528 1 0.02 -1 -1 29612 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63844 2 1 3 4 1 3 4 3 3 9 -1 auto 23.7 MiB 0.00 6 6 9 3 3 3 62.3 MiB 0.00 0.00 26 15 1 30000 30000 4706.78 522.975 0.01 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt index 513370f533..e19b095604 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_basic_odin/basic_no_timing/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_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 -k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 3.37 odin 98.62 MiB 2.09 100992 -1 -1 4 0.20 -1 -1 33712 -1 -1 77 99 1 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 65108 99 130 378 508 1 264 307 13 13 169 clb auto 23.7 MiB 0.03 2217 834 80002 17611 37329 25062 63.6 MiB 0.06 0.00 38 1591 8 3.33e+06 2.43e+06 504671. 2986.22 0.18 -k4_N10_memSize16384_memData64.xml diffeq1.v common 4.23 odin 85.88 MiB 1.73 87936 -1 -1 23 0.22 -1 -1 34272 -1 -1 78 162 0 5 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 68008 162 96 1214 1147 1 683 341 14 14 196 clb auto 26.8 MiB 0.11 8470 5094 83641 22304 55208 6129 66.4 MiB 0.09 0.00 46 10813 38 4.32e+06 2.79e+06 735717. 3753.66 1.06 -k4_N10_memSize16384_memData64.xml single_wire.v common 1.66 vpr 61.51 MiB 1.16 61056 -1 -1 1 0.02 -1 -1 29296 -1 -1 0 1 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62984 1 1 1 2 0 1 2 3 3 9 -1 auto 22.9 MiB 0.00 2 2 3 0 3 0 61.5 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 -k4_N10_memSize16384_memData64.xml single_ff.v common 1.59 vpr 61.52 MiB 1.09 61440 -1 -1 1 0.02 -1 -1 29964 -1 -1 1 2 0 0 success v8.0.0-12648-g259ceba57-dirty release IPO VTR_ASSERT_LEVEL=2 Clang 18.1.3 on Linux-6.8.0-58-generic x86_64 2025-05-06T12:34:13 betzgrp-wintermute /home/zhan6738/VTR/vtr-verilog-to-routing/vtr_flow/tasks 62996 2 1 3 4 1 3 4 3 3 9 -1 auto 22.9 MiB 0.00 6 6 9 6 0 3 61.5 MiB 0.00 0.00 16 5 1 30000 30000 2550.78 283.420 0.00 +k4_N10_memSize16384_memData64.xml ch_intrinsics.v common 1.58 vpr 63.63 MiB 0.04 9216 -1 -1 4 0.22 -1 -1 33384 -1 -1 77 99 1 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65156 99 130 378 508 1 264 307 13 13 169 clb auto 24.1 MiB 0.04 2217.24 854 65512 24102 22817 18593 63.6 MiB 0.06 0.00 32 1693 9 3.33e+06 2.43e+06 428926. 2538.03 0.49 +k4_N10_memSize16384_memData64.xml diffeq1.v common 2.60 vpr 67.87 MiB 0.03 9216 -1 -1 23 0.23 -1 -1 34300 -1 -1 78 162 0 5 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 69496 162 96 1214 1147 1 683 341 14 14 196 clb auto 28.4 MiB 0.13 8470.62 5164 91971 36456 54965 550 67.9 MiB 0.11 0.00 46 10590 21 4.32e+06 2.79e+06 735717. 3753.66 1.16 +k4_N10_memSize16384_memData64.xml single_wire.v common 0.45 vpr 61.22 MiB 0.02 6144 -1 -1 1 0.02 -1 -1 29568 -1 -1 0 1 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62688 1 1 1 2 0 1 2 3 3 9 -1 auto 23.0 MiB 0.00 2 2 3 0 3 0 61.2 MiB 0.00 0.00 2 1 1 30000 0 1489.46 165.495 0.00 +k4_N10_memSize16384_memData64.xml single_ff.v common 0.40 vpr 61.22 MiB 0.01 5760 -1 -1 1 0.02 -1 -1 29608 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62692 2 1 3 4 1 3 4 3 3 9 -1 auto 22.6 MiB 0.00 6 6 9 3 3 3 61.2 MiB 0.00 0.00 26 15 1 30000 30000 4706.78 522.975 0.01 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/blanket/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/blanket/config/golden_results.txt index 00fafca74c..f37e86e878 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/blanket/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/blanket/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.47 vpr 67.04 MiB -1 -1 0.08 27956 1 0.03 -1 -1 35908 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock 68648 6 1 13 14 2 8 9 4 4 16 clb auto 28.4 MiB 0.00 23 18 450 161 197 92 67.0 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 2.2386e-05 1.7505e-05 0.00141611 0.00109159 -1 -1 -1 -1 20 11 11 107788 107788 10441.3 652.579 0.01 0.00277003 0.00227007 742 1670 -1 13 3 10 10 137 80 1.2939 0.545 -4.03651 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00106682 0.000989623 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.51 vpr 66.91 MiB -1 -1 0.09 28592 1 0.04 -1 -1 35576 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock 68520 3 -1 23 23 2 3 5 4 4 16 clb auto 28.3 MiB 0.01 5 3 12 4 2 6 66.9 MiB 0.00 0.00 0.620233 0.620297 -7.93119 -0.620297 0.545 0.01 6.0765e-05 5.1182e-05 0.000423486 0.000375079 -1 -1 -1 -1 8 1 1 107788 107788 4888.88 305.555 0.01 0.00215853 0.00198452 622 902 -1 1 1 1 1 8 6 0.54641 0.545 -7.63564 -0.54641 0 0 5552.67 347.042 0.00 0.00 0.00 -1 -1 0.00 0.00156675 0.00148493 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.58 vpr 65.42 MiB -1 -1 0.06 20016 1 0.04 -1 -1 31872 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66992 6 1 13 14 2 8 9 4 4 16 clb auto 27.2 MiB 0.00 23 18 432 135 191 106 65.4 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.00 2.1632e-05 1.464e-05 0.00123361 0.00095388 -1 -1 -1 -1 20 12 8 107788 107788 10441.3 652.579 0.01 0.00270418 0.00228652 742 1670 -1 13 3 11 11 148 85 1.2939 0.545 -4.03651 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00131752 0.00124065 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.58 vpr 65.42 MiB -1 -1 0.08 20016 1 0.04 -1 -1 31584 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66992 3 -1 23 23 2 3 5 4 4 16 clb auto 27.2 MiB 0.01 5 5 12 3 1 8 65.4 MiB 0.00 0.00 0.620233 0.620233 -7.93093 -0.620233 0.545 0.00 4.0393e-05 3.3794e-05 0.000379225 0.000343741 -1 -1 -1 -1 4 3 1 107788 107788 2525.47 157.842 0.01 0.00233574 0.00213556 594 690 -1 4 1 1 1 12 8 0.658498 0.545 -8.08399 -0.658498 0 0 3500.90 218.806 0.00 0.00 0.00 -1 -1 0.00 0.00152267 0.0014593 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/once/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/once/config/golden_results.txt index 9c26d09c04..a6b7d94cc2 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/once/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock/once/config/golden_results.txt @@ -1,4 +1,4 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.53 vpr 66.91 MiB -1 -1 0.11 27956 1 0.04 -1 -1 35928 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock 68520 6 1 13 14 2 8 9 4 4 16 clb auto 28.4 MiB 0.00 23 18 450 161 197 92 66.9 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 3.1465e-05 2.5612e-05 0.00200812 0.00158328 -1 -1 -1 -1 20 11 11 107788 107788 10441.3 652.579 0.01 0.00347702 0.00285088 742 1670 -1 13 3 10 10 137 80 1.2939 0.545 -4.03651 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00103911 0.000961979 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.52 vpr 66.79 MiB -1 -1 0.09 28480 1 0.04 -1 -1 35808 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock 68396 3 -1 23 23 2 3 5 4 4 16 clb auto 28.3 MiB 0.01 5 3 12 4 2 6 66.8 MiB 0.00 0.00 0.620233 0.620297 -7.93119 -0.620297 0.545 0.01 5.1837e-05 4.2663e-05 0.000437978 0.000389997 -1 -1 -1 -1 8 1 1 107788 107788 4888.88 305.555 0.01 0.00219175 0.00200554 622 902 -1 1 1 1 1 8 6 0.54641 0.545 -7.63564 -0.54641 0 0 5552.67 347.042 0.00 0.00 0.00 -1 -1 0.00 0.00153127 0.00144677 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.45 vpr 66.97 MiB -1 -1 0.07 27204 1 0.02 -1 -1 33400 -1 -1 1 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock/func_multiclock 68580 3 1 5 6 1 4 5 3 3 9 -1 auto 28.5 MiB 0.00 9 9 12 4 4 4 67.0 MiB 0.00 0.00 0.52647 0.52647 -0.88231 -0.52647 0.52647 0.00 2.3976e-05 1.7421e-05 0.000132931 0.000104907 -1 -1 -1 -1 20 10 1 53894 53894 4880.82 542.314 0.01 0.000978534 0.000890702 379 725 -1 22 1 3 3 78 68 1.8363 1.8363 -2.38094 -1.8363 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.000827119 0.000789711 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.55 vpr 65.42 MiB -1 -1 0.07 20016 1 0.04 -1 -1 31572 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66992 6 1 13 14 2 8 9 4 4 16 clb auto 27.2 MiB 0.00 23 18 432 135 191 106 65.4 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 2.0465e-05 1.3941e-05 0.00113546 0.000861335 -1 -1 -1 -1 20 12 8 107788 107788 10441.3 652.579 0.01 0.0025316 0.00211659 742 1670 -1 13 3 11 11 148 85 1.2939 0.545 -4.03651 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00115611 0.00109096 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.57 vpr 65.42 MiB -1 -1 0.08 20016 1 0.04 -1 -1 31596 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66992 3 -1 23 23 2 3 5 4 4 16 clb auto 27.2 MiB 0.01 5 5 12 3 1 8 65.4 MiB 0.00 0.00 0.620233 0.620233 -7.93093 -0.620233 0.545 0.00 4.0944e-05 3.4468e-05 0.000370385 0.000334897 -1 -1 -1 -1 4 3 1 107788 107788 2525.47 157.842 0.01 0.00229666 0.00209837 594 690 -1 4 1 1 1 12 8 0.658498 0.545 -8.08399 -0.658498 0 0 3500.90 218.806 0.00 0.00 0.00 -1 -1 0.00 0.00154399 0.00147988 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.54 vpr 65.10 MiB -1 -1 0.07 20012 1 0.02 -1 -1 29324 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66660 3 1 5 6 1 4 5 3 3 9 -1 auto 26.9 MiB 0.00 9 9 12 3 4 5 65.1 MiB 0.00 0.00 0.52647 0.52647 -0.88231 -0.52647 0.52647 0.00 1.1677e-05 8.04e-06 0.000102189 7.9422e-05 -1 -1 -1 -1 20 10 1 53894 53894 4880.82 542.314 0.00 0.00104595 0.000969558 379 725 -1 22 1 3 3 78 68 1.8363 1.8363 -2.38094 -1.8363 0 0 6579.40 731.044 0.00 0.00 0.00 -1 -1 0.00 0.000929106 0.00089988 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt index 97ecec9f80..3ee39e9f99 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/blanket/config/golden_results.txt @@ -1,4 +1,4 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.40 vpr 66.61 MiB 0.01 7552 -1 -1 1 0.03 -1 -1 35812 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68204 6 1 13 14 2 8 9 4 4 16 clb auto 28.3 MiB 0.00 24 18 441 146 185 110 66.6 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 3.0654e-05 2.4859e-05 0.00173436 0.00139254 -1 -1 -1 -1 20 10 3 107788 107788 10441.3 652.579 0.01 0.00297659 0.00250769 742 1670 -1 15 3 9 9 118 69 1.27357 0.545 -3.99586 -1.27357 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.000994824 0.00092077 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.42 vpr 67.05 MiB 0.01 7552 -1 -1 1 0.04 -1 -1 35972 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68660 3 1 25 26 2 8 6 4 4 16 clb auto 28.4 MiB 0.01 21 20 15 4 1 10 67.1 MiB 0.00 0.00 0.620233 0.620042 -8.9502 -0.620042 0.557849 0.01 6.7453e-05 5.6664e-05 0.000541631 0.000478532 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00237007 0.00216852 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -9.14332 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00203863 0.00185383 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.38 vpr 66.67 MiB 0.01 7424 -1 -1 1 0.01 -1 -1 33884 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68268 6 2 10 12 2 8 10 4 4 16 clb auto 28.3 MiB 0.00 24 18 460 144 221 95 66.7 MiB 0.00 0.00 0.620297 0.620297 -2.13801 -0.620297 nan 0.01 3.3435e-05 2.5618e-05 0.00111147 0.000826764 -1 -1 -1 -1 20 7 8 107788 107788 10441.3 652.579 0.01 0.0023734 0.00192454 742 1670 -1 13 3 12 12 158 98 0.738225 nan -2.20594 -0.738225 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.000987786 0.000920326 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.50 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31792 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 6 1 13 14 2 8 9 4 4 16 clb auto 26.6 MiB 0.00 24 18 297 73 161 63 65.0 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.00 1.796e-05 1.371e-05 0.000758275 0.000571268 -1 -1 -1 -1 20 12 9 107788 107788 10441.3 652.579 0.01 0.00208622 0.00176387 742 1670 -1 13 3 9 9 128 74 1.2939 0.545 -4.03563 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00112989 0.00106848 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.55 vpr 65.05 MiB 0.03 6528 -1 -1 1 0.04 -1 -1 31872 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66608 3 1 25 26 2 8 6 4 4 16 clb auto 26.7 MiB 0.01 21 20 15 4 1 10 65.0 MiB 0.00 0.00 0.620233 0.620042 -8.9502 -0.620042 0.557849 0.00 4.6224e-05 3.8732e-05 0.000438179 0.000396357 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00216067 0.00201122 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -9.14332 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00198565 0.00183723 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.49 vpr 65.05 MiB 0.02 6528 -1 -1 1 0.02 -1 -1 29568 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66608 6 2 10 12 2 8 10 4 4 16 clb auto 26.7 MiB 0.00 24 18 590 216 256 118 65.0 MiB 0.00 0.00 0.620297 0.620297 -2.13769 -0.620297 nan 0.00 1.4507e-05 1.0697e-05 0.00101774 0.00071513 -1 -1 -1 -1 20 18 8 107788 107788 10441.3 652.579 0.01 0.00217415 0.00175788 742 1670 -1 12 3 10 10 173 106 0.715851 nan -2.1818 -0.715851 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00100547 0.000949581 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt index 4344ca0783..4e15baacbe 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/iterative/config/golden_results.txt @@ -1,4 +1,4 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.50 vpr 66.91 MiB 0.01 7424 -1 -1 1 0.04 -1 -1 35700 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68520 6 1 13 14 2 8 9 4 4 16 clb auto 28.4 MiB 0.00 24 18 441 146 185 110 66.9 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 2.3602e-05 1.8383e-05 0.00140866 0.00109275 -1 -1 -1 -1 20 10 3 107788 107788 10441.3 652.579 0.01 0.00249426 0.00207487 742 1670 -1 15 3 9 9 118 69 1.27357 0.545 -3.99586 -1.27357 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.000935824 0.000866064 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.53 vpr 66.44 MiB 0.01 7424 -1 -1 1 0.04 -1 -1 35616 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68036 3 1 23 24 2 8 6 4 4 16 clb auto 28.0 MiB 0.01 21 20 15 4 1 10 66.4 MiB 0.00 0.00 0.620233 0.620042 -8.4052 -0.620042 0.557849 0.01 5.4937e-05 4.5209e-05 0.00044414 0.000392342 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.0021993 0.00200197 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -8.59832 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00199383 0.00180419 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.45 vpr 67.04 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33864 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68648 6 2 10 12 2 8 10 4 4 16 clb auto 28.4 MiB 0.00 24 18 460 144 221 95 67.0 MiB 0.00 0.00 0.620297 0.620297 -2.13801 -0.620297 nan 0.01 1.862e-05 1.4156e-05 0.000983892 0.000726732 -1 -1 -1 -1 20 7 8 107788 107788 10441.3 652.579 0.01 0.00217529 0.00178026 742 1670 -1 13 3 12 12 158 98 0.738225 nan -2.20594 -0.738225 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00103206 0.000964792 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.67 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31584 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 6 1 13 14 2 8 9 4 4 16 clb auto 26.8 MiB 0.00 24 18 297 73 161 63 65.0 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.00 1.8032e-05 1.3908e-05 0.000766766 0.000580578 -1 -1 -1 -1 20 12 9 107788 107788 10441.3 652.579 0.01 0.00209771 0.00177345 742 1670 -1 13 3 9 9 128 74 1.2939 0.545 -4.03563 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00113005 0.00106952 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.71 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31592 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 3 1 23 24 2 8 6 4 4 16 clb auto 26.8 MiB 0.01 21 20 15 4 1 10 65.0 MiB 0.00 0.00 0.620233 0.620042 -8.4052 -0.620042 0.557849 0.00 4.3954e-05 3.6908e-05 0.000405763 0.000364267 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00208356 0.00193141 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -8.59832 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00184735 0.0017074 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.63 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.02 -1 -1 30080 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 6 2 10 12 2 8 10 4 4 16 clb auto 26.8 MiB 0.00 24 18 590 216 256 118 65.0 MiB 0.00 0.00 0.620297 0.620297 -2.13769 -0.620297 nan 0.00 1.4338e-05 1.0593e-05 0.00101545 0.000711921 -1 -1 -1 -1 20 18 8 107788 107788 10441.3 652.579 0.01 0.00220537 0.00178666 742 1670 -1 12 3 10 10 173 106 0.715851 nan -2.1818 -0.715851 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00103528 0.000980947 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt index 5055fc18ff..8be1be3871 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/once/config/golden_results.txt @@ -1,4 +1,4 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.42 vpr 66.92 MiB 0.01 7424 -1 -1 1 0.04 -1 -1 35320 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68524 6 1 13 14 2 8 9 4 4 16 clb auto 28.4 MiB 0.00 24 18 441 146 185 110 66.9 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 2.298e-05 1.7823e-05 0.00130623 0.00100078 -1 -1 -1 -1 20 10 3 107788 107788 10441.3 652.579 0.01 0.00245466 0.00203616 742 1670 -1 15 3 9 9 118 69 1.27357 0.545 -3.99586 -1.27357 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00104981 0.00097519 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.48 vpr 66.92 MiB 0.02 7552 -1 -1 1 0.04 -1 -1 35748 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68528 3 1 25 26 2 8 6 4 4 16 clb auto 28.5 MiB 0.01 21 20 15 4 1 10 66.9 MiB 0.00 0.00 0.620233 0.620042 -8.9502 -0.620042 0.557849 0.01 7.1245e-05 6.0207e-05 0.000494845 0.000439424 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00224384 0.00205977 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -9.14332 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00202736 0.00183257 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.41 vpr 66.71 MiB 0.01 7424 -1 -1 1 0.02 -1 -1 34248 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68308 6 2 10 12 2 8 10 4 4 16 clb auto 28.3 MiB 0.00 24 18 550 188 245 117 66.7 MiB 0.00 0.00 0.620297 0.619978 -2.13737 -0.619978 nan 0.01 2.1475e-05 1.4712e-05 0.00126359 0.000917777 -1 -1 -1 -1 20 17 8 107788 107788 10441.3 652.579 0.01 0.00273368 0.00223559 742 1670 -1 13 1 6 6 101 64 0.718652 nan -2.2024 -0.718652 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.000867199 0.000810286 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.55 vpr 65.05 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31560 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66608 6 1 13 14 2 8 9 4 4 16 clb auto 26.4 MiB 0.00 24 18 297 73 161 63 65.0 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.00 1.8504e-05 1.4152e-05 0.000783775 0.000593831 -1 -1 -1 -1 20 12 9 107788 107788 10441.3 652.579 0.01 0.00214821 0.00182465 742 1670 -1 13 3 9 9 128 74 1.2939 0.545 -4.03563 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00114741 0.00108548 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.60 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31572 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 3 1 25 26 2 8 6 4 4 16 clb auto 26.8 MiB 0.01 21 20 15 4 1 10 65.0 MiB 0.00 0.00 0.620233 0.620042 -8.9502 -0.620042 0.557849 0.00 4.6831e-05 3.9389e-05 0.000448903 0.00040555 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00220251 0.00204138 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -9.14332 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00200106 0.00185173 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.55 vpr 64.84 MiB 0.02 6528 -1 -1 1 0.02 -1 -1 29696 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66392 6 2 10 12 2 8 10 4 4 16 clb auto 26.7 MiB 0.00 24 18 560 197 241 122 64.8 MiB 0.00 0.00 0.620297 0.619978 -2.13769 -0.619978 nan 0.00 1.7361e-05 1.1451e-05 0.00101575 0.000709725 -1 -1 -1 -1 20 17 8 107788 107788 10441.3 652.579 0.01 0.0022092 0.00178645 742 1670 -1 21 14 32 32 512 316 0.812331 nan -2.64271 -0.812331 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00130659 0.00116893 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt index c8fe592ee4..aed6e872d5 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock/vanilla/config/golden_results.txt @@ -1,4 +1,4 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.52 vpr 66.92 MiB 0.01 7552 -1 -1 1 0.04 -1 -1 35700 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68524 6 1 13 14 2 8 9 4 4 16 clb auto 28.4 MiB 0.01 24 18 441 146 185 110 66.9 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.01 2.3118e-05 1.7918e-05 0.00131651 0.00101519 -1 -1 -1 -1 20 10 3 107788 107788 10441.3 652.579 0.01 0.00264603 0.00223029 742 1670 -1 15 3 9 9 118 69 1.27357 0.545 -3.99586 -1.27357 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00112117 0.0010336 - k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.56 vpr 66.66 MiB 0.01 7424 -1 -1 1 0.04 -1 -1 35616 -1 -1 2 3 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68264 3 1 23 24 2 8 6 4 4 16 clb auto 28.2 MiB 0.01 21 20 15 4 1 10 66.7 MiB 0.00 0.00 0.620233 0.620042 -8.4052 -0.620042 0.557849 0.01 7.0386e-05 5.9713e-05 0.00048477 0.000430154 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.00224273 0.00205048 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -8.59832 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00200723 0.00180129 - k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.46 vpr 67.04 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33752 -1 -1 2 6 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_multiclock_odin/func_multiclock 68648 6 2 10 12 2 8 10 4 4 16 clb auto 28.4 MiB 0.00 24 18 460 144 221 95 67.0 MiB 0.00 0.00 0.620297 0.620297 -2.13801 -0.620297 nan 0.01 2.9293e-05 2.3973e-05 0.00106141 0.000789786 -1 -1 -1 -1 20 7 8 107788 107788 10441.3 652.579 0.01 0.00232512 0.00190475 742 1670 -1 13 3 12 12 158 98 0.738225 nan -2.20594 -0.738225 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.000914394 0.000847158 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 multiclock_output_and_latch.v common 0.69 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31376 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 6 1 13 14 2 8 9 4 4 16 clb auto 26.8 MiB 0.00 24 18 297 73 161 63 65.0 MiB 0.00 0.00 1.02737 1.02737 -3.59667 -1.02737 0.545 0.00 1.8076e-05 1.3888e-05 0.000767017 0.000579515 -1 -1 -1 -1 20 12 9 107788 107788 10441.3 652.579 0.01 0.00206965 0.00175318 742 1670 -1 13 3 9 9 128 74 1.2939 0.545 -4.03563 -1.2939 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00115568 0.00109484 +k6_frac_N10_mem32K_40nm.xml multiclock_reader_writer.v common 0.72 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.04 -1 -1 31888 -1 -1 2 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 3 1 23 24 2 8 6 4 4 16 clb auto 26.8 MiB 0.01 21 20 15 4 1 10 65.0 MiB 0.00 0.00 0.620233 0.620042 -8.4052 -0.620042 0.557849 0.00 4.3859e-05 3.6582e-05 0.000409631 0.00036793 -1 -1 -1 -1 20 22 1 107788 107788 10441.3 652.579 0.01 0.0021623 0.00200774 742 1670 -1 27 6 18 18 703 470 0.865467 0.557849 -8.59832 -0.865467 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00190302 0.0017588 +k6_frac_N10_mem32K_40nm.xml multiclock_separate_and_latch.v common 0.64 vpr 65.04 MiB 0.02 6528 -1 -1 1 0.02 -1 -1 30096 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66604 6 2 10 12 2 8 10 4 4 16 clb auto 26.6 MiB 0.00 24 18 590 216 256 118 65.0 MiB 0.01 0.00 0.620297 0.620297 -2.13769 -0.620297 nan 0.00 1.4788e-05 1.0963e-05 0.00154813 0.00117695 -1 -1 -1 -1 20 18 8 107788 107788 10441.3 652.579 0.01 0.00279863 0.00231177 742 1670 -1 12 3 10 10 173 106 0.715851 nan -2.1818 -0.715851 0 0 13748.8 859.301 0.00 0.00 0.00 -1 -1 0.00 0.00104341 0.00098665 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt index 5cd862f385..423f7d3b98 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_binary/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml stereovision3.v common_--verify_binary_search_off 1.28 vpr 64.52 MiB -1 -1 0.32 25124 5 0.11 -1 -1 33200 -1 -1 12 10 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66068 10 2 181 183 1 36 24 6 6 36 clb auto 25.6 MiB 0.03 207.924 169 126 37 83 6 64.5 MiB 0.01 0.00 2.22045 2.14643 -91.7964 -2.14643 2.14643 0.02 0.00023373 0.000211629 0.00247613 0.00234782 -1 -1 -1 -1 12 197 20 646728 646728 19965.4 554.594 0.08 0.0432462 0.0371749 1696 3924 -1 173 17 211 463 9583 3139 2.26399 2.26399 -96.0731 -2.26399 0 0 25971.8 721.439 0.00 0.02 0.00 -1 -1 0.00 0.0106631 0.00948746 - k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 1.40 vpr 65.07 MiB -1 -1 0.33 25124 5 0.11 -1 -1 33200 -1 -1 12 10 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66632 10 2 181 183 1 36 24 6 6 36 clb auto 25.6 MiB 0.03 207.924 169 126 37 83 6 65.1 MiB 0.01 0.00 2.22045 2.14643 -91.7964 -2.14643 2.14643 0.02 0.000249518 0.000226842 0.00226492 0.00213069 -1 -1 -1 -1 12 197 20 646728 646728 19965.4 554.594 0.17 0.0821448 0.0698377 1696 3924 -1 173 17 211 463 9583 3139 2.26399 2.26399 -96.0731 -2.26399 0 0 25971.8 721.439 0.00 0.02 0.00 -1 -1 0.00 0.0119107 0.0105865 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml stereovision3.v common_--verify_binary_search_off 1.37 vpr 65.43 MiB -1 -1 0.30 25016 4 0.13 -1 -1 32064 -1 -1 12 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67000 10 2 181 183 1 36 24 6 6 36 clb auto 26.0 MiB 0.03 207.924 148 1894 683 1121 90 65.4 MiB 0.02 0.00 2.22045 2.14643 -90.9176 -2.14643 2.14643 0.01 0.000236042 0.000213863 0.0145499 0.0131152 -1 -1 -1 -1 16 150 14 646728 646728 25971.8 721.439 0.14 0.0748337 0.0637425 1764 4776 -1 143 15 184 392 7641 2345 2.14691 2.14691 -90.3914 -2.14691 0 0 33305.4 925.151 0.00 0.01 0.00 -1 -1 0.00 0.0100406 0.00896795 +k6_N10_mem32K_40nm.xml stereovision3.v common_--verify_binary_search_on 1.44 vpr 65.47 MiB -1 -1 0.31 25016 4 0.13 -1 -1 32340 -1 -1 12 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67044 10 2 181 183 1 36 24 6 6 36 clb auto 26.4 MiB 0.03 207.924 148 1894 683 1121 90 65.5 MiB 0.02 0.00 2.22045 2.14643 -90.9176 -2.14643 2.14643 0.02 0.000237231 0.000214391 0.0147757 0.0132931 -1 -1 -1 -1 16 150 14 646728 646728 25971.8 721.439 0.21 0.112315 0.0950041 1764 4776 -1 143 15 184 392 7641 2345 2.14691 2.14691 -90.3914 -2.14691 0 0 33305.4 925.151 0.00 0.01 0.00 -1 -1 0.00 0.0100107 0.00895646 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt index 6b35814078..bf6dc1f5c3 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_bounding_box/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml stereovision3.v common 1.25 vpr 66.82 MiB -1 -1 0.33 33580 4 0.13 -1 -1 37244 -1 -1 12 10 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 68420 10 2 181 183 1 36 24 6 6 36 clb auto 27.8 MiB 0.03 207.924 162 3594 1770 1611 213 66.8 MiB 0.01 0.00 -1 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 22 146 15 646728 646728 36341.4 1009.48 0.15 0.0801358 0.0657565 1904 6228 -1 133 9 127 270 4884 1441 2.16995 2.16995 -88.7521 -2.16995 0 0 46159.1 1282.20 0.00 0.01 0.01 -1 -1 0.00 0.00855432 0.00764578 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml stereovision3.v common 1.30 vpr 65.47 MiB -1 -1 0.30 25280 4 0.13 -1 -1 32348 -1 -1 12 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67044 10 2 181 183 1 36 24 6 6 36 clb auto 26.1 MiB 0.03 207.924 161 3186 1466 1515 205 65.5 MiB 0.01 0.00 -1 -1 -1 -1 -1 -1 0 0 0 0 -1 -1 -1 -1 12 207 20 646728 646728 19965.4 554.594 0.13 0.0555044 0.0465348 1696 3924 -1 181 15 218 472 10561 3212 2.16479 2.16479 -98.7228 -2.16479 0 0 25971.8 721.439 0.00 0.02 0.00 -1 -1 0.00 0.0102009 0.009112 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt index 3a6b416e4d..4d9450e540 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_modeling/config/golden_results.txt @@ -1,9 +1,9 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_global_nets num_routed_nets - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.34 vpr 58.29 MiB -1 -1 0.06 19584 1 0.02 -1 -1 29972 -1 -1 1 2 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 59684 2 1 3 4 1 3 4 3 3 9 -1 auto 19.8 MiB 0.00 6 6 9 3 5 1 58.3 MiB 0.00 0.00 0.55447 0.55447 -0.91031 -0.55447 0.55447 0.00 9.741e-06 6.417e-06 7.172e-05 5.2195e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00102121 0.000946917 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_route_--route_chan_width_60 0.33 vpr 58.66 MiB -1 -1 0.05 19584 1 0.02 -1 -1 29588 -1 -1 1 2 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 60064 2 1 3 4 1 3 4 3 3 9 -1 auto 19.9 MiB 0.00 9 9 9 3 3 3 58.7 MiB 0.00 0.00 0.56425 0.48631 -0.91031 -0.48631 0.48631 0.00 1.5785e-05 1.0221e-05 8.6075e-05 6.189e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.00104786 0.000969008 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 - timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_ideal_--route_chan_width_60 18.01 parmys 205.11 MiB -1 -1 14.67 210028 2 0.99 -1 -1 53804 -1 -1 155 5 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62168 5 156 191 347 1 163 316 15 15 225 clb auto 21.0 MiB 0.02 122 29 77716 56225 2725 18766 60.7 MiB 0.07 0.00 1.75837 1.49664 -15.1339 -1.49664 1.49664 0.00 0.000233896 0.000217814 0.0177261 0.0164899 -1 -1 -1 -1 -1 44 3 3.042e+06 2.79e+06 863192. 3836.41 0.00 0.0219288 0.0204125 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 - timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_route_--route_chan_width_60 18.03 parmys 205.28 MiB -1 -1 14.59 210204 2 1.00 -1 -1 53792 -1 -1 155 5 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62164 5 156 191 347 1 163 316 15 15 225 clb auto 21.4 MiB 0.02 133 33 74491 53503 3069 17919 60.7 MiB 0.07 0.00 1.58769 1.47673 -14.6018 -1.47673 1.47673 0.00 0.000233625 0.000217386 0.0174807 0.0162133 -1 -1 -1 -1 -1 45 5 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0223692 0.0207431 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 - timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.37 vpr 64.29 MiB -1 -1 0.07 19748 1 0.02 -1 -1 29992 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 65828 2 1 3 4 1 3 4 3 3 9 -1 auto 25.6 MiB 0.00 6 6 9 3 5 1 64.3 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.796e-06 6.349e-06 7.19e-05 5.2656e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00102983 0.000959129 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 - timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_route_--route_chan_width_60 0.43 vpr 63.91 MiB -1 -1 0.10 19748 1 0.02 -1 -1 29992 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 65444 2 1 3 4 1 3 4 3 3 9 -1 auto 25.6 MiB 0.00 9 9 9 3 3 3 63.9 MiB 0.00 0.00 0.56425 0.48631 -0.90831 -0.48631 0.48631 0.00 9.997e-06 6.387e-06 7.1795e-05 5.0427e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00099297 0.000926278 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 - timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_ideal_--route_chan_width_60 3.06 vpr 71.56 MiB -1 -1 0.66 28200 2 0.12 -1 -1 33612 -1 -1 43 311 15 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 73276 311 156 972 1128 1 953 525 28 28 784 memory auto 32.1 MiB 0.32 18948.4 9065 188938 62712 123751 2475 71.6 MiB 0.65 0.01 5.10272 4.25856 -4300.68 -4.25856 4.25856 0.00 0.00298071 0.00257445 0.286349 0.24772 -1 -1 -1 -1 -1 12967 12 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.21 0.393062 0.345368 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 - timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_route_--route_chan_width_60 3.03 vpr 71.92 MiB -1 -1 0.64 28196 2 0.10 -1 -1 33604 -1 -1 43 311 15 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 73648 311 156 972 1128 1 953 525 28 28 784 memory auto 32.4 MiB 0.31 19093.3 8676 182587 57065 122886 2636 71.9 MiB 0.64 0.01 5.28719 4.13078 -3296.08 -4.13078 4.13078 0.00 0.00318294 0.00278758 0.278742 0.241101 -1 -1 -1 -1 -1 12596 11 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.23 0.403096 0.355495 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_global_nets num_routed_nets +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.33 vpr 59.07 MiB -1 -1 0.05 19860 1 0.02 -1 -1 29460 -1 -1 1 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60484 2 1 3 4 1 3 4 3 3 9 -1 auto 20.3 MiB 0.00 6 6 9 3 5 1 59.1 MiB 0.00 0.00 0.55447 0.55447 -0.91031 -0.55447 0.55447 0.00 1.0117e-05 6.61e-06 7.3207e-05 5.4331e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00119306 0.001117 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_route_--route_chan_width_60 0.32 vpr 59.07 MiB -1 -1 0.06 19860 1 0.02 -1 -1 29500 -1 -1 1 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60488 2 1 3 4 1 3 4 3 3 9 -1 auto 20.4 MiB 0.00 9 9 9 1 5 3 59.1 MiB 0.00 0.00 0.56425 0.48631 -0.91031 -0.48631 0.48631 0.00 1.0429e-05 6.884e-06 7.8262e-05 5.7708e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.000978804 0.0009103 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_ideal_--route_chan_width_60 18.17 parmys 203.85 MiB -1 -1 14.84 208740 2 0.94 -1 -1 53800 -1 -1 155 5 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62428 5 156 191 347 1 163 316 15 15 225 clb auto 21.5 MiB 0.02 93 29 155116 112518 5365 37233 61.0 MiB 0.16 0.00 1.75726 1.49664 -15.1339 -1.49664 1.49664 0.00 0.000239383 0.00022257 0.039846 0.037156 -1 -1 -1 -1 -1 20 4 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0450491 0.0419556 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_route_--route_chan_width_60 18.07 parmys 202.97 MiB -1 -1 14.65 207840 2 0.96 -1 -1 53800 -1 -1 155 5 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62232 5 156 191 347 1 163 316 15 15 225 clb auto 21.0 MiB 0.02 102 35 149741 107944 5843 35954 60.8 MiB 0.14 0.00 1.51873 1.49775 -14.6138 -1.49775 1.49775 0.00 0.000228863 0.000212897 0.0334847 0.0310352 -1 -1 -1 -1 -1 62 4 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0380521 0.0352776 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_ideal_--route_chan_width_60 0.37 vpr 64.69 MiB -1 -1 0.07 19640 1 0.02 -1 -1 29472 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66244 2 1 3 4 1 3 4 3 3 9 -1 auto 26.1 MiB 0.00 6 6 9 3 5 1 64.7 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.675e-06 6.204e-06 7.0457e-05 5.0742e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.0010265 0.000953622 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_--clock_modeling_route_--route_chan_width_60 0.37 vpr 64.69 MiB -1 -1 0.06 19640 1 0.02 -1 -1 29612 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66244 2 1 3 4 1 3 4 3 3 9 -1 auto 26.1 MiB 0.00 9 9 9 1 5 3 64.7 MiB 0.00 0.00 0.56425 0.48631 -0.90831 -0.48631 0.48631 0.00 1.0026e-05 6.441e-06 7.2943e-05 5.2914e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00102102 0.000953994 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_ideal_--route_chan_width_60 3.18 vpr 72.01 MiB -1 -1 0.61 28472 2 0.10 -1 -1 33720 -1 -1 43 311 15 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 73736 311 156 972 1128 1 953 525 28 28 784 memory auto 32.8 MiB 0.31 19988.9 8453 243980 105220 135674 3086 72.0 MiB 0.88 0.01 4.9683 4.40183 -4382.54 -4.40183 4.40183 0.00 0.00332705 0.00280353 0.389535 0.335157 -1 -1 -1 -1 -1 12150 10 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.21 0.491035 0.428409 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_--clock_modeling_route_--route_chan_width_60 3.17 vpr 72.38 MiB -1 -1 0.63 28472 2 0.10 -1 -1 33616 -1 -1 43 311 15 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 74116 311 156 972 1128 1 953 525 28 28 784 memory auto 32.8 MiB 0.31 20164.8 8904 241863 106076 132920 2867 72.4 MiB 0.82 0.01 5.08332 3.97643 -4170.74 -3.97643 3.97643 0.00 0.00309878 0.00271391 0.36424 0.314375 -1 -1 -1 -1 -1 12778 12 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.24 0.476367 0.417144 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt index 2e2c50eebf..f9654a8aa8 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_fracturable_luts/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_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 -k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 2.11 vpr 66.95 MiB -1 -1 0.20 21188 3 0.07 -1 -1 32716 -1 -1 68 99 1 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 68556 99 130 344 474 1 216 298 13 13 169 clb auto 27.1 MiB 0.78 1801.61 660 25173 1974 6084 17115 66.9 MiB 0.02 0.00 34 1225 10 0 0 460544. 2725.11 0.28 +k6_N8_I80_fleI10_fleO2_ff2_nmodes_2.xml ch_intrinsics.v common 2.67 vpr 67.35 MiB -1 -1 0.20 21084 3 0.07 -1 -1 32716 -1 -1 68 99 1 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68968 99 130 344 474 1 216 298 13 13 169 clb auto 27.5 MiB 0.76 1801.61 1046 146563 61460 19152 65951 67.4 MiB 0.15 0.00 22 1841 22 0 0 324418. 1919.63 0.75 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt index 4ad2988e22..a3828f11e0 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_multiclock/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack - k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.49146 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.49146 -1 1.07141 -1 1.81465 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.34009 -1 3.30941 -1 -1.43172 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--route_chan_width_30_-check_incremental_sta_consistency 1.66139 0.595 0.781297 -1 -1 0.57 0.757256 -1 1.66139 -1 1.07053 -1 1.38001 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.6593 -1 -1 0.268 3.18526 -1 1.51002 -1 3.30853 -1 -1.86636 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--router_algorithm_parallel_--num_workers_4 1.49146 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.49146 -1 1.07141 -1 2.00533 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.34009 -1 3.30941 -1 -1.24105 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.49146 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.49146 -1 1.07141 -1 2.00533 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.34009 -1 3.30941 -1 -1.24105 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.49146 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.49146 -1 1.07141 -1 2.00533 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.34009 -1 3.30941 -1 -1.24105 -1 -1 -1 -1 - k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.49146 0.595 0.839813 -1 -1 0.57 0.814813 -1 1.49146 -1 1.07141 -1 2.00533 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71781 -1 -1 0.268 3.24281 -1 1.34009 -1 3.30941 -1 -1.24105 -1 -1 -1 -1 +arch circuit script_params crit_path_delay_mcw clk_to_clk_cpd clk_to_clk2_cpd clk_to_input_cpd clk_to_output_cpd clk2_to_clk2_cpd clk2_to_clk_cpd clk2_to_input_cpd clk2_to_output_cpd input_to_input_cpd input_to_clk_cpd input_to_clk2_cpd input_to_output_cpd output_to_output_cpd output_to_clk_cpd output_to_clk2_cpd output_to_input_cpd clk_to_clk_setup_slack clk_to_clk2_setup_slack clk_to_input_setup_slack clk_to_output_setup_slack clk2_to_clk2_setup_slack clk2_to_clk_setup_slack clk2_to_input_setup_slack clk2_to_output_setup_slack input_to_input_setup_slack input_to_clk_setup_slack input_to_clk2_setup_slack input_to_output_setup_slack output_to_output_setup_slack output_to_clk_setup_slack output_to_clk2_setup_slack output_to_input_setup_slack clk_to_clk_hold_slack clk_to_clk2_hold_slack clk_to_input_hold_slack clk_to_output_hold_slack clk2_to_clk2_hold_slack clk2_to_clk_hold_slack clk2_to_input_hold_slack clk2_to_output_hold_slack input_to_input_hold_slack input_to_clk_hold_slack input_to_clk2_hold_slack input_to_output_hold_slack output_to_output_hold_slack output_to_clk_hold_slack output_to_clk2_hold_slack output_to_input_hold_slack +k6_frac_N10_mem32K_40nm.xml multiclock.blif common 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.07053 -1 1.81553 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.30853 -1 -1.43084 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--route_chan_width_30_-check_incremental_sta_consistency 1.66485 0.595 0.781297 -1 -1 0.57 0.756297 -1 1.66485 -1 1.07053 -1 1.38001 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.6593 -1 -1 0.268 3.1843 -1 1.51348 -1 3.30853 -1 -1.86636 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--router_algorithm_parallel_--num_workers_4 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.07053 -1 1.81553 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.30853 -1 -1.43084 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.07053 -1 1.81553 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.30853 -1 -1.43084 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_4_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.07053 -1 1.81553 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.30853 -1 -1.43084 -1 -1 -1 -1 +k6_frac_N10_mem32K_40nm.xml multiclock.blif common_--enable_parallel_connection_router_on_--multi_queue_num_threads_2_--multi_queue_num_queues_8_--multi_queue_direct_draining_on_--astar_fac_0.0_--post_target_prune_fac_0.0_--post_target_prune_offset_0.0 1.59919 0.595 0.841581 -1 -1 0.57 0.814813 -1 1.59919 -1 1.07053 -1 1.81553 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0.243 1.71958 -1 -1 0.268 3.24281 -1 1.44782 -1 3.30853 -1 -1.43084 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/config/golden_results.txt index a041b47ff4..e7adc6a122 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_place_quench_slack/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml stereovision3.v common 1.22 vpr 64.70 MiB -1 -1 0.36 25124 5 0.11 -1 -1 33204 -1 -1 12 10 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66248 10 2 181 183 1 36 24 6 6 36 clb auto 25.7 MiB 0.03 207.924 169 126 37 83 6 64.7 MiB 0.01 0.00 2.22045 2.14643 -91.7964 -2.14643 2.14643 0.02 0.000232283 0.000209598 0.0022053 0.00207525 -1 -1 -1 -1 12 197 20 646728 646728 19965.4 554.594 0.06 0.0323649 0.0277456 1696 3924 -1 173 17 211 463 9583 3139 2.26399 2.26399 -96.0731 -2.26399 0 0 25971.8 721.439 0.00 0.02 0.00 -1 -1 0.00 0.0107108 0.00954213 +k6_N10_mem32K_40nm.xml stereovision3.v common 1.35 vpr 65.09 MiB -1 -1 0.29 25280 4 0.13 -1 -1 32360 -1 -1 12 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66656 10 2 181 183 1 36 24 6 6 36 clb auto 26.1 MiB 0.03 207.924 148 1894 683 1121 90 65.1 MiB 0.02 0.00 2.22045 2.14643 -90.9176 -2.14643 2.14643 0.01 0.000236034 0.000208936 0.0143831 0.0129571 -1 -1 -1 -1 16 150 14 646728 646728 25971.8 721.439 0.13 0.0723037 0.0615766 1764 4776 -1 143 15 184 392 7641 2345 2.14691 2.14691 -90.3914 -2.14691 0 0 33305.4 925.151 0.00 0.02 0.00 -1 -1 0.00 0.0123472 0.0110764 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt index a4d15a8b3b..1176e2c121 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_post_routing_sync/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time routed_wirelength avg_routed_wirelength routed_wiresegment avg_routed_wiresegment total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration num_rr_graph_nodes num_rr_graph_edges collapsed_nodes critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS create_rr_graph_time create_intra_cluster_rr_graph_time adding_internal_edges route_mem crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_mem tile_lookahead_computation_time router_lookahead_computation_time -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.35 vpr 61.21 MiB -1 -1 -1 -1 0 0.02 -1 -1 29952 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62680 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.6 MiB 0.00 0 0 3 0 0 3 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 1.1561e-05 6.805e-06 7.0587e-05 4.6811e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00106434 0.00100588 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.29 vpr 61.20 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62668 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.6 MiB 0.00 0 0 3 0 0 3 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 8.13e-06 4.065e-06 5.4798e-05 3.5211e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000903257 0.000850399 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.30 vpr 61.21 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62676 6 1 1 8 0 1 8 3 3 9 -1 auto 22.6 MiB 0.00 0 0 21 0 11 10 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.806e-06 3.804e-06 4.9163e-05 3.0196e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000943135 0.000892728 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.31 vpr 61.21 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62680 6 1 1 8 0 1 8 3 3 9 -1 auto 22.6 MiB 0.00 0 0 21 0 11 10 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.877e-06 3.943e-06 5.5116e-05 3.5328e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000901646 0.000848973 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.37 vpr 61.21 MiB -1 -1 -1 -1 1 0.02 -1 -1 29952 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62676 2 1 3 4 0 3 4 3 3 9 -1 auto 22.6 MiB 0.00 9 9 9 5 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.5179e-05 1.0215e-05 8.5772e-05 6.4091e-05 -1 -1 -1 -1 6 2.00000 6 2.00000 19 19 555 367 3900 3900 7855.82 872.868 9 410 1185 -1 0.58369 nan -0.58369 -0.58369 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00112495 0.00100757 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.41 vpr 61.20 MiB -1 -1 -1 -1 2 0.04 -1 -1 31488 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62668 5 1 7 8 0 7 7 3 3 9 -1 auto 22.6 MiB 0.00 20 20 18 12 0 6 61.2 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 2.1141e-05 1.5653e-05 0.000114937 9.1708e-05 -1 -1 -1 -1 8 1.14286 8 1.14286 16 16 343 205 3900 3900 7855.82 872.868 6 410 1185 -1 0.732694 nan -0.732694 -0.732694 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00116938 0.00107137 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.41 vpr 60.69 MiB -1 -1 -1 -1 2 0.04 -1 -1 31500 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62144 5 1 7 8 0 7 7 3 3 9 -1 auto 22.2 MiB 0.00 20 20 18 13 0 5 60.7 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3106e-05 9.513e-06 9.2496e-05 7.3562e-05 -1 -1 -1 -1 11 1.57143 11 1.57143 35 35 1249 908 3900 3900 7855.82 872.868 12 410 1185 -1 0.854523 nan -0.854523 -0.854523 0 0 0.00 -1 -1 60.7 MiB 0.00 0.00120709 0.00109017 60.7 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.29 vpr 61.20 MiB -1 -1 -1 -1 1 0.02 -1 -1 29996 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62668 3 1 5 6 1 4 5 3 3 9 -1 auto 22.6 MiB 0.00 9 9 12 9 0 3 61.2 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 1.1257e-05 7.685e-06 8.615e-05 6.6421e-05 -1 -1 -1 -1 5 1.66667 5 1.66667 16 16 474 316 3900 3900 7855.82 872.868 8 410 1185 -1 0.337363 0.337363 -0.621249 -0.337363 0 0 0.00 -1 -1 61.2 MiB 0.00 0.0010451 0.000952663 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.40 vpr 61.21 MiB -1 -1 -1 -1 1 0.04 -1 -1 31860 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62676 4 1 4 6 0 4 6 3 3 9 -1 auto 22.6 MiB 0.00 12 12 15 11 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0171e-05 6.805e-06 7.5158e-05 5.5995e-05 -1 -1 -1 -1 7 1.75000 7 1.75000 33 33 777 447 3900 3900 7855.82 872.868 16 410 1185 -1 0.65563 nan -0.65563 -0.65563 0 0 0.00 -1 -1 61.2 MiB 0.00 0.001154 0.00103005 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.37 vpr 61.21 MiB -1 -1 -1 -1 1 0.04 -1 -1 31488 -1 -1 1 4 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62680 4 4 8 12 0 8 9 3 3 9 -1 auto 22.6 MiB 0.00 25.4184 25 27 23 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 3.6902e-05 3.1075e-05 0.000204512 0.000176895 -1 -1 -1 -1 30 3.75000 30 3.75000 48 140 5344 3681 3900 3900 7855.82 872.868 13 410 1185 -1 0.651056 nan -2.46867 -0.651056 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00152538 0.00136841 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.40 vpr 61.24 MiB -1 -1 -1 -1 3 0.04 -1 -1 32000 -1 -1 3 6 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62712 6 6 28 34 0 28 15 5 5 25 clb auto 22.6 MiB 0.01 113.798 107 51 16 35 0 61.2 MiB 0.00 0.00 1.19848 1.19848 -5.43061 -1.19848 nan 0.00 8.1115e-05 7.421e-05 0.00044497 0.000411611 -1 -1 -1 -1 190 6.78571 125 4.46429 182 773 42322 19740 23400 11700 33739.5 1349.58 16 1540 5656 -1 1.62804 nan -7.31458 -1.62804 0 0 0.00 -1 -1 61.2 MiB 0.01 0.00350876 0.00308698 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.44 vpr 61.32 MiB -1 -1 -1 -1 4 0.05 -1 -1 31724 -1 -1 5 7 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62792 7 8 39 47 0 39 20 5 5 25 clb auto 22.9 MiB 0.01 182.75 166 236 66 151 19 61.3 MiB 0.00 0.00 1.48602 1.46514 -7.47508 -1.46514 nan 0.00 6.7709e-05 5.9599e-05 0.000928217 0.000840124 -1 -1 -1 -1 343 9.02632 217 5.71053 320 1403 84233 37542 23400 19500 33739.5 1349.58 17 1540 5656 -1 1.89437 nan -9.71351 -1.89437 0 0 0.00 -1 -1 61.3 MiB 0.02 0.00486835 0.00428664 61.3 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.48 vpr 61.37 MiB -1 -1 -1 -1 8 0.05 -1 -1 32104 -1 -1 6 8 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62844 8 8 51 59 0 51 22 5 5 25 clb auto 22.9 MiB 0.01 241.827 212 292 68 220 4 61.4 MiB 0.00 0.00 2.56944 2.55768 -12.2695 -2.55768 nan 0.00 8.668e-05 7.7384e-05 0.00129783 0.00118279 -1 -1 -1 -1 426 8.35294 270 5.29412 390 1570 93366 42836 23400 23400 33739.5 1349.58 17 1540 5656 -1 2.90453 nan -14.4735 -2.90453 0 0 0.00 -1 -1 61.4 MiB 0.02 0.00566705 0.00501923 61.4 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.57 vpr 61.71 MiB -1 -1 -1 -1 7 0.07 -1 -1 32084 -1 -1 11 10 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63192 10 10 95 105 0 95 31 6 6 36 clb auto 22.4 MiB 0.01 521.106 446 511 67 414 30 61.7 MiB 0.01 0.00 2.69967 2.58254 -18.2672 -2.58254 nan 0.00 0.000154486 0.000137838 0.00237758 0.00218111 -1 -1 -1 -1 1060 11.1579 619 6.51579 1279 5258 347347 131253 165600 42900 61410.5 1705.85 26 2708 10880 -1 3.42817 nan -24.9363 -3.42817 0 0 0.01 -1 -1 61.7 MiB 0.06 0.0121593 0.0106864 61.7 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.56 vpr 61.20 MiB -1 -1 -1 -1 8 0.07 -1 -1 32560 -1 -1 11 11 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62672 11 11 94 105 0 94 33 6 6 36 clb auto 22.6 MiB 0.01 523.64 448 657 75 548 34 61.2 MiB 0.01 0.00 2.83651 2.78059 -21.0894 -2.78059 nan 0.00 0.000161865 0.000146763 0.00334172 0.00306978 -1 -1 -1 -1 1000 10.6383 594 6.31915 1234 4840 339188 130604 165600 42900 61410.5 1705.85 24 2708 10880 -1 3.65021 nan -28.2355 -3.65021 0 0 0.01 -1 -1 61.2 MiB 0.06 0.0122953 0.0108578 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.41 vpr 61.21 MiB -1 -1 -1 -1 1 0.04 -1 -1 30744 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62680 3 2 5 7 0 5 6 3 3 9 -1 auto 22.6 MiB 0.00 15 15 15 11 0 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 1.2467e-05 8.888e-06 9.8968e-05 7.7106e-05 -1 -1 -1 -1 12 2.40000 12 2.40000 34 66 1808 1113 3900 3900 7855.82 872.868 16 410 1185 -1 0.650448 nan -1.17317 -0.650448 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00136664 0.0012171 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.41 vpr 61.21 MiB -1 -1 -1 -1 2 0.04 -1 -1 31520 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62676 5 3 9 12 0 9 9 3 3 9 -1 auto 22.9 MiB 0.00 26 26 27 24 0 3 61.2 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.7248e-05 1.3292e-05 0.000138999 0.000116191 -1 -1 -1 -1 19 2.11111 19 2.11111 42 79 2525 1659 3900 3900 7855.82 872.868 17 410 1185 -1 0.857776 nan -2.30106 -0.857776 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00196057 0.0017299 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.39 vpr 61.21 MiB -1 -1 -1 -1 3 0.04 -1 -1 31520 -1 -1 1 7 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62676 7 4 13 17 0 13 12 3 3 9 -1 auto 23.0 MiB 0.00 37 37 38 34 0 4 61.2 MiB 0.00 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 2.2232e-05 1.8083e-05 0.000174006 0.000150256 -1 -1 -1 -1 39 3.00000 39 3.00000 76 147 5143 3540 3900 3900 7855.82 872.868 18 410 1185 -1 1.24586 nan -3.92083 -1.24586 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00178784 0.00158442 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.43 vpr 61.22 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 1 9 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62692 9 5 17 22 0 17 15 3 3 9 -1 auto 22.6 MiB 0.00 48 48 51 43 0 8 61.2 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.7681e-05 2.3196e-05 0.000209391 0.000185577 -1 -1 -1 -1 65 3.82353 65 3.82353 127 225 8383 5982 3900 3900 7855.82 872.868 18 410 1185 -1 1.87402 nan -7.08677 -1.87402 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00207372 0.00182948 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.36 vpr 61.23 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 2 11 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62696 11 6 24 30 0 24 19 4 4 16 clb auto 22.6 MiB 0.00 96.6496 80 244 66 161 17 61.2 MiB 0.00 0.00 1.37337 1.3375 -6.59285 -1.3375 nan 0.00 3.5904e-05 3.0451e-05 0.000565649 0.000490381 -1 -1 -1 -1 126 5.25000 93 3.87500 182 402 16845 9302 7800 7800 17482.0 1092.63 17 852 2798 -1 1.67979 nan -8.01983 -1.67979 0 0 0.00 -1 -1 61.2 MiB 0.01 0.00284127 0.00249251 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.32 vpr 61.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63100 -1 1 1 2 0 1 2 3 3 9 -1 auto 23.0 MiB 0.00 0 0 3 0 0 3 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 1.6249e-05 3.403e-06 6.5212e-05 3.569e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.000965019 0.000890257 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.35 vpr 61.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 -1 1 1 2 0 1 2 3 3 9 -1 auto 23.4 MiB 0.00 0 0 3 0 0 3 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.775e-06 3.802e-06 5.7514e-05 3.7592e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.000908623 0.000858956 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.33 vpr 61.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 6 1 1 8 0 1 8 3 3 9 -1 auto 23.4 MiB 0.00 0 0 21 0 11 10 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 8.196e-06 4.228e-06 5.2653e-05 3.303e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.000945197 0.000892464 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.33 vpr 61.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 6 1 1 8 0 1 8 3 3 9 -1 auto 23.0 MiB 0.00 0 0 21 0 11 10 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.953e-06 3.895e-06 5.1361e-05 3.1829e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00092036 0.000867175 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.33 vpr 61.16 MiB -1 -1 -1 -1 1 0.02 -1 -1 29568 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62632 2 1 3 4 0 3 4 3 3 9 -1 auto 22.9 MiB 0.00 9 9 9 6 2 1 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 9.439e-06 6.114e-06 6.6551e-05 4.7919e-05 -1 -1 -1 -1 4 1.33333 4 1.33333 3 3 76 50 3900 3900 7855.82 872.868 1 410 1185 -1 0.520792 nan -0.520792 -0.520792 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000965871 0.00091069 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.39 vpr 61.50 MiB -1 -1 -1 -1 2 0.04 -1 -1 31104 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62980 5 1 7 8 0 7 7 3 3 9 -1 auto 23.2 MiB 0.00 20 20 18 9 3 6 61.5 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.2861e-05 9.32e-06 9.2683e-05 7.3679e-05 -1 -1 -1 -1 8 1.14286 8 1.14286 16 16 357 219 3900 3900 7855.82 872.868 6 410 1185 -1 0.734017 nan -0.734017 -0.734017 0 0 0.00 -1 -1 61.5 MiB 0.00 0.00110818 0.00102585 61.5 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.40 vpr 62.00 MiB -1 -1 -1 -1 2 0.04 -1 -1 31116 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63484 5 1 7 8 0 7 7 3 3 9 -1 auto 23.4 MiB 0.00 20 20 18 10 3 5 62.0 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3094e-05 9.506e-06 9.3044e-05 7.3485e-05 -1 -1 -1 -1 9 1.28571 9 1.28571 14 14 348 226 3900 3900 7855.82 872.868 5 410 1185 -1 0.795592 nan -0.795592 -0.795592 0 0 0.00 -1 -1 62.0 MiB 0.00 0.00117877 0.00109486 62.0 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.28 vpr 61.10 MiB -1 -1 -1 -1 1 0.02 -1 -1 29608 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62564 3 1 5 6 1 4 5 3 3 9 -1 auto 22.6 MiB 0.00 9 9 168 56 52 60 61.1 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 9.705e-06 6.387e-06 0.000471238 0.000320244 -1 -1 -1 -1 6 2.00000 6 2.00000 3 3 96 70 3900 3900 7855.82 872.868 1 410 1185 -1 0.472472 0.472472 -0.743686 -0.472472 0 0 0.00 -1 -1 61.1 MiB 0.00 0.00141824 0.00122353 61.1 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.41 vpr 61.62 MiB -1 -1 -1 -1 1 0.04 -1 -1 31852 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 4 1 4 6 0 4 6 3 3 9 -1 auto 23.4 MiB 0.00 12 12 15 9 2 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0268e-05 6.772e-06 7.9904e-05 5.8972e-05 -1 -1 -1 -1 7 1.75000 7 1.75000 37 37 921 550 3900 3900 7855.82 872.868 17 410 1185 -1 0.590194 nan -0.590194 -0.590194 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00121863 0.00108077 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.41 vpr 61.62 MiB -1 -1 -1 -1 1 0.04 -1 -1 31488 -1 -1 1 4 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 4 4 8 12 0 8 9 3 3 9 -1 auto 23.4 MiB 0.00 25.4184 25 459 205 182 72 61.6 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 1.6613e-05 1.2797e-05 0.000967668 0.000756999 -1 -1 -1 -1 30 3.75000 30 3.75000 60 194 6902 4679 3900 3900 7855.82 872.868 14 410 1185 -1 0.641568 nan -2.42877 -0.641568 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00236514 0.00200911 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.42 vpr 61.65 MiB -1 -1 -1 -1 3 0.04 -1 -1 31996 -1 -1 3 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63132 6 6 28 34 0 28 15 5 5 25 clb auto 23.4 MiB 0.00 113.798 101 897 315 582 0 61.7 MiB 0.01 0.00 1.19848 1.19848 -5.42929 -1.19848 nan 0.00 4.832e-05 4.2204e-05 0.00278824 0.00242526 -1 -1 -1 -1 216 7.71429 142 5.07143 225 865 52639 24271 23400 11700 33739.5 1349.58 16 1540 5656 -1 1.5608 nan -6.87857 -1.5608 0 0 0.00 -1 -1 61.7 MiB 0.01 0.00570149 0.0050053 61.7 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.45 vpr 61.74 MiB -1 -1 -1 -1 4 0.05 -1 -1 31724 -1 -1 5 7 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63224 7 8 39 47 0 39 20 5 5 25 clb auto 23.4 MiB 0.01 182.75 157 1505 581 854 70 61.7 MiB 0.01 0.00 1.48602 1.46171 -7.49701 -1.46171 nan 0.00 6.8215e-05 6.0635e-05 0.00425029 0.00373341 -1 -1 -1 -1 306 8.05263 191 5.02632 382 1594 85326 36870 23400 19500 33739.5 1349.58 20 1540 5656 -1 1.95296 nan -9.80311 -1.95296 0 0 0.00 -1 -1 61.7 MiB 0.02 0.00828789 0.00724973 61.7 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.45 vpr 61.78 MiB -1 -1 -1 -1 8 0.05 -1 -1 32104 -1 -1 6 8 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63264 8 8 51 59 0 51 22 5 5 25 clb auto 23.0 MiB 0.01 241.827 216 2422 1111 1249 62 61.8 MiB 0.02 0.00 2.56944 2.55768 -12.2711 -2.55768 nan 0.00 8.7529e-05 7.8848e-05 0.00771698 0.00688019 -1 -1 -1 -1 429 8.41177 273 5.35294 456 1956 109898 47731 23400 23400 33739.5 1349.58 19 1540 5656 -1 3.07663 nan -14.9698 -3.07663 0 0 0.00 -1 -1 61.8 MiB 0.02 0.0124825 0.0110372 61.8 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.61 vpr 62.12 MiB -1 -1 -1 -1 7 0.07 -1 -1 32084 -1 -1 11 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63616 10 10 95 105 0 95 31 6 6 36 clb auto 23.0 MiB 0.01 521.106 436 2719 894 1667 158 62.1 MiB 0.02 0.00 2.69967 2.49876 -17.8877 -2.49876 nan 0.00 0.00015429 0.000138129 0.00980315 0.00882921 -1 -1 -1 -1 958 10.0842 553 5.82105 1366 5389 390653 150593 165600 42900 61410.5 1705.85 27 2708 10880 -1 3.05564 nan -23.0817 -3.05564 0 0 0.01 -1 -1 62.1 MiB 0.07 0.0197353 0.0174043 62.1 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.61 vpr 62.16 MiB -1 -1 -1 -1 8 0.07 -1 -1 32560 -1 -1 11 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63652 11 11 94 105 0 94 33 6 6 36 clb auto 23.4 MiB 0.01 523.64 429 2321 602 1590 129 62.2 MiB 0.02 0.00 2.83651 2.73182 -20.7819 -2.73182 nan 0.00 0.000152813 0.000138141 0.00788388 0.00710655 -1 -1 -1 -1 937 9.96809 550 5.85106 1315 5495 374761 142298 165600 42900 61410.5 1705.85 27 2708 10880 -1 3.22364 nan -26.5365 -3.22364 0 0 0.01 -1 -1 62.2 MiB 0.07 0.0193395 0.0170609 62.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.41 vpr 61.62 MiB -1 -1 -1 -1 1 0.04 -1 -1 30740 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 3 2 5 7 0 5 6 3 3 9 -1 auto 23.0 MiB 0.00 15 15 15 10 1 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 1.2535e-05 8.941e-06 0.000100131 7.8219e-05 -1 -1 -1 -1 12 2.40000 12 2.40000 37 72 1946 1187 3900 3900 7855.82 872.868 17 410 1185 -1 0.650448 nan -1.17317 -0.650448 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00130568 0.00115392 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.38 vpr 61.62 MiB -1 -1 -1 -1 2 0.04 -1 -1 31344 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63100 5 3 9 12 0 9 9 3 3 9 -1 auto 23.4 MiB 0.00 26 26 531 246 197 88 61.6 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.5788e-05 1.2138e-05 0.00103311 0.000806545 -1 -1 -1 -1 26 2.88889 26 2.88889 56 109 3465 2310 3900 3900 7855.82 872.868 16 410 1185 -1 0.979605 nan -2.54604 -0.979605 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00240904 0.00204124 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.40 vpr 61.62 MiB -1 -1 -1 -1 3 0.04 -1 -1 31512 -1 -1 1 7 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63100 7 4 13 17 0 13 12 3 3 9 -1 auto 23.4 MiB 0.00 37 37 688 305 287 96 61.6 MiB 0.01 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 4.5258e-05 3.9342e-05 0.00199732 0.00170404 -1 -1 -1 -1 42 3.23077 42 3.23077 40 74 2854 2078 3900 3900 7855.82 872.868 7 410 1185 -1 1.33139 nan -4.27551 -1.33139 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00354203 0.00311713 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.42 vpr 61.63 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 1 9 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63112 9 5 17 22 0 17 15 3 3 9 -1 auto 23.0 MiB 0.00 48 48 51 24 21 6 61.6 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.7922e-05 2.3225e-05 0.000217883 0.000193605 -1 -1 -1 -1 52 3.05882 52 3.05882 92 177 6235 4309 3900 3900 7855.82 872.868 18 410 1185 -1 1.66969 nan -6.67567 -1.66969 0 0 0.00 -1 -1 61.6 MiB 0.01 0.00256359 0.00225542 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.46 vpr 61.64 MiB -1 -1 -1 -1 4 0.04 -1 -1 31508 -1 -1 2 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63124 11 6 24 30 0 24 19 4 4 16 clb auto 23.4 MiB 0.00 96.6496 80 1644 728 779 137 61.6 MiB 0.01 0.00 1.37337 1.33641 -6.58958 -1.33641 nan 0.00 3.98e-05 3.2338e-05 0.00274562 0.0023118 -1 -1 -1 -1 151 6.29167 107 4.45833 172 399 18560 10271 7800 7800 17482.0 1092.63 15 852 2798 -1 1.67847 nan -8.2964 -1.67847 0 0 0.00 -1 -1 61.6 MiB 0.01 0.00500196 0.00431865 61.6 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt index 553ccf52cf..4e61c1b911 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/config/golden_results.txt @@ -1,7 +1,7 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_global_nets num_routed_nets -timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.64 vpr 65.41 MiB -1 -1 0.07 19400 1 0.04 -1 -1 31672 -1 -1 2 6 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66980 6 1 16 17 2 10 9 17 17 289 -1 auto 26.8 MiB 0.01 118 84 27 9 18 0 65.4 MiB 0.00 0.00 2.15593 1.98639 -4.92087 -1.98639 0.805 0.27 4.986e-05 4.2371e-05 0.000308454 0.000266383 -1 -1 -1 -1 20 157 4 1.34605e+07 107788 411619. 1424.29 0.21 0.00198321 0.00178137 24098 82050 -1 154 4 18 18 6484 3258 2.84404 0.805 -5.7426 -2.84404 -0.705112 -0.370834 535376. 1852.51 0.02 0.08 0.05 -1 -1 0.02 0.00154446 0.00143926 1 9 -timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.06 vpr 65.41 MiB -1 -1 0.06 19020 1 0.02 -1 -1 29992 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66984 3 1 5 6 1 4 5 13 13 169 -1 auto 27.2 MiB 0.00 38 34 12 4 8 0 65.4 MiB 0.00 0.00 1.29226 1.06427 -1.57129 -1.06427 1.06427 0.13 1.2986e-05 8.088e-06 0.000102255 7.8502e-05 -1 -1 -1 -1 20 58 1 6.63067e+06 53894 227243. 1344.63 0.10 0.00114913 0.00107165 13251 44387 -1 56 1 4 4 2424 1646 1.76603 1.76603 -1.76603 -1.76603 -0.685145 -0.685145 294987. 1745.49 0.01 0.05 0.03 -1 -1 0.01 0.000984339 0.000951411 0 4 -timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.61 vpr 65.13 MiB -1 -1 0.07 19400 1 0.04 -1 -1 31668 -1 -1 2 6 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66692 6 1 16 17 2 10 9 17 17 289 -1 auto 26.5 MiB 0.01 118 84 27 9 18 0 65.1 MiB 0.00 0.00 2.15759 1.9886 -4.9264 -1.9886 0.805 0.26 2.6376e-05 2.0274e-05 0.000248862 0.000204565 -1 -1 -1 -1 20 157 4 1.34605e+07 107788 424167. 1467.71 0.19 0.00185766 0.00166947 24098 84646 -1 153 5 21 21 6606 3276 2.82604 0.805 -5.70881 -2.82604 -0.705111 -0.370833 547923. 1895.93 0.02 0.09 0.05 -1 -1 0.02 0.0015855 0.00147258 1 9 -timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.04 vpr 65.41 MiB -1 -1 0.07 19404 1 0.02 -1 -1 29992 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66984 3 1 5 6 1 4 5 13 13 169 -1 auto 26.8 MiB 0.00 38 34 12 4 8 0 65.4 MiB 0.00 0.00 1.29226 1.06427 -1.57129 -1.06427 1.06427 0.13 1.4357e-05 9.105e-06 0.000116357 9.1104e-05 -1 -1 -1 -1 20 55 1 6.63067e+06 53894 235789. 1395.20 0.10 0.00117335 0.00108595 13251 46155 -1 67 1 4 4 2653 1705 2.05791 2.05791 -2.09184 -2.05791 -0.684038 -0.684038 303533. 1796.05 0.01 0.05 0.03 -1 -1 0.01 0.000999714 0.000966149 0 4 -timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.55 vpr 65.79 MiB -1 -1 0.07 19020 1 0.04 -1 -1 31688 -1 -1 2 6 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 67368 6 1 16 17 2 10 9 17 17 289 -1 auto 27.2 MiB 0.01 118 84 27 9 18 0 65.8 MiB 0.00 0.00 2.15593 1.98639 -4.92087 -1.98639 0.805 0.25 2.6434e-05 2.0373e-05 0.000224802 0.000190287 -1 -1 -1 -1 20 635 4 1.34605e+07 107788 408865. 1414.76 0.19 0.00177349 0.0016157 24098 82150 -1 631 3 15 15 7414 4167 3.78534 0.805 -7.627 -3.78534 -2.60588 -1.31214 532630. 1843.01 0.02 0.08 0.05 -1 -1 0.02 0.00139515 0.00131066 1 9 -timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.02 vpr 65.41 MiB -1 -1 0.07 19400 1 0.02 -1 -1 29996 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66976 3 1 5 6 1 4 5 13 13 169 -1 auto 26.8 MiB 0.00 38 34 12 4 8 0 65.4 MiB 0.00 0.00 1.29226 1.06427 -1.57129 -1.06427 1.06427 0.13 2.4427e-05 1.7394e-05 0.000119331 9.0305e-05 -1 -1 -1 -1 20 189 1 6.63067e+06 53894 225153. 1332.26 0.10 0.00115556 0.00106519 13251 44463 -1 187 1 4 4 1590 699 2.34964 2.34964 -2.34964 -2.34964 -1.26876 -1.26876 292904. 1733.16 0.01 0.04 0.03 -1 -1 0.01 0.00102218 0.000991009 0 4 +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.94 vpr 65.54 MiB -1 -1 0.06 19920 1 0.04 -1 -1 31668 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67116 6 1 16 17 2 10 9 17 17 289 -1 auto 26.9 MiB 0.01 118 30 360 97 253 10 65.5 MiB 0.00 0.00 2.15593 1.39165 -4.15326 -1.39165 0.805 0.25 2.1003e-05 1.6736e-05 0.00116047 0.000912615 -1 -1 -1 -1 26 103 2 1.34605e+07 107788 535376. 1852.51 0.54 0.00754728 0.00590795 25250 102406 -1 94 2 13 13 8389 4709 2.36808 0.805 -5.23212 -2.36808 -1.24266 -0.621885 656571. 2271.87 0.02 0.10 0.06 -1 -1 0.02 0.00129463 0.00122734 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.02 vpr 65.45 MiB -1 -1 0.06 19916 1 0.02 -1 -1 29416 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67020 3 1 5 6 1 4 5 13 13 169 -1 auto 27.2 MiB 0.00 38 14 116 17 99 0 65.4 MiB 0.00 0.00 1.29226 0.764009 -1.29997 -0.764009 0.764009 0.13 9.616e-06 6.36e-06 0.000369143 0.000250838 -1 -1 -1 -1 20 41 1 6.63067e+06 53894 227243. 1344.63 0.11 0.00149772 0.00130761 13251 44387 -1 41 1 4 4 2063 1083 1.62142 1.62142 -1.62142 -1.62142 -0.542974 -0.542974 294987. 1745.49 0.01 0.05 0.03 -1 -1 0.01 0.00103006 0.000997599 0 4 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.98 vpr 65.82 MiB -1 -1 0.07 19652 1 0.04 -1 -1 31668 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67404 6 1 16 17 2 10 9 17 17 289 -1 auto 27.2 MiB 0.01 118 30 351 97 247 7 65.8 MiB 0.00 0.00 2.15759 1.39165 -4.15382 -1.39165 0.805 0.25 2.089e-05 1.6651e-05 0.00107174 0.000831921 -1 -1 -1 -1 26 103 2 1.34605e+07 107788 547923. 1895.93 0.55 0.00782104 0.00609381 25250 106300 -1 103 4 17 17 12886 7176 2.68631 0.805 -5.86194 -2.68631 -1.24377 -0.622992 673298. 2329.75 0.02 0.10 0.07 -1 -1 0.02 0.00141076 0.00131948 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0_routedCLK_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.00 vpr 65.82 MiB -1 -1 0.06 19652 1 0.02 -1 -1 29572 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67404 3 1 5 6 1 4 5 13 13 169 -1 auto 27.1 MiB 0.00 38 14 116 17 99 0 65.8 MiB 0.00 0.00 1.29226 0.764009 -1.29997 -0.764009 0.764009 0.13 9.685e-06 6.379e-06 0.000366524 0.000251655 -1 -1 -1 -1 20 41 1 6.63067e+06 53894 235789. 1395.20 0.10 0.00144377 0.0012637 13251 46155 -1 50 1 4 4 2211 1137 1.93995 1.93995 -1.93995 -1.93995 -0.544081 -0.544081 303533. 1796.05 0.01 0.05 0.03 -1 -1 0.01 0.00106621 0.00102911 0 4 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/multiclock_output_and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 1.92 vpr 65.76 MiB -1 -1 0.07 19652 1 0.04 -1 -1 31644 -1 -1 2 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67340 6 1 16 17 2 10 9 17 17 289 -1 auto 27.2 MiB 0.01 118 30 360 97 253 10 65.8 MiB 0.00 0.00 2.15593 1.39165 -4.15326 -1.39165 0.805 0.24 2.2515e-05 1.8288e-05 0.00112145 0.000876733 -1 -1 -1 -1 26 581 2 1.34605e+07 107788 532630. 1843.01 0.53 0.00720391 0.00558625 25250 102506 -1 572 2 13 13 9421 5720 3.3102 0.805 -7.11635 -3.3102 -3.12689 -1.564 653825. 2262.37 0.02 0.10 0.06 -1 -1 0.02 0.00140214 0.00132827 1 9 +timing/k6_frac_N10_frac_chain_mem32K_htree0short_40nm.xml verilog/and_latch.v common_--target_utilization_0.01_--two_stage_clock_routing_-read_vpr_constraints_tasks/regression_tests/vtr_reg_strong/strong_routing_constraints/multi_clock_routing_constraints.xml_--clock_modeling_dedicated_network 0.99 vpr 65.82 MiB -1 -1 0.06 19656 1 0.02 -1 -1 29324 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67404 3 1 5 6 1 4 5 13 13 169 -1 auto 27.1 MiB 0.00 38 14 116 17 99 0 65.8 MiB 0.00 0.00 1.29226 0.764009 -1.29997 -0.764009 0.764009 0.13 1.0048e-05 6.686e-06 0.000365845 0.000251046 -1 -1 -1 -1 20 172 1 6.63067e+06 53894 225153. 1332.26 0.10 0.0014209 0.00124837 13251 44463 -1 172 1 4 4 874 302 2.20504 2.20504 -2.20504 -2.20504 -1.12659 -1.12659 292904. 1733.16 0.01 0.04 0.03 -1 -1 0.01 0.00106969 0.00103514 0 4 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt index 790fe5b19f..7e8ad6cd5f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.28 vpr 66.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 67784 5 3 11 14 2 9 10 4 4 16 clb auto 27.9 MiB 0.00 22 20 370 90 177 103 66.2 MiB 0.00 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.01 2.8444e-05 2.3163e-05 0.00122602 0.000998536 -1 -1 -1 -1 8 15 3 107788 107788 4794.78 299.674 0.01 0.00225959 0.00193154 564 862 -1 24 3 14 14 524 362 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000956254 0.000881282 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.28 vpr 66.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 67908 5 3 11 14 2 9 10 4 4 16 clb auto 27.9 MiB 0.00 22 20 430 104 172 154 66.3 MiB 0.00 0.00 0.571 0.571 0 0 0.571 0.01 2.0103e-05 1.5797e-05 0.000985303 0.000773073 -1 -1 -1 -1 8 11 3 107788 107788 4794.78 299.674 0.01 0.00233131 0.00202398 564 862 -1 20 5 13 13 309 150 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00110213 0.00101662 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.28 vpr 66.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 67824 5 3 11 14 2 9 10 4 4 16 clb auto 27.8 MiB 0.00 22 20 410 113 223 74 66.2 MiB 0.00 0.00 0.646297 0.645978 -2.18937 -0.645978 0.571 0.01 3.1841e-05 2.5339e-05 0.00146272 0.00113068 -1 -1 -1 -1 8 17 8 107788 107788 4794.78 299.674 0.01 0.00280569 0.00228172 564 862 -1 12 8 25 25 377 165 0.592131 0.571 -2.01022 -0.592131 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00134358 0.00120679 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.28 vpr 66.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 68036 5 3 11 14 2 9 10 4 4 16 clb auto 27.9 MiB 0.00 22 20 390 106 205 79 66.4 MiB 0.00 0.00 1.64604 1.64598 -5.31933 -1.64598 0.571 0.01 2.5235e-05 1.8864e-05 0.00121347 0.000871784 -1 -1 -1 -1 8 23 7 107788 107788 4794.78 299.674 0.01 0.00245402 0.00194121 564 862 -1 9 4 11 11 190 81 1.57153 0.571 -4.89933 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00101278 0.000905517 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.29 vpr 66.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 67908 5 3 11 14 2 9 10 4 4 16 clb auto 27.8 MiB 0.00 22 22 30 10 12 8 66.3 MiB 0.00 0.00 1.44967 1.44903 -2.90973 -1.44903 0.571 0.01 4.0089e-05 2.851e-05 0.000237466 0.000182412 -1 -1 -1 -1 8 24 5 107788 107788 4794.78 299.674 0.01 0.00184265 0.00161855 564 862 -1 19 5 18 18 404 200 1.37578 0.571 -2.70755 -1.37578 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00164644 0.00148011 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.28 vpr 66.19 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:12:57 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong 67780 5 3 11 14 2 9 10 4 4 16 clb auto 27.8 MiB 0.00 22 20 370 95 153 122 66.2 MiB 0.00 0.00 0.146298 0.145978 0 0 0.571 0.01 3.1296e-05 2.585e-05 0.00133849 0.00107786 -1 -1 -1 -1 8 11 2 107788 107788 4794.78 299.674 0.01 0.00244223 0.00208521 564 862 -1 17 5 13 13 264 119 0.0706414 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00118209 0.00105613 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.33 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 5 3 11 14 2 9 10 4 4 16 clb auto 26.1 MiB 0.00 22 20 810 394 244 172 64.3 MiB 0.01 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.00 1.6912e-05 1.2942e-05 0.00147502 0.0011356 -1 -1 -1 -1 8 11 2 107788 107788 4794.78 299.674 0.01 0.00385336 0.00308828 564 862 -1 18 4 13 13 372 218 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00112501 0.00105222 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.36 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 5 3 11 14 2 9 10 4 4 16 clb auto 25.7 MiB 0.00 22 20 870 405 235 230 64.3 MiB 0.01 0.00 0.571 0.571 0 0 0.571 0.00 1.5939e-05 1.2321e-05 0.00150516 0.00117684 -1 -1 -1 -1 8 17 4 107788 107788 4794.78 299.674 0.01 0.00385582 0.00312068 564 862 -1 17 4 12 12 252 131 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00115165 0.00109399 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.36 vpr 63.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65172 5 3 11 14 2 9 10 4 4 16 clb auto 25.4 MiB 0.00 22 21 620 285 242 93 63.6 MiB 0.01 0.00 0.646297 0.645978 -2.18969 -0.645978 0.571 0.00 2.1955e-05 1.4371e-05 0.00139068 0.000987622 -1 -1 -1 -1 6 21 8 107788 107788 3417.33 213.583 0.01 0.00303703 0.00241011 552 802 -1 20 8 24 24 508 283 0.59309 0.571 -2.01015 -0.59309 0 0 4794.78 299.674 0.00 0.00 0.00 -1 -1 0.00 0.00121673 0.00111335 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.35 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 5 3 11 14 2 9 10 4 4 16 clb auto 26.1 MiB 0.00 22 20 670 310 248 112 64.3 MiB 0.01 0.00 1.64604 1.6463 -5.31901 -1.6463 0.571 0.01 1.912e-05 1.4412e-05 0.00149794 0.00105011 -1 -1 -1 -1 8 34 15 107788 107788 4794.78 299.674 0.02 0.00465997 0.00346962 564 862 -1 24 3 10 10 284 182 1.57153 0.571 -5.24124 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00118015 0.00110489 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.36 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 5 3 11 14 2 9 10 4 4 16 clb auto 26.1 MiB 0.00 22 20 200 38 110 52 64.3 MiB 0.00 0.00 1.44967 1.44871 -2.90935 -1.44871 0.571 0.00 1.9113e-05 1.4835e-05 0.000521838 0.000397098 -1 -1 -1 -1 6 26 6 107788 107788 3417.33 213.583 0.01 0.00248721 0.00203975 552 802 -1 15 20 48 48 1206 797 1.56638 0.571 -2.99759 -1.56638 0 0 4794.78 299.674 0.00 0.00 0.00 -1 -1 0.00 0.00163147 0.00142426 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.35 vpr 64.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 5 3 11 14 2 9 10 4 4 16 clb auto 25.5 MiB 0.00 22 20 530 219 169 142 64.3 MiB 0.00 0.00 0.146298 0.145978 0 0 0.571 0.00 1.8195e-05 1.4207e-05 0.00111733 0.000861244 -1 -1 -1 -1 6 20 4 107788 107788 3417.33 213.583 0.01 0.00244519 0.00206485 552 802 -1 17 2 11 11 260 139 0.0715255 0.571 0 0 0 0 4794.78 299.674 0.00 0.00 0.00 -1 -1 0.00 0.00110375 0.00104728 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt index 29a6b6fd90..e76a36f488 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.15 vpr 64.75 MiB -1 -1 0.06 20060 1 0.02 -1 -1 30104 -1 -1 3 9 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66300 9 8 75 70 1 34 20 5 5 25 clb auto 25.6 MiB 0.43 116 86 344 95 245 4 64.7 MiB 0.01 0.00 2.64007 2.48207 -26.0038 -2.48207 2.48207 0.01 8.9071e-05 8.0372e-05 0.00210516 0.00196154 -1 -1 -1 -1 28 216 28 151211 75605.7 38887.3 1555.49 0.09 0.0227779 0.0192543 1932 6055 -1 162 19 162 180 5398 3031 3.17075 3.17075 -38.2459 -3.17075 0 0 46719.2 1868.77 0.00 0.01 0.00 -1 -1 0.00 0.00588739 0.00531408 13 18 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 2.43 vpr 64.91 MiB -1 -1 0.07 19304 1 0.02 -1 -1 30168 -1 -1 2 11 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66468 11 10 108 97 1 48 23 4 4 16 clb auto 25.9 MiB 1.72 145.745 133 119 39 68 12 64.9 MiB 0.00 0.00 3.45122 3.45122 -42.3331 -3.45122 3.45122 0.01 0.000123082 0.000111897 0.00165711 0.00159102 -1 -1 -1 -1 36 245 30 50403.8 50403.8 22423.4 1401.47 0.06 0.0256366 0.0218285 1036 3262 -1 163 17 160 211 6451 4043 3.45122 3.45122 -45.6511 -3.45122 0 0 28178.5 1761.16 0.00 0.01 0.00 -1 -1 0.00 0.00711664 0.00646804 14 27 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.12 vpr 64.76 MiB -1 -1 0.07 20056 1 0.02 -1 -1 29608 -1 -1 7 13 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66316 13 12 149 129 1 68 32 6 6 36 clb auto 25.6 MiB 3.15 259.236 208 1182 330 828 24 64.8 MiB 0.01 0.00 3.49758 3.49758 -53.1299 -3.49758 3.49758 0.02 0.000171525 0.000156885 0.00574581 0.00535615 -1 -1 -1 -1 48 441 18 403230 176413 104013. 2889.24 0.22 0.0626458 0.0535255 3910 18599 -1 361 15 297 362 11260 4801 3.69853 3.69853 -57.0579 -3.69853 0 0 131137. 3642.71 0.00 0.01 0.01 -1 -1 0.00 0.00918678 0.00841291 25 38 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 2.46 vpr 65.61 MiB -1 -1 0.06 20064 1 0.02 -1 -1 29792 -1 -1 7 15 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 67180 15 14 196 165 1 92 36 6 6 36 clb auto 25.9 MiB 1.54 339.362 309 803 189 604 10 65.6 MiB 0.01 0.00 3.66013 3.69399 -65.1363 -3.69399 3.69399 0.02 0.000212262 0.000194337 0.00550096 0.00518514 -1 -1 -1 -1 52 584 19 403230 176413 110337. 3064.92 0.15 0.0498792 0.0431829 4014 20275 -1 491 24 489 795 28412 11313 4.3013 4.3013 -77.7503 -4.3013 0 0 143382. 3982.83 0.00 0.02 0.01 -1 -1 0.00 0.0140246 0.0126523 37 51 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 5.40 vpr 65.05 MiB -1 -1 0.08 20444 1 0.03 -1 -1 30188 -1 -1 5 17 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 66612 17 16 251 206 1 117 38 5 5 25 clb auto 25.8 MiB 4.39 488.93 400 1109 213 881 15 65.1 MiB 0.01 0.00 3.8942 3.8942 -74.1337 -3.8942 3.8942 0.01 0.000252841 0.000231935 0.0070244 0.00660909 -1 -1 -1 -1 52 732 30 151211 126010 63348.9 2533.96 0.25 0.0962392 0.0827769 2316 10503 -1 494 15 508 819 22796 10501 4.51512 4.51512 -88.1312 -4.51512 0 0 82390.3 3295.61 0.00 0.02 0.01 -1 -1 0.00 0.0139482 0.0128644 44 66 -1 -1 -1 -1 -k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 4.93 vpr 65.88 MiB -1 -1 0.09 20444 1 0.03 -1 -1 30272 -1 -1 7 19 0 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 67464 19 18 308 249 1 134 44 6 6 36 clb auto 26.1 MiB 3.95 669.263 466 4048 1040 2977 31 65.9 MiB 0.03 0.00 5.1706 4.8546 -99.3278 -4.8546 4.8546 0.02 0.000303437 0.000278632 0.018685 0.0172945 -1 -1 -1 -1 68 733 21 403230 176413 143382. 3982.83 0.19 0.0870906 0.0765293 4366 25715 -1 614 15 480 778 26896 10101 4.58916 4.58916 -94.6287 -4.58916 0 0 176130. 4892.50 0.00 0.02 0.02 -1 -1 0.00 0.0166902 0.015458 53 83 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.19 vpr 65.16 MiB -1 -1 0.07 19956 1 0.02 -1 -1 29816 -1 -1 3 9 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66724 9 8 75 70 1 34 20 5 5 25 clb auto 26.4 MiB 0.43 116 85 1586 677 891 18 65.2 MiB 0.01 0.00 2.64007 2.48207 -26.0196 -2.48207 2.48207 0.01 9.5705e-05 8.6339e-05 0.00623502 0.00564291 -1 -1 -1 -1 26 239 17 151211 75605.7 37105.9 1484.24 0.08 0.0290937 0.0246362 1908 5841 -1 135 7 92 95 2945 1656 2.87707 2.87707 -32.3084 -2.87707 0 0 45067.1 1802.68 0.00 0.01 0.00 -1 -1 0.00 0.00407687 0.00381433 13 18 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 2.52 vpr 65.32 MiB -1 -1 0.07 19952 1 0.02 -1 -1 29716 -1 -1 2 11 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66884 11 10 108 97 1 48 23 4 4 16 clb auto 26.4 MiB 1.72 145.745 128 2583 1037 1310 236 65.3 MiB 0.02 0.00 3.45122 3.45122 -42.3331 -3.45122 3.45122 0.01 0.000128796 0.000116897 0.0111285 0.0101435 -1 -1 -1 -1 32 219 32 50403.8 50403.8 20844.1 1302.76 0.13 0.0553907 0.0468214 1004 2840 -1 164 11 159 229 6534 4021 3.40193 3.40193 -47.6211 -3.40193 0 0 24991.0 1561.94 0.00 0.01 0.00 -1 -1 0.00 0.00620027 0.00573623 14 27 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.26 vpr 65.61 MiB -1 -1 0.08 20336 1 0.03 -1 -1 29756 -1 -1 7 13 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67184 13 12 149 129 1 68 32 6 6 36 clb auto 26.0 MiB 3.21 259.236 199 3832 1568 2180 84 65.6 MiB 0.03 0.00 3.49758 3.49758 -52.5769 -3.49758 3.49758 0.02 0.000163585 0.000148802 0.0144768 0.0132395 -1 -1 -1 -1 32 632 26 403230 176413 76028.0 2111.89 0.28 0.0826928 0.0704016 3558 13169 -1 364 17 325 417 15525 7118 3.73458 3.73458 -60.4166 -3.73458 0 0 91794.1 2549.84 0.00 0.02 0.01 -1 -1 0.00 0.00968311 0.00882127 25 38 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 2.52 vpr 65.54 MiB -1 -1 0.08 19952 1 0.02 -1 -1 29812 -1 -1 7 15 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67108 15 14 196 165 1 92 36 6 6 36 clb auto 26.2 MiB 1.55 339.362 305 4815 1886 2816 113 65.5 MiB 0.03 0.00 3.66013 3.62628 -64.9445 -3.62628 3.62628 0.02 0.000208928 0.000190215 0.0192218 0.0176042 -1 -1 -1 -1 52 608 18 403230 176413 110337. 3064.92 0.15 0.0649109 0.0567048 4014 20275 -1 491 16 415 588 18860 7886 4.11059 4.11059 -72.9556 -4.11059 0 0 143382. 3982.83 0.00 0.02 0.01 -1 -1 0.00 0.0114056 0.010459 37 51 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 5.42 vpr 66.14 MiB -1 -1 0.07 19952 1 0.03 -1 -1 29860 -1 -1 5 17 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67724 17 16 251 206 1 117 38 5 5 25 clb auto 26.4 MiB 4.30 488.93 400 5834 2877 2918 39 66.1 MiB 0.05 0.00 3.8942 3.89124 -74.9686 -3.89124 3.89124 0.01 0.000259714 0.000237096 0.0275695 0.0252326 -1 -1 -1 -1 46 707 35 151211 126010 57775.2 2311.01 0.32 0.13291 0.114533 2220 9391 -1 558 21 663 1082 33018 15212 4.81406 4.81406 -96.0866 -4.81406 0 0 73020.3 2920.81 0.00 0.03 0.01 -1 -1 0.00 0.0163331 0.0148651 44 66 -1 -1 -1 -1 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 5.22 vpr 66.48 MiB -1 -1 0.09 20720 1 0.03 -1 -1 29864 -1 -1 7 19 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68076 19 18 308 249 1 134 44 6 6 36 clb auto 26.8 MiB 3.92 669.263 458 5819 2415 3368 36 66.5 MiB 0.05 0.00 5.1706 4.8546 -99.6466 -4.8546 4.8546 0.02 0.000307933 0.00028155 0.0271862 0.0248985 -1 -1 -1 -1 40 1046 28 403230 176413 88484.8 2457.91 0.42 0.148944 0.128909 3734 16003 -1 796 20 753 1121 43775 19222 5.51164 5.51164 -119.88 -5.51164 0 0 110337. 3064.92 0.00 0.03 0.01 -1 -1 0.00 0.0188351 0.017201 53 83 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tileable_rr_graph_perimeter_cb/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tileable_rr_graph_perimeter_cb/config/golden_results.txt index 1ec53c07bd..13d6c0e72b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tileable_rr_graph_perimeter_cb/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_tileable_rr_graph_perimeter_cb/config/golden_results.txt @@ -1,4 +1,4 @@ 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_tileable_perimeter_cb_90nm.xml diffeq.blif common 16.22 vpr 62.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 438 64 -1 -1 success v8.0.0-13021-g345d251e3-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-20T19:05:16 agent-3 /home/mohagh18/vtr-verilog-to-routing/vtr_flow/tasks 64028 64 39 1935 1974 1 1077 541 23 23 529 clb auto 23.3 MiB 0.32 23383 10252 119503 28618 87175 3710 62.5 MiB 1.34 0.02 13.2048 7.13924 -1172.08 -7.13924 7.13924 0.57 0.00281932 0.00216196 0.173313 0.133573 -1 -1 -1 -1 34 18135 26 983127 976439 897386. 1696.38 10.12 0.961872 0.787041 40002 146231 -1 21299 25 9235 32958 4733492 1780844 7.08492 7.08492 -1502.77 -7.08492 0 0 1.04845e+06 1981.94 0.15 1.39 -1 -1 -1 0.15 0.189526 0.162735 -k4_N4_tileable_perimeter_cb_90nm.xml ex5p.blif common 42.06 vpr 58.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 366 8 -1 -1 success v8.0.0-13021-g345d251e3-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-20T19:05:16 agent-3 /home/mohagh18/vtr-verilog-to-routing/vtr_flow/tasks 59644 8 63 1072 1135 0 894 437 22 22 484 clb auto 19.0 MiB 0.26 20320 11946 86601 21898 63026 1677 58.2 MiB 1.03 0.02 7.95072 5.28278 -233.118 -5.28278 nan 0.52 0.00193544 0.00142786 0.111869 0.0866652 -1 -1 -1 -1 50 20745 26 891726 815929 1.11061e+06 2294.66 36.41 0.787577 0.645158 48048 178976 -1 23642 21 10261 34242 6998785 2421199 5.87736 nan -261.019 -5.87736 0 0 1.28980e+06 2664.87 0.17 1.62 -1 -1 -1 0.17 0.107382 0.0929134 -k4_N4_tileable_perimeter_cb_90nm.xml s298.blif common 53.44 vpr 72.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 580 4 -1 -1 success v8.0.0-13021-g345d251e3-dirty release IPO VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-57-generic x86_64 2025-04-20T19:05:16 agent-3 /home/mohagh18/vtr-verilog-to-routing/vtr_flow/tasks 74664 4 6 1942 1948 1 1169 590 27 27 729 clb auto 25.0 MiB 0.35 27324 13425 148970 41008 107008 954 72.9 MiB 1.84 0.03 15.2089 9.65839 -76.0928 -9.65839 9.65839 0.81 0.00340369 0.00261843 0.224099 0.175111 -1 -1 -1 -1 34 24976 25 1.39333e+06 1.29301e+06 1.24041e+06 1701.52 45.33 1.66978 1.36439 54994 199951 -1 28059 24 11455 54709 8763089 2638513 10.1962 10.1962 -84.1267 -10.1962 0 0 1.45188e+06 1991.60 0.18 2.10 -1 -1 -1 0.18 0.186815 0.160845 +k4_N4_tileable_perimeter_cb_90nm.xml diffeq.blif common 13.23 vpr 71.56 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 439 64 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 73280 64 39 1935 1974 1 1075 542 23 23 529 clb auto 31.3 MiB 0.20 24080.5 10103 177262 63808 112993 461 71.6 MiB 0.95 0.01 14.139 7.0768 -1144.53 -7.0768 7.0768 0.37 0.00399667 0.0035746 0.313872 0.277052 -1 -1 -1 -1 30 18379 42 983127 978669 799640. 1511.61 9.03 1.39244 1.22189 37890 130927 -1 19491 22 8212 28579 3274057 1169302 7.835 7.835 -1438.18 -7.835 0 0 952923. 1801.37 0.08 0.91 -1 -1 -1 0.08 0.221922 0.198204 +k4_N4_tileable_perimeter_cb_90nm.xml ex5p.blif common 30.76 vpr 66.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 362 8 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68000 8 63 1072 1135 0 892 433 22 22 484 clb auto 26.9 MiB 0.16 20194.5 11892 123208 47583 75480 145 66.4 MiB 0.66 0.01 7.63961 5.23696 -232.198 -5.23696 nan 0.36 0.00174259 0.00151343 0.176759 0.157826 -1 -1 -1 -1 46 23174 45 891726 807012 1.01259e+06 2092.13 25.62 1.14353 1.01214 46116 174480 -1 24484 30 11793 39107 11258990 4838388 8.3865 nan -302.778 -8.3865 0 0 1.24845e+06 2579.43 0.11 2.27 -1 -1 -1 0.11 0.182941 0.164207 +k4_N4_tileable_perimeter_cb_90nm.xml s298.blif common 28.21 vpr 79.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 579 4 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 81012 4 6 1942 1948 1 1135 589 27 27 729 clb auto 33.0 MiB 0.22 26797 13186 207901 80523 126669 709 79.1 MiB 1.24 0.01 16.1491 9.75889 -75.5375 -9.75889 9.75889 0.51 0.00420539 0.00375933 0.424341 0.372193 -1 -1 -1 -1 34 25598 48 1.39333e+06 1.29078e+06 1.24041e+06 1701.52 21.11 1.80406 1.57134 54994 199951 -1 30589 33 12540 60474 12156894 4366131 11.445 11.445 -97.5974 -11.445 0 0 1.45188e+06 1991.60 0.12 2.85 -1 -1 -1 0.12 0.353087 0.311828 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt index 457d8c7174..f227584bfa 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_aliases_set_delay/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 -timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.22 vpr 58.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-13290-g19885dbb2 release VTR_ASSERT_LEVEL=3 debug_logging GNU 11.4.0 on Linux-4.15.0-213-generic x86_64 2025-07-08T18:21:59 pt-372-11 /home/soheil/vpr_repos/vtr_flow 60048 2 2 22 24 2 4 6 4 4 16 clb auto 19.1 MiB 0.00 8 7 15 8 4 3 58.6 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.01 3.4629e-05 2.3788e-05 0.000211272 0.000171138 -1 -1 -1 -1 6 8 3 72000 36000 4025.56 251.598 0.00 0.000731131 0.000609405 660 1032 -1 7 3 5 5 233 157 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.000462807 0.0004042 +timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.29 vpr 58.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60260 2 2 22 24 2 4 6 4 4 16 clb auto 20.3 MiB 0.00 8 6 15 6 5 4 58.8 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.01 3.4317e-05 2.8678e-05 0.000249075 0.000220755 -1 -1 -1 -1 6 3 2 72000 36000 4025.56 251.598 0.00 0.0015922 0.00146896 660 1032 -1 13 4 7 7 476 362 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00141179 0.00131892 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt index feb61adfc9..ec99364f95 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_modeling/config/golden_results.txt @@ -1,9 +1,9 @@ - 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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_global_nets num_routed_nets - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.28 vpr 58.45 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 29936 -1 -1 1 2 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 59848 2 1 3 4 1 3 4 3 3 9 -1 auto 20.2 MiB 0.00 6 6 9 3 5 1 58.4 MiB 0.00 0.00 0.55447 0.55447 -0.91031 -0.55447 0.55447 0.00 9.976e-06 6.52e-06 7.6749e-05 5.6941e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00104585 0.000969915 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 - timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.30 vpr 58.29 MiB 0.01 6144 -1 -1 1 0.02 -1 -1 29976 -1 -1 1 2 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 59684 2 1 3 4 1 3 4 3 3 9 -1 auto 19.8 MiB 0.00 9 9 9 3 3 3 58.3 MiB 0.00 0.00 0.56425 0.48631 -0.91031 -0.48631 0.48631 0.00 1.188e-05 7.583e-06 0.000105925 7.7125e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.00124969 0.0011614 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 - timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 2.93 vpr 61.18 MiB 0.23 59136 -1 -1 2 0.98 -1 -1 47688 -1 -1 155 5 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62648 5 156 191 347 1 163 316 15 15 225 clb auto 21.4 MiB 0.02 118 29 74491 53594 2922 17975 61.2 MiB 0.07 0.00 1.99335 1.49664 -15.1312 -1.49664 1.49664 0.00 0.000233205 0.000216293 0.0172839 0.0160858 -1 -1 -1 -1 -1 30 5 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0222478 0.0206861 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 - timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 3.04 vpr 60.80 MiB 0.24 59136 -1 -1 2 1.00 -1 -1 47688 -1 -1 155 5 -1 -1 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62264 5 156 191 347 1 163 316 15 15 225 clb auto 21.4 MiB 0.03 126 35 58366 40661 3888 13817 60.8 MiB 0.07 0.00 1.66097 1.49775 -14.6138 -1.49775 1.49775 0.00 0.000284678 0.000268223 0.0178073 0.0165696 -1 -1 -1 -1 -1 59 6 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0247525 0.0230678 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 - timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.33 vpr 64.29 MiB 0.02 6144 -1 -1 1 0.02 -1 -1 29576 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 65828 2 1 3 4 1 3 4 3 3 9 -1 auto 25.6 MiB 0.00 6 6 9 3 5 1 64.3 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.729e-06 6.339e-06 7.9263e-05 5.976e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00103058 0.000959115 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 - timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.31 vpr 64.28 MiB 0.02 6144 -1 -1 1 0.02 -1 -1 29960 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 65824 2 1 3 4 1 3 4 3 3 9 -1 auto 25.6 MiB 0.00 9 9 9 3 3 3 64.3 MiB 0.00 0.00 0.56425 0.48631 -0.90831 -0.48631 0.48631 0.00 9.876e-06 6.234e-06 7.3679e-05 5.1786e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00101609 0.00094461 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 - timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 2.54 vpr 71.95 MiB 0.09 16512 -1 -1 2 0.10 -1 -1 33548 -1 -1 43 311 15 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 73680 311 156 972 1128 1 953 525 28 28 784 memory auto 32.6 MiB 0.30 19535.2 9403 201640 62641 137257 1742 72.0 MiB 0.68 0.01 4.8206 4.25856 -4465.81 -4.25856 4.25856 0.00 0.00287295 0.00249332 0.29756 0.256221 -1 -1 -1 -1 -1 13391 11 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.24 0.414264 0.362744 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 - timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 2.48 vpr 71.11 MiB 0.09 16512 -1 -1 2 0.11 -1 -1 33548 -1 -1 43 311 15 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 72820 311 156 972 1128 1 953 525 28 28 784 memory auto 32.0 MiB 0.30 19711.2 8388 169885 54274 112760 2851 71.1 MiB 0.58 0.01 4.71974 3.83094 -3777.35 -3.83094 3.83094 0.00 0.00309026 0.00258567 0.250079 0.21639 -1 -1 -1 -1 -1 12456 13 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.25 0.365323 0.321413 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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_global_nets num_routed_nets +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.27 vpr 58.69 MiB 0.01 6528 -1 -1 1 0.02 -1 -1 29552 -1 -1 1 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60100 2 1 3 4 1 3 4 3 3 9 -1 auto 19.8 MiB 0.00 6 6 9 3 5 1 58.7 MiB 0.00 0.00 0.55447 0.55447 -0.91031 -0.55447 0.55447 0.00 1.0109e-05 6.65e-06 6.9226e-05 5.103e-05 -1 -1 -1 -1 -1 2 4 18000 18000 14049.7 1561.07 0.00 0.00106708 0.00100124 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.26 vpr 58.69 MiB 0.01 6528 -1 -1 1 0.02 -1 -1 29596 -1 -1 1 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60100 2 1 3 4 1 3 4 3 3 9 -1 auto 20.3 MiB 0.00 9 9 9 1 5 3 58.7 MiB 0.00 0.00 0.56425 0.48631 -0.91031 -0.48631 0.48631 0.00 1.0521e-05 6.774e-06 7.44e-05 5.3606e-05 -1 -1 -1 -1 -1 4 3 18000 18000 15707.9 1745.32 0.00 0.00098083 0.000911049 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 2.93 vpr 60.84 MiB 0.23 59136 -1 -1 2 0.99 -1 -1 47680 -1 -1 155 5 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62296 5 156 191 347 1 163 316 15 15 225 clb auto 21.4 MiB 0.02 118 31 181991 133557 5728 42706 60.8 MiB 0.18 0.00 1.99335 1.49664 -15.0848 -1.49664 1.49664 0.00 0.000239895 0.00022385 0.0434768 0.040395 -1 -1 -1 -1 -1 47 6 3.042e+06 2.79e+06 863192. 3836.41 0.01 0.0489471 0.0454448 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 154 9 +timing/k6_N10_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 3.03 vpr 61.21 MiB 0.22 59520 -1 -1 2 1.00 -1 -1 47684 -1 -1 155 5 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62680 5 156 191 347 1 163 316 15 15 225 clb auto 21.4 MiB 0.02 126 33 171241 124974 6202 40065 61.2 MiB 0.18 0.00 1.66097 1.47673 -14.6018 -1.47673 1.47673 0.00 0.000238035 0.000220052 0.0450144 0.0416574 -1 -1 -1 -1 -1 63 6 3.042e+06 2.79e+06 892591. 3967.07 0.01 0.0504845 0.0467052 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 153 10 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 0.33 vpr 64.32 MiB 0.02 6528 -1 -1 1 0.02 -1 -1 29468 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65860 2 1 3 4 1 3 4 3 3 9 -1 auto 26.1 MiB 0.00 6 6 9 3 5 1 64.3 MiB 0.00 0.00 0.55247 0.55247 -0.90831 -0.55247 0.55247 0.00 9.969e-06 6.483e-06 7.9339e-05 5.8433e-05 -1 -1 -1 -1 -1 2 3 53894 53894 12370.0 1374.45 0.00 0.00105922 0.000984631 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 1 2 +timing/k6_N10_mem32K_40nm.xml microbenchmarks/d_flip_flop.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 0.30 vpr 64.32 MiB 0.02 6144 -1 -1 1 0.02 -1 -1 29572 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65864 2 1 3 4 1 3 4 3 3 9 -1 auto 26.1 MiB 0.00 9 9 9 1 5 3 64.3 MiB 0.00 0.00 0.56425 0.48631 -0.90831 -0.48631 0.48631 0.00 1.0338e-05 6.511e-06 7.7119e-05 5.5164e-05 -1 -1 -1 -1 -1 4 2 53894 53894 14028.3 1558.70 0.00 0.00103029 0.000959276 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 3 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_ideal_--route_chan_width_60 2.67 vpr 71.98 MiB 0.10 16896 -1 -1 2 0.10 -1 -1 32992 -1 -1 43 311 15 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 73704 311 156 972 1128 1 953 525 28 28 784 memory auto 32.7 MiB 0.31 19535.2 8434 243980 106344 133931 3705 72.0 MiB 0.85 0.01 4.8206 3.97422 -4388.16 -3.97422 3.97422 0.00 0.00310432 0.00257968 0.363654 0.310966 -1 -1 -1 -1 -1 12286 12 4.25198e+07 1.05374e+07 2.96205e+06 3778.13 0.21 0.469663 0.407651 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 15 938 +timing/k6_N10_mem32K_40nm.xml verilog/mkPktMerge.v common_-start_odin_--clock_modeling_route_--route_chan_width_60 2.64 vpr 71.97 MiB 0.09 16128 -1 -1 2 0.10 -1 -1 33520 -1 -1 43 311 15 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 73700 311 156 972 1128 1 953 525 28 28 784 memory auto 32.8 MiB 0.31 19711.2 8697 241863 108484 130483 2896 72.0 MiB 0.83 0.01 4.71974 3.98529 -4050.55 -3.98529 3.98529 0.00 0.00300372 0.00249721 0.353472 0.30365 -1 -1 -1 -1 -1 12542 12 4.25198e+07 1.05374e+07 3.02951e+06 3864.17 0.22 0.459277 0.400206 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 14 939 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt index 1825347bd3..6cf16d404c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_global_nonuniform/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 - x_gaussian_y_uniform.xml stereovision3.v common 1.32 vpr 68.53 MiB 0.06 11136 -1 -1 4 0.14 -1 -1 37180 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 70176 11 30 260 290 2 106 54 7 7 49 clb auto 28.9 MiB 0.11 601.862 410 8316 3706 4382 228 68.5 MiB 0.08 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.01 0.000453162 0.000372708 0.0452504 0.0374881 -1 -1 -1 -1 18 294 2 1.07788e+06 700622 -1 -1 0.24 0.139096 0.115666 2680 3516 -1 294 14 205 364 17937 8896 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0198162 0.0175965 - x_uniform_y_gaussian.xml stereovision3.v common 1.27 vpr 68.66 MiB 0.05 11008 -1 -1 4 0.14 -1 -1 36796 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 70304 11 30 260 290 2 106 54 7 7 49 clb auto 29.1 MiB 0.08 601.862 427 6582 2493 3884 205 68.7 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.01 0.000468459 0.000381502 0.0344443 0.02854 -1 -1 -1 -1 10 333 4 1.07788e+06 700622 -1 -1 0.24 0.0998599 0.0841849 2680 3516 -1 318 3 173 276 13040 6410 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0126719 0.0119522 - x_gaussian_y_gaussian.xml stereovision3.v common 1.11 vpr 68.01 MiB 0.04 11008 -1 -1 4 0.13 -1 -1 37308 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 69640 11 30 260 290 2 106 54 7 7 49 clb auto 28.9 MiB 0.08 601.862 391 7602 3159 4236 207 68.0 MiB 0.08 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.01 0.000437966 0.000357194 0.0428972 0.0354838 -1 -1 -1 -1 14 274 3 1.07788e+06 700622 -1 -1 0.10 0.0946463 0.079051 2680 3516 -1 274 2 150 240 9508 4674 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0118934 0.0113057 - x_delta_y_uniform.xml stereovision3.v common 1.35 vpr 68.61 MiB 0.05 11136 -1 -1 4 0.14 -1 -1 36864 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 70256 11 30 260 290 2 106 54 7 7 49 clb auto 29.1 MiB 0.08 601.862 454 8928 3901 4795 232 68.6 MiB 0.08 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000460902 0.000377205 0.0438501 0.0360874 -1 -1 -1 -1 54 353 10 1.07788e+06 700622 -1 -1 0.33 0.201292 0.167895 2680 3516 -1 356 3 161 252 11536 5889 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0123856 0.0116841 - x_delta_y_delta.xml stereovision3.v common 1.26 vpr 68.18 MiB 0.04 11008 -1 -1 4 0.14 -1 -1 36800 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 69816 11 30 260 290 2 106 54 7 7 49 clb auto 29.2 MiB 0.09 601.862 448 10764 5492 4983 289 68.2 MiB 0.10 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000470829 0.000387225 0.0516894 0.0422739 -1 -1 -1 -1 58 342 16 1.07788e+06 700622 -1 -1 0.21 0.15083 0.1246 2680 3516 -1 335 16 275 552 23457 10563 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.04 0.00 -1 -1 0.00 0.0265677 0.0236852 - x_uniform_y_delta.xml stereovision3.v common 1.35 vpr 68.61 MiB 0.04 11008 -1 -1 4 0.14 -1 -1 37048 -1 -1 13 11 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 70256 11 30 260 290 2 106 54 7 7 49 clb auto 28.9 MiB 0.09 601.862 432 9642 4649 4734 259 68.6 MiB 0.09 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000460469 0.00037582 0.0485559 0.0398589 -1 -1 -1 -1 44 311 16 1.07788e+06 700622 -1 -1 0.29 0.193743 0.1599 2680 3516 -1 309 2 154 244 10287 5014 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0133517 0.012591 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 +x_gaussian_y_uniform.xml stereovision3.v common 1.46 vpr 66.18 MiB 0.04 9984 -1 -1 4 0.14 -1 -1 33096 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67764 11 30 260 290 2 106 54 7 7 49 clb auto 26.8 MiB 0.07 601.862 419 8316 3527 4586 203 66.2 MiB 0.08 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000405753 0.000357657 0.0514186 0.046267 -1 -1 -1 -1 12 316 11 1.07788e+06 700622 -1 -1 0.29 0.15775 0.136576 2680 3516 -1 316 15 177 321 14563 7227 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0194381 0.0176374 +x_uniform_y_gaussian.xml stereovision3.v common 1.33 vpr 66.17 MiB 0.05 9984 -1 -1 4 0.14 -1 -1 32732 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67760 11 30 260 290 2 106 54 7 7 49 clb auto 26.8 MiB 0.07 601.862 399 7398 2939 4263 196 66.2 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.01 0.000600154 0.000552663 0.0393624 0.0348994 -1 -1 -1 -1 14 296 10 1.07788e+06 700622 -1 -1 0.22 0.153908 0.133155 2680 3516 -1 295 2 154 245 10256 4885 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0111744 0.010716 +x_gaussian_y_gaussian.xml stereovision3.v common 1.26 vpr 66.74 MiB 0.04 9984 -1 -1 4 0.14 -1 -1 32896 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68340 11 30 260 290 2 106 54 7 7 49 clb auto 26.8 MiB 0.07 601.862 415 7500 3474 3814 212 66.7 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000420861 0.000372307 0.0357748 0.0315707 -1 -1 -1 -1 16 304 3 1.07788e+06 700622 -1 -1 0.14 0.0929463 0.080899 2680 3516 -1 306 2 153 243 10605 5221 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0111504 0.0106978 +x_delta_y_uniform.xml stereovision3.v common 1.32 vpr 66.74 MiB 0.05 9984 -1 -1 4 0.14 -1 -1 32544 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68344 11 30 260 290 2 106 54 7 7 49 clb auto 27.1 MiB 0.07 601.862 453 8622 3876 4500 246 66.7 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000400646 0.000352807 0.037236 0.0328628 -1 -1 -1 -1 54 353 3 1.07788e+06 700622 -1 -1 0.15 0.113626 0.0980206 2680 3516 -1 353 2 154 244 12337 6086 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0111242 0.0106621 +x_delta_y_delta.xml stereovision3.v common 1.30 vpr 66.18 MiB 0.05 9984 -1 -1 4 0.14 -1 -1 32744 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67768 11 30 260 290 2 106 54 7 7 49 clb auto 26.8 MiB 0.07 601.862 503 8316 3040 5059 217 66.2 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.000406632 0.000359209 0.0365042 0.0322637 -1 -1 -1 -1 54 414 9 1.07788e+06 700622 -1 -1 0.14 0.0991422 0.085994 2680 3516 -1 405 3 166 259 13189 6834 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.02 0.00 -1 -1 0.00 0.0118513 0.0112383 +x_uniform_y_delta.xml stereovision3.v common 1.38 vpr 66.75 MiB 0.05 9984 -1 -1 4 0.14 -1 -1 32736 -1 -1 13 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 68348 11 30 260 290 2 106 54 7 7 49 clb auto 26.8 MiB 0.07 601.862 446 8316 3491 4630 195 66.7 MiB 0.06 0.00 1.90541 1.90541 -132.779 -1.90541 1.84522 0.00 0.0004055 0.000356054 0.0368358 0.0325089 -1 -1 -1 -1 28 335 16 1.07788e+06 700622 -1 -1 0.24 0.152146 0.130266 2680 3516 -1 331 14 275 576 23209 9948 1.90541 1.84522 -132.779 -1.90541 0 0 -1 -1 0.00 0.03 0.00 -1 -1 0.00 0.0188403 0.0171122 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt index 20148ea137..60529e445b 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_post_routing_sync/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time routed_wirelength avg_routed_wirelength routed_wiresegment avg_routed_wiresegment total_nets_routed total_connections_routed total_heap_pushes total_heap_pops logic_block_area_total logic_block_area_used routing_area_total routing_area_per_tile crit_path_route_success_iteration num_rr_graph_nodes num_rr_graph_edges collapsed_nodes critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS create_rr_graph_time create_intra_cluster_rr_graph_time adding_internal_edges route_mem crit_path_route_time crit_path_total_timing_analysis_time crit_path_total_sta_time router_lookahead_mem tile_lookahead_computation_time router_lookahead_computation_time -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.31 vpr 61.58 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63060 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.9 MiB 0.00 0 0 3 0 0 3 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 1.1351e-05 6.75e-06 6.4456e-05 4.2679e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00094827 0.0008906 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.31 vpr 61.58 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63060 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.9 MiB 0.00 0 0 3 0 0 3 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 1.0683e-05 5.389e-06 6.2263e-05 3.8047e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00092372 0.000864937 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.31 vpr 61.59 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 6 1 1 8 0 1 8 3 3 9 -1 auto 22.9 MiB 0.00 0 0 21 0 11 10 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.917e-06 3.912e-06 4.8786e-05 2.9729e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.000899941 0.000846888 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.31 vpr 61.95 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63436 6 1 1 8 0 1 8 3 3 9 -1 auto 23.3 MiB 0.00 0 0 21 0 11 10 61.9 MiB 0.00 0.00 nan nan 0 0 nan 0.00 8.081e-06 4.067e-06 4.9922e-05 3.0147e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.9 MiB 0.00 0.000920521 0.000866735 61.9 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.34 vpr 61.50 MiB -1 -1 -1 -1 1 0.02 -1 -1 29568 -1 -1 1 2 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62980 2 1 3 4 0 3 4 3 3 9 -1 auto 23.2 MiB 0.00 9 9 9 5 0 4 61.5 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 9.678e-06 6.219e-06 6.6387e-05 4.8242e-05 -1 -1 -1 -1 6 2.00000 6 2.00000 19 19 555 367 3900 3900 7855.82 872.868 9 410 1185 -1 0.58369 nan -0.58369 -0.58369 0 0 0.00 -1 -1 61.5 MiB 0.00 0.00103777 0.000944986 61.5 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.38 vpr 61.59 MiB -1 -1 -1 -1 2 0.04 -1 -1 31488 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 5 1 7 8 0 7 7 3 3 9 -1 auto 22.9 MiB 0.00 20 20 18 12 0 6 61.6 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3055e-05 9.526e-06 9.1236e-05 7.1864e-05 -1 -1 -1 -1 8 1.14286 8 1.14286 16 16 343 205 3900 3900 7855.82 872.868 6 410 1185 -1 0.732694 nan -0.732694 -0.732694 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00108936 0.00100155 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.38 vpr 61.35 MiB -1 -1 -1 -1 2 0.04 -1 -1 31500 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62820 5 1 7 8 0 7 7 3 3 9 -1 auto 22.9 MiB 0.00 20 20 18 13 0 5 61.3 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3088e-05 9.552e-06 9.5697e-05 7.5869e-05 -1 -1 -1 -1 11 1.57143 11 1.57143 35 35 1249 908 3900 3900 7855.82 872.868 12 410 1185 -1 0.854523 nan -0.854523 -0.854523 0 0 0.00 -1 -1 61.3 MiB 0.00 0.00141246 0.00125683 61.3 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.31 vpr 61.59 MiB -1 -1 -1 -1 1 0.02 -1 -1 30020 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63068 3 1 5 6 1 4 5 3 3 9 -1 auto 22.9 MiB 0.00 9 9 12 9 0 3 61.6 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 1.9995e-05 1.5673e-05 0.000119664 9.505e-05 -1 -1 -1 -1 5 1.66667 5 1.66667 16 16 474 316 3900 3900 7855.82 872.868 8 410 1185 -1 0.337363 0.337363 -0.621249 -0.337363 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00118005 0.00107162 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.39 vpr 61.59 MiB -1 -1 -1 -1 1 0.04 -1 -1 31856 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 4 1 4 6 0 4 6 3 3 9 -1 auto 23.3 MiB 0.00 12 12 15 11 0 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0104e-05 6.741e-06 7.6709e-05 5.7485e-05 -1 -1 -1 -1 7 1.75000 7 1.75000 33 33 777 447 3900 3900 7855.82 872.868 16 410 1185 -1 0.65563 nan -0.65563 -0.65563 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00117786 0.00104984 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.39 vpr 61.59 MiB -1 -1 -1 -1 1 0.04 -1 -1 31488 -1 -1 1 4 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 4 4 8 12 0 8 9 3 3 9 -1 auto 22.9 MiB 0.00 25.4184 25 27 23 0 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 1.8655e-05 1.4511e-05 0.000134797 0.000113716 -1 -1 -1 -1 30 3.75000 30 3.75000 48 140 5344 3681 3900 3900 7855.82 872.868 13 410 1185 -1 0.651056 nan -2.46867 -0.651056 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00146622 0.00131095 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.39 vpr 61.24 MiB -1 -1 -1 -1 3 0.04 -1 -1 31996 -1 -1 3 6 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62712 6 6 28 34 0 28 15 5 5 25 clb auto 22.9 MiB 0.00 113.798 107 51 16 35 0 61.2 MiB 0.00 0.00 1.19848 1.19848 -5.43061 -1.19848 nan 0.00 5.0751e-05 4.4613e-05 0.000386974 0.000356535 -1 -1 -1 -1 190 6.78571 125 4.46429 182 773 42322 19740 23400 11700 33739.5 1349.58 16 1540 5656 -1 1.62804 nan -7.31458 -1.62804 0 0 0.00 -1 -1 61.2 MiB 0.01 0.00321526 0.00285237 61.2 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.41 vpr 61.70 MiB -1 -1 -1 -1 4 0.05 -1 -1 31728 -1 -1 5 7 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63176 7 8 39 47 0 39 20 5 5 25 clb auto 23.3 MiB 0.01 182.75 166 236 66 151 19 61.7 MiB 0.00 0.00 1.48602 1.46514 -7.47508 -1.46514 nan 0.00 6.8116e-05 5.9888e-05 0.000936057 0.00084599 -1 -1 -1 -1 343 9.02632 217 5.71053 320 1403 84233 37542 23400 19500 33739.5 1349.58 17 1540 5656 -1 1.89437 nan -9.71351 -1.89437 0 0 0.00 -1 -1 61.7 MiB 0.02 0.00484116 0.00429869 61.7 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.47 vpr 61.75 MiB -1 -1 -1 -1 8 0.06 -1 -1 32104 -1 -1 6 8 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63228 8 8 51 59 0 51 22 5 5 25 clb auto 23.3 MiB 0.01 241.827 212 292 68 220 4 61.7 MiB 0.00 0.00 2.56944 2.55768 -12.2695 -2.55768 nan 0.00 8.8675e-05 7.8764e-05 0.00128424 0.00117021 -1 -1 -1 -1 426 8.35294 270 5.29412 390 1570 93366 42836 23400 23400 33739.5 1349.58 17 1540 5656 -1 2.90453 nan -14.4735 -2.90453 0 0 0.01 -1 -1 61.7 MiB 0.02 0.00571728 0.00505722 61.7 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.58 vpr 62.46 MiB -1 -1 -1 -1 7 0.07 -1 -1 31920 -1 -1 11 10 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63960 10 10 95 105 0 95 31 6 6 36 clb auto 23.3 MiB 0.01 521.106 446 511 67 414 30 62.5 MiB 0.01 0.00 2.69967 2.58254 -18.2672 -2.58254 nan 0.00 0.000152394 0.000136218 0.00233797 0.00214616 -1 -1 -1 -1 1060 11.1579 619 6.51579 1279 5258 347347 131253 165600 42900 61410.5 1705.85 26 2708 10880 -1 3.42817 nan -24.9363 -3.42817 0 0 0.01 -1 -1 62.5 MiB 0.06 0.0118639 0.0104214 62.5 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.55 vpr 62.10 MiB -1 -1 -1 -1 8 0.07 -1 -1 32392 -1 -1 11 11 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63588 11 11 94 105 0 94 33 6 6 36 clb auto 22.9 MiB 0.01 523.64 448 657 75 548 34 62.1 MiB 0.01 0.00 2.83651 2.78059 -21.0894 -2.78059 nan 0.00 0.000152169 0.000137289 0.00280167 0.00256224 -1 -1 -1 -1 1000 10.6383 594 6.31915 1234 4840 339188 130604 165600 42900 61410.5 1705.85 24 2708 10880 -1 3.65021 nan -28.2355 -3.65021 0 0 0.01 -1 -1 62.1 MiB 0.06 0.0116364 0.0102477 62.1 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.38 vpr 61.59 MiB -1 -1 -1 -1 1 0.04 -1 -1 30744 -1 -1 1 3 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 3 2 5 7 0 5 6 3 3 9 -1 auto 22.9 MiB 0.00 15 15 15 11 0 4 61.6 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 1.2653e-05 8.951e-06 9.9117e-05 7.7736e-05 -1 -1 -1 -1 12 2.40000 12 2.40000 34 66 1808 1113 3900 3900 7855.82 872.868 16 410 1185 -1 0.650448 nan -1.17317 -0.650448 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00127586 0.00113169 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.40 vpr 61.58 MiB -1 -1 -1 -1 2 0.04 -1 -1 31520 -1 -1 1 5 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63060 5 3 9 12 0 9 9 3 3 9 -1 auto 23.3 MiB 0.00 26 26 27 24 0 3 61.6 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.7674e-05 1.3576e-05 0.000126408 0.000104324 -1 -1 -1 -1 19 2.11111 19 2.11111 42 79 2525 1659 3900 3900 7855.82 872.868 17 410 1185 -1 0.857776 nan -2.30106 -0.857776 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00150928 0.00133607 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.39 vpr 61.59 MiB -1 -1 -1 -1 3 0.04 -1 -1 31512 -1 -1 1 7 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63064 7 4 13 17 0 13 12 3 3 9 -1 auto 23.3 MiB 0.00 37 37 38 34 0 4 61.6 MiB 0.00 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 2.1872e-05 1.7702e-05 0.000167922 0.000145125 -1 -1 -1 -1 39 3.00000 39 3.00000 76 147 5143 3540 3900 3900 7855.82 872.868 18 410 1185 -1 1.24586 nan -3.92083 -1.24586 0 0 0.00 -1 -1 61.6 MiB 0.00 0.0017597 0.00155422 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.40 vpr 61.59 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 1 9 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 63072 9 5 17 22 0 17 15 3 3 9 -1 auto 23.3 MiB 0.00 48 48 51 43 0 8 61.6 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.7476e-05 2.2937e-05 0.000206468 0.00018272 -1 -1 -1 -1 65 3.82353 65 3.82353 127 225 8383 5982 3900 3900 7855.82 872.868 18 410 1185 -1 1.87402 nan -7.08677 -1.87402 0 0 0.00 -1 -1 61.6 MiB 0.00 0.00203269 0.00179477 61.6 MiB -1 0.00 -k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.40 vpr 61.38 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 2 11 0 0 success v8.0.0-13084-g071ad3865 release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-60-generic x86_64 2025-06-17T09:37:40 betzgrp-wintermute /home/pooladam/vtr-verilog-to-routing 62856 11 6 24 30 0 24 19 4 4 16 clb auto 23.1 MiB 0.00 96.6496 80 244 66 161 17 61.4 MiB 0.00 0.00 1.37337 1.3375 -6.59285 -1.3375 nan 0.00 3.6359e-05 3.0887e-05 0.000736168 0.000648998 -1 -1 -1 -1 126 5.25000 93 3.87500 182 402 16845 9302 7800 7800 17482.0 1092.63 17 852 2798 -1 1.67979 nan -8.01983 -1.67979 0 0 0.00 -1 -1 61.4 MiB 0.01 0.0030202 0.00265555 61.4 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_true.blif common 0.31 vpr 61.24 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 -1 1 1 2 0 1 2 3 3 9 -1 auto 23.0 MiB 0.00 0 0 3 0 0 3 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.542e-06 3.51e-06 5.2887e-05 3.3199e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000942271 0.000886685 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml const_false.blif common 0.31 vpr 61.24 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 -1 1 1 2 0 1 2 3 3 9 -1 auto 22.8 MiB 0.00 0 0 3 0 0 3 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.593e-06 3.521e-06 5.9405e-05 3.8432e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000896706 0.00084283 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_true.blif common 0.32 vpr 61.25 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62716 6 1 1 8 0 1 8 3 3 9 -1 auto 23.0 MiB 0.00 0 0 21 0 11 10 61.2 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.911e-06 3.913e-06 4.9704e-05 3.0615e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.2 MiB 0.00 0.000935614 0.000882313 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml always_false.blif common 0.31 vpr 61.62 MiB -1 -1 -1 -1 0 0.02 -1 -1 29568 -1 -1 1 0 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63096 6 1 1 8 0 1 8 3 3 9 -1 auto 23.0 MiB 0.00 0 0 21 0 11 10 61.6 MiB 0.00 0.00 nan nan 0 0 nan 0.00 7.748e-06 3.68e-06 5.8716e-05 3.7453e-05 -1 -1 -1 -1 0 -nan 0 -nan 0 0 0 0 3900 3900 7855.82 872.868 1 410 1185 -1 nan nan 0 0 0 0 0.00 -1 -1 61.6 MiB 0.00 0.000903344 0.00084757 61.6 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and.blif common 0.35 vpr 61.25 MiB -1 -1 -1 -1 1 0.02 -1 -1 29568 -1 -1 1 2 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62716 2 1 3 4 0 3 4 3 3 9 -1 auto 23.0 MiB 0.00 9 9 9 6 2 1 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 9.445e-06 6.191e-06 7.4667e-05 5.5561e-05 -1 -1 -1 -1 4 1.33333 4 1.33333 3 3 76 50 3900 3900 7855.82 872.868 1 410 1185 -1 0.520792 nan -0.520792 -0.520792 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00101601 0.000960081 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut.blif common 0.38 vpr 61.25 MiB -1 -1 -1 -1 2 0.04 -1 -1 31488 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62720 5 1 7 8 0 7 7 3 3 9 -1 auto 23.1 MiB 0.00 20 20 18 9 3 6 61.2 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.3672e-05 1.0015e-05 9.5504e-05 7.6255e-05 -1 -1 -1 -1 8 1.14286 8 1.14286 16 16 357 219 3900 3900 7855.82 872.868 6 410 1185 -1 0.734017 nan -0.734017 -0.734017 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00113495 0.00105182 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml multiconnected_lut2.blif common 0.41 vpr 61.25 MiB -1 -1 -1 -1 2 0.04 -1 -1 31500 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62716 5 1 7 8 0 7 7 3 3 9 -1 auto 23.0 MiB 0.00 20 20 18 10 3 5 61.2 MiB 0.00 0.00 0.70303 0.70303 -0.70303 -0.70303 nan 0.00 1.2977e-05 9.545e-06 9.0478e-05 7.2372e-05 -1 -1 -1 -1 9 1.28571 9 1.28571 14 14 348 226 3900 3900 7855.82 872.868 5 410 1185 -1 0.795592 nan -0.795592 -0.795592 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00108416 0.00100034 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml and_latch.blif common 0.32 vpr 61.24 MiB -1 -1 -1 -1 1 0.02 -1 -1 29396 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 3 1 5 6 1 4 5 3 3 9 -1 auto 23.0 MiB 0.00 9 9 168 56 52 60 61.2 MiB 0.00 0.00 0.274843 0.274843 -0.536407 -0.274843 0.274843 0.00 1.0032e-05 6.73e-06 0.000504352 0.000351637 -1 -1 -1 -1 6 2.00000 6 2.00000 3 3 96 70 3900 3900 7855.82 872.868 1 410 1185 -1 0.472472 0.472472 -0.743686 -0.472472 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00140513 0.00121165 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml false_path_mux.blif common 0.40 vpr 61.24 MiB -1 -1 -1 -1 1 0.04 -1 -1 31856 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 4 1 4 6 0 4 6 3 3 9 -1 auto 23.0 MiB 0.00 12 12 15 9 2 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.443777 -0.443777 nan 0.00 1.0472e-05 7.026e-06 7.4354e-05 5.5631e-05 -1 -1 -1 -1 7 1.75000 7 1.75000 37 37 921 550 3900 3900 7855.82 872.868 17 410 1185 -1 0.590194 nan -0.590194 -0.590194 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00113555 0.00100519 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_2x2.blif common 0.43 vpr 61.24 MiB -1 -1 -1 -1 1 0.04 -1 -1 31488 -1 -1 1 4 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 4 4 8 12 0 8 9 3 3 9 -1 auto 23.0 MiB 0.00 25.4184 25 459 205 182 72 61.2 MiB 0.00 0.00 0.443777 0.443777 -1.77511 -0.443777 nan 0.00 1.6665e-05 1.2986e-05 0.000936463 0.000732721 -1 -1 -1 -1 30 3.75000 30 3.75000 60 194 6902 4679 3900 3900 7855.82 872.868 14 410 1185 -1 0.641568 nan -2.42877 -0.641568 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00230765 0.00196398 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x3.blif common 0.42 vpr 60.75 MiB -1 -1 -1 -1 3 0.04 -1 -1 31996 -1 -1 3 6 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62212 6 6 28 34 0 28 15 5 5 25 clb auto 22.2 MiB 0.00 113.798 101 897 315 582 0 60.8 MiB 0.01 0.00 1.19848 1.19848 -5.42929 -1.19848 nan 0.00 4.8245e-05 4.2248e-05 0.00276575 0.00240806 -1 -1 -1 -1 216 7.71429 142 5.07143 225 865 52639 24271 23400 11700 33739.5 1349.58 16 1540 5656 -1 1.5608 nan -6.87857 -1.5608 0 0 0.00 -1 -1 60.8 MiB 0.01 0.00558769 0.00489744 60.8 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_3x4.blif common 0.43 vpr 61.16 MiB -1 -1 -1 -1 4 0.05 -1 -1 31724 -1 -1 5 7 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62624 7 8 39 47 0 39 20 5 5 25 clb auto 22.8 MiB 0.01 182.75 157 1505 581 854 70 61.2 MiB 0.01 0.00 1.48602 1.46171 -7.49701 -1.46171 nan 0.00 6.7862e-05 6.0357e-05 0.00422129 0.0037109 -1 -1 -1 -1 306 8.05263 191 5.02632 382 1594 85326 36870 23400 19500 33739.5 1349.58 20 1540 5656 -1 1.95296 nan -9.80311 -1.95296 0 0 0.00 -1 -1 61.2 MiB 0.02 0.00823245 0.00721079 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_4x4.blif common 0.46 vpr 61.04 MiB -1 -1 -1 -1 8 0.05 -1 -1 32108 -1 -1 6 8 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62508 8 8 51 59 0 51 22 5 5 25 clb auto 22.3 MiB 0.01 241.827 216 2422 1111 1249 62 61.0 MiB 0.02 0.00 2.56944 2.55768 -12.2711 -2.55768 nan 0.00 0.000100848 9.1491e-05 0.00787431 0.00701215 -1 -1 -1 -1 429 8.41177 273 5.35294 456 1956 109898 47731 23400 23400 33739.5 1349.58 19 1540 5656 -1 3.07663 nan -14.9698 -3.07663 0 0 0.00 -1 -1 61.0 MiB 0.02 0.0126832 0.0111886 61.0 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x5.blif common 0.59 vpr 62.12 MiB -1 -1 -1 -1 7 0.07 -1 -1 32076 -1 -1 11 10 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63612 10 10 95 105 0 95 31 6 6 36 clb auto 23.1 MiB 0.01 521.106 436 2719 894 1667 158 62.1 MiB 0.02 0.00 2.69967 2.49876 -17.8877 -2.49876 nan 0.00 0.000152194 0.000136121 0.00942116 0.00848113 -1 -1 -1 -1 958 10.0842 553 5.82105 1366 5389 390653 150593 165600 42900 61410.5 1705.85 27 2708 10880 -1 3.05564 nan -23.0817 -3.05564 0 0 0.01 -1 -1 62.1 MiB 0.07 0.0191649 0.0169126 62.1 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml mult_5x6.blif common 0.63 vpr 61.78 MiB -1 -1 -1 -1 8 0.07 -1 -1 32560 -1 -1 11 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 63264 11 11 94 105 0 94 33 6 6 36 clb auto 23.0 MiB 0.01 523.64 429 2321 602 1590 129 61.8 MiB 0.02 0.00 2.83651 2.73182 -20.7819 -2.73182 nan 0.00 0.000153748 0.000138299 0.00784704 0.0070657 -1 -1 -1 -1 937 9.96809 550 5.85106 1315 5495 374761 142298 165600 42900 61410.5 1705.85 27 2708 10880 -1 3.22364 nan -26.5365 -3.22364 0 0 0.01 -1 -1 61.8 MiB 0.07 0.0184494 0.0162023 61.8 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_1bit.blif common 0.45 vpr 61.24 MiB -1 -1 -1 -1 1 0.04 -1 -1 30740 -1 -1 1 3 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 3 2 5 7 0 5 6 3 3 9 -1 auto 23.0 MiB 0.00 15 15 15 10 1 4 61.2 MiB 0.00 0.00 0.443777 0.443777 -0.887553 -0.443777 nan 0.00 3.0628e-05 2.3602e-05 0.000173975 0.000140993 -1 -1 -1 -1 12 2.40000 12 2.40000 37 72 1946 1187 3900 3900 7855.82 872.868 17 410 1185 -1 0.650448 nan -1.17317 -0.650448 0 0 0.00 -1 -1 61.2 MiB 0.01 0.00192255 0.00165113 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_2bit.blif common 0.42 vpr 61.24 MiB -1 -1 -1 -1 2 0.04 -1 -1 31516 -1 -1 1 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62712 5 3 9 12 0 9 9 3 3 9 -1 auto 23.0 MiB 0.00 26 26 531 246 197 88 61.2 MiB 0.00 0.00 0.70303 0.70303 -1.84984 -0.70303 nan 0.00 1.5747e-05 1.2036e-05 0.00102622 0.000798738 -1 -1 -1 -1 26 2.88889 26 2.88889 56 109 3465 2310 3900 3900 7855.82 872.868 16 410 1185 -1 0.979605 nan -2.54604 -0.979605 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00240632 0.00203536 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_3bit.blif common 0.39 vpr 61.25 MiB -1 -1 -1 -1 3 0.04 -1 -1 31512 -1 -1 1 7 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62720 7 4 13 17 0 13 12 3 3 9 -1 auto 23.0 MiB 0.00 37 37 688 305 287 96 61.2 MiB 0.00 0.00 0.962283 0.962283 -3.07137 -0.962283 nan 0.00 2.0432e-05 1.6474e-05 0.00121032 0.000987463 -1 -1 -1 -1 42 3.23077 42 3.23077 40 74 2854 2078 3900 3900 7855.82 872.868 7 410 1185 -1 1.33139 nan -4.27551 -1.33139 0 0 0.00 -1 -1 61.2 MiB 0.00 0.00248694 0.00216601 61.2 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_4bit.blif common 0.39 vpr 61.26 MiB -1 -1 -1 -1 4 0.04 -1 -1 31516 -1 -1 1 9 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62728 9 5 17 22 0 17 15 3 3 9 -1 auto 23.0 MiB 0.00 48 48 51 24 21 6 61.3 MiB 0.00 0.00 1.22154 1.22154 -4.55216 -1.22154 nan 0.00 2.8144e-05 2.3555e-05 0.000211669 0.000188487 -1 -1 -1 -1 52 3.05882 52 3.05882 92 177 6235 4309 3900 3900 7855.82 872.868 18 410 1185 -1 1.66969 nan -6.67567 -1.66969 0 0 0.00 -1 -1 61.3 MiB 0.00 0.00206544 0.00183647 61.3 MiB -1 0.00 +k4_N8_topology-0.85sL2-0.15gL4-on-cb-off-sb_22nm_22nm_nonLR.xml rca_5bit.blif common 0.42 vpr 61.27 MiB -1 -1 -1 -1 4 0.04 -1 -1 31512 -1 -1 2 11 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 62744 11 6 24 30 0 24 19 4 4 16 clb auto 23.0 MiB 0.00 96.6496 80 1644 728 779 137 61.3 MiB 0.01 0.00 1.37337 1.33641 -6.58958 -1.33641 nan 0.00 3.8083e-05 3.0747e-05 0.00292542 0.00247373 -1 -1 -1 -1 151 6.29167 107 4.45833 172 399 18560 10271 7800 7800 17482.0 1092.63 15 852 2798 -1 1.67847 nan -8.2964 -1.67847 0 0 0.00 -1 -1 61.3 MiB 0.01 0.00512544 0.00442908 61.3 MiB -1 0.00 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt index c424228e78..264b2db6a4 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_sdc/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.30 vpr 66.07 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 67656 5 3 11 14 2 9 10 4 4 16 clb auto 27.7 MiB 0.00 22 20 370 90 177 103 66.1 MiB 0.00 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.01 2.9443e-05 2.3962e-05 0.0012498 0.00101955 -1 -1 -1 -1 8 15 3 107788 107788 4794.78 299.674 0.01 0.00228835 0.00195386 564 862 -1 24 3 14 14 524 362 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000912704 0.000837767 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.27 vpr 66.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 68036 5 3 11 14 2 9 10 4 4 16 clb auto 27.8 MiB 0.00 22 20 430 104 172 154 66.4 MiB 0.00 0.00 0.571 0.571 0 0 0.571 0.01 1.9614e-05 1.5415e-05 0.0010293 0.000819149 -1 -1 -1 -1 8 11 3 107788 107788 4794.78 299.674 0.01 0.00205952 0.00175874 564 862 -1 20 5 13 13 309 150 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.000952502 0.000872239 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.28 vpr 66.32 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 67912 5 3 11 14 2 9 10 4 4 16 clb auto 27.9 MiB 0.01 22 20 410 113 223 74 66.3 MiB 0.00 0.00 0.646297 0.645978 -2.18937 -0.645978 0.571 0.01 3.0873e-05 2.4578e-05 0.00151287 0.0011723 -1 -1 -1 -1 8 17 8 107788 107788 4794.78 299.674 0.01 0.00299477 0.00247792 564 862 -1 12 8 25 25 377 165 0.592131 0.571 -2.01022 -0.592131 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00119501 0.00106059 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.28 vpr 66.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 68036 5 3 11 14 2 9 10 4 4 16 clb auto 28.1 MiB 0.00 22 20 390 106 205 79 66.4 MiB 0.00 0.00 1.64604 1.64598 -5.31933 -1.64598 0.571 0.01 2.9203e-05 2.1796e-05 0.00119597 0.000863886 -1 -1 -1 -1 8 23 7 107788 107788 4794.78 299.674 0.01 0.00259145 0.00208601 564 862 -1 9 4 11 11 190 81 1.57153 0.571 -4.89933 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00102744 0.000926089 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.27 vpr 66.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 67784 5 3 11 14 2 9 10 4 4 16 clb auto 27.8 MiB 0.00 22 22 30 10 12 8 66.2 MiB 0.00 0.00 1.44967 1.44903 -2.90973 -1.44903 0.571 0.01 4.8819e-05 3.7e-05 0.000215878 0.000169501 -1 -1 -1 -1 8 24 5 107788 107788 4794.78 299.674 0.01 0.00143114 0.00122243 564 862 -1 19 5 18 18 404 200 1.37578 0.571 -2.70755 -1.37578 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00113405 0.00101135 - k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.27 vpr 66.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 67720 5 3 11 14 2 9 10 4 4 16 clb auto 27.7 MiB 0.00 22 20 370 95 153 122 66.1 MiB 0.00 0.00 0.146298 0.145978 0 0 0.571 0.01 3.0867e-05 2.5256e-05 0.00131289 0.00106875 -1 -1 -1 -1 8 11 2 107788 107788 4794.78 299.674 0.01 0.00229577 0.00196649 564 862 -1 17 5 13 13 264 119 0.0706414 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00109453 0.000995331 +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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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.xml multiclock.blif common_-sdc_file_sdc/samples/A.sdc 0.36 vpr 63.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65480 5 3 11 14 2 9 10 4 4 16 clb auto 25.7 MiB 0.00 22 20 810 394 244 172 63.9 MiB 0.01 0.00 0.814658 0.814658 -2.77132 -0.814658 0.571 0.00 1.7601e-05 1.363e-05 0.00153331 0.00119192 -1 -1 -1 -1 8 11 2 107788 107788 4794.78 299.674 0.02 0.00400109 0.00321511 564 862 -1 18 4 13 13 372 218 0.739641 0.571 -2.62128 -0.739641 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00109986 0.00102452 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/B.sdc 0.36 vpr 63.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65372 5 3 11 14 2 9 10 4 4 16 clb auto 25.2 MiB 0.00 22 20 870 405 235 230 63.8 MiB 0.01 0.00 0.571 0.571 0 0 0.571 0.01 3.4326e-05 2.8894e-05 0.00299359 0.00250749 -1 -1 -1 -1 8 17 4 107788 107788 4794.78 299.674 0.02 0.00564554 0.00470999 564 862 -1 17 4 12 12 252 131 0.571 0.571 0 0 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.0010696 0.00100871 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/C.sdc 0.37 vpr 63.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65484 5 3 11 14 2 9 10 4 4 16 clb auto 25.5 MiB 0.01 22 21 620 285 242 93 63.9 MiB 0.01 0.00 0.646297 0.645978 -2.18969 -0.645978 0.571 0.00 4.2355e-05 3.1354e-05 0.00242737 0.00189426 -1 -1 -1 -1 6 21 8 107788 107788 3417.33 213.583 0.01 0.00424266 0.00347322 552 802 -1 20 8 24 24 508 283 0.59309 0.571 -2.01015 -0.59309 0 0 4794.78 299.674 0.00 0.00 0.00 -1 -1 0.00 0.00123372 0.00112939 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/D.sdc 0.40 vpr 63.59 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65120 5 3 11 14 2 9 10 4 4 16 clb auto 25.0 MiB 0.01 22 20 670 310 248 112 63.6 MiB 0.01 0.00 1.64604 1.6463 -5.31901 -1.6463 0.571 0.00 1.8755e-05 1.3851e-05 0.00153551 0.00106694 -1 -1 -1 -1 8 34 15 107788 107788 4794.78 299.674 0.02 0.00503484 0.00380369 564 862 -1 24 3 10 10 284 182 1.57153 0.571 -5.24124 -1.57153 0 0 5401.54 337.596 0.00 0.00 0.00 -1 -1 0.00 0.00115813 0.00108414 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/E.sdc 0.36 vpr 63.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65212 5 3 11 14 2 9 10 4 4 16 clb auto 25.0 MiB 0.00 22 20 200 38 110 52 63.7 MiB 0.00 0.00 1.44967 1.44871 -2.90935 -1.44871 0.571 0.00 1.9133e-05 1.47e-05 0.000513478 0.000385571 -1 -1 -1 -1 6 26 6 107788 107788 3417.33 213.583 0.01 0.002546 0.00207166 552 802 -1 15 20 48 48 1206 797 1.56638 0.571 -2.99759 -1.56638 0 0 4794.78 299.674 0.00 0.01 0.00 -1 -1 0.00 0.00170034 0.00147304 +k6_N10_mem32K_40nm.xml multiclock.blif common_-sdc_file_sdc/samples/F.sdc 0.34 vpr 63.95 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 5 0 0 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65480 5 3 11 14 2 9 10 4 4 16 clb auto 25.7 MiB 0.00 22 20 530 219 169 142 63.9 MiB 0.00 0.00 0.146298 0.145978 0 0 0.571 0.00 1.818e-05 1.427e-05 0.00110386 0.000858314 -1 -1 -1 -1 6 20 4 107788 107788 3417.33 213.583 0.01 0.00244112 0.00207049 552 802 -1 17 2 11 11 260 139 0.0715255 0.571 0 0 0 0 4794.78 299.674 0.00 0.00 0.00 -1 -1 0.00 0.00141611 0.00132397 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt index 1a4fcfa6b1..328962be99 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_soft_multipliers/config/golden_results.txt @@ -1,7 +1,7 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.18 vpr 66.92 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33508 -1 -1 3 9 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 68528 9 8 75 70 1 34 20 5 5 25 clb auto 27.9 MiB 0.52 123 90 2477 1148 1302 27 66.9 MiB 0.02 0.00 2.48207 2.48207 -28.1156 -2.48207 2.48207 0.02 0.00017509 0.00015144 0.0119101 0.0103534 -1 -1 -1 -1 34 189 14 151211 75605.7 45067.1 1802.68 0.14 0.0511387 0.0425617 2028 7167 -1 146 11 105 133 3695 2011 2.64007 2.64007 -33.2822 -2.64007 0 0 54748.7 2189.95 0.00 0.01 0.01 -1 -1 0.00 0.00502557 0.00455757 13 18 19 7 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 3.06 vpr 67.09 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33980 -1 -1 2 11 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 68696 11 10 108 97 1 49 23 4 4 16 clb auto 27.9 MiB 2.50 144.497 127 1911 800 873 238 67.1 MiB 0.02 0.00 3.45122 3.45122 -42.5068 -3.45122 3.45122 0.01 0.000144339 0.000125024 0.0100987 0.00883193 -1 -1 -1 -1 34 239 30 50403.8 50403.8 21558.4 1347.40 0.08 0.0460273 0.038796 1020 3049 -1 152 10 140 181 4372 2642 3.68822 3.68822 -46.7576 -3.68822 0 0 26343.3 1646.46 0.00 0.01 0.00 -1 -1 0.00 0.00618826 0.00564489 15 27 29 8 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 5.08 vpr 67.44 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33828 -1 -1 7 13 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 69056 13 12 149 129 1 68 32 6 6 36 clb auto 28.0 MiB 4.20 259.837 197 3032 1105 1866 61 67.4 MiB 0.03 0.00 3.50789 3.50789 -52.7999 -3.50789 3.50789 0.03 0.000196508 0.000170297 0.0134802 0.0117856 -1 -1 -1 -1 52 392 44 403230 176413 110337. 3064.92 0.31 0.101779 0.0850851 4014 20275 -1 276 19 253 363 12206 5278 3.49758 3.49758 -52.8425 -3.49758 0 0 143382. 3982.83 0.00 0.01 0.02 -1 -1 0.00 0.0106156 0.0094697 25 38 42 9 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 2.95 vpr 67.93 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33628 -1 -1 7 15 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 69560 15 14 196 165 1 92 36 6 6 36 clb auto 28.5 MiB 2.00 403.804 274 3753 1426 2249 78 67.9 MiB 0.04 0.00 3.89713 3.62628 -63.9965 -3.62628 3.62628 0.03 0.000241508 0.000208616 0.0181966 0.0159188 -1 -1 -1 -1 56 442 17 403230 176413 117789. 3271.93 0.34 0.108077 0.0909094 4086 21443 -1 365 18 406 563 16464 6899 3.5903 3.5903 -62.6621 -3.5903 0 0 149557. 4154.36 0.00 0.02 0.02 -1 -1 0.00 0.0131535 0.0117499 37 51 57 11 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 5.82 vpr 68.04 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33904 -1 -1 5 17 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 69668 17 16 251 206 1 120 38 5 5 25 clb auto 28.5 MiB 4.99 489.194 407 7661 3749 3866 46 68.0 MiB 0.08 0.00 3.91442 3.88071 -74.7949 -3.88071 3.88071 0.02 0.000295654 0.00025444 0.0402952 0.0348047 -1 -1 -1 -1 50 686 48 151211 126010 61632.8 2465.31 0.18 0.1223 0.103767 2268 9834 -1 552 25 695 1245 39419 17834 4.6289 4.6289 -93.861 -4.6289 0 0 77226.2 3089.05 0.00 0.03 0.01 -1 -1 0.00 0.0205563 0.0182316 45 66 75 13 0 0 - k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 7.24 vpr 68.47 MiB 0.01 7552 -1 -1 1 0.02 -1 -1 33768 -1 -1 7 19 0 -1 success v8.0.0-14013-ge1496c441d-dirty release VTR_ASSERT_LEVEL=3 GNU 13.3.0 on Linux-6.8.0-63-generic x86_64 2025-10-06T15:51:15 srivatsan-Precision-Tower-5810 /home/alex/vtr-verilog-to-routing/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin 70112 19 18 308 249 1 134 44 6 6 36 clb auto 28.9 MiB 5.69 593.868 431 7359 3370 3953 36 68.5 MiB 0.14 0.00 4.92231 4.8546 -99.5986 -4.8546 4.8546 0.05 0.000726408 0.000636467 0.0695133 0.0609147 -1 -1 -1 -1 46 899 26 403230 176413 100559. 2793.30 0.71 0.289292 0.248411 3874 18143 -1 726 15 584 939 34653 14534 4.86806 4.86806 -109.554 -4.86806 0 0 127342. 3537.27 0.00 0.03 0.02 -1 -1 0.00 0.0184771 0.0168376 53 83 93 14 0 0 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_4x4.v common 1.18 vpr 64.36 MiB 0.01 6528 -1 -1 1 0.02 -1 -1 30180 -1 -1 3 9 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 65900 9 8 75 70 1 34 20 5 5 25 clb auto 25.6 MiB 0.52 123 86 1721 718 984 19 64.4 MiB 0.01 0.00 2.48207 2.48207 -27.4994 -2.48207 2.48207 0.01 9.1921e-05 8.2381e-05 0.00676425 0.00612616 -1 -1 -1 -1 22 218 16 151211 75605.7 31301.6 1252.07 0.09 0.0278939 0.023808 1836 4950 -1 156 13 148 191 4638 2670 3.02961 3.02961 -37.4602 -3.02961 0 0 38887.3 1555.49 0.00 0.01 0.00 -1 -1 0.00 0.00508251 0.00466024 13 18 19 7 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_5x5.v common 2.54 vpr 64.94 MiB 0.01 6528 -1 -1 1 0.02 -1 -1 29804 -1 -1 2 11 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66500 11 10 108 97 1 49 23 4 4 16 clb auto 25.6 MiB 1.84 144.497 130 2743 1201 1335 207 64.9 MiB 0.02 0.00 3.45122 3.45122 -42.5068 -3.45122 3.45122 0.01 0.000121066 0.000109738 0.011656 0.01061 -1 -1 -1 -1 36 237 30 50403.8 50403.8 22423.4 1401.47 0.11 0.0475694 0.0407175 1036 3262 -1 154 17 227 272 7473 4583 3.89677 3.89677 -47.334 -3.89677 0 0 28178.5 1761.16 0.00 0.01 0.00 -1 -1 0.00 0.00715478 0.00648125 15 27 29 8 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_6x6.v common 4.02 vpr 65.25 MiB 0.01 6528 -1 -1 1 0.02 -1 -1 29648 -1 -1 7 13 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66820 13 12 149 129 1 68 32 6 6 36 clb auto 25.6 MiB 3.11 259.837 219 3582 1605 1900 77 65.3 MiB 0.03 0.00 3.50789 3.50789 -53.6915 -3.50789 3.50789 0.02 0.000164747 0.000149868 0.0139811 0.0127937 -1 -1 -1 -1 44 489 21 403230 176413 95919.3 2664.43 0.25 0.0785124 0.0668707 3838 17701 -1 409 14 291 428 16490 6683 3.26058 3.26058 -57.9793 -3.26058 0 0 123560. 3432.22 0.00 0.01 0.01 -1 -1 0.00 0.00899905 0.00826541 25 38 42 9 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_7x7.v common 2.63 vpr 65.34 MiB 0.02 6528 -1 -1 1 0.03 -1 -1 29844 -1 -1 7 15 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 66904 15 14 196 165 1 92 36 6 6 36 clb auto 25.7 MiB 1.63 403.804 298 4461 1620 2751 90 65.3 MiB 0.03 0.00 3.89713 3.62628 -64.4028 -3.62628 3.62628 0.02 0.000204684 0.000186303 0.017602 0.0160964 -1 -1 -1 -1 46 549 17 403230 176413 100559. 2793.30 0.32 0.102879 0.0879237 3874 18143 -1 481 18 535 787 25346 10452 4.15695 4.15695 -72.4234 -4.15695 0 0 127342. 3537.27 0.00 0.02 0.01 -1 -1 0.00 0.0121106 0.0110428 37 51 57 11 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_8x8.v common 4.55 vpr 65.78 MiB 0.01 6528 -1 -1 1 0.03 -1 -1 29884 -1 -1 5 17 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67360 17 16 251 206 1 120 38 5 5 25 clb auto 26.0 MiB 3.68 489.194 409 6401 3385 2983 33 65.8 MiB 0.05 0.00 3.91442 3.82936 -73.9509 -3.82936 3.82936 0.01 0.000255037 0.000232747 0.0289425 0.0264138 -1 -1 -1 -1 48 718 39 151211 126010 59785.0 2391.40 0.14 0.0852801 0.0748877 2244 9614 -1 547 21 643 1036 31308 14160 5.66641 5.66641 -101.933 -5.66641 0 0 75076.4 3003.05 0.00 0.02 0.01 -1 -1 0.00 0.016693 0.0151857 45 66 75 13 0 0 +k6_frac_N10_4add_2chains_depop50_mem20K_22nm.xml mult_9x9.v common 5.19 vpr 66.03 MiB 0.03 6528 -1 -1 1 0.03 -1 -1 30224 -1 -1 7 19 0 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:28:24 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 67616 19 18 308 249 1 134 44 6 6 36 clb auto 26.5 MiB 3.99 593.868 445 8514 3905 4559 50 66.0 MiB 0.06 0.00 4.92231 4.8546 -99.7905 -4.8546 4.8546 0.02 0.000310446 0.000283778 0.0376577 0.0344261 -1 -1 -1 -1 58 848 35 403230 176413 123560. 3432.22 0.38 0.161142 0.140218 4154 22415 -1 727 17 568 909 32505 13088 4.94631 4.94631 -108.372 -4.94631 0 0 154963. 4304.53 0.00 0.03 0.01 -1 -1 0.00 0.0188299 0.0174182 53 83 93 14 0 0 From c00c71ea23945001d9d31b13284943d690027faa Mon Sep 17 00:00:00 2001 From: Soheil Shahrouz Date: Wed, 15 Oct 2025 12:57:11 -0400 Subject: [PATCH 17/17] Update golden results for strong_clock_aliases_set_delay --- .../strong_clock_aliases_set_delay/config/golden_results.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt index 44fa0034f9..a1a5b4ae7c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_aliases_set_delay/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 initial_placed_wirelength_est placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time initial_placed_CPD_est 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 ap_mem ap_time ap_full_legalizer_mem ap_full_legalizer_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 -timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.23 vpr 58.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-13290-g19885dbb2 release VTR_ASSERT_LEVEL=3 debug_logging GNU 11.4.0 on Linux-4.15.0-213-generic x86_64 2025-07-08T18:21:59 pt-372-11 /home/soheil/vpr_repos/vtr_flow 59704 2 2 22 24 2 4 6 4 4 16 clb auto 18.6 MiB 0.00 8 7 15 8 4 3 58.3 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.01 2.0714e-05 1.3783e-05 0.00019331 0.000157289 -1 -1 -1 -1 6 8 3 72000 36000 4025.56 251.598 0.00 0.00075902 0.000638592 660 1032 -1 7 3 5 5 233 157 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.000441175 0.000384118 +timing/k6_N10_40nm.xml clock_set_delay_aliases.blif common_-sdc_file_sdc/samples/clock_aliases/set_delay.sdc 0.31 vpr 58.85 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 2 2 -1 -1 success v8.0.0-14178-g4818739e3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 13.3.0 on Linux-6.8.0-71-generic x86_64 2025-10-15T12:13:40 betzgrp-wintermute /home/gholam39/vpr/vtr-verilog-to-routing/vtr_flow 60260 2 2 22 24 2 4 6 4 4 16 clb auto 20.3 MiB 0.00 8 6 15 6 5 4 58.8 MiB 0.00 0.00 1.297 1.297 0 0 1.297 0.01 3.4304e-05 2.866e-05 0.000249886 0.000220985 -1 -1 -1 -1 6 3 2 72000 36000 4025.56 251.598 0.01 0.00160045 0.00148064 660 1032 -1 13 4 7 7 476 362 1.297 1.297 0 0 0 0 5593.62 349.601 0.00 0.00 0.00 -1 -1 0.00 0.00156966 0.00146035