From ccdb004827d652670ea5590a599cbe11276d8b92 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 27 Jun 2024 07:14:31 -0700 Subject: [PATCH 1/7] pass actual Fc through connection blocks functions to use pin-specific fc instead of maximum fc --- vpr/src/route/rr_graph.cpp | 42 +++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index ee25b1d3531..61fa5cd396c 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -105,8 +105,10 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const const int* sets_per_seg_type); static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin_type, + const vtr::Matrix& Fc, const int seg_type_tracks, - const int Fc, + const int seg_index, + const int max_Fc, const t_physical_tile_type_ptr Type, const std::set type_layer, const bool perturb_switch_pattern, @@ -283,9 +285,10 @@ static void alloc_and_load_tile_rr_graph(RRGraphBuilder& rr_graph_builder, static float pattern_fmod(float a, float b); static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, const std::vector& pin_locations, + const vtr::Matrix& Fc, + const int seg_index, const int x_chan_width, const int y_chan_width, - const int Fc, const enum e_directionality directionality); static void load_perturbed_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, @@ -1144,7 +1147,7 @@ static void build_rr_graph(const t_graph_type graph_type, segment_inf[k].name.c_str(), Fc_out[i][j][k], Fc_in[i][j][k]); -#endif /* VERBOSE */ +#endif VTR_ASSERT_MSG(Fc_out[i][j][k] == 0 || Fc_in[i][j][k] == 0, "Pins must be inputs or outputs (i.e. can not have both non-zero Fc_out and Fc_in)"); } @@ -3259,7 +3262,7 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const } /* get pin connections to tracks of the current segment type */ - auto pin_to_seg_type_map = alloc_and_load_pin_to_seg_type(pin_type, num_seg_type_tracks, max_Fc, Type, type_layer, perturb_switch_pattern[seg_inf[iseg].seg_index], directionality); + auto pin_to_seg_type_map = alloc_and_load_pin_to_seg_type(pin_type, Fc, num_seg_type_tracks, seg_inf[iseg].seg_index, max_Fc, Type, type_layer, perturb_switch_pattern[seg_inf[iseg].seg_index], directionality); /* connections in pin_to_seg_type_map are within that seg type -- i.e. in the [0,num_seg_type_tracks-1] range. * now load up 'result' array with these connections, but offset them so they are relative to the channel @@ -3296,8 +3299,10 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const } static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin_type, + const vtr::Matrix& Fc, const int num_seg_type_tracks, - const int Fc, + const int seg_index, + const int max_Fc, const t_physical_tile_type_ptr Type, const std::set type_layer, const bool perturb_switch_pattern, @@ -3331,7 +3336,7 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin size_t(Type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] NUM_SIDES, //[0..NUM_SIDES-1] - size_t(Fc) //[0..Fc-1] + size_t(max_Fc) //[0..Fc-1] }, OPEN); //Unconnected @@ -3471,11 +3476,11 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin if (perturb_switch_pattern) { load_perturbed_connection_block_pattern(tracks_connected_to_pin, pin_ordering, - num_seg_type_tracks, num_seg_type_tracks, Fc, directionality); + num_seg_type_tracks, num_seg_type_tracks, max_Fc, directionality); } else { load_uniform_connection_block_pattern(tracks_connected_to_pin, - pin_ordering, - num_seg_type_tracks, num_seg_type_tracks, Fc, directionality); + pin_ordering, Fc, seg_index, + num_seg_type_tracks, num_seg_type_tracks, directionality); } #ifdef ENABLE_CHECK_ALL_TRACKS @@ -3620,9 +3625,10 @@ static float pattern_fmod(float a, float b) { static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, const std::vector& pin_locations, + const vtr::Matrix& Fc, + const int seg_index, const int x_chan_width, const int y_chan_width, - const int Fc, enum e_directionality directionality) { /* Loads the tracks_connected_to_pin array with an even distribution of * * switches across the tracks for each pin. For example, each pin connects * @@ -3700,7 +3706,7 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ group_size = 2; } - VTR_ASSERT((x_chan_width % group_size == 0) && (y_chan_width % group_size == 0) && (Fc % group_size == 0)); + VTR_ASSERT((x_chan_width % group_size == 0) && (y_chan_width % group_size == 0)); /* offset is used to move to a different point in the track space if it is detected that * the tracks being assigned overlap recently assigned tracks, with the goal of increasing @@ -3714,19 +3720,23 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ int width = pin_locations[i].width_offset; int height = pin_locations[i].height_offset; int layer = pin_locations[i].layer_offset; + int pin_fc = Fc[pin][seg_index]; + + VTR_ASSERT(pin_fc % group_size == 0); + VTR_LOG("pin %d, side %d, width %d, height %d, layer %d, pin_fc %d\n", pin, side, width, height, layer, pin_fc); /* Bi-directional treats each track separately, uni-directional works with pairs of tracks */ - for (int j = 0; j < (Fc / group_size); ++j) { + for (int j = 0; j < (pin_fc / group_size); ++j) { int max_chan_width = (((side == TOP) || (side == BOTTOM)) ? x_chan_width : y_chan_width); // if the number of tracks we can assign is zero break from the loop if (max_chan_width == 0) { break; } - float step_size = (float)max_chan_width / (float)(Fc * num_phys_pins); + float step_size = (float)max_chan_width / (float)(pin_fc * num_phys_pins); - VTR_ASSERT(Fc > 0); - float fc_step = (float)max_chan_width / (float)Fc; + VTR_ASSERT(pin_fc > 0); + float fc_step = (float)max_chan_width / (float)pin_fc; /* We may go outside the track ID space, because of offset, so use modulo arithmetic below. */ @@ -3753,7 +3763,7 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ int num_unassigned_tracks = 0; int num_total_tracks = 0; - for (int j2 = 0; j2 < (Fc / group_size); ++j2) { + for (int j2 = 0; j2 < (pin_fc / group_size); ++j2) { ftrack = pattern_fmod((i + offset + offset_increment) * step_size, fc_step) + (j2 * fc_step); itrack = ((int)ftrack) * group_size; From b1788cbd233801aef35708ce91c18ee10d33a0e6 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 22 Jul 2024 13:32:57 -0700 Subject: [PATCH 2/7] update load_perturbed_connection_block_pattern --- vpr/src/route/rr_graph.cpp | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 61fa5cd396c..2023d2980f7 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -295,7 +295,8 @@ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& track const std::vector& pin_locations, const int x_chan_width, const int y_chan_width, - const int Fc, + const vtr::Matrix& Fc, + const int seg_index, const enum e_directionality directionality); static std::vector alloc_and_load_perturb_opins(const t_physical_tile_type_ptr type, const vtr::Matrix& Fc_out, const int max_chan_width, const std::vector& segment_inf); @@ -3269,10 +3270,11 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const * as a whole */ for (auto type_layer_index : type_layer) { for (int ipin = 0; ipin < Type->num_pins; ipin++) { + int cur_Fc = Fc[ipin][seg_inf[iseg].seg_index]; for (int iwidth = 0; iwidth < Type->width; iwidth++) { for (int iheight = 0; iheight < Type->height; iheight++) { for (int iside = 0; iside < 4; iside++) { - for (int iconn = 0; iconn < max_Fc; iconn++) { + for (int iconn = 0; iconn < cur_Fc; iconn++) { for (auto connected_layer : get_layers_pin_is_connected_to(Type, type_layer_index, ipin)) { int relative_track_ind = pin_to_seg_type_map[ipin][iwidth][iheight][connected_layer][iside][iconn]; if (relative_track_ind != OPEN) { @@ -3476,7 +3478,7 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin if (perturb_switch_pattern) { load_perturbed_connection_block_pattern(tracks_connected_to_pin, pin_ordering, - num_seg_type_tracks, num_seg_type_tracks, max_Fc, directionality); + num_seg_type_tracks, num_seg_type_tracks, Fc, seg_index, directionality); } else { load_uniform_connection_block_pattern(tracks_connected_to_pin, pin_ordering, Fc, seg_index, @@ -3838,7 +3840,8 @@ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& track const std::vector& pin_locations, const int x_chan_width, const int y_chan_width, - const int Fc, + const vtr::Matrix& Fc, + const int seg_index, enum e_directionality directionality) { /* Loads the tracks_connected_to_pin array with an unevenly distributed * * set of switches across the channel. This is done for inputs when * @@ -3853,10 +3856,6 @@ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& track VTR_ASSERT(directionality == BI_DIRECTIONAL); - int Fc_dense = (Fc / 2) + 1; - int Fc_sparse = Fc - Fc_dense; /* Works for even or odd Fc */ - int Fc_half[2]; - int num_phys_pins = pin_locations.size(); for (int i = 0; i < num_phys_pins; ++i) { @@ -3866,8 +3865,13 @@ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& track int height = pin_locations[i].height_offset; int layer = pin_locations[i].layer_offset; + int pin_Fc = Fc[pin][seg_index]; + int Fc_dense = ( pin_Fc / 2) + 1; + int Fc_sparse = pin_Fc - Fc_dense; + int Fc_half[2]; + int max_chan_width = (((side == TOP) || (side == BOTTOM)) ? x_chan_width : y_chan_width); - float step_size = (float)max_chan_width / (float)(Fc * num_phys_pins); + float step_size = (float)max_chan_width / (float)(pin_Fc * num_phys_pins); float spacing_dense = (float)max_chan_width / (float)(2 * Fc_dense); float spacing_sparse = (float)max_chan_width / (float)(2 * Fc_sparse); From e06b192c739943e9bfba49801bbe6a815a27617b Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Tue, 23 Jul 2024 13:15:40 -0700 Subject: [PATCH 3/7] removed extra log print --- vpr/src/route/rr_graph.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 3c1b2dc6bd6..a20f5753bb6 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -3728,7 +3728,6 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ int pin_fc = Fc[pin][seg_index]; VTR_ASSERT(pin_fc % group_size == 0); - VTR_LOG("pin %d, side %d, width %d, height %d, layer %d, pin_fc %d\n", pin, side, width, height, layer, pin_fc); /* Bi-directional treats each track separately, uni-directional works with pairs of tracks */ for (int j = 0; j < (pin_fc / group_size); ++j) { From 674623e42403157713f1793b3a29913446172ba8 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Mon, 26 Aug 2024 10:24:12 -0700 Subject: [PATCH 4/7] document some functions in rr_graph.cpp --- vpr/src/route/rr_graph.cpp | 73 ++++++++++++++++++++++++++++++++------ 1 file changed, 63 insertions(+), 10 deletions(-) diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 7bbcd8a0694..faca390ff81 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -94,8 +94,25 @@ std::set get_layers_pin_is_connected_to(const t_physical_tile_type_ptr type ///@brief given a specific layer number and type, it returns layers which have same pin_index connected to the given layer std::set get_layers_connected_to_pin(const t_physical_tile_type_ptr type, int to_layer, int pin_index); +///@brief checks whether the channel width has been changed or not bool channel_widths_unchanged(const t_chan_width& current, const t_chan_width& proposed); +/** + * @brief This routine calculate pin connections to tracks for a specific type on the Fc value defined for each pin in the architecture file. + * For each type, it will loop through all segments and calculate how many connections should be made, returns the connections for all pins of that type. + * + * @param pin_type Specifies whether the routine should connect tracks to *INPUT* pins or connect *OUTPUT* pins to tracks. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). + * @param Type Physical type information, such as total number of pins, block width, block height, and etc. + * @param type_layer Layer indicies on which the physical type located. + * @param perturb_switch_pattern Specifies whether connections should be distributed unevenly across the channel or not. + * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* + * @param seg_inf Segments informations, such as length, frequency, and etc. + * @param sets_per_seg_type Number of available sets within the channel_width of each segment type + * + * @return an 5D matrix which keeps the track indicies connected to each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1]). + * + */ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const e_pin_type pin_type, const vtr::Matrix& Fc, const t_physical_tile_type_ptr Type, @@ -104,7 +121,24 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const const e_directionality directionality, const std::vector& seg_inf, const int* sets_per_seg_type); - +/** + * @brief This routine calculate pin connections to tracks for a specific type and a specific segment based on the Fc value + * defined for each pin in the architecture file. This routine is called twice for each combination of block type and segment + * type: 1) connecting tracks to input pins 2) connecting output pins to tracks. + * + * @param pin_type Specifies whether the routine should connect tracks to *INPUT* pins or connect *OUTPUT* pins to tracks. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). + * @param seg_type_tracks Number of tracks that is avaliable for the specific segment. + * @param seg_index The segment index that the function is trying to connect to pins. + * @param max_Fc Used to allocate max possible space for simplicity. + * @param Type Physical type information, such as total number of pins, block width, block height, and etc. + * @param type_layer Layer indicies on which the physical type located. + * @param perturb_switch_pattern Specifies whether connections should be distributed unevenly across the channel or not. + * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* + * + * @return an 6D matrix which keeps the track indicies connected to each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc-1]). + * + */ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin_type, const vtr::Matrix& Fc, const int seg_type_tracks, @@ -297,6 +331,20 @@ static void alloc_and_load_tile_rr_graph(RRGraphBuilder& rr_graph_builder, const int delayless_switch); static float pattern_fmod(float a, float b); + + +/** + * @brief Loads the tracks_connected_to_pin array with an even distribution of switches across the tracks for each pin. + * + * @param tracks_connected_to_pin The funtion loads up this data structure with a track index for each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc-1]]). + * @param pin_locations Physical pin informations, such as pin_index in the physical type, side, and etc. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). + * @param seg_index The segment index that the function is trying to connect to pins. + * @param x_chan_width Number of tracks in x-axis. + * @param y_chan_width Number of tracks in y-axis. + * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* + * + */ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, const std::vector& pin_locations, const vtr::Matrix& Fc, @@ -305,6 +353,18 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ const int y_chan_width, const enum e_directionality directionality); +/** + * @brief Loads the tracks_connected_to_pin array with an unevenly distributed set of switches across the channel. + * + * @param tracks_connected_to_pin The funtion loads up this data structure with a track index for each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc-1]]). + * @param pin_locations Physical pin informations, such as pin_index in the physical type, side, and etc. + * @param x_chan_width Number of tracks in x-axis. + * @param y_chan_width Number of tracks in y-axis. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). + * @param seg_index The segment index that the function is trying to connect to pins. + * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* + * + */ static void load_perturbed_connection_block_pattern(vtr::NdMatrix& tracks_connected_to_pin, const std::vector& pin_locations, const int x_chan_width, @@ -1276,8 +1336,8 @@ static void build_rr_graph(const t_graph_type graph_type, /* START IPIN MAP */ /* Create ipin map lookups */ - t_pin_to_track_lookup ipin_to_track_map_x(types.size()); /* [0..device_ctx.physical_tile_types.size()-1][0..num_pins-1][0..width][0..height][0..3][0..Fc-1] */ - t_pin_to_track_lookup ipin_to_track_map_y(types.size()); /* [0..device_ctx.physical_tile_types.size()-1][0..max_chan_width-1][0..width][0..height][0..3] */ + t_pin_to_track_lookup ipin_to_track_map_x(types.size()); /* [0..device_ctx.physical_tile_types.size()-1][0..num_pins-1][0..width-1][0..height-1][0..layers-1][0..sides-1][0..Fc-1] */ + t_pin_to_track_lookup ipin_to_track_map_y(types.size()); /* [0..device_ctx.physical_tile_types.size()-1][0..num_pins-1][0..width-1][0..height-1][0..layers-1][0..sides-1][0..Fc-1] */ t_track_to_pin_lookup track_to_pin_lookup_x(types.size()); t_track_to_pin_lookup track_to_pin_lookup_y(types.size()); @@ -3339,13 +3399,6 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin * If pin ipin on side iside does not exist or is of the wrong type, * tracks_connected_to_pin[ipin][iside][0] = OPEN. */ - /* AA: I think we're currently not doing anything with the ability to specify different Fc values - * for each segment. Cause we're passing in max_Fc into this function by finding the max_Fc for that - * segment type by going through Fc[ipin][iseg] (this is a matrix for each type btw, not the overall - * Fc[itype][ipin][iseg] matrix). Probably should update this to allow finer control over cb along with - * allowing different specification of the segment parallel_axis. - */ - auto& grid = g_vpr_ctx.device().grid; if (Type->num_pins < 1) { From f011e4b055a3d9a702947b4eaa683b23eca36780 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 29 Aug 2024 10:18:34 -0400 Subject: [PATCH 5/7] updated golden results --- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../config/golden_results.txt | 60 +- .../config/golden_results.txt | 38 +- .../multless_consts/config/golden_results.txt | 2048 ++++++++--------- .../config/golden_results.txt | 62 +- .../config/golden_results.txt | 38 +- .../config/golden_results.txt | 38 +- .../config/golden_results.txt | 4 +- 8 files changed, 2168 insertions(+), 2168 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt index 6762ea6e2d5..33e7ea1cf0c 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 14.99 vpr 63.93 MiB -1 -1 0.81 21584 14 0.83 -1 -1 37040 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 25.3 MiB 1.14 1316 5599 1118 4072 409 63.9 MiB 0.07 0.00 8.11929 -167.236 -8.11929 8.11929 2.04 0.000250645 0.0002076 0.00930375 0.00788038 36 3168 18 6.55708e+06 325485 612192. 2118.31 4.32 0.254613 0.243725 22750 144809 -1 2907 16 1166 3648 221231 48915 6.88996 6.88996 -156.901 -6.88996 0 0 782063. 2706.10 0.43 0.06 0.14 -1 -1 0.43 0.0252893 0.0199655 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 16.05 vpr 64.01 MiB -1 -1 0.59 22040 14 1.39 -1 -1 36700 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1284 6813 1396 4664 753 64.0 MiB 0.15 0.00 8.17826 -159.503 -8.17826 8.17826 2.14 0.000229998 0.000188138 0.0116499 0.00989239 28 3899 33 6.55708e+06 373705 500653. 1732.36 4.58 0.206682 0.198006 21310 115450 -1 3202 29 1492 4434 488528 184977 7.05196 7.05196 -154.725 -7.05196 0 0 612192. 2118.31 0.28 0.13 0.10 -1 -1 0.28 0.0244321 0.0218532 184 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 16.93 vpr 64.02 MiB -1 -1 0.54 21432 11 0.75 -1 -1 36740 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 25.3 MiB 1.75 1318 12150 2688 7851 1611 64.0 MiB 0.15 0.00 7.09041 -141.994 -7.09041 7.09041 2.99 0.00021919 0.000176129 0.0170755 0.0142001 36 3257 49 6.55708e+06 313430 612192. 2118.31 5.15 0.161418 0.14644 22750 144809 -1 2763 18 1188 4033 209919 48995 6.21958 6.21958 -137.181 -6.21958 0 0 782063. 2706.10 0.43 0.07 0.17 -1 -1 0.43 0.0171308 0.015608 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 17.37 vpr 63.94 MiB -1 -1 0.53 21584 12 1.11 -1 -1 36740 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 25.3 MiB 2.06 1291 8659 1933 5978 748 63.9 MiB 0.15 0.00 7.59163 -142.516 -7.59163 7.59163 2.61 0.000237955 0.000194649 0.0135612 0.0113422 34 3427 47 6.55708e+06 361650 585099. 2024.56 4.21 0.141263 0.117775 22462 138074 -1 2944 20 1447 4783 267879 64966 6.45858 6.45858 -135.37 -6.45858 0 0 742403. 2568.87 0.44 0.10 0.14 -1 -1 0.44 0.0354681 0.0336491 190 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 16.06 vpr 64.21 MiB -1 -1 0.63 21736 13 0.91 -1 -1 36588 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1517 10247 2681 6332 1234 64.2 MiB 0.17 0.00 7.78538 -167.201 -7.78538 7.78538 2.41 0.000280345 0.0002255 0.121306 0.0142674 30 3963 42 6.55708e+06 373705 526063. 1820.29 4.45 0.176265 0.0622064 21886 126133 -1 3369 18 1586 4655 233556 54083 6.7183 6.7183 -159.433 -6.7183 0 0 666494. 2306.21 0.60 0.10 0.13 -1 -1 0.60 0.0196487 0.0179784 210 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 23.37 vpr 64.00 MiB -1 -1 0.85 21432 13 1.02 -1 -1 36540 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 25.3 MiB 0.92 1424 8199 1838 5705 656 64.0 MiB 0.19 0.00 7.59163 -154.292 -7.59163 7.59163 2.57 0.000298971 0.000253415 0.125279 0.12332 30 3692 44 6.55708e+06 385760 526063. 1820.29 12.37 0.530437 0.509033 21886 126133 -1 2951 17 1311 4081 200727 47055 6.4805 6.4805 -147.355 -6.4805 0 0 666494. 2306.21 0.25 0.05 0.08 -1 -1 0.25 0.0152681 0.0137409 198 198 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 15.87 vpr 63.65 MiB -1 -1 0.70 21432 12 1.08 -1 -1 36220 -1 -1 27 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1035 6512 1527 4332 653 63.6 MiB 0.14 0.00 7.17186 -130.596 -7.17186 7.17186 2.48 9.2588e-05 7.3799e-05 0.0053792 0.00449752 28 2878 33 6.55708e+06 325485 500653. 1732.36 4.45 0.0773257 0.0708081 21310 115450 -1 2508 16 1094 2903 172289 39877 6.43104 6.43104 -125.532 -6.43104 0 0 612192. 2118.31 0.72 0.08 0.26 -1 -1 0.72 0.0128645 0.0117338 152 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 19.05 vpr 63.57 MiB -1 -1 0.61 21584 12 0.65 -1 -1 36356 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65096 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1249 5107 1019 3661 427 63.6 MiB 0.09 0.00 6.39885 -135.828 -6.39885 6.39885 2.22 0.000195832 0.00015921 0.00763114 0.00638149 36 2917 29 6.55708e+06 265210 612192. 2118.31 9.17 0.46378 0.454104 22750 144809 -1 2534 14 1014 3099 164622 37748 5.56006 5.56006 -128.182 -5.56006 0 0 782063. 2706.10 0.65 0.07 0.18 -1 -1 0.65 0.0374872 0.03645 140 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 16.23 vpr 63.67 MiB -1 -1 0.72 21280 12 0.46 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 0.94 1208 12167 3615 7245 1307 63.7 MiB 0.21 0.00 6.4388 -137.229 -6.4388 6.4388 2.57 0.000220228 0.000181404 0.168754 0.166189 28 3215 28 6.55708e+06 313430 500653. 1732.36 4.92 0.380326 0.373049 21310 115450 -1 2672 18 1117 2854 165121 38557 5.75926 5.75926 -133.58 -5.75926 0 0 612192. 2118.31 0.91 0.14 0.23 -1 -1 0.91 0.0143963 0.0131338 150 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 17.42 vpr 63.75 MiB -1 -1 0.69 21432 13 0.63 -1 -1 36588 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 1.05 1179 13949 3758 7924 2267 63.8 MiB 0.25 0.00 7.37832 -161.437 -7.37832 7.37832 2.38 9.599e-05 7.6318e-05 0.119345 0.116725 28 3430 36 6.55708e+06 301375 500653. 1732.36 4.74 0.293365 0.285342 21310 115450 -1 2902 18 1151 3063 181567 42392 6.49978 6.49978 -160.111 -6.49978 0 0 612192. 2118.31 0.68 0.11 0.16 -1 -1 0.68 0.0152348 0.0138431 157 156 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 16.24 vpr 63.22 MiB -1 -1 0.59 21432 12 0.52 -1 -1 36400 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 24.9 MiB 0.81 981 5378 1128 4037 213 63.2 MiB 0.21 0.00 7.10558 -136.499 -7.10558 7.10558 2.45 0.000172321 0.000139139 0.181602 0.180431 28 2857 37 6.55708e+06 289320 500653. 1732.36 4.93 0.400055 0.3933 21310 115450 -1 2456 20 1059 3011 230424 69009 6.18298 6.18298 -135.053 -6.18298 0 0 612192. 2118.31 0.71 0.06 0.08 -1 -1 0.71 0.0108761 0.0096872 132 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 15.76 vpr 63.22 MiB -1 -1 0.79 21584 12 0.40 -1 -1 36532 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64740 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 24.9 MiB 0.88 1197 6890 1537 4796 557 63.2 MiB 0.07 0.00 6.77748 -151.802 -6.77748 6.77748 2.62 0.000185316 0.000149828 0.041666 0.0399195 28 3023 34 6.55708e+06 265210 500653. 1732.36 4.20 0.0762246 0.0698229 21310 115450 -1 2655 25 1046 2873 228066 76603 6.12952 6.12952 -149.175 -6.12952 0 0 612192. 2118.31 0.98 0.18 0.28 -1 -1 0.98 0.0227078 0.0210598 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 17.87 vpr 63.82 MiB -1 -1 0.51 21584 13 1.06 -1 -1 36496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 25.2 MiB 0.88 1356 7123 1389 5311 423 63.8 MiB 0.07 0.00 8.23449 -171.323 -8.23449 8.23449 2.35 0.000243511 0.000198708 0.0359604 0.0342467 28 3890 40 6.55708e+06 361650 500653. 1732.36 5.65 0.205475 0.196524 21310 115450 -1 3255 17 1399 4014 246791 56259 6.96836 6.96836 -162.616 -6.96836 0 0 612192. 2118.31 0.84 0.22 0.12 -1 -1 0.84 0.0189513 0.0172631 191 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 29.78 vpr 64.23 MiB -1 -1 0.62 21888 14 1.04 -1 -1 36524 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1483 9892 2515 6721 656 64.2 MiB 0.32 0.00 8.67238 -180.492 -8.67238 8.67238 2.33 0.000277293 0.000230932 0.132532 0.0125186 28 4160 43 6.55708e+06 361650 500653. 1732.36 18.60 0.399221 0.261397 21310 115450 -1 3424 19 1558 4418 249183 58613 7.71769 7.71769 -175.116 -7.71769 0 0 612192. 2118.31 0.27 0.06 0.08 -1 -1 0.27 0.0193934 0.0176474 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 17.84 vpr 63.53 MiB -1 -1 0.42 21280 11 0.77 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 25.0 MiB 0.88 1052 8473 2221 5229 1023 63.5 MiB 0.24 0.00 6.75495 -130.804 -6.75495 6.75495 2.09 0.000186347 0.000143367 0.0568755 0.054588 26 3163 38 6.55708e+06 325485 477104. 1650.88 7.03 0.196024 0.090564 21022 109990 -1 2641 18 1106 3044 195220 44709 5.89878 5.89878 -129.109 -5.89878 0 0 585099. 2024.56 0.83 0.14 0.30 -1 -1 0.83 0.142459 0.141024 147 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 24.43 vpr 64.20 MiB -1 -1 0.75 22040 12 0.90 -1 -1 36384 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 25.5 MiB 1.42 1418 15859 4433 8623 2803 64.2 MiB 0.19 0.00 7.2388 -152.411 -7.2388 7.2388 2.44 0.000246247 0.000201596 0.0224514 0.0186579 38 3937 42 6.55708e+06 397815 638502. 2209.35 11.61 0.490081 0.47489 23326 155178 -1 3172 19 1543 5081 250926 58666 6.31284 6.31284 -144.952 -6.31284 0 0 851065. 2944.86 0.84 0.15 0.22 -1 -1 0.84 0.061565 0.0599219 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 14.97 vpr 63.89 MiB -1 -1 0.59 21736 14 0.65 -1 -1 36480 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 25.2 MiB 1.00 1479 5553 1093 3977 483 63.9 MiB 0.05 0.00 7.46703 -157.396 -7.46703 7.46703 2.16 0.000215532 0.000174512 0.00882704 0.0074498 30 3622 19 6.55708e+06 349595 526063. 1820.29 3.64 0.0545283 0.0418286 21886 126133 -1 3092 20 1468 4351 216807 50395 6.51004 6.51004 -150.243 -6.51004 0 0 666494. 2306.21 0.80 0.15 0.48 -1 -1 0.80 0.0171737 0.0155255 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 14.91 vpr 63.70 MiB -1 -1 0.51 21280 12 0.63 -1 -1 36152 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 24.9 MiB 1.04 1106 10647 2481 6612 1554 63.7 MiB 0.12 0.00 7.21601 -163.068 -7.21601 7.21601 2.54 0.000187149 0.000150026 0.0132073 0.0108813 30 2675 16 6.55708e+06 277265 526063. 1820.29 2.51 0.271777 0.26609 21886 126133 -1 2211 14 913 2619 128595 30382 6.0827 6.0827 -149.905 -6.0827 0 0 666494. 2306.21 0.86 0.09 0.46 -1 -1 0.86 0.0708267 0.0698649 140 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 13.04 vpr 63.02 MiB -1 -1 0.31 21128 10 0.42 -1 -1 36008 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64532 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 24.4 MiB 0.51 832 5390 1191 3544 655 63.0 MiB 0.17 0.00 5.518 -123.291 -5.518 5.518 2.63 0.000152041 0.000120499 0.00890047 0.00777637 26 2051 19 6.55708e+06 192880 477104. 1650.88 2.88 0.109942 0.0347068 21022 109990 -1 1867 14 674 1612 92831 22529 4.88266 4.88266 -120.898 -4.88266 0 0 585099. 2024.56 0.73 0.06 0.29 -1 -1 0.73 0.0398073 0.038899 91 87 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 14.37 vpr 63.63 MiB -1 -1 0.59 21432 13 0.45 -1 -1 36228 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1110 11991 2880 6757 2354 63.6 MiB 0.09 0.00 6.78754 -145.779 -6.78754 6.78754 2.18 0.000196194 0.000160243 0.0160642 0.0133819 30 2893 20 6.55708e+06 289320 526063. 1820.29 2.61 0.275191 0.26788 21886 126133 -1 2396 23 1175 3120 155208 36586 6.34238 6.34238 -146.063 -6.34238 0 0 666494. 2306.21 0.86 0.33 0.20 -1 -1 0.86 0.224556 0.222885 144 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 17.87 vpr 64.18 MiB -1 -1 0.80 21736 13 0.98 -1 -1 37016 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1342 7223 1422 5428 373 64.2 MiB 0.16 0.00 8.47343 -161.189 -8.47343 8.47343 2.81 0.000250521 0.000205034 0.128684 0.126853 28 3766 23 6.55708e+06 373705 500653. 1732.36 4.48 0.405878 0.398506 21310 115450 -1 3211 18 1501 4368 238128 57322 7.45116 7.45116 -159.426 -7.45116 0 0 612192. 2118.31 0.85 0.06 0.26 -1 -1 0.85 0.0183187 0.0167523 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 20.39 vpr 64.12 MiB -1 -1 0.63 21888 13 1.14 -1 -1 36612 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1497 6415 1520 4239 656 64.1 MiB 0.07 0.00 7.98903 -167.855 -7.98903 7.98903 2.04 0.000323605 0.000262002 0.0112534 0.00944675 40 3422 18 6.55708e+06 325485 666494. 2306.21 7.61 0.198638 0.165212 23614 160646 -1 3409 19 1476 4945 367187 102218 6.7993 6.7993 -155.211 -6.7993 0 0 872365. 3018.56 0.99 0.35 0.29 -1 -1 0.99 0.156283 0.154534 194 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 14.77 vpr 62.78 MiB -1 -1 0.49 20824 9 0.54 -1 -1 36212 -1 -1 24 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64284 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 24.2 MiB 0.79 608 5066 1233 3547 286 62.8 MiB 0.02 0.00 4.88957 -92.6709 -4.88957 4.88957 2.35 0.000133007 9.854e-05 0.00499856 0.00407266 26 1805 25 6.55708e+06 289320 477104. 1650.88 3.97 0.0276024 0.0233125 21022 109990 -1 1575 17 648 1573 109617 25292 4.37994 4.37994 -93.4687 -4.37994 0 0 585099. 2024.56 0.70 0.27 0.47 -1 -1 0.70 0.00860853 0.00762772 87 76 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 16.99 vpr 63.90 MiB -1 -1 0.72 21736 13 0.87 -1 -1 36664 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 25.3 MiB 0.90 1399 12365 2949 7626 1790 63.9 MiB 0.16 0.00 7.71183 -153.087 -7.71183 7.71183 2.32 0.000240156 0.000189192 0.0726536 0.0692838 30 3944 35 6.55708e+06 301375 526063. 1820.29 5.68 0.122996 0.112997 21886 126133 -1 3008 16 1345 4034 208784 46996 6.6837 6.6837 -146.667 -6.6837 0 0 666494. 2306.21 0.67 0.21 0.25 -1 -1 0.67 0.0656513 0.0642845 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 15.13 vpr 62.72 MiB -1 -1 0.42 20976 8 0.55 -1 -1 36284 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64228 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 24.3 MiB 0.38 748 11432 3918 5733 1781 62.7 MiB 0.14 0.00 4.04251 -94.2802 -4.04251 4.04251 2.74 5.5568e-05 4.227e-05 0.00616164 0.00489562 26 1864 42 6.55708e+06 192880 477104. 1650.88 3.68 0.184232 0.178598 21022 109990 -1 1673 21 698 1622 148867 52760 3.61128 3.61128 -96.2364 -3.61128 0 0 585099. 2024.56 0.84 0.17 0.29 -1 -1 0.84 0.00892278 0.00792332 77 60 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 20.32 vpr 63.86 MiB -1 -1 0.41 21432 15 0.78 -1 -1 36360 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 25.2 MiB 1.11 1245 4853 801 3926 126 63.9 MiB 0.21 0.00 8.34392 -162.215 -8.34392 8.34392 2.94 0.000228798 0.000182974 0.00810016 0.00680192 36 3046 29 6.55708e+06 337540 612192. 2118.31 8.11 0.292767 0.191697 22750 144809 -1 2703 17 1198 3396 181585 42343 7.3199 7.3199 -156.187 -7.3199 0 0 782063. 2706.10 0.80 0.26 0.22 -1 -1 0.80 0.143782 0.142284 165 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 18.30 vpr 63.91 MiB -1 -1 0.47 21736 13 0.83 -1 -1 36524 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 25.2 MiB 1.06 1269 7326 1600 4999 727 63.9 MiB 0.12 0.00 6.99575 -156.984 -6.99575 6.99575 2.56 0.000272806 0.000225815 0.0536456 0.0516748 38 2907 28 6.55708e+06 313430 638502. 2209.35 5.81 0.438504 0.360134 23326 155178 -1 2573 15 1095 3179 157613 36582 6.05878 6.05878 -145.261 -6.05878 0 0 851065. 2944.86 1.10 0.39 0.42 -1 -1 1.10 0.0152471 0.0136767 168 166 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 17.94 vpr 64.05 MiB -1 -1 0.59 21736 13 0.92 -1 -1 36404 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 25.3 MiB 0.97 1254 7023 1455 4777 791 64.1 MiB 0.12 0.00 7.90752 -158.46 -7.90752 7.90752 2.44 0.00024355 0.000200794 0.0840947 0.0823705 28 3963 35 6.55708e+06 349595 500653. 1732.36 5.47 0.278187 0.270082 21310 115450 -1 3108 24 1793 5650 321202 75149 6.97296 6.97296 -156.634 -6.97296 0 0 612192. 2118.31 0.90 0.16 0.27 -1 -1 0.90 0.0206062 0.0184945 187 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 23.86 vpr 63.64 MiB -1 -1 0.94 21432 12 0.59 -1 -1 36216 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 24.9 MiB 0.86 1268 6039 1228 4546 265 63.6 MiB 0.05 0.00 6.67895 -148.946 -6.67895 6.67895 2.35 0.000190361 0.000155114 0.0240746 0.0226558 34 3542 37 6.55708e+06 277265 585099. 2024.56 12.51 0.114243 0.103952 22462 138074 -1 2861 18 1194 3516 235049 51260 5.84732 5.84732 -144.45 -5.84732 0 0 742403. 2568.87 0.86 0.09 0.44 -1 -1 0.86 0.0146786 0.0133221 147 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 15.82 vpr 63.39 MiB -1 -1 0.46 21280 11 0.52 -1 -1 36216 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64916 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.59 950 9199 2047 6588 564 63.4 MiB 0.30 0.00 6.46258 -131.985 -6.46258 6.46258 2.18 0.000175295 0.000140354 0.236808 0.234731 26 2917 23 6.55708e+06 277265 477104. 1650.88 5.71 0.338338 0.331592 21022 109990 -1 2253 16 947 2456 142297 33659 5.84932 5.84932 -128.893 -5.84932 0 0 585099. 2024.56 0.73 0.08 0.32 -1 -1 0.73 0.00708358 0.00648819 131 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 17.35 vpr 63.62 MiB -1 -1 0.58 21584 11 0.74 -1 -1 36388 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1027 5548 1148 3763 637 63.6 MiB 0.04 0.00 6.55329 -127.208 -6.55329 6.55329 2.60 0.000191834 0.000156447 0.00804838 0.00670483 24 3402 39 6.55708e+06 337540 448715. 1552.65 4.50 0.0818455 0.0748876 20734 103517 -1 2645 17 1143 3034 196743 45248 6.18298 6.18298 -132.987 -6.18298 0 0 554710. 1919.41 0.50 0.17 0.50 -1 -1 0.50 0.00923821 0.0083866 150 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 14.71 vpr 63.95 MiB -1 -1 0.77 21280 12 0.95 -1 -1 36912 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 25.2 MiB 0.87 1316 8331 2003 5453 875 64.0 MiB 0.25 0.00 7.36014 -161.452 -7.36014 7.36014 1.87 0.000225881 0.000179942 0.0117248 0.00968874 28 3531 24 6.55708e+06 313430 500653. 1732.36 3.73 0.100884 0.0927577 21310 115450 -1 3128 17 1351 3514 217723 49912 6.51204 6.51204 -165.193 -6.51204 0 0 612192. 2118.31 0.62 0.31 0.18 -1 -1 0.62 0.22437 0.223004 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 16.32 vpr 63.64 MiB -1 -1 0.61 21280 12 0.81 -1 -1 36220 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 24.9 MiB 2.05 1054 7268 1685 4837 746 63.6 MiB 0.11 0.00 7.17381 -146.631 -7.17381 7.17381 2.27 0.000214669 0.000167288 0.0102319 0.00840821 28 2898 38 6.55708e+06 277265 500653. 1732.36 4.27 0.0536111 0.0458587 21310 115450 -1 2411 16 1060 2835 167693 41951 6.1239 6.1239 -140.345 -6.1239 0 0 612192. 2118.31 0.72 0.10 0.15 -1 -1 0.72 0.0917908 0.0911649 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 14.96 vpr 63.23 MiB -1 -1 0.67 21432 10 0.58 -1 -1 36280 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64748 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 24.7 MiB 0.75 1026 7463 1753 4811 899 63.2 MiB 0.08 0.00 5.795 -123.2 -5.795 5.795 2.57 0.000183162 0.000148206 0.0104414 0.00867176 28 2799 27 6.55708e+06 265210 500653. 1732.36 4.49 0.343749 0.337303 21310 115450 -1 2318 15 862 2491 156851 35739 5.15966 5.15966 -121.068 -5.15966 0 0 612192. 2118.31 0.79 0.11 0.17 -1 -1 0.79 0.0102541 0.00927236 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 17.41 vpr 64.05 MiB -1 -1 0.82 22192 13 0.90 -1 -1 36856 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1543 8303 1822 5923 558 64.1 MiB 0.24 0.00 7.75344 -163.706 -7.75344 7.75344 2.25 0.000265666 0.000212728 0.132232 0.130695 30 3739 28 6.55708e+06 373705 526063. 1820.29 5.42 0.498812 0.491204 21886 126133 -1 3152 19 1483 4706 232308 53814 6.7595 6.7595 -157.725 -6.7595 0 0 666494. 2306.21 0.78 0.29 0.28 -1 -1 0.78 0.0205875 0.0187715 221 221 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 20.13 vpr 64.11 MiB -1 -1 0.56 22192 14 1.03 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 25.3 MiB 1.50 1334 6095 1239 4218 638 64.1 MiB 0.07 0.00 7.39355 -163.567 -7.39355 7.39355 2.47 0.000234887 0.000189243 0.0104702 0.00869405 36 3537 22 6.55708e+06 337540 612192. 2118.31 6.93 0.25808 0.246451 22750 144809 -1 3005 17 1412 4093 215219 50717 6.65518 6.65518 -154.201 -6.65518 0 0 782063. 2706.10 1.21 0.29 0.23 -1 -1 1.21 0.0526924 0.0510832 191 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 14.55 vpr 63.66 MiB -1 -1 0.50 21584 12 0.28 -1 -1 36256 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 25.0 MiB 0.59 1163 7958 1799 5552 607 63.7 MiB 0.02 0.00 7.47368 -147.272 -7.47368 7.47368 2.74 9.2641e-05 7.5569e-05 0.00750833 0.00669275 30 2894 20 6.55708e+06 349595 526063. 1820.29 3.31 0.038813 0.0338137 21886 126133 -1 2412 14 945 2660 131405 30625 6.4819 6.4819 -139.307 -6.4819 0 0 666494. 2306.21 0.88 0.15 0.16 -1 -1 0.88 0.0119178 0.0108661 156 150 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 15.73 vpr 63.97 MiB -1 -1 0.52 22040 12 0.79 -1 -1 36540 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1468 11922 3374 7097 1451 64.0 MiB 0.15 0.00 7.8013 -160.233 -7.8013 7.8013 2.45 0.000122797 9.9447e-05 0.0095185 0.00773894 30 3747 34 6.55708e+06 397815 526063. 1820.29 3.74 0.064967 0.0565504 21886 126133 -1 3088 18 1392 3987 196092 45720 6.7601 6.7601 -154.181 -6.7601 0 0 666494. 2306.21 0.88 0.22 0.33 -1 -1 0.88 0.0714129 0.0698807 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 16.46 vpr 64.17 MiB -1 -1 0.67 22192 14 1.41 -1 -1 36384 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 25.5 MiB 1.02 1386 14996 4276 8243 2477 64.2 MiB 0.18 0.00 8.29295 -162.632 -8.29295 8.29295 1.99 0.000266032 0.000221603 0.0212762 0.0174012 30 3602 23 6.55708e+06 349595 526063. 1820.29 4.52 0.175185 0.165434 21886 126133 -1 2932 17 1464 4453 204275 49023 7.4421 7.4421 -155.552 -7.4421 0 0 666494. 2306.21 1.05 0.03 0.67 -1 -1 1.05 0.00948041 0.00856926 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 19.06 vpr 63.71 MiB -1 -1 0.83 22040 13 1.12 -1 -1 36368 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 25.2 MiB 1.02 1440 7639 1723 5234 682 63.7 MiB 0.23 0.00 7.87383 -161.518 -7.87383 7.87383 2.54 0.000226965 0.000177067 0.0506055 0.0484879 36 3587 30 6.55708e+06 337540 612192. 2118.31 6.56 0.335546 0.323666 22750 144809 -1 3109 20 1413 4024 228012 52562 6.82884 6.82884 -152.617 -6.82884 0 0 782063. 2706.10 0.73 0.31 0.34 -1 -1 0.73 0.0184968 0.0167916 185 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 17.21 vpr 63.46 MiB -1 -1 0.76 21584 13 0.62 -1 -1 36512 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64980 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.9 MiB 1.62 1318 11375 3119 6567 1689 63.5 MiB 0.18 0.00 7.15329 -140.404 -7.15329 7.15329 2.07 0.000208219 0.00016891 0.069416 0.0667563 30 3610 35 6.55708e+06 313430 526063. 1820.29 5.92 0.118316 0.108947 21886 126133 -1 2841 17 1212 4040 206173 47346 6.10964 6.10964 -133.356 -6.10964 0 0 666494. 2306.21 0.82 0.14 0.24 -1 -1 0.82 0.016796 0.0154272 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 14.96 vpr 63.80 MiB -1 -1 0.64 21736 12 0.51 -1 -1 36504 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65328 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1298 13348 3331 7818 2199 63.8 MiB 0.38 0.00 7.05352 -145.133 -7.05352 7.05352 2.61 9.3972e-05 7.6073e-05 0.225936 0.223059 30 2991 25 6.55708e+06 289320 526063. 1820.29 3.09 0.278448 0.2707 21886 126133 -1 2438 15 1115 3199 150136 35932 6.21758 6.21758 -138.799 -6.21758 0 0 666494. 2306.21 1.08 0.02 0.43 -1 -1 1.08 0.00859725 0.00797514 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 31.49 vpr 64.26 MiB -1 -1 0.57 22648 14 1.69 -1 -1 37236 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 25.8 MiB 1.84 1672 6791 1273 5168 350 64.3 MiB 0.10 0.00 8.30332 -177.675 -8.30332 8.30332 2.29 0.000257115 0.000209385 0.0605124 0.0586785 36 4717 39 6.55708e+06 373705 612192. 2118.31 17.89 0.150156 0.13635 22750 144809 -1 3779 17 1578 5239 295382 66337 6.80696 6.80696 -165.263 -6.80696 0 0 782063. 2706.10 1.14 0.18 0.49 -1 -1 1.14 0.0681389 0.0664953 230 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 16.21 vpr 63.78 MiB -1 -1 0.36 21432 11 0.56 -1 -1 36288 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 25.0 MiB 1.07 1193 12761 3444 7164 2153 63.8 MiB 0.06 0.00 6.7976 -143.12 -6.7976 6.7976 2.55 0.000214399 0.000174452 0.0168284 0.0137851 30 3532 31 6.55708e+06 313430 526063. 1820.29 4.66 0.0530741 0.0450625 21886 126133 -1 2773 16 1151 3356 185089 44645 6.14118 6.14118 -140.277 -6.14118 0 0 666494. 2306.21 1.17 0.24 0.21 -1 -1 1.17 0.218687 0.218009 163 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 29.73 vpr 64.07 MiB -1 -1 0.67 21584 13 1.18 -1 -1 37116 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 25.3 MiB 1.12 1353 4987 879 3661 447 64.1 MiB 0.20 0.00 8.21906 -157.673 -8.21906 8.21906 2.60 0.000250076 0.000208563 0.00876377 0.00744684 30 3230 17 6.55708e+06 337540 526063. 1820.29 16.21 0.772674 0.759543 21886 126133 -1 2967 17 1184 3879 195213 44958 7.17156 7.17156 -150.888 -7.17156 0 0 666494. 2306.21 1.14 0.19 0.24 -1 -1 1.14 0.0171481 0.0156243 193 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 34.50 vpr 64.04 MiB -1 -1 0.55 21736 12 0.78 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 25.5 MiB 1.50 1498 9753 2481 6035 1237 64.0 MiB 0.13 0.00 7.14558 -152.066 -7.14558 7.14558 2.43 0.000231845 0.00018863 0.0144424 0.0120127 38 3600 24 6.55708e+06 349595 638502. 2209.35 22.01 0.256602 0.237007 23326 155178 -1 3037 27 1318 4614 456379 202726 6.43304 6.43304 -143.219 -6.43304 0 0 851065. 2944.86 0.97 0.35 0.25 -1 -1 0.97 0.056061 0.0540156 210 209 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 19.32 vpr 64.02 MiB -1 -1 0.71 21432 13 0.86 -1 -1 36500 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 25.3 MiB 0.89 1297 6813 1586 4608 619 64.0 MiB 0.09 0.00 7.48135 -156.262 -7.48135 7.48135 2.51 0.000234673 0.000194611 0.0106816 0.00890808 28 3823 45 6.55708e+06 349595 500653. 1732.36 6.71 0.0599986 0.051646 21310 115450 -1 3148 50 2968 10537 948366 364515 6.70864 6.70864 -156.965 -6.70864 0 0 612192. 2118.31 1.16 0.62 0.19 -1 -1 1.16 0.222713 0.219997 183 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 17.04 vpr 63.94 MiB -1 -1 0.79 21736 13 0.81 -1 -1 36676 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 25.2 MiB 1.09 1336 8733 2203 5909 621 63.9 MiB 0.17 0.00 7.1624 -156.518 -7.1624 7.1624 2.75 0.00023066 0.000188295 0.0131387 0.0109622 30 3329 42 6.55708e+06 313430 526063. 1820.29 4.71 0.202045 0.193331 21886 126133 -1 2751 17 1169 3376 161624 38182 6.13918 6.13918 -146.674 -6.13918 0 0 666494. 2306.21 0.64 0.19 0.37 -1 -1 0.64 0.162788 0.161418 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 24.77 vpr 64.28 MiB -1 -1 1.07 21584 12 0.81 -1 -1 36388 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 25.6 MiB 1.36 1360 10531 2375 7022 1134 64.3 MiB 0.20 0.00 7.39995 -157.446 -7.39995 7.39995 2.36 0.000239352 0.000191892 0.0797961 0.0770977 34 3908 49 6.55708e+06 361650 585099. 2024.56 10.61 0.198538 0.184351 22462 138074 -1 3165 29 1382 4606 460541 182677 6.65918 6.65918 -152.88 -6.65918 0 0 742403. 2568.87 1.20 0.47 0.24 -1 -1 1.20 0.133076 0.130756 197 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 22.30 vpr 64.08 MiB -1 -1 0.74 22040 13 0.93 -1 -1 37212 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65620 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 25.3 MiB 1.31 1514 8087 1653 5822 612 64.1 MiB 0.27 0.00 7.8424 -163.45 -7.8424 7.8424 2.74 0.000264498 0.000217875 0.0132645 0.0110633 36 3909 42 6.55708e+06 373705 612192. 2118.31 10.15 0.270623 0.246172 22750 144809 -1 3194 16 1545 4822 245446 57058 7.03004 7.03004 -158.179 -7.03004 0 0 782063. 2706.10 0.91 0.06 0.44 -1 -1 0.91 0.0134039 0.0123141 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 19.07 vpr 63.90 MiB -1 -1 0.66 21432 14 1.30 -1 -1 36368 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 25.2 MiB 0.66 1270 6328 1321 4213 794 63.9 MiB 0.09 0.00 8.25686 -165.075 -8.25686 8.25686 2.45 0.000215573 0.000167457 0.0102148 0.00840408 36 3201 36 6.55708e+06 289320 612192. 2118.31 6.64 0.163844 0.152244 22750 144809 -1 2629 17 1114 3456 183339 42268 7.17216 7.17216 -154.805 -7.17216 0 0 782063. 2706.10 1.10 0.17 0.38 -1 -1 1.10 0.0150727 0.013776 168 168 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 19.31 vpr 64.12 MiB -1 -1 0.68 21584 13 1.02 -1 -1 36948 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65656 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1492 5845 1128 4445 272 64.1 MiB 0.12 0.00 8.14181 -162.894 -8.14181 8.14181 2.88 0.000305495 0.000206887 0.0109095 0.00917872 30 3707 27 6.55708e+06 361650 526063. 1820.29 5.69 0.167922 0.159794 21886 126133 -1 3113 28 1502 4504 339845 128741 6.93376 6.93376 -156.281 -6.93376 0 0 666494. 2306.21 0.88 0.19 0.32 -1 -1 0.88 0.134558 0.132516 198 197 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 23.19 vpr 64.18 MiB -1 -1 1.08 22040 13 0.88 -1 -1 36480 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1346 6910 1355 5304 251 64.2 MiB 0.12 0.00 7.86512 -160.397 -7.86512 7.86512 2.22 0.00027271 0.000225967 0.0116621 0.00977571 36 3748 41 6.55708e+06 373705 612192. 2118.31 10.67 0.519042 0.505558 22750 144809 -1 3175 17 1501 4433 254001 59081 6.8411 6.8411 -154.25 -6.8411 0 0 782063. 2706.10 1.17 0.20 0.27 -1 -1 1.17 0.0185331 0.0170229 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 16.21 vpr 64.22 MiB -1 -1 0.67 22192 12 1.31 -1 -1 36540 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 25.5 MiB 0.96 1434 5869 1120 4385 364 64.2 MiB 0.26 0.00 7.65261 -158.289 -7.65261 7.65261 2.82 0.000263311 0.000207925 0.0103096 0.00864459 30 3474 18 6.55708e+06 397815 526063. 1820.29 3.65 0.156344 0.040551 21886 126133 -1 3042 18 1420 3930 177067 43130 6.71064 6.71064 -152.19 -6.71064 0 0 666494. 2306.21 0.72 0.27 0.24 -1 -1 0.72 0.0152312 0.0139051 216 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 16.28 vpr 63.12 MiB -1 -1 0.70 21432 11 0.49 -1 -1 36216 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64640 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 24.7 MiB 0.82 938 4354 809 3198 347 63.1 MiB 0.26 0.00 6.12166 -126.096 -6.12166 6.12166 2.58 0.000171101 0.000136213 0.00610813 0.00510208 26 2897 47 6.55708e+06 216990 477104. 1650.88 5.12 0.248103 0.241724 21022 109990 -1 2246 24 996 2582 215122 70691 5.29012 5.29012 -126.877 -5.29012 0 0 585099. 2024.56 0.84 0.07 0.30 -1 -1 0.84 0.0237992 0.0118264 125 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 16.99 vpr 63.66 MiB -1 -1 0.54 21584 13 0.65 -1 -1 36168 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 25.0 MiB 1.17 1244 6913 1456 4785 672 63.7 MiB 0.31 0.00 7.60641 -160.262 -7.60641 7.60641 2.39 0.000259354 0.000220131 0.00774441 0.00638308 30 2996 21 6.55708e+06 289320 526063. 1820.29 3.17 0.0450548 0.0388259 21886 126133 -1 2594 16 1049 3039 145132 34838 6.38724 6.38724 -146.837 -6.38724 0 0 666494. 2306.21 1.29 0.41 0.27 -1 -1 1.29 0.379267 0.337094 161 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 18.90 vpr 64.51 MiB -1 -1 0.91 22040 14 1.68 -1 -1 36812 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 25.8 MiB 1.02 1644 9865 2502 6499 864 64.5 MiB 0.17 0.00 8.53135 -177.728 -8.53135 8.53135 2.66 0.000277105 0.000229784 0.121284 0.118597 30 4291 29 6.55708e+06 397815 526063. 1820.29 6.73 0.418134 0.408261 21886 126133 -1 3602 17 1729 5456 262006 60865 7.3591 7.3591 -165.422 -7.3591 0 0 666494. 2306.21 0.96 0.24 0.19 -1 -1 0.96 0.0203461 0.0186193 245 244 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 20.65 vpr 64.07 MiB -1 -1 0.69 22040 13 1.12 -1 -1 36524 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 25.3 MiB 1.23 1387 8863 2093 6011 759 64.1 MiB 0.16 0.00 7.926 -171.401 -7.926 7.926 2.23 0.000224463 0.000185258 0.0770665 0.0107625 36 3165 17 6.55708e+06 325485 612192. 2118.31 8.13 0.418835 0.343493 22750 144809 -1 2855 15 1125 3293 180680 41408 6.9587 6.9587 -159.721 -6.9587 0 0 782063. 2706.10 1.00 0.21 0.48 -1 -1 1.00 0.0159113 0.014596 178 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 23.65 vpr 63.25 MiB -1 -1 0.61 21432 11 0.98 -1 -1 36708 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64768 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 24.7 MiB 0.57 1027 8641 2218 5647 776 63.2 MiB 0.08 0.00 6.67134 -137.606 -6.67134 6.67134 2.52 0.000185245 0.000151747 0.0487789 0.0468227 30 2408 35 6.55708e+06 277265 526063. 1820.29 12.15 0.462091 0.211644 21886 126133 -1 2006 16 836 2500 120266 28573 5.92772 5.92772 -132.802 -5.92772 0 0 666494. 2306.21 0.73 0.06 0.37 -1 -1 0.73 0.039015 0.0379287 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 22.35 vpr 63.96 MiB -1 -1 0.62 22496 15 2.30 -1 -1 36816 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 25.9 MiB 0.83 1739 8198 1861 5696 641 64.0 MiB 0.08 0.00 9.48099 -183.773 -9.48099 9.48099 2.27 0.000393793 0.000326572 0.0152582 0.0129286 30 4842 45 6.55708e+06 409870 526063. 1820.29 9.12 0.0878706 0.0762725 21886 126133 -1 3846 19 2218 7365 378356 84596 8.21781 8.21781 -174.493 -8.21781 0 0 666494. 2306.21 0.69 0.23 0.10 -1 -1 0.69 0.04138 0.039349 257 257 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 19.59 vpr 63.97 MiB -1 -1 0.64 21888 13 0.97 -1 -1 36348 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1439 6509 1332 4682 495 64.0 MiB 0.08 0.00 8.18652 -164.372 -8.18652 8.18652 2.34 0.000239808 0.000197306 0.0110964 0.00935483 28 3956 45 6.55708e+06 337540 500653. 1732.36 8.19 0.210958 0.201628 21310 115450 -1 3396 19 1656 5038 310374 70106 7.4441 7.4441 -166.884 -7.4441 0 0 612192. 2118.31 0.67 0.25 0.30 -1 -1 0.67 0.24297 0.242014 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 14.49 vpr 63.32 MiB -1 -1 0.77 21128 11 0.50 -1 -1 36244 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64840 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 24.7 MiB 0.97 1055 6512 1402 4966 144 63.3 MiB 0.17 0.00 6.21838 -133.407 -6.21838 6.21838 2.46 0.000180908 0.000144444 0.121739 0.12007 28 3026 28 6.55708e+06 265210 500653. 1732.36 3.42 0.281054 0.274966 21310 115450 -1 2445 16 1058 2966 177272 41624 5.68992 5.68992 -134.582 -5.68992 0 0 612192. 2118.31 0.73 0.11 0.35 -1 -1 0.73 0.0124398 0.0113336 141 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 19.76 vpr 64.24 MiB -1 -1 0.71 21736 12 1.04 -1 -1 36320 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 25.5 MiB 1.78 1408 8188 1789 5868 531 64.2 MiB 0.16 0.00 7.58418 -153.318 -7.58418 7.58418 2.65 0.000273585 0.000227731 0.014541 0.0122114 30 3802 49 6.55708e+06 361650 526063. 1820.29 6.02 0.0697067 0.0596566 21886 126133 -1 3014 16 1306 4296 205583 47349 6.8823 6.8823 -149.116 -6.8823 0 0 666494. 2306.21 1.01 0.11 0.27 -1 -1 1.01 0.0180854 0.0166347 213 211 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 30.15 vpr 63.76 MiB -1 -1 0.49 21432 12 0.58 -1 -1 36228 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 0.99 1181 8733 2191 5537 1005 63.8 MiB 0.10 0.00 7.34198 -153.7 -7.34198 7.34198 2.27 0.000284073 0.000245447 0.0134034 0.0108118 28 3451 25 6.55708e+06 313430 500653. 1732.36 18.65 0.1461 0.131578 21310 115450 -1 2819 17 1129 3314 185185 43189 6.47284 6.47284 -151.063 -6.47284 0 0 612192. 2118.31 0.74 0.24 0.29 -1 -1 0.74 0.171431 0.17017 153 149 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 16.90 vpr 63.52 MiB -1 -1 0.58 21584 12 0.70 -1 -1 36352 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 24.7 MiB 0.52 977 10163 2498 5973 1692 63.5 MiB 0.12 0.00 7.03389 -140.137 -7.03389 7.03389 2.89 0.000180603 0.00014552 0.0821045 0.0110786 26 2674 45 6.55708e+06 253155 477104. 1650.88 5.31 0.33595 0.144389 21022 109990 -1 2235 19 900 2564 151191 35379 6.23184 6.23184 -136.811 -6.23184 0 0 585099. 2024.56 1.27 0.14 0.29 -1 -1 1.27 0.0141995 0.0129324 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 15.57 vpr 64.05 MiB -1 -1 0.70 21736 12 1.03 -1 -1 36356 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1286 8165 1985 5620 560 64.0 MiB 0.19 0.00 6.66378 -127.805 -6.66378 6.66378 2.21 0.000265504 0.000223022 0.157749 0.114161 30 3497 38 6.55708e+06 373705 526063. 1820.29 4.02 0.206106 0.155828 21886 126133 -1 2685 18 1204 3985 199862 45719 5.82238 5.82238 -124.619 -5.82238 0 0 666494. 2306.21 0.81 0.16 0.37 -1 -1 0.81 0.0498197 0.0483227 191 190 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 20.60 vpr 64.41 MiB -1 -1 0.67 21736 13 0.86 -1 -1 36380 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 25.6 MiB 1.80 1575 8089 1792 5648 649 64.4 MiB 0.31 0.13 8.199 -173.718 -8.199 8.199 2.81 0.129128 0.129066 0.14304 0.140801 30 4366 46 6.55708e+06 397815 526063. 1820.29 6.44 0.41256 0.402106 21886 126133 -1 3389 25 1746 4854 343466 119381 7.16956 7.16956 -166.873 -7.16956 0 0 666494. 2306.21 0.85 0.25 0.25 -1 -1 0.85 0.125728 0.124294 238 236 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 21.88 vpr 63.96 MiB -1 -1 0.66 21736 12 0.61 -1 -1 36516 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 25.3 MiB 1.33 1304 13674 3198 8447 2029 64.0 MiB 0.23 0.00 7.70392 -150.607 -7.70392 7.70392 2.62 0.000287756 0.000243993 0.0156864 0.0131775 36 3558 36 6.55708e+06 385760 612192. 2118.31 10.03 0.140172 0.0835049 22750 144809 -1 2907 21 1684 5666 329352 73961 6.79104 6.79104 -144.906 -6.79104 0 0 782063. 2706.10 0.97 0.18 0.37 -1 -1 0.97 0.0190456 0.0172129 200 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 17.17 vpr 63.38 MiB -1 -1 0.28 21584 12 0.72 -1 -1 36536 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 24.7 MiB 1.82 1050 7587 1832 5326 429 63.4 MiB 0.08 0.00 6.64951 -139.656 -6.64951 6.64951 2.79 0.000174859 0.000141086 0.00982881 0.00812266 28 2914 43 6.55708e+06 241100 500653. 1732.36 5.09 0.0518456 0.0444756 21310 115450 -1 2569 21 989 2719 224458 66094 5.72972 5.72972 -139.691 -5.72972 0 0 612192. 2118.31 0.61 0.45 0.24 -1 -1 0.61 0.405671 0.40421 126 120 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 17.94 vpr 63.74 MiB -1 -1 0.74 21432 12 0.86 -1 -1 36188 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 1.21 1153 6039 1205 4356 478 63.7 MiB 0.14 0.00 6.87029 -138.197 -6.87029 6.87029 2.28 0.000202327 0.000164137 0.00945293 0.00786813 28 3361 44 6.55708e+06 289320 500653. 1732.36 6.30 0.154211 0.146761 21310 115450 -1 2772 17 1156 3559 199622 46561 6.42138 6.42138 -144.612 -6.42138 0 0 612192. 2118.31 0.72 0.11 0.13 -1 -1 0.72 0.0136977 0.012436 154 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 19.58 vpr 63.81 MiB -1 -1 0.74 21280 11 0.73 -1 -1 36512 -1 -1 30 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 25.2 MiB 0.43 1269 13340 3337 7820 2183 63.8 MiB 0.20 0.00 6.87709 -132.09 -6.87709 6.87709 2.44 0.000243462 0.000198361 0.0204075 0.0170615 36 3124 36 6.55708e+06 361650 612192. 2118.31 7.91 0.381597 0.163625 22750 144809 -1 2680 15 1122 3678 200840 45836 6.15344 6.15344 -128.496 -6.15344 0 0 782063. 2706.10 1.16 0.19 0.28 -1 -1 1.16 0.162084 0.014053 190 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 18.52 vpr 63.81 MiB -1 -1 0.59 21432 11 0.46 -1 -1 36348 -1 -1 27 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 25.2 MiB 0.65 1130 7959 1993 5244 722 63.8 MiB 0.13 0.00 6.52095 -121.312 -6.52095 6.52095 2.30 0.000215182 0.000169722 0.0966236 0.0946183 28 3267 50 6.55708e+06 325485 500653. 1732.36 7.89 0.302792 0.133017 21310 115450 -1 2607 21 1291 4624 265920 59926 6.02298 6.02298 -121.386 -6.02298 0 0 612192. 2118.31 0.70 0.25 0.21 -1 -1 0.70 0.094331 0.0927083 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 27.39 vpr 63.68 MiB -1 -1 0.81 21584 13 0.61 -1 -1 36484 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.84 1062 5655 1187 4180 288 63.7 MiB 0.22 0.00 7.51524 -139.468 -7.51524 7.51524 2.18 9.3136e-05 7.5513e-05 0.00720594 0.00606239 30 2774 25 6.55708e+06 301375 526063. 1820.29 16.46 0.20291 0.175792 21886 126133 -1 2453 31 1002 3188 344719 155581 6.43104 6.43104 -133.612 -6.43104 0 0 666494. 2306.21 0.90 0.26 0.21 -1 -1 0.90 0.0172822 0.0153141 148 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 17.61 vpr 63.89 MiB -1 -1 0.57 21584 12 0.66 -1 -1 36704 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 25.2 MiB 0.71 1223 6923 1491 4662 770 63.9 MiB 0.08 0.00 7.37241 -157.796 -7.37241 7.37241 2.53 0.000235551 0.000191972 0.0108155 0.00907941 28 3438 19 6.55708e+06 337540 500653. 1732.36 6.57 0.0505002 0.0437114 21310 115450 -1 2927 15 1236 3365 193788 45715 6.4427 6.4427 -155.406 -6.4427 0 0 612192. 2118.31 0.62 0.15 0.40 -1 -1 0.62 0.0215211 0.0203 174 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 19.66 vpr 64.04 MiB -1 -1 0.80 21584 13 1.13 -1 -1 36712 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1253 5919 1160 4308 451 64.0 MiB 0.02 0.00 8.10858 -155.032 -8.10858 8.10858 2.93 9.9363e-05 8.0103e-05 0.00460606 0.00385389 28 3477 40 6.55708e+06 325485 500653. 1732.36 6.03 0.275341 0.155675 21310 115450 -1 2926 18 1294 3788 266712 71814 7.24996 7.24996 -156.034 -7.24996 0 0 612192. 2118.31 0.85 0.14 0.14 -1 -1 0.85 0.0173078 0.0157634 187 187 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 14.49 vpr 63.93 MiB -1 -1 0.84 21888 14 0.79 -1 -1 36636 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 25.3 MiB 0.99 1284 10442 2916 6424 1102 63.9 MiB 0.17 0.00 8.2513 -166.21 -8.2513 8.2513 2.53 0.000114041 9.1017e-05 0.0138308 0.0115221 28 3487 25 6.55708e+06 337540 500653. 1732.36 3.67 0.0549611 0.0471063 21310 115450 -1 3128 21 1567 4269 260536 59014 7.4395 7.4395 -165.331 -7.4395 0 0 612192. 2118.31 0.69 0.32 0.23 -1 -1 0.69 0.013333 0.0120216 196 196 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 39.21 vpr 63.95 MiB -1 -1 0.75 22192 14 1.00 -1 -1 36832 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 25.3 MiB 1.16 1345 13751 3514 7977 2260 64.0 MiB 0.19 0.00 7.89392 -157.269 -7.89392 7.89392 2.69 0.000218832 0.00017508 0.136029 0.132626 28 3938 44 6.55708e+06 301375 500653. 1732.36 25.85 0.240042 0.220753 21310 115450 -1 3166 45 2401 8589 1037444 427254 7.26844 7.26844 -156.544 -7.26844 0 0 612192. 2118.31 0.71 0.82 0.20 -1 -1 0.71 0.164016 0.160598 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 16.66 vpr 64.11 MiB -1 -1 0.60 21888 13 1.34 -1 -1 36260 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 25.6 MiB 1.47 1380 7443 1649 5147 647 64.1 MiB 0.20 0.00 8.01781 -156.923 -8.01781 8.01781 2.19 0.000253427 0.000209441 0.0128526 0.0108606 30 3412 19 6.55708e+06 349595 526063. 1820.29 3.34 0.0563902 0.0485874 21886 126133 -1 2981 16 1289 4003 190097 45381 6.97036 6.97036 -150.248 -6.97036 0 0 666494. 2306.21 0.88 0.17 0.28 -1 -1 0.88 0.0168691 0.0154788 205 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 15.50 vpr 63.66 MiB -1 -1 0.44 21432 13 0.71 -1 -1 36264 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65184 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 25.2 MiB 1.49 1107 9158 2494 5916 748 63.7 MiB 0.13 0.00 7.35655 -149.828 -7.35655 7.35655 2.75 0.000262176 0.000216583 0.0554604 0.053026 30 2818 21 6.55708e+06 289320 526063. 1820.29 3.38 0.091842 0.0844766 21886 126133 -1 2341 16 962 2571 120557 29483 6.50744 6.50744 -141.672 -6.50744 0 0 666494. 2306.21 0.77 0.06 0.28 -1 -1 0.77 0.155731 0.0121329 147 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 21.33 vpr 64.20 MiB -1 -1 0.64 22040 13 1.46 -1 -1 36388 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 25.6 MiB 1.01 1381 6484 1204 4933 347 64.2 MiB 0.49 0.00 8.19984 -161.023 -8.19984 8.19984 2.13 0.00026095 0.000215637 0.00782817 0.00655675 36 3648 26 6.55708e+06 385760 612192. 2118.31 7.77 0.265722 0.25413 22750 144809 -1 3201 17 1547 4352 233422 54419 7.04936 7.04936 -153.097 -7.04936 0 0 782063. 2706.10 1.00 0.36 0.35 -1 -1 1.00 0.0182814 0.0169265 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 18.70 vpr 64.01 MiB -1 -1 0.70 22040 14 1.32 -1 -1 36532 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 25.3 MiB 1.65 1305 5599 950 4386 263 64.0 MiB 0.14 0.00 8.03849 -165.113 -8.03849 8.03849 2.30 0.000228771 0.000188167 0.106627 0.10508 30 3350 18 6.55708e+06 325485 526063. 1820.29 5.63 0.225627 0.21883 21886 126133 -1 2845 17 1252 4156 204492 47404 6.93176 6.93176 -158.794 -6.93176 0 0 666494. 2306.21 0.93 0.29 0.27 -1 -1 0.93 0.252371 0.250949 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 17.87 vpr 63.89 MiB -1 -1 0.63 22040 13 0.82 -1 -1 36360 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1143 8473 2254 5090 1129 63.9 MiB 0.16 0.00 7.8048 -151.404 -7.8048 7.8048 2.31 0.000313906 0.000265347 0.00642095 0.00525225 36 3221 20 6.55708e+06 301375 612192. 2118.31 7.08 0.0681647 0.059318 22750 144809 -1 2693 17 1231 3664 204139 47159 7.1997 7.1997 -150.348 -7.1997 0 0 782063. 2706.10 0.69 0.20 0.28 -1 -1 0.69 0.0282677 0.0269425 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 20.90 vpr 63.82 MiB -1 -1 0.57 21736 13 0.83 -1 -1 36676 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 25.2 MiB 1.43 1313 4445 808 3252 385 63.8 MiB 0.15 0.00 7.65777 -143.701 -7.65777 7.65777 2.59 0.00020558 0.00016777 0.0081875 0.00688493 28 3663 37 6.55708e+06 325485 500653. 1732.36 8.21 0.234629 0.129027 21310 115450 -1 3035 17 1282 3751 215756 50319 6.8013 6.8013 -143.19 -6.8013 0 0 612192. 2118.31 0.70 0.21 0.20 -1 -1 0.70 0.0151123 0.0137949 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 45.30 vpr 64.34 MiB -1 -1 0.63 22040 14 1.64 -1 -1 36380 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 25.6 MiB 1.28 1488 10441 2580 6390 1471 64.3 MiB 0.28 0.00 8.09286 -167.507 -8.09286 8.09286 2.76 0.000263127 0.000203516 0.198848 0.196182 30 3818 36 6.55708e+06 446035 526063. 1820.29 32.31 0.852786 0.829196 21886 126133 -1 3099 18 1565 4417 210129 50150 7.06724 7.06724 -157.302 -7.06724 0 0 666494. 2306.21 0.81 0.11 0.17 -1 -1 0.81 0.0192087 0.0176027 218 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 17.62 vpr 63.88 MiB -1 -1 0.54 21888 11 0.87 -1 -1 36436 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 24.9 MiB 1.48 1205 8130 1875 5560 695 63.9 MiB 0.05 0.00 6.90974 -135.543 -6.90974 6.90974 2.56 0.000216654 0.000177734 0.0122832 0.0101735 28 3454 29 6.55708e+06 349595 500653. 1732.36 5.26 0.137545 0.12948 21310 115450 -1 2951 16 1464 4326 256241 59312 6.18098 6.18098 -136.432 -6.18098 0 0 612192. 2118.31 0.85 0.15 0.25 -1 -1 0.85 0.109371 0.107951 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 20.04 vpr 63.26 MiB -1 -1 0.55 21280 13 0.58 -1 -1 36372 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64776 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 24.6 MiB 0.98 1186 6328 1272 4421 635 63.3 MiB 0.05 0.00 7.14789 -159.983 -7.14789 7.14789 2.68 0.000173826 0.000139063 0.00908981 0.00769341 26 3313 36 6.55708e+06 289320 477104. 1650.88 9.52 0.367453 0.360281 21022 109990 -1 2803 19 1167 3155 260805 62504 6.33838 6.33838 -161.077 -6.33838 0 0 585099. 2024.56 0.76 0.24 0.16 -1 -1 0.76 0.00941676 0.00853264 138 128 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 23.88 vpr 63.79 MiB -1 -1 0.84 22040 14 0.87 -1 -1 36588 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1337 6509 1295 4681 533 63.8 MiB 0.04 0.00 7.98458 -168.027 -7.98458 7.98458 2.26 0.000209332 0.000169761 0.0092842 0.00773734 36 3424 21 6.55708e+06 337540 612192. 2118.31 11.37 0.589778 0.579204 22750 144809 -1 2895 15 1148 3462 205457 45599 7.1187 7.1187 -160.111 -7.1187 0 0 782063. 2706.10 0.80 0.07 0.42 -1 -1 0.80 0.0154346 0.0141391 179 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 34.93 vpr 64.30 MiB -1 -1 0.61 22040 15 1.44 -1 -1 36548 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1610 8311 1730 5798 783 64.3 MiB 0.17 0.00 9.07969 -190.885 -9.07969 9.07969 2.45 0.000135824 0.000110209 0.137955 0.136462 34 5238 35 6.55708e+06 397815 585099. 2024.56 21.23 0.463497 0.443696 22462 138074 -1 3827 17 1741 5120 299981 68588 8.10021 8.10021 -185.163 -8.10021 0 0 742403. 2568.87 0.94 0.39 0.36 -1 -1 0.94 0.160426 0.158717 241 240 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 14.63 vpr 63.39 MiB -1 -1 0.53 21128 11 0.56 -1 -1 36216 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64908 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 24.9 MiB 1.31 979 5945 1142 4535 268 63.4 MiB 0.13 0.00 6.54888 -132.473 -6.54888 6.54888 2.54 0.000176056 0.000141464 0.00771292 0.0064609 28 2730 19 6.55708e+06 265210 500653. 1732.36 2.97 0.0385242 0.0330155 21310 115450 -1 2351 19 899 2612 163258 37580 6.17332 6.17332 -135.267 -6.17332 0 0 612192. 2118.31 0.65 0.16 0.36 -1 -1 0.65 0.013447 0.0117404 129 126 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 17.94 vpr 63.50 MiB -1 -1 0.71 21128 12 1.31 -1 -1 36552 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65028 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 25.0 MiB 0.68 1184 5435 1029 3992 414 63.5 MiB 0.12 0.00 6.88026 -147.814 -6.88026 6.88026 2.72 0.000197667 0.000161384 0.0969983 0.00664193 34 3286 21 6.55708e+06 313430 585099. 2024.56 5.65 0.270517 0.173041 22462 138074 -1 2758 16 1351 3898 222252 50537 6.34238 6.34238 -146.944 -6.34238 0 0 742403. 2568.87 1.04 0.17 0.15 -1 -1 1.04 0.0139047 0.012623 156 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 16.70 vpr 64.19 MiB -1 -1 0.62 21432 12 1.26 -1 -1 36372 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 25.6 MiB 1.16 1451 10608 2638 6974 996 64.2 MiB 0.23 0.00 7.23744 -159.275 -7.23744 7.23744 2.53 0.000266829 0.000219688 0.0470763 0.0442255 30 3847 24 6.55708e+06 385760 526063. 1820.29 4.26 0.259313 0.219445 21886 126133 -1 3154 17 1634 4863 229621 53777 6.11164 6.11164 -150.417 -6.11164 0 0 666494. 2306.21 0.83 0.07 0.22 -1 -1 0.83 0.0310462 0.0293725 213 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 20.53 vpr 63.94 MiB -1 -1 0.57 21888 12 0.78 -1 -1 36364 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 25.2 MiB 1.04 1398 8733 1967 5833 933 63.9 MiB 0.09 0.00 7.43539 -158.721 -7.43539 7.43539 2.42 0.000101209 8.1922e-05 0.0367919 0.0346588 36 3499 50 6.55708e+06 313430 612192. 2118.31 9.03 0.119948 0.106485 22750 144809 -1 2978 18 1249 3803 214372 48233 6.50944 6.50944 -152.45 -6.50944 0 0 782063. 2706.10 0.85 0.22 0.18 -1 -1 0.85 0.164066 0.163122 181 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 32.50 vpr 64.48 MiB -1 -1 0.48 22040 14 1.63 -1 -1 36584 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 25.6 MiB 1.74 1665 7871 1657 5890 324 64.5 MiB 0.08 0.00 8.95358 -178.735 -8.95358 8.95358 2.64 0.000284162 0.000233941 0.0150876 0.0127451 36 4345 46 6.55708e+06 373705 612192. 2118.31 17.57 0.396241 0.380917 22750 144809 -1 3738 21 1755 5604 309051 70573 7.56735 7.56735 -165.176 -7.56735 0 0 782063. 2706.10 1.02 0.27 0.50 -1 -1 1.02 0.236488 0.234385 234 233 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 21.24 vpr 63.82 MiB -1 -1 0.41 21432 12 0.70 -1 -1 36312 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 25.2 MiB 1.62 1243 8727 1998 5960 769 63.8 MiB 0.05 0.00 7.13411 -137.801 -7.13411 7.13411 2.76 0.000214917 0.00017616 0.0124163 0.0103993 28 3796 35 6.55708e+06 301375 500653. 1732.36 9.10 0.0560087 0.0482166 21310 115450 -1 3051 19 1280 3899 258917 56182 6.07244 6.07244 -135.214 -6.07244 0 0 612192. 2118.31 0.84 0.13 0.34 -1 -1 0.84 0.0158643 0.01436 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 14.64 vpr 63.50 MiB -1 -1 0.65 21584 11 0.91 -1 -1 36376 -1 -1 26 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 24.9 MiB 1.10 979 9199 2492 5781 926 63.5 MiB 0.22 0.00 6.86503 -123.275 -6.86503 6.86503 2.41 0.000148718 0.000119219 0.0880429 0.0858612 28 2433 14 6.55708e+06 313430 500653. 1732.36 3.45 0.122087 0.115606 21310 115450 -1 2270 16 958 2833 142761 34649 6.11164 6.11164 -124.578 -6.11164 0 0 612192. 2118.31 0.84 0.17 0.23 -1 -1 0.84 0.0123848 0.0112841 140 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 25.81 vpr 64.21 MiB -1 -1 0.73 22648 13 1.74 -1 -1 36944 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 26.1 MiB 1.66 1739 8400 1898 5561 941 64.2 MiB 0.10 0.00 7.90403 -157.442 -7.90403 7.90403 2.69 0.000145006 0.000116969 0.00711472 0.00594781 40 4484 27 6.55708e+06 482200 666494. 2306.21 10.92 0.576451 0.417348 23614 160646 -1 4165 48 2168 7136 946474 418918 6.98824 6.98824 -160.523 -6.98824 0 0 872365. 3018.56 0.90 0.86 0.37 -1 -1 0.90 0.291696 0.286513 286 286 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 21.51 vpr 63.98 MiB -1 -1 0.60 22040 14 0.81 -1 -1 36316 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 25.2 MiB 0.59 1261 11107 2450 7308 1349 64.0 MiB 0.10 0.00 8.13646 -161.778 -8.13646 8.13646 2.93 0.000303035 0.000248085 0.0173497 0.0143451 26 3804 44 6.55708e+06 337540 477104. 1650.88 9.56 0.437548 0.427134 21022 109990 -1 3218 21 1579 4615 281022 64145 7.1207 7.1207 -158.888 -7.1207 0 0 585099. 2024.56 0.64 0.31 0.30 -1 -1 0.64 0.0183211 0.0165306 188 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 16.59 vpr 63.49 MiB -1 -1 0.66 21432 12 0.62 -1 -1 36308 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65012 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 24.9 MiB 0.97 1200 9883 2726 6549 608 63.5 MiB 0.08 0.00 7.16941 -157.701 -7.16941 7.16941 2.56 0.000216681 0.000179978 0.0128806 0.0106838 28 3138 32 6.55708e+06 325485 500653. 1732.36 5.23 0.0539984 0.0460065 21310 115450 -1 2690 20 1031 2884 216722 59938 6.22984 6.22984 -151.345 -6.22984 0 0 612192. 2118.31 0.95 0.24 0.16 -1 -1 0.95 0.0151819 0.0137866 145 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 16.04 vpr 63.93 MiB -1 -1 0.53 21432 13 0.87 -1 -1 36516 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 25.2 MiB 1.70 1270 7326 1666 5130 530 63.9 MiB 0.20 0.00 7.85381 -158.457 -7.85381 7.85381 2.17 0.000317738 0.000277571 0.00849541 0.00711264 30 3165 23 6.55708e+06 313430 526063. 1820.29 3.27 0.113822 0.107585 21886 126133 -1 2770 17 1193 3505 177808 41085 6.6837 6.6837 -148.567 -6.6837 0 0 666494. 2306.21 0.99 0.21 0.35 -1 -1 0.99 0.199937 0.19853 169 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 20.90 vpr 64.28 MiB -1 -1 0.68 22040 13 1.19 -1 -1 36724 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 25.6 MiB 0.98 1567 6848 1250 5272 326 64.3 MiB 0.26 0.00 7.93997 -162.463 -7.93997 7.93997 2.85 0.000299121 0.000246874 0.0121347 0.0102921 38 3708 19 6.55708e+06 421925 638502. 2209.35 6.17 0.159794 0.148938 23326 155178 -1 3143 17 1425 4356 200675 47264 6.7993 6.7993 -151.68 -6.7993 0 0 851065. 2944.86 0.87 0.11 0.32 -1 -1 0.87 0.0627839 0.0612129 233 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 26.17 vpr 63.89 MiB -1 -1 0.56 21280 11 0.79 -1 -1 36508 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 25.1 MiB 1.06 1431 6393 1248 4502 643 63.9 MiB 0.18 0.00 6.69021 -132.692 -6.69021 6.69021 2.41 0.000247256 0.000203975 0.0195902 0.0179785 36 3521 32 6.55708e+06 373705 612192. 2118.31 14.36 0.497843 0.293119 22750 144809 -1 3125 16 1366 4654 263593 59413 5.61352 5.61352 -125.306 -5.61352 0 0 782063. 2706.10 0.94 0.24 0.16 -1 -1 0.94 0.0155604 0.0141295 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 17.22 vpr 64.23 MiB -1 -1 0.81 22040 15 1.49 -1 -1 36540 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 25.5 MiB 1.47 1449 8493 1841 5572 1080 64.2 MiB 0.10 0.00 8.92955 -182.976 -8.92955 8.92955 2.39 0.000266432 0.000222595 0.0137991 0.0114588 30 3750 34 6.55708e+06 349595 526063. 1820.29 4.98 0.270437 0.260407 21886 126133 -1 3091 17 1328 4240 214055 52083 7.85721 7.85721 -175.244 -7.85721 0 0 666494. 2306.21 0.87 0.16 0.35 -1 -1 0.87 0.0139463 0.0126962 202 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 42.74 vpr 64.14 MiB -1 -1 0.53 22192 13 1.32 -1 -1 36540 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 25.5 MiB 1.26 1371 7123 1421 5075 627 64.1 MiB 0.04 0.00 7.82963 -168.646 -7.82963 7.82963 2.74 0.000268144 0.000204209 0.0115893 0.00966903 28 3926 46 6.55708e+06 361650 500653. 1732.36 30.07 0.726607 0.709572 21310 115450 -1 3335 19 1629 4866 338502 84493 7.0789 7.0789 -166.74 -7.0789 0 0 612192. 2118.31 0.97 0.06 0.26 -1 -1 0.97 0.0137997 0.0124569 194 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 17.53 vpr 63.73 MiB -1 -1 0.62 21128 12 0.70 -1 -1 36568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 25.0 MiB 1.76 1076 11145 2707 7146 1292 63.7 MiB 0.19 0.00 7.48815 -152.335 -7.48815 7.48815 2.54 0.000202076 0.000164647 0.0101914 0.00843458 28 3225 39 6.55708e+06 349595 500653. 1732.36 5.57 0.054545 0.0459509 21310 115450 -1 2808 31 1706 5012 357270 109600 6.8013 6.8013 -150.093 -6.8013 0 0 612192. 2118.31 0.83 0.30 0.24 -1 -1 0.83 0.0198867 0.0175138 157 154 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 15.74 vpr 63.53 MiB -1 -1 0.57 21280 11 0.50 -1 -1 36568 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 24.9 MiB 0.78 1137 9013 2200 5776 1037 63.5 MiB 0.12 0.00 6.83529 -140.07 -6.83529 6.83529 2.41 0.000261816 0.000189468 0.08647 0.0843987 28 3006 21 6.55708e+06 253155 500653. 1732.36 4.09 0.121576 0.114766 21310 115450 -1 2732 20 1198 3249 245239 65915 5.99344 5.99344 -138.61 -5.99344 0 0 612192. 2118.31 0.74 0.08 0.23 -1 -1 0.74 0.013749 0.0124021 145 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 18.46 vpr 64.16 MiB -1 -1 0.44 21432 13 1.10 -1 -1 36676 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 25.5 MiB 1.54 1445 8165 2047 5274 844 64.2 MiB 0.09 0.00 8.06583 -161.677 -8.06583 8.06583 2.45 0.000227039 0.000183839 0.0451328 0.0429252 30 3916 30 6.55708e+06 349595 526063. 1820.29 5.98 0.335156 0.326465 21886 126133 -1 3095 19 1441 4607 229808 53551 7.2409 7.2409 -157.975 -7.2409 0 0 666494. 2306.21 0.81 0.26 0.15 -1 -1 0.81 0.243106 0.241879 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 16.66 vpr 63.45 MiB -1 -1 0.47 21432 10 0.70 -1 -1 36428 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 24.9 MiB 0.95 1034 4921 1106 3348 467 63.5 MiB 0.06 0.00 5.68406 -116.659 -5.68406 5.68406 2.65 0.000194951 0.000154172 0.0072483 0.00599133 28 2904 50 6.55708e+06 289320 500653. 1732.36 5.17 0.13373 0.126419 21310 115450 -1 2328 20 1017 3150 214868 53978 4.85252 4.85252 -113.547 -4.85252 0 0 612192. 2118.31 0.83 0.14 0.27 -1 -1 0.83 0.00851497 0.00779482 137 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 33.77 vpr 63.58 MiB -1 -1 0.64 21584 14 0.58 -1 -1 36564 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65104 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 25.0 MiB 1.83 1088 10813 2512 6516 1785 63.6 MiB 0.12 0.00 7.85572 -162.036 -7.85572 7.85572 2.21 8.8625e-05 7.1171e-05 0.0760038 0.0737786 30 3060 27 6.55708e+06 289320 526063. 1820.29 20.47 0.576154 0.514953 21886 126133 -1 2356 20 1065 3088 150557 36243 6.94764 6.94764 -155.495 -6.94764 0 0 666494. 2306.21 1.11 0.12 0.33 -1 -1 1.11 0.223001 0.221609 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 16.90 vpr 63.97 MiB -1 -1 0.85 21736 13 0.73 -1 -1 36532 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 25.3 MiB 0.93 1286 9333 2274 5926 1133 64.0 MiB 0.02 0.00 7.57111 -160.828 -7.57111 7.57111 2.66 9.6321e-05 7.7635e-05 0.00577312 0.00477365 30 3224 26 6.55708e+06 361650 526063. 1820.29 4.20 0.0508096 0.0440078 21886 126133 -1 2739 31 1261 3631 322025 126066 6.78964 6.78964 -157.409 -6.78964 0 0 666494. 2306.21 0.95 0.20 0.24 -1 -1 0.95 0.0145648 0.0130551 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 16.05 vpr 63.50 MiB -1 -1 0.49 21432 12 0.42 -1 -1 36432 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 24.9 MiB 1.16 1206 10385 2702 6390 1293 63.5 MiB 0.14 0.00 6.65202 -141.569 -6.65202 6.65202 2.44 0.00017718 0.000142804 0.0906394 0.0108084 28 3085 18 6.55708e+06 313430 500653. 1732.36 4.95 0.126224 0.0414493 21310 115450 -1 2720 16 1096 2873 182715 40890 6.21052 6.21052 -143.237 -6.21052 0 0 612192. 2118.31 0.79 0.09 0.30 -1 -1 0.79 0.0127089 0.0115179 138 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 20.78 vpr 64.00 MiB -1 -1 0.68 21736 12 0.84 -1 -1 36880 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 25.5 MiB 1.06 1371 5718 1045 4451 222 64.0 MiB 0.15 0.00 7.06387 -150.59 -7.06387 7.06387 2.52 0.000114925 9.1852e-05 0.00983158 0.00812829 36 3301 40 6.55708e+06 313430 612192. 2118.31 8.58 0.435218 0.313633 22750 144809 -1 2800 18 1332 4379 231281 52794 6.35464 6.35464 -143.763 -6.35464 0 0 782063. 2706.10 0.86 0.25 0.38 -1 -1 0.86 0.0170465 0.0154706 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 19.26 vpr 64.26 MiB -1 -1 0.82 21888 13 1.01 -1 -1 36316 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 25.5 MiB 1.83 1352 12719 3295 7542 1882 64.3 MiB 0.09 0.00 7.66758 -155.332 -7.66758 7.66758 2.58 0.000246481 0.000200712 0.0189413 0.0156962 34 3530 22 6.55708e+06 349595 585099. 2024.56 6.54 0.243093 0.198409 22462 138074 -1 2931 15 1284 3916 202762 47937 6.6811 6.6811 -148.35 -6.6811 0 0 742403. 2568.87 0.89 0.07 0.46 -1 -1 0.89 0.0171879 0.0158956 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 24.33 vpr 63.64 MiB -1 -1 0.59 21280 11 0.56 -1 -1 36396 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1082 7415 1581 5155 679 63.6 MiB 0.15 0.00 6.31359 -143.036 -6.31359 6.31359 2.53 9.2361e-05 7.3812e-05 0.0101807 0.00838108 28 3145 30 6.55708e+06 301375 500653. 1732.36 12.17 0.43249 0.417527 21310 115450 -1 2638 23 1177 3451 274589 87116 5.57232 5.57232 -137.488 -5.57232 0 0 612192. 2118.31 0.60 0.25 0.31 -1 -1 0.60 0.00998682 0.00912745 148 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 22.53 vpr 63.64 MiB -1 -1 0.40 21280 13 0.99 -1 -1 36544 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65172 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 25.0 MiB 1.25 1235 12763 3469 7332 1962 63.6 MiB 0.33 0.00 7.41461 -156.931 -7.41461 7.41461 2.43 0.000196035 0.000159111 0.0910167 0.0879632 28 4307 47 6.55708e+06 289320 500653. 1732.36 10.79 0.141304 0.131292 21310 115450 -1 3200 23 1577 4702 304620 67065 6.55124 6.55124 -157.29 -6.55124 0 0 612192. 2118.31 0.73 0.21 0.24 -1 -1 0.73 0.017403 0.0156288 164 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 20.85 vpr 64.09 MiB -1 -1 0.58 21584 13 1.01 -1 -1 36796 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 25.5 MiB 2.61 1388 6302 1254 4414 634 64.1 MiB 0.02 0.00 7.89081 -170.839 -7.89081 7.89081 2.57 0.000116871 9.4236e-05 0.00503171 0.00421225 36 3241 19 6.55708e+06 337540 612192. 2118.31 6.67 0.261633 0.251399 22750 144809 -1 2886 17 1230 3457 177414 41371 7.0397 7.0397 -161.129 -7.0397 0 0 782063. 2706.10 0.70 0.08 0.29 -1 -1 0.70 0.0170939 0.0156853 193 191 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 25.91 vpr 63.74 MiB -1 -1 0.91 21736 11 0.67 -1 -1 36216 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 25.0 MiB 0.75 1142 12958 3537 7390 2031 63.7 MiB 0.26 0.00 6.51109 -124.99 -6.51109 6.51109 2.45 0.000196599 0.000158198 0.00898598 0.00731972 28 3194 50 6.55708e+06 325485 500653. 1732.36 14.43 0.131746 0.115841 21310 115450 -1 2802 20 1392 4118 270857 60473 5.90278 5.90278 -123.786 -5.90278 0 0 612192. 2118.31 0.99 0.16 0.19 -1 -1 0.99 0.0954845 0.0938832 160 158 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 20.07 vpr 64.51 MiB -1 -1 0.79 22192 14 1.40 -1 -1 36796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 25.8 MiB 1.40 1576 7851 1546 5933 372 64.5 MiB 0.06 0.00 8.33526 -182.394 -8.33526 8.33526 2.51 0.000252892 0.000201319 0.0122387 0.0103391 30 4450 35 6.55708e+06 421925 526063. 1820.29 6.61 0.169597 0.161469 21886 126133 -1 3611 19 2114 6505 329298 76485 7.4375 7.4375 -177.262 -7.4375 0 0 666494. 2306.21 0.93 0.20 0.19 -1 -1 0.93 0.0438397 0.0419185 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 17.39 vpr 63.51 MiB -1 -1 0.31 21280 12 0.56 -1 -1 36420 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 24.9 MiB 1.21 1099 11311 2604 7322 1385 63.5 MiB 0.10 0.00 6.85552 -147.848 -6.85552 6.85552 2.41 0.000253518 0.000215242 0.0129724 0.0106323 28 3319 44 6.55708e+06 337540 500653. 1732.36 6.22 0.128867 0.120467 21310 115450 -1 2599 16 1007 2535 159007 36657 5.94058 5.94058 -140.231 -5.94058 0 0 612192. 2118.31 0.62 0.14 0.23 -1 -1 0.62 0.0127789 0.0116796 138 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 21.00 vpr 64.04 MiB -1 -1 0.72 22040 13 1.05 -1 -1 36476 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 25.3 MiB 1.20 1274 9395 2232 5867 1296 64.0 MiB 0.09 0.00 7.81266 -155.924 -7.81266 7.81266 2.08 0.000241124 0.000189534 0.0142489 0.0116792 30 3950 46 6.55708e+06 301375 526063. 1820.29 7.59 0.149933 0.139424 21886 126133 -1 2874 18 1346 4256 223788 52651 6.7575 6.7575 -149.517 -6.7575 0 0 666494. 2306.21 1.02 0.11 0.18 -1 -1 1.02 0.0174635 0.0159086 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 16.17 vpr 63.66 MiB -1 -1 0.72 21736 13 0.54 -1 -1 36328 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 25.0 MiB 1.10 1170 8130 1915 5523 692 63.7 MiB 0.10 0.00 7.51063 -158.904 -7.51063 7.51063 2.53 0.000237302 0.0002003 0.0834198 0.0824587 28 3271 29 6.55708e+06 313430 500653. 1732.36 3.72 0.121986 0.115319 21310 115450 -1 2765 19 1149 3037 195902 43669 6.4015 6.4015 -153.619 -6.4015 0 0 612192. 2118.31 1.23 0.19 0.23 -1 -1 1.23 0.156756 0.15548 151 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 16.14 vpr 63.95 MiB -1 -1 0.60 21736 12 0.55 -1 -1 36644 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 25.2 MiB 1.12 1308 9336 2430 5918 988 63.9 MiB 0.23 0.00 6.8413 -150.87 -6.8413 6.8413 2.54 0.000238638 0.000196606 0.188629 0.186352 30 3266 30 6.55708e+06 313430 526063. 1820.29 4.79 0.366116 0.219908 21886 126133 -1 2614 15 969 2999 146300 33820 6.02098 6.02098 -141.15 -6.02098 0 0 666494. 2306.21 1.01 0.06 0.14 -1 -1 1.01 0.0396405 0.0384656 176 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 20.36 vpr 64.23 MiB -1 -1 0.79 22648 15 1.52 -1 -1 36972 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 25.9 MiB 0.96 1721 13324 3640 7906 1778 64.2 MiB 0.18 0.00 8.79929 -171.347 -8.79929 8.79929 2.10 0.000331813 0.000264381 0.0230625 0.0192312 42 4722 27 6.55708e+06 433980 701300. 2426.64 6.32 0.122376 0.105414 23902 167433 -1 3406 18 1713 5652 297793 70623 7.57196 7.57196 -160.34 -7.57196 0 0 896083. 3100.63 1.30 0.16 0.31 -1 -1 1.30 0.089046 0.0870372 256 256 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 14.53 vpr 62.89 MiB -1 -1 0.44 21280 10 0.40 -1 -1 36224 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64404 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 24.4 MiB 0.25 909 3864 801 2776 287 62.9 MiB 0.02 0.00 5.1986 -120.097 -5.1986 5.1986 2.07 0.00013744 0.000109457 0.00471201 0.00389925 26 2630 39 6.55708e+06 216990 477104. 1650.88 5.35 0.0397896 0.0289415 21022 109990 -1 2051 24 908 2419 229724 74560 4.57854 4.57854 -120.707 -4.57854 0 0 585099. 2024.56 0.51 0.24 0.25 -1 -1 0.51 0.0095774 0.00836982 92 86 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 14.34 vpr 63.56 MiB -1 -1 0.59 21432 13 0.72 -1 -1 36228 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 24.9 MiB 0.65 1036 7575 1525 5019 1031 63.6 MiB 0.14 0.00 7.36426 -147.717 -7.36426 7.36426 2.60 0.000200261 0.000162076 0.00680068 0.00561287 28 2807 17 6.55708e+06 301375 500653. 1732.36 3.28 0.30259 0.29688 21310 115450 -1 2630 19 1085 3009 178566 41937 6.89818 6.89818 -147.006 -6.89818 0 0 612192. 2118.31 0.70 0.13 0.22 -1 -1 0.70 0.048305 0.0470081 143 140 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 18.31 vpr 63.75 MiB -1 -1 0.57 21280 12 1.11 -1 -1 36552 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 25.0 MiB 0.80 1153 10813 3047 5880 1886 63.8 MiB 0.26 0.00 7.55494 -153.61 -7.55494 7.55494 2.35 0.000205015 0.000165666 0.217296 0.214747 34 3390 41 6.55708e+06 289320 585099. 2024.56 6.49 0.6696 0.657872 22462 138074 -1 2527 16 1208 3085 158441 40340 6.53698 6.53698 -151.4 -6.53698 0 0 742403. 2568.87 0.95 0.15 0.22 -1 -1 0.95 0.13273 0.13205 171 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 12.79 vpr 63.16 MiB -1 -1 0.68 21280 9 0.50 -1 -1 36052 -1 -1 22 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64672 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 24.6 MiB 0.45 830 9374 2202 6391 781 63.2 MiB 0.02 0.00 5.41683 -98.6163 -5.41683 5.41683 2.25 6.612e-05 5.28e-05 0.00476596 0.00388661 30 1933 18 6.55708e+06 265210 526063. 1820.29 2.56 0.0303849 0.0257861 21886 126133 -1 1678 18 701 2000 93548 22278 4.64166 4.64166 -93.7436 -4.64166 0 0 666494. 2306.21 0.91 0.05 0.23 -1 -1 0.91 0.0288552 0.027802 111 110 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 27.84 vpr 64.16 MiB -1 -1 0.65 21584 12 1.23 -1 -1 36696 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 25.5 MiB 1.08 1426 9865 2341 6996 528 64.2 MiB 0.21 0.00 7.21898 -157.037 -7.21898 7.21898 2.43 0.000272854 0.000224147 0.0711103 0.0685632 36 3904 23 6.55708e+06 397815 612192. 2118.31 14.40 0.240858 0.223214 22750 144809 -1 3229 18 1463 4336 244473 57297 6.2833 6.2833 -150.434 -6.2833 0 0 782063. 2706.10 0.96 0.29 0.41 -1 -1 0.96 0.148595 0.146946 212 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 19.32 vpr 64.16 MiB -1 -1 0.79 22192 13 1.16 -1 -1 36384 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 25.5 MiB 0.95 1441 7863 1836 5236 791 64.2 MiB 0.14 0.00 8.16309 -168.172 -8.16309 8.16309 2.01 0.000118535 9.5207e-05 0.00623797 0.00519187 36 3766 31 6.55708e+06 361650 612192. 2118.31 7.09 0.133697 0.121616 22750 144809 -1 3302 19 1605 5170 286230 64164 6.8385 6.8385 -155.599 -6.8385 0 0 782063. 2706.10 0.95 0.16 0.20 -1 -1 0.95 0.0595597 0.0578422 200 199 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 14.02 vpr 63.95 MiB -1 -1 0.28 21432 1 0.11 -1 -1 33732 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1016 11703 2995 7482 1226 63.9 MiB 0.24 0.00 5.5261 -159.162 -5.5261 5.5261 2.69 0.000199142 0.000148429 0.0547026 0.0525283 32 2517 20 6.64007e+06 401856 554710. 1919.41 2.60 0.220658 0.213887 22834 132086 -1 2177 23 1613 2478 162394 38899 4.28389 4.28389 -145.187 -4.28389 0 0 701300. 2426.64 0.83 0.13 0.26 -1 -1 0.83 0.0141837 0.0126231 154 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 13.70 vpr 64.03 MiB -1 -1 0.42 21432 1 0.25 -1 -1 33892 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1071 13527 3636 8473 1418 64.0 MiB 0.23 0.00 4.97921 -144.408 -4.97921 4.97921 2.22 0.000188257 0.000152253 0.0151584 0.0123761 32 2462 22 6.64007e+06 313950 554710. 1919.41 2.57 0.185138 0.0523855 22834 132086 -1 2136 20 1596 2436 165467 39561 4.22989 4.22989 -144.826 -4.22989 0 0 701300. 2426.64 0.85 0.21 0.58 -1 -1 0.85 0.0126255 0.0112347 141 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 12.34 vpr 63.71 MiB -1 -1 0.33 21280 1 0.07 -1 -1 33860 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.2 MiB 0.93 1074 15639 5003 8705 1931 63.7 MiB 0.23 0.00 4.31513 -125.567 -4.31513 4.31513 2.17 0.000153124 0.000121434 0.013837 0.0111992 32 2473 24 6.64007e+06 288834 554710. 1919.41 2.19 0.0332637 0.0276406 22834 132086 -1 2087 22 1207 1679 121084 27669 3.58462 3.58462 -122.891 -3.58462 0 0 701300. 2426.64 0.74 0.05 0.37 -1 -1 0.74 0.034181 0.0331543 126 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 13.00 vpr 63.84 MiB -1 -1 0.43 21280 1 0.02 -1 -1 33796 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.11 931 15103 4868 7954 2281 63.8 MiB 0.25 0.00 4.52953 -121.776 -4.52953 4.52953 2.18 0.000243489 0.000133266 0.0143754 0.0115775 32 2343 23 6.64007e+06 339066 554710. 1919.41 2.21 0.0304969 0.025206 22834 132086 -1 2027 20 1332 2473 182462 40684 3.68663 3.68663 -118.519 -3.68663 0 0 701300. 2426.64 1.06 0.27 0.20 -1 -1 1.06 0.0094445 0.00832293 126 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 13.64 vpr 64.02 MiB -1 -1 0.45 21280 1 0.03 -1 -1 33724 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.08 1007 10071 2662 6608 801 64.0 MiB 0.22 0.00 4.57112 -132.997 -4.57112 4.57112 2.57 0.000153706 0.000123216 0.0105035 0.00854908 32 2451 20 6.64007e+06 288834 554710. 1919.41 2.62 0.122666 0.116991 22834 132086 -1 2111 23 1634 3182 210560 47673 3.68143 3.68143 -129.344 -3.68143 0 0 701300. 2426.64 0.92 0.17 0.33 -1 -1 0.92 0.0626375 0.061067 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 14.18 vpr 64.16 MiB -1 -1 0.37 21584 1 0.04 -1 -1 33696 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 25.5 MiB 0.38 1015 12248 3024 8320 904 64.2 MiB 0.17 0.00 3.5011 -120.544 -3.5011 3.5011 2.18 0.000170627 0.000136834 0.0121241 0.00999843 28 2553 23 6.64007e+06 426972 500653. 1732.36 3.70 0.303422 0.296356 21970 115934 -1 2229 18 1361 2235 156699 36852 2.86697 2.86697 -117.824 -2.86697 0 0 612192. 2118.31 0.73 0.16 0.30 -1 -1 0.73 0.132936 0.131511 142 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 12.24 vpr 63.58 MiB -1 -1 0.32 21128 1 0.06 -1 -1 34172 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 24.9 MiB 0.33 708 9374 2595 5724 1055 63.6 MiB 0.25 0.00 4.05083 -102.502 -4.05083 4.05083 2.49 0.000158 0.000128677 0.00974979 0.00793241 32 1565 22 6.64007e+06 238602 554710. 1919.41 2.12 0.0308785 0.0260617 22834 132086 -1 1374 20 859 1459 94904 22873 2.69757 2.69757 -93.296 -2.69757 0 0 701300. 2426.64 1.00 0.03 0.21 -1 -1 1.00 0.00953158 0.00839753 93 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.66 vpr 63.84 MiB -1 -1 0.27 20976 1 0.15 -1 -1 33844 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.26 827 11383 2423 8400 560 63.8 MiB 0.32 0.00 3.48559 -101.391 -3.48559 3.48559 2.84 0.000150132 0.000117586 0.0119231 0.0100775 28 2232 37 6.64007e+06 389298 500653. 1732.36 3.02 0.150056 0.109857 21970 115934 -1 1893 16 957 1699 120491 27748 2.88597 2.88597 -100.419 -2.88597 0 0 612192. 2118.31 0.92 0.11 0.22 -1 -1 0.92 0.0086401 0.00769204 115 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 13.87 vpr 63.96 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33900 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 25.4 MiB 0.76 888 14123 4595 7521 2007 64.0 MiB 0.23 0.00 3.62422 -120.034 -3.62422 3.62422 2.77 0.000136738 0.000107672 0.0138099 0.011095 32 1942 19 6.64007e+06 251160 554710. 1919.41 2.05 0.07235 0.06559 22834 132086 -1 1735 19 1183 1753 113197 25999 3.07917 3.07917 -116.763 -3.07917 0 0 701300. 2426.64 0.77 0.15 0.16 -1 -1 0.77 0.0101034 0.00888188 111 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 13.34 vpr 63.81 MiB -1 -1 0.39 21432 1 0.20 -1 -1 33556 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65344 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.48 874 11631 3631 6742 1258 63.8 MiB 0.16 0.00 3.92955 -127.77 -3.92955 3.92955 2.91 7.4847e-05 5.8313e-05 0.126775 0.125018 32 1924 20 6.64007e+06 213486 554710. 1919.41 2.27 0.147771 0.142884 22834 132086 -1 1758 17 1045 1692 112022 26273 2.88977 2.88977 -116.793 -2.88977 0 0 701300. 2426.64 0.97 0.08 0.48 -1 -1 0.97 0.0100006 0.00888423 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 13.04 vpr 63.79 MiB -1 -1 0.45 21280 1 0.11 -1 -1 33556 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 25.2 MiB 0.34 729 11571 3200 7477 894 63.8 MiB 0.24 0.00 4.09995 -111.19 -4.09995 4.09995 3.04 0.000149469 0.00011699 0.143407 0.140961 28 1721 20 6.64007e+06 213486 500653. 1732.36 2.12 0.200653 0.194605 21970 115934 -1 1497 19 809 1291 80635 19647 3.03316 3.03316 -103.694 -3.03316 0 0 612192. 2118.31 0.75 0.11 0.15 -1 -1 0.75 0.0102693 0.00910464 98 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.55 vpr 63.83 MiB -1 -1 0.41 21128 1 0.08 -1 -1 33744 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 793 12008 4624 6064 1320 63.8 MiB 0.17 0.00 3.82041 -120.561 -3.82041 3.82041 2.70 0.000174605 0.000118395 0.0116815 0.00940972 32 2319 19 6.64007e+06 226044 554710. 1919.41 2.54 0.0357017 0.0298223 22834 132086 -1 1793 18 1119 1519 109025 25250 3.04617 3.04617 -114.291 -3.04617 0 0 701300. 2426.64 0.94 0.02 0.43 -1 -1 0.94 0.00564448 0.00507263 109 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 14.74 vpr 64.17 MiB -1 -1 0.58 21128 1 0.12 -1 -1 33932 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.4 MiB 0.86 921 8863 1921 5548 1394 64.2 MiB 0.16 0.00 4.43584 -138.372 -4.43584 4.43584 3.06 0.000159144 0.000128163 0.00994967 0.00823373 32 2799 27 6.64007e+06 301392 554710. 1919.41 3.03 0.041536 0.0353973 22834 132086 -1 2064 19 1688 2550 183073 44808 3.29303 3.29303 -127.355 -3.29303 0 0 701300. 2426.64 1.03 0.06 0.18 -1 -1 1.03 0.011807 0.0105417 139 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 14.90 vpr 64.17 MiB -1 -1 0.44 21432 1 0.03 -1 -1 33696 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.4 MiB 0.52 885 17591 4750 10764 2077 64.2 MiB 0.36 0.00 4.98464 -139.028 -4.98464 4.98464 3.05 0.000235917 0.000196846 0.017372 0.01406 28 2431 24 6.64007e+06 389298 500653. 1732.36 3.28 0.165166 0.157571 21970 115934 -1 1980 21 1567 2474 160909 37169 3.86263 3.86263 -134.833 -3.86263 0 0 612192. 2118.31 0.63 0.16 0.13 -1 -1 0.63 0.0132013 0.011718 134 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 13.12 vpr 63.28 MiB -1 -1 0.42 21128 1 0.15 -1 -1 33608 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64800 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.32 748 11118 2695 7379 1044 63.3 MiB 0.28 0.00 3.28519 -94.0444 -3.28519 3.28519 2.73 0.000123249 9.761e-05 0.0104396 0.00848623 28 1638 21 6.64007e+06 263718 500653. 1732.36 2.22 0.0449587 0.0397738 21970 115934 -1 1444 20 818 1388 87790 20501 2.65757 2.65757 -90.3394 -2.65757 0 0 612192. 2118.31 0.73 0.13 0.21 -1 -1 0.73 0.111596 0.110375 98 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 13.19 vpr 64.18 MiB -1 -1 0.35 21280 1 0.14 -1 -1 33684 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 25.4 MiB 0.33 992 9914 2318 7193 403 64.2 MiB 0.18 0.08 4.02307 -125.622 -4.02307 4.02307 2.70 0.000173456 0.00013884 0.0117563 0.00960212 32 2532 20 6.64007e+06 276276 554710. 1919.41 2.64 0.0661736 0.0590957 22834 132086 -1 2139 19 1418 2476 173944 39189 3.03517 3.03517 -118.418 -3.03517 0 0 701300. 2426.64 0.81 0.10 0.44 -1 -1 0.81 0.0126859 0.011326 133 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 13.87 vpr 64.15 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33716 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 25.4 MiB 0.61 1076 14679 4725 7906 2048 64.1 MiB 0.14 0.00 4.55604 -146.606 -4.55604 4.55604 2.38 0.000165186 0.00013192 0.0149448 0.0122204 28 2564 23 6.64007e+06 288834 500653. 1732.36 3.00 0.0442953 0.0376948 21970 115934 -1 2305 19 1419 1997 147886 33366 3.41523 3.41523 -130.731 -3.41523 0 0 612192. 2118.31 1.01 0.14 0.41 -1 -1 1.01 0.0121935 0.0106907 138 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 12.92 vpr 63.93 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33688 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.2 MiB 0.23 793 7443 1484 5603 356 63.9 MiB 0.36 0.10 2.85064 -101.719 -2.85064 2.85064 2.51 0.0993528 0.0993126 0.106602 0.105223 30 1820 20 6.64007e+06 364182 526063. 1820.29 2.83 0.307575 0.30212 22546 126617 -1 1601 18 995 1636 84292 20439 2.03391 2.03391 -94.6392 -2.03391 0 0 666494. 2306.21 1.05 0.09 0.43 -1 -1 1.05 0.00959526 0.00847234 110 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 13.13 vpr 63.36 MiB -1 -1 0.46 21128 1 0.12 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.6 MiB 0.05 601 7249 1675 5111 463 63.4 MiB 0.27 0.00 2.38033 -78.5571 -2.38033 2.38033 2.15 0.000120811 9.369e-05 0.149253 0.147855 28 1406 21 6.64007e+06 188370 500653. 1732.36 2.37 0.171004 0.16582 21970 115934 -1 1259 21 659 961 75275 17283 1.93811 1.93811 -80.7431 -1.93811 0 0 612192. 2118.31 0.81 0.12 0.28 -1 -1 0.81 0.00845134 0.00722996 81 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 13.43 vpr 63.89 MiB -1 -1 0.41 21432 1 0.10 -1 -1 33884 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 0.73 928 14123 4909 7107 2107 63.9 MiB 0.57 0.00 4.89847 -147.53 -4.89847 4.89847 2.66 0.000163803 0.000133719 0.0138283 0.0110452 30 2053 21 6.64007e+06 251160 526063. 1820.29 2.38 0.0398206 0.0332004 22546 126617 -1 1815 20 1083 1623 94455 22070 3.67843 3.67843 -136.048 -3.67843 0 0 666494. 2306.21 0.97 0.13 0.28 -1 -1 0.97 0.113405 0.112226 128 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 12.62 vpr 64.07 MiB -1 -1 0.44 21432 1 0.06 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.5 MiB 0.11 927 7007 1409 5318 280 64.1 MiB 0.04 0.00 4.20815 -131.502 -4.20815 4.20815 2.64 0.000164372 0.000130898 0.00691655 0.00446861 30 2075 21 6.64007e+06 389298 526063. 1820.29 2.51 0.100907 0.0942374 22546 126617 -1 1916 21 1089 1828 106454 24448 3.50443 3.50443 -124.356 -3.50443 0 0 666494. 2306.21 0.60 0.05 0.25 -1 -1 0.60 0.0121851 0.010816 135 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 14.30 vpr 63.96 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33964 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 25.4 MiB 0.97 1164 13949 4120 8434 1395 64.0 MiB 0.19 0.00 4.61182 -142.538 -4.61182 4.61182 2.45 0.000189308 0.000153941 0.0149428 0.0121387 32 2749 21 6.64007e+06 313950 554710. 1919.41 2.32 0.0420661 0.0350828 22834 132086 -1 2382 20 1492 2358 164989 37724 4.01422 4.01422 -134.266 -4.01422 0 0 701300. 2426.64 1.18 0.04 0.28 -1 -1 1.18 0.0128044 0.0114016 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 13.60 vpr 63.09 MiB -1 -1 0.40 21432 1 0.05 -1 -1 34280 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64600 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.6 MiB 0.31 372 9836 3040 4897 1899 63.1 MiB 0.08 0.00 2.3975 -64.6606 -2.3975 2.3975 2.15 9.7093e-05 7.3797e-05 0.00748263 0.00591588 32 1098 34 6.64007e+06 226044 554710. 1919.41 2.78 0.0264807 0.0215137 22834 132086 -1 833 22 664 959 61491 17296 1.91611 1.91611 -63.8808 -1.91611 0 0 701300. 2426.64 0.80 0.10 0.20 -1 -1 0.80 0.0079382 0.00691268 77 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 14.94 vpr 63.86 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33420 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.1 MiB 0.21 962 9571 2597 6402 572 63.9 MiB 0.10 0.00 5.07715 -127.364 -5.07715 5.07715 3.16 0.000140406 0.000112436 0.00930876 0.00759333 26 2489 49 6.64007e+06 263718 477104. 1650.88 3.59 0.0472842 0.0393665 21682 110474 -1 2143 18 1204 2227 165254 36642 4.14842 4.14842 -134.356 -4.14842 0 0 585099. 2024.56 0.69 0.15 0.25 -1 -1 0.69 0.00904524 0.00800916 118 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 12.46 vpr 63.19 MiB -1 -1 0.35 20824 1 0.09 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64708 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.5 MiB 0.10 489 9374 3820 5276 278 63.2 MiB 0.19 0.00 2.56853 -74.8406 -2.56853 2.56853 2.40 0.000104711 8.0703e-05 0.00697369 0.00546991 28 1211 17 6.64007e+06 175812 500653. 1732.36 2.44 0.0628252 0.059166 21970 115934 -1 1057 16 515 587 47034 11592 1.92111 1.92111 -73.3479 -1.92111 0 0 612192. 2118.31 0.97 0.18 0.42 -1 -1 0.97 0.0057727 0.00508576 79 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 12.81 vpr 63.91 MiB -1 -1 0.43 21128 1 0.04 -1 -1 33500 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 873 9040 2110 6495 435 63.9 MiB 0.11 0.00 4.62197 -125.344 -4.62197 4.62197 2.56 0.000159609 0.000126491 0.0653272 0.00673556 28 2023 22 6.64007e+06 376740 500653. 1732.36 2.46 0.249907 0.18766 21970 115934 -1 1797 21 990 1707 119519 26176 3.53223 3.53223 -116.512 -3.53223 0 0 612192. 2118.31 1.08 0.08 0.46 -1 -1 1.08 0.0584738 0.0572238 123 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 13.10 vpr 63.95 MiB -1 -1 0.32 21128 1 0.05 -1 -1 33848 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.2 MiB 0.28 1042 8735 1871 6045 819 63.9 MiB 0.12 0.00 3.82887 -111.523 -3.82887 3.82887 2.43 0.00014814 0.000119006 0.00802507 0.00654743 32 2314 22 6.64007e+06 389298 554710. 1919.41 2.73 0.294072 0.288443 22834 132086 -1 2058 21 1192 2083 149507 33934 2.77076 2.77076 -105.552 -2.77076 0 0 701300. 2426.64 1.26 0.19 0.21 -1 -1 1.26 0.011288 0.00989814 128 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.54 vpr 64.06 MiB -1 -1 0.55 21584 1 0.12 -1 -1 33820 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 25.4 MiB 0.40 1095 14371 4083 8488 1800 64.1 MiB 0.19 0.00 4.70658 -136.83 -4.70658 4.70658 2.76 0.000192621 0.000159106 0.0188175 0.0162845 32 2512 22 6.64007e+06 339066 554710. 1919.41 2.51 0.0485059 0.0415846 22834 132086 -1 2305 21 1361 2316 168554 36841 3.80283 3.80283 -132.416 -3.80283 0 0 701300. 2426.64 1.02 0.02 0.24 -1 -1 1.02 0.0188367 0.00516954 126 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 12.28 vpr 63.75 MiB -1 -1 0.50 21280 1 0.10 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 25.1 MiB 0.24 785 11260 3393 5970 1897 63.7 MiB 0.13 0.00 3.03896 -100.907 -3.03896 3.03896 2.44 0.000148882 0.000117882 0.0110971 0.00895171 32 1733 18 6.64007e+06 200928 554710. 1919.41 2.74 0.280938 0.175077 22834 132086 -1 1542 17 742 1230 80790 18773 2.77597 2.77597 -101.487 -2.77597 0 0 701300. 2426.64 0.96 0.01 0.39 -1 -1 0.96 0.00575695 0.00510181 101 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 11.16 vpr 63.61 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33756 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.9 MiB 0.08 760 10873 2730 7151 992 63.6 MiB 0.08 0.00 3.24119 -98.8846 -3.24119 3.24119 2.52 0.000156114 0.000123869 0.010338 0.0082996 32 1673 19 6.64007e+06 288834 554710. 1919.41 1.91 0.0351917 0.0293014 22834 132086 -1 1523 15 747 1145 76032 17223 2.68277 2.68277 -95.1674 -2.68277 0 0 701300. 2426.64 1.00 0.20 0.38 -1 -1 1.00 0.00495117 0.00445152 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 12.25 vpr 63.55 MiB -1 -1 0.62 20824 1 0.11 -1 -1 33436 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.9 MiB 0.04 598 14123 3741 8412 1970 63.6 MiB 0.27 0.00 3.43604 -92.6832 -3.43604 3.43604 2.27 0.000144052 0.000113818 0.0125319 0.00997179 28 1736 22 6.64007e+06 288834 500653. 1732.36 2.63 0.150119 0.144433 21970 115934 -1 1466 17 864 1511 96966 23302 3.08217 3.08217 -97.7481 -3.08217 0 0 612192. 2118.31 0.68 0.01 0.26 -1 -1 0.68 0.00410301 0.00363012 98 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.95 vpr 63.68 MiB -1 -1 0.54 21128 1 0.20 -1 -1 33728 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.12 729 8183 1849 5637 697 63.7 MiB 0.08 0.00 3.94895 -114.681 -3.94895 3.94895 2.82 0.000143534 0.000114161 0.00825563 0.00671299 28 2003 19 6.64007e+06 238602 500653. 1732.36 2.84 0.272777 0.267656 21970 115934 -1 1799 21 1146 1871 122649 29376 2.89097 2.89097 -111.719 -2.89097 0 0 612192. 2118.31 0.85 0.08 0.35 -1 -1 0.85 0.00955595 0.00837989 110 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 12.25 vpr 63.57 MiB -1 -1 0.39 21128 1 0.14 -1 -1 33464 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.18 868 7527 1581 5352 594 63.6 MiB 0.31 0.00 3.56847 -107.495 -3.56847 3.56847 2.28 6.6268e-05 5.1978e-05 0.0079333 0.00654043 30 1788 18 6.64007e+06 339066 526063. 1820.29 2.26 0.0331832 0.0281346 22546 126617 -1 1653 21 736 1288 67223 15752 2.91597 2.91597 -101.045 -2.91597 0 0 666494. 2306.21 0.78 0.11 0.33 -1 -1 0.78 0.0100359 0.00883265 103 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.91 vpr 63.70 MiB -1 -1 0.81 21280 1 0.20 -1 -1 33804 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 25.1 MiB 0.26 739 9495 2355 6085 1055 63.7 MiB 0.33 0.00 3.3589 -103.891 -3.3589 3.3589 2.31 0.000149647 0.000119008 0.00884932 0.00713222 28 1746 18 6.64007e+06 326508 500653. 1732.36 2.21 0.033907 0.0283431 21970 115934 -1 1647 16 885 1292 83362 20140 2.38151 2.38151 -96.3639 -2.38151 0 0 612192. 2118.31 0.70 0.01 0.25 -1 -1 0.70 0.00526488 0.00476692 105 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 17.31 vpr 64.29 MiB -1 -1 0.55 21280 1 0.13 -1 -1 34168 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 25.5 MiB 0.64 1107 10336 2265 7034 1037 64.3 MiB 0.21 0.00 4.35696 -123.755 -4.35696 4.35696 2.04 0.000217399 0.000181351 0.0105331 0.00880557 26 3217 50 6.64007e+06 477204 477104. 1650.88 5.70 0.243549 0.236092 21682 110474 -1 2430 20 1394 2554 184895 41388 3.94202 3.94202 -125.549 -3.94202 0 0 585099. 2024.56 0.68 0.22 0.30 -1 -1 0.68 0.097148 0.0115271 151 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 12.70 vpr 64.03 MiB -1 -1 0.57 21584 1 0.05 -1 -1 33556 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 25.3 MiB 0.42 971 9971 2311 7104 556 64.0 MiB 0.08 0.00 3.87558 -129.13 -3.87558 3.87558 1.60 0.000191473 0.000155165 0.0337501 0.0211453 26 2546 26 6.64007e+06 464646 477104. 1650.88 1.84 0.1875 0.16984 21682 110474 -1 2085 21 1581 2420 157485 36073 3.08017 3.08017 -124.613 -3.08017 0 0 585099. 2024.56 0.51 0.20 0.22 -1 -1 0.51 0.0145844 0.0129331 147 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 14.11 vpr 63.68 MiB -1 -1 0.75 21128 1 0.10 -1 -1 33716 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 25.1 MiB 1.10 966 12186 3700 6821 1665 63.7 MiB 0.07 0.00 4.35701 -128.732 -4.35701 4.35701 1.75 0.000138399 0.000109051 0.0111862 0.00894908 32 2082 19 6.64007e+06 238602 554710. 1919.41 1.36 0.035185 0.0293146 22834 132086 -1 1879 19 1113 1632 117971 27140 3.12563 3.12563 -115.654 -3.12563 0 0 701300. 2426.64 0.66 0.14 0.31 -1 -1 0.66 0.07853 0.0774681 112 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 15.59 vpr 64.20 MiB -1 -1 0.44 21280 1 0.20 -1 -1 34036 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 0.26 1053 13933 4032 7624 2277 64.2 MiB 0.34 0.00 4.30797 -133.935 -4.30797 4.30797 3.00 0.000222897 0.000182784 0.112058 0.109189 30 2300 22 6.64007e+06 313950 526063. 1820.29 2.26 0.145191 0.137476 22546 126617 -1 1981 18 1358 2350 138922 31524 2.76797 2.76797 -112.105 -2.76797 0 0 666494. 2306.21 0.70 0.14 0.30 -1 -1 0.70 0.0127393 0.0113077 138 61 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 15.72 vpr 63.82 MiB -1 -1 0.34 21584 1 0.08 -1 -1 33836 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 25.7 MiB 2.00 1119 14375 4168 8092 2115 63.8 MiB 0.18 0.00 5.89333 -172.903 -5.89333 5.89333 2.95 0.000174271 0.000139019 0.0155371 0.0127587 32 3473 30 6.64007e+06 364182 554710. 1919.41 1.79 0.0792757 0.0711823 22834 132086 -1 2375 21 2390 3588 239228 57632 4.68934 4.68934 -158.968 -4.68934 0 0 701300. 2426.64 0.85 0.17 0.21 -1 -1 0.85 0.0137103 0.0122178 172 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 15.41 vpr 64.33 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33788 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 25.5 MiB 1.51 1191 15768 5423 8594 1751 64.3 MiB 0.20 0.00 5.08361 -153.384 -5.08361 5.08361 2.65 0.000201829 0.00016399 0.0172026 0.0140998 32 2811 23 6.64007e+06 339066 554710. 1919.41 1.06 0.112891 0.104888 22834 132086 -1 2395 21 1809 2783 211924 45230 4.56048 4.56048 -153.028 -4.56048 0 0 701300. 2426.64 1.02 0.22 0.34 -1 -1 1.02 0.0144434 0.0129432 164 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 15.13 vpr 64.00 MiB -1 -1 0.38 21280 1 0.11 -1 -1 33504 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1006 12661 3249 8412 1000 64.0 MiB 0.28 0.08 4.68524 -135.636 -4.68524 4.68524 3.06 0.000193995 0.000158496 0.0133197 0.0110247 32 2363 21 6.64007e+06 389298 554710. 1919.41 1.91 0.0461921 0.0391972 22834 132086 -1 2116 17 995 1684 110019 25787 3.33983 3.33983 -121.897 -3.33983 0 0 701300. 2426.64 0.84 0.03 0.52 -1 -1 0.84 0.00968633 0.00858817 135 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 16.22 vpr 63.91 MiB -1 -1 0.45 21280 1 0.15 -1 -1 33884 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 25.2 MiB 0.85 1070 14679 4337 8393 1949 63.9 MiB 0.33 0.00 4.36796 -120.329 -4.36796 4.36796 2.79 0.000159796 0.00012668 0.11478 0.0118549 32 2358 21 6.64007e+06 288834 554710. 1919.41 2.97 0.213476 0.0337542 22834 132086 -1 2004 21 1171 1731 118584 26899 3.84083 3.84083 -121.035 -3.84083 0 0 701300. 2426.64 1.00 0.21 0.30 -1 -1 1.00 0.0116537 0.0104155 119 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 15.83 vpr 64.25 MiB -1 -1 0.70 21584 1 0.10 -1 -1 33796 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 26.0 MiB 0.76 1249 19868 5433 11877 2558 64.3 MiB 0.60 0.28 5.1415 -166.814 -5.1415 5.1415 2.63 0.000248789 0.00020764 0.021394 0.0174957 32 2903 23 6.64007e+06 502320 554710. 1919.41 1.66 0.0654387 0.051033 22834 132086 -1 2475 21 1616 2412 153796 35137 3.92729 3.92729 -147.478 -3.92729 0 0 701300. 2426.64 0.85 0.17 0.37 -1 -1 0.85 0.0158723 0.014163 174 87 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 14.95 vpr 63.68 MiB -1 -1 0.31 21128 1 0.03 -1 -1 33912 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65208 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.9 MiB 0.18 803 5025 1005 3649 371 63.7 MiB 0.15 0.00 3.83987 -104.767 -3.83987 3.83987 3.06 0.000136515 0.000107519 0.00602699 0.00497481 30 1771 17 6.64007e+06 263718 526063. 1820.29 2.98 0.0300062 0.0252814 22546 126617 -1 1613 18 779 1393 81598 18704 2.73857 2.73857 -99.0848 -2.73857 0 0 666494. 2306.21 0.85 0.03 0.26 -1 -1 0.85 0.00875297 0.00774801 101 28 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 17.37 vpr 64.16 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33628 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 25.4 MiB 0.57 1162 10228 2647 6642 939 64.2 MiB 0.25 0.00 5.14752 -155.108 -5.14752 5.14752 2.87 0.000191031 0.000134154 0.0114316 0.00940382 26 2968 23 6.64007e+06 313950 477104. 1650.88 4.73 0.400076 0.134395 21682 110474 -1 2490 20 1430 2050 143308 32562 4.33708 4.33708 -147.453 -4.33708 0 0 585099. 2024.56 0.73 0.10 0.35 -1 -1 0.73 0.0675381 0.0661694 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 16.99 vpr 64.15 MiB -1 -1 0.68 21128 1 0.14 -1 -1 33876 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 25.4 MiB 0.51 1031 9643 2047 7145 451 64.1 MiB 0.48 0.00 4.0171 -121.518 -4.0171 4.0171 2.66 0.000161868 0.000130124 0.422908 0.301811 28 2635 19 6.64007e+06 414414 500653. 1732.36 3.82 0.453902 0.328294 21970 115934 -1 2235 20 1444 2574 170168 39668 3.08817 3.08817 -113.812 -3.08817 0 0 612192. 2118.31 0.87 0.12 0.09 -1 -1 0.87 0.0123934 0.0108191 131 53 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 15.58 vpr 63.88 MiB -1 -1 0.52 21432 1 0.04 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 25.2 MiB 0.06 912 5938 1237 4353 348 63.9 MiB 0.13 0.00 4.13756 -120.743 -4.13756 4.13756 2.45 0.000185711 0.000130447 0.00636428 0.00525361 32 2155 20 6.64007e+06 301392 554710. 1919.41 3.16 0.131566 0.0293915 22834 132086 -1 1880 19 1203 2210 129597 30645 3.47223 3.47223 -118.931 -3.47223 0 0 701300. 2426.64 1.18 0.14 0.33 -1 -1 1.18 0.0114014 0.0101009 123 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 17.29 vpr 64.19 MiB -1 -1 1.00 21584 1 0.30 -1 -1 33776 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.63 1105 14713 4479 8365 1869 64.2 MiB 0.21 0.00 4.89735 -144.949 -4.89735 4.89735 2.90 0.000168871 0.000134126 0.0156264 0.0127157 32 2397 20 6.64007e+06 301392 554710. 1919.41 2.78 0.131745 0.124274 22834 132086 -1 2149 17 1067 1469 112692 24874 3.50943 3.50943 -128.789 -3.50943 0 0 701300. 2426.64 1.22 0.03 0.36 -1 -1 1.22 0.0114101 0.0103052 138 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 15.48 vpr 64.20 MiB -1 -1 1.30 21432 1 0.12 -1 -1 33544 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 25.4 MiB 0.26 1031 9513 2066 6737 710 64.2 MiB 0.31 0.00 3.7565 -124.965 -3.7565 3.7565 2.77 0.000183549 0.000150674 0.0100477 0.00825976 32 2453 19 6.64007e+06 401856 554710. 1919.41 2.91 0.151794 0.0352663 22834 132086 -1 2103 18 1153 1864 122502 28274 2.98197 2.98197 -117.268 -2.98197 0 0 701300. 2426.64 1.07 0.20 0.45 -1 -1 1.07 0.0125097 0.0112065 133 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 16.27 vpr 64.25 MiB -1 -1 0.59 21432 1 0.18 -1 -1 33732 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 25.5 MiB 1.36 1092 11616 2944 7805 867 64.3 MiB 0.26 0.00 4.776 -145.641 -4.776 4.776 2.43 0.000189539 0.000154761 0.0108773 0.00891344 30 2383 19 6.64007e+06 464646 526063. 1820.29 2.78 0.266334 0.259319 22546 126617 -1 2037 16 956 1502 76540 18706 3.47103 3.47103 -128.78 -3.47103 0 0 666494. 2306.21 1.37 0.03 0.48 -1 -1 1.37 0.0116124 0.0104606 145 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 20.02 vpr 63.93 MiB -1 -1 0.40 21432 1 0.14 -1 -1 34120 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.1 MiB 0.08 830 7023 1481 5311 231 63.9 MiB 0.24 0.00 4.19967 -120.859 -4.19967 4.19967 2.78 0.000157482 0.0001245 0.0069072 0.00562662 30 2090 21 6.64007e+06 364182 526063. 1820.29 3.23 0.0359906 0.0304569 22546 126617 -1 1637 18 960 1653 89780 21310 3.90303 3.90303 -116.463 -3.90303 0 0 666494. 2306.21 0.96 0.03 0.39 -1 -1 0.96 0.0135745 0.0124929 122 24 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 14.87 vpr 64.04 MiB -1 -1 0.78 21280 1 0.17 -1 -1 33648 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 25.4 MiB 0.67 1049 7498 1593 5357 548 64.0 MiB 0.35 0.17 5.183 -143.62 -5.183 5.183 2.42 0.000161802 0.000128753 0.00815827 0.00675629 28 2436 22 6.64007e+06 301392 500653. 1732.36 1.84 0.0955921 0.0900453 21970 115934 -1 2277 17 1337 1977 137691 32123 3.84302 3.84302 -134.69 -3.84302 0 0 612192. 2118.31 0.92 0.15 0.34 -1 -1 0.92 0.011473 0.0100386 133 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 15.98 vpr 64.27 MiB -1 -1 0.57 21432 1 0.03 -1 -1 33808 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 25.5 MiB 1.16 1063 10423 2679 6644 1100 64.3 MiB 0.12 0.00 5.14867 -149.951 -5.14867 5.14867 2.82 0.000187399 0.000152424 0.0114909 0.00944423 32 2827 22 6.64007e+06 313950 554710. 1919.41 2.18 0.0440822 0.0373757 22834 132086 -1 2429 19 1531 2436 167558 39145 4.38209 4.38209 -145.471 -4.38209 0 0 701300. 2426.64 0.92 0.11 0.55 -1 -1 0.92 0.0123503 0.0110317 148 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 15.48 vpr 64.17 MiB -1 -1 0.98 21736 1 0.12 -1 -1 33644 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 25.4 MiB 0.82 999 9347 2537 5990 820 64.2 MiB 0.34 0.00 4.30607 -131.887 -4.30607 4.30607 2.70 0.000191115 0.000154774 0.0115097 0.00955572 32 2621 18 6.64007e+06 276276 554710. 1919.41 2.05 0.0600607 0.0369295 22834 132086 -1 2135 21 1630 2937 190918 44267 3.45022 3.45022 -127.121 -3.45022 0 0 701300. 2426.64 0.96 0.09 0.46 -1 -1 0.96 0.0134535 0.0119462 136 77 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 14.97 vpr 63.26 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33688 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64780 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.8 MiB 0.30 707 15103 5445 7308 2350 63.3 MiB 0.32 0.00 3.43127 -100.64 -3.43127 3.43127 2.78 0.000145001 0.000111646 0.0123216 0.00982106 30 1671 23 6.64007e+06 301392 526063. 1820.29 2.26 0.0642437 0.0579831 22546 126617 -1 1434 19 724 1170 74656 16740 2.77677 2.77677 -95.239 -2.77677 0 0 666494. 2306.21 1.13 0.02 0.19 -1 -1 1.13 0.00849099 0.00751566 97 23 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 15.24 vpr 64.27 MiB -1 -1 0.49 21128 1 0.09 -1 -1 33948 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 25.5 MiB 0.78 879 16907 6072 8286 2549 64.3 MiB 0.33 0.00 4.05536 -136.666 -4.05536 4.05536 2.54 0.000169209 0.000133494 0.117933 0.114598 30 2336 24 6.64007e+06 276276 526063. 1820.29 3.01 0.148276 0.140395 22546 126617 -1 1899 27 1588 2334 172460 38388 3.44717 3.44717 -125.656 -3.44717 0 0 666494. 2306.21 0.85 0.22 0.19 -1 -1 0.85 0.165319 0.163663 127 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 18.30 vpr 64.05 MiB -1 -1 0.49 21432 1 0.07 -1 -1 33680 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 25.8 MiB 0.95 1391 17943 5776 10036 2131 64.0 MiB 0.57 0.10 5.4603 -163.746 -5.4603 5.4603 2.99 0.000200748 0.000161365 0.0197282 0.0159715 26 3829 37 6.64007e+06 364182 477104. 1650.88 5.10 0.12643 0.116478 21682 110474 -1 2903 21 2212 3431 279508 61047 4.77288 4.77288 -159.713 -4.77288 0 0 585099. 2024.56 0.78 0.21 0.26 -1 -1 0.78 0.0152005 0.0136309 169 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.80 vpr 63.93 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33988 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 25.2 MiB 0.66 899 8418 1747 6220 451 63.9 MiB 0.12 0.00 4.50246 -133.681 -4.50246 4.50246 2.39 0.00020338 0.000166538 0.0715383 0.069946 30 2214 19 6.64007e+06 401856 526063. 1820.29 2.72 0.123628 0.117608 22546 126617 -1 1757 20 950 1554 85616 20273 3.01637 3.01637 -112.762 -3.01637 0 0 666494. 2306.21 0.95 0.13 0.18 -1 -1 0.95 0.0128968 0.0115379 133 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 14.73 vpr 63.76 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33760 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 25.1 MiB 0.14 644 6718 1441 4611 666 63.8 MiB 0.13 0.00 3.45804 -101.577 -3.45804 3.45804 3.27 0.000146923 0.000116831 0.0066095 0.00537478 32 1668 19 6.64007e+06 326508 554710. 1919.41 2.63 0.134918 0.129651 22834 132086 -1 1494 17 978 1572 96866 23828 2.87177 2.87177 -100.543 -2.87177 0 0 701300. 2426.64 0.55 0.06 0.26 -1 -1 0.55 0.00896691 0.00797922 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 17.93 vpr 63.96 MiB -1 -1 0.53 21280 1 0.13 -1 -1 33744 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 25.8 MiB 1.27 1258 17023 5454 8906 2663 64.0 MiB 0.48 0.00 6.52766 -186.909 -6.52766 6.52766 2.44 0.00021071 0.000171224 0.0211344 0.0174472 32 3197 27 6.64007e+06 339066 554710. 1919.41 4.23 0.141289 0.0515818 22834 132086 -1 2657 22 2151 3021 219961 49163 5.34414 5.34414 -174.228 -5.34414 0 0 701300. 2426.64 0.73 0.22 0.44 -1 -1 0.73 0.0167397 0.0148986 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 15.80 vpr 64.05 MiB -1 -1 0.48 21280 1 0.10 -1 -1 33616 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 25.3 MiB 0.41 911 6091 1101 4753 237 64.1 MiB 0.16 0.00 4.60401 -138.195 -4.60401 4.60401 2.97 0.000169471 0.000135364 0.00679144 0.00568019 26 2378 47 6.64007e+06 414414 477104. 1650.88 4.03 0.145776 0.138443 21682 110474 -1 2062 21 1448 2243 152231 34470 3.70502 3.70502 -129.318 -3.70502 0 0 585099. 2024.56 0.51 0.13 0.18 -1 -1 0.51 0.0128087 0.0114353 130 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 16.23 vpr 63.68 MiB -1 -1 0.49 20672 1 0.13 -1 -1 33648 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.9 MiB 0.23 820 12375 3515 6889 1971 63.7 MiB 0.11 0.00 3.58247 -102.931 -3.58247 3.58247 3.69 0.000132157 0.000104545 0.0101192 0.00806529 26 1931 26 6.64007e+06 288834 477104. 1650.88 3.88 0.144927 0.139074 21682 110474 -1 1824 20 946 1569 120750 26711 2.80577 2.80577 -101.898 -2.80577 0 0 585099. 2024.56 0.98 0.13 0.19 -1 -1 0.98 0.00900647 0.00783961 100 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 22.26 vpr 63.98 MiB -1 -1 0.51 21432 1 0.07 -1 -1 33448 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1059 11573 2749 8139 685 64.0 MiB 0.20 0.00 5.58461 -136.884 -5.58461 5.58461 3.76 0.000259232 0.000217727 0.0117972 0.00968879 26 3084 26 6.64007e+06 426972 477104. 1650.88 9.48 0.0468167 0.0394879 21682 110474 -1 2444 21 1450 2812 206053 44907 4.99708 4.99708 -139.387 -4.99708 0 0 585099. 2024.56 1.14 0.33 0.27 -1 -1 1.14 0.0209779 0.015682 139 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 15.61 vpr 63.59 MiB -1 -1 0.40 21128 1 0.04 -1 -1 33856 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.9 MiB 0.12 692 7404 1537 5210 657 63.6 MiB 0.14 0.00 3.45624 -104.571 -3.45624 3.45624 3.37 0.000134082 0.000105468 0.00729556 0.00588096 28 1972 25 6.64007e+06 251160 500653. 1732.36 3.29 0.0323933 0.0271628 21970 115934 -1 1674 19 1142 1970 132697 34368 2.78177 2.78177 -106.065 -2.78177 0 0 612192. 2118.31 0.74 0.12 0.28 -1 -1 0.74 0.0141877 0.0131792 104 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 15.62 vpr 63.77 MiB -1 -1 0.70 21432 1 0.18 -1 -1 33912 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65296 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 25.1 MiB 0.19 661 13271 3491 8020 1760 63.8 MiB 0.36 0.00 4.08278 -107.388 -4.08278 4.08278 3.25 0.000154168 0.000122978 0.123273 0.121177 26 1782 23 6.64007e+06 414414 477104. 1650.88 3.28 0.2287 0.222436 21682 110474 -1 1560 18 844 1535 98500 23978 2.80376 2.80376 -99.1998 -2.80376 0 0 585099. 2024.56 0.92 0.03 0.43 -1 -1 0.92 0.0093052 0.00828504 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 16.32 vpr 64.20 MiB -1 -1 0.85 21432 1 0.11 -1 -1 33872 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 25.5 MiB 1.20 1051 14871 4721 7474 2676 64.2 MiB 0.26 0.00 4.65946 -136.547 -4.65946 4.65946 2.53 0.000172473 0.000137511 0.0152604 0.0124275 32 2635 26 6.64007e+06 326508 554710. 1919.41 3.76 0.466617 0.138305 22834 132086 -1 2198 18 1449 2156 149608 34012 3.61362 3.61362 -122.49 -3.61362 0 0 701300. 2426.64 1.02 0.21 0.31 -1 -1 1.02 0.0131463 0.0119163 139 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 14.33 vpr 64.03 MiB -1 -1 0.54 21432 1 0.17 -1 -1 33816 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.3 MiB 0.35 788 7108 1431 5495 182 64.0 MiB 0.15 0.00 4.47545 -132.712 -4.47545 4.47545 2.71 0.000178399 0.000143622 0.00841994 0.00695599 32 2149 22 6.64007e+06 301392 554710. 1919.41 2.20 0.0423484 0.0360955 22834 132086 -1 1836 22 1619 2505 199669 44463 3.78683 3.78683 -129.199 -3.78683 0 0 701300. 2426.64 1.41 0.32 0.28 -1 -1 1.41 0.013947 0.0124082 130 54 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 15.22 vpr 64.06 MiB -1 -1 0.50 21280 1 0.07 -1 -1 33692 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 25.5 MiB 0.51 1016 16652 4669 9876 2107 64.1 MiB 0.23 0.00 4.72138 -141.559 -4.72138 4.72138 2.57 0.000174713 0.000139391 0.126072 0.122738 32 2235 17 6.64007e+06 351624 554710. 1919.41 2.56 0.155042 0.147507 22834 132086 -1 2079 18 1060 1825 121513 27657 3.44402 3.44402 -125.897 -3.44402 0 0 701300. 2426.64 0.85 0.13 0.43 -1 -1 0.85 0.0115813 0.0104165 133 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 15.93 vpr 63.59 MiB -1 -1 0.42 21432 1 0.18 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 25.1 MiB 0.59 739 10406 2871 6114 1421 63.6 MiB 0.26 0.00 4.77715 -129.788 -4.77715 4.77715 2.54 0.000130957 0.000103633 0.0100465 0.00812432 26 2464 34 6.64007e+06 213486 477104. 1650.88 4.10 0.195544 0.188982 21682 110474 -1 1874 21 1194 1673 136353 31626 3.37823 3.37823 -117.547 -3.37823 0 0 585099. 2024.56 0.76 0.19 0.22 -1 -1 0.76 0.0104379 0.0092344 105 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 15.74 vpr 63.82 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33640 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.87 900 13966 4576 7232 2158 63.8 MiB 0.36 0.00 3.96736 -126.928 -3.96736 3.96736 3.04 0.000155506 0.000122347 0.0146695 0.0118338 32 2032 19 6.64007e+06 238602 554710. 1919.41 2.39 0.043114 0.0360288 22834 132086 -1 1796 19 1186 1711 121103 26352 3.03063 3.03063 -115.915 -3.03063 0 0 701300. 2426.64 1.01 0.07 0.24 -1 -1 1.01 0.0114055 0.0101854 113 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.57 vpr 64.00 MiB -1 -1 0.35 21584 1 0.07 -1 -1 33764 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 0.63 869 11759 2827 8114 818 64.0 MiB 0.19 0.00 3.56047 -98.9603 -3.56047 3.56047 3.06 0.000162187 0.000128606 0.0112268 0.00915129 26 2451 35 6.64007e+06 414414 477104. 1650.88 4.28 0.124398 0.117208 21682 110474 -1 1883 19 1046 1820 121515 28037 3.00517 3.00517 -101.278 -3.00517 0 0 585099. 2024.56 1.02 0.16 0.16 -1 -1 1.02 0.132944 0.131712 123 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 16.11 vpr 63.82 MiB -1 -1 0.59 21128 1 0.08 -1 -1 33768 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 25.2 MiB 0.64 923 12623 3556 7108 1959 63.8 MiB 0.29 0.00 4.42192 -107.107 -4.42192 4.42192 2.88 0.000154515 0.000123667 0.011005 0.00887745 26 2207 22 6.64007e+06 439530 477104. 1650.88 3.42 0.038703 0.0324006 21682 110474 -1 1846 21 1076 1977 144972 32111 3.60762 3.60762 -103.379 -3.60762 0 0 585099. 2024.56 0.71 0.04 0.18 -1 -1 0.71 0.0102956 0.00885177 115 27 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 16.31 vpr 63.78 MiB -1 -1 0.64 21584 1 0.14 -1 -1 33868 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 25.2 MiB 1.12 868 13152 3960 7274 1918 63.8 MiB 0.52 0.00 4.18997 -120.71 -4.18997 4.18997 3.07 0.000159962 0.000127892 0.458529 0.11426 30 1859 20 6.64007e+06 226044 526063. 1820.29 2.79 0.485888 0.137589 22546 126617 -1 1604 16 950 1642 89587 20645 2.88777 2.88777 -111.889 -2.88777 0 0 666494. 2306.21 0.74 0.13 0.49 -1 -1 0.74 0.107574 0.106506 108 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 17.94 vpr 63.89 MiB -1 -1 0.51 21128 1 0.03 -1 -1 33752 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 25.2 MiB 0.66 936 13105 4260 6168 2677 63.9 MiB 0.29 0.00 3.98936 -131.555 -3.98936 3.98936 3.43 0.000156337 0.000123429 0.0135869 0.0110377 32 2306 23 6.64007e+06 263718 554710. 1919.41 3.05 0.0426464 0.0355717 22834 132086 -1 1937 17 1188 1717 111112 25766 3.11317 3.11317 -120.016 -3.11317 0 0 701300. 2426.64 1.04 0.07 0.24 -1 -1 1.04 0.0119899 0.0109284 121 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.77 vpr 63.78 MiB -1 -1 0.52 21128 1 0.12 -1 -1 33872 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.21 1072 16295 4636 9641 2018 63.8 MiB 0.32 0.00 4.60183 -132.105 -4.60183 4.60183 2.76 0.000157977 0.000125883 0.0136171 0.0110441 32 2361 23 6.64007e+06 401856 554710. 1919.41 3.08 0.0425043 0.0357157 22834 132086 -1 2070 21 1298 2300 158131 35716 3.58143 3.58143 -121.596 -3.58143 0 0 701300. 2426.64 0.98 0.17 0.34 -1 -1 0.98 0.0120079 0.0107192 127 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 16.54 vpr 63.99 MiB -1 -1 0.47 21280 1 0.11 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 25.4 MiB 1.12 1141 10618 2698 7154 766 64.0 MiB 0.21 0.00 5.38066 -169.108 -5.38066 5.38066 2.36 0.000187965 0.000153004 0.0789252 0.0768864 32 2828 24 6.64007e+06 301392 554710. 1919.41 3.28 0.138799 0.133123 22834 132086 -1 2471 20 1618 2374 162388 37377 4.22469 4.22469 -153.669 -4.22469 0 0 701300. 2426.64 1.02 0.12 0.34 -1 -1 1.02 0.0126606 0.0112805 146 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 15.80 vpr 64.25 MiB -1 -1 0.42 21584 1 0.10 -1 -1 33844 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 0.48 1093 17423 4766 10394 2263 64.3 MiB 0.32 0.00 5.20872 -147.682 -5.20872 5.20872 2.77 0.000211969 0.000174725 0.120411 0.117243 32 2487 20 6.64007e+06 426972 554710. 1919.41 2.98 0.351042 0.342995 22834 132086 -1 2176 22 1357 2464 161896 37754 4.13968 4.13968 -138.72 -4.13968 0 0 701300. 2426.64 1.14 0.33 0.33 -1 -1 1.14 0.0139973 0.0123757 144 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 20.38 vpr 64.29 MiB -1 -1 0.38 21280 1 0.21 -1 -1 33796 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.28 1020 5976 1067 4592 317 64.3 MiB 0.23 0.00 4.48481 -139.253 -4.48481 4.48481 2.65 0.000271766 0.000232292 0.00762352 0.00621737 26 3037 34 6.64007e+06 464646 477104. 1650.88 9.27 0.278558 0.271695 21682 110474 -1 2532 19 1528 2617 199141 44832 4.02223 4.02223 -142.177 -4.02223 0 0 585099. 2024.56 0.63 0.09 0.23 -1 -1 0.63 0.0128737 0.0114939 140 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 19.84 vpr 63.53 MiB -1 -1 0.49 21128 1 0.34 -1 -1 34048 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 24.9 MiB 0.97 720 9706 2873 5961 872 63.5 MiB 0.10 0.00 3.87875 -113.748 -3.87875 3.87875 3.20 0.000142299 0.000113822 0.0097933 0.00797525 26 2012 21 6.64007e+06 238602 477104. 1650.88 4.02 0.201287 0.195543 21682 110474 -1 1680 20 1072 1796 126030 29211 2.77977 2.77977 -103.879 -2.77977 0 0 585099. 2024.56 0.92 0.04 0.22 -1 -1 0.92 0.0099439 0.00876209 104 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 20.88 vpr 64.00 MiB -1 -1 0.36 21432 1 0.05 -1 -1 33908 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 0.44 943 11431 3023 6401 2007 64.0 MiB 0.16 0.00 4.78844 -139.402 -4.78844 4.78844 3.11 0.000186671 0.000151959 0.0145199 0.0119405 32 2200 19 6.64007e+06 288834 554710. 1919.41 3.61 0.047531 0.040402 22834 132086 -1 1954 22 1661 2537 190798 42661 3.78083 3.78083 -134.259 -3.78083 0 0 701300. 2426.64 0.98 0.10 0.26 -1 -1 0.98 0.0132331 0.0116885 138 63 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 21.02 vpr 63.92 MiB -1 -1 0.71 20976 1 0.05 -1 -1 33728 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 25.3 MiB 0.60 1173 16170 4393 9836 1941 63.9 MiB 0.38 0.00 5.44166 -158.46 -5.44166 5.44166 2.91 0.000235363 0.000199151 0.0169446 0.0138694 26 3066 44 6.64007e+06 326508 477104. 1650.88 7.70 0.163087 0.154107 21682 110474 -1 2530 20 1510 2361 214573 45177 4.20469 4.20469 -146.692 -4.20469 0 0 585099. 2024.56 0.78 0.06 0.10 -1 -1 0.78 0.0454405 0.0440837 140 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 17.06 vpr 64.02 MiB -1 -1 1.00 21584 1 0.03 -1 -1 33772 -1 -1 30 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 25.4 MiB 1.10 1218 15003 4568 8445 1990 64.0 MiB 0.48 0.00 5.37715 -156.36 -5.37715 5.37715 3.05 0.000182094 0.000146667 0.0149055 0.0122418 30 2584 21 6.64007e+06 376740 526063. 1820.29 3.43 0.0994961 0.0925531 22546 126617 -1 2097 19 945 1496 90295 19909 4.17788 4.17788 -140.711 -4.17788 0 0 666494. 2306.21 0.84 0.06 0.35 -1 -1 0.84 0.0118243 0.0106109 148 47 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 16.42 vpr 64.22 MiB -1 -1 0.91 21280 1 0.19 -1 -1 33648 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 25.5 MiB 0.67 896 9167 2079 5963 1125 64.2 MiB 0.24 0.00 4.45681 -129.866 -4.45681 4.45681 2.76 0.000180568 0.000142043 0.00790361 0.00646221 32 2155 17 6.64007e+06 414414 554710. 1919.41 2.83 0.0407063 0.0347473 22834 132086 -1 1914 20 1197 2020 120534 29155 3.30083 3.30083 -120.042 -3.30083 0 0 701300. 2426.64 1.57 0.18 0.40 -1 -1 1.57 0.0136899 0.012031 135 83 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 15.40 vpr 63.93 MiB -1 -1 0.44 21432 1 0.18 -1 -1 33708 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.34 1055 11059 3307 6879 873 63.9 MiB 0.12 0.00 5.0056 -144.674 -5.0056 5.0056 2.88 0.000173519 0.000140153 0.0150455 0.0128531 32 2576 22 6.64007e+06 263718 554710. 1919.41 2.57 0.127457 0.120909 22834 132086 -1 2335 18 1326 2304 163091 36087 3.94982 3.94982 -137.537 -3.94982 0 0 701300. 2426.64 1.32 0.44 0.24 -1 -1 1.32 0.0118253 0.0105433 134 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 16.24 vpr 64.13 MiB -1 -1 0.48 21736 1 0.27 -1 -1 33816 -1 -1 31 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 25.5 MiB 0.62 991 14168 3722 8736 1710 64.1 MiB 0.30 0.00 4.90164 -138.394 -4.90164 4.90164 2.61 0.000168324 0.000134752 0.189668 0.187041 26 2502 24 6.64007e+06 389298 477104. 1650.88 2.33 0.222331 0.214911 21682 110474 -1 2063 15 1013 1655 107542 24963 3.75663 3.75663 -132.162 -3.75663 0 0 585099. 2024.56 1.15 0.11 0.27 -1 -1 1.15 0.0116906 0.0105427 132 85 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 13.28 vpr 63.55 MiB -1 -1 0.60 20976 1 0.19 -1 -1 33912 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65072 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.22 698 12416 3955 6725 1736 63.5 MiB 0.17 0.00 3.88758 -112.897 -3.88758 3.88758 2.64 0.000133485 0.00010512 0.0114222 0.00915776 28 1787 17 6.64007e+06 188370 500653. 1732.36 3.09 0.0347648 0.0292322 21970 115934 -1 1611 20 959 1457 110874 25319 2.99497 2.99497 -107.803 -2.99497 0 0 612192. 2118.31 0.68 0.14 0.13 -1 -1 0.68 0.00911602 0.00808967 96 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 16.52 vpr 64.19 MiB -1 -1 0.48 21432 1 0.09 -1 -1 33704 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 25.4 MiB 0.67 964 13455 3168 8058 2229 64.2 MiB 0.27 0.00 4.65236 -138.008 -4.65236 4.65236 2.98 0.00016497 0.000131649 0.0127342 0.010377 32 2137 22 6.64007e+06 401856 554710. 1919.41 2.40 0.0733045 0.0661312 22834 132086 -1 1819 19 1275 2138 130681 30237 3.85002 3.85002 -129.858 -3.85002 0 0 701300. 2426.64 1.02 0.22 0.24 -1 -1 1.02 0.0114272 0.0101271 132 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 15.90 vpr 64.29 MiB -1 -1 0.59 21736 1 0.18 -1 -1 33792 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 25.5 MiB 0.80 1060 10103 2308 6560 1235 64.3 MiB 0.34 0.00 4.84241 -152.382 -4.84241 4.84241 2.76 0.000180796 0.000145089 0.0122441 0.0100669 32 2600 21 6.64007e+06 276276 554710. 1919.41 3.19 0.207791 0.20069 22834 132086 -1 2330 23 1974 3186 228432 52206 3.99923 3.99923 -143.607 -3.99923 0 0 701300. 2426.64 1.15 0.22 0.26 -1 -1 1.15 0.0148665 0.013219 148 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 15.54 vpr 63.82 MiB -1 -1 0.41 21280 1 0.10 -1 -1 33720 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 25.1 MiB 0.63 948 13992 4317 7911 1764 63.8 MiB 0.24 0.00 4.31784 -124.811 -4.31784 4.31784 2.96 0.000138163 0.000110108 0.0297505 0.0271951 32 2139 22 6.64007e+06 251160 554710. 1919.41 3.01 0.055222 0.0489866 22834 132086 -1 1864 17 941 1225 86209 19856 3.21283 3.21283 -114.944 -3.21283 0 0 701300. 2426.64 1.21 0.11 0.28 -1 -1 1.21 0.00974595 0.00874286 109 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 15.95 vpr 63.65 MiB -1 -1 0.44 21128 1 0.14 -1 -1 33644 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.14 781 9417 2297 6451 669 63.7 MiB 0.15 0.00 3.81035 -110.01 -3.81035 3.81035 3.05 0.000126892 0.000100235 0.108806 0.107235 32 1781 20 6.64007e+06 263718 554710. 1919.41 2.74 0.239682 0.234428 22834 132086 -1 1576 20 946 1624 103938 23927 2.61437 2.61437 -99.4048 -2.61437 0 0 701300. 2426.64 0.83 0.21 0.52 -1 -1 0.83 0.00918862 0.00810276 106 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 19.82 vpr 64.23 MiB -1 -1 0.44 21584 1 0.24 -1 -1 33980 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 25.7 MiB 1.01 895 10542 2890 7065 587 64.2 MiB 0.18 0.00 5.11544 -156.548 -5.11544 5.11544 2.76 0.00018834 0.000155804 0.0250306 0.0230352 26 3084 38 6.64007e+06 326508 477104. 1650.88 6.97 0.100407 0.0925314 21682 110474 -1 2430 24 1928 2531 182863 44364 4.40329 4.40329 -157.453 -4.40329 0 0 585099. 2024.56 1.00 0.15 0.28 -1 -1 1.00 0.0142369 0.0126004 144 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 16.84 vpr 64.21 MiB -1 -1 0.45 21432 1 0.20 -1 -1 33696 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 25.5 MiB 0.63 1180 8283 2004 5658 621 64.2 MiB 0.46 0.00 4.91139 -150.395 -4.91139 4.91139 2.94 0.000164407 0.00013181 0.00923235 0.00764545 26 3166 31 6.64007e+06 364182 477104. 1650.88 3.53 0.0641874 0.0573494 21682 110474 -1 2596 21 1653 2552 195854 42702 4.72769 4.72769 -160.09 -4.72769 0 0 585099. 2024.56 0.90 0.16 0.44 -1 -1 0.90 0.0118917 0.0105273 155 56 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 16.15 vpr 64.20 MiB -1 -1 0.72 21432 1 0.17 -1 -1 33824 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 0.37 1180 11932 3220 7881 831 64.2 MiB 0.41 0.00 5.49089 -148.419 -5.49089 5.49089 2.66 8.2603e-05 6.6418e-05 0.0107358 0.00881626 26 3069 24 6.64007e+06 452088 477104. 1650.88 4.66 0.0456321 0.0388008 21682 110474 -1 2506 19 1528 2735 230515 47745 4.29109 4.29109 -144.084 -4.29109 0 0 585099. 2024.56 0.89 0.15 0.20 -1 -1 0.89 0.10888 0.107563 153 3 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 15.13 vpr 63.76 MiB -1 -1 0.51 21432 1 0.13 -1 -1 33872 -1 -1 32 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 25.2 MiB 0.46 874 9892 2506 6506 880 63.8 MiB 0.17 0.00 3.51924 -104.27 -3.51924 3.51924 3.24 0.000150198 0.000118987 0.00985718 0.008063 30 1829 20 6.64007e+06 401856 526063. 1820.29 2.48 0.0541673 0.0483061 22546 126617 -1 1618 20 1032 1862 89124 21789 2.85117 2.85117 -98.5541 -2.85117 0 0 666494. 2306.21 0.96 0.18 0.23 -1 -1 0.96 0.0106496 0.00932537 121 52 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 15.57 vpr 63.57 MiB -1 -1 0.49 21128 1 0.15 -1 -1 33992 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65092 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.9 MiB 0.11 565 12120 3265 7503 1352 63.6 MiB 0.26 0.01 3.49724 -93.0073 -3.49724 3.49724 3.21 0.000207145 0.000119599 0.140462 0.0104618 28 1515 21 6.64007e+06 263718 500653. 1732.36 3.35 0.163059 0.0294724 21970 115934 -1 1345 20 1021 1500 104776 24885 2.81977 2.81977 -92.0925 -2.81977 0 0 612192. 2118.31 0.87 0.11 0.29 -1 -1 0.87 0.00902791 0.0079083 97 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.69 vpr 64.15 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 26.0 MiB 0.80 1325 16572 5453 8679 2440 64.1 MiB 0.65 0.00 4.38715 -140.393 -4.38715 4.38715 3.08 0.000213999 0.000174654 0.0200508 0.0165729 30 3034 21 6.64007e+06 326508 526063. 1820.29 4.10 0.0571257 0.0483967 22546 126617 -1 2563 21 1577 2693 157209 34685 3.79562 3.79562 -131.292 -3.79562 0 0 666494. 2306.21 0.81 0.09 0.37 -1 -1 0.81 0.0150537 0.0134463 170 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.09 vpr 64.05 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33820 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 25.4 MiB 1.09 1050 12371 3182 7852 1337 64.0 MiB 0.37 0.00 5.43386 -156.366 -5.43386 5.43386 2.63 0.000189602 0.000151836 0.0145547 0.0119459 32 2552 19 6.64007e+06 288834 554710. 1919.41 3.96 0.0833293 0.0760052 22834 132086 -1 2272 19 1328 2229 177284 38269 4.53868 4.53868 -149.07 -4.53868 0 0 701300. 2426.64 0.92 0.33 0.22 -1 -1 0.92 0.01275 0.0112861 152 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 15.00 vpr 63.86 MiB -1 -1 0.81 21280 1 0.09 -1 -1 33900 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 25.2 MiB 0.81 933 12503 3459 6938 2106 63.9 MiB 0.31 0.11 4.6127 -134.066 -4.6127 4.6127 2.69 0.000156579 0.000123722 0.0140047 0.011438 32 2147 19 6.64007e+06 238602 554710. 1919.41 2.51 0.0444918 0.037324 22834 132086 -1 1840 19 1044 1556 100816 23869 3.64062 3.64062 -129.026 -3.64062 0 0 701300. 2426.64 1.20 0.07 0.60 -1 -1 1.20 0.0114341 0.0102186 128 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 16.85 vpr 63.99 MiB -1 -1 1.27 21432 1 0.32 -1 -1 33896 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.14 1025 10744 3084 7154 506 64.0 MiB 0.53 0.00 5.21217 -134.409 -5.21217 5.21217 2.61 0.000187256 0.000150924 0.0104094 0.00850576 30 2159 18 6.64007e+06 376740 526063. 1820.29 2.98 0.330271 0.324297 22546 126617 -1 1910 16 853 1431 84040 19166 3.71062 3.71062 -116.778 -3.71062 0 0 666494. 2306.21 1.08 0.18 0.21 -1 -1 1.08 0.0102292 0.00920341 126 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 15.29 vpr 63.95 MiB -1 -1 0.75 21736 1 0.31 -1 -1 33644 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 25.4 MiB 0.70 1033 6757 1363 4872 522 64.0 MiB 0.17 0.01 5.06104 -138.95 -5.06104 5.06104 2.42 0.0002631 0.000224286 0.00784096 0.00647057 26 2561 28 6.64007e+06 426972 477104. 1650.88 3.10 0.106525 0.100029 21682 110474 -1 2314 22 1657 2659 173769 40695 3.98123 3.98123 -132.364 -3.98123 0 0 585099. 2024.56 1.12 0.28 0.10 -1 -1 1.12 0.0156275 0.0138381 145 50 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 14.55 vpr 64.01 MiB -1 -1 0.53 21280 1 0.22 -1 -1 33848 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.38 1000 10383 2504 6736 1143 64.0 MiB 0.20 0.00 3.67989 -112.635 -3.67989 3.67989 2.51 0.000150293 0.000120629 0.0748244 0.0730702 32 2161 21 6.64007e+06 389298 554710. 1919.41 2.77 0.105066 0.0990775 22834 132086 -1 1932 19 1040 1868 122635 27445 2.80577 2.80577 -103.61 -2.80577 0 0 701300. 2426.64 0.95 0.06 0.21 -1 -1 0.95 0.0112735 0.0100274 124 51 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 16.65 vpr 64.26 MiB -1 -1 0.55 21128 1 0.11 -1 -1 33572 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 25.4 MiB 0.94 1181 8207 1889 5862 456 64.3 MiB 0.45 0.00 5.21333 -162.921 -5.21333 5.21333 2.80 0.000172101 0.000137943 0.0097321 0.00814023 32 2904 26 6.64007e+06 313950 554710. 1919.41 2.70 0.0427823 0.0363362 22834 132086 -1 2532 20 1642 2507 198128 48981 4.24869 4.24869 -149.377 -4.24869 0 0 701300. 2426.64 1.25 0.29 0.70 -1 -1 1.25 0.0382263 0.0117094 148 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 16.37 vpr 64.29 MiB -1 -1 0.94 21280 1 0.16 -1 -1 33556 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 25.5 MiB 0.47 1091 17268 5141 9536 2591 64.3 MiB 0.26 0.00 4.75546 -148.32 -4.75546 4.75546 2.55 0.000185292 0.000148593 0.101831 0.0989298 26 2731 18 6.64007e+06 452088 477104. 1650.88 3.44 0.353629 0.345733 21682 110474 -1 2313 20 1346 2148 152692 34194 3.49323 3.49323 -133.83 -3.49323 0 0 585099. 2024.56 0.72 0.30 0.29 -1 -1 0.72 0.265859 0.264415 144 62 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 14.11 vpr 63.61 MiB -1 -1 0.50 21280 1 0.05 -1 -1 33980 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 25.1 MiB 0.36 588 12030 3358 7039 1633 63.6 MiB 0.17 0.00 3.76255 -108.245 -3.76255 3.76255 2.45 0.000137363 0.00010971 0.0112015 0.00903923 30 1298 16 6.64007e+06 213486 526063. 1820.29 3.23 0.115989 0.110395 22546 126617 -1 1213 18 814 1184 79092 17906 2.64337 2.64337 -97.4669 -2.64337 0 0 666494. 2306.21 0.67 0.08 0.23 -1 -1 0.67 0.0087734 0.00776095 91 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 15.77 vpr 63.81 MiB -1 -1 0.44 21584 1 0.15 -1 -1 33936 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.69 949 13477 3807 7672 1998 63.8 MiB 0.39 0.00 4.03956 -129.699 -4.03956 4.03956 3.13 0.000178409 0.000146207 0.0128127 0.0103408 32 2133 21 6.64007e+06 263718 554710. 1919.41 3.09 0.0407616 0.0340457 22834 132086 -1 1934 20 1418 1884 150949 33366 3.26203 3.26203 -124.39 -3.26203 0 0 701300. 2426.64 0.99 0.08 0.23 -1 -1 0.99 0.0108118 0.00962557 117 58 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 14.60 vpr 64.04 MiB -1 -1 0.42 21584 1 0.08 -1 -1 34012 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.4 MiB 0.14 995 9844 2080 6870 894 64.0 MiB 0.24 0.00 4.75944 -128.498 -4.75944 4.75944 2.95 0.000175967 0.000144685 0.0967692 0.0950938 26 2592 22 6.64007e+06 464646 477104. 1650.88 3.44 0.160522 0.121809 21682 110474 -1 2114 23 1575 2842 209005 45595 4.04523 4.04523 -131.074 -4.04523 0 0 585099. 2024.56 0.62 0.46 0.16 -1 -1 0.62 0.414673 0.41311 129 33 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 15.65 vpr 63.80 MiB -1 -1 0.37 21280 1 0.11 -1 -1 33852 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 25.1 MiB 0.82 751 14303 4644 7433 2226 63.8 MiB 0.16 0.00 4.32884 -115.621 -4.32884 4.32884 2.49 0.000132445 0.000104318 0.0129675 0.0104452 32 1888 19 6.64007e+06 276276 554710. 1919.41 3.29 0.0686792 0.0626623 22834 132086 -1 1653 16 948 1246 90708 21403 3.22283 3.22283 -105.877 -3.22283 0 0 701300. 2426.64 0.86 0.14 0.45 -1 -1 0.86 0.00847928 0.00758461 109 31 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 16.18 vpr 63.72 MiB -1 -1 0.35 21432 1 0.04 -1 -1 33668 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 0.83 868 10406 2691 6847 868 63.7 MiB 0.17 0.00 3.9428 -121.707 -3.9428 3.9428 2.93 0.000150632 0.000117836 0.0102124 0.00821785 32 1928 20 6.64007e+06 213486 554710. 1919.41 3.81 0.133181 0.0305639 22834 132086 -1 1672 22 1231 2092 145429 32765 2.92497 2.92497 -111.874 -2.92497 0 0 701300. 2426.64 0.63 0.10 0.41 -1 -1 0.63 0.0105003 0.00928887 108 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 15.97 vpr 64.21 MiB -1 -1 0.31 21280 1 0.20 -1 -1 33684 -1 -1 36 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 0.52 875 8079 1601 6137 341 64.2 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 2.99 0.000183268 0.000147059 0.0401663 0.0386513 28 2428 45 6.64007e+06 452088 500653. 1732.36 3.79 0.181188 0.173418 21970 115934 -1 1818 21 1389 2252 139313 34864 3.21357 3.21357 -119.357 -3.21357 0 0 612192. 2118.31 0.78 0.10 0.50 -1 -1 0.78 0.0126824 0.0111577 136 64 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 14.58 vpr 63.63 MiB -1 -1 0.55 21432 1 0.11 -1 -1 33768 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 24.9 MiB 0.55 883 11423 3367 6862 1194 63.6 MiB 0.29 0.00 4.01573 -121.888 -4.01573 4.01573 2.96 0.0001487 0.000120504 0.0105262 0.00848528 26 2105 22 6.64007e+06 251160 477104. 1650.88 2.29 0.0349779 0.0291737 21682 110474 -1 1781 20 1084 1550 105200 24764 3.38823 3.38823 -119.287 -3.38823 0 0 585099. 2024.56 0.89 0.17 0.26 -1 -1 0.89 0.00999951 0.00880361 107 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 16.48 vpr 64.08 MiB -1 -1 0.42 21584 1 0.07 -1 -1 33512 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 25.4 MiB 0.52 851 8418 1678 5980 760 64.1 MiB 0.74 0.00 3.82753 -117.666 -3.82753 3.82753 2.48 0.000178865 0.0001431 0.0407285 0.0391382 28 2323 24 6.64007e+06 401856 500653. 1732.36 3.96 0.264858 0.258516 21970 115934 -1 1878 17 1091 1908 119655 28509 2.81677 2.81677 -108.693 -2.81677 0 0 612192. 2118.31 0.86 0.08 0.17 -1 -1 0.86 0.0507462 0.0495496 127 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.90 vpr 64.11 MiB -1 -1 0.39 21432 1 0.17 -1 -1 33688 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.5 MiB 0.61 892 11111 2659 7794 658 64.1 MiB 0.17 0.00 4.34696 -134.35 -4.34696 4.34696 3.12 0.000197662 0.000162007 0.110856 0.108595 30 2086 20 6.64007e+06 401856 526063. 1820.29 3.06 0.144481 0.137365 22546 126617 -1 1791 17 945 1349 73917 18038 3.11862 3.11862 -122.994 -3.11862 0 0 666494. 2306.21 0.97 0.04 0.25 -1 -1 0.97 0.0151819 0.0139036 138 91 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 16.20 vpr 63.65 MiB -1 -1 0.43 21280 1 0.04 -1 -1 33620 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65180 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 25.1 MiB 0.47 616 7781 1621 5271 889 63.7 MiB 0.27 0.00 3.3851 -100.212 -3.3851 3.3851 3.15 0.000151759 0.000119344 0.00912829 0.00749073 30 1724 20 6.64007e+06 213486 526063. 1820.29 2.90 0.304152 0.298238 22546 126617 -1 1320 19 756 1168 61265 15612 2.61977 2.61977 -93.8432 -2.61977 0 0 666494. 2306.21 1.11 0.11 0.31 -1 -1 1.11 0.0293754 0.00905729 104 57 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 16.57 vpr 63.68 MiB -1 -1 0.31 21280 1 0.03 -1 -1 33392 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 25.1 MiB 0.63 936 9013 2313 6000 700 63.7 MiB 0.41 0.00 4.41384 -137.504 -4.41384 4.41384 2.87 0.000190214 0.000144917 0.00915207 0.00745215 30 2092 23 6.64007e+06 263718 526063. 1820.29 3.31 0.0365093 0.03072 22546 126617 -1 1867 19 993 1485 95205 21004 3.29183 3.29183 -120.954 -3.29183 0 0 666494. 2306.21 1.56 0.18 0.35 -1 -1 1.56 0.0103605 0.00924106 117 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 14.70 vpr 64.02 MiB -1 -1 0.70 21280 1 0.20 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 25.4 MiB 0.47 1056 7959 1858 5419 682 64.0 MiB 0.18 0.00 4.69663 -140.702 -4.69663 4.69663 2.31 0.000153511 0.000123346 0.00851277 0.00700839 28 2595 21 6.64007e+06 288834 500653. 1732.36 2.73 0.0367207 0.0312071 21970 115934 -1 2216 20 1459 2035 137683 32875 3.69682 3.69682 -132.71 -3.69682 0 0 612192. 2118.31 0.79 0.36 0.21 -1 -1 0.79 0.0111409 0.00992577 130 30 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 16.24 vpr 63.99 MiB -1 -1 0.53 21584 1 0.20 -1 -1 33736 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65528 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 25.2 MiB 0.80 961 12753 3692 7785 1276 64.0 MiB 0.28 0.00 4.75755 -125.045 -4.75755 4.75755 2.71 0.000156979 0.000123656 0.01285 0.0105713 32 1977 13 6.64007e+06 364182 554710. 1919.41 2.23 0.150423 0.144611 22834 132086 -1 1820 14 789 1389 83069 19772 3.08843 3.08843 -107.515 -3.08843 0 0 701300. 2426.64 1.40 0.03 0.19 -1 -1 1.40 0.00943411 0.00856831 122 55 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 20.80 vpr 64.22 MiB -1 -1 0.79 21432 1 0.10 -1 -1 33788 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 25.6 MiB 1.25 849 9058 1982 6341 735 64.2 MiB 0.23 0.00 5.51792 -167.558 -5.51792 5.51792 2.51 0.000208254 0.000166167 0.0700767 0.0681008 34 2671 46 6.64007e+06 301392 585099. 2024.56 6.11 0.137989 0.125942 23122 138558 -1 1962 23 1487 2165 142883 37471 4.39509 4.39509 -151.818 -4.39509 0 0 742403. 2568.87 1.30 0.12 0.52 -1 -1 1.30 0.0150196 0.0134157 154 65 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 15.99 vpr 63.51 MiB -1 -1 0.47 20976 1 0.11 -1 -1 33632 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65036 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.05 584 8131 1674 5502 955 63.5 MiB 0.03 0.00 3.68846 -96.2539 -3.68846 3.68846 3.24 0.000127466 9.9072e-05 0.00725995 0.00590741 32 1613 22 6.64007e+06 226044 554710. 1919.41 2.46 0.178637 0.173886 22834 132086 -1 1240 15 632 986 57380 15840 2.66977 2.66977 -91.5146 -2.66977 0 0 701300. 2426.64 1.34 0.07 0.29 -1 -1 1.34 0.0075319 0.00680643 96 4 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 16.90 vpr 64.20 MiB -1 -1 0.54 21584 1 0.15 -1 -1 33824 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 25.5 MiB 0.45 954 8873 1826 6622 425 64.2 MiB 0.17 0.00 4.24713 -140.193 -4.24713 4.24713 3.40 0.00022127 0.000181625 0.0104051 0.0086204 28 2512 22 6.64007e+06 426972 500653. 1732.36 3.22 0.128206 0.12116 21970 115934 -1 2185 21 1637 2506 175068 40804 4.00223 4.00223 -143.716 -4.00223 0 0 612192. 2118.31 0.73 0.20 0.35 -1 -1 0.73 0.0130283 0.0114867 145 90 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 16.35 vpr 64.05 MiB -1 -1 0.99 21280 1 0.17 -1 -1 33576 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 25.2 MiB 0.59 874 12856 4533 6666 1657 64.1 MiB 0.30 0.00 3.54047 -123.335 -3.54047 3.54047 2.60 0.000161236 0.000127686 0.132267 0.0117055 32 1862 20 6.64007e+06 213486 554710. 1919.41 2.31 0.162114 0.0371195 22834 132086 -1 1645 20 1353 1998 119332 28553 3.00817 3.00817 -121.982 -3.00817 0 0 701300. 2426.64 1.06 0.18 0.30 -1 -1 1.06 0.0113663 0.010009 114 96 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 15.09 vpr 64.07 MiB -1 -1 0.36 20976 1 0.03 -1 -1 33420 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 25.5 MiB 0.53 1033 11265 2868 7471 926 64.1 MiB 0.19 0.00 4.43584 -135.56 -4.43584 4.43584 2.91 0.000186085 0.000147101 0.0116245 0.00946355 28 2195 15 6.64007e+06 401856 500653. 1732.36 3.22 0.0421695 0.0355507 21970 115934 -1 2035 16 913 1446 97781 22288 3.21363 3.21363 -116.553 -3.21363 0 0 612192. 2118.31 0.84 0.10 0.28 -1 -1 0.84 0.0106319 0.00953271 131 60 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 16.76 vpr 63.82 MiB -1 -1 0.86 21432 1 0.13 -1 -1 33640 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 25.7 MiB 0.99 1320 13963 4550 7177 2236 63.8 MiB 0.24 0.00 6.49387 -193.286 -6.49387 6.49387 2.87 0.000194217 0.000156387 0.01635 0.0134433 30 3485 22 6.64007e+06 339066 526063. 1820.29 3.93 0.189669 0.181758 22546 126617 -1 2715 20 1534 2298 173997 36446 4.99934 4.99934 -169.413 -4.99934 0 0 666494. 2306.21 0.87 0.16 0.17 -1 -1 0.87 0.0665781 0.0651215 170 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 16.90 vpr 63.50 MiB -1 -1 0.40 20976 1 0.14 -1 -1 33400 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 24.8 MiB 0.68 724 10744 2773 6965 1006 63.5 MiB 0.23 0.00 3.31307 -103.25 -3.31307 3.31307 3.23 0.000123634 9.7195e-05 0.0830098 0.00696291 26 1680 19 6.64007e+06 226044 477104. 1650.88 3.36 0.104242 0.0247589 21682 110474 -1 1567 18 773 964 80532 17725 2.39717 2.39717 -95.4318 -2.39717 0 0 585099. 2024.56 0.73 0.15 0.18 -1 -1 0.73 0.0187949 0.0179225 87 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 15.28 vpr 63.73 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33488 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 25.1 MiB 0.27 685 8544 2127 5949 468 63.7 MiB 0.24 0.00 4.40355 -125.154 -4.40355 4.40355 2.80 0.000164 0.000134532 0.0849194 0.083076 30 1556 19 6.64007e+06 200928 526063. 1820.29 3.10 0.109862 0.1043 22546 126617 -1 1335 19 701 1179 78223 17393 3.07117 3.07117 -110.206 -3.07117 0 0 666494. 2306.21 1.39 0.18 0.36 -1 -1 1.39 0.010628 0.00955447 92 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 15.61 vpr 63.82 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33980 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.28 882 10687 2740 7287 660 63.8 MiB 0.17 0.00 3.50309 -113.66 -3.50309 3.50309 2.47 0.000147526 0.000116382 0.0111376 0.00906021 32 2027 19 6.64007e+06 263718 554710. 1919.41 3.42 0.0369167 0.0310546 22834 132086 -1 1870 19 1088 2046 147915 32093 2.80877 2.80877 -108.544 -2.80877 0 0 701300. 2426.64 1.01 0.07 0.19 -1 -1 1.01 0.00994882 0.00874326 115 34 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 16.61 vpr 63.43 MiB -1 -1 0.32 20976 1 0.03 -1 -1 33852 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64956 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.8 MiB 0.19 444 9966 3251 4492 2223 63.4 MiB 0.03 0.00 3.40927 -77.6354 -3.40927 3.40927 2.92 0.00010652 8.1951e-05 0.00771971 0.0060583 28 1404 24 6.64007e+06 339066 500653. 1732.36 3.88 0.0717446 0.0238516 21970 115934 -1 1178 23 799 1357 104165 31238 3.06137 3.06137 -79.3158 -3.06137 0 0 612192. 2118.31 0.83 0.03 0.17 -1 -1 0.83 0.00863211 0.00749013 89 29 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 16.13 vpr 63.93 MiB -1 -1 0.43 21432 1 0.09 -1 -1 33688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 25.2 MiB 0.71 946 11431 2748 6950 1733 63.9 MiB 0.16 0.00 4.33313 -131.181 -4.33313 4.33313 2.57 0.000157662 0.000126492 0.0132089 0.010899 32 2425 18 6.64007e+06 263718 554710. 1919.41 3.09 0.0452021 0.0382412 22834 132086 -1 2140 19 1325 2354 148542 35047 3.66863 3.66863 -128.103 -3.66863 0 0 701300. 2426.64 1.52 0.09 0.51 -1 -1 1.52 0.0139287 0.0124668 136 72 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.22 vpr 64.34 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33896 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 25.7 MiB 0.54 940 9773 2306 6923 544 64.3 MiB 0.31 0.00 4.49598 -141.547 -4.49598 4.49598 2.58 0.000191051 0.000155014 0.087405 0.00863012 30 2139 21 6.64007e+06 439530 526063. 1820.29 2.85 0.123488 0.0395336 22546 126617 -1 1891 19 1291 1959 105840 25694 3.20583 3.20583 -124.668 -3.20583 0 0 666494. 2306.21 1.41 0.21 0.37 -1 -1 1.41 0.194145 0.192668 143 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 17.19 vpr 63.97 MiB -1 -1 0.70 21584 1 0.08 -1 -1 33496 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 25.2 MiB 0.90 1148 17347 5352 9497 2498 64.0 MiB 0.79 0.00 5.20258 -155.665 -5.20258 5.20258 2.86 0.000179561 0.000145027 0.100205 0.0968258 28 2697 22 6.65987e+06 380340 500653. 1732.36 2.92 0.13314 0.125092 21970 115934 -1 2246 23 1620 2604 184581 41380 4.01751 4.01751 -143.08 -4.01751 0 0 612192. 2118.31 0.69 0.26 0.43 -1 -1 0.69 0.0149371 0.0131213 152 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 17.44 vpr 63.81 MiB -1 -1 0.85 21432 1 0.07 -1 -1 33596 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 865 5945 1132 3979 834 63.8 MiB 0.24 0.00 5.09836 -146.088 -5.09836 5.09836 3.04 0.000203994 0.000165875 0.00854599 0.00715284 30 2282 23 6.65987e+06 304272 526063. 1820.29 3.06 0.217249 0.211132 22546 126617 -1 1733 18 1185 1767 92489 24279 4.35403 4.35403 -145.141 -4.35403 0 0 666494. 2306.21 0.86 0.12 0.33 -1 -1 0.86 0.0124048 0.0111966 140 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 15.43 vpr 63.71 MiB -1 -1 0.55 21584 1 0.07 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 25.1 MiB 0.55 1073 15639 4872 8576 2191 63.7 MiB 0.15 0.00 4.07261 -120.811 -4.07261 4.07261 2.27 0.000150452 0.000119432 0.0148377 0.012055 32 2319 23 6.65987e+06 291594 554710. 1919.41 2.83 0.343985 0.212468 22834 132086 -1 2108 20 1368 1925 135511 32120 3.46811 3.46811 -117.404 -3.46811 0 0 701300. 2426.64 1.51 0.13 0.44 -1 -1 1.51 0.0115277 0.0103075 126 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 15.48 vpr 63.94 MiB -1 -1 0.58 20976 1 0.13 -1 -1 33576 -1 -1 27 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 25.2 MiB 0.20 937 15298 4951 7764 2583 63.9 MiB 0.20 0.00 4.29337 -115.569 -4.29337 4.29337 1.89 0.000148416 0.000117747 0.0141417 0.0113086 32 2433 26 6.65987e+06 342306 554710. 1919.41 2.81 0.0893313 0.0822416 22834 132086 -1 2062 24 1536 2855 239531 54215 3.41691 3.41691 -112.046 -3.41691 0 0 701300. 2426.64 1.41 0.16 0.31 -1 -1 1.41 0.0133226 0.011774 126 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 15.75 vpr 63.88 MiB -1 -1 0.54 21280 1 0.19 -1 -1 33704 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65416 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 25.2 MiB 0.48 1058 13911 3755 8078 2078 63.9 MiB 0.17 0.00 4.32255 -126.417 -4.32255 4.32255 2.48 0.000159411 0.000127659 0.0691167 0.0663448 32 2597 23 6.65987e+06 291594 554710. 1919.41 2.73 0.101975 0.0946679 22834 132086 -1 2295 23 1608 3109 256524 56322 3.66831 3.66831 -122.767 -3.66831 0 0 701300. 2426.64 0.96 0.13 0.32 -1 -1 0.96 0.336612 0.335078 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 15.20 vpr 64.04 MiB -1 -1 0.76 21280 1 0.05 -1 -1 33528 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65572 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 25.4 MiB 0.34 958 9421 2191 6624 606 64.0 MiB 0.30 0.00 3.34181 -114.642 -3.34181 3.34181 2.49 0.000179488 0.000143496 0.0103435 0.00850247 32 2455 20 6.65987e+06 418374 554710. 1919.41 2.26 0.0423713 0.0352516 22834 132086 -1 2113 22 1382 2191 144878 35192 2.81871 2.81871 -111.688 -2.81871 0 0 701300. 2426.64 0.82 0.08 0.50 -1 -1 0.82 0.0471964 0.0454126 141 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 14.66 vpr 63.43 MiB -1 -1 0.44 21128 1 0.17 -1 -1 34156 -1 -1 18 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64952 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 24.8 MiB 0.46 714 11813 3623 6674 1516 63.4 MiB 0.29 0.00 3.92432 -101.72 -3.92432 3.92432 2.69 0.000126252 9.8073e-05 0.185001 0.182709 32 1461 21 6.65987e+06 228204 554710. 1919.41 2.19 0.208822 0.202992 22834 132086 -1 1355 22 821 1483 100332 23866 2.83591 2.83591 -93.514 -2.83591 0 0 701300. 2426.64 0.74 0.03 0.29 -1 -1 0.74 0.0104085 0.00929258 94 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 13.72 vpr 63.70 MiB -1 -1 0.42 20976 1 0.05 -1 -1 33524 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 25.1 MiB 0.08 810 8614 1793 6441 380 63.7 MiB 0.14 0.00 3.36433 -97.1483 -3.36433 3.36433 2.16 0.000146838 0.000116241 0.00782936 0.00635955 32 2074 22 6.65987e+06 393018 554710. 1919.41 2.99 0.146469 0.140952 22834 132086 -1 1804 17 894 1488 103345 23925 2.68271 2.68271 -92.3065 -2.68271 0 0 701300. 2426.64 1.35 0.07 0.21 -1 -1 1.35 0.00988687 0.0088434 115 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 15.33 vpr 63.82 MiB -1 -1 0.60 21736 1 0.10 -1 -1 33932 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.38 912 8092 2097 5494 501 63.8 MiB 0.10 0.06 3.4209 -115.906 -3.4209 3.4209 3.45 0.0549979 0.00011767 0.0633623 0.00697732 32 2102 20 6.65987e+06 240882 554710. 1919.41 2.58 0.089974 0.0296975 22834 132086 -1 1877 18 1142 1655 118718 27709 3.09771 3.09771 -123.044 -3.09771 0 0 701300. 2426.64 0.56 0.04 0.24 -1 -1 0.56 0.0203442 0.0191812 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 15.77 vpr 63.56 MiB -1 -1 0.65 21432 1 0.03 -1 -1 33680 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 25.1 MiB 0.79 719 10056 2390 7132 534 63.6 MiB 0.27 0.00 3.74029 -120.95 -3.74029 3.74029 3.30 0.000180479 0.000146681 0.0106483 0.00863791 28 2131 26 6.65987e+06 215526 500653. 1732.36 2.64 0.104691 0.0984446 21970 115934 -1 1778 21 1157 1754 122038 31706 2.74131 2.74131 -114.198 -2.74131 0 0 612192. 2118.31 0.43 0.05 0.19 -1 -1 0.43 0.01185 0.0104511 113 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 17.37 vpr 63.61 MiB -1 -1 0.33 21280 1 0.07 -1 -1 34000 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 24.9 MiB 0.96 580 9374 2318 6165 891 63.6 MiB 0.16 0.00 4.00989 -106.262 -4.00989 4.00989 3.01 6.3126e-05 4.7988e-05 0.00448149 0.00359068 32 1547 21 6.65987e+06 215526 554710. 1919.41 2.94 0.0303268 0.0255406 22834 132086 -1 1369 20 840 1257 79227 20487 2.82751 2.82751 -100.698 -2.82751 0 0 701300. 2426.64 1.11 0.05 0.22 -1 -1 1.11 0.0101538 0.00899845 98 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 14.95 vpr 63.68 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33548 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 24.9 MiB 0.78 786 7256 1513 5550 193 63.7 MiB 0.27 0.00 3.75729 -118.293 -3.75729 3.75729 2.60 0.000163088 0.000133613 0.237591 0.236114 30 2178 26 6.65987e+06 215526 526063. 1820.29 2.80 0.415113 0.409558 22546 126617 -1 1724 20 995 1357 96858 22257 2.67471 2.67471 -103.361 -2.67471 0 0 666494. 2306.21 0.90 0.03 0.19 -1 -1 0.90 0.010287 0.00914634 106 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 17.10 vpr 64.03 MiB -1 -1 0.55 21280 1 0.36 -1 -1 33804 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 25.3 MiB 1.11 1144 13933 4321 8243 1369 64.0 MiB 0.30 0.00 4.40775 -144.129 -4.40775 4.40775 2.52 0.000181503 0.000149033 0.0146608 0.0119061 32 2600 23 6.65987e+06 304272 554710. 1919.41 3.28 0.0472459 0.0398395 22834 132086 -1 2311 20 1654 2470 190348 42509 3.33991 3.33991 -131.441 -3.33991 0 0 701300. 2426.64 0.46 0.05 0.24 -1 -1 0.46 0.0138104 0.0124334 139 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 17.19 vpr 63.78 MiB -1 -1 0.56 21280 1 0.20 -1 -1 33688 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65312 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 25.2 MiB 1.03 952 10957 2661 7671 625 63.8 MiB 0.32 0.00 4.65212 -132.497 -4.65212 4.65212 2.71 0.000220395 0.000148425 0.0117306 0.00939977 32 2382 23 6.65987e+06 380340 554710. 1919.41 3.29 0.0437524 0.0367922 22834 132086 -1 2069 23 1569 2538 191574 42780 3.49885 3.49885 -122.405 -3.49885 0 0 701300. 2426.64 0.41 0.11 0.21 -1 -1 0.41 0.0137863 0.0121765 133 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 15.73 vpr 63.41 MiB -1 -1 0.44 21280 1 0.13 -1 -1 33832 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64936 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 24.8 MiB 0.69 775 11118 2644 7385 1089 63.4 MiB 0.29 0.00 3.16393 -92.0469 -3.16393 3.16393 3.08 0.000123623 9.7143e-05 0.0104494 0.00844665 26 1825 24 6.65987e+06 266238 477104. 1650.88 3.12 0.0346417 0.0289449 21682 110474 -1 1612 20 961 1592 109887 26838 2.94405 2.94405 -95.715 -2.94405 0 0 585099. 2024.56 1.22 0.05 0.16 -1 -1 1.22 0.0096239 0.00836059 98 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 16.58 vpr 64.00 MiB -1 -1 0.44 21128 1 0.10 -1 -1 33976 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 25.4 MiB 1.44 1047 12733 3877 6886 1970 64.0 MiB 0.43 0.00 4.00819 -125.465 -4.00819 4.00819 2.60 0.000203841 0.00016432 0.052706 0.0499749 32 2583 22 6.65987e+06 266238 554710. 1919.41 2.86 0.227889 0.220489 22834 132086 -1 2258 21 1362 2537 186342 42439 3.30657 3.30657 -123.045 -3.30657 0 0 701300. 2426.64 1.15 0.24 0.50 -1 -1 1.15 0.126101 0.124562 132 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 15.94 vpr 63.76 MiB -1 -1 0.68 21432 1 0.04 -1 -1 33744 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 25.1 MiB 1.02 1072 15523 5016 8339 2168 63.8 MiB 0.32 0.00 4.31458 -139.763 -4.31458 4.31458 3.02 0.000202544 0.000168522 0.0181919 0.0150054 28 2776 23 6.65987e+06 266238 500653. 1732.36 3.37 0.197025 0.188835 21970 115934 -1 2298 21 1497 2160 165322 36545 3.24677 3.24677 -123.398 -3.24677 0 0 612192. 2118.31 0.89 0.08 0.20 -1 -1 0.89 0.0137994 0.0123673 137 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 14.77 vpr 63.79 MiB -1 -1 0.69 21128 1 0.15 -1 -1 33524 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 25.1 MiB 0.55 861 11433 2956 7633 844 63.8 MiB 0.35 0.00 2.85064 -102.994 -2.85064 2.85064 2.43 0.000149129 0.000118199 0.119171 0.117279 26 2084 22 6.65987e+06 367662 477104. 1650.88 2.54 0.222516 0.216352 21682 110474 -1 1813 18 1053 1731 134640 30044 2.15051 2.15051 -97.3318 -2.15051 0 0 585099. 2024.56 0.86 0.25 0.24 -1 -1 0.86 0.0103386 0.00911987 110 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 12.84 vpr 63.21 MiB -1 -1 0.51 20672 1 0.17 -1 -1 33544 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64724 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 24.8 MiB 0.47 624 5782 1334 4080 368 63.2 MiB 0.03 0.00 2.24807 -77.3192 -2.24807 2.24807 2.53 0.00010859 8.4963e-05 0.00521969 0.00421554 32 1391 22 6.65987e+06 190170 554710. 1919.41 2.21 0.169813 0.16544 22834 132086 -1 1272 19 694 987 78395 18403 1.77965 1.77965 -78.0343 -1.77965 0 0 701300. 2426.64 1.18 0.03 0.24 -1 -1 1.18 0.00793792 0.00697421 81 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 15.36 vpr 63.67 MiB -1 -1 0.50 21584 1 0.09 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 25.1 MiB 0.91 827 15568 4612 9306 1650 63.7 MiB 0.22 0.00 4.77154 -139.927 -4.77154 4.77154 2.22 0.000169241 0.000138734 0.0876222 0.084674 28 2046 22 6.65987e+06 240882 500653. 1732.36 2.44 0.202408 0.195495 21970 115934 -1 1800 23 1198 1705 117969 27981 3.57911 3.57911 -129.346 -3.57911 0 0 612192. 2118.31 1.07 0.22 0.77 -1 -1 1.07 0.0807392 0.0793742 127 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 14.37 vpr 63.97 MiB -1 -1 0.43 21280 1 0.29 -1 -1 34104 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 0.12 945 6791 1317 5158 316 64.0 MiB 0.11 0.00 4.14893 -130.493 -4.14893 4.14893 2.95 0.00019616 0.000160055 0.00768591 0.00638099 30 2176 21 6.65987e+06 393018 526063. 1820.29 2.50 0.144408 0.138757 22546 126617 -1 1849 20 1024 1651 101279 23570 3.40723 3.40723 -121.542 -3.40723 0 0 666494. 2306.21 0.96 0.18 0.27 -1 -1 0.96 0.012827 0.0114798 135 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 25.23 vpr 64.14 MiB -1 -1 0.29 21432 1 0.22 -1 -1 33812 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 0.71 1176 13911 3816 8065 2030 64.1 MiB 0.30 0.00 4.32644 -135.935 -4.32644 4.32644 2.76 0.000189356 0.000155146 0.0151601 0.0124325 30 2785 22 6.65987e+06 291594 526063. 1820.29 13.66 0.309981 0.296455 22546 126617 -1 2302 18 1286 2013 127835 28465 3.48051 3.48051 -127.974 -3.48051 0 0 666494. 2306.21 0.88 0.26 0.32 -1 -1 0.88 0.0849454 0.0836129 142 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 15.12 vpr 62.93 MiB -1 -1 0.53 21128 1 0.02 -1 -1 34128 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64444 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 24.3 MiB 0.50 372 9836 3070 4693 2073 62.9 MiB 0.09 0.00 2.3895 -62.9737 -2.3895 2.3895 3.31 0.000117408 9.1811e-05 0.0076159 0.00601791 32 1122 48 6.65987e+06 228204 554710. 1919.41 3.42 0.0318307 0.0258784 22834 132086 -1 717 22 632 914 52787 14932 1.86985 1.86985 -59.8055 -1.86985 0 0 701300. 2426.64 0.69 0.11 0.27 -1 -1 0.69 0.00716709 0.00619496 77 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 13.79 vpr 63.70 MiB -1 -1 0.35 21280 1 0.04 -1 -1 33572 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 25.0 MiB 0.25 967 10501 2769 7029 703 63.7 MiB 0.19 0.00 4.91554 -122.72 -4.91554 4.91554 2.94 0.000159693 0.000129406 0.0106492 0.00864967 28 2269 24 6.65987e+06 266238 500653. 1732.36 2.85 0.0394979 0.0331405 21970 115934 -1 1962 20 924 1747 113203 26886 4.10317 4.10317 -126.625 -4.10317 0 0 612192. 2118.31 0.90 0.06 0.19 -1 -1 0.90 0.0111867 0.00997244 118 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 13.34 vpr 62.88 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33612 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64392 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 24.3 MiB 0.03 415 10370 2763 4961 2646 62.9 MiB 0.03 0.00 2.50649 -71.6469 -2.50649 2.50649 2.89 9.8516e-05 7.5074e-05 0.00756378 0.00592364 30 1132 25 6.65987e+06 177492 526063. 1820.29 2.60 0.0236321 0.0194845 22546 126617 -1 827 15 404 449 30442 8479 1.90085 1.90085 -68.0593 -1.90085 0 0 666494. 2306.21 1.05 0.18 0.56 -1 -1 1.05 0.00589214 0.00525725 79 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 14.46 vpr 63.78 MiB -1 -1 0.49 21128 1 0.10 -1 -1 33684 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 25.1 MiB 0.26 867 9679 2178 7022 479 63.8 MiB 0.08 0.00 4.41865 -121.392 -4.41865 4.41865 2.74 0.000152688 0.000122798 0.00888374 0.00729756 28 2060 20 6.65987e+06 380340 500653. 1732.36 2.93 0.0376907 0.0319851 21970 115934 -1 1775 21 1090 1814 122823 28767 3.22685 3.22685 -110.815 -3.22685 0 0 612192. 2118.31 0.74 0.14 0.27 -1 -1 0.74 0.0115812 0.0102113 123 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 15.15 vpr 63.63 MiB -1 -1 0.40 21128 1 0.18 -1 -1 34080 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.1 MiB 0.37 1033 7655 1739 5270 646 63.6 MiB 0.07 0.00 3.58635 -107.341 -3.58635 3.58635 2.75 0.000184851 0.000152297 0.00758539 0.00621376 32 2402 25 6.65987e+06 393018 554710. 1919.41 3.68 0.0386437 0.0327177 22834 132086 -1 2155 22 1263 2296 199474 43488 3.00117 3.00117 -107.204 -3.00117 0 0 701300. 2426.64 0.76 0.59 0.28 -1 -1 0.76 0.0127388 0.0114327 128 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 13.47 vpr 63.96 MiB -1 -1 0.47 21432 1 0.24 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 25.2 MiB 0.37 935 10542 2716 6648 1178 64.0 MiB 0.42 0.00 4.36243 -125.161 -4.36243 4.36243 2.90 0.000186999 0.000152595 0.0111785 0.00917024 28 2362 26 6.65987e+06 329628 500653. 1732.36 2.80 0.207602 0.200837 21970 115934 -1 2111 20 1333 2375 164568 39080 3.50419 3.50419 -120.066 -3.50419 0 0 612192. 2118.31 0.84 0.06 0.16 -1 -1 0.84 0.0121208 0.0106313 125 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 14.44 vpr 63.45 MiB -1 -1 0.32 21128 1 0.19 -1 -1 33688 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 24.9 MiB 0.19 787 11260 3658 5658 1944 63.5 MiB 0.15 0.00 2.93487 -99.6571 -2.93487 2.93487 2.67 0.000165954 0.000135375 0.0112483 0.0090505 32 1794 20 6.65987e+06 202848 554710. 1919.41 2.68 0.0851283 0.0792685 22834 132086 -1 1628 20 958 1510 115265 27294 2.69465 2.69465 -100.105 -2.69465 0 0 701300. 2426.64 0.83 0.14 0.48 -1 -1 0.83 0.0107991 0.00957092 101 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 13.23 vpr 63.67 MiB -1 -1 0.55 21280 1 0.04 -1 -1 33640 -1 -1 23 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65196 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 24.8 MiB 0.20 776 12175 3219 7698 1258 63.7 MiB 0.24 0.00 3.0379 -97.3625 -3.0379 3.0379 3.07 0.000135761 0.000104953 0.0110177 0.00878743 28 1731 21 6.65987e+06 291594 500653. 1732.36 3.09 0.136922 0.130941 21970 115934 -1 1604 18 795 1223 81805 19071 2.88285 2.88285 -98.5106 -2.88285 0 0 612192. 2118.31 1.04 0.03 0.18 -1 -1 1.04 0.00923751 0.0082151 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 14.93 vpr 63.53 MiB -1 -1 0.47 21128 1 0.02 -1 -1 33724 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 24.8 MiB 0.11 626 11963 3042 7355 1566 63.5 MiB 0.38 0.00 3.31478 -92.0347 -3.31478 3.31478 2.58 0.00013723 0.000108782 0.0559424 0.0538238 28 1757 31 6.65987e+06 291594 500653. 1732.36 4.27 0.0829624 0.076471 21970 115934 -1 1589 21 988 1711 135362 30962 2.61965 2.61965 -90.1158 -2.61965 0 0 612192. 2118.31 0.84 0.08 0.28 -1 -1 0.84 0.00980462 0.00867402 98 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 12.33 vpr 63.38 MiB -1 -1 0.38 20976 1 0.10 -1 -1 33580 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64904 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 24.9 MiB 0.29 729 7103 1637 4961 505 63.4 MiB 0.11 0.00 3.70643 -110.184 -3.70643 3.70643 2.26 0.000141823 0.000112466 0.00715445 0.00586376 30 1871 23 6.65987e+06 240882 526063. 1820.29 2.26 0.0326046 0.0276209 22546 126617 -1 1613 21 993 1651 87012 21207 2.64151 2.64151 -103.145 -2.64151 0 0 666494. 2306.21 1.20 0.14 0.22 -1 -1 1.20 0.0102392 0.00911968 110 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 13.86 vpr 63.58 MiB -1 -1 0.33 20976 1 0.13 -1 -1 33744 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 24.9 MiB 0.23 614 5517 1006 3965 546 63.6 MiB 0.03 0.00 3.32595 -96.9255 -3.32595 3.32595 2.14 0.000154739 0.000121759 0.00563213 0.00457195 28 1836 30 6.65987e+06 342306 500653. 1732.36 3.84 0.0324284 0.0272978 21970 115934 -1 1466 20 981 1631 107215 27748 2.94891 2.94891 -103.005 -2.94891 0 0 612192. 2118.31 0.98 0.14 0.21 -1 -1 0.98 0.00998875 0.00886027 103 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 13.52 vpr 63.45 MiB -1 -1 0.60 21584 1 0.07 -1 -1 33776 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 24.9 MiB 0.84 863 12938 3773 7467 1698 63.4 MiB 0.10 0.00 3.16555 -101.958 -3.16555 3.16555 2.32 0.000136808 0.000108074 0.00584544 0.00465234 28 1851 22 6.65987e+06 316950 500653. 1732.36 2.69 0.0659643 0.0280146 21970 115934 -1 1592 20 917 1356 89468 20919 2.31685 2.31685 -94.6108 -2.31685 0 0 612192. 2118.31 1.41 0.04 0.28 -1 -1 1.41 0.0217703 0.0203851 105 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 13.49 vpr 64.15 MiB -1 -1 0.49 21432 1 0.12 -1 -1 34016 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 25.5 MiB 0.79 1216 15846 3922 9942 1982 64.2 MiB 0.53 0.00 3.87192 -115.022 -3.87192 3.87192 2.48 8.6659e-05 6.8732e-05 0.0134507 0.011103 32 2924 23 6.65987e+06 469086 554710. 1919.41 2.27 0.186677 0.180493 22834 132086 -1 2469 21 1434 2524 186653 41350 3.44899 3.44899 -114.802 -3.44899 0 0 701300. 2426.64 0.86 0.24 0.21 -1 -1 0.86 0.158118 0.156612 150 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 15.32 vpr 63.96 MiB -1 -1 0.48 21736 1 0.19 -1 -1 33576 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 25.5 MiB 0.98 918 16804 4626 9521 2657 64.0 MiB 0.24 0.00 3.76954 -123.355 -3.76954 3.76954 2.40 7.9776e-05 6.3321e-05 0.0672828 0.0123736 26 2694 44 6.65987e+06 456408 477104. 1650.88 4.61 0.28569 0.224111 21682 110474 -1 2210 21 1913 2840 206323 49013 3.03737 3.03737 -121.107 -3.03737 0 0 585099. 2024.56 0.67 0.34 0.32 -1 -1 0.67 0.0152219 0.0133563 146 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 13.70 vpr 63.53 MiB -1 -1 0.54 21736 1 0.02 -1 -1 33736 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 24.9 MiB 0.99 795 7304 1575 5379 350 63.5 MiB 0.13 0.00 4.09732 -119.878 -4.09732 4.09732 2.36 0.000140843 0.00011156 0.0079465 0.00650795 28 2284 28 6.65987e+06 215526 500653. 1732.36 2.96 0.0696371 0.0639517 21970 115934 -1 1853 23 1163 1584 136433 31115 2.98331 2.98331 -112.101 -2.98331 0 0 612192. 2118.31 0.78 0.19 0.24 -1 -1 0.78 0.0110742 0.00979089 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 14.30 vpr 63.86 MiB -1 -1 0.36 21432 1 0.07 -1 -1 33896 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 25.4 MiB 0.71 960 9687 2384 6351 952 63.9 MiB 0.22 0.00 4.18671 -127.263 -4.18671 4.18671 2.52 0.000182253 0.000144715 0.00706702 0.00575115 32 2417 21 6.65987e+06 304272 554710. 1919.41 2.35 0.0975316 0.0919152 22834 132086 -1 2101 21 1488 2613 194175 44081 2.97097 2.97097 -112.473 -2.97097 0 0 701300. 2426.64 1.00 0.16 0.20 -1 -1 1.00 0.0117897 0.0103715 137 61 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 13.54 vpr 63.70 MiB -1 -1 0.61 21584 1 0.18 -1 -1 33872 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 25.5 MiB 1.10 1273 15165 4552 8275 2338 63.7 MiB 0.51 0.00 5.69001 -171.445 -5.69001 5.69001 2.48 0.000199303 0.000135675 0.0170398 0.0139331 32 3130 25 6.65987e+06 342306 554710. 1919.41 2.36 0.0510807 0.0428848 22834 132086 -1 2610 20 2120 3180 234125 53075 4.91423 4.91423 -162.467 -4.91423 0 0 701300. 2426.64 0.81 0.10 0.13 -1 -1 0.81 0.0146825 0.013251 170 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 16.40 vpr 64.08 MiB -1 -1 0.48 21736 1 0.06 -1 -1 33916 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 25.4 MiB 3.64 1090 15493 4707 8769 2017 64.1 MiB 0.20 0.00 4.85933 -146.856 -4.85933 4.85933 2.13 9.0883e-05 7.2769e-05 0.0129288 0.0106553 32 2614 24 6.65987e+06 316950 554710. 1919.41 2.54 0.104064 0.0974697 22834 132086 -1 2217 21 1679 2545 171031 40167 4.18782 4.18782 -145.076 -4.18782 0 0 701300. 2426.64 0.95 0.04 0.26 -1 -1 0.95 0.0135973 0.012176 162 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 13.02 vpr 64.01 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33868 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 25.4 MiB 0.87 1049 11063 3132 7137 794 64.0 MiB 0.31 0.00 4.34966 -129.73 -4.34966 4.34966 2.63 0.00019874 0.000165017 0.172305 0.170247 28 2570 22 6.65987e+06 367662 500653. 1732.36 2.23 0.211767 0.205484 21970 115934 -1 2177 19 1173 1877 132044 30578 3.08745 3.08745 -117.736 -3.08745 0 0 612192. 2118.31 0.84 0.11 0.31 -1 -1 0.84 0.0111952 0.00988884 133 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 12.91 vpr 63.78 MiB -1 -1 0.49 21280 1 0.10 -1 -1 33628 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 25.1 MiB 0.48 919 8591 2074 6189 328 63.8 MiB 0.14 0.00 4.09946 -111.918 -4.09946 4.09946 2.32 7.575e-05 5.9687e-05 0.115528 0.114721 28 2411 28 6.65987e+06 278916 500653. 1732.36 2.47 0.186264 0.181335 21970 115934 -1 2081 20 1299 1915 141997 33631 3.64645 3.64645 -113.314 -3.64645 0 0 612192. 2118.31 0.88 0.11 0.19 -1 -1 0.88 0.113733 0.112557 118 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 13.33 vpr 63.94 MiB -1 -1 0.64 21432 1 0.11 -1 -1 33604 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 25.6 MiB 0.92 1261 14144 3520 9065 1559 63.9 MiB 0.30 0.00 4.86514 -159.483 -4.86514 4.86514 2.16 0.000224362 0.000185072 0.0167308 0.0138784 28 3016 22 6.65987e+06 481764 500653. 1732.36 3.19 0.156164 0.147907 21970 115934 -1 2644 20 1648 2541 201927 44131 3.89311 3.89311 -148.561 -3.89311 0 0 612192. 2118.31 0.74 0.16 0.11 -1 -1 0.74 0.141984 0.141091 172 87 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 13.49 vpr 63.33 MiB -1 -1 0.30 21280 1 0.03 -1 -1 34004 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64848 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 24.7 MiB 0.25 792 5391 1113 3866 412 63.3 MiB 0.18 0.00 3.45892 -99.4367 -3.45892 3.45892 2.78 0.000144451 0.000113627 0.15311 0.00456613 30 1714 21 6.65987e+06 266238 526063. 1820.29 2.50 0.298002 0.145893 22546 126617 -1 1569 16 794 1300 77888 17751 2.66565 2.66565 -95.9742 -2.66565 0 0 666494. 2306.21 0.82 0.09 0.34 -1 -1 0.82 0.00663432 0.00588571 101 28 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 13.64 vpr 63.91 MiB -1 -1 0.40 21280 1 0.11 -1 -1 33952 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 25.2 MiB 0.70 1174 9914 2716 6202 996 63.9 MiB 0.17 0.00 4.85749 -145.079 -4.85749 4.85749 2.51 0.000163223 0.000130909 0.0110224 0.00914394 30 2913 23 6.65987e+06 291594 526063. 1820.29 3.11 0.0391954 0.0334823 22546 126617 -1 2375 19 1093 1611 112346 24086 3.96531 3.96531 -132.462 -3.96531 0 0 666494. 2306.21 0.67 0.16 0.37 -1 -1 0.67 0.138033 0.00858171 142 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 15.65 vpr 63.39 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33692 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64912 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.6 MiB 0.51 872 7423 1554 5596 273 63.4 MiB 0.16 0.00 3.91407 -115.681 -3.91407 3.91407 2.61 0.000172847 0.000138812 0.00800516 0.00666131 28 3018 33 6.65987e+06 418374 500653. 1732.36 5.49 0.0442897 0.0375343 21970 115934 -1 2118 22 1293 2233 170096 39537 3.03411 3.03411 -114.961 -3.03411 0 0 612192. 2118.31 0.78 0.12 0.18 -1 -1 0.78 0.013357 0.0118758 131 53 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 20.58 vpr 63.30 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33464 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64820 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 24.6 MiB 0.28 855 6523 1368 4938 217 63.3 MiB 0.02 0.00 3.97641 -117.731 -3.97641 3.97641 3.51 7.4019e-05 5.9109e-05 0.00342594 0.00283336 28 2339 22 6.65987e+06 304272 500653. 1732.36 8.79 0.3109 0.297662 21970 115934 -1 2041 20 1400 2592 194446 45064 3.42425 3.42425 -119.8 -3.42425 0 0 612192. 2118.31 0.88 0.09 0.28 -1 -1 0.88 0.0112814 0.00992933 123 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 14.67 vpr 64.05 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33508 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 25.4 MiB 1.04 1095 6890 1534 4949 407 64.1 MiB 0.27 0.00 4.41337 -130.677 -4.41337 4.41337 2.81 0.000173112 0.000139915 0.192159 0.19062 30 2410 22 6.65987e+06 278916 526063. 1820.29 2.77 0.22624 0.220082 22546 126617 -1 2078 18 950 1311 82288 18997 3.16671 3.16671 -118.385 -3.16671 0 0 666494. 2306.21 0.85 0.04 0.24 -1 -1 0.85 0.00999761 0.00890254 136 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 16.38 vpr 63.82 MiB -1 -1 0.44 21432 1 0.10 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 25.2 MiB 1.31 1015 8519 1947 6079 493 63.8 MiB 0.24 0.00 3.70469 -120.936 -3.70469 3.70469 2.04 0.000183899 0.000150032 0.192242 0.19054 26 2629 44 6.65987e+06 393018 477104. 1650.88 3.76 0.26209 0.226057 21682 110474 -1 2300 19 1277 2162 203888 55415 3.09317 3.09317 -119.703 -3.09317 0 0 585099. 2024.56 0.90 0.15 0.20 -1 -1 0.90 0.11414 0.11291 132 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 15.41 vpr 63.98 MiB -1 -1 0.35 21584 1 0.15 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 25.4 MiB 1.37 1095 17268 5091 9567 2610 64.0 MiB 0.39 0.00 4.49052 -137.752 -4.49052 4.49052 2.64 0.000179162 0.000142111 0.0168161 0.0137415 32 2622 20 6.65987e+06 456408 554710. 1919.41 2.67 0.0476195 0.0397119 22834 132086 -1 2238 21 1227 1882 151184 33669 3.11931 3.11931 -120.994 -3.11931 0 0 701300. 2426.64 0.92 0.25 0.29 -1 -1 0.92 0.0140044 0.0124851 144 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 14.25 vpr 63.79 MiB -1 -1 0.49 21432 1 0.20 -1 -1 33840 -1 -1 29 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 25.2 MiB 0.39 831 8703 1904 6510 289 63.8 MiB 0.14 0.00 3.98836 -116.458 -3.98836 3.98836 2.36 0.000153415 0.000122132 0.00915912 0.0076147 28 2509 34 6.65987e+06 367662 500653. 1732.36 3.49 0.191909 0.185407 21970 115934 -1 1950 22 1402 2368 181235 42277 3.31885 3.31885 -113.136 -3.31885 0 0 612192. 2118.31 0.80 0.09 0.36 -1 -1 0.80 0.0105699 0.00934149 122 24 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 12.90 vpr 63.45 MiB -1 -1 0.49 21584 1 0.20 -1 -1 33976 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64968 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 25.1 MiB 0.22 1096 5847 1077 4508 262 63.4 MiB 0.16 0.00 4.87249 -140.277 -4.87249 4.87249 2.45 7.4025e-05 5.8663e-05 0.00691967 0.00585821 32 2457 23 6.65987e+06 291594 554710. 1919.41 2.31 0.0358647 0.0306625 22834 132086 -1 2307 21 1758 2571 205261 48211 3.54631 3.54631 -128.876 -3.54631 0 0 701300. 2426.64 0.74 0.08 0.21 -1 -1 0.74 0.0128434 0.0115048 133 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 14.11 vpr 64.13 MiB -1 -1 0.62 21736 1 0.04 -1 -1 33536 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 25.5 MiB 0.75 1053 14450 4494 7381 2575 64.1 MiB 0.39 0.00 4.75055 -139.155 -4.75055 4.75055 2.64 0.000230927 0.000195819 0.0164111 0.0134797 32 2991 39 6.65987e+06 291594 554710. 1919.41 2.69 0.249189 0.238214 22834 132086 -1 2363 22 1536 2448 216971 46501 3.78511 3.78511 -128.69 -3.78511 0 0 701300. 2426.64 0.89 0.15 0.50 -1 -1 0.89 0.0139633 0.0123829 146 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 11.94 vpr 63.97 MiB -1 -1 0.46 21736 1 0.13 -1 -1 33644 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 25.4 MiB 0.34 892 8269 1866 5970 433 64.0 MiB 0.11 0.00 3.94229 -122.797 -3.94229 3.94229 2.35 0.000190103 0.000154106 0.0103669 0.00855183 32 2886 33 6.65987e+06 266238 554710. 1919.41 2.54 0.156958 0.149786 22834 132086 -1 2173 20 1592 2780 186378 45374 3.32485 3.32485 -123.339 -3.32485 0 0 701300. 2426.64 0.95 0.08 0.22 -1 -1 0.95 0.0142534 0.0128195 135 77 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 11.46 vpr 63.16 MiB -1 -1 0.39 21432 1 0.03 -1 -1 33560 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64676 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 24.9 MiB 0.29 757 15103 5160 7628 2315 63.2 MiB 0.28 0.00 3.22598 -97.9932 -3.22598 3.22598 2.50 0.000134302 0.000106416 0.0115374 0.00908968 30 1751 19 6.65987e+06 304272 526063. 1820.29 2.24 0.0347544 0.0288528 22546 126617 -1 1512 16 721 1176 73018 17086 2.41611 2.41611 -90.1114 -2.41611 0 0 666494. 2306.21 0.81 0.09 0.19 -1 -1 0.81 0.0739414 0.0731145 97 23 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 12.25 vpr 63.98 MiB -1 -1 0.36 21432 1 0.16 -1 -1 33740 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65516 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 25.1 MiB 0.29 854 11979 3325 7498 1156 64.0 MiB 0.14 0.00 4.00764 -134.08 -4.00764 4.00764 2.39 0.000166096 0.000132926 0.0130162 0.0105485 30 2116 21 6.65987e+06 253560 526063. 1820.29 2.57 0.132303 0.12564 22546 126617 -1 1874 15 1015 1416 75233 18300 3.45817 3.45817 -132.236 -3.45817 0 0 666494. 2306.21 0.98 0.14 0.14 -1 -1 0.98 0.0233491 0.0223815 125 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 15.15 vpr 63.70 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33988 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 25.7 MiB 0.51 1274 10235 2662 6652 921 63.7 MiB 0.14 0.00 5.13258 -155.287 -5.13258 5.13258 2.61 9.2275e-05 7.3961e-05 0.00687844 0.00562595 32 3369 23 6.65987e+06 354984 554710. 1919.41 3.58 0.0906311 0.0846579 22834 132086 -1 2783 23 2186 3460 290827 63429 4.48925 4.48925 -150.111 -4.48925 0 0 701300. 2426.64 1.05 0.28 0.18 -1 -1 1.05 0.107691 0.10602 168 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 13.69 vpr 63.83 MiB -1 -1 0.63 21280 1 0.02 -1 -1 33972 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 25.1 MiB 0.60 923 6359 1257 4842 260 63.8 MiB 0.11 0.00 4.41432 -131.558 -4.41432 4.41432 2.44 0.000177047 0.000141783 0.00796312 0.00660099 28 2340 18 6.65987e+06 393018 500653. 1732.36 3.21 0.0388558 0.0335021 21970 115934 -1 2127 18 1059 1684 138744 33781 2.95411 2.95411 -115.043 -2.95411 0 0 612192. 2118.31 0.85 0.07 0.25 -1 -1 0.85 0.0122403 0.0110018 133 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 13.01 vpr 63.63 MiB -1 -1 0.42 20976 1 0.06 -1 -1 33908 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 24.8 MiB 0.15 662 8473 1902 5447 1124 63.6 MiB 0.04 0.00 3.33678 -100.036 -3.33678 3.33678 2.44 0.000147231 0.000116999 0.00780375 0.00638254 28 1883 24 6.65987e+06 329628 500653. 1732.36 2.41 0.120232 0.115061 21970 115934 -1 1588 23 1125 1833 133224 32129 2.83791 2.83791 -101.81 -2.83791 0 0 612192. 2118.31 0.93 0.26 0.28 -1 -1 0.93 0.0108435 0.00951964 104 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 15.30 vpr 64.06 MiB -1 -1 0.64 21888 1 0.18 -1 -1 33752 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 25.8 MiB 1.10 1210 14939 4355 8106 2478 64.1 MiB 0.22 0.00 6.10992 -175.279 -6.10992 6.10992 2.35 0.000208534 0.000169163 0.0191368 0.0159276 32 3495 33 6.65987e+06 316950 554710. 1919.41 2.75 0.0522444 0.0444883 22834 132086 -1 2638 21 2045 2939 210732 49019 4.76877 4.76877 -161.395 -4.76877 0 0 701300. 2426.64 1.03 0.15 0.22 -1 -1 1.03 0.0162987 0.0146932 168 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 13.10 vpr 63.95 MiB -1 -1 0.30 21280 1 0.34 -1 -1 33956 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65480 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 25.2 MiB 0.97 904 10389 2712 7035 642 63.9 MiB 0.20 0.03 4.42592 -132.293 -4.42592 4.42592 2.35 0.000161799 0.000128834 0.0106276 0.00856263 32 2174 23 6.65987e+06 405696 554710. 1919.41 2.62 0.0347434 0.0292961 22834 132086 -1 1862 21 1345 1981 126109 31018 3.49685 3.49685 -125.797 -3.49685 0 0 701300. 2426.64 0.91 0.08 0.22 -1 -1 0.91 0.0123833 0.010951 130 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 20.12 vpr 63.38 MiB -1 -1 0.41 21128 1 0.13 -1 -1 33636 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64900 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 24.8 MiB 0.03 663 8535 1816 6050 669 63.4 MiB 0.13 0.00 3.21869 -93.2403 -3.21869 3.21869 2.45 0.000121456 9.5237e-05 0.0068439 0.00553974 30 1794 24 6.65987e+06 291594 526063. 1820.29 10.47 0.0864911 0.0773777 22546 126617 -1 1375 17 756 1268 78704 19634 2.42405 2.42405 -87.4777 -2.42405 0 0 666494. 2306.21 0.95 0.11 0.28 -1 -1 0.95 0.00836202 0.00752134 100 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 15.68 vpr 64.06 MiB -1 -1 0.51 21432 1 0.20 -1 -1 33772 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 25.3 MiB 0.29 1094 11573 2846 8002 725 64.1 MiB 0.34 0.00 5.047 -126.982 -5.047 5.047 2.30 0.000175859 0.00014189 0.0503598 0.0483346 36 2322 21 6.65987e+06 431052 612192. 2118.31 5.10 0.297468 0.288372 23410 145293 -1 2134 22 1241 2482 160165 36292 3.91299 3.91299 -119.534 -3.91299 0 0 782063. 2706.10 1.08 0.22 0.34 -1 -1 1.08 0.0128943 0.0114938 139 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 12.93 vpr 63.50 MiB -1 -1 0.48 20976 1 0.33 -1 -1 33840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65020 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 24.8 MiB 0.29 658 7038 1455 4830 753 63.5 MiB 0.03 0.00 3.29684 -99.2989 -3.29684 3.29684 2.24 0.000131378 0.000102416 0.00684499 0.00550857 28 1982 22 6.65987e+06 253560 500653. 1732.36 2.88 0.165407 0.160419 21970 115934 -1 1775 20 1165 1930 131320 32832 2.75245 2.75245 -106.269 -2.75245 0 0 612192. 2118.31 0.92 0.41 0.30 -1 -1 0.92 0.245432 0.244371 104 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 13.68 vpr 63.48 MiB -1 -1 0.49 20976 1 0.13 -1 -1 33948 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65004 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 24.9 MiB 0.57 652 14999 3898 8981 2120 63.5 MiB 0.34 0.00 3.84026 -101.059 -3.84026 3.84026 2.27 0.000131525 0.000102477 0.00917954 0.00725515 26 1964 30 6.65987e+06 418374 477104. 1650.88 2.91 0.0368554 0.0302919 21682 110474 -1 1645 21 1213 2151 149760 36190 2.71645 2.71645 -97.4677 -2.71645 0 0 585099. 2024.56 0.77 0.13 0.23 -1 -1 0.77 0.0104856 0.00927402 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 14.11 vpr 63.81 MiB -1 -1 0.56 21432 1 0.05 -1 -1 33816 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 25.4 MiB 0.89 1012 15523 4926 8107 2490 63.8 MiB 0.20 0.00 4.24664 -124.218 -4.24664 4.24664 2.19 0.000176174 0.00014147 0.0172995 0.0140543 32 2438 21 6.65987e+06 304272 554710. 1919.41 2.73 0.131585 0.125131 22834 132086 -1 2076 22 1471 2243 161387 37796 3.14991 3.14991 -109.854 -3.14991 0 0 701300. 2426.64 0.63 0.24 0.12 -1 -1 0.63 0.0141914 0.0126457 138 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 13.52 vpr 63.84 MiB -1 -1 0.61 21432 1 0.24 -1 -1 33852 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 25.1 MiB 0.45 997 13738 3661 8770 1307 63.8 MiB 0.23 0.00 4.3549 -132.453 -4.3549 4.3549 2.16 0.000188026 0.000151987 0.0166228 0.0129496 32 2264 21 6.65987e+06 304272 554710. 1919.41 2.08 0.0483022 0.0399724 22834 132086 -1 2017 21 1451 2287 177683 38721 3.59857 3.59857 -129.696 -3.59857 0 0 701300. 2426.64 0.79 0.14 0.38 -1 -1 0.79 0.0127704 0.0113522 130 54 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 13.57 vpr 64.01 MiB -1 -1 0.43 21584 1 0.10 -1 -1 33516 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 25.4 MiB 0.60 1038 14575 3612 9348 1615 64.0 MiB 0.21 0.00 4.46409 -135.318 -4.46409 4.46409 2.76 0.000167875 0.000134136 0.0153971 0.0126236 32 2489 24 6.65987e+06 342306 554710. 1919.41 2.24 0.203521 0.196379 22834 132086 -1 2235 18 1297 2209 162487 36695 3.47311 3.47311 -128.078 -3.47311 0 0 701300. 2426.64 0.81 0.10 0.17 -1 -1 0.81 0.0713858 0.070192 132 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 13.24 vpr 63.66 MiB -1 -1 0.38 21280 1 0.06 -1 -1 33816 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 24.9 MiB 0.80 846 7820 1845 5552 423 63.7 MiB 0.13 0.00 4.62977 -131.597 -4.62977 4.62977 2.86 0.000136232 0.000108364 0.00802058 0.00652091 30 1909 22 6.65987e+06 202848 526063. 1820.29 2.26 0.0605804 0.0554761 22546 126617 -1 1687 17 707 934 60758 14052 3.02351 3.02351 -112.559 -3.02351 0 0 666494. 2306.21 0.91 0.02 0.29 -1 -1 0.91 0.00962744 0.00868038 103 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 14.37 vpr 63.82 MiB -1 -1 0.57 21280 1 0.20 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 25.1 MiB 0.79 962 14678 4724 7836 2118 63.8 MiB 0.27 0.00 3.69598 -121.08 -3.69598 3.69598 2.46 0.000189554 0.000154415 0.0155726 0.0126779 32 2230 19 6.65987e+06 240882 554710. 1919.41 2.24 0.0435526 0.0358624 22834 132086 -1 1907 19 1232 1854 137979 31545 3.00145 3.00145 -115.533 -3.00145 0 0 701300. 2426.64 0.94 0.09 0.41 -1 -1 0.94 0.0114774 0.0102167 111 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 15.14 vpr 63.86 MiB -1 -1 0.73 21584 1 0.16 -1 -1 33728 -1 -1 33 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 25.2 MiB 1.04 861 11975 2929 8226 820 63.9 MiB 0.19 0.00 3.34001 -95.8068 -3.34001 3.34001 2.67 0.000152813 0.000121528 0.0412169 0.0392008 28 2224 44 6.65987e+06 418374 500653. 1732.36 3.54 0.0763353 0.0687579 21970 115934 -1 1831 20 1251 2268 159057 37940 2.43405 2.43405 -93.0128 -2.43405 0 0 612192. 2118.31 0.64 0.27 0.12 -1 -1 0.64 0.011714 0.0103641 123 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 13.59 vpr 63.42 MiB -1 -1 0.43 21432 1 0.32 -1 -1 33732 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64940 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 24.9 MiB 0.38 923 12623 3487 7239 1897 63.4 MiB 0.19 0.00 4.05815 -100.085 -4.05815 4.05815 2.81 0.000137399 0.000109196 0.00982862 0.0079749 26 2148 42 6.65987e+06 443730 477104. 1650.88 2.97 0.0421143 0.0351627 21682 110474 -1 1872 23 1220 2281 180106 39360 3.35599 3.35599 -99.94 -3.35599 0 0 585099. 2024.56 0.86 0.14 0.28 -1 -1 0.86 0.0105986 0.00930434 115 27 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 14.11 vpr 63.45 MiB -1 -1 0.42 21128 1 0.17 -1 -1 33852 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 24.9 MiB 0.65 815 13937 5246 6335 2356 63.5 MiB 0.19 0.00 4.07397 -115.987 -4.07397 4.07397 2.78 0.000150362 0.000119532 0.0144295 0.0117043 26 2246 33 6.65987e+06 215526 477104. 1650.88 4.08 0.118012 0.110449 21682 110474 -1 1978 21 1324 2287 197957 43663 3.12231 3.12231 -114.295 -3.12231 0 0 585099. 2024.56 0.80 0.13 0.21 -1 -1 0.80 0.0953608 0.0940522 108 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 13.97 vpr 63.89 MiB -1 -1 0.80 21432 1 0.19 -1 -1 33432 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 25.2 MiB 0.73 969 14724 4160 8401 2163 63.9 MiB 0.43 0.00 3.82038 -130.284 -3.82038 3.82038 2.22 0.000181972 0.000148061 0.0152471 0.0123553 32 2416 22 6.65987e+06 253560 554710. 1919.41 2.21 0.0367014 0.0306724 22834 132086 -1 2034 18 1179 1689 134701 30772 3.10351 3.10351 -123.82 -3.10351 0 0 701300. 2426.64 1.11 0.05 0.23 -1 -1 1.11 0.0232836 0.0103366 120 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 15.42 vpr 63.79 MiB -1 -1 0.63 20976 1 0.05 -1 -1 33760 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 25.1 MiB 0.36 1068 16295 4538 9804 1953 63.8 MiB 0.21 0.00 4.27726 -124.118 -4.27726 4.27726 2.79 0.000169881 0.000124943 0.0138367 0.0112482 32 2503 22 6.65987e+06 405696 554710. 1919.41 3.20 0.136345 0.0341435 22834 132086 -1 2162 23 1409 2614 199248 44792 3.56625 3.56625 -116.588 -3.56625 0 0 701300. 2426.64 1.45 0.17 0.24 -1 -1 1.45 0.0576341 0.0562419 127 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 14.38 vpr 64.09 MiB -1 -1 0.50 21584 1 0.18 -1 -1 33824 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 25.5 MiB 0.72 1153 8402 1956 5598 848 64.1 MiB 0.47 0.00 5.15532 -161.668 -5.15532 5.15532 2.75 0.000181367 0.000145166 0.01102 0.00883895 32 3047 21 6.65987e+06 278916 554710. 1919.41 2.06 0.0429549 0.0356322 22834 132086 -1 2490 22 1763 2625 198538 46171 4.22151 4.22151 -150.599 -4.22151 0 0 701300. 2426.64 1.16 0.12 0.18 -1 -1 1.16 0.0943274 0.0931895 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 17.62 vpr 64.10 MiB -1 -1 0.41 21280 1 0.18 -1 -1 33404 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1091 17397 4924 9824 2649 64.1 MiB 0.32 0.00 5.003 -142.071 -5.003 5.003 2.28 8.3064e-05 6.5811e-05 0.264952 0.262609 26 2869 27 6.65987e+06 405696 477104. 1650.88 5.54 0.318255 0.310812 21682 110474 -1 2401 24 1464 2631 218718 54156 4.38703 4.38703 -140.693 -4.38703 0 0 585099. 2024.56 0.74 0.17 0.20 -1 -1 0.74 0.0147885 0.0131075 142 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 19.45 vpr 64.14 MiB -1 -1 0.64 21432 1 0.16 -1 -1 33748 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 25.5 MiB 0.68 1090 6446 1272 4893 281 64.1 MiB 0.11 0.00 4.26912 -136.624 -4.26912 4.26912 2.71 0.000202363 0.000164588 0.00735051 0.00598336 26 3522 48 6.65987e+06 469086 477104. 1650.88 7.25 0.132344 0.123993 21682 110474 -1 2589 23 1584 2665 277874 61981 3.61031 3.61031 -137.059 -3.61031 0 0 585099. 2024.56 0.87 0.29 0.27 -1 -1 0.87 0.0843316 0.082049 140 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 13.71 vpr 63.71 MiB -1 -1 0.20 21128 1 0.02 -1 -1 33896 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 25.1 MiB 0.78 858 11106 2842 6749 1515 63.7 MiB 0.38 0.00 3.61906 -110.793 -3.61906 3.61906 2.59 0.000132116 0.000104254 0.0116341 0.0093416 30 1861 20 6.65987e+06 240882 526063. 1820.29 2.26 0.124363 0.11832 22546 126617 -1 1581 20 799 1273 70669 16439 2.45585 2.45585 -94.8069 -2.45585 0 0 666494. 2306.21 0.93 0.03 0.24 -1 -1 0.93 0.0104883 0.00938779 105 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 13.70 vpr 64.07 MiB -1 -1 0.28 21432 1 0.12 -1 -1 34108 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 25.4 MiB 0.56 983 13583 4344 7194 2045 64.1 MiB 0.28 0.00 4.78844 -139.067 -4.78844 4.78844 2.96 0.000172451 0.000136865 0.0166578 0.0136642 32 2247 22 6.65987e+06 266238 554710. 1919.41 2.13 0.0437133 0.0373687 22834 132086 -1 1997 21 1498 2374 164500 38258 3.52637 3.52637 -125.429 -3.52637 0 0 701300. 2426.64 0.97 0.11 0.33 -1 -1 0.97 0.0755178 0.0740837 137 63 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 17.09 vpr 64.03 MiB -1 -1 0.42 21584 1 0.04 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 25.2 MiB 0.68 1116 12568 3071 7899 1598 64.0 MiB 0.19 0.00 5.00533 -148.1 -5.00533 5.00533 2.60 0.000165582 0.000131416 0.0131479 0.0107622 26 2981 27 6.65987e+06 304272 477104. 1650.88 5.86 0.189793 0.0382439 21682 110474 -1 2617 22 1808 2814 240240 50868 4.29371 4.29371 -140.82 -4.29371 0 0 585099. 2024.56 0.99 0.20 0.14 -1 -1 0.99 0.0131946 0.0117796 138 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 13.65 vpr 64.02 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33924 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 25.4 MiB 1.11 1080 15187 4594 8064 2529 64.0 MiB 0.38 0.00 5.08067 -147.956 -5.08067 5.08067 2.26 0.000162498 0.00012834 0.0152056 0.0124501 32 2661 24 6.65987e+06 354984 554710. 1919.41 2.34 0.0431303 0.0366274 22834 132086 -1 2177 20 1429 2197 160708 36263 4.39417 4.39417 -144.217 -4.39417 0 0 701300. 2426.64 0.75 0.10 0.16 -1 -1 0.75 0.0689175 0.0676375 146 47 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 17.09 vpr 63.86 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33832 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 25.4 MiB 3.74 989 11223 2996 7351 876 63.9 MiB 0.35 0.00 4.29269 -128.576 -4.29269 4.29269 2.35 0.000165075 0.000131308 0.0119329 0.00975812 32 2241 22 6.65987e+06 393018 554710. 1919.41 2.23 0.040926 0.0347302 22834 132086 -1 1978 20 1350 2182 152265 35695 2.90431 2.90431 -112.586 -2.90431 0 0 701300. 2426.64 1.23 0.33 0.27 -1 -1 1.23 0.0136675 0.0122227 133 83 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 14.60 vpr 64.02 MiB -1 -1 0.56 21432 1 0.35 -1 -1 33832 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 25.4 MiB 0.46 1059 15273 4721 8591 1961 64.0 MiB 0.28 0.00 4.76549 -137.908 -4.76549 4.76549 2.87 0.000173412 0.000139975 0.01927 0.0143363 32 2636 19 6.65987e+06 253560 554710. 1919.41 2.57 0.156738 0.147725 22834 132086 -1 2263 20 1357 2383 173914 39226 3.69631 3.69631 -131.863 -3.69631 0 0 701300. 2426.64 1.11 0.25 0.23 -1 -1 1.11 0.0155199 0.014364 133 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 14.12 vpr 64.05 MiB -1 -1 0.60 21432 1 0.09 -1 -1 33568 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 25.4 MiB 1.24 957 9336 2567 5788 981 64.1 MiB 0.15 0.00 4.45269 -125.553 -4.45269 4.45269 2.27 0.000190135 0.000157653 0.106214 0.104439 32 2212 21 6.65987e+06 367662 554710. 1919.41 2.33 0.357884 0.352346 22834 132086 -1 1885 20 1221 1963 136867 32931 3.04431 3.04431 -109.753 -3.04431 0 0 701300. 2426.64 1.18 0.19 0.21 -1 -1 1.18 0.122435 0.120953 131 85 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 12.68 vpr 63.40 MiB -1 -1 0.33 20976 1 0.11 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64920 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 24.8 MiB 0.26 684 12416 3704 6939 1773 63.4 MiB 0.24 0.00 3.74649 -110.459 -3.74649 3.74649 2.51 0.000177207 0.000146202 0.0117666 0.00956856 32 1636 29 6.65987e+06 190170 554710. 1919.41 2.05 0.0640722 0.0594987 22834 132086 -1 1448 19 845 1255 94066 22494 2.92385 2.92385 -104.507 -2.92385 0 0 701300. 2426.64 0.99 0.29 0.29 -1 -1 0.99 0.216065 0.214845 96 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 15.33 vpr 64.04 MiB -1 -1 0.49 21280 1 0.03 -1 -1 33728 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 25.4 MiB 0.65 960 15004 4235 7978 2791 64.0 MiB 0.49 0.00 4.36949 -132.189 -4.36949 4.36949 2.82 0.000185384 0.000148506 0.19324 0.190425 32 2302 19 6.65987e+06 380340 554710. 1919.41 2.67 0.32009 0.314378 22834 132086 -1 2000 19 1289 2064 160145 35763 3.75771 3.75771 -128.564 -3.75771 0 0 701300. 2426.64 0.81 0.09 0.23 -1 -1 0.81 0.0128487 0.0115582 130 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 14.45 vpr 64.15 MiB -1 -1 0.77 21432 1 0.07 -1 -1 33804 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 25.5 MiB 0.76 1050 14907 5385 7856 1666 64.2 MiB 0.25 0.00 4.72838 -146.592 -4.72838 4.72838 2.62 0.000189865 0.000153789 0.0171167 0.0140155 32 2630 21 6.65987e+06 253560 554710. 1919.41 2.37 0.0689549 0.0614925 22834 132086 -1 2230 22 1840 2990 221471 50918 4.14117 4.14117 -142.698 -4.14117 0 0 701300. 2426.64 1.08 0.20 0.11 -1 -1 1.08 0.0135297 0.0120474 147 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 13.32 vpr 63.47 MiB -1 -1 0.65 21280 1 0.17 -1 -1 33416 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64996 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 24.9 MiB 0.74 894 13403 4479 6698 2226 63.5 MiB 0.11 0.00 4.19577 -118.859 -4.19577 4.19577 2.31 0.000147502 0.000109262 0.0126762 0.0101537 28 2196 21 6.65987e+06 240882 500653. 1732.36 2.77 0.0380579 0.031826 21970 115934 -1 1851 20 1036 1383 108668 24955 3.26225 3.26225 -110.746 -3.26225 0 0 612192. 2118.31 1.38 0.29 0.28 -1 -1 1.38 0.00974122 0.00864199 111 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 13.27 vpr 63.50 MiB -1 -1 0.59 20976 1 0.02 -1 -1 33780 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65024 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 24.9 MiB 0.34 776 8868 2239 6065 564 63.5 MiB 0.13 0.00 3.80235 -109.947 -3.80235 3.80235 2.61 6.3708e-05 4.9993e-05 0.00559361 0.00455718 26 1970 25 6.65987e+06 266238 477104. 1650.88 2.90 0.241068 0.236242 21682 110474 -1 1723 23 1176 1960 153298 34555 2.80565 2.80565 -104.334 -2.80565 0 0 585099. 2024.56 0.81 0.12 0.41 -1 -1 0.81 0.0100552 0.0088737 106 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 15.94 vpr 64.10 MiB -1 -1 0.38 21280 1 0.10 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65640 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 25.4 MiB 0.49 1094 12167 3085 7463 1619 64.1 MiB 0.09 0.00 4.97701 -158.279 -4.97701 4.97701 2.53 0.000161312 0.000129816 0.0121909 0.00999423 26 3090 32 6.65987e+06 316950 477104. 1650.88 4.69 0.0534652 0.0428262 21682 110474 -1 2508 23 1898 2512 210561 46734 4.30183 4.30183 -155.617 -4.30183 0 0 585099. 2024.56 0.75 0.24 0.33 -1 -1 0.75 0.013143 0.0117014 144 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 17.61 vpr 63.81 MiB -1 -1 0.57 20976 1 0.21 -1 -1 33548 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 25.1 MiB 1.18 1053 6923 1467 5091 365 63.8 MiB 0.07 0.00 5.03847 -147.541 -5.03847 5.03847 2.98 0.000194142 0.000160188 0.00813949 0.00673389 28 2980 22 6.65987e+06 354984 500653. 1732.36 5.44 0.143717 0.137558 21970 115934 -1 2306 21 1618 2412 176317 40884 4.33597 4.33597 -146.027 -4.33597 0 0 612192. 2118.31 0.86 0.22 0.48 -1 -1 0.86 0.0128865 0.0114883 151 56 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 15.63 vpr 63.96 MiB -1 -1 0.50 21432 1 0.05 -1 -1 33788 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.4 MiB 0.30 1239 17268 4300 11396 1572 64.0 MiB 0.53 0.11 5.24834 -143.442 -5.24834 5.24834 2.60 0.00018549 0.000140778 0.0169858 0.0139239 30 2758 25 6.65987e+06 456408 526063. 1820.29 3.65 0.119954 0.112157 22546 126617 -1 2371 21 1238 2402 146964 32150 4.16083 4.16083 -133.389 -4.16083 0 0 666494. 2306.21 0.76 0.05 0.25 -1 -1 0.76 0.010236 0.00895383 153 3 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 13.14 vpr 63.72 MiB -1 -1 0.50 20976 1 0.04 -1 -1 33712 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 25.1 MiB 1.08 853 11223 2920 7020 1283 63.7 MiB 0.10 0.00 3.39798 -101.422 -3.39798 3.39798 2.36 0.000175899 0.000143298 0.0110945 0.0090861 26 2061 23 6.65987e+06 393018 477104. 1650.88 3.20 0.0357329 0.030183 21682 110474 -1 1868 18 1213 2055 145704 34724 2.80371 2.80371 -101.985 -2.80371 0 0 585099. 2024.56 0.65 0.18 0.27 -1 -1 0.65 0.0106915 0.00950961 120 52 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 12.02 vpr 63.34 MiB -1 -1 0.40 21128 1 0.11 -1 -1 34156 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64860 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 24.8 MiB 0.06 562 12120 3232 7522 1366 63.3 MiB 0.15 0.00 3.49724 -92.7291 -3.49724 3.49724 2.76 0.000160291 0.000127029 0.012295 0.0098888 28 1503 22 6.65987e+06 266238 500653. 1732.36 2.26 0.0362898 0.0302729 21970 115934 -1 1367 23 1081 1581 120522 28570 2.71577 2.71577 -91.1214 -2.71577 0 0 612192. 2118.31 0.77 0.08 0.34 -1 -1 0.77 0.0582219 0.0570086 97 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 16.31 vpr 64.01 MiB -1 -1 0.58 21736 1 0.09 -1 -1 33832 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65544 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 25.6 MiB 0.45 1323 15969 4617 8792 2560 64.0 MiB 0.25 0.00 4.09377 -133.735 -4.09377 4.09377 2.48 0.000216131 0.000176539 0.019158 0.0157759 28 3675 45 6.65987e+06 329628 500653. 1732.36 4.88 0.204784 0.194352 21970 115934 -1 2897 19 1932 3279 249002 53716 3.62139 3.62139 -131.023 -3.62139 0 0 612192. 2118.31 0.78 0.16 0.34 -1 -1 0.78 0.119617 0.0131375 170 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 16.38 vpr 64.02 MiB -1 -1 0.79 21736 1 0.06 -1 -1 33868 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 25.2 MiB 3.09 1078 12528 4327 6387 1814 64.0 MiB 0.31 0.23 5.17417 -151.407 -5.17417 5.17417 2.54 0.000181277 0.000144373 0.0149598 0.0122692 32 2753 22 6.65987e+06 266238 554710. 1919.41 2.38 0.246568 0.239404 22834 132086 -1 2282 21 1708 2595 216768 47454 4.38517 4.38517 -148.257 -4.38517 0 0 701300. 2426.64 0.89 0.32 0.34 -1 -1 0.89 0.0117034 0.010493 150 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 18.03 vpr 63.62 MiB -1 -1 0.61 21584 1 0.15 -1 -1 33904 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65144 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 25.1 MiB 3.05 964 14856 4683 7908 2265 63.6 MiB 0.34 0.00 4.1377 -130.564 -4.1377 4.1377 3.24 0.000147766 0.000117085 0.143536 0.140585 32 2171 20 6.65987e+06 228204 554710. 1919.41 2.71 0.199996 0.194208 22834 132086 -1 1934 19 1317 1944 141571 32307 3.53756 3.53756 -126.092 -3.53756 0 0 701300. 2426.64 1.03 0.02 0.42 -1 -1 1.03 0.00690963 0.00629059 126 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 13.48 vpr 63.91 MiB -1 -1 0.51 21432 1 0.02 -1 -1 33836 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 25.2 MiB 0.15 1012 18199 5227 11404 1568 63.9 MiB 0.22 0.00 4.85416 -126.382 -4.85416 4.85416 2.62 0.000163132 0.000130477 0.0166744 0.0133698 26 2667 26 6.65987e+06 380340 477104. 1650.88 3.39 0.309564 0.188835 21682 110474 -1 2147 22 1218 1993 155083 36118 3.76645 3.76645 -124.796 -3.76645 0 0 585099. 2024.56 1.03 0.25 0.21 -1 -1 1.03 0.0116192 0.010274 126 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 13.31 vpr 64.13 MiB -1 -1 0.43 21432 1 0.02 -1 -1 33796 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 25.4 MiB 0.72 1069 18054 5191 10505 2358 64.1 MiB 0.27 0.00 4.75754 -136.396 -4.75754 4.75754 2.50 0.000171813 0.000139055 0.0712609 0.0682239 32 2485 22 6.65987e+06 418374 554710. 1919.41 2.35 0.154525 0.14255 22834 132086 -1 2209 20 1432 2333 172652 38504 3.37811 3.37811 -123.135 -3.37811 0 0 701300. 2426.64 0.95 0.15 0.35 -1 -1 0.95 0.112079 0.110645 144 50 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 13.55 vpr 63.86 MiB -1 -1 0.63 21280 1 0.15 -1 -1 33924 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 25.2 MiB 0.31 999 9333 2113 6300 920 63.9 MiB 0.22 0.00 3.66846 -111.209 -3.66846 3.66846 2.73 0.000154665 0.000123545 0.0090687 0.00746416 32 2352 21 6.65987e+06 393018 554710. 1919.41 2.89 0.0321948 0.0270197 22834 132086 -1 2074 22 1327 2197 168002 37989 2.89191 2.89191 -104.742 -2.89191 0 0 701300. 2426.64 0.83 0.10 0.18 -1 -1 0.83 0.0500403 0.0486382 124 51 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 13.19 vpr 64.14 MiB -1 -1 0.44 21280 1 0.03 -1 -1 33696 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 25.5 MiB 0.33 1084 14713 4574 7744 2395 64.1 MiB 0.23 0.00 4.85897 -149.918 -4.85897 4.85897 2.86 0.000169494 0.000136511 0.140208 0.137434 32 3081 26 6.65987e+06 304272 554710. 1919.41 2.17 0.219811 0.212353 22834 132086 -1 2484 20 1987 3003 234271 54312 4.08025 4.08025 -143.874 -4.08025 0 0 701300. 2426.64 0.88 0.17 0.31 -1 -1 0.88 0.153278 0.151901 147 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 12.71 vpr 64.15 MiB -1 -1 0.43 21888 1 0.17 -1 -1 33712 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 25.5 MiB 0.83 1057 18773 5614 10501 2658 64.1 MiB 0.40 0.00 4.57498 -141.369 -4.57498 4.57498 2.63 0.000232753 0.000141082 0.139659 0.136217 28 2488 21 6.65987e+06 431052 500653. 1732.36 2.66 0.245547 0.238225 21970 115934 -1 2269 18 1269 1970 143696 32000 3.37091 3.37091 -127.74 -3.37091 0 0 612192. 2118.31 0.53 0.12 0.24 -1 -1 0.53 0.0135305 0.0121466 143 62 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 12.43 vpr 63.52 MiB -1 -1 0.29 20824 1 0.17 -1 -1 33688 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65040 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 24.8 MiB 0.61 520 12528 3273 8240 1015 63.5 MiB 0.10 0.00 3.78218 -105.823 -3.78218 3.78218 2.33 0.000183934 0.000154958 0.064558 0.00949455 32 1509 20 6.65987e+06 215526 554710. 1919.41 2.69 0.13071 0.0719715 22834 132086 -1 1340 20 951 1328 112971 27296 2.74517 2.74517 -94.6149 -2.74517 0 0 701300. 2426.64 0.76 0.11 0.16 -1 -1 0.76 0.0948997 0.093837 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 13.08 vpr 63.56 MiB -1 -1 0.55 21584 1 0.05 -1 -1 34084 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65084 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 25.1 MiB 0.75 961 12345 3304 7210 1831 63.6 MiB 0.16 0.00 3.97227 -126.423 -3.97227 3.97227 2.42 0.00015902 0.000126283 0.09809 0.0957955 32 2074 22 6.65987e+06 253560 554710. 1919.41 2.65 0.119794 0.114289 22834 132086 -1 1846 20 1382 1825 150330 33395 3.14377 3.14377 -116.8 -3.14377 0 0 701300. 2426.64 0.88 0.37 0.25 -1 -1 0.88 0.139341 0.138064 116 58 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 13.64 vpr 63.94 MiB -1 -1 0.32 21584 1 0.18 -1 -1 33788 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 25.2 MiB 0.38 918 7988 1511 6133 344 63.9 MiB 0.12 0.00 4.586 -121.831 -4.586 4.586 2.34 0.000167365 0.000135478 0.0074725 0.00621123 26 2466 46 6.65987e+06 469086 477104. 1650.88 4.09 0.12393 0.117216 21682 110474 -1 2051 21 1189 2186 143750 34653 3.66531 3.66531 -123.472 -3.66531 0 0 585099. 2024.56 0.55 0.14 0.14 -1 -1 0.55 0.111771 0.110396 129 33 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 13.27 vpr 63.44 MiB -1 -1 0.41 21280 1 0.02 -1 -1 34012 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64960 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 24.8 MiB 0.44 913 13076 3345 8177 1554 63.4 MiB 0.14 0.00 4.16472 -115.101 -4.16472 4.16472 2.03 0.000138953 0.000110049 0.0116361 0.00942224 26 2335 22 6.65987e+06 266238 477104. 1650.88 2.67 0.0853877 0.0792924 21682 110474 -1 1983 22 1201 1563 120338 28160 3.21591 3.21591 -110.777 -3.21591 0 0 585099. 2024.56 1.15 0.03 0.10 -1 -1 1.15 0.010151 0.00895864 110 31 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 13.37 vpr 63.43 MiB -1 -1 0.74 21432 1 0.05 -1 -1 33668 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64948 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 24.9 MiB 0.60 840 12980 3474 8543 963 63.4 MiB 0.19 0.00 3.73708 -117.005 -3.73708 3.73708 2.21 0.000153837 0.000122381 0.0126295 0.0102317 32 2039 20 6.65987e+06 202848 554710. 1919.41 3.14 0.0366303 0.0305555 22834 132086 -1 1895 20 1345 2275 189875 42263 2.87965 2.87965 -111.934 -2.87965 0 0 701300. 2426.64 0.92 0.19 0.32 -1 -1 0.92 0.00884211 0.00782272 109 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 12.17 vpr 63.91 MiB -1 -1 0.34 21736 1 0.07 -1 -1 33508 -1 -1 35 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 25.4 MiB 0.75 874 11348 2922 7210 1216 63.9 MiB 0.29 0.00 4.00794 -116.831 -4.00794 4.00794 2.11 0.000186902 0.00013989 0.0122115 0.00985808 26 2298 26 6.65987e+06 443730 477104. 1650.88 2.66 0.193576 0.0769079 21682 110474 -1 1930 23 1614 2486 162553 39680 3.11237 3.11237 -112.795 -3.11237 0 0 585099. 2024.56 0.88 0.08 0.25 -1 -1 0.88 0.0622346 0.0611406 135 64 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 12.02 vpr 63.64 MiB -1 -1 0.33 21432 1 0.03 -1 -1 33460 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65164 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 24.9 MiB 0.48 755 6846 1343 5305 198 63.6 MiB 0.15 0.00 3.8773 -116.608 -3.8773 3.8773 2.44 0.000137432 0.000109114 0.00730723 0.00596196 28 2204 28 6.65987e+06 240882 500653. 1732.36 2.91 0.123759 0.0247602 21970 115934 -1 1805 21 1124 1620 120174 28100 2.98957 2.98957 -109.832 -2.98957 0 0 612192. 2118.31 0.70 0.02 0.31 -1 -1 0.70 0.00482924 0.00425972 108 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 15.29 vpr 63.96 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33540 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65500 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 25.2 MiB 0.92 979 15863 4619 8770 2474 64.0 MiB 0.11 0.00 3.70512 -117.413 -3.70512 3.70512 2.73 0.000172015 0.00013621 0.0107385 0.00863521 28 2346 22 6.65987e+06 393018 500653. 1732.36 3.86 0.0421255 0.0354034 21970 115934 -1 2005 21 1259 2252 173977 37393 2.77191 2.77191 -107.034 -2.77191 0 0 612192. 2118.31 0.83 0.12 0.53 -1 -1 0.83 0.0912774 0.0896702 126 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 15.37 vpr 63.99 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33816 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 25.4 MiB 2.72 976 17159 4932 10231 1996 64.0 MiB 0.27 0.00 4.34696 -137.767 -4.34696 4.34696 2.40 0.000196074 0.000157189 0.0167079 0.013622 32 2144 23 6.65987e+06 405696 554710. 1919.41 2.97 0.076872 0.0691289 22834 132086 -1 1953 19 1355 1927 139366 32359 3.23882 3.23882 -127.364 -3.23882 0 0 701300. 2426.64 0.93 0.10 0.39 -1 -1 0.93 0.077748 0.0763407 138 91 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 13.34 vpr 63.70 MiB -1 -1 0.44 21432 1 0.21 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 24.9 MiB 0.89 668 7781 1699 5777 305 63.7 MiB 0.12 0.00 3.26384 -99.6676 -3.26384 3.26384 2.54 0.000149886 0.000119017 0.00826082 0.00675345 28 1984 44 6.65987e+06 215526 500653. 1732.36 2.97 0.0732136 0.0673876 21970 115934 -1 1645 19 942 1437 123250 30526 3.00505 3.00505 -105.438 -3.00505 0 0 612192. 2118.31 0.81 0.03 0.21 -1 -1 0.81 0.0102581 0.00910319 104 57 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 13.02 vpr 63.61 MiB -1 -1 0.54 21128 1 0.04 -1 -1 33552 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 25.0 MiB 0.32 794 6203 1260 4522 421 63.6 MiB 0.19 0.00 4.22769 -129.19 -4.22769 4.22769 2.32 0.000159657 0.000129095 0.0826848 0.0814657 28 2579 36 6.65987e+06 240882 500653. 1732.36 2.83 0.112285 0.106537 21970 115934 -1 2036 24 1581 2366 175371 43562 3.11651 3.11651 -117.093 -3.11651 0 0 612192. 2118.31 0.90 0.18 0.17 -1 -1 0.90 0.109714 0.108376 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 13.50 vpr 63.79 MiB -1 -1 0.61 21432 1 0.22 -1 -1 33696 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65320 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 25.4 MiB 0.25 1125 13505 4132 7011 2362 63.8 MiB 0.28 0.00 4.57684 -138.254 -4.57684 4.57684 2.60 0.000155564 0.000124195 0.0102394 0.00831129 32 2501 22 6.65987e+06 278916 554710. 1919.41 2.48 0.11553 0.109428 22834 132086 -1 2218 19 1571 2245 176338 39928 3.59051 3.59051 -128.335 -3.59051 0 0 701300. 2426.64 0.89 0.11 0.41 -1 -1 0.89 0.0750705 0.0737898 130 30 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 13.64 vpr 63.85 MiB -1 -1 0.54 21432 1 0.18 -1 -1 33560 -1 -1 28 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 25.2 MiB 1.16 892 10583 2550 7235 798 63.8 MiB 0.05 0.00 4.50014 -117.038 -4.50014 4.50014 2.17 0.00022968 0.000196465 0.00752789 0.00617829 32 2080 20 6.65987e+06 354984 554710. 1919.41 2.22 0.0941201 0.0886319 22834 132086 -1 1828 19 866 1438 94511 22116 2.99731 2.99731 -103.782 -2.99731 0 0 701300. 2426.64 1.06 0.02 0.32 -1 -1 1.06 0.00553346 0.00496833 121 55 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 14.11 vpr 63.84 MiB -1 -1 0.50 21736 1 0.17 -1 -1 33820 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 25.6 MiB 0.67 1086 7383 1628 5394 361 63.8 MiB 0.18 0.00 5.16517 -163.631 -5.16517 5.16517 2.52 0.000180427 0.000144785 0.00951422 0.00796851 32 2920 23 6.65987e+06 291594 554710. 1919.41 2.38 0.245735 0.240064 22834 132086 -1 2367 23 1921 2795 213019 48739 3.76211 3.76211 -142.445 -3.76211 0 0 701300. 2426.64 1.02 0.06 0.32 -1 -1 1.02 0.0159285 0.0142205 153 65 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 12.43 vpr 63.36 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33624 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64876 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 24.8 MiB 0.29 592 6556 1291 4487 778 63.4 MiB 0.05 0.00 3.5672 -94.4593 -3.5672 3.5672 2.37 0.000128058 0.000100838 0.00656656 0.00534122 32 1464 20 6.65987e+06 228204 554710. 1919.41 2.52 0.101444 0.0966026 22834 132086 -1 1272 17 683 1048 65988 18022 2.60051 2.60051 -92.4535 -2.60051 0 0 701300. 2426.64 1.14 0.10 0.45 -1 -1 1.14 0.086216 0.0853806 96 4 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 17.40 vpr 64.21 MiB -1 -1 0.38 21584 1 0.16 -1 -1 33640 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 25.5 MiB 1.81 1151 14083 3602 8814 1667 64.2 MiB 0.20 0.00 4.1637 -141.581 -4.1637 4.1637 2.49 0.000196167 0.000158828 0.0150689 0.0124102 26 2855 28 6.65987e+06 418374 477104. 1650.88 4.11 0.350284 0.225366 21682 110474 -1 2428 17 1540 2262 205281 43246 3.74877 3.74877 -142.669 -3.74877 0 0 585099. 2024.56 1.02 0.02 0.20 -1 -1 1.02 0.00616166 0.00552918 144 90 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 12.89 vpr 63.76 MiB -1 -1 0.63 21432 1 0.03 -1 -1 33144 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 25.2 MiB 0.64 838 12464 4352 6338 1774 63.8 MiB 0.20 0.00 3.54047 -123.895 -3.54047 3.54047 2.65 0.000177827 0.000142299 0.014836 0.0120821 30 1801 21 6.65987e+06 202848 526063. 1820.29 2.64 0.146909 0.139396 22546 126617 -1 1561 17 1049 1497 77220 22366 3.01617 3.01617 -121.021 -3.01617 0 0 666494. 2306.21 0.84 0.08 0.18 -1 -1 0.84 0.010939 0.00983523 115 96 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 13.75 vpr 64.02 MiB -1 -1 0.38 21280 1 0.16 -1 -1 33968 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 25.4 MiB 1.19 989 16079 4722 9035 2322 64.0 MiB 0.36 0.00 4.19332 -128.751 -4.19332 4.19332 2.52 0.000176067 0.000141488 0.0151648 0.0123052 32 2303 20 6.65987e+06 393018 554710. 1919.41 2.53 0.0401984 0.0337846 22834 132086 -1 1944 20 1024 1476 102935 24438 3.08031 3.08031 -112.745 -3.08031 0 0 701300. 2426.64 1.05 0.14 0.32 -1 -1 1.05 0.118487 0.0114678 130 60 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 17.79 vpr 63.93 MiB -1 -1 0.39 21432 1 0.02 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 25.7 MiB 1.11 1359 11969 3395 7471 1103 63.9 MiB 0.25 0.00 6.16929 -186.366 -6.16929 6.16929 2.26 0.000209854 0.000173789 0.0107131 0.00882311 30 3043 24 6.65987e+06 316950 526063. 1820.29 2.94 0.161378 0.15445 22546 126617 -1 2616 22 1610 2379 143134 33077 4.59557 4.59557 -159.022 -4.59557 0 0 666494. 2306.21 0.92 0.17 0.15 -1 -1 0.92 0.0171735 0.0155679 168 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 12.43 vpr 63.34 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33880 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64856 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 24.6 MiB 0.43 745 7177 1689 4856 632 63.3 MiB 0.05 0.00 3.31307 -103.404 -3.31307 3.31307 2.75 0.00012233 9.5761e-05 0.00610153 0.00491755 32 1675 19 6.65987e+06 215526 554710. 1919.41 2.39 0.179699 0.175286 22834 132086 -1 1453 19 628 782 64696 14673 2.39717 2.39717 -94.6099 -2.39717 0 0 701300. 2426.64 1.01 0.02 0.38 -1 -1 1.01 0.00765598 0.00676983 86 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 12.08 vpr 63.59 MiB -1 -1 0.44 21128 1 0.11 -1 -1 33868 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 24.9 MiB 0.35 650 12030 3133 7171 1726 63.6 MiB 0.26 0.00 4.01089 -115.329 -4.01089 4.01089 2.52 0.00014927 0.000119813 0.00743115 0.00584523 30 1505 18 6.65987e+06 202848 526063. 1820.29 2.52 0.0902766 0.0283283 22546 126617 -1 1346 15 670 1074 59031 14593 2.86577 2.86577 -104.259 -2.86577 0 0 666494. 2306.21 0.86 0.03 0.29 -1 -1 0.86 0.00968039 0.00871673 92 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 25.17 vpr 63.55 MiB -1 -1 0.15 21128 1 0.13 -1 -1 33884 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 25.1 MiB 0.33 882 9385 2433 6375 577 63.6 MiB 0.13 0.00 3.38183 -110.848 -3.38183 3.38183 2.40 0.000159156 0.000127222 0.086645 0.0848959 26 2437 26 6.65987e+06 266238 477104. 1650.88 3.90 0.174048 0.167893 21682 110474 -1 2088 20 1280 2284 187869 41747 2.89185 2.89185 -114.796 -2.89185 0 0 585099. 2024.56 0.64 0.15 0.21 -1 -1 0.64 0.0107937 0.00962254 115 34 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 25.54 vpr 63.29 MiB -1 -1 0.54 21128 1 0.11 -1 -1 33984 -1 -1 27 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64804 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 24.6 MiB 0.21 449 9966 3407 4404 2155 63.3 MiB 0.03 0.00 3.08755 -73.109 -3.08755 3.08755 2.81 4.9934e-05 3.8314e-05 0.00353064 0.0027907 30 1370 31 6.65987e+06 342306 526063. 1820.29 2.95 0.0242532 0.0200155 22546 126617 -1 1021 19 627 1055 55046 15357 2.58539 2.58539 -70.2122 -2.58539 0 0 666494. 2306.21 0.80 0.10 0.18 -1 -1 0.80 0.00815162 0.00717133 89 29 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 24.70 vpr 63.96 MiB -1 -1 0.47 21432 1 0.03 -1 -1 33708 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 25.2 MiB 1.01 1061 14724 4524 7950 2250 64.0 MiB 0.32 0.00 3.87115 -126.135 -3.87115 3.87115 2.43 0.000186387 0.000149318 0.0884326 0.085274 32 2737 23 6.65987e+06 253560 554710. 1919.41 2.76 0.203996 0.174324 22834 132086 -1 2306 23 1516 2740 212466 46393 3.42705 3.42705 -123.927 -3.42705 0 0 701300. 2426.64 0.90 0.15 0.21 -1 -1 0.90 0.0143289 0.0127044 135 72 -1 -1 -1 -1 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 16.44 vpr 64.05 MiB -1 -1 0.63 21280 1 0.07 -1 -1 33752 -1 -1 33 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 25.4 MiB 1.18 975 9075 1909 6647 519 64.1 MiB 0.28 0.00 4.32075 -139.498 -4.32075 4.32075 2.34 0.000183343 0.000146694 0.0104796 0.00864093 32 2278 20 6.65987e+06 418374 554710. 1919.41 2.33 0.0411834 0.0344837 22834 132086 -1 2040 20 1370 2126 149262 34342 3.08137 3.08137 -121.829 -3.08137 0 0 701300. 2426.64 1.20 0.14 0.60 -1 -1 1.20 0.0126774 0.0112057 142 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 25.09 vpr 64.76 MiB -1 -1 0.57 21584 1 0.38 -1 -1 33184 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 26.1 MiB 7.38 826 9531 3925 5345 261 64.8 MiB 0.13 0.00 5.4415 -158.508 -5.4415 5.4415 2.14 0.000180317 0.00014595 0.0612286 0.0590642 46 2558 41 6.95648e+06 188184 828058. 2865.25 7.88 0.313944 0.303477 28066 200906 -1 1864 24 1375 2137 175286 37772 4.36336 4.36336 -146.028 -4.36336 0 0 1.01997e+06 3529.29 1.23 0.21 0.35 -1 -1 1.23 0.00923027 0.0083153 81 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 34.44 vpr 64.59 MiB -1 -1 0.50 21280 1 0.04 -1 -1 33548 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 26.0 MiB 8.16 821 11487 4767 6319 401 64.6 MiB 0.19 0.00 4.63327 -139.023 -4.63327 4.63327 2.09 0.000204531 0.000167679 0.0134104 0.0109708 36 3133 47 6.95648e+06 217135 648988. 2245.63 16.04 0.120418 0.108607 26050 158493 -1 2274 24 2149 3039 368868 87190 4.58011 4.58011 -154.102 -4.58011 0 0 828058. 2865.25 0.78 0.35 0.44 -1 -1 0.78 0.0142113 0.0124625 80 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 29.97 vpr 64.55 MiB -1 -1 0.32 21432 1 0.07 -1 -1 33860 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 25.9 MiB 3.73 882 10726 4435 6115 176 64.5 MiB 0.13 0.00 3.82865 -122.325 -3.82865 3.82865 2.49 0.000220885 0.000186015 0.0119326 0.00964756 36 3082 32 6.95648e+06 217135 648988. 2245.63 16.47 0.357448 0.267405 26050 158493 -1 2213 21 1512 2041 243216 57764 4.14272 4.14272 -134.304 -4.14272 0 0 828058. 2865.25 0.91 0.36 0.23 -1 -1 0.91 0.0123253 0.0110278 76 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 32.54 vpr 64.52 MiB -1 -1 0.48 21280 1 0.20 -1 -1 33820 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 25.8 MiB 0.94 723 14356 5004 7145 2207 64.5 MiB 0.08 0.00 4.16078 -115.782 -4.16078 4.16078 2.41 0.000166705 0.000133671 0.0153969 0.0125432 40 1885 36 6.95648e+06 275038 706193. 2443.58 21.83 0.104445 0.0865984 26914 176310 -1 1616 30 1780 3002 329535 137320 3.83102 3.83102 -121.913 -3.83102 0 0 926341. 3205.33 1.05 0.19 0.28 -1 -1 1.05 0.0152318 0.0134246 71 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 23.90 vpr 64.67 MiB -1 -1 0.64 21432 1 0.08 -1 -1 33556 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 25.9 MiB 2.64 749 12292 4613 5164 2515 64.7 MiB 0.26 0.18 4.40715 -128.632 -4.40715 4.40715 2.11 7.1844e-05 5.5048e-05 0.00881126 0.00720305 46 2451 40 6.95648e+06 231611 828058. 2865.25 10.32 0.213437 0.203084 28066 200906 -1 1909 25 1380 2352 186265 40919 4.82586 4.82586 -139.578 -4.82586 0 0 1.01997e+06 3529.29 1.28 0.25 0.22 -1 -1 1.28 0.0627553 0.0615462 73 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 26.86 vpr 64.57 MiB -1 -1 0.40 21584 1 0.10 -1 -1 33696 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 25.9 MiB 3.08 768 12919 4485 6787 1647 64.6 MiB 0.16 0.01 3.0405 -113.87 -3.0405 3.0405 2.51 8.1882e-05 6.2273e-05 0.122687 0.120591 40 2304 25 6.95648e+06 303989 706193. 2443.58 6.37 0.357985 0.339446 26914 176310 -1 1976 19 1426 2147 191264 42628 3.78697 3.78697 -130.119 -3.78697 0 0 926341. 3205.33 1.24 0.12 0.35 -1 -1 1.24 0.0122775 0.0109902 79 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 31.61 vpr 63.91 MiB -1 -1 0.54 21128 1 0.01 -1 -1 33872 -1 -1 13 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 25.5 MiB 15.21 452 7969 3251 4260 458 63.9 MiB 0.03 0.00 3.56899 -94.1044 -3.56899 3.56899 2.44 0.000144858 0.000115729 0.00855758 0.00687269 36 1895 42 6.95648e+06 188184 648988. 2245.63 6.14 0.177575 0.168428 26050 158493 -1 1338 20 954 1459 126832 28456 3.21632 3.21632 -99.4111 -3.21632 0 0 828058. 2865.25 0.83 0.07 0.58 -1 -1 0.83 0.00961939 0.00840181 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 40.15 vpr 64.43 MiB -1 -1 0.33 21128 1 0.03 -1 -1 33712 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.8 MiB 1.35 666 12373 5100 6745 528 64.4 MiB 0.13 0.00 2.8601 -92.4221 -2.8601 2.8601 2.52 0.000232638 0.000194624 0.0436426 0.041499 38 2312 48 6.95648e+06 361892 678818. 2348.85 29.62 0.414307 0.324809 26626 170182 -1 1628 23 1279 2033 177106 42350 2.89252 2.89252 -101.096 -2.89252 0 0 902133. 3121.57 1.45 0.11 0.25 -1 -1 1.45 0.049976 0.0486464 69 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 23.61 vpr 64.17 MiB -1 -1 0.60 21584 1 0.20 -1 -1 33572 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 25.6 MiB 6.29 588 11234 4630 5959 645 64.2 MiB 0.15 0.00 3.43049 -116.456 -3.43049 3.43049 2.55 0.000149637 0.000117562 0.0126001 0.0101894 46 2204 40 6.95648e+06 159232 828058. 2865.25 6.40 0.0592473 0.048775 28066 200906 -1 1658 32 1457 2042 213244 64863 3.83306 3.83306 -128.52 -3.83306 0 0 1.01997e+06 3529.29 1.05 0.19 0.45 -1 -1 1.05 0.015197 0.0133318 66 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 19.02 vpr 64.37 MiB -1 -1 0.41 21280 1 0.03 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 25.8 MiB 3.24 622 12629 5382 6987 260 64.4 MiB 0.13 0.00 3.30928 -114.751 -3.30928 3.30928 2.42 6.7812e-05 5.1403e-05 0.00817798 0.00646188 40 1847 26 6.95648e+06 144757 706193. 2443.58 5.70 0.0484958 0.0402336 26914 176310 -1 1509 18 1189 1666 138391 31163 3.20912 3.20912 -122.324 -3.20912 0 0 926341. 3205.33 1.00 0.17 0.42 -1 -1 1.00 0.00941837 0.00888705 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 21.31 vpr 64.35 MiB -1 -1 0.61 21128 1 0.19 -1 -1 33884 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 25.8 MiB 5.89 475 7824 3190 4249 385 64.4 MiB 0.19 0.00 3.43453 -102.36 -3.43453 3.43453 2.93 0.000242563 0.000205191 0.00899468 0.00733942 40 1597 27 6.95648e+06 173708 706193. 2443.58 5.11 0.11901 0.109945 26914 176310 -1 1395 25 1356 1880 165541 41571 3.47207 3.47207 -115.711 -3.47207 0 0 926341. 3205.33 0.97 0.31 0.38 -1 -1 0.97 0.077944 0.0764055 55 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 22.90 vpr 64.18 MiB -1 -1 0.48 21280 1 0.09 -1 -1 33712 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 25.6 MiB 4.51 640 8444 2709 4034 1701 64.2 MiB 0.04 0.00 3.41669 -115.288 -3.41669 3.41669 2.53 0.000135629 0.000106622 0.0106531 0.00865147 52 1767 33 6.95648e+06 144757 926341. 3205.33 6.90 0.0570838 0.0479341 29218 227130 -1 978 18 1011 1371 90377 24634 2.82377 2.82377 -99.8991 -2.82377 0 0 1.14541e+06 3963.36 1.29 0.13 0.47 -1 -1 1.29 0.112195 0.111101 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 26.60 vpr 64.56 MiB -1 -1 0.46 21128 1 0.09 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66112 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 26.1 MiB 5.80 907 12247 3271 6962 2014 64.6 MiB 0.16 0.00 3.99843 -134.014 -3.99843 3.99843 2.78 0.000165649 0.00013291 0.115179 0.112516 38 2914 28 6.95648e+06 217135 678818. 2348.85 10.94 0.557115 0.46064 26626 170182 -1 2409 22 1853 2752 277052 55830 3.59291 3.59291 -134.501 -3.59291 0 0 902133. 3121.57 0.94 0.07 0.30 -1 -1 0.94 0.0130812 0.0116587 83 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 21.38 vpr 64.63 MiB -1 -1 0.37 21128 1 0.23 -1 -1 33976 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 25.9 MiB 2.39 823 10481 3378 5508 1595 64.6 MiB 0.26 0.00 4.48063 -137.796 -4.48063 4.48063 2.56 0.000165179 0.000131776 0.20283 0.00982467 38 2478 41 6.95648e+06 318465 678818. 2348.85 8.13 0.256258 0.0550947 26626 170182 -1 2026 19 1645 2369 215964 44090 4.00306 4.00306 -139.217 -4.00306 0 0 902133. 3121.57 1.14 0.16 0.33 -1 -1 1.14 0.0107719 0.00936293 75 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 20.67 vpr 64.16 MiB -1 -1 0.44 21432 1 0.05 -1 -1 33736 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 25.5 MiB 4.44 466 9684 3088 4807 1789 64.2 MiB 0.10 0.00 3.10275 -86.0877 -3.10275 3.10275 2.42 0.000117362 9.0968e-05 0.0473277 0.00810297 48 1267 42 6.95648e+06 188184 865456. 2994.66 6.01 0.0868663 0.0413431 28354 207349 -1 949 21 918 1382 105309 27477 2.94567 2.94567 -87.636 -2.94567 0 0 1.05005e+06 3633.38 1.19 0.05 0.37 -1 -1 1.19 0.00665505 0.00599003 55 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 44.89 vpr 64.66 MiB -1 -1 0.34 21280 1 0.18 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 25.9 MiB 3.18 788 12681 5030 6764 887 64.7 MiB 0.28 0.10 3.0625 -114.371 -3.0625 3.0625 2.48 0.000172068 0.00013778 0.0688953 0.0659391 38 2632 33 6.95648e+06 246087 678818. 2348.85 32.17 0.48551 0.463963 26626 170182 -1 1938 25 1671 2610 207508 44448 3.38287 3.38287 -123.234 -3.38287 0 0 902133. 3121.57 1.04 0.24 0.33 -1 -1 1.04 0.0144955 0.0128404 76 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 23.87 vpr 64.56 MiB -1 -1 0.37 21584 1 0.03 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 26.1 MiB 6.56 836 12528 5339 6666 523 64.6 MiB 0.45 0.00 4.46486 -139.906 -4.46486 4.46486 2.48 0.000159486 0.000127006 0.196689 0.193984 44 2451 47 6.95648e+06 202660 787024. 2723.27 7.02 0.369094 0.358193 27778 195446 -1 1678 19 1355 1818 134378 32319 3.59822 3.59822 -129.567 -3.59822 0 0 997811. 3452.63 0.85 0.23 0.26 -1 -1 0.85 0.0127178 0.0113932 79 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 37.69 vpr 64.27 MiB -1 -1 0.47 21280 1 0.15 -1 -1 33808 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 25.6 MiB 2.46 745 11777 4928 6289 560 64.3 MiB 0.17 0.00 2.28966 -95.4694 -2.28966 2.28966 2.30 0.000140264 0.000109957 0.131127 0.12827 36 2331 29 6.95648e+06 130281 648988. 2245.63 25.17 0.212364 0.195612 26050 158493 -1 1870 17 1174 1670 160724 31643 2.42898 2.42898 -107.619 -2.42898 0 0 828058. 2865.25 0.89 0.10 0.29 -1 -1 0.89 0.0740403 0.0729673 57 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 17.05 vpr 63.99 MiB -1 -1 0.44 21128 1 0.19 -1 -1 33540 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 25.3 MiB 0.91 461 10800 4629 5825 346 64.0 MiB 0.37 0.00 2.11601 -78.0433 -2.11601 2.11601 2.61 0.000106602 8.1517e-05 0.00983435 0.00780334 38 1429 35 6.95648e+06 144757 678818. 2348.85 5.53 0.0829316 0.074829 26626 170182 -1 1159 17 708 909 84578 18680 2.16688 2.16688 -81.8115 -2.16688 0 0 902133. 3121.57 0.95 0.02 0.23 -1 -1 0.95 0.00639601 0.00555174 44 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 27.30 vpr 64.47 MiB -1 -1 0.65 20976 1 0.11 -1 -1 33804 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 25.8 MiB 7.10 789 10187 2387 7192 608 64.5 MiB 0.13 0.00 4.13347 -134.928 -4.13347 4.13347 2.65 0.000155963 0.000125349 0.0120821 0.0099426 36 2600 48 6.95648e+06 173708 648988. 2245.63 9.38 0.177826 0.167833 26050 158493 -1 2040 22 1576 2124 222393 44934 4.05342 4.05342 -147.633 -4.05342 0 0 828058. 2865.25 1.09 0.15 0.36 -1 -1 1.09 0.00826646 0.00741969 69 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 22.59 vpr 64.70 MiB -1 -1 0.36 21584 1 0.02 -1 -1 33820 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 25.9 MiB 2.39 652 8868 3175 4368 1325 64.7 MiB 0.04 0.00 3.70824 -121.183 -3.70824 3.70824 2.22 0.000158029 0.000123789 0.0102702 0.00840471 46 2246 43 6.95648e+06 289514 828058. 2865.25 9.71 0.0818489 0.0712013 28066 200906 -1 1724 30 2028 2774 205603 48578 4.01126 4.01126 -132.855 -4.01126 0 0 1.01997e+06 3529.29 1.21 0.17 0.43 -1 -1 1.21 0.0159063 0.0140205 75 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 25.27 vpr 64.63 MiB -1 -1 0.53 21584 1 0.14 -1 -1 33632 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66184 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 26.1 MiB 4.90 828 13358 4005 7022 2331 64.6 MiB 0.21 0.00 4.7576 -136.611 -4.7576 4.7576 2.47 0.00019075 0.000153746 0.0167678 0.0136792 46 2529 29 6.95648e+06 202660 828058. 2865.25 9.94 0.103514 0.0930369 28066 200906 -1 1954 20 1551 2353 192336 41457 4.16201 4.16201 -134.339 -4.16201 0 0 1.01997e+06 3529.29 1.20 0.17 0.17 -1 -1 1.20 0.0102099 0.00907183 82 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 18.75 vpr 63.87 MiB -1 -1 0.64 21280 1 0.06 -1 -1 34128 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 25.2 MiB 2.71 312 9123 3811 4732 580 63.9 MiB 0.07 0.00 2.23646 -64.5107 -2.23646 2.23646 2.56 0.000136556 0.00010735 0.0076873 0.0059746 36 1287 42 6.95648e+06 188184 648988. 2245.63 5.19 0.0414417 0.0335937 26050 158493 -1 865 30 747 960 78704 19119 2.17168 2.17168 -71.8012 -2.17168 0 0 828058. 2865.25 1.05 0.03 0.45 -1 -1 1.05 0.0088907 0.00765066 44 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 22.39 vpr 64.44 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 25.8 MiB 2.57 670 9543 3158 4645 1740 64.4 MiB 0.22 0.00 4.56626 -117.382 -4.56626 4.56626 2.61 7.089e-05 5.5352e-05 0.0106636 0.00868512 40 2631 34 6.95648e+06 217135 706193. 2443.58 8.91 0.0563683 0.047137 26914 176310 -1 1821 23 1440 2382 253237 57325 3.93516 3.93516 -131.834 -3.93516 0 0 926341. 3205.33 1.13 0.24 0.40 -1 -1 1.13 0.0121237 0.0106759 66 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 14.92 vpr 63.79 MiB -1 -1 0.34 20976 1 0.03 -1 -1 33628 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 25.2 MiB 0.83 434 9906 4167 5580 159 63.8 MiB 0.14 0.00 2.18446 -71.1933 -2.18446 2.18446 2.79 5.5202e-05 4.2717e-05 0.00489006 0.0037573 36 1117 24 6.95648e+06 115805 648988. 2245.63 3.79 0.0349974 0.0288713 26050 158493 -1 914 20 568 625 52661 12124 1.91188 1.91188 -72.1751 -1.91188 0 0 828058. 2865.25 1.21 0.02 0.52 -1 -1 1.21 0.00704261 0.00616133 42 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 23.51 vpr 64.49 MiB -1 -1 0.28 21280 1 0.08 -1 -1 33792 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 25.8 MiB 3.64 867 11740 4903 6637 200 64.5 MiB 0.15 0.00 4.50901 -127.321 -4.50901 4.50901 2.63 0.000152088 0.000118774 0.110916 0.108515 38 2433 43 6.95648e+06 217135 678818. 2348.85 9.56 0.161006 0.150691 26626 170182 -1 2061 21 1344 2103 203584 42173 3.50821 3.50821 -121.072 -3.50821 0 0 902133. 3121.57 0.84 0.10 0.26 -1 -1 0.84 0.0737198 0.0727076 68 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 20.86 vpr 64.52 MiB -1 -1 0.53 21280 1 0.02 -1 -1 33952 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.8 MiB 1.99 667 11989 4568 6203 1218 64.5 MiB 0.23 0.00 2.9573 -100.172 -2.9573 2.9573 2.53 0.000158547 0.000125065 0.0124529 0.0101261 46 1956 39 6.95648e+06 303989 828058. 2865.25 7.71 0.312686 0.200505 28066 200906 -1 1567 21 1225 1860 150608 36284 3.07617 3.07617 -107.856 -3.07617 0 0 1.01997e+06 3529.29 1.38 0.05 0.54 -1 -1 1.38 0.167538 0.166194 74 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 25.78 vpr 64.59 MiB -1 -1 0.45 21432 1 0.07 -1 -1 33660 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 25.9 MiB 2.51 817 10883 3081 7234 568 64.6 MiB 0.18 0.00 4.37923 -132.214 -4.37923 4.37923 2.34 0.000176878 0.000143696 0.0122121 0.0100259 38 2588 35 6.95648e+06 275038 678818. 2348.85 12.83 0.146318 0.0557197 26626 170182 -1 2061 22 1377 2142 194126 40526 4.13167 4.13167 -140.107 -4.13167 0 0 902133. 3121.57 1.01 0.26 0.39 -1 -1 1.01 0.102189 0.100666 72 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 20.71 vpr 64.27 MiB -1 -1 0.40 21280 1 0.17 -1 -1 33844 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 25.8 MiB 3.52 798 12319 4066 7178 1075 64.3 MiB 0.05 0.00 3.08875 -102.281 -3.08875 3.08875 2.78 0.000142028 0.000113032 0.00655544 0.00523641 38 2055 46 6.95648e+06 144757 678818. 2348.85 6.89 0.0540326 0.0451438 26626 170182 -1 1743 18 923 1401 116130 24584 2.88052 2.88052 -112.119 -2.88052 0 0 902133. 3121.57 0.96 0.36 0.36 -1 -1 0.96 0.127999 0.126763 55 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 22.40 vpr 64.08 MiB -1 -1 0.51 21432 1 0.06 -1 -1 33740 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 25.6 MiB 0.74 474 11260 3904 5427 1929 64.1 MiB 0.06 0.00 3.37953 -95.4258 -3.37953 3.37953 2.82 0.000147132 0.000105437 0.0281887 0.00854093 38 1685 40 6.95648e+06 260562 678818. 2348.85 10.03 0.151065 0.124137 26626 170182 -1 1269 21 1067 1427 140250 39315 2.97382 2.97382 -103.174 -2.97382 0 0 902133. 3121.57 1.15 0.24 0.51 -1 -1 1.15 0.00588751 0.00525448 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 20.58 vpr 64.20 MiB -1 -1 0.44 21128 1 0.09 -1 -1 33396 -1 -1 16 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 25.5 MiB 1.64 458 9196 2843 4647 1706 64.2 MiB 0.22 0.00 2.9532 -87.9712 -2.9532 2.9532 2.63 5.8546e-05 4.4221e-05 0.00976214 0.00781364 54 1159 22 6.95648e+06 231611 949917. 3286.91 6.90 0.0449387 0.0373362 29506 232905 -1 921 22 926 1480 101208 26110 2.93352 2.93352 -89.9663 -2.93352 0 0 1.17392e+06 4061.99 1.53 0.13 0.63 -1 -1 1.53 0.10735 0.106163 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 18.21 vpr 64.07 MiB -1 -1 0.35 21128 1 0.05 -1 -1 33708 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.6 MiB 1.56 491 8909 2630 4401 1878 64.1 MiB 0.16 0.00 3.37459 -106.492 -3.37459 3.37459 2.60 0.000130557 0.000101862 0.00949738 0.00770588 48 1553 41 6.95648e+06 144757 865456. 2994.66 6.10 0.253138 0.244497 28354 207349 -1 1197 22 1177 1684 149056 37525 3.21832 3.21832 -105.301 -3.21832 0 0 1.05005e+06 3633.38 1.31 0.04 0.45 -1 -1 1.31 0.0100224 0.00887651 58 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 21.71 vpr 64.23 MiB -1 -1 0.45 21128 1 0.02 -1 -1 33740 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 1.31 560 10050 4028 5496 526 64.2 MiB 0.09 0.00 3.19914 -99.6907 -3.19914 3.19914 2.76 0.000142968 0.000110602 0.00968266 0.00779378 42 2029 39 6.95648e+06 275038 744469. 2576.02 9.31 0.0536588 0.044824 27202 183097 -1 1449 20 1049 1599 141420 34038 2.77822 2.77822 -104.021 -2.77822 0 0 949917. 3286.91 0.94 0.24 0.41 -1 -1 0.94 0.0104231 0.00904372 61 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 21.27 vpr 64.34 MiB -1 -1 0.47 21432 1 0.13 -1 -1 33688 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 25.8 MiB 3.48 629 12233 5311 6328 594 64.3 MiB 0.35 0.00 3.03504 -103.283 -3.03504 3.03504 2.05 0.00014329 0.000113544 0.0134909 0.0108263 38 1951 30 6.95648e+06 173708 678818. 2348.85 8.66 0.164407 0.154074 26626 170182 -1 1437 20 1083 1454 106865 25564 2.96967 2.96967 -101.685 -2.96967 0 0 902133. 3121.57 1.10 0.02 0.22 -1 -1 1.10 0.00537695 0.0046934 61 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 29.92 vpr 64.82 MiB -1 -1 0.42 21432 1 0.02 -1 -1 33996 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66376 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 26.1 MiB 2.46 844 13477 4316 6348 2813 64.8 MiB 0.20 0.00 4.03548 -120.669 -4.03548 4.03548 2.31 8.2212e-05 6.3991e-05 0.0164757 0.0133736 38 3134 34 6.95648e+06 303989 678818. 2348.85 17.14 0.264644 0.252153 26626 170182 -1 2244 21 1609 2583 195045 43801 4.59892 4.59892 -133.905 -4.59892 0 0 902133. 3121.57 1.05 0.15 0.40 -1 -1 1.05 0.0132456 0.0118186 84 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 22.66 vpr 64.87 MiB -1 -1 0.39 21432 1 0.47 -1 -1 33868 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66428 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 26.1 MiB 2.91 735 14323 5482 6766 2075 64.9 MiB 0.17 0.00 3.31218 -116.99 -3.31218 3.31218 2.23 0.000185914 0.000144723 0.0176493 0.0142119 40 2593 40 6.95648e+06 347416 706193. 2443.58 9.88 0.191064 0.178748 26914 176310 -1 2187 24 2015 2867 290162 67024 3.44687 3.44687 -133.822 -3.44687 0 0 926341. 3205.33 0.98 0.18 0.45 -1 -1 0.98 0.0159455 0.0141762 82 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 25.13 vpr 64.09 MiB -1 -1 0.43 21128 1 0.12 -1 -1 33540 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 25.6 MiB 6.48 756 6739 2920 3620 199 64.1 MiB 0.13 0.00 4.04047 -128.247 -4.04047 4.04047 2.55 0.000142961 0.000111983 0.00777073 0.00628609 46 1804 26 6.95648e+06 159232 828058. 2865.25 7.51 0.366554 0.358671 28066 200906 -1 1574 24 1266 1712 177310 35097 3.68852 3.68852 -128.119 -3.68852 0 0 1.01997e+06 3529.29 1.14 0.14 0.49 -1 -1 1.14 0.0118565 0.0105354 63 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 20.74 vpr 64.77 MiB -1 -1 0.51 21584 1 0.23 -1 -1 33920 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 26.1 MiB 2.52 690 11233 3998 4949 2286 64.8 MiB 0.23 0.00 3.75886 -121.403 -3.75886 3.75886 2.62 0.000210014 0.00017189 0.014647 0.0120243 48 1910 44 6.95648e+06 231611 865456. 2994.66 7.10 0.10835 0.0626728 28354 207349 -1 1638 21 1439 2140 184840 44309 3.59617 3.59617 -123.904 -3.59617 0 0 1.05005e+06 3633.38 0.91 0.34 0.48 -1 -1 0.91 0.303923 0.302404 76 61 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 72.08 vpr 64.98 MiB -1 -1 0.43 21584 1 0.07 -1 -1 33672 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66540 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 26.2 MiB 6.78 951 13092 5540 7040 512 65.0 MiB 0.30 0.00 5.47516 -170.564 -5.47516 5.47516 2.34 0.000180667 0.000147712 0.016262 0.0133628 50 3027 43 6.95648e+06 231611 902133. 3121.57 54.88 0.496419 0.462103 28642 213929 -1 2459 21 2109 2977 337345 74279 5.3671 5.3671 -180.931 -5.3671 0 0 1.08113e+06 3740.92 1.13 0.29 0.49 -1 -1 1.13 0.132706 0.131131 97 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 35.88 vpr 64.88 MiB -1 -1 0.51 21736 1 0.23 -1 -1 33820 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66432 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 26.2 MiB 7.53 988 12754 4743 6080 1931 64.9 MiB 0.06 0.00 4.52202 -151.727 -4.52202 4.52202 2.32 0.000175381 0.000138478 0.0167621 0.0135621 36 3260 45 6.95648e+06 231611 648988. 2245.63 18.73 0.254401 0.241887 26050 158493 -1 2569 23 1984 2847 285723 56649 4.6114 4.6114 -162.122 -4.6114 0 0 828058. 2865.25 1.03 0.23 0.29 -1 -1 1.03 0.185308 0.183703 88 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 21.60 vpr 64.73 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33812 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 26.1 MiB 3.24 777 14407 6123 7723 561 64.7 MiB 0.19 0.00 4.10748 -131.173 -4.10748 4.10748 2.20 0.000168737 0.000133504 0.0169845 0.0139415 50 2244 23 6.95648e+06 318465 902133. 3121.57 7.89 0.296209 0.285479 28642 213929 -1 1928 21 1292 1970 189186 39775 3.52322 3.52322 -125.888 -3.52322 0 0 1.08113e+06 3740.92 1.29 0.20 0.62 -1 -1 1.29 0.160392 0.158993 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 21.48 vpr 64.49 MiB -1 -1 0.32 21128 1 0.03 -1 -1 33452 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 25.8 MiB 4.23 772 10868 4143 4479 2246 64.5 MiB 0.09 0.00 4.03548 -115.263 -4.03548 4.03548 2.40 0.000140989 0.00011091 0.0114346 0.00923956 42 2879 40 6.95648e+06 202660 744469. 2576.02 7.17 0.22384 0.213613 27202 183097 -1 2056 23 1476 2027 193966 42342 4.17091 4.17091 -126.506 -4.17091 0 0 949917. 3286.91 1.21 0.17 0.40 -1 -1 1.21 0.0120883 0.0107435 71 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 32.75 vpr 64.90 MiB -1 -1 0.49 21736 1 0.06 -1 -1 33896 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66456 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 26.5 MiB 5.35 911 12938 4611 6181 2146 64.9 MiB 0.17 0.00 4.71507 -155.232 -4.71507 4.71507 2.22 0.000213556 0.000171152 0.114525 0.056996 46 3479 48 6.95648e+06 318465 828058. 2865.25 16.74 0.246827 0.178145 28066 200906 -1 2153 22 1843 2680 173959 40264 4.75421 4.75421 -160.818 -4.75421 0 0 1.01997e+06 3529.29 1.28 0.17 0.53 -1 -1 1.28 0.0687434 0.0669762 93 87 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 19.52 vpr 64.23 MiB -1 -1 0.25 21280 1 0.11 -1 -1 33796 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 25.6 MiB 2.92 547 8876 3201 4413 1262 64.2 MiB 0.11 0.00 3.29541 -98.1825 -3.29541 3.29541 2.63 0.000136082 0.000107338 0.0919861 0.090564 36 1853 25 6.95648e+06 217135 648988. 2245.63 6.34 0.465119 0.287536 26050 158493 -1 1398 20 999 1450 112276 25564 3.34072 3.34072 -106.44 -3.34072 0 0 828058. 2865.25 1.04 0.11 0.28 -1 -1 1.04 0.0834428 0.0823263 56 28 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 21.85 vpr 64.53 MiB -1 -1 0.55 21280 1 0.14 -1 -1 33616 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66076 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 25.9 MiB 4.41 894 14520 6369 7601 550 64.5 MiB 0.27 0.00 5.06497 -151.796 -5.06497 5.06497 2.96 0.000160744 0.00012862 0.0878159 0.084695 48 2677 22 6.95648e+06 217135 865456. 2994.66 6.47 0.313239 0.30327 28354 207349 -1 2173 23 1484 2113 186495 40122 4.75126 4.75126 -151.406 -4.75126 0 0 1.05005e+06 3633.38 1.18 0.06 0.37 -1 -1 1.18 0.0130294 0.0115917 84 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 22.91 vpr 64.69 MiB -1 -1 0.42 21584 1 0.17 -1 -1 33872 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 3.68 775 9181 3821 5035 325 64.7 MiB 0.15 0.00 3.20795 -111.611 -3.20795 3.20795 2.82 0.000184673 0.000150578 0.0111942 0.0090406 48 2346 24 6.95648e+06 246087 865456. 2994.66 8.00 0.45071 0.236101 28354 207349 -1 1949 22 1522 2444 236857 58133 3.30152 3.30152 -120.597 -3.30152 0 0 1.05005e+06 3633.38 1.32 0.13 0.50 -1 -1 1.32 0.0847944 0.0831365 73 53 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 21.13 vpr 64.49 MiB -1 -1 0.41 21280 1 0.06 -1 -1 33872 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.8 MiB 3.70 704 10744 4416 5915 413 64.5 MiB 0.02 0.00 4.49648 -123.271 -4.49648 4.49648 2.35 7.5646e-05 5.8969e-05 0.0054096 0.00436637 44 2256 33 6.95648e+06 231611 787024. 2723.27 6.32 0.0746261 0.067663 27778 195446 -1 1723 23 1279 2223 169514 37895 4.20871 4.20871 -130.003 -4.20871 0 0 997811. 3452.63 1.19 0.16 0.45 -1 -1 1.19 0.0110109 0.00969573 68 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 29.42 vpr 64.72 MiB -1 -1 0.55 21584 1 0.03 -1 -1 33660 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 26.1 MiB 8.58 756 9706 3472 4852 1382 64.7 MiB 0.46 0.00 4.40855 -135.153 -4.40855 4.40855 2.29 0.000162064 0.000128965 0.0122358 0.0100565 46 2655 50 6.95648e+06 202660 828058. 2865.25 10.36 0.261697 0.25051 28066 200906 -1 1947 22 1598 2149 169487 38892 3.72346 3.72346 -131.523 -3.72346 0 0 1.01997e+06 3529.29 1.08 0.21 0.35 -1 -1 1.08 0.0162515 0.0146633 78 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 30.05 vpr 64.75 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66308 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 26.2 MiB 5.75 704 10581 3961 5357 1263 64.8 MiB 0.05 0.00 3.235 -113.84 -3.235 3.235 2.26 8.2e-05 6.3395e-05 0.00941343 0.00775223 46 2378 42 6.95648e+06 246087 828058. 2865.25 14.49 0.192493 0.181657 28066 200906 -1 1645 24 1607 2519 179902 42795 3.11217 3.11217 -112.864 -3.11217 0 0 1.01997e+06 3529.29 1.67 0.18 0.40 -1 -1 1.67 0.0139336 0.0123449 75 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 25.76 vpr 64.86 MiB -1 -1 0.35 21128 1 0.14 -1 -1 33540 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 26.1 MiB 3.08 773 14562 5644 6615 2303 64.9 MiB 0.08 0.00 4.29888 -138.783 -4.29888 4.29888 2.54 0.000244117 0.000202935 0.0161371 0.0132278 46 2580 45 6.95648e+06 376368 828058. 2865.25 12.15 0.351411 0.338914 28066 200906 -1 1915 24 1491 2210 174725 40106 3.59816 3.59816 -130.915 -3.59816 0 0 1.01997e+06 3529.29 1.11 0.22 0.27 -1 -1 1.11 0.0135474 0.0118346 83 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 22.34 vpr 64.39 MiB -1 -1 0.48 21432 1 0.06 -1 -1 33988 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 25.9 MiB 3.66 657 12749 3718 6154 2877 64.4 MiB 0.12 0.00 4.33949 -116.674 -4.33949 4.33949 2.69 0.000148146 0.000117958 0.0119211 0.00960856 44 2644 44 6.95648e+06 318465 787024. 2723.27 8.24 0.234144 0.223804 27778 195446 -1 1707 19 1197 1851 136613 33220 3.81066 3.81066 -121.672 -3.81066 0 0 997811. 3452.63 1.08 0.16 0.53 -1 -1 1.08 0.0107341 0.00954334 69 24 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 50.71 vpr 64.61 MiB -1 -1 0.79 21432 1 0.28 -1 -1 33936 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 25.9 MiB 9.50 755 11161 3299 5641 2221 64.6 MiB 0.23 0.00 4.21403 -126.931 -4.21403 4.21403 2.71 7.4662e-05 5.723e-05 0.215136 0.213398 48 1877 47 6.95648e+06 188184 865456. 2994.66 29.86 0.502974 0.382642 28354 207349 -1 1480 24 1603 2148 175864 45312 4.02842 4.02842 -127.258 -4.02842 0 0 1.05005e+06 3633.38 1.30 0.26 0.38 -1 -1 1.30 0.00950871 0.00864841 79 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 29.31 vpr 64.68 MiB -1 -1 0.76 21584 1 0.10 -1 -1 33724 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 26.1 MiB 4.19 798 12196 5085 6500 611 64.7 MiB 0.05 0.00 4.51577 -141.302 -4.51577 4.51577 2.88 0.000165923 0.00013048 0.0151022 0.0123217 50 2841 44 6.95648e+06 217135 902133. 3121.57 13.29 0.250632 0.0634794 28642 213929 -1 2084 21 1702 2688 263015 60779 4.12271 4.12271 -140.403 -4.12271 0 0 1.08113e+06 3740.92 1.12 0.27 0.41 -1 -1 1.12 0.0146224 0.0130904 85 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 27.58 vpr 64.66 MiB -1 -1 0.57 21584 1 0.02 -1 -1 33696 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 25.9 MiB 8.25 690 11813 3850 5742 2221 64.7 MiB 0.24 0.00 4.09452 -126.661 -4.09452 4.09452 2.73 7.7669e-05 6.0534e-05 0.0072616 0.00586672 56 2010 35 6.95648e+06 188184 973134. 3367.25 8.05 0.395351 0.29642 29794 239141 -1 1565 24 1655 2740 247244 69033 4.29002 4.29002 -129.692 -4.29002 0 0 1.19926e+06 4149.71 1.17 0.19 0.38 -1 -1 1.17 0.015418 0.013669 76 77 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 16.97 vpr 63.94 MiB -1 -1 0.36 21280 1 0.13 -1 -1 33556 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65476 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 25.5 MiB 0.64 504 11474 3617 5403 2454 63.9 MiB 0.13 0.00 3.14908 -93.1134 -3.14908 3.14908 2.19 0.000171849 0.000140917 0.0102481 0.00818877 44 1683 21 6.95648e+06 260562 787024. 2723.27 6.71 0.0465734 0.0386465 27778 195446 -1 1219 17 842 1222 94114 24359 2.94567 2.94567 -98.0108 -2.94567 0 0 997811. 3452.63 1.06 0.05 0.29 -1 -1 1.06 0.031839 0.0307792 57 23 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 23.90 vpr 64.68 MiB -1 -1 0.48 21280 1 0.07 -1 -1 33920 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66228 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 25.9 MiB 5.57 711 11916 5010 6585 321 64.7 MiB 0.15 0.00 3.75235 -135.897 -3.75235 3.75235 2.91 7.8991e-05 6.1368e-05 0.1273 0.125853 46 2052 24 6.95648e+06 173708 828058. 2865.25 7.01 0.223304 0.166056 28066 200906 -1 1721 20 1483 2090 167019 36124 3.45892 3.45892 -133.663 -3.45892 0 0 1.01997e+06 3529.29 1.46 0.11 0.39 -1 -1 1.46 0.0119142 0.0106725 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 27.39 vpr 64.71 MiB -1 -1 0.27 21432 1 0.14 -1 -1 33832 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 26.2 MiB 7.14 1199 14012 4660 7682 1670 64.7 MiB 0.45 0.00 4.91372 -159.538 -4.91372 4.91372 2.66 0.000181072 0.000145211 0.0191279 0.0158421 46 3151 21 6.95648e+06 231611 828058. 2865.25 9.30 0.196625 0.185068 28066 200906 -1 2670 24 2251 3456 277419 55404 4.64721 4.64721 -166.287 -4.64721 0 0 1.01997e+06 3529.29 1.11 0.35 0.45 -1 -1 1.11 0.0116863 0.0103946 97 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 25.64 vpr 64.39 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 25.9 MiB 2.84 1033 10231 3254 5472 1505 64.4 MiB 0.34 0.00 4.59016 -151.92 -4.59016 4.59016 3.11 0.000163636 0.000131314 0.0123551 0.010147 36 2567 36 6.95648e+06 246087 648988. 2245.63 11.25 0.142227 0.131668 26050 158493 -1 2101 22 1460 1958 172883 34796 3.61822 3.61822 -144.487 -3.61822 0 0 828058. 2865.25 1.14 0.23 0.76 -1 -1 1.14 0.011179 0.00984238 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 21.74 vpr 64.16 MiB -1 -1 0.42 21128 1 0.02 -1 -1 33744 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 25.6 MiB 2.50 583 12008 4947 6630 431 64.2 MiB 0.19 0.00 2.944 -98.4118 -2.944 2.944 2.51 6.4978e-05 4.907e-05 0.00680389 0.00538636 38 2001 30 6.95648e+06 289514 678818. 2348.85 8.64 0.208696 0.201159 26626 170182 -1 1551 21 1156 1722 145132 32649 3.27952 3.27952 -110.436 -3.27952 0 0 902133. 3121.57 1.20 0.33 0.62 -1 -1 1.20 0.0101663 0.00899121 62 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 28.60 vpr 65.16 MiB -1 -1 0.69 21280 1 0.37 -1 -1 33884 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66720 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 26.4 MiB 5.28 1129 14782 6433 7988 361 65.2 MiB 0.33 0.07 5.84939 -174.305 -5.84939 5.84939 2.54 0.000189953 0.00015184 0.108803 0.10506 46 3159 27 6.95648e+06 217135 828058. 2865.25 10.52 0.50648 0.410851 28066 200906 -1 2667 25 2293 3415 432553 116380 5.4104 5.4104 -172.993 -5.4104 0 0 1.01997e+06 3529.29 1.57 0.28 0.37 -1 -1 1.57 0.160698 0.158814 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 22.63 vpr 64.68 MiB -1 -1 0.29 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 25.9 MiB 4.38 676 13335 4957 6249 2129 64.7 MiB 0.04 0.00 4.62011 -128.464 -4.62011 4.62011 2.96 0.000208698 0.000174487 0.0105295 0.0083893 46 2067 37 6.95648e+06 332941 828058. 2865.25 7.85 0.0583526 0.0490235 28066 200906 -1 1608 23 1319 1961 142969 34005 3.94516 3.94516 -127.516 -3.94516 0 0 1.01997e+06 3529.29 1.09 0.13 0.37 -1 -1 1.09 0.0127937 0.0112534 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 20.16 vpr 63.62 MiB -1 -1 0.42 21128 1 0.08 -1 -1 33480 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 0.91 533 10509 4362 5761 386 63.6 MiB 0.08 0.00 2.9282 -92.021 -2.9282 2.9282 2.44 0.000138062 0.000109488 0.0105231 0.00845243 40 1853 44 6.95648e+06 188184 706193. 2443.58 9.05 0.160772 0.151735 26914 176310 -1 1520 22 1124 1700 171214 43756 3.15227 3.15227 -103.082 -3.15227 0 0 926341. 3205.33 1.20 0.04 0.34 -1 -1 1.20 0.00990394 0.00855289 51 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 22.86 vpr 64.62 MiB -1 -1 0.46 21280 1 0.37 -1 -1 33752 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 25.9 MiB 1.69 923 15298 6195 8436 667 64.6 MiB 0.28 0.00 4.94787 -132.081 -4.94787 4.94787 2.26 0.000183632 0.000148222 0.123748 0.120352 40 2552 24 6.95648e+06 347416 706193. 2443.58 10.35 0.176296 0.164624 26914 176310 -1 2279 24 1815 3299 412663 96509 4.73826 4.73826 -139.776 -4.73826 0 0 926341. 3205.33 1.43 0.25 0.17 -1 -1 1.43 0.0137267 0.012153 80 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 22.42 vpr 64.05 MiB -1 -1 0.54 21128 1 0.10 -1 -1 33724 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.6 MiB 3.18 471 10702 3246 5052 2404 64.1 MiB 0.16 0.00 2.9972 -97.7732 -2.9972 2.9972 2.52 0.000134341 0.000105381 0.128014 0.125943 40 1681 41 6.95648e+06 202660 706193. 2443.58 7.56 0.223844 0.214781 26914 176310 -1 1409 22 1259 1765 152230 38560 3.41572 3.41572 -119.098 -3.41572 0 0 926341. 3205.33 1.16 0.27 0.59 -1 -1 1.16 0.0106945 0.00942995 57 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 21.47 vpr 63.99 MiB -1 -1 0.50 21280 1 0.30 -1 -1 33768 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 25.5 MiB 2.47 565 7684 3065 4335 284 64.0 MiB 0.08 0.00 3.45473 -106.14 -3.45473 3.45473 2.15 0.000148737 0.000116672 0.00884058 0.00724397 38 1970 44 6.95648e+06 246087 678818. 2348.85 8.89 0.131516 0.121878 26626 170182 -1 1387 22 1167 1759 135973 29786 3.05892 3.05892 -108.285 -3.05892 0 0 902133. 3121.57 0.97 0.11 0.46 -1 -1 0.97 0.00946937 0.00828096 60 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 24.53 vpr 64.76 MiB -1 -1 0.84 21432 1 0.21 -1 -1 33872 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 26.1 MiB 5.60 776 11161 4775 5773 613 64.8 MiB 0.05 0.00 3.81182 -119.714 -3.81182 3.81182 2.67 0.000168234 0.000133305 0.00906138 0.0073641 48 2520 32 6.95648e+06 231611 865456. 2994.66 8.17 0.0641456 0.0540454 28354 207349 -1 2042 21 1734 2563 216351 47635 3.70766 3.70766 -129.106 -3.70766 0 0 1.05005e+06 3633.38 1.03 0.07 0.52 -1 -1 1.03 0.0129978 0.0116099 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 20.05 vpr 64.57 MiB -1 -1 0.35 21280 1 0.21 -1 -1 33700 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 26.1 MiB 3.74 704 11948 4364 5551 2033 64.6 MiB 0.08 0.00 4.55468 -133.267 -4.55468 4.55468 2.82 0.000174282 0.000142125 0.0144908 0.0118849 44 2311 36 6.95648e+06 231611 787024. 2723.27 5.19 0.475624 0.4644 27778 195446 -1 1571 29 1467 2111 135992 33086 4.33832 4.33832 -137.368 -4.33832 0 0 997811. 3452.63 1.07 0.24 0.68 -1 -1 1.07 0.0155585 0.0136902 72 54 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 25.17 vpr 64.73 MiB -1 -1 0.52 21280 1 0.23 -1 -1 33832 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66284 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 26.1 MiB 6.12 786 12196 5134 6667 395 64.7 MiB 0.12 0.00 4.41959 -137.927 -4.41959 4.41959 2.71 0.000163449 0.000130532 0.0154123 0.01251 40 2597 31 6.95648e+06 202660 706193. 2443.58 7.44 0.176379 0.0582943 26914 176310 -1 1938 20 1471 2292 207490 44669 4.14326 4.14326 -138.835 -4.14326 0 0 926341. 3205.33 1.00 0.03 0.39 -1 -1 1.00 0.00779976 0.00708868 73 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 30.35 vpr 64.11 MiB -1 -1 0.56 21280 1 0.28 -1 -1 33848 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 25.6 MiB 10.33 758 11854 5230 6360 264 64.1 MiB 0.14 0.00 4.09208 -130.885 -4.09208 4.09208 2.66 0.000190098 0.000118405 0.100584 0.0981215 46 1948 30 6.95648e+06 144757 828058. 2865.25 8.72 0.144605 0.135346 28066 200906 -1 1561 20 1128 1465 123245 26968 3.61822 3.61822 -128.283 -3.61822 0 0 1.01997e+06 3529.29 1.22 0.14 0.41 -1 -1 1.22 0.0826738 0.0814191 61 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 26.45 vpr 64.38 MiB -1 -1 0.52 21432 1 0.03 -1 -1 33744 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 25.8 MiB 7.20 671 10661 4453 5894 314 64.4 MiB 0.32 0.00 3.79972 -122.825 -3.79972 3.79972 2.59 0.000160817 0.00012734 0.0125461 0.0101679 38 2325 23 6.95648e+06 173708 678818. 2348.85 9.21 0.0510394 0.0422196 26626 170182 -1 1701 20 1321 1951 157587 33834 3.40267 3.40267 -123.384 -3.40267 0 0 902133. 3121.57 1.29 0.06 0.40 -1 -1 1.29 0.0277522 0.0265017 68 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 26.96 vpr 64.44 MiB -1 -1 0.42 21280 1 0.22 -1 -1 33760 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 25.9 MiB 2.46 674 10881 3907 4742 2232 64.4 MiB 0.06 0.00 3.0162 -94.3766 -3.0162 3.0162 2.22 0.000168742 0.000135538 0.0117824 0.00968195 36 2545 30 6.95648e+06 318465 648988. 2245.63 14.19 0.0600729 0.050037 26050 158493 -1 1858 21 1240 1960 162018 36678 3.14637 3.14637 -107.389 -3.14637 0 0 828058. 2865.25 1.00 0.13 0.41 -1 -1 1.00 0.0124086 0.010958 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 22.16 vpr 64.43 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33736 -1 -1 28 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 25.8 MiB 2.14 776 11788 2819 8132 837 64.4 MiB 0.09 0.00 3.64814 -102.196 -3.64814 3.64814 2.28 0.000143978 0.000114756 0.0102727 0.00834417 38 2283 49 6.95648e+06 405319 678818. 2348.85 9.89 0.0572746 0.047759 26626 170182 -1 1869 33 1402 2171 347796 149224 3.66166 3.66166 -111.163 -3.66166 0 0 902133. 3121.57 1.20 0.17 0.32 -1 -1 1.20 0.031921 0.0300982 72 27 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 14.87 vpr 64.32 MiB -1 -1 0.24 21280 1 0.05 -1 -1 33868 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 25.8 MiB 1.25 549 12629 5148 6195 1286 64.3 MiB 0.22 0.00 3.47909 -109.563 -3.47909 3.47909 2.55 0.000144752 0.000114363 0.0146333 0.0119252 40 1779 32 6.95648e+06 173708 706193. 2443.58 5.59 0.0538257 0.0448211 26914 176310 -1 1375 21 1365 1931 142075 34453 3.18402 3.18402 -117.065 -3.18402 0 0 926341. 3205.33 1.23 0.45 0.32 -1 -1 1.23 0.164476 0.163149 60 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 25.96 vpr 64.16 MiB -1 -1 0.24 21432 1 0.03 -1 -1 33564 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 25.5 MiB 5.26 641 12873 5440 6966 467 64.2 MiB 0.11 0.00 3.42769 -121.139 -3.42769 3.42769 2.55 0.000188917 0.000152402 0.0156907 0.0127536 52 2300 33 6.95648e+06 159232 926341. 3205.33 7.55 0.479333 0.432975 29218 227130 -1 1491 25 1380 1993 177717 40588 3.72767 3.72767 -126.291 -3.72767 0 0 1.14541e+06 3963.36 1.26 0.19 0.40 -1 -1 1.26 0.157712 0.156199 72 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 24.41 vpr 64.52 MiB -1 -1 0.49 21128 1 0.02 -1 -1 33876 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.8 MiB 1.35 710 11799 3749 5666 2384 64.5 MiB 0.17 0.00 4.65108 -122.985 -4.65108 4.65108 2.26 0.000148994 0.000117624 0.0183431 0.0159056 50 2190 26 6.95648e+06 347416 902133. 3121.57 7.82 0.290284 0.280978 28642 213929 -1 1660 23 1075 1816 170113 37652 3.71982 3.71982 -117.822 -3.71982 0 0 1.08113e+06 3740.92 1.43 0.09 0.62 -1 -1 1.43 0.0251685 0.0237504 74 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 30.31 vpr 64.77 MiB -1 -1 0.39 21584 1 0.19 -1 -1 33736 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 26.1 MiB 5.19 831 11813 4743 6275 795 64.8 MiB 0.32 0.00 4.58977 -148.914 -4.58977 4.58977 2.65 0.000183128 0.000149716 0.0793215 0.0765573 44 3092 30 6.95648e+06 188184 787024. 2723.27 7.39 0.134146 0.122967 27778 195446 -1 2201 21 1759 2558 216969 47786 4.22036 4.22036 -150.532 -4.22036 0 0 997811. 3452.63 1.15 0.12 0.44 -1 -1 1.15 0.0770714 0.0755766 82 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 31.74 vpr 64.84 MiB -1 -1 0.51 21432 1 0.04 -1 -1 33704 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66396 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 26.1 MiB 4.15 816 16468 5566 8437 2465 64.8 MiB 0.31 0.00 4.27883 -132.69 -4.27883 4.27883 2.90 8.7005e-05 6.5217e-05 0.0173427 0.0139091 46 2467 49 6.95648e+06 347416 828058. 2865.25 10.16 0.230607 0.217863 28066 200906 -1 1965 21 1537 2489 222148 46533 3.84266 3.84266 -137.714 -3.84266 0 0 1.01997e+06 3529.29 1.29 0.09 0.45 -1 -1 1.29 0.0143812 0.0128796 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 16.81 vpr 64.70 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33744 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 26.0 MiB 2.33 810 13911 4952 7625 1334 64.7 MiB 0.09 0.00 4.06852 -133.682 -4.06852 4.06852 1.39 0.000176391 0.000138352 0.0163358 0.0133888 44 3041 46 6.95648e+06 332941 787024. 2723.27 6.07 0.106522 0.0927521 27778 195446 -1 1940 24 1801 2831 219999 48752 3.90932 3.90932 -137.053 -3.90932 0 0 997811. 3452.63 1.27 0.50 0.39 -1 -1 1.27 0.0138451 0.0122036 80 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 45.02 vpr 64.25 MiB -1 -1 0.33 21280 1 0.04 -1 -1 33720 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 25.5 MiB 2.73 540 8134 2607 3837 1690 64.2 MiB 0.11 0.00 3.76076 -106.203 -3.76076 3.76076 2.91 0.000155176 0.000126859 0.00879618 0.00714608 40 1646 22 6.95648e+06 173708 706193. 2443.58 20.03 0.374901 0.18532 26914 176310 -1 1364 23 1184 1792 151101 33119 3.19792 3.19792 -108.908 -3.19792 0 0 926341. 3205.33 1.14 0.15 0.43 -1 -1 1.14 0.00666145 0.00594199 57 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 58.41 vpr 64.78 MiB -1 -1 0.39 21584 1 0.17 -1 -1 34076 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66336 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 26.1 MiB 2.89 678 9356 3868 5007 481 64.8 MiB 0.08 0.00 4.36203 -133.965 -4.36203 4.36203 2.40 0.000172532 0.000137677 0.0537197 0.0514312 40 2565 42 6.95648e+06 202660 706193. 2443.58 32.47 0.502846 0.476372 26914 176310 -1 1865 26 2244 3051 373025 119260 4.41257 4.41257 -145.649 -4.41257 0 0 926341. 3205.33 0.92 0.24 0.36 -1 -1 0.92 0.0156112 0.0137812 76 63 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 18.48 vpr 64.46 MiB -1 -1 0.47 21432 1 0.14 -1 -1 33540 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 25.9 MiB 4.24 842 12030 5028 6556 446 64.5 MiB 0.10 0.00 4.9029 -146.03 -4.9029 4.9029 1.34 0.000164581 0.000129658 0.0147435 0.0118955 46 2513 48 6.95648e+06 202660 828058. 2865.25 5.50 0.14148 0.129577 28066 200906 -1 1890 22 1658 2613 198628 43387 4.08261 4.08261 -138.768 -4.08261 0 0 1.01997e+06 3529.29 1.15 0.15 0.69 -1 -1 1.15 0.0132751 0.0118923 80 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 40.23 vpr 64.73 MiB -1 -1 0.48 21280 1 0.06 -1 -1 33768 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 25.9 MiB 7.12 750 12302 5257 6526 519 64.7 MiB 0.33 0.00 5.69125 -154.683 -5.69125 5.69125 2.43 0.000152264 0.000120839 0.12704 0.124448 46 2398 31 6.95648e+06 202660 828058. 2865.25 8.62 0.463295 0.314704 28066 200906 -1 1821 21 1264 1891 135405 30894 4.59527 4.59527 -147.004 -4.59527 0 0 1.01997e+06 3529.29 1.14 0.25 0.28 -1 -1 1.14 0.146526 0.145214 79 47 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 18.90 vpr 64.61 MiB -1 -1 0.89 21432 1 0.11 -1 -1 33560 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 26.1 MiB 6.23 745 11063 3711 5149 2203 64.6 MiB 0.11 0.00 4.87546 -148.347 -4.87546 4.87546 1.36 0.000165432 0.000131345 0.0459154 0.0435563 46 2121 22 6.95648e+06 303989 828058. 2865.25 3.31 0.128836 0.11828 28066 200906 -1 1662 18 1005 1539 108523 24393 4.08891 4.08891 -138.465 -4.08891 0 0 1.01997e+06 3529.29 1.02 0.16 0.38 -1 -1 1.02 0.0115783 0.0103483 74 83 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 19.57 vpr 64.75 MiB -1 -1 0.40 21584 1 0.11 -1 -1 33708 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 26.2 MiB 3.61 704 9368 3487 4602 1279 64.7 MiB 0.10 0.00 4.40123 -135.279 -4.40123 4.40123 2.13 0.000180055 0.000145496 0.072084 0.069033 48 2447 37 6.95648e+06 188184 865456. 2994.66 6.42 0.186557 0.174359 28354 207349 -1 2015 24 1732 2848 349810 83354 3.78982 3.78982 -140.039 -3.78982 0 0 1.05005e+06 3633.38 1.03 0.11 0.44 -1 -1 1.03 0.0288707 0.0271588 72 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 41.71 vpr 64.61 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33964 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 26.1 MiB 3.28 641 10346 4274 5371 701 64.6 MiB 0.19 0.00 4.09563 -125.168 -4.09563 4.09563 3.03 0.000160521 0.000127007 0.158707 0.156211 46 1995 28 6.95648e+06 231611 828058. 2865.25 7.11 0.315342 0.304956 28066 200906 -1 1316 24 1249 1860 123484 31068 3.78282 3.78282 -124.089 -3.78282 0 0 1.01997e+06 3529.29 1.40 0.02 0.44 -1 -1 1.40 0.108786 0.107808 73 85 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 23.96 vpr 63.90 MiB -1 -1 0.40 20976 1 0.13 -1 -1 33780 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 25.5 MiB 3.33 531 8754 3599 4846 309 63.9 MiB 0.08 0.00 3.56099 -105.132 -3.56099 3.56099 2.33 0.000130291 0.000101883 0.0579521 0.0561663 44 1721 26 6.95648e+06 144757 787024. 2723.27 4.17 0.24708 0.224349 27778 195446 -1 1421 22 1086 1514 124135 29933 3.28122 3.28122 -112.465 -3.28122 0 0 997811. 3452.63 1.37 0.18 0.68 -1 -1 1.37 0.0101636 0.00896201 53 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 48.53 vpr 64.79 MiB -1 -1 0.46 21280 1 0.13 -1 -1 33540 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 26.1 MiB 9.43 804 15255 5341 7615 2299 64.8 MiB 0.17 0.00 4.7291 -131.65 -4.7291 4.7291 2.53 0.000173921 0.000139114 0.0172554 0.0139709 46 2200 28 6.95648e+06 332941 828058. 2865.25 8.63 0.276105 0.264745 28066 200906 -1 1808 22 1202 1906 162527 35392 3.93476 3.93476 -131.175 -3.93476 0 0 1.01997e+06 3529.29 1.19 0.12 0.42 -1 -1 1.19 0.0936454 0.0921791 76 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 20.92 vpr 64.44 MiB -1 -1 0.36 21432 1 0.21 -1 -1 33964 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 25.9 MiB 3.13 837 8716 3541 4962 213 64.4 MiB 0.24 0.00 4.35698 -145.77 -4.35698 4.35698 2.54 0.000191506 0.000155766 0.012872 0.010629 40 2823 37 6.95648e+06 188184 706193. 2443.58 8.06 0.240595 0.18538 26914 176310 -1 2267 22 2237 3157 311635 67735 4.45636 4.45636 -160.856 -4.45636 0 0 926341. 3205.33 0.54 0.10 0.23 -1 -1 0.54 0.0160742 0.014414 78 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 20.79 vpr 64.39 MiB -1 -1 0.54 20976 1 0.17 -1 -1 33536 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 25.6 MiB 6.11 735 12083 5107 6723 253 64.4 MiB 0.10 0.00 4.05037 -123.737 -4.05037 4.05037 2.35 0.000133241 0.000103825 0.0128451 0.0103194 38 2159 49 6.95648e+06 159232 678818. 2348.85 4.87 0.0617348 0.0512837 26626 170182 -1 1699 20 1188 1501 127593 27591 3.35181 3.35181 -119.202 -3.35181 0 0 902133. 3121.57 0.63 0.08 0.21 -1 -1 0.63 0.0108017 0.00952802 68 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 28.16 vpr 63.97 MiB -1 -1 0.39 21280 1 0.07 -1 -1 33728 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.3 MiB 4.56 543 10956 3546 5569 1841 64.0 MiB 0.27 0.00 3.32523 -102.046 -3.32523 3.32523 2.80 0.000131079 0.00010196 0.0110333 0.00893353 36 1943 32 6.95648e+06 188184 648988. 2245.63 7.34 0.0541235 0.0450942 26050 158493 -1 1530 23 1299 1795 186350 39213 3.47072 3.47072 -119.629 -3.47072 0 0 828058. 2865.25 0.83 0.15 0.40 -1 -1 0.83 0.011307 0.0100024 57 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 24.56 vpr 64.63 MiB -1 -1 0.53 21432 1 0.13 -1 -1 34012 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66180 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 26.1 MiB 5.94 933 12754 4730 5000 3024 64.6 MiB 0.11 0.00 4.68742 -153.217 -4.68742 4.68742 2.57 0.000168221 0.000134002 0.0668061 0.0128789 44 2964 34 6.95648e+06 217135 787024. 2723.27 6.89 0.282 0.127463 27778 195446 -1 2100 23 1875 2452 195690 43411 4.67431 4.67431 -164.796 -4.67431 0 0 997811. 3452.63 1.08 0.17 0.30 -1 -1 1.08 0.0144032 0.0128871 85 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 27.06 vpr 64.76 MiB -1 -1 0.70 21280 1 0.07 -1 -1 33544 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 26.1 MiB 4.00 823 12030 5052 6595 383 64.8 MiB 0.06 0.00 4.95282 -149.828 -4.95282 4.95282 2.93 0.000180863 0.000144478 0.0146915 0.011901 46 2741 35 6.95648e+06 202660 828058. 2865.25 10.08 0.371629 0.359828 28066 200906 -1 1926 22 1554 2217 197899 43558 4.54096 4.54096 -151.361 -4.54096 0 0 1.01997e+06 3529.29 1.26 0.16 0.40 -1 -1 1.26 0.0144806 0.0129625 82 56 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 22.41 vpr 64.77 MiB -1 -1 0.61 21280 1 0.20 -1 -1 33808 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66320 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 26.1 MiB 2.15 936 12156 5048 6539 569 64.8 MiB 0.17 0.08 4.92382 -143.608 -4.92382 4.92382 3.01 0.00023057 0.00019411 0.015289 0.012455 44 2952 50 6.95648e+06 246087 787024. 2723.27 9.30 0.111399 0.0988087 27778 195446 -1 2043 24 1595 2634 201490 44459 4.48661 4.48661 -149.062 -4.48661 0 0 997811. 3452.63 1.17 0.08 0.27 -1 -1 1.17 0.0461655 0.0445279 83 3 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 28.24 vpr 64.39 MiB -1 -1 0.65 21280 1 0.03 -1 -1 33724 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 25.8 MiB 2.98 693 11963 4106 5300 2557 64.4 MiB 0.41 0.00 3.45278 -100.466 -3.45278 3.45278 3.30 0.000158133 0.000124679 0.0129076 0.010501 36 2260 41 6.95648e+06 303989 648988. 2245.63 12.92 0.239371 0.228105 26050 158493 -1 1656 22 1438 2269 175433 38273 3.13012 3.13012 -106.022 -3.13012 0 0 828058. 2865.25 0.91 0.13 0.23 -1 -1 0.91 0.0107558 0.00937978 69 52 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 21.48 vpr 64.18 MiB -1 -1 0.48 21128 1 0.21 -1 -1 34124 -1 -1 14 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65724 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 25.5 MiB 1.97 416 8585 3548 4477 560 64.2 MiB 0.03 0.00 2.9243 -87.2262 -2.9243 2.9243 2.79 0.000119818 9.3008e-05 0.00857123 0.00687555 42 1418 36 6.95648e+06 202660 744469. 2576.02 6.10 0.0597475 0.0507631 27202 183097 -1 1007 21 966 1166 86921 22340 3.04162 3.04162 -98.0518 -3.04162 0 0 949917. 3286.91 1.14 0.14 0.41 -1 -1 1.14 0.120485 0.119337 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 26.15 vpr 65.10 MiB -1 -1 0.58 21432 1 0.03 -1 -1 33820 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66660 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 26.4 MiB 4.43 1102 15044 5980 6904 2160 65.1 MiB 0.35 0.00 3.84665 -132.831 -3.84665 3.84665 3.00 0.000242355 0.000201884 0.0202946 0.0165011 48 3071 30 6.95648e+06 231611 865456. 2994.66 8.40 0.608555 0.595187 28354 207349 -1 2644 29 2441 3990 459090 125325 4.09482 4.09482 -142.398 -4.09482 0 0 1.05005e+06 3633.38 1.50 0.60 0.61 -1 -1 1.50 0.345469 0.343285 95 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 36.85 vpr 64.52 MiB -1 -1 0.72 21584 1 0.07 -1 -1 33652 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 25.9 MiB 16.88 1006 12362 4250 6888 1224 64.5 MiB 0.09 0.00 5.3781 -155.355 -5.3781 5.3781 3.26 0.000161896 0.000129347 0.0153462 0.0125177 46 2524 26 6.95648e+06 217135 828058. 2865.25 7.59 0.203029 0.191822 28066 200906 -1 2232 23 1876 2910 269627 51483 4.54986 4.54986 -156.111 -4.54986 0 0 1.01997e+06 3529.29 0.99 0.18 0.31 -1 -1 0.99 0.0454221 0.0438869 81 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 32.19 vpr 64.59 MiB -1 -1 0.59 21280 1 0.19 -1 -1 33916 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 25.9 MiB 12.37 712 8923 3676 5031 216 64.6 MiB 0.12 0.00 3.7346 -127.816 -3.7346 3.7346 2.98 0.000142142 0.000110349 0.0104368 0.0084834 40 2280 24 6.95648e+06 159232 706193. 2443.58 6.34 0.198277 0.183847 26914 176310 -1 2092 27 1709 2451 267567 58051 3.83106 3.83106 -138.489 -3.83106 0 0 926341. 3205.33 1.32 0.36 0.46 -1 -1 1.32 0.246706 0.244982 70 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 57.70 vpr 64.60 MiB -1 -1 0.40 21432 1 0.14 -1 -1 33780 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66152 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 25.9 MiB 1.72 754 14261 5947 7773 541 64.6 MiB 0.15 0.00 4.35988 -125.269 -4.35988 4.35988 3.13 0.000189442 0.000153352 0.0147976 0.0119355 42 2789 39 6.95648e+06 318465 744469. 2576.02 44.16 0.324363 0.30449 27202 183097 -1 2072 22 1410 2226 237615 51736 3.87001 3.87001 -128.568 -3.87001 0 0 949917. 3286.91 1.21 0.09 0.75 -1 -1 1.21 0.0111228 0.00979311 74 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 24.85 vpr 64.57 MiB -1 -1 0.40 21736 1 0.11 -1 -1 33472 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66124 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 26.1 MiB 3.41 836 14128 4159 6910 3059 64.6 MiB 0.19 0.00 4.50675 -130.886 -4.50675 4.50675 2.99 0.000213802 0.000164445 0.112593 0.0132168 38 2787 26 6.95648e+06 361892 678818. 2348.85 9.08 0.27132 0.163113 26626 170182 -1 2052 20 1552 2384 172074 38585 4.14602 4.14602 -134.294 -4.14602 0 0 902133. 3121.57 1.60 0.13 0.44 -1 -1 1.60 0.0137224 0.0122953 83 50 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 46.18 vpr 64.43 MiB -1 -1 0.79 21584 1 0.04 -1 -1 33752 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 25.9 MiB 4.38 715 8544 2877 3872 1795 64.4 MiB 0.30 0.00 3.35027 -102.379 -3.35027 3.35027 3.22 0.000160119 0.000127063 0.0105897 0.00878711 38 2483 34 6.95648e+06 231611 678818. 2348.85 29.60 0.283842 0.267239 26626 170182 -1 1897 23 1489 2426 201506 43472 3.14647 3.14647 -109.753 -3.14647 0 0 902133. 3121.57 0.62 0.15 0.21 -1 -1 0.62 0.0771084 0.0112157 68 51 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 29.03 vpr 64.79 MiB -1 -1 0.52 21128 1 0.16 -1 -1 33436 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66340 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 26.1 MiB 6.02 917 13856 5527 6642 1687 64.8 MiB 0.25 0.00 4.51937 -148.343 -4.51937 4.51937 3.02 0.000261731 0.000226345 0.0196976 0.0159168 48 3102 25 6.95648e+06 202660 865456. 2994.66 9.23 0.074163 0.0622658 28354 207349 -1 2644 24 2135 3097 380073 79399 4.97816 4.97816 -162.399 -4.97816 0 0 1.05005e+06 3633.38 1.62 0.39 0.38 -1 -1 1.62 0.0154123 0.0138425 88 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 25.82 vpr 64.61 MiB -1 -1 0.60 21584 1 0.05 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 25.9 MiB 3.35 804 10584 4356 5793 435 64.6 MiB 0.16 0.00 4.51417 -147.562 -4.51417 4.51417 2.69 0.000193933 0.00015552 0.0133541 0.0109977 40 2746 27 6.95648e+06 260562 706193. 2443.58 9.01 0.108313 0.0594872 26914 176310 -1 2089 30 1836 2492 305244 82722 4.39732 4.39732 -159.663 -4.39732 0 0 926341. 3205.33 1.16 0.29 0.31 -1 -1 1.16 0.0176862 0.0154556 80 62 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 39.65 vpr 64.04 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33828 -1 -1 12 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 25.5 MiB 20.57 414 10105 3962 3901 2242 64.0 MiB 0.05 0.00 3.92822 -101.93 -3.92822 3.92822 2.51 0.000127295 9.8698e-05 0.0196106 0.00896644 40 1436 24 6.95648e+06 173708 706193. 2443.58 5.82 0.207873 0.190596 26914 176310 -1 1295 23 1001 1294 116340 28714 3.28862 3.28862 -107.776 -3.28862 0 0 926341. 3205.33 1.12 0.13 0.50 -1 -1 1.12 0.0107838 0.00950601 53 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 26.50 vpr 64.22 MiB -1 -1 0.35 21432 1 0.18 -1 -1 33896 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 25.6 MiB 3.95 620 10345 3646 5288 1411 64.2 MiB 0.19 0.00 3.72515 -127.215 -3.72515 3.72515 2.64 0.000147122 0.000116288 0.0121609 0.0098463 40 2156 26 6.95648e+06 159232 706193. 2443.58 9.05 0.0573491 0.0473844 26914 176310 -1 1694 23 1274 1589 154676 34159 3.88512 3.88512 -139.19 -3.88512 0 0 926341. 3205.33 1.19 0.42 0.47 -1 -1 1.19 0.0122568 0.0108537 64 58 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 31.37 vpr 64.64 MiB -1 -1 0.46 21584 1 0.04 -1 -1 33728 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66192 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.01 748 11615 3856 5496 2263 64.6 MiB 0.15 0.00 4.10411 -120.963 -4.10411 4.10411 2.73 0.000154356 0.000121601 0.012153 0.00987682 40 2871 41 6.95648e+06 332941 706193. 2443.58 15.39 0.232055 0.123431 26914 176310 -1 1952 27 1808 2881 312628 83971 4.14272 4.14272 -133.589 -4.14272 0 0 926341. 3205.33 1.30 0.62 0.34 -1 -1 1.30 0.0153179 0.0135747 77 33 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 28.91 vpr 64.11 MiB -1 -1 0.47 21280 1 0.03 -1 -1 33596 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65648 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 25.6 MiB 6.45 591 9994 4171 5357 466 64.1 MiB 0.19 0.00 4.06527 -116.04 -4.06527 4.06527 2.49 0.000140676 0.000112258 0.0102313 0.00817044 40 2287 32 6.95648e+06 188184 706193. 2443.58 9.61 0.59374 0.335484 26914 176310 -1 1772 24 1410 1799 181608 43061 4.03342 4.03342 -120.917 -4.03342 0 0 926341. 3205.33 1.16 0.27 0.24 -1 -1 1.16 0.0891957 0.0878311 67 31 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 25.18 vpr 64.05 MiB -1 -1 0.35 21128 1 0.12 -1 -1 33696 -1 -1 9 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 25.6 MiB 4.64 609 9497 4084 5186 227 64.1 MiB 0.07 0.00 3.96096 -113.861 -3.96096 3.96096 3.54 0.000136187 0.000106003 0.0103129 0.00827866 44 1960 28 6.95648e+06 130281 787024. 2723.27 7.67 0.0877079 0.0788646 27778 195446 -1 1413 20 1317 1952 159640 34547 2.99337 2.99337 -109.258 -2.99337 0 0 997811. 3452.63 1.41 0.15 0.40 -1 -1 1.41 0.0751356 0.00931123 56 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 23.41 vpr 64.47 MiB -1 -1 0.51 21280 1 0.03 -1 -1 33844 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 25.9 MiB 3.93 767 14295 5145 7027 2123 64.5 MiB 0.22 0.00 3.44853 -115.891 -3.44853 3.44853 3.05 0.0001711 0.000135566 0.0827367 0.079707 40 2079 23 6.95648e+06 347416 706193. 2443.58 6.92 0.266756 0.255563 26914 176310 -1 1722 21 1678 2282 188630 41591 3.30477 3.30477 -118.576 -3.30477 0 0 926341. 3205.33 1.39 0.16 0.72 -1 -1 1.39 0.0135079 0.0120786 79 64 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 35.41 vpr 64.29 MiB -1 -1 0.51 21280 1 0.22 -1 -1 33616 -1 -1 12 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 25.5 MiB 8.81 631 11925 4064 5891 1970 64.3 MiB 0.08 0.00 3.97747 -119.507 -3.97747 3.97747 3.07 0.000141765 0.000111685 0.0132539 0.0106254 38 2048 45 6.95648e+06 173708 678818. 2348.85 12.46 0.258223 0.247494 26626 170182 -1 1607 23 1113 1586 163638 50863 3.49622 3.49622 -123.168 -3.49622 0 0 902133. 3121.57 1.17 0.33 0.38 -1 -1 1.17 0.0110938 0.00982883 64 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 29.61 vpr 64.50 MiB -1 -1 0.57 21280 1 0.08 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 25.9 MiB 5.27 678 15017 5720 7175 2122 64.5 MiB 0.06 0.00 3.20268 -108.887 -3.20268 3.20268 3.66 0.000163278 0.000127814 0.0164423 0.0130201 52 2008 48 6.95648e+06 318465 926341. 3205.33 8.83 0.455511 0.33454 29218 227130 -1 1469 22 1253 1887 146863 37224 2.99297 2.99297 -108.726 -2.99297 0 0 1.14541e+06 3963.36 1.61 0.06 1.06 -1 -1 1.61 0.0124308 0.0110402 71 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 26.50 vpr 64.31 MiB -1 -1 0.62 21280 1 0.11 -1 -1 33664 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 25.8 MiB 6.16 662 8876 3614 4824 438 64.3 MiB 0.07 0.00 4.0342 -133.245 -4.0342 4.0342 2.56 0.00018899 0.000143524 0.012219 0.0099754 48 2022 21 6.95648e+06 217135 865456. 2994.66 8.02 0.170801 0.0559723 28354 207349 -1 1664 24 1657 2234 239711 74482 3.95211 3.95211 -140.908 -3.95211 0 0 1.05005e+06 3633.38 1.54 0.18 0.36 -1 -1 1.54 0.0603002 0.0585952 73 91 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 26.61 vpr 64.38 MiB -1 -1 0.53 21280 1 0.20 -1 -1 33408 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 25.8 MiB 5.21 509 10304 4083 5484 737 64.4 MiB 0.14 0.00 2.9023 -97.3173 -2.9023 2.9023 2.87 0.000169008 0.00013393 0.0125255 0.0101197 46 1859 26 6.95648e+06 144757 828058. 2865.25 8.54 0.253823 0.244244 28066 200906 -1 1379 28 1296 1972 169485 38610 3.12432 3.12432 -105.586 -3.12432 0 0 1.01997e+06 3529.29 1.49 0.11 0.82 -1 -1 1.49 0.0128282 0.0112422 57 57 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 31.27 vpr 64.46 MiB -1 -1 0.45 21432 1 0.15 -1 -1 33948 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 25.8 MiB 5.52 759 10819 2915 6394 1510 64.5 MiB 0.08 0.00 4.04348 -128.875 -4.04348 4.04348 2.56 0.000141006 0.000111615 0.0460564 0.00972984 38 2487 50 6.95648e+06 159232 678818. 2348.85 14.76 0.103033 0.0574875 26626 170182 -1 1962 22 1475 2156 194034 41144 3.98932 3.98932 -139.116 -3.98932 0 0 902133. 3121.57 0.98 0.15 0.47 -1 -1 0.98 0.0112 0.00996968 70 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 55.31 vpr 64.45 MiB -1 -1 0.57 21432 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 25.9 MiB 8.57 781 10370 4130 5165 1075 64.4 MiB 0.18 0.00 4.16878 -129.099 -4.16878 4.16878 3.87 0.0001712 0.000139246 0.0119381 0.00972181 40 2510 32 6.95648e+06 202660 706193. 2443.58 32.99 0.223606 0.204719 26914 176310 -1 2116 23 1814 2401 210166 48272 4.93652 4.93652 -149.134 -4.93652 0 0 926341. 3205.33 1.29 0.15 0.44 -1 -1 1.29 0.0135028 0.0120694 79 30 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 18.71 vpr 64.34 MiB -1 -1 0.38 21432 1 0.26 -1 -1 33588 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 25.7 MiB 2.91 662 11118 4310 5269 1539 64.3 MiB 0.22 0.00 4.24388 -117.566 -4.24388 4.24388 2.30 0.000171217 0.000140159 0.184062 0.181837 42 2502 35 6.95648e+06 303989 744469. 2576.02 6.36 0.274108 0.263914 27202 183097 -1 1610 35 1272 1824 238633 81553 3.54316 3.54316 -114.241 -3.54316 0 0 949917. 3286.91 1.12 0.16 0.48 -1 -1 1.12 0.0162827 0.014246 71 55 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 71.74 vpr 64.55 MiB -1 -1 0.54 21584 1 0.13 -1 -1 33512 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66100 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 25.9 MiB 3.65 835 12030 5024 6545 461 64.6 MiB 0.20 0.00 4.9402 -157.131 -4.9402 4.9402 2.95 0.000180496 0.000144753 0.0156459 0.0128484 48 2888 42 6.95648e+06 202660 865456. 2994.66 54.06 0.274823 0.25229 28354 207349 -1 2151 24 2212 3089 336395 85250 4.85622 4.85622 -161.199 -4.85622 0 0 1.05005e+06 3633.38 1.29 0.30 0.51 -1 -1 1.29 0.176378 0.174672 89 65 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 19.30 vpr 63.80 MiB -1 -1 0.41 20976 1 0.03 -1 -1 33480 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65332 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 5.86 534 10476 4351 5783 342 63.8 MiB 0.06 0.00 3.74884 -96.385 -3.74884 3.74884 1.25 0.000127281 9.9977e-05 0.0324693 0.0303248 40 1532 22 6.95648e+06 188184 706193. 2443.58 4.14 0.165482 0.157246 26914 176310 -1 1442 22 861 1408 111894 25052 3.03022 3.03022 -100.616 -3.03022 0 0 926341. 3205.33 0.80 0.12 0.34 -1 -1 0.80 0.0213656 0.0199679 54 4 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 27.78 vpr 64.73 MiB -1 -1 0.61 21432 1 0.14 -1 -1 33652 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66280 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 26.2 MiB 3.49 808 15533 3949 11126 458 64.7 MiB 0.13 0.00 3.75239 -135.532 -3.75239 3.75239 2.41 0.0001953 0.000155738 0.0168223 0.0136551 38 2768 46 6.95648e+06 361892 678818. 2348.85 11.44 0.161265 0.0700024 26626 170182 -1 2002 22 1722 2306 186952 40190 4.06026 4.06026 -150.704 -4.06026 0 0 902133. 3121.57 1.18 0.13 0.59 -1 -1 1.18 0.0150561 0.0133962 81 90 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 27.62 vpr 64.55 MiB -1 -1 0.58 21584 1 0.12 -1 -1 33572 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 26.1 MiB 10.46 647 11079 4614 6219 246 64.6 MiB 0.08 0.00 2.96105 -113.708 -2.96105 2.96105 1.29 0.000166293 0.000130594 0.0152495 0.0123276 38 2082 24 6.95648e+06 144757 678818. 2348.85 7.32 0.424521 0.247385 26626 170182 -1 1578 22 1485 2093 172120 37079 3.04352 3.04352 -126.596 -3.04352 0 0 902133. 3121.57 1.15 0.17 0.42 -1 -1 1.15 0.03981 0.038282 61 96 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 59.29 vpr 64.52 MiB -1 -1 0.38 21584 1 0.12 -1 -1 33820 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 25.9 MiB 3.27 727 10670 3941 5494 1235 64.5 MiB 0.16 0.00 4.11943 -125.455 -4.11943 4.11943 2.77 0.000177992 0.000142582 0.073839 0.0716 40 3045 40 6.95648e+06 318465 706193. 2443.58 44.16 0.77287 0.752007 26914 176310 -1 2079 21 1362 1978 176336 41348 4.36701 4.36701 -135.308 -4.36701 0 0 926341. 3205.33 1.08 0.30 0.38 -1 -1 1.08 0.0123603 0.0108492 75 60 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 30.12 vpr 64.86 MiB -1 -1 0.66 21584 1 0.07 -1 -1 33832 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66412 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 26.2 MiB 6.17 1022 12247 5112 6717 418 64.9 MiB 0.20 0.00 6.05399 -174.256 -6.05399 6.05399 3.49 0.000185939 0.000149185 0.0999582 0.0966042 50 2835 27 6.95648e+06 217135 902133. 3121.57 7.77 0.15951 0.147251 28642 213929 -1 2360 23 2000 2863 225316 49509 5.39595 5.39595 -173.175 -5.39595 0 0 1.08113e+06 3740.92 1.52 0.16 0.37 -1 -1 1.52 0.0167506 0.0150332 95 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 30.26 vpr 63.93 MiB -1 -1 0.64 21128 1 0.11 -1 -1 33728 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 25.6 MiB 9.71 531 11017 3550 5709 1758 63.9 MiB 0.13 0.00 2.69765 -94.1883 -2.69765 2.69765 2.92 0.000131603 0.000101976 0.0104651 0.00834697 36 1670 24 6.95648e+06 159232 648988. 2245.63 6.99 0.198426 0.190212 26050 158493 -1 1376 22 897 1147 129321 26354 2.51043 2.51043 -96.7317 -2.51043 0 0 828058. 2865.25 0.93 0.19 0.34 -1 -1 0.93 0.00899241 0.00789819 52 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 30.69 vpr 64.30 MiB -1 -1 0.59 21280 1 0.20 -1 -1 33708 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 25.6 MiB 6.34 454 9193 3807 4991 395 64.3 MiB 0.11 0.00 3.70034 -111.63 -3.70034 3.70034 3.53 0.000150772 0.00011781 0.0115087 0.00929281 44 1701 43 6.95648e+06 159232 787024. 2723.27 7.77 0.326637 0.316321 27778 195446 -1 1200 42 1475 2367 304920 69406 3.39367 3.39367 -112.798 -3.39367 0 0 997811. 3452.63 1.28 0.32 0.66 -1 -1 1.28 0.0177282 0.0153164 54 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 30.17 vpr 64.37 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33816 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 25.8 MiB 1.64 540 6894 2749 3889 256 64.4 MiB 0.11 0.00 3.0756 -105.849 -3.0756 3.0756 3.16 0.000217495 0.000182737 0.00865685 0.00695275 48 2093 40 6.95648e+06 144757 865456. 2994.66 14.50 0.346233 0.213565 28354 207349 -1 1461 20 1251 1952 212681 53380 2.86957 2.86957 -111.171 -2.86957 0 0 1.05005e+06 3633.38 0.69 0.08 0.42 -1 -1 0.69 0.0116749 0.0104345 59 34 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 23.15 vpr 64.03 MiB -1 -1 0.74 20824 1 0.20 -1 -1 33820 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 25.5 MiB 1.66 427 8607 3186 4041 1380 64.0 MiB 0.12 0.00 3.25923 -75.6499 -3.25923 3.25923 3.03 0.000136104 0.000109619 0.00846075 0.00676124 36 1724 49 6.95648e+06 260562 648988. 2245.63 8.89 0.16354 0.154577 26050 158493 -1 1184 19 856 1317 107054 24664 3.21822 3.21822 -88.2062 -3.21822 0 0 828058. 2865.25 1.01 0.33 0.24 -1 -1 1.01 0.306212 0.00679548 53 29 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 35.98 vpr 64.54 MiB -1 -1 0.85 21280 1 0.03 -1 -1 33704 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66084 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 25.9 MiB 7.40 691 12876 3790 6759 2327 64.5 MiB 0.36 0.00 3.85562 -123.567 -3.85562 3.85562 2.83 0.00018823 0.000151423 0.276605 0.273621 54 2268 48 6.95648e+06 173708 949917. 3286.91 11.06 0.525172 0.36659 29506 232905 -1 1461 19 1452 2424 160831 40373 4.26202 4.26202 -126.443 -4.26202 0 0 1.17392e+06 4061.99 2.07 0.20 0.62 -1 -1 2.07 0.167319 0.165871 73 72 -1 -1 -1 -1 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 33.02 vpr 64.73 MiB -1 -1 0.84 21584 1 0.08 -1 -1 33616 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 26.2 MiB 3.17 719 10056 4152 5465 439 64.7 MiB 0.36 0.00 4.20868 -140.697 -4.20868 4.20868 3.26 0.000191641 0.000153774 0.324432 0.321929 38 2570 39 6.95648e+06 246087 678818. 2348.85 12.58 0.388841 0.376411 26626 170182 -1 1936 20 1698 2238 181693 41509 3.74872 3.74872 -141.229 -3.74872 0 0 902133. 3121.57 1.52 0.07 0.42 -1 -1 1.52 0.0139526 0.0124567 80 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 59.91 vpr 64.56 MiB -1 -1 0.48 21280 1 0.04 -1 -1 33796 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 25.9 MiB 5.68 925 13599 5712 7221 666 64.6 MiB 0.05 0.00 5.03973 -148.547 -5.03973 5.03973 2.89 0.000175233 0.000141203 0.0222157 0.0205706 40 3040 27 6.99608e+06 220735 706193. 2443.58 41.52 0.238056 0.123775 26914 176310 -1 2373 23 1911 2628 219103 51878 4.66241 4.66241 -156.688 -4.66241 0 0 926341. 3205.33 1.29 0.13 0.41 -1 -1 1.29 0.0143679 0.0127893 88 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 34.32 vpr 64.70 MiB -1 -1 0.49 21584 1 0.13 -1 -1 33864 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 8.49 947 9036 3528 4833 675 64.7 MiB 0.18 0.00 5.09794 -153.24 -5.09794 5.09794 2.87 0.000174368 0.000140058 0.0112154 0.00925241 46 2962 35 6.99608e+06 250167 828058. 2865.25 9.33 0.0718243 0.0613846 28066 200906 -1 2108 21 2147 3210 215179 48132 4.72379 4.72379 -153.095 -4.72379 0 0 1.01997e+06 3529.29 1.71 0.12 0.44 -1 -1 1.71 0.020751 0.0194252 99 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 29.17 vpr 64.00 MiB -1 -1 0.53 21280 1 0.12 -1 -1 33744 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65532 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 25.6 MiB 3.38 838 11366 4465 5588 1313 64.0 MiB 0.36 0.00 3.53589 -111.786 -3.53589 3.53589 3.06 0.000180812 0.000148415 0.0973572 0.0948958 36 2669 46 6.99608e+06 206020 648988. 2245.63 12.18 0.254041 0.243029 26050 158493 -1 1926 22 1506 2019 191678 42730 3.52136 3.52136 -117.755 -3.52136 0 0 828058. 2865.25 1.10 0.55 0.27 -1 -1 1.10 0.517589 0.516135 76 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 27.15 vpr 64.09 MiB -1 -1 0.62 21128 1 0.03 -1 -1 33500 -1 -1 16 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 25.6 MiB 4.94 688 10998 4578 5788 632 64.1 MiB 0.08 0.00 4.05128 -115.844 -4.05128 4.05128 3.90 0.000169531 0.000137802 0.0125785 0.0102854 46 2181 45 6.99608e+06 235451 828058. 2865.25 8.52 0.138592 0.0553022 28066 200906 -1 1625 23 1535 2413 154308 37539 3.67782 3.67782 -117.38 -3.67782 0 0 1.01997e+06 3529.29 1.08 0.11 0.62 -1 -1 1.08 0.013445 0.012005 78 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 32.36 vpr 64.48 MiB -1 -1 0.52 21432 1 0.07 -1 -1 33404 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 25.8 MiB 10.14 845 10536 4153 4899 1484 64.5 MiB 0.12 0.00 4.59275 -141.742 -4.59275 4.59275 2.29 0.00019625 0.000126204 0.0653117 0.0629711 42 3328 41 6.99608e+06 206020 744469. 2576.02 11.48 0.123494 0.112328 27202 183097 -1 2510 24 1850 3188 327022 67236 4.67815 4.67815 -157.307 -4.67815 0 0 949917. 3286.91 1.17 0.32 0.44 -1 -1 1.17 0.0340471 0.0325023 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 37.32 vpr 64.61 MiB -1 -1 0.91 20976 1 0.18 -1 -1 33388 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66160 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 25.9 MiB 12.32 972 12681 4858 6385 1438 64.6 MiB 0.27 0.00 3.38924 -122.219 -3.38924 3.38924 2.81 0.000178532 0.000142209 0.181434 0.178529 46 3347 36 6.99608e+06 250167 828058. 2865.25 12.09 0.239919 0.227999 28066 200906 -1 2395 27 1888 3000 217208 50091 3.57241 3.57241 -132.058 -3.57241 0 0 1.01997e+06 3529.29 1.46 0.17 0.59 -1 -1 1.46 0.112366 0.0140757 97 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 27.24 vpr 63.85 MiB -1 -1 0.57 21280 1 0.09 -1 -1 34140 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 25.3 MiB 6.53 491 10924 4290 5184 1450 63.9 MiB 0.13 0.00 3.89582 -109.26 -3.89582 3.89582 3.41 0.000118979 9.2516e-05 0.010952 0.00875392 44 1845 41 6.99608e+06 220735 787024. 2723.27 7.12 0.275172 0.265885 27778 195446 -1 1273 29 1379 2084 153176 35803 3.18926 3.18926 -106.388 -3.18926 0 0 997811. 3452.63 1.38 0.31 0.49 -1 -1 1.38 0.0120217 0.0104788 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 20.00 vpr 64.16 MiB -1 -1 0.35 21280 1 0.08 -1 -1 33708 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 25.5 MiB 1.25 646 12568 4471 6001 2096 64.2 MiB 0.27 0.00 2.86205 -89.6785 -2.86205 2.86205 2.97 0.000140919 0.000109836 0.0107154 0.00856243 44 1974 28 6.99608e+06 367892 787024. 2723.27 6.62 0.202528 0.121199 27778 195446 -1 1534 29 1285 2222 191860 59564 2.75632 2.75632 -95.7095 -2.75632 0 0 997811. 3452.63 1.42 0.15 0.39 -1 -1 1.42 0.0131256 0.0114818 69 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 51.50 vpr 64.23 MiB -1 -1 0.31 21584 1 0.14 -1 -1 33892 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 25.6 MiB 2.58 996 6597 1763 3930 904 64.2 MiB 0.11 0.00 3.43418 -125.292 -3.43418 3.43418 2.70 0.000149239 0.000117355 0.00792216 0.00644205 38 2628 32 6.99608e+06 206020 678818. 2348.85 34.55 0.108808 0.093443 26626 170182 -1 2231 22 1692 2317 199941 39045 3.22627 3.22627 -127.955 -3.22627 0 0 902133. 3121.57 1.00 0.05 0.42 -1 -1 1.00 0.0118303 0.0104532 87 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 23.27 vpr 64.15 MiB -1 -1 0.49 21280 1 0.02 -1 -1 33948 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 25.6 MiB 3.08 768 12465 4799 6628 1038 64.1 MiB 0.23 0.00 4.05822 -139.086 -4.05822 4.05822 3.16 0.000148008 0.000118221 0.191777 0.189281 40 2080 23 6.99608e+06 191304 706193. 2443.58 8.03 0.292572 0.282742 26914 176310 -1 1902 21 1404 1799 161852 35357 3.62016 3.62016 -136.406 -3.62016 0 0 926341. 3205.33 1.33 0.21 0.60 -1 -1 1.33 0.0117305 0.0103816 75 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 22.60 vpr 64.24 MiB -1 -1 0.41 21280 1 0.17 -1 -1 33996 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 25.8 MiB 2.75 688 11596 4869 6191 536 64.2 MiB 0.19 0.00 3.88079 -123.458 -3.88079 3.88079 3.45 0.000141052 0.00010995 0.0129302 0.0105057 44 2498 27 6.99608e+06 206020 787024. 2723.27 8.40 0.268765 0.25897 27778 195446 -1 1698 22 1493 2012 148073 35718 3.6069 3.6069 -122.968 -3.6069 0 0 997811. 3452.63 1.33 0.07 0.47 -1 -1 1.33 0.0441342 0.0428446 83 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 23.82 vpr 63.88 MiB -1 -1 0.63 20976 1 0.11 -1 -1 33744 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 25.3 MiB 2.40 863 6237 1573 4339 325 63.9 MiB 0.03 0.00 3.25498 -118.92 -3.25498 3.25498 2.61 0.000140724 0.000112244 0.00727474 0.00595966 38 2329 21 6.99608e+06 161872 678818. 2348.85 10.65 0.578272 0.457533 26626 170182 -1 2049 16 1120 1472 120334 25200 3.17627 3.17627 -118.474 -3.17627 0 0 902133. 3121.57 0.93 0.28 0.33 -1 -1 0.93 0.149597 0.148873 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 24.65 vpr 64.40 MiB -1 -1 0.50 21280 1 0.27 -1 -1 33800 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 25.8 MiB 3.42 873 12585 5265 7003 317 64.4 MiB 0.09 0.00 3.95082 -135.525 -3.95082 3.95082 2.49 0.000173904 0.000140135 0.0348694 0.0320001 40 3058 28 6.99608e+06 220735 706193. 2443.58 10.13 0.563315 0.42799 26914 176310 -1 2401 23 2079 3012 267732 57155 3.60816 3.60816 -134.222 -3.60816 0 0 926341. 3205.33 1.05 0.16 0.45 -1 -1 1.05 0.0126873 0.0113228 87 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 24.90 vpr 64.64 MiB -1 -1 0.57 21280 1 0.02 -1 -1 33816 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 25.9 MiB 4.89 919 12856 3600 6557 2699 64.6 MiB 0.15 0.00 4.71129 -139.414 -4.71129 4.71129 2.77 0.000175127 0.000139665 0.0146413 0.0119911 54 2802 36 6.99608e+06 250167 949917. 3286.91 8.52 0.226854 0.21562 29506 232905 -1 1802 23 2043 2734 201520 47258 4.19521 4.19521 -138.846 -4.19521 0 0 1.17392e+06 4061.99 1.48 0.43 0.58 -1 -1 1.48 0.0141433 0.0126324 97 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 28.94 vpr 63.63 MiB -1 -1 0.46 21432 1 0.02 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 25.2 MiB 10.30 532 10304 4052 4897 1355 63.6 MiB 0.17 0.00 3.0564 -87.6148 -3.0564 3.0564 2.34 0.000129189 0.000101356 0.00648444 0.00520814 44 1928 46 6.99608e+06 191304 787024. 2723.27 8.28 0.207963 0.199416 27778 195446 -1 1282 20 959 1352 101835 25459 3.08397 3.08397 -92.6682 -3.08397 0 0 997811. 3452.63 1.79 0.04 0.46 -1 -1 1.79 0.00996759 0.00880542 64 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 27.92 vpr 64.50 MiB -1 -1 0.53 21432 1 0.21 -1 -1 33696 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 25.9 MiB 4.07 1140 12464 4431 6558 1475 64.5 MiB 0.30 0.00 3.76129 -130.411 -3.76129 3.76129 2.66 0.000204737 0.00016924 0.0155986 0.0127445 40 3117 34 6.99608e+06 235451 706193. 2443.58 10.59 0.0723283 0.0610606 26914 176310 -1 2645 21 2052 3133 316208 64208 3.65912 3.65912 -140.567 -3.65912 0 0 926341. 3205.33 1.48 0.33 0.44 -1 -1 1.48 0.01391 0.0122895 96 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 62.38 vpr 64.52 MiB -1 -1 0.44 21432 1 0.13 -1 -1 33704 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66068 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 25.9 MiB 2.95 906 13768 5796 7604 368 64.5 MiB 0.36 0.00 4.30315 -137.123 -4.30315 4.30315 2.65 0.000192932 0.000158232 0.212087 0.209163 40 2625 23 6.99608e+06 220735 706193. 2443.58 43.83 1.23564 0.944669 26914 176310 -1 2177 23 1722 2343 280673 83000 3.49486 3.49486 -128.652 -3.49486 0 0 926341. 3205.33 1.43 0.25 0.39 -1 -1 1.43 0.0136439 0.0121505 84 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 20.45 vpr 64.51 MiB -1 -1 0.37 21280 1 0.03 -1 -1 33508 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 26.0 MiB 2.76 905 11064 3491 5867 1706 64.5 MiB 0.20 0.00 3.21889 -121.149 -3.21889 3.21889 2.90 0.000158223 0.0001266 0.0121631 0.00994897 42 3082 30 6.99608e+06 220735 744469. 2576.02 7.54 0.0545593 0.0455866 27202 183097 -1 2213 22 1822 2291 214482 48306 3.40796 3.40796 -136.466 -3.40796 0 0 949917. 3286.91 1.29 0.02 0.27 -1 -1 1.29 0.00707932 0.00637281 89 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 21.95 vpr 63.73 MiB -1 -1 0.44 21128 1 0.12 -1 -1 33856 -1 -1 10 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 25.2 MiB 6.41 630 8565 3545 4800 220 63.7 MiB 0.19 0.00 2.33546 -90.9219 -2.33546 2.33546 2.81 5.4371e-05 4.1543e-05 0.00705516 0.00554976 34 1779 31 6.99608e+06 147157 618332. 2139.56 5.68 0.0399199 0.0328344 25762 151098 -1 1455 24 825 913 111725 23696 2.10148 2.10148 -90.1959 -2.10148 0 0 787024. 2723.27 0.88 0.13 0.40 -1 -1 0.88 0.00795589 0.00678772 52 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 23.62 vpr 64.02 MiB -1 -1 0.42 21280 1 0.02 -1 -1 33888 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65552 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 25.5 MiB 7.63 783 8236 2031 5935 270 64.0 MiB 0.16 0.00 3.70832 -125.553 -3.70832 3.70832 2.42 0.000144118 0.000116061 0.0095307 0.00779307 40 2194 25 6.99608e+06 191304 706193. 2443.58 5.47 0.178147 0.169603 26914 176310 -1 2045 20 1440 2073 211575 44510 3.66441 3.66441 -138.837 -3.66441 0 0 926341. 3205.33 1.40 0.07 0.49 -1 -1 1.40 0.0110888 0.00992203 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 25.53 vpr 64.31 MiB -1 -1 0.57 21432 1 0.10 -1 -1 33940 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 25.8 MiB 4.01 786 12162 4998 6683 481 64.3 MiB 0.11 0.00 3.98084 -132.342 -3.98084 3.98084 2.27 0.000156451 0.000124443 0.0144777 0.011778 44 2843 30 6.99608e+06 294314 787024. 2723.27 10.76 0.330776 0.276672 27778 195446 -1 1830 21 1663 2556 220858 47746 3.94985 3.94985 -136.261 -3.94985 0 0 997811. 3452.63 0.82 0.52 0.39 -1 -1 0.82 0.0133949 0.0119868 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 38.10 vpr 64.47 MiB -1 -1 0.39 21432 1 0.19 -1 -1 33652 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 25.9 MiB 7.61 1267 15044 5761 7520 1763 64.5 MiB 0.25 0.00 4.6547 -145.44 -4.6547 4.6547 2.91 0.000169935 0.000136219 0.196496 0.0111821 38 3632 46 6.99608e+06 235451 678818. 2348.85 19.74 0.257636 0.0620024 26626 170182 -1 2938 22 2141 3120 303377 56654 4.18241 4.18241 -146.004 -4.18241 0 0 902133. 3121.57 1.53 0.17 0.32 -1 -1 1.53 0.0143429 0.0127962 100 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 22.13 vpr 63.76 MiB -1 -1 0.45 21280 1 0.08 -1 -1 34172 -1 -1 13 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65292 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 25.0 MiB 7.09 410 7809 3349 3986 474 63.8 MiB 0.12 0.00 2.7218 -77.6213 -2.7218 2.7218 2.32 0.000121548 9.6908e-05 0.0952664 0.0938056 38 1274 35 6.99608e+06 191304 678818. 2348.85 5.41 0.127822 0.120657 26626 170182 -1 950 19 761 840 63910 15458 2.36202 2.36202 -74.6155 -2.36202 0 0 902133. 3121.57 0.99 0.02 0.32 -1 -1 0.99 0.00743294 0.00645103 53 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 26.47 vpr 64.19 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 25.5 MiB 3.63 705 12078 4998 6546 534 64.2 MiB 0.19 0.00 4.4821 -114.423 -4.4821 4.4821 2.26 0.000226891 0.000191392 0.116931 0.0106154 38 2743 36 6.99608e+06 220735 678818. 2348.85 13.93 0.33075 0.216376 26626 170182 -1 1871 23 1411 2380 182868 39939 3.85196 3.85196 -122.055 -3.85196 0 0 902133. 3121.57 0.90 0.12 0.21 -1 -1 0.90 0.011685 0.0103588 66 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 14.15 vpr 63.47 MiB -1 -1 0.32 20672 1 0.01 -1 -1 33464 -1 -1 8 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64992 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 24.9 MiB 0.76 437 9906 4138 5588 180 63.5 MiB 0.10 0.00 2.06911 -68.7948 -2.06911 2.06911 2.02 0.000100746 7.6232e-05 0.00824112 0.00639416 36 1252 23 6.99608e+06 117725 648988. 2245.63 4.25 0.102063 0.095255 26050 158493 -1 953 21 601 709 61167 13917 1.95112 1.95112 -70.894 -1.95112 0 0 828058. 2865.25 0.97 0.14 0.22 -1 -1 0.97 0.00719707 0.00625924 42 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 26.47 vpr 64.34 MiB -1 -1 0.82 21128 1 0.12 -1 -1 33372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 25.7 MiB 3.67 788 11366 4166 5016 2184 64.3 MiB 0.13 0.00 4.53824 -123.102 -4.53824 4.53824 2.96 0.000166176 0.000133047 0.012266 0.00995307 38 2712 26 6.99608e+06 206020 678818. 2348.85 12.12 0.0889055 0.0795355 26626 170182 -1 1962 23 1397 2020 146825 32893 4.06311 4.06311 -129.454 -4.06311 0 0 902133. 3121.57 0.96 0.25 0.25 -1 -1 0.96 0.133971 0.132555 73 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 19.40 vpr 64.11 MiB -1 -1 0.33 21128 1 0.23 -1 -1 33888 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 25.6 MiB 1.44 753 10873 3616 5657 1600 64.1 MiB 0.14 0.00 2.84195 -96.8447 -2.84195 2.84195 2.28 8.2712e-05 6.0816e-05 0.00542077 0.00432634 38 2342 33 6.99608e+06 309029 678818. 2348.85 7.49 0.215687 0.207232 26626 170182 -1 1703 20 1321 2157 135646 31751 3.33972 3.33972 -107.715 -3.33972 0 0 902133. 3121.57 1.15 0.19 0.28 -1 -1 1.15 0.011631 0.0103369 74 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 29.84 vpr 64.41 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33424 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 25.6 MiB 5.13 847 10726 4408 5888 430 64.4 MiB 0.36 0.00 4.20957 -126.724 -4.20957 4.20957 2.27 8.0897e-05 6.0474e-05 0.0121343 0.00985616 46 3164 43 6.99608e+06 220735 828058. 2865.25 14.48 0.0915375 0.0587401 28066 200906 -1 2141 23 1703 2499 189910 44242 4.09236 4.09236 -132.047 -4.09236 0 0 1.01997e+06 3529.29 1.20 0.14 0.46 -1 -1 1.20 0.00818029 0.00735675 87 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 28.16 vpr 64.20 MiB -1 -1 0.46 21584 1 0.20 -1 -1 33688 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 25.5 MiB 8.01 674 9356 2869 4552 1935 64.2 MiB 0.14 0.00 3.13575 -106.549 -3.13575 3.13575 2.55 0.000137406 0.000107637 0.115228 0.113219 38 2611 50 6.99608e+06 176588 678818. 2348.85 9.53 0.166583 0.155973 26626 170182 -1 1759 22 1375 1949 189887 40879 3.32052 3.32052 -126.851 -3.32052 0 0 902133. 3121.57 1.42 0.17 0.30 -1 -1 1.42 0.0111915 0.00966648 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 22.38 vpr 63.71 MiB -1 -1 0.25 21128 1 0.10 -1 -1 33600 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65244 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 25.1 MiB 4.60 589 9996 4091 5441 464 63.7 MiB 0.07 0.00 3.70857 -108.813 -3.70857 3.70857 2.30 0.000131811 0.000102745 0.0102136 0.00823174 46 1966 20 6.99608e+06 206020 828058. 2865.25 8.36 0.159815 0.152109 28066 200906 -1 1506 20 1116 1694 127421 30809 3.35721 3.35721 -115.344 -3.35721 0 0 1.01997e+06 3529.29 1.46 0.13 0.41 -1 -1 1.46 0.108567 0.10741 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 19.36 vpr 64.11 MiB -1 -1 0.37 21280 1 0.05 -1 -1 33708 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 25.4 MiB 2.25 621 9208 3749 4985 474 64.1 MiB 0.14 0.00 3.24014 -101.609 -3.24014 3.24014 2.48 0.000138065 0.00010978 0.00908661 0.00740399 38 1969 23 6.99608e+06 264882 678818. 2348.85 6.80 0.218797 0.210753 26626 170182 -1 1473 18 1091 1705 127233 27662 3.40101 3.40101 -110.982 -3.40101 0 0 902133. 3121.57 0.93 0.06 0.33 -1 -1 0.93 0.00925046 0.00821416 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 16.83 vpr 63.78 MiB -1 -1 0.37 21128 1 0.15 -1 -1 33676 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 25.2 MiB 0.99 516 11079 4202 5369 1508 63.8 MiB 0.37 0.00 3.37459 -107.294 -3.37459 3.37459 2.34 0.000153115 0.000119024 0.0116795 0.0093362 42 1871 39 6.99608e+06 147157 744469. 2576.02 5.27 0.0499122 0.041313 27202 183097 -1 1320 22 1151 1644 120070 29992 3.32957 3.32957 -114.574 -3.32957 0 0 949917. 3286.91 0.87 0.07 0.33 -1 -1 0.87 0.00990793 0.00872915 58 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 20.04 vpr 64.15 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33444 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 25.6 MiB 2.81 676 8396 3459 4685 252 64.2 MiB 0.19 0.00 3.25548 -105.576 -3.25548 3.25548 3.15 0.000152776 0.000121177 0.00945105 0.00760112 44 2181 31 6.99608e+06 191304 787024. 2723.27 6.51 0.306791 0.298667 27778 195446 -1 1545 21 1175 1591 111985 25819 2.90272 2.90272 -103.292 -2.90272 0 0 997811. 3452.63 0.98 0.03 0.33 -1 -1 0.98 0.00903579 0.00794333 69 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 30.97 vpr 64.32 MiB -1 -1 0.47 21128 1 0.08 -1 -1 33764 -1 -1 15 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 25.6 MiB 9.12 889 11756 3248 7405 1103 64.3 MiB 0.02 0.00 2.90695 -105.014 -2.90695 2.90695 2.88 5.9528e-05 4.6969e-05 0.00548378 0.00443372 36 2464 32 6.99608e+06 220735 648988. 2245.63 11.43 0.0791028 0.0705231 26050 158493 -1 1973 23 1417 1899 163421 33391 2.79132 2.79132 -110.906 -2.79132 0 0 828058. 2865.25 1.24 0.35 0.32 -1 -1 1.24 0.321178 0.319908 77 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 28.70 vpr 64.42 MiB -1 -1 0.33 21280 1 0.22 -1 -1 33828 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 25.6 MiB 4.36 941 11432 4088 5131 2213 64.4 MiB 0.16 0.00 4.40712 -124.994 -4.40712 4.40712 2.45 0.000186834 0.000150435 0.119212 0.116758 46 3334 48 6.99608e+06 235451 828058. 2865.25 13.74 0.740443 0.728312 28066 200906 -1 2171 18 1438 2389 179966 44853 3.56847 3.56847 -122.078 -3.56847 0 0 1.01997e+06 3529.29 1.01 0.12 0.42 -1 -1 1.01 0.0130676 0.0118169 92 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 25.20 vpr 64.55 MiB -1 -1 0.59 21432 1 0.21 -1 -1 33872 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 26.0 MiB 4.93 1017 13403 4723 5972 2708 64.6 MiB 0.21 0.03 4.21676 -145.665 -4.21676 4.21676 2.57 0.000180176 0.000143859 0.0766221 0.0734857 44 3879 49 6.99608e+06 279598 787024. 2723.27 9.73 0.135994 0.123403 27778 195446 -1 2516 22 2329 3306 268780 57575 4.1148 4.1148 -151.24 -4.1148 0 0 997811. 3452.63 1.15 0.20 0.39 -1 -1 1.15 0.0156103 0.0139288 106 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 21.86 vpr 64.17 MiB -1 -1 0.42 21128 1 0.10 -1 -1 33716 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 25.5 MiB 4.38 893 5654 1315 4090 249 64.2 MiB 0.10 0.00 3.62727 -120.532 -3.62727 3.62727 2.35 0.000155426 0.000122743 0.0712058 0.0699558 38 2251 33 6.99608e+06 161872 678818. 2348.85 6.52 0.110811 0.102848 26626 170182 -1 1922 22 1329 1899 171751 33882 3.22627 3.22627 -118.928 -3.22627 0 0 902133. 3121.57 1.06 0.14 0.32 -1 -1 1.06 0.0105304 0.00916517 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 26.27 vpr 64.50 MiB -1 -1 0.54 21432 1 0.10 -1 -1 33920 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 25.9 MiB 5.26 982 11604 4819 6273 512 64.5 MiB 0.06 0.00 3.54169 -123.265 -3.54169 3.54169 2.64 0.000175819 0.000141397 0.0148431 0.0120939 44 3088 44 6.99608e+06 250167 787024. 2723.27 8.84 0.191617 0.179458 27778 195446 -1 2124 19 1679 2348 168768 39278 3.55936 3.55936 -131.747 -3.55936 0 0 997811. 3452.63 1.49 0.31 0.35 -1 -1 1.49 0.0130432 0.0116966 99 61 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 28.35 vpr 64.76 MiB -1 -1 0.51 21736 1 0.06 -1 -1 33536 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 26.1 MiB 5.15 1028 12636 4943 6140 1553 64.8 MiB 0.27 0.00 5.24621 -164.101 -5.24621 5.24621 2.60 0.000178978 0.000142942 0.0159988 0.0131292 48 3124 31 6.99608e+06 250167 865456. 2994.66 10.43 0.0659359 0.0552879 28354 207349 -1 2493 24 2360 3318 282867 62928 5.15959 5.15959 -170.295 -5.15959 0 0 1.05005e+06 3633.38 1.67 0.21 0.66 -1 -1 1.67 0.0153962 0.0137133 104 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 31.23 vpr 64.77 MiB -1 -1 0.35 21584 1 0.19 -1 -1 33916 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66328 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 26.1 MiB 10.88 968 11981 4240 5467 2274 64.8 MiB 0.36 0.00 5.19038 -164.138 -5.19038 5.19038 2.85 8.0018e-05 6.3132e-05 0.0160126 0.013105 40 3265 28 6.99608e+06 264882 706193. 2443.58 9.16 0.28158 0.270337 26914 176310 -1 2893 21 2251 3190 337590 71137 5.42135 5.42135 -181.76 -5.42135 0 0 926341. 3205.33 1.11 0.17 0.45 -1 -1 1.11 0.013823 0.0121943 103 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 27.33 vpr 64.45 MiB -1 -1 0.56 21584 1 0.21 -1 -1 33540 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 25.9 MiB 7.01 862 12585 5256 6762 567 64.4 MiB 0.22 0.00 3.89582 -125.985 -3.89582 3.89582 2.77 0.000182989 0.00014656 0.19713 0.19565 48 2799 44 6.99608e+06 235451 865456. 2994.66 8.82 0.508719 0.403863 28354 207349 -1 2169 22 1701 2264 194560 43366 3.42786 3.42786 -122.223 -3.42786 0 0 1.05005e+06 3633.38 1.18 0.16 0.40 -1 -1 1.18 0.0138875 0.0123358 93 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 57.34 vpr 64.19 MiB -1 -1 0.48 21280 1 0.13 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 25.5 MiB 2.93 803 9872 4112 5444 316 64.2 MiB 0.11 0.00 3.99218 -113.879 -3.99218 3.99218 2.60 0.000142435 0.000110946 0.0106756 0.00862472 40 2658 35 6.99608e+06 206020 706193. 2443.58 44.08 0.405386 0.387981 26914 176310 -1 2071 26 1764 2473 302639 100766 3.76682 3.76682 -121.52 -3.76682 0 0 926341. 3205.33 1.14 0.17 0.45 -1 -1 1.14 0.110847 0.10724 72 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 27.37 vpr 64.77 MiB -1 -1 0.50 21888 1 0.15 -1 -1 33636 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66324 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 26.5 MiB 4.95 1405 9943 2847 6446 650 64.8 MiB 0.14 0.00 4.92896 -168.996 -4.92896 4.92896 2.38 0.000203518 0.000165072 0.0977434 0.0954113 40 3872 39 6.99608e+06 309029 706193. 2443.58 11.96 0.346513 0.334106 26914 176310 -1 3344 23 2997 4336 446634 100719 4.65734 4.65734 -173.663 -4.65734 0 0 926341. 3205.33 1.01 0.21 0.38 -1 -1 1.01 0.0156173 0.0138065 129 87 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 28.54 vpr 64.07 MiB -1 -1 0.62 21280 1 0.06 -1 -1 33696 -1 -1 11 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65604 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 25.5 MiB 9.96 544 11234 4006 5215 2013 64.1 MiB 0.04 0.00 2.9921 -96.7202 -2.9921 2.9921 2.19 0.000125897 9.823e-05 0.0119502 0.00966785 40 1883 30 6.99608e+06 161872 706193. 2443.58 9.57 0.162997 0.154644 26914 176310 -1 1440 20 1280 1611 137520 35615 3.03497 3.03497 -106.757 -3.03497 0 0 926341. 3205.33 1.01 0.15 0.30 -1 -1 1.01 0.0104517 0.00956822 65 28 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 18.98 vpr 64.38 MiB -1 -1 0.46 21432 1 0.14 -1 -1 33748 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 25.8 MiB 1.95 912 12694 5540 6748 406 64.4 MiB 0.18 0.00 4.60267 -146.673 -4.60267 4.60267 2.72 0.000168282 0.000135802 0.0103137 0.00841589 48 2470 23 6.99608e+06 220735 865456. 2994.66 6.45 0.13798 0.128773 28354 207349 -1 2082 23 1770 2646 253731 52127 4.13621 4.13621 -137.464 -4.13621 0 0 1.05005e+06 3633.38 1.34 0.19 0.47 -1 -1 1.34 0.145241 0.1438 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 27.04 vpr 64.47 MiB -1 -1 0.31 21280 1 0.19 -1 -1 33536 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 4.95 945 13430 5689 7174 567 64.5 MiB 0.30 0.00 3.75245 -124.97 -3.75245 3.75245 2.76 0.00017646 0.000131258 0.015739 0.0126729 46 2944 27 6.99608e+06 220735 828058. 2865.25 10.88 0.160993 0.149706 28066 200906 -1 2029 19 1444 2116 166624 39451 3.40412 3.40412 -125.845 -3.40412 0 0 1.01997e+06 3529.29 1.14 0.16 0.48 -1 -1 1.14 0.0115485 0.0101567 91 53 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 20.45 vpr 64.16 MiB -1 -1 0.45 20976 1 0.17 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 25.5 MiB 2.91 690 11776 4321 5710 1745 64.2 MiB 0.15 0.00 4.31309 -119.63 -4.31309 4.31309 2.37 0.000147659 0.000116013 0.0129942 0.0105711 44 2227 26 6.99608e+06 235451 787024. 2723.27 6.75 0.0888485 0.0796297 27778 195446 -1 1617 19 1050 1861 132027 30100 3.77982 3.77982 -121.04 -3.77982 0 0 997811. 3452.63 1.05 0.10 0.57 -1 -1 1.05 0.0104164 0.00930439 68 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 21.26 vpr 64.61 MiB -1 -1 0.42 21432 1 0.14 -1 -1 33464 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 25.9 MiB 4.13 860 12585 4651 6361 1573 64.6 MiB 0.25 0.12 4.42805 -134.738 -4.42805 4.42805 2.63 0.000165529 0.000133429 0.0163858 0.0133661 42 2764 29 6.99608e+06 220735 744469. 2576.02 5.20 0.059445 0.0492923 27202 183097 -1 2059 19 1386 1823 151201 33345 3.83976 3.83976 -135.065 -3.83976 0 0 949917. 3286.91 1.48 0.34 0.48 -1 -1 1.48 0.0132619 0.0118109 90 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 63.86 vpr 64.25 MiB -1 -1 0.67 21128 1 0.29 -1 -1 33680 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 25.6 MiB 4.98 955 12923 4690 6560 1673 64.3 MiB 0.14 0.00 3.70839 -125.63 -3.70839 3.70839 2.73 0.000199053 0.000160812 0.0499555 0.0468568 40 3001 35 6.99608e+06 220735 706193. 2443.58 46.74 0.397475 0.314069 26914 176310 -1 2594 24 1980 3063 380968 104868 3.88806 3.88806 -139.973 -3.88806 0 0 926341. 3205.33 1.27 0.27 0.32 -1 -1 1.27 0.00919012 0.00804052 92 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 27.78 vpr 64.74 MiB -1 -1 0.62 21280 1 0.25 -1 -1 33400 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 26.1 MiB 8.27 978 13152 5506 7269 377 64.7 MiB 0.15 0.00 3.78378 -128.23 -3.78378 3.78378 2.43 0.000171935 0.000134874 0.0162603 0.0133459 46 2941 30 6.99608e+06 235451 828058. 2865.25 8.20 0.0690002 0.0578692 28066 200906 -1 2221 23 1883 2487 191121 41445 3.23321 3.23321 -122.651 -3.23321 0 0 1.01997e+06 3529.29 1.18 0.08 0.46 -1 -1 1.18 0.0149729 0.0132922 101 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 20.65 vpr 64.30 MiB -1 -1 0.48 21280 1 0.02 -1 -1 33840 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 25.6 MiB 3.12 740 10204 3637 4872 1695 64.3 MiB 0.13 0.00 4.49903 -121.926 -4.49903 4.49903 2.71 0.000153053 0.000121847 0.0124619 0.0103218 44 2663 29 6.99608e+06 206020 787024. 2723.27 6.03 0.0576417 0.0478312 27778 195446 -1 1849 24 1346 2153 157567 36047 4.02517 4.02517 -124.382 -4.02517 0 0 997811. 3452.63 1.43 0.12 0.40 -1 -1 1.43 0.0130684 0.0115002 74 24 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 24.50 vpr 64.42 MiB -1 -1 0.21 21280 1 0.03 -1 -1 33980 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65964 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 25.9 MiB 6.92 787 11161 3588 5346 2227 64.4 MiB 0.08 0.00 4.08638 -124.975 -4.08638 4.08638 2.76 0.000154583 0.00012416 0.0128349 0.0105005 40 2643 24 6.99608e+06 191304 706193. 2443.58 7.18 0.0574661 0.0480763 26914 176310 -1 2114 20 1643 2275 205823 44440 4.07536 4.07536 -135.578 -4.07536 0 0 926341. 3205.33 0.96 0.12 0.52 -1 -1 0.96 0.103263 0.10235 81 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 23.55 vpr 64.66 MiB -1 -1 0.29 21280 1 0.03 -1 -1 33824 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66208 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 25.9 MiB 2.77 1019 12923 4941 6153 1829 64.7 MiB 0.39 0.00 4.37385 -138.003 -4.37385 4.37385 2.37 0.000171719 0.000137704 0.147258 0.144001 44 3606 34 6.99608e+06 235451 787024. 2723.27 9.85 0.383742 0.192068 27778 195446 -1 2373 22 1854 2847 215637 46651 4.41426 4.41426 -137.655 -4.41426 0 0 997811. 3452.63 1.10 0.27 0.41 -1 -1 1.10 0.117501 0.115947 99 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 26.06 vpr 64.52 MiB -1 -1 0.42 21584 1 0.23 -1 -1 33496 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 25.9 MiB 3.22 1065 12292 5199 6801 292 64.5 MiB 0.10 0.00 3.97712 -134.378 -3.97712 3.97712 2.73 0.000179662 0.000143444 0.01694 0.0141503 44 3699 27 6.99608e+06 235451 787024. 2723.27 11.14 0.490684 0.479747 27778 195446 -1 2693 24 2108 3139 267821 61670 3.90526 3.90526 -143.019 -3.90526 0 0 997811. 3452.63 1.44 0.17 0.48 -1 -1 1.44 0.0124409 0.0106371 104 77 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 22.46 vpr 64.02 MiB -1 -1 0.34 21432 1 0.03 -1 -1 33544 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 25.3 MiB 1.92 609 9994 4141 5511 342 64.0 MiB 0.07 0.00 3.25208 -98.689 -3.25208 3.25208 2.93 0.000132569 0.000104703 0.0104799 0.00830862 38 2057 47 6.99608e+06 147157 678818. 2348.85 9.55 0.0513689 0.0421388 26626 170182 -1 1536 18 1041 1406 115965 28168 2.91072 2.91072 -99.3222 -2.91072 0 0 902133. 3121.57 1.14 0.03 0.40 -1 -1 1.14 0.0627542 0.061765 60 23 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 22.08 vpr 64.59 MiB -1 -1 0.56 21584 1 0.14 -1 -1 33596 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 26.1 MiB 2.86 837 8867 3217 4116 1534 64.6 MiB 0.14 0.00 4.06528 -147.024 -4.06528 4.06528 3.00 0.000153524 0.000121214 0.0108326 0.00888962 46 2585 24 6.99608e+06 220735 828058. 2865.25 8.58 0.261676 0.253136 28066 200906 -1 1998 20 1957 2588 199985 44033 3.83425 3.83425 -146.664 -3.83425 0 0 1.01997e+06 3529.29 0.93 0.21 0.64 -1 -1 0.93 0.187717 0.00802113 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 71.75 vpr 64.76 MiB -1 -1 0.46 21432 1 0.13 -1 -1 33684 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 26.2 MiB 3.37 923 11776 4896 6295 585 64.8 MiB 0.10 0.00 4.78758 -149.256 -4.78758 4.78758 2.55 0.000181438 0.000147473 0.0159067 0.0131205 48 3448 39 6.99608e+06 235451 865456. 2994.66 57.19 0.390088 0.368563 28354 207349 -1 2558 33 2727 4198 599463 223728 4.76546 4.76546 -161.743 -4.76546 0 0 1.05005e+06 3633.38 1.21 0.60 0.62 -1 -1 1.21 0.16685 0.164905 98 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 21.41 vpr 64.30 MiB -1 -1 0.53 21432 1 0.04 -1 -1 33788 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65844 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 25.6 MiB 2.08 852 12247 5127 6715 405 64.3 MiB 0.20 0.00 4.29215 -139.385 -4.29215 4.29215 2.85 7.6607e-05 5.9973e-05 0.16916 0.166928 44 2691 40 6.99608e+06 220735 787024. 2723.27 8.27 0.246297 0.235022 27778 195446 -1 1888 18 1452 1986 166756 35737 3.23326 3.23326 -128.308 -3.23326 0 0 997811. 3452.63 0.84 0.15 0.46 -1 -1 0.84 0.122192 0.0109331 85 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 24.60 vpr 64.06 MiB -1 -1 0.40 21432 1 0.03 -1 -1 33612 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 25.5 MiB 3.85 651 12008 4967 6460 581 64.1 MiB 0.08 0.00 3.65345 -113.329 -3.65345 3.65345 2.36 0.000179894 0.000149546 0.0430158 0.0407539 46 2085 31 6.99608e+06 294314 828058. 2865.25 8.98 0.0863394 0.0770483 28066 200906 -1 1479 20 1170 1804 118310 28898 3.34801 3.34801 -114.703 -3.34801 0 0 1.01997e+06 3529.29 1.39 0.13 0.42 -1 -1 1.39 0.0102901 0.00912519 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 33.22 vpr 64.75 MiB -1 -1 0.43 21888 1 0.22 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66304 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 26.1 MiB 5.86 1423 15212 5887 7111 2214 64.8 MiB 0.18 0.00 6.01298 -186.863 -6.01298 6.01298 2.64 0.000198616 0.000160838 0.0152163 0.0124892 40 4064 33 6.99608e+06 264882 706193. 2443.58 15.96 0.396401 0.384284 26914 176310 -1 3466 23 3071 4667 575895 137801 5.72209 5.72209 -195.82 -5.72209 0 0 926341. 3205.33 1.24 0.59 0.40 -1 -1 1.24 0.227472 0.225619 116 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 21.71 vpr 64.48 MiB -1 -1 0.56 21584 1 0.13 -1 -1 33772 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 905 9374 3182 4148 2044 64.5 MiB 0.35 0.00 4.80204 -144.828 -4.80204 4.80204 2.46 0.000189494 0.000141864 0.0125408 0.0103455 40 2848 29 6.99608e+06 206020 706193. 2443.58 7.83 0.259256 0.250044 26914 176310 -1 2310 24 1886 2581 254946 50387 4.43325 4.43325 -151.45 -4.43325 0 0 926341. 3205.33 1.34 0.12 0.35 -1 -1 1.34 0.0567713 0.0552506 83 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 18.76 vpr 63.87 MiB -1 -1 0.59 21128 1 0.05 -1 -1 33752 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 25.2 MiB 1.20 535 10509 4368 5789 352 63.9 MiB 0.19 0.00 2.922 -91.5293 -2.922 2.922 2.27 0.000145018 0.000115067 0.00978173 0.00782424 44 1776 31 6.99608e+06 191304 787024. 2723.27 6.29 0.24808 0.239784 27778 195446 -1 1254 23 998 1562 123725 29408 3.16227 3.16227 -97.6512 -3.16227 0 0 997811. 3452.63 1.43 0.02 0.62 -1 -1 1.43 0.0066414 0.00581891 51 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 23.17 vpr 64.45 MiB -1 -1 0.45 21432 1 0.40 -1 -1 33800 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 25.8 MiB 4.02 947 15044 6497 7967 580 64.4 MiB 0.50 0.00 4.78912 -134.232 -4.78912 4.78912 2.33 0.000181126 0.000146901 0.0962427 0.093064 46 2762 25 6.99608e+06 235451 828058. 2865.25 8.50 0.707065 0.655959 28066 200906 -1 2115 21 1570 2715 198354 43220 4.4258 4.4258 -134.383 -4.4258 0 0 1.01997e+06 3529.29 1.24 0.21 0.32 -1 -1 1.24 0.374509 0.373134 85 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 18.82 vpr 64.01 MiB -1 -1 0.36 21128 1 0.27 -1 -1 33880 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 25.3 MiB 2.71 510 10204 2772 5522 1910 64.0 MiB 0.16 0.00 2.966 -97.4119 -2.966 2.966 2.46 0.000130392 0.000101996 0.00938946 0.00758579 38 1706 46 6.99608e+06 206020 678818. 2348.85 5.64 0.201013 0.0775166 26626 170182 -1 1321 20 1013 1499 97313 22780 3.20727 3.20727 -108.328 -3.20727 0 0 902133. 3121.57 1.30 0.03 0.32 -1 -1 1.30 0.00981572 0.00853123 57 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 23.65 vpr 64.05 MiB -1 -1 0.62 21128 1 0.08 -1 -1 33896 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 25.5 MiB 2.26 687 11293 4742 6109 442 64.1 MiB 0.19 0.00 3.75078 -115.874 -3.75078 3.75078 2.68 6.1499e-05 4.7279e-05 0.157643 0.155498 38 1989 24 6.99608e+06 191304 678818. 2348.85 10.53 0.235995 0.227258 26626 170182 -1 1558 24 1279 1709 139697 30155 3.35642 3.35642 -115.674 -3.35642 0 0 902133. 3121.57 1.24 0.04 0.34 -1 -1 1.24 0.0118463 0.0104752 69 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 31.30 vpr 63.97 MiB -1 -1 0.32 21584 1 0.02 -1 -1 33832 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 25.2 MiB 5.34 994 7008 2797 3909 302 64.0 MiB 0.25 0.00 4.18292 -131.078 -4.18292 4.18292 2.52 0.000162497 0.00012991 0.150902 0.149406 40 3441 43 6.99608e+06 264882 706193. 2443.58 16.01 0.669417 0.659298 26914 176310 -1 2874 22 2123 3092 384118 87360 3.94156 3.94156 -139.592 -3.94156 0 0 926341. 3205.33 1.09 0.26 0.19 -1 -1 1.09 0.0144362 0.0128676 97 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 42.84 vpr 64.05 MiB -1 -1 0.25 21432 1 0.12 -1 -1 33840 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 25.3 MiB 4.56 931 7008 2217 3531 1260 64.1 MiB 0.10 0.00 4.25698 -140.399 -4.25698 4.25698 2.31 0.000177969 0.000142754 0.00764803 0.00628501 40 2908 35 6.99608e+06 220735 706193. 2443.58 28.75 0.368772 0.344694 26914 176310 -1 2417 69 3723 5380 1133922 475606 5.07131 5.07131 -162.382 -5.07131 0 0 926341. 3205.33 1.06 0.77 0.27 -1 -1 1.06 0.131801 0.12812 93 54 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 27.95 vpr 64.62 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33848 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 25.9 MiB 8.14 1126 12585 4376 6061 2148 64.6 MiB 0.30 0.00 4.54997 -147.039 -4.54997 4.54997 2.65 0.000170124 0.000138057 0.0986792 0.0958479 40 2898 34 6.99608e+06 220735 706193. 2443.58 8.79 0.151868 0.141548 26914 176310 -1 2697 23 1971 2885 312909 60301 4.66721 4.66721 -157.112 -4.66721 0 0 926341. 3205.33 1.04 0.19 0.49 -1 -1 1.04 0.0143271 0.0126198 90 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 27.25 vpr 64.16 MiB -1 -1 0.21 21280 1 0.06 -1 -1 33844 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 25.5 MiB 7.15 661 11767 4888 6509 370 64.2 MiB 0.12 0.00 3.96872 -124.487 -3.96872 3.96872 2.55 0.000167643 0.000132871 0.068274 0.0658955 40 2367 25 6.99608e+06 161872 706193. 2443.58 9.78 0.107201 0.098682 26914 176310 -1 1809 24 1313 1689 188497 53743 3.87076 3.87076 -132.815 -3.87076 0 0 926341. 3205.33 1.26 0.10 0.31 -1 -1 1.26 0.0115145 0.0101467 67 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 18.84 vpr 64.47 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33900 -1 -1 14 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 25.8 MiB 3.18 794 12791 5380 7022 389 64.5 MiB 0.14 0.00 3.72927 -124.193 -3.72927 3.72927 2.30 0.000161194 0.000127061 0.013976 0.0112777 46 2333 30 6.99608e+06 206020 828058. 2865.25 5.41 0.52602 0.515982 28066 200906 -1 1790 22 1454 2030 156940 33870 3.36281 3.36281 -121.934 -3.36281 0 0 1.01997e+06 3529.29 1.10 0.11 0.38 -1 -1 1.10 0.0836658 0.0822534 86 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 22.27 vpr 64.54 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33576 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 25.8 MiB 4.35 861 13731 5139 6518 2074 64.5 MiB 0.19 0.00 3.45074 -112.678 -3.45074 3.45074 2.30 0.000156749 0.000123991 0.0908065 0.0880744 40 2887 25 6.99608e+06 279598 706193. 2443.58 8.27 0.132724 0.123464 26914 176310 -1 2144 22 1847 2619 248813 55028 3.18851 3.18851 -115.459 -3.18851 0 0 926341. 3205.33 0.99 0.39 0.34 -1 -1 0.99 0.0126617 0.0112127 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 37.34 vpr 64.00 MiB -1 -1 0.44 21128 1 0.16 -1 -1 33720 -1 -1 17 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 25.4 MiB 1.39 723 11976 5024 6337 615 64.0 MiB 0.17 0.00 3.68935 -104.223 -3.68935 3.68935 3.02 0.000138445 0.000109218 0.134629 0.13222 38 2170 32 6.99608e+06 250167 678818. 2348.85 25.35 0.328546 0.312845 26626 170182 -1 1687 23 1445 2242 178128 37301 3.83422 3.83422 -111.835 -3.83422 0 0 902133. 3121.57 0.97 0.16 0.24 -1 -1 0.97 0.010884 0.00961885 71 27 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 26.96 vpr 64.47 MiB -1 -1 0.55 21128 1 0.12 -1 -1 33528 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 25.9 MiB 5.42 818 11324 3148 6454 1722 64.5 MiB 0.17 0.00 4.41761 -136.631 -4.41761 4.41761 2.18 0.000157971 0.000126032 0.0130531 0.010633 46 2411 48 6.99608e+06 220735 828058. 2865.25 10.90 0.0628872 0.0525514 28066 200906 -1 1681 20 1634 2153 148658 36551 3.73525 3.73525 -130.072 -3.73525 0 0 1.01997e+06 3529.29 1.14 0.14 0.29 -1 -1 1.14 0.0107802 0.00956925 87 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 20.78 vpr 64.57 MiB -1 -1 0.37 21280 1 0.02 -1 -1 33568 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66120 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 25.9 MiB 2.69 1010 13192 5594 7383 215 64.6 MiB 0.19 0.00 3.51674 -126.355 -3.51674 3.51674 2.31 0.000171431 0.000136538 0.0480006 0.0450497 40 2849 29 6.99608e+06 206020 706193. 2443.58 8.39 0.733582 0.690415 26914 176310 -1 2595 20 1836 2525 265148 53412 3.14421 3.14421 -130.08 -3.14421 0 0 926341. 3205.33 1.03 0.14 0.23 -1 -1 1.03 0.235713 0.234658 93 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 20.27 vpr 64.06 MiB -1 -1 0.36 21280 1 0.09 -1 -1 33788 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 25.6 MiB 1.12 737 13911 5155 6642 2114 64.1 MiB 0.18 0.00 4.50448 -121.077 -4.50448 4.50448 2.67 0.00015456 0.000123481 0.00944061 0.00762836 46 2250 32 6.99608e+06 353176 828058. 2865.25 8.29 0.199999 0.190714 28066 200906 -1 1674 22 1240 2123 163406 36714 3.80592 3.80592 -119.755 -3.80592 0 0 1.01997e+06 3529.29 1.32 0.35 0.35 -1 -1 1.32 0.10073 0.0993712 74 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 25.36 vpr 64.45 MiB -1 -1 0.50 21584 1 0.03 -1 -1 33952 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 25.8 MiB 6.90 870 10204 4231 5688 285 64.4 MiB 0.18 0.00 4.41391 -146.987 -4.41391 4.41391 2.98 0.000156037 0.000123696 0.0131657 0.0107111 44 3323 36 6.99608e+06 206020 787024. 2723.27 7.42 0.113824 0.102974 27778 195446 -1 2310 23 1929 2857 210235 46439 4.19065 4.19065 -150.738 -4.19065 0 0 997811. 3452.63 1.13 0.18 0.21 -1 -1 1.13 0.0213556 0.0198425 86 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 25.05 vpr 64.78 MiB -1 -1 0.57 21280 1 0.18 -1 -1 33736 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66332 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 26.1 MiB 2.58 1114 14606 5637 6534 2435 64.8 MiB 0.26 0.00 5.07184 -165.984 -5.07184 5.07184 2.61 0.000198871 0.000161516 0.0175467 0.0143501 44 3532 33 6.99608e+06 250167 787024. 2723.27 11.33 0.129499 0.0630345 27778 195446 -1 2490 23 2284 3287 279990 57438 4.86974 4.86974 -167.378 -4.86974 0 0 997811. 3452.63 1.18 0.03 0.42 -1 -1 1.18 0.0097321 0.00865276 102 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 22.47 vpr 64.83 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33772 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66388 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 26.2 MiB 2.63 1042 9181 3711 5204 266 64.8 MiB 0.05 0.00 4.37608 -146.243 -4.37608 4.37608 2.38 0.000180605 0.00014511 0.0125134 0.0102249 46 3529 25 6.99608e+06 250167 828058. 2865.25 10.07 0.0688836 0.0581383 28066 200906 -1 2566 22 1996 2878 264750 54411 4.1678 4.1678 -154.244 -4.1678 0 0 1.01997e+06 3529.29 1.06 0.41 0.44 -1 -1 1.06 0.05239 0.0508108 104 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 19.12 vpr 64.02 MiB -1 -1 0.31 21280 1 0.17 -1 -1 33892 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 25.6 MiB 2.74 629 9713 2668 5130 1915 64.0 MiB 0.08 0.06 4.31695 -123.26 -4.31695 4.31695 2.91 5.9551e-05 4.6167e-05 0.00485077 0.00390429 46 1921 21 6.99608e+06 191304 828058. 2865.25 5.77 0.0389078 0.0323672 28066 200906 -1 1475 21 1049 1505 106998 24231 3.47286 3.47286 -117.41 -3.47286 0 0 1.01997e+06 3529.29 1.15 0.12 0.45 -1 -1 1.15 0.0105365 0.00932647 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 25.72 vpr 64.76 MiB -1 -1 0.39 21432 1 0.11 -1 -1 33648 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66316 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 26.1 MiB 3.78 883 12120 4402 5485 2233 64.8 MiB 0.19 0.00 5.2091 -158.73 -5.2091 5.2091 2.99 0.000207889 0.000155966 0.0806197 0.0133318 46 3049 27 6.99608e+06 264882 828058. 2865.25 11.63 0.265989 0.190151 28066 200906 -1 2139 35 2805 4012 293032 69352 5.0758 5.0758 -166.038 -5.0758 0 0 1.01997e+06 3529.29 1.46 0.10 0.31 -1 -1 1.46 0.020199 0.0176592 104 63 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 25.40 vpr 64.16 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33696 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 25.8 MiB 4.32 774 11698 4362 5117 2219 64.2 MiB 0.03 0.00 4.8046 -141.064 -4.8046 4.8046 2.69 7.1295e-05 5.4613e-05 0.00618305 0.00495622 48 2796 44 6.99608e+06 206020 865456. 2994.66 10.07 0.385289 0.375274 28354 207349 -1 2171 22 1819 2863 265130 59913 4.06535 4.06535 -139.843 -4.06535 0 0 1.05005e+06 3633.38 1.17 0.18 0.43 -1 -1 1.17 0.0131011 0.0116469 82 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 27.98 vpr 64.14 MiB -1 -1 0.45 21584 1 0.06 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 25.6 MiB 3.22 823 14528 6271 7657 600 64.1 MiB 0.05 0.00 5.20705 -145.134 -5.20705 5.20705 2.79 7.4495e-05 5.75e-05 0.00931898 0.00753086 40 2954 37 6.99608e+06 250167 706193. 2443.58 12.92 0.0680158 0.0575733 26914 176310 -1 2320 23 1641 2320 260789 71889 4.25341 4.25341 -143.505 -4.25341 0 0 926341. 3205.33 1.26 0.20 0.33 -1 -1 1.26 0.0935723 0.0920482 87 47 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 26.05 vpr 64.55 MiB -1 -1 0.76 21432 1 0.14 -1 -1 34024 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66104 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 998 14606 5036 6964 2606 64.6 MiB 0.09 0.00 4.3242 -135.128 -4.3242 4.3242 2.70 0.000163392 0.000131069 0.0167373 0.0136154 44 3548 25 6.99608e+06 279598 787024. 2723.27 8.64 0.394468 0.383259 27778 195446 -1 2461 23 2270 3116 251673 57476 4.5468 4.5468 -153.096 -4.5468 0 0 997811. 3452.63 1.27 0.11 0.39 -1 -1 1.27 0.0141649 0.0117678 107 83 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 29.86 vpr 64.70 MiB -1 -1 0.40 21280 1 0.04 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66252 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 25.9 MiB 5.59 1170 15831 5552 8021 2258 64.7 MiB 0.33 0.00 4.80442 -153.646 -4.80442 4.80442 2.65 0.000178972 0.000134991 0.018578 0.0149174 38 3254 29 6.99608e+06 250167 678818. 2348.85 13.53 0.0696827 0.05815 26626 170182 -1 2746 26 2184 3139 323817 82005 5.28061 5.28061 -177.869 -5.28061 0 0 902133. 3121.57 1.20 0.15 0.55 -1 -1 1.20 0.0548885 0.0534143 95 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 30.01 vpr 64.66 MiB -1 -1 0.37 21280 1 0.09 -1 -1 33872 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66212 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 25.9 MiB 8.98 1070 13906 5389 6734 1783 64.7 MiB 0.26 0.00 3.78245 -124.642 -3.78245 3.78245 2.80 8.4602e-05 6.5399e-05 0.00815995 0.00657445 38 3327 42 6.99608e+06 294314 678818. 2348.85 10.48 0.137742 0.126969 26626 170182 -1 2574 21 1946 2530 210023 43499 3.69272 3.69272 -132.251 -3.69272 0 0 902133. 3121.57 1.30 0.22 0.38 -1 -1 1.30 0.174559 0.173038 109 85 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 42.82 vpr 63.96 MiB -1 -1 0.34 21128 1 0.10 -1 -1 33768 -1 -1 10 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 25.3 MiB 5.11 491 9374 2820 4647 1907 64.0 MiB 0.23 0.00 3.56099 -102.364 -3.56099 3.56099 3.10 0.000145911 0.000116842 0.00973358 0.00785464 50 1345 33 6.99608e+06 147157 902133. 3121.57 25.65 0.451724 0.437003 28642 213929 -1 1054 20 885 1359 83206 22588 2.77822 2.77822 -98.0204 -2.77822 0 0 1.08113e+06 3740.92 1.26 0.10 0.34 -1 -1 1.26 0.0424821 0.0413921 54 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 22.05 vpr 64.72 MiB -1 -1 0.53 21584 1 0.19 -1 -1 33832 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66272 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 26.1 MiB 2.18 1172 9531 3063 4611 1857 64.7 MiB 0.24 0.00 5.23038 -167.099 -5.23038 5.23038 2.48 7.6887e-05 6.0848e-05 0.209571 0.208077 46 3034 27 6.99608e+06 250167 828058. 2865.25 9.04 0.384827 0.375343 28066 200906 -1 2545 20 1810 2569 228338 44266 4.63514 4.63514 -160.327 -4.63514 0 0 1.01997e+06 3529.29 1.23 0.10 0.50 -1 -1 1.23 0.0137036 0.0123399 100 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.28 vpr 64.65 MiB -1 -1 0.47 21280 1 0.16 -1 -1 33840 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66204 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 26.1 MiB 2.57 1060 12506 5192 6537 777 64.7 MiB 0.24 0.00 4.95096 -169.07 -4.95096 4.95096 2.03 0.000172515 0.000136975 0.112528 0.109561 46 3312 25 6.99608e+06 250167 828058. 2865.25 8.99 0.318291 0.307215 28066 200906 -1 2524 22 2640 3696 290225 59376 4.58324 4.58324 -165.627 -4.58324 0 0 1.01997e+06 3529.29 1.32 0.17 0.58 -1 -1 1.32 0.013983 0.0124359 109 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 23.96 vpr 64.14 MiB -1 -1 0.37 21128 1 0.05 -1 -1 33692 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.01 663 12241 5259 6676 306 64.1 MiB 0.06 0.00 3.88707 -116.611 -3.88707 3.88707 3.08 0.000146057 0.000105949 0.0129342 0.0103792 38 2462 42 6.99608e+06 161872 678818. 2348.85 8.54 0.057466 0.0475796 26626 170182 -1 1638 20 1165 1453 107317 24853 3.38201 3.38201 -115.688 -3.38201 0 0 902133. 3121.57 1.00 0.17 0.68 -1 -1 1.00 0.143692 0.14253 69 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 28.32 vpr 63.98 MiB -1 -1 0.35 21280 1 0.12 -1 -1 33776 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 25.5 MiB 1.32 576 8556 2635 4197 1724 64.0 MiB 0.26 0.00 3.30733 -101.102 -3.30733 3.30733 2.67 6.1179e-05 4.6676e-05 0.00729084 0.00583146 38 1814 27 6.99608e+06 191304 678818. 2348.85 16.69 0.103741 0.0912761 26626 170182 -1 1313 22 1039 1555 113093 25818 3.01782 3.01782 -103.961 -3.01782 0 0 902133. 3121.57 1.06 0.05 0.45 -1 -1 1.06 0.0102529 0.00912286 56 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 28.59 vpr 64.41 MiB -1 -1 0.36 21432 1 0.14 -1 -1 33816 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 25.9 MiB 2.92 869 12754 4459 5989 2306 64.4 MiB 0.16 0.00 4.59981 -149.693 -4.59981 4.59981 2.53 7.6451e-05 5.9181e-05 0.129655 0.127424 38 3590 42 6.99608e+06 220735 678818. 2348.85 15.40 0.217238 0.174312 26626 170182 -1 2440 23 2002 2676 239947 49921 4.50775 4.50775 -157.404 -4.50775 0 0 902133. 3121.57 0.86 0.25 0.40 -1 -1 0.86 0.226714 0.00924684 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 25.68 vpr 64.64 MiB -1 -1 0.62 21280 1 0.13 -1 -1 33732 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 25.9 MiB 6.20 940 12416 5188 6985 243 64.6 MiB 0.11 0.00 4.54977 -140.907 -4.54977 4.54977 2.35 0.000169631 0.000134919 0.0693031 0.0664362 40 2963 48 6.99608e+06 220735 706193. 2443.58 8.79 0.265381 0.254194 26914 176310 -1 2484 23 2055 2828 282419 58469 4.38751 4.38751 -152.055 -4.38751 0 0 926341. 3205.33 1.01 0.20 0.37 -1 -1 1.01 0.142984 0.0957221 95 56 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 24.43 vpr 64.52 MiB -1 -1 0.48 21432 1 0.03 -1 -1 33528 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66072 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 25.8 MiB 1.71 872 12156 5062 6580 514 64.5 MiB 0.15 0.00 4.64591 -137.817 -4.64591 4.64591 2.24 8.3278e-05 6.5343e-05 0.0110396 0.00903414 40 3074 37 6.99608e+06 250167 706193. 2443.58 12.43 0.0704377 0.0600563 26914 176310 -1 2385 21 1926 3184 289065 65855 4.81341 4.81341 -158.276 -4.81341 0 0 926341. 3205.33 0.87 0.12 0.43 -1 -1 0.87 0.0137225 0.0122841 83 3 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 22.46 vpr 64.19 MiB -1 -1 0.70 21584 1 0.17 -1 -1 33808 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65732 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 25.6 MiB 3.96 830 11698 4911 6285 502 64.2 MiB 0.15 0.00 3.74623 -107.503 -3.74623 3.74623 2.66 7.1168e-05 5.4589e-05 0.00928814 0.00754558 44 2671 42 6.99608e+06 235451 787024. 2723.27 6.71 0.0500671 0.0413002 27778 195446 -1 1997 22 1577 2353 179360 39103 3.33842 3.33842 -113.24 -3.33842 0 0 997811. 3452.63 1.13 0.17 0.25 -1 -1 1.13 0.0127874 0.0113079 86 52 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 19.76 vpr 63.70 MiB -1 -1 0.36 21432 1 0.13 -1 -1 34024 -1 -1 15 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 25.2 MiB 4.31 509 7669 2724 3648 1297 63.7 MiB 0.14 0.00 3.48259 -102.05 -3.48259 3.48259 3.34 0.000122514 9.551e-05 0.00801491 0.00648311 42 1667 21 6.99608e+06 220735 744469. 2576.02 4.64 0.0385039 0.0317852 27202 183097 -1 1234 20 862 1319 84682 21044 3.45442 3.45442 -104.789 -3.45442 0 0 949917. 3286.91 1.07 0.03 0.33 -1 -1 1.07 0.00916121 0.00808584 66 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 24.24 vpr 64.75 MiB -1 -1 0.34 21584 1 0.04 -1 -1 33676 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66300 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 26.1 MiB 3.19 1230 15746 6854 8529 363 64.7 MiB 0.37 0.00 4.19054 -144.989 -4.19054 4.19054 2.75 0.000195151 0.000157367 0.0584025 0.0542852 46 3679 33 6.99608e+06 264882 828058. 2865.25 9.64 0.213592 0.200704 28066 200906 -1 2871 23 2406 3607 276534 57095 4.29751 4.29751 -149.943 -4.29751 0 0 1.01997e+06 3529.29 1.78 0.31 0.35 -1 -1 1.78 0.0141414 0.0126209 111 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 22.19 vpr 64.70 MiB -1 -1 0.42 21432 1 0.09 -1 -1 33808 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66248 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 26.1 MiB 3.46 970 7648 1766 5271 611 64.7 MiB 0.17 0.00 5.55089 -158.936 -5.55089 5.55089 2.36 0.000163996 0.000130622 0.13478 0.133045 44 3150 26 6.99608e+06 250167 787024. 2723.27 7.97 0.239227 0.229047 27778 195446 -1 2264 21 1964 2790 202537 46807 4.71884 4.71884 -157.007 -4.71884 0 0 997811. 3452.63 1.36 0.06 0.37 -1 -1 1.36 0.0124501 0.01105 100 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 22.21 vpr 64.54 MiB -1 -1 0.56 21432 1 0.06 -1 -1 33936 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66092 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 25.8 MiB 3.14 984 12362 5200 6901 261 64.5 MiB 0.30 0.00 4.34704 -155.732 -4.34704 4.34704 2.88 0.000156906 0.000124549 0.185411 0.182749 46 2942 45 6.99608e+06 206020 828058. 2865.25 7.81 0.239602 0.228281 28066 200906 -1 2135 20 1370 1712 135955 29714 3.88141 3.88141 -148.486 -3.88141 0 0 1.01997e+06 3529.29 1.26 0.04 0.48 -1 -1 1.26 0.0112848 0.0101196 91 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 21.24 vpr 64.31 MiB -1 -1 0.37 21432 1 0.03 -1 -1 33740 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 25.8 MiB 2.25 810 13768 5955 7355 458 64.3 MiB 0.05 0.00 4.11318 -126.224 -4.11318 4.11318 3.03 0.000170112 0.00013506 0.0074196 0.00588256 46 2606 47 6.99608e+06 220735 828058. 2865.25 7.84 0.29288 0.282978 28066 200906 -1 1913 20 1336 1823 126148 28964 3.88781 3.88781 -126.282 -3.88781 0 0 1.01997e+06 3529.29 1.26 0.11 0.25 -1 -1 1.26 0.0120217 0.0107499 81 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 21.60 vpr 64.43 MiB -1 -1 0.27 21280 1 0.07 -1 -1 33612 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 25.8 MiB 4.18 911 12120 5043 6557 520 64.4 MiB 0.33 0.00 4.16973 -124.445 -4.16973 4.16973 2.44 0.000106355 8.1504e-05 0.110868 0.0130646 46 2581 47 6.99608e+06 250167 828058. 2865.25 7.00 0.282863 0.175516 28066 200906 -1 2091 23 1782 2496 172921 38960 4.08162 4.08162 -129.28 -4.08162 0 0 1.01997e+06 3529.29 1.47 0.25 0.41 -1 -1 1.47 0.0158417 0.0142778 97 50 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 55.62 vpr 64.50 MiB -1 -1 0.39 21432 1 0.09 -1 -1 33900 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 25.8 MiB 5.16 853 8191 3286 4551 354 64.5 MiB 0.14 0.00 3.59563 -113.561 -3.59563 3.59563 2.24 0.00015353 0.000121934 0.00930531 0.00764348 44 2628 47 6.99608e+06 250167 787024. 2723.27 39.65 0.727286 0.589306 27778 195446 -1 1911 20 1464 2206 169394 36495 3.45631 3.45631 -119.101 -3.45631 0 0 997811. 3452.63 1.17 0.02 0.63 -1 -1 1.17 0.0072413 0.00657779 88 51 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 28.07 vpr 64.33 MiB -1 -1 0.43 21280 1 0.03 -1 -1 33560 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 25.8 MiB 2.63 934 9042 3688 5047 307 64.3 MiB 0.17 0.00 4.39601 -145.17 -4.39601 4.39601 2.21 0.000183568 0.000147796 0.0114251 0.00943339 46 3357 30 6.99608e+06 206020 828058. 2865.25 13.20 0.0636262 0.0537504 28066 200906 -1 2451 23 2098 3129 259161 55709 4.38161 4.38161 -154.433 -4.38161 0 0 1.01997e+06 3529.29 1.60 0.15 0.35 -1 -1 1.60 0.0105296 0.00960721 88 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 27.92 vpr 64.68 MiB -1 -1 0.39 21280 1 0.17 -1 -1 33672 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66232 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 26.1 MiB 8.70 965 11260 4654 6213 393 64.7 MiB 0.21 0.00 3.73597 -128.871 -3.73597 3.73597 2.50 0.000173481 0.000138965 0.0144193 0.0117566 44 3539 46 6.99608e+06 235451 787024. 2723.27 8.82 0.3673 0.153114 27778 195446 -1 2256 22 1940 2610 199384 44429 3.47481 3.47481 -129.962 -3.47481 0 0 997811. 3452.63 1.03 0.25 0.23 -1 -1 1.03 0.182367 0.180816 103 62 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 20.81 vpr 64.14 MiB -1 -1 0.20 21432 1 0.08 -1 -1 33804 -1 -1 14 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 25.5 MiB 4.53 553 10345 3346 4809 2190 64.1 MiB 0.02 0.00 4.28805 -120.257 -4.28805 4.28805 2.95 5.6187e-05 4.3429e-05 0.00465428 0.00373116 44 1988 29 6.99608e+06 206020 787024. 2723.27 6.18 0.130293 0.122866 27778 195446 -1 1330 22 1317 1750 124111 30032 3.34456 3.34456 -119.019 -3.34456 0 0 997811. 3452.63 1.24 0.12 0.36 -1 -1 1.24 0.0105669 0.00932764 70 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 48.97 vpr 64.13 MiB -1 -1 0.49 21280 1 0.13 -1 -1 33928 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65668 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 25.6 MiB 7.49 793 12362 5268 6864 230 64.1 MiB 0.25 0.00 4.02018 -135.883 -4.02018 4.02018 2.31 0.00023656 0.000174734 0.0140549 0.0114148 38 2575 30 6.99608e+06 206020 678818. 2348.85 32.25 0.161798 0.14525 26626 170182 -1 2012 20 1609 2187 211896 46250 3.90455 3.90455 -140.013 -3.90455 0 0 902133. 3121.57 0.96 0.14 0.32 -1 -1 0.96 0.0113684 0.0101394 79 58 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 21.52 vpr 64.30 MiB -1 -1 0.40 21280 1 0.14 -1 -1 34100 -1 -1 15 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 25.7 MiB 2.50 826 12196 4442 6061 1693 64.3 MiB 0.17 0.00 4.09738 -124.458 -4.09738 4.09738 2.17 0.000185234 0.000151997 0.0142251 0.0116491 40 2795 44 6.99608e+06 220735 706193. 2443.58 9.17 0.0681879 0.0573542 26914 176310 -1 2030 28 1940 2883 358545 135793 3.89202 3.89202 -131.812 -3.89202 0 0 926341. 3205.33 1.14 0.35 0.51 -1 -1 1.14 0.00944034 0.00810684 80 33 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 19.47 vpr 63.97 MiB -1 -1 0.39 21432 1 0.01 -1 -1 33872 -1 -1 13 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 25.5 MiB 3.28 623 8909 3777 4738 394 64.0 MiB 0.09 0.00 3.79267 -110.261 -3.79267 3.79267 2.34 0.000128352 0.000100824 0.0630843 0.0611368 42 2006 30 6.99608e+06 191304 744469. 2576.02 5.80 0.450794 0.44265 27202 183097 -1 1504 18 1083 1382 104481 25915 3.19941 3.19941 -107.059 -3.19941 0 0 949917. 3286.91 1.52 0.05 0.33 -1 -1 1.52 0.0245591 0.0235331 68 31 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 18.33 vpr 64.20 MiB -1 -1 0.44 21128 1 0.02 -1 -1 33836 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 25.6 MiB 2.68 747 11436 4976 6147 313 64.2 MiB 0.02 0.00 4.32795 -132.311 -4.32795 4.32795 2.24 6.3357e-05 4.8258e-05 0.00555277 0.00439008 46 1985 20 6.99608e+06 176588 828058. 2865.25 6.48 0.0484308 0.0414298 28066 200906 -1 1624 22 1252 1683 122330 27578 3.50386 3.50386 -129.467 -3.50386 0 0 1.01997e+06 3529.29 1.07 0.06 0.38 -1 -1 1.07 0.038826 0.0376409 73 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 20.37 vpr 64.34 MiB -1 -1 0.69 21280 1 0.16 -1 -1 33840 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 25.6 MiB 3.05 925 14356 5451 6870 2035 64.3 MiB 0.36 0.00 4.44525 -144.678 -4.44525 4.44525 2.58 8.9399e-05 7.1659e-05 0.167974 0.16532 44 2984 38 6.99608e+06 250167 787024. 2723.27 6.51 0.287971 0.277588 27778 195446 -1 2191 22 1989 2681 204537 45301 4.39755 4.39755 -148.654 -4.39755 0 0 997811. 3452.63 1.14 0.34 0.42 -1 -1 1.14 0.14785 0.146321 102 64 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 19.04 vpr 64.29 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33736 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 25.6 MiB 2.90 677 12236 4942 6162 1132 64.3 MiB 0.21 0.00 3.74867 -113.589 -3.74867 3.74867 2.65 0.000126127 9.809e-05 0.172657 0.00951226 40 1944 42 6.99608e+06 191304 706193. 2443.58 5.18 0.339072 0.143402 26914 176310 -1 1672 21 1245 1768 160342 33681 3.16146 3.16146 -110.118 -3.16146 0 0 926341. 3205.33 1.10 0.17 0.28 -1 -1 1.10 0.0104887 0.0093224 71 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 36.37 vpr 64.15 MiB -1 -1 0.55 21280 1 0.12 -1 -1 33720 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 25.5 MiB 3.97 1000 14275 5369 6741 2165 64.1 MiB 0.07 0.00 3.51669 -120.5 -3.51669 3.51669 2.78 0.000172729 0.000140596 0.0172174 0.0138593 36 3385 48 6.99608e+06 220735 648988. 2245.63 22.36 0.0872736 0.0746695 26050 158493 -1 2516 20 1568 2139 228982 44386 3.39006 3.39006 -127.987 -3.39006 0 0 828058. 2865.25 0.96 0.17 0.38 -1 -1 0.96 0.133893 0.132315 91 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 30.35 vpr 64.74 MiB -1 -1 0.61 21584 1 0.33 -1 -1 33972 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 26.2 MiB 8.91 1155 14663 6188 7958 517 64.7 MiB 0.26 0.00 4.64393 -158.098 -4.64393 4.64393 2.78 0.000186448 0.000150575 0.0406488 0.0375185 48 3206 36 6.99608e+06 294314 865456. 2994.66 9.86 0.224892 0.133785 28354 207349 -1 2807 28 2923 4123 575768 188632 4.67759 4.67759 -170.147 -4.67759 0 0 1.05005e+06 3633.38 1.38 0.37 0.62 -1 -1 1.38 0.0764526 0.0157775 113 91 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 50.06 vpr 64.08 MiB -1 -1 0.36 21432 1 0.12 -1 -1 33732 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 25.5 MiB 6.16 775 10156 4187 5714 255 64.1 MiB 0.13 0.00 3.42554 -116.648 -3.42554 3.42554 2.55 6.3395e-05 4.9045e-05 0.00827363 0.00671773 40 2408 28 6.99608e+06 176588 706193. 2443.58 33.07 0.215568 0.150057 26914 176310 -1 2061 20 1626 2128 206695 44348 3.37781 3.37781 -121.709 -3.37781 0 0 926341. 3205.33 0.75 0.21 0.38 -1 -1 0.75 0.105409 0.0097192 80 57 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 18.93 vpr 64.22 MiB -1 -1 0.51 21280 1 0.04 -1 -1 33804 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 25.6 MiB 2.22 715 9871 2522 5750 1599 64.2 MiB 0.28 0.00 3.90682 -124.154 -3.90682 3.90682 2.73 0.000132002 0.000104569 0.0106422 0.00864724 48 1761 24 6.99608e+06 161872 865456. 2994.66 5.50 0.0727083 0.0638315 28354 207349 -1 1520 20 1181 1705 120049 30478 3.18826 3.18826 -114.649 -3.18826 0 0 1.05005e+06 3633.38 1.73 0.04 0.69 -1 -1 1.73 0.011206 0.00999042 72 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 24.14 vpr 64.40 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33816 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65944 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 25.9 MiB 5.12 806 10370 4256 5769 345 64.4 MiB 0.14 0.00 4.12063 -125.806 -4.12063 4.12063 2.31 7.5489e-05 5.8267e-05 0.00803951 0.00644611 40 2802 44 6.99608e+06 206020 706193. 2443.58 8.92 0.155293 0.0485573 26914 176310 -1 2341 21 1844 2572 222411 52159 4.04836 4.04836 -139.738 -4.04836 0 0 926341. 3205.33 1.05 0.08 0.57 -1 -1 1.05 0.040421 0.0391463 79 30 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 29.38 vpr 64.50 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33740 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66048 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 25.8 MiB 5.23 860 11233 4667 5950 616 64.5 MiB 0.16 0.00 3.78147 -112.526 -3.78147 3.78147 2.54 0.000162341 0.000129164 0.0141805 0.0113294 38 2683 32 6.99608e+06 264882 678818. 2348.85 14.67 0.0848577 0.0742908 26626 170182 -1 1990 20 1446 2086 188585 42244 3.21921 3.21921 -110.88 -3.21921 0 0 902133. 3121.57 1.02 0.02 0.39 -1 -1 1.02 0.00705835 0.00639889 88 55 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 75.33 vpr 64.80 MiB -1 -1 0.41 21584 1 0.05 -1 -1 33932 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66360 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 26.1 MiB 4.64 1139 12681 5262 6918 501 64.8 MiB 0.17 0.00 5.49769 -178.53 -5.49769 5.49769 2.50 0.0001959 0.00015823 0.01632 0.0134555 44 3771 32 6.99608e+06 250167 787024. 2723.27 60.28 0.287541 0.26721 27778 195446 -1 2606 21 2413 3608 274729 56780 4.7747 4.7747 -174.007 -4.7747 0 0 997811. 3452.63 1.10 0.17 0.47 -1 -1 1.10 0.0148152 0.0132712 105 65 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 19.70 vpr 63.92 MiB -1 -1 0.39 20520 1 0.25 -1 -1 33748 -1 -1 13 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 25.3 MiB 2.80 587 10476 4438 5741 297 63.9 MiB 0.15 0.00 3.45403 -92.0406 -3.45403 3.45403 2.76 0.000157384 0.000126855 0.0100948 0.00818672 38 2041 40 6.99608e+06 191304 678818. 2348.85 7.26 0.244683 0.235787 26626 170182 -1 1431 22 1146 1808 146741 32202 2.82547 2.82547 -98.1947 -2.82547 0 0 902133. 3121.57 1.15 0.02 0.37 -1 -1 1.15 0.0045327 0.00398858 54 4 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 73.15 vpr 64.94 MiB -1 -1 0.32 20976 1 0.02 -1 -1 33848 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66500 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 26.2 MiB 8.94 1043 15090 5384 7460 2246 64.9 MiB 0.25 0.00 4.74833 -158.465 -4.74833 4.74833 2.47 0.000174847 0.000138967 0.01819 0.0148622 50 3075 46 6.99608e+06 294314 902133. 3121.57 53.87 0.246558 0.224239 28642 213929 -1 2292 22 2270 2774 267368 59687 5.0614 5.0614 -169.611 -5.0614 0 0 1.08113e+06 3740.92 1.49 0.12 0.42 -1 -1 1.49 0.0153767 0.0137454 116 90 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 26.32 vpr 64.62 MiB -1 -1 0.34 21280 1 0.11 -1 -1 33748 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 26.1 MiB 2.87 1243 11948 3932 6174 1842 64.6 MiB 0.15 0.00 4.39022 -163.291 -4.39022 4.39022 2.87 0.000193376 0.000158692 0.0774409 0.0748942 38 3401 24 6.99608e+06 235451 678818. 2348.85 12.56 0.144965 0.134071 26626 170182 -1 2877 22 2782 3539 348319 66606 4.48149 4.48149 -170.274 -4.48149 0 0 902133. 3121.57 0.99 0.18 0.30 -1 -1 0.99 0.0308491 0.029541 110 96 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 23.81 vpr 64.66 MiB -1 -1 0.36 21584 1 0.16 -1 -1 33676 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 25.9 MiB 4.69 943 11571 4822 6284 465 64.7 MiB 0.12 0.00 3.68917 -120.78 -3.68917 3.68917 2.29 0.000184103 0.000148264 0.0162178 0.0116573 44 3145 46 6.99608e+06 220735 787024. 2723.27 8.01 0.266417 0.252734 27778 195446 -1 2092 21 1590 2096 144585 34265 3.68832 3.68832 -128.704 -3.68832 0 0 997811. 3452.63 1.40 0.05 0.54 -1 -1 1.40 0.247799 0.246435 94 60 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 23.53 vpr 64.54 MiB -1 -1 0.42 21736 1 0.02 -1 -1 33852 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66088 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 25.9 MiB 3.33 984 11571 4450 5727 1394 64.5 MiB 0.27 0.00 5.93064 -168.994 -5.93064 5.93064 3.14 0.000191142 0.000154286 0.0132327 0.0108005 46 3271 27 6.99608e+06 220735 828058. 2865.25 8.81 0.0680896 0.057384 28066 200906 -1 2256 23 2165 3247 206923 47402 4.7732 4.7732 -160.204 -4.7732 0 0 1.01997e+06 3529.29 1.04 0.28 0.54 -1 -1 1.04 0.146667 0.144891 98 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 17.29 vpr 63.91 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33572 -1 -1 12 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65448 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 25.2 MiB 2.27 449 10769 3021 6028 1720 63.9 MiB 0.14 0.00 2.78575 -94.7661 -2.78575 2.78575 2.54 0.000111254 8.5933e-05 0.00935979 0.00732815 44 1210 45 6.99608e+06 176588 787024. 2723.27 4.92 0.204339 0.195767 27778 195446 -1 907 17 633 808 61006 14855 2.31212 2.31212 -85.0792 -2.31212 0 0 997811. 3452.63 1.13 0.02 0.37 -1 -1 1.13 0.00710424 0.00626875 53 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 30.56 vpr 64.03 MiB -1 -1 0.56 21432 1 0.02 -1 -1 33852 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 25.5 MiB 11.71 635 8556 3694 4561 301 64.0 MiB 0.02 0.00 3.79502 -117.432 -3.79502 3.79502 2.58 6.5609e-05 5.0115e-05 0.00458027 0.00365901 38 2087 25 6.99608e+06 206020 678818. 2348.85 7.95 0.118946 0.111375 26626 170182 -1 1532 21 1244 1862 213351 69419 3.30746 3.30746 -124.469 -3.30746 0 0 902133. 3121.57 1.18 0.06 0.44 -1 -1 1.18 0.0108647 0.00962303 68 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 23.40 vpr 64.33 MiB -1 -1 0.34 21280 1 0.14 -1 -1 33580 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65872 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 25.6 MiB 1.67 745 10756 3701 5259 1796 64.3 MiB 0.08 0.00 3.68644 -120.453 -3.68644 3.68644 2.67 0.000169394 0.000138435 0.0114146 0.0092875 46 2563 46 6.99608e+06 250167 828058. 2865.25 11.27 0.187972 0.177836 28066 200906 -1 1818 21 1379 2147 194317 44810 3.54672 3.54672 -123.118 -3.54672 0 0 1.01997e+06 3529.29 1.29 0.16 0.42 -1 -1 1.29 0.0114725 0.0101091 78 34 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 20.15 vpr 63.90 MiB -1 -1 0.28 21280 1 0.03 -1 -1 33832 -1 -1 16 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 25.2 MiB 3.50 529 9649 3987 4965 697 63.9 MiB 0.10 0.00 3.34779 -78.1264 -3.34779 3.34779 2.14 0.0001172 8.9673e-05 0.0087407 0.00694252 36 1785 31 6.99608e+06 235451 648988. 2245.63 7.49 0.287535 0.27977 26050 158493 -1 1223 22 949 1259 94166 22013 3.08217 3.08217 -83.8681 -3.08217 0 0 828058. 2865.25 0.81 0.09 0.37 -1 -1 0.81 0.0739506 0.0728424 59 29 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 36.23 vpr 64.74 MiB -1 -1 0.73 21280 1 0.23 -1 -1 33824 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66296 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 26.2 MiB 9.68 1054 8656 3245 4768 643 64.7 MiB 0.14 0.00 4.05906 -133.149 -4.05906 4.05906 2.24 0.000183218 0.000146769 0.0107266 0.00878672 40 3768 46 6.99608e+06 250167 706193. 2443.58 15.89 0.214846 0.203654 26914 176310 -1 2997 25 2299 3328 332536 68969 4.03662 4.03662 -145.587 -4.03662 0 0 926341. 3205.33 1.20 0.27 0.26 -1 -1 1.20 0.0156515 0.0138368 103 72 -1 -1 -1 -1 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 32.38 vpr 64.67 MiB -1 -1 0.61 21432 1 0.03 -1 -1 33892 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66220 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 26.1 MiB 8.46 1127 9872 4010 5529 333 64.7 MiB 0.15 0.00 4.48803 -146.589 -4.48803 4.48803 3.02 0.000217775 0.000181679 0.0130191 0.0108329 40 3765 50 6.99608e+06 279598 706193. 2443.58 12.40 0.362758 0.350697 26914 176310 -1 2914 23 2334 3183 337323 76769 4.4325 4.4325 -165.554 -4.4325 0 0 926341. 3205.33 1.18 0.30 0.44 -1 -1 1.18 0.0796756 0.0106643 117 90 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_001.v common 27.09 vpr 64.29 MiB -1 -1 0.66 21888 14 1.29 -1 -1 37020 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 25.6 MiB 5.60 1200 14123 4211 7443 2469 64.3 MiB 0.34 0.00 8.48111 -174.272 -8.48111 8.48111 2.29 0.0002577 0.000200005 0.0231112 0.0189047 38 3430 43 6.79088e+06 255968 678818. 2348.85 9.85 0.549998 0.53525 25966 169698 -1 2700 17 1287 3600 189705 42637 7.35086 7.35086 -163.994 -7.35086 0 0 902133. 3121.57 1.25 0.18 0.25 -1 -1 1.25 0.0278834 0.0263172 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 29.90 vpr 64.09 MiB -1 -1 0.78 21888 14 0.86 -1 -1 36548 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 25.4 MiB 8.24 1041 12506 3388 6981 2137 64.1 MiB 0.40 0.00 7.55088 -152.933 -7.55088 7.55088 2.77 0.000252827 0.000207156 0.163085 0.159623 36 3205 23 6.79088e+06 255968 648988. 2245.63 11.00 0.38998 0.377262 25390 158009 -1 2467 19 1290 3357 197410 46359 6.74539 6.74539 -147.967 -6.74539 0 0 828058. 2865.25 1.16 0.20 0.27 -1 -1 1.16 0.0176808 0.0161191 125 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 28.80 vpr 64.14 MiB -1 -1 0.37 21432 11 0.84 -1 -1 37192 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65676 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 11.23 1174 9623 2464 5833 1326 64.1 MiB 0.30 0.00 6.66938 -147.636 -6.66938 6.66938 2.59 0.000245064 0.000200758 0.121011 0.118329 40 2907 18 6.79088e+06 255968 706193. 2443.58 6.95 0.464845 0.45379 26254 175826 -1 2700 18 1168 3505 212013 47079 6.10754 6.10754 -145.397 -6.10754 0 0 926341. 3205.33 0.84 0.14 0.59 -1 -1 0.84 0.101021 0.0994821 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 52.71 vpr 64.16 MiB -1 -1 0.60 21280 12 1.07 -1 -1 37052 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 4.27 1140 13849 4119 7829 1901 64.2 MiB 0.38 0.00 7.24573 -145.062 -7.24573 7.24573 2.56 0.00010996 8.7726e-05 0.287474 0.284278 40 2712 25 6.79088e+06 323328 706193. 2443.58 36.90 0.43777 0.417334 26254 175826 -1 2622 18 1304 3757 216194 48068 6.49468 6.49468 -141.371 -6.49468 0 0 926341. 3205.33 1.53 0.12 0.28 -1 -1 1.53 0.0180021 0.0163358 136 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 28.73 vpr 64.48 MiB -1 -1 0.67 21736 13 1.24 -1 -1 36736 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 25.9 MiB 6.21 1308 9536 2519 6199 818 64.5 MiB 0.14 0.00 8.29941 -174.684 -8.29941 8.29941 2.58 0.000248343 0.000203207 0.0144201 0.0119745 38 3855 22 6.79088e+06 296384 678818. 2348.85 9.98 0.291704 0.279499 25966 169698 -1 2990 20 1412 3638 188193 43079 7.04627 7.04627 -163.166 -7.04627 0 0 902133. 3121.57 1.25 0.26 0.51 -1 -1 1.25 0.0179012 0.016226 152 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 48.69 vpr 64.36 MiB -1 -1 0.69 21888 13 1.03 -1 -1 36544 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 25.6 MiB 5.37 1207 10163 2849 5374 1940 64.4 MiB 0.12 0.00 7.60457 -158.151 -7.60457 7.60457 2.35 0.000463158 0.00031649 0.0122512 0.0100914 34 4275 44 6.79088e+06 255968 618332. 2139.56 32.10 0.450958 0.312508 25102 150614 -1 3371 22 1761 5443 391172 82915 6.58427 6.58427 -157.091 -6.58427 0 0 787024. 2723.27 1.10 0.16 0.35 -1 -1 1.10 0.0176595 0.0158979 137 198 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 18.45 vpr 63.61 MiB -1 -1 0.69 21128 12 0.90 -1 -1 36088 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 859 8680 2413 5503 764 63.6 MiB 0.04 0.00 6.99932 -125.75 -6.99932 6.99932 2.63 0.000176461 0.000141885 0.0116218 0.00963192 30 2390 31 6.79088e+06 282912 556674. 1926.21 2.90 0.0470823 0.0400823 24526 138013 -1 1954 15 1002 2230 109541 26910 5.65673 5.65673 -117.344 -5.65673 0 0 706193. 2443.58 1.00 0.07 0.25 -1 -1 1.00 0.0124538 0.0114124 106 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 33.44 vpr 63.84 MiB -1 -1 0.54 21280 12 0.71 -1 -1 36660 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 25.3 MiB 11.21 1041 12120 4682 6151 1287 63.8 MiB 0.28 0.00 6.42294 -136.515 -6.42294 6.42294 2.62 0.000176016 0.000141464 0.016542 0.0136174 38 2936 50 6.79088e+06 229024 678818. 2348.85 9.55 0.186959 0.174324 25966 169698 -1 2387 89 1297 3558 1346629 987091 5.90384 5.90384 -131.624 -5.90384 0 0 902133. 3121.57 1.03 1.60 0.46 -1 -1 1.03 0.0755414 0.069839 106 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 28.36 vpr 63.72 MiB -1 -1 0.79 21432 12 0.53 -1 -1 36284 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 25.3 MiB 11.19 1112 8543 2303 4599 1641 63.7 MiB 0.25 0.00 6.92467 -146.156 -6.92467 6.92467 2.61 0.000180693 0.000145517 0.186034 0.184172 38 2832 40 6.79088e+06 269440 678818. 2348.85 6.13 0.241066 0.231407 25966 169698 -1 2434 18 1148 2890 158628 36102 6.12648 6.12648 -142.526 -6.12648 0 0 902133. 3121.57 0.74 0.14 0.61 -1 -1 0.74 0.125593 0.124962 113 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 25.68 vpr 63.95 MiB -1 -1 0.58 21280 13 0.57 -1 -1 36432 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 25.3 MiB 8.63 1044 5825 1272 4307 246 64.0 MiB 0.16 0.00 7.71708 -165.102 -7.71708 7.71708 2.98 0.000199702 0.000160614 0.111186 0.109443 38 2762 24 6.79088e+06 202080 678818. 2348.85 5.29 0.272509 0.262761 25966 169698 -1 2322 17 1121 2684 145404 33670 6.70957 6.70957 -157.411 -6.70957 0 0 902133. 3121.57 0.99 0.14 0.48 -1 -1 0.99 0.114655 0.114049 106 156 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 30.43 vpr 63.74 MiB -1 -1 0.66 21128 12 0.57 -1 -1 36400 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 5.85 926 7008 1689 4680 639 63.7 MiB 0.34 0.00 7.21324 -147.642 -7.21324 7.21324 2.59 0.000175075 0.000140532 0.149015 0.147389 30 2578 44 6.79088e+06 229024 556674. 1926.21 13.13 0.290088 0.279388 24526 138013 -1 2027 17 881 2080 117822 27063 6.27979 6.27979 -141.995 -6.27979 0 0 706193. 2443.58 1.08 0.09 0.24 -1 -1 1.08 0.0124707 0.0113495 96 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 40.96 vpr 63.83 MiB -1 -1 0.75 21584 12 0.61 -1 -1 36512 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 7.99 1082 9181 2345 5797 1039 63.8 MiB 0.16 0.00 6.01027 -147.531 -6.01027 6.01027 2.46 0.000216153 0.000179143 0.0765223 0.0743914 36 3449 49 6.79088e+06 229024 648988. 2245.63 21.77 0.321001 0.309567 25390 158009 -1 2497 26 1120 2952 302335 118937 5.35651 5.35651 -141.317 -5.35651 0 0 828058. 2865.25 1.04 0.20 0.29 -1 -1 1.04 0.0180115 0.0161886 101 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 33.88 vpr 64.03 MiB -1 -1 0.75 21736 13 0.92 -1 -1 36496 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 25.4 MiB 7.55 1306 7038 1688 4711 639 64.0 MiB 0.30 0.00 8.03011 -168.791 -8.03011 8.03011 2.04 0.000283555 0.000240447 0.0919729 0.0896139 36 3754 30 6.79088e+06 269440 648988. 2245.63 15.66 0.27022 0.257534 25390 158009 -1 2990 17 1300 3383 208053 46550 6.81035 6.81035 -158.161 -6.81035 0 0 828058. 2865.25 0.94 0.23 0.25 -1 -1 0.94 0.111689 0.110134 134 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 25.50 vpr 64.44 MiB -1 -1 0.85 21736 14 0.89 -1 -1 36376 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 25.7 MiB 7.26 1416 7079 1642 5037 400 64.4 MiB 0.09 0.00 8.75222 -185.44 -8.75222 8.75222 2.10 0.000249265 0.000205395 0.0136223 0.0115001 30 3987 30 6.79088e+06 296384 556674. 1926.21 7.80 0.067932 0.0589295 24526 138013 -1 3086 21 1537 3895 209296 47411 7.92696 7.92696 -180.675 -7.92696 0 0 706193. 2443.58 0.73 0.18 0.29 -1 -1 0.73 0.235672 0.233772 151 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 29.66 vpr 63.58 MiB -1 -1 0.62 21128 11 0.72 -1 -1 36200 -1 -1 21 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 9.49 1026 7024 1624 4287 1113 63.6 MiB 0.04 0.00 6.6829 -137.714 -6.6829 6.6829 2.87 0.000208881 0.000172227 0.0103001 0.00857439 36 2816 22 6.79088e+06 282912 648988. 2245.63 9.59 0.392383 0.383297 25390 158009 -1 2455 18 1157 2781 188507 41454 5.77854 5.77854 -135.281 -5.77854 0 0 828058. 2865.25 0.86 0.11 0.33 -1 -1 0.86 0.0141885 0.0129072 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 29.93 vpr 64.47 MiB -1 -1 0.55 21736 12 1.12 -1 -1 36380 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1310 12763 3534 7319 1910 64.5 MiB 0.19 0.00 7.16817 -158.635 -7.16817 7.16817 2.48 0.000248253 0.000203162 0.0202128 0.0168169 38 3452 26 6.79088e+06 323328 678818. 2348.85 9.39 0.0876208 0.0743489 25966 169698 -1 2821 18 1476 4588 235361 53321 6.16568 6.16568 -149.194 -6.16568 0 0 902133. 3121.57 1.15 0.18 0.31 -1 -1 1.15 0.108212 0.106601 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 36.85 vpr 64.06 MiB -1 -1 0.96 21888 14 1.00 -1 -1 36628 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65596 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 25.4 MiB 9.13 1313 8723 2298 6119 306 64.1 MiB 0.34 0.00 8.13104 -170.503 -8.13104 8.13104 2.54 0.000239879 0.000191343 0.303268 0.172469 38 3929 22 6.79088e+06 255968 678818. 2348.85 15.37 0.408614 0.26862 25966 169698 -1 2875 25 1389 4010 323964 110156 6.84955 6.84955 -159.968 -6.84955 0 0 902133. 3121.57 0.99 0.19 0.28 -1 -1 0.99 0.0183482 0.0166276 126 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 42.53 vpr 63.56 MiB -1 -1 0.73 21432 12 0.84 -1 -1 36316 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65088 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 25.1 MiB 7.43 1050 9374 2716 5861 797 63.6 MiB 0.17 0.00 7.14943 -160.299 -7.14943 7.14943 2.68 8.7601e-05 7.0653e-05 0.141649 0.14046 30 2886 39 6.79088e+06 202080 556674. 1926.21 22.01 0.342821 0.331319 24526 138013 -1 2328 16 951 2435 136571 30880 5.84017 5.84017 -150.015 -5.84017 0 0 706193. 2443.58 1.22 0.23 0.29 -1 -1 1.22 0.206577 0.20532 105 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 28.73 vpr 63.07 MiB -1 -1 0.68 21128 10 0.33 -1 -1 36204 -1 -1 13 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64588 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 24.5 MiB 8.94 831 7975 2137 5194 644 63.1 MiB 0.04 0.00 4.79706 -119.036 -4.79706 4.79706 2.90 0.000158365 0.000130408 0.00938029 0.00773156 36 2002 31 6.79088e+06 175136 648988. 2245.63 6.55 0.144434 0.0440491 25390 158009 -1 1694 15 636 1455 98495 21485 4.29242 4.29242 -114.111 -4.29242 0 0 828058. 2865.25 1.23 0.05 0.46 -1 -1 1.23 0.00903085 0.00822679 66 87 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 31.36 vpr 63.67 MiB -1 -1 0.85 21280 13 0.88 -1 -1 36648 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 25.1 MiB 9.33 1018 10756 3186 5324 2246 63.7 MiB 0.07 0.00 7.66004 -158.967 -7.66004 7.66004 2.95 0.000185359 0.000149053 0.0143458 0.0118192 36 2846 41 6.79088e+06 242496 648988. 2245.63 9.13 0.619111 0.565154 25390 158009 -1 2328 17 1212 2855 173472 39272 6.54512 6.54512 -149.488 -6.54512 0 0 828058. 2865.25 0.99 0.55 0.33 -1 -1 0.99 0.371943 0.370733 107 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 68.13 vpr 64.41 MiB -1 -1 1.10 21888 13 1.28 -1 -1 36724 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1313 10315 2856 6290 1169 64.4 MiB 0.34 0.00 7.47852 -163.761 -7.47852 7.47852 2.98 0.000233856 0.000191484 0.12339 0.120356 40 3451 36 6.79088e+06 282912 706193. 2443.58 46.86 0.893786 0.869584 26254 175826 -1 3138 22 1929 5656 340480 73070 6.70957 6.70957 -159.709 -6.70957 0 0 926341. 3205.33 0.92 0.39 0.28 -1 -1 0.92 0.0293518 0.0275192 143 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 42.24 vpr 64.37 MiB -1 -1 0.69 21888 13 1.12 -1 -1 36616 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 25.7 MiB 8.83 1396 13105 3760 7294 2051 64.4 MiB 0.17 0.00 7.56118 -168.622 -7.56118 7.56118 2.95 0.000254581 0.000211133 0.118047 0.114624 38 3903 33 6.79088e+06 282912 678818. 2348.85 20.34 0.528201 0.513872 25966 169698 -1 3027 20 1425 4303 247771 52952 6.71732 6.71732 -160.482 -6.71732 0 0 902133. 3121.57 0.89 0.11 0.36 -1 -1 0.89 0.0134657 0.0120026 141 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 36.35 vpr 63.27 MiB -1 -1 0.44 20976 9 0.41 -1 -1 36056 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64792 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 24.7 MiB 4.98 658 7116 2577 3138 1401 63.3 MiB 0.05 0.00 4.92929 -93.1038 -4.92929 4.92929 3.51 0.000131979 0.000103171 0.00747998 0.00613542 28 2023 39 6.79088e+06 242496 531479. 1839.03 19.47 0.0897151 0.048002 23950 126010 -1 1554 17 655 1548 102837 22988 4.44343 4.44343 -97.5098 -4.44343 0 0 648988. 2245.63 1.09 0.03 0.43 -1 -1 1.09 0.00853712 0.00772056 67 76 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 75.81 vpr 64.02 MiB -1 -1 0.76 21432 13 1.18 -1 -1 36656 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 7.05 1303 13911 3831 7698 2382 64.0 MiB 0.31 0.00 8.27554 -169.54 -8.27554 8.27554 3.62 0.000226723 0.000184755 0.237715 0.233848 40 3252 44 6.79088e+06 309856 706193. 2443.58 55.07 1.01425 0.833884 26254 175826 -1 3159 16 1502 3999 258807 56798 7.33623 7.33623 -163.847 -7.33623 0 0 926341. 3205.33 1.69 0.27 0.37 -1 -1 1.69 0.0182123 0.0167801 136 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 28.26 vpr 63.21 MiB -1 -1 0.58 21128 8 0.36 -1 -1 36432 -1 -1 11 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64732 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 24.5 MiB 7.92 650 7185 1746 4717 722 63.2 MiB 0.03 0.00 4.16702 -95.4775 -4.16702 4.16702 3.21 0.000122738 9.6565e-05 0.00762859 0.00629865 34 1993 50 6.79088e+06 148192 618332. 2139.56 7.23 0.347514 0.33918 25102 150614 -1 1708 16 700 1590 100800 23471 3.62662 3.62662 -97.0161 -3.62662 0 0 787024. 2723.27 0.80 0.03 0.26 -1 -1 0.80 0.00757395 0.00671979 60 60 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 41.21 vpr 64.09 MiB -1 -1 0.58 21584 15 0.94 -1 -1 36512 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 25.6 MiB 7.60 1241 4710 909 3488 313 64.1 MiB 0.14 0.00 8.6614 -176.248 -8.6614 8.6614 3.00 0.00021865 0.000178363 0.00865266 0.00734166 36 3521 45 6.79088e+06 242496 648988. 2245.63 19.74 0.54981 0.268011 25390 158009 -1 3111 18 1295 3612 246551 55755 7.27251 7.27251 -166.143 -7.27251 0 0 828058. 2865.25 0.98 0.41 0.41 -1 -1 0.98 0.0752199 0.0738206 121 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 82.55 vpr 64.07 MiB -1 -1 0.84 21432 13 0.86 -1 -1 36368 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65612 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 25.4 MiB 6.74 1132 11118 3595 5694 1829 64.1 MiB 0.24 0.06 7.01886 -151.319 -7.01886 7.01886 2.94 0.000222905 0.000180979 0.128893 0.125998 40 3321 21 6.79088e+06 242496 706193. 2443.58 63.41 0.789848 0.684937 26254 175826 -1 2799 19 1247 3661 256124 53296 6.11534 6.11534 -145.707 -6.11534 0 0 926341. 3205.33 0.94 0.16 0.32 -1 -1 0.94 0.0167862 0.0153443 117 166 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 70.95 vpr 64.09 MiB -1 -1 0.59 21736 13 1.11 -1 -1 36532 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 25.3 MiB 6.46 1327 8092 1764 5104 1224 64.1 MiB 0.21 0.00 7.94214 -171.305 -7.94214 7.94214 3.07 0.000262544 0.00022054 0.140115 0.137851 40 3062 25 6.79088e+06 242496 706193. 2443.58 52.03 0.387347 0.353846 26254 175826 -1 2960 17 1322 3747 225281 49685 6.78802 6.78802 -162.58 -6.78802 0 0 926341. 3205.33 0.94 0.18 0.50 -1 -1 0.94 0.0927011 0.0912764 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 60.12 vpr 63.70 MiB -1 -1 0.43 21280 12 0.54 -1 -1 36344 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65232 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 25.1 MiB 6.93 977 11088 4157 5492 1439 63.7 MiB 0.31 0.00 6.83134 -154.124 -6.83134 6.83134 2.38 0.000187854 0.00015157 0.0137009 0.0112081 40 2480 48 6.79088e+06 215552 706193. 2443.58 42.06 1.19052 1.17025 26254 175826 -1 2158 31 1081 2507 313542 137842 6.24064 6.24064 -148.909 -6.24064 0 0 926341. 3205.33 1.08 0.67 0.38 -1 -1 1.08 0.164527 0.16249 103 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 28.27 vpr 62.98 MiB -1 -1 0.44 21280 11 0.43 -1 -1 36364 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64496 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 24.5 MiB 6.30 831 9368 3815 5302 251 63.0 MiB 0.07 0.00 6.26518 -134.378 -6.26518 6.26518 2.86 0.000166535 0.000132186 0.0343133 0.0321888 38 2553 28 6.79088e+06 242496 678818. 2348.85 10.05 0.415735 0.405169 25966 169698 -1 2005 17 996 2455 152330 35005 5.69238 5.69238 -131.796 -5.69238 0 0 902133. 3121.57 1.22 0.26 0.65 -1 -1 1.22 0.0130094 0.0117056 95 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 23.60 vpr 63.36 MiB -1 -1 0.56 21432 11 0.60 -1 -1 36204 -1 -1 21 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 24.8 MiB 5.49 887 4981 1150 3615 216 63.4 MiB 0.06 0.00 6.73536 -131.115 -6.73536 6.73536 2.97 0.000204231 0.00016617 0.0079608 0.00663645 36 2540 29 6.79088e+06 282912 648988. 2245.63 5.92 0.265104 0.255745 25390 158009 -1 2211 16 1015 2701 161874 36196 5.99343 5.99343 -127.69 -5.99343 0 0 828058. 2865.25 1.15 0.04 0.41 -1 -1 1.15 0.0140277 0.0128433 109 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 56.76 vpr 63.99 MiB -1 -1 0.59 21128 12 0.56 -1 -1 36908 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65524 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 25.3 MiB 10.29 1030 11106 3225 5695 2186 64.0 MiB 0.16 0.00 6.88848 -158.105 -6.88848 6.88848 2.66 0.000240285 0.000197817 0.0186478 0.0154757 38 3159 22 6.79088e+06 229024 678818. 2348.85 36.01 0.421308 0.353645 25966 169698 -1 2420 18 1294 3132 153647 36240 6.11524 6.11524 -153.75 -6.11524 0 0 902133. 3121.57 0.91 0.14 0.20 -1 -1 0.91 0.0167585 0.0153428 119 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 37.11 vpr 63.82 MiB -1 -1 0.53 21584 12 0.48 -1 -1 36372 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65352 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 25.1 MiB 8.16 844 13496 3879 7699 1918 63.8 MiB 0.14 0.00 6.87864 -138.662 -6.87864 6.87864 2.71 9.172e-05 7.2213e-05 0.0111637 0.00912972 36 3059 35 6.79088e+06 229024 648988. 2245.63 17.10 0.139922 0.128601 25390 158009 -1 2249 19 1428 3693 212494 50213 5.99343 5.99343 -139 -5.99343 0 0 828058. 2865.25 1.51 0.09 0.30 -1 -1 1.51 0.0144222 0.0130471 101 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 23.40 vpr 63.75 MiB -1 -1 0.51 21280 10 0.73 -1 -1 36276 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 25.1 MiB 5.80 995 8046 2054 5506 486 63.8 MiB 0.15 0.00 6.16888 -134.071 -6.16888 6.16888 2.40 0.000187908 0.000151745 0.0119561 0.00983711 34 2664 29 6.79088e+06 229024 618332. 2139.56 6.31 0.104958 0.0951864 25102 150614 -1 2271 17 963 2723 170534 37426 5.40253 5.40253 -130.879 -5.40253 0 0 787024. 2723.27 1.31 0.36 0.31 -1 -1 1.31 0.156213 0.15505 103 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 38.56 vpr 64.27 MiB -1 -1 0.47 22344 13 0.87 -1 -1 36556 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1366 6409 1425 4059 925 64.3 MiB 0.15 0.00 8.09066 -166.557 -8.09066 8.09066 2.51 0.000128236 0.000103469 0.125818 0.124023 36 3958 42 6.79088e+06 282912 648988. 2245.63 19.71 0.483512 0.469282 25390 158009 -1 3019 17 1393 4015 252624 55094 6.8888 6.8888 -156.705 -6.8888 0 0 828058. 2865.25 1.39 0.16 0.30 -1 -1 1.39 0.0210835 0.0193359 149 221 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 115.42 vpr 64.34 MiB -1 -1 0.49 22192 14 1.04 -1 -1 37068 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 25.6 MiB 8.07 1410 14500 4472 7875 2153 64.3 MiB 0.19 0.00 7.75965 -172.67 -7.75965 7.75965 2.80 0.000329961 0.000281474 0.126568 0.121285 38 3969 32 6.79088e+06 242496 678818. 2348.85 95.88 0.85192 0.829006 25966 169698 -1 3264 20 1829 5112 311860 66380 7.02749 7.02749 -168.524 -7.02749 0 0 902133. 3121.57 0.97 0.20 0.39 -1 -1 0.97 0.0194149 0.017585 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 29.13 vpr 63.77 MiB -1 -1 0.89 21432 12 0.49 -1 -1 36260 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 25.3 MiB 7.47 998 11402 3354 6097 1951 63.8 MiB 0.18 0.00 7.09988 -153.854 -7.09988 7.09988 2.47 0.00021504 0.000178155 0.0171087 0.0141498 36 2732 36 6.79088e+06 215552 648988. 2245.63 10.45 0.353144 0.229182 25390 158009 -1 2300 17 985 2624 155977 34793 6.16568 6.16568 -149.033 -6.16568 0 0 828058. 2865.25 1.20 0.07 0.22 -1 -1 1.20 0.0128253 0.0115886 101 150 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 30.55 vpr 64.64 MiB -1 -1 0.73 21888 12 1.29 -1 -1 36236 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66188 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 25.7 MiB 8.68 1359 6231 1346 4416 469 64.6 MiB 0.10 0.00 7.65151 -160.422 -7.65151 7.65151 2.67 0.000283533 0.000237054 0.0122681 0.0105254 40 3408 25 6.79088e+06 323328 706193. 2443.58 9.03 0.361571 0.350717 26254 175826 -1 3342 38 2194 7334 1085083 456031 6.67032 6.67032 -152.362 -6.67032 0 0 926341. 3205.33 1.21 0.78 0.48 -1 -1 1.21 0.031921 0.0284717 146 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 22.94 vpr 64.38 MiB -1 -1 0.64 22192 14 1.49 -1 -1 36540 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65928 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 25.9 MiB 4.26 1193 5665 1093 3974 598 64.4 MiB 0.20 0.00 8.28837 -165.331 -8.28837 8.28837 2.30 0.000261939 0.000218331 0.0111879 0.00947461 36 3316 27 6.79088e+06 296384 648988. 2245.63 6.88 0.349284 0.337661 25390 158009 -1 2822 17 1459 4149 227427 51737 7.42577 7.42577 -162.119 -7.42577 0 0 828058. 2865.25 0.88 0.21 0.45 -1 -1 0.88 0.0393434 0.0379051 142 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 26.79 vpr 64.15 MiB -1 -1 0.76 22344 13 1.25 -1 -1 36680 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 25.6 MiB 6.74 1189 5189 1012 3920 257 64.1 MiB 0.02 0.00 8.65671 -167.943 -8.65671 8.65671 2.38 0.000112498 9.0493e-05 0.00472279 0.00399846 38 3541 40 6.79088e+06 309856 678818. 2348.85 8.67 0.396939 0.319421 25966 169698 -1 2672 16 1397 3633 186100 42706 7.43696 7.43696 -156.943 -7.43696 0 0 902133. 3121.57 1.06 0.12 0.30 -1 -1 1.06 0.016003 0.0147382 136 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 28.50 vpr 64.26 MiB -1 -1 0.79 21432 13 0.87 -1 -1 36364 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65804 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 25.6 MiB 6.40 1217 13077 3680 7087 2310 64.3 MiB 0.22 0.00 7.80928 -160.261 -7.80928 7.80928 2.76 0.000219108 0.000177378 0.134618 0.130877 44 3524 43 6.79088e+06 282912 787024. 2723.27 9.28 0.331196 0.316766 27118 194962 -1 2681 14 1246 3644 211004 45670 6.96798 6.96798 -148.651 -6.96798 0 0 997811. 3452.63 1.28 0.31 0.52 -1 -1 1.28 0.0153053 0.013976 125 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 30.25 vpr 63.64 MiB -1 -1 0.53 21584 12 0.55 -1 -1 36508 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65168 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 25.0 MiB 6.54 916 13324 4298 7153 1873 63.6 MiB 0.10 0.00 6.70425 -141.753 -6.70425 6.70425 2.49 0.000208867 0.000169735 0.0185925 0.0153617 36 3132 45 6.79088e+06 215552 648988. 2245.63 12.19 0.470829 0.283541 25390 158009 -1 2212 18 1117 3049 170416 41332 5.86813 5.86813 -136.621 -5.86813 0 0 828058. 2865.25 1.23 0.23 0.19 -1 -1 1.23 0.0166886 0.015356 111 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 29.06 vpr 64.38 MiB -1 -1 1.10 22496 14 1.35 -1 -1 37388 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 25.7 MiB 4.17 1571 12919 3579 7237 2103 64.4 MiB 0.33 0.00 8.5825 -180.126 -8.5825 8.5825 2.74 0.000258543 0.000210852 0.106574 0.0202929 40 4074 33 6.79088e+06 282912 706193. 2443.58 11.27 0.299676 0.202284 26254 175826 -1 3702 17 1678 4931 347900 79711 7.061 7.061 -169.202 -7.061 0 0 926341. 3205.33 1.15 0.35 0.29 -1 -1 1.15 0.253444 0.251654 159 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 67.64 vpr 63.97 MiB -1 -1 0.40 21128 11 0.78 -1 -1 36444 -1 -1 16 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 25.3 MiB 7.37 1073 6501 1499 4640 362 64.0 MiB 0.06 0.00 6.42637 -139.096 -6.42637 6.42637 2.44 9.5438e-05 7.5766e-05 0.00770841 0.00651454 40 2801 27 6.79088e+06 215552 706193. 2443.58 49.48 0.139593 0.120026 26254 175826 -1 2664 18 1264 3555 227038 50309 5.60634 5.60634 -134.693 -5.60634 0 0 926341. 3205.33 1.13 0.12 0.33 -1 -1 1.13 0.0825741 0.0811963 112 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 25.65 vpr 64.32 MiB -1 -1 0.54 21736 13 0.70 -1 -1 36968 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 25.6 MiB 5.99 1076 5303 1019 4187 97 64.3 MiB 0.14 0.00 8.03811 -165.365 -8.03811 8.03811 2.38 0.000241382 0.000191922 0.0105488 0.00881116 40 2681 18 6.79088e+06 269440 706193. 2443.58 7.08 0.346059 0.273809 26254 175826 -1 2576 16 1174 3750 219191 50384 7.09671 7.09671 -157.684 -7.09671 0 0 926341. 3205.33 0.89 0.17 0.44 -1 -1 0.89 0.161788 0.160401 137 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 27.14 vpr 64.45 MiB -1 -1 0.44 21736 12 1.07 -1 -1 36684 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 25.7 MiB 6.76 1229 8269 1949 5817 503 64.4 MiB 0.22 0.00 7.09992 -154.886 -7.09992 7.09992 2.54 0.000234094 0.000190357 0.0116545 0.00950389 40 3274 49 6.79088e+06 282912 706193. 2443.58 8.20 0.332727 0.32009 26254 175826 -1 3120 19 1469 4941 319382 68823 6.54158 6.54158 -154.955 -6.54158 0 0 926341. 3205.33 1.25 0.32 0.42 -1 -1 1.25 0.0172385 0.0153837 146 209 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 27.39 vpr 64.10 MiB -1 -1 0.37 21584 13 1.14 -1 -1 36504 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65636 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 25.4 MiB 4.76 1166 5945 1195 4546 204 64.1 MiB 0.18 0.00 8.15537 -168.597 -8.15537 8.15537 2.74 0.00022861 0.000180786 0.150262 0.148657 36 3271 24 6.79088e+06 296384 648988. 2245.63 10.11 0.397978 0.386681 25390 158009 -1 2693 17 1250 3318 199331 44831 6.7734 6.7734 -156.55 -6.7734 0 0 828058. 2865.25 1.01 0.41 0.28 -1 -1 1.01 0.0154978 0.0140153 131 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 43.67 vpr 64.01 MiB -1 -1 0.70 22040 13 0.60 -1 -1 36528 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65548 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 25.4 MiB 9.76 1291 6668 1628 4315 725 64.0 MiB 0.21 0.00 7.6093 -161.643 -7.6093 7.6093 2.48 0.00011067 8.5515e-05 0.0102627 0.00869206 36 3491 44 6.79088e+06 242496 648988. 2245.63 22.96 0.317646 0.275622 25390 158009 -1 2937 17 1309 3463 214530 46829 6.50936 6.50936 -155.108 -6.50936 0 0 828058. 2865.25 1.24 0.03 0.21 -1 -1 1.24 0.0102207 0.00954788 124 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 47.11 vpr 64.17 MiB -1 -1 0.73 21888 12 1.03 -1 -1 36840 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 7.23 1264 13077 4245 6963 1869 64.2 MiB 0.13 0.00 7.48863 -164.662 -7.48863 7.48863 2.36 0.000259409 0.000216488 0.0390412 0.0354763 36 4312 32 6.79088e+06 269440 648988. 2245.63 28.31 0.285615 0.269325 25390 158009 -1 3063 27 1475 4687 437807 142940 6.33367 6.33367 -153.642 -6.33367 0 0 828058. 2865.25 0.94 0.28 0.28 -1 -1 0.94 0.0227667 0.0206025 140 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 28.73 vpr 64.31 MiB -1 -1 0.59 21888 13 0.92 -1 -1 37080 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 4.87 1308 7404 1742 4872 790 64.3 MiB 0.26 0.00 7.79737 -172.677 -7.79737 7.79737 2.20 0.000254334 0.000207742 0.157532 0.155345 38 3611 33 6.79088e+06 269440 678818. 2348.85 12.42 0.39145 0.378126 25966 169698 -1 2932 15 1402 4063 208507 47168 6.72081 6.72081 -161.844 -6.72081 0 0 902133. 3121.57 1.05 0.14 0.34 -1 -1 1.05 0.00927677 0.00849161 145 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 30.64 vpr 64.04 MiB -1 -1 0.66 21584 14 0.93 -1 -1 36668 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 25.4 MiB 5.25 1134 12528 3689 7280 1559 64.0 MiB 0.13 0.00 8.14516 -169.239 -8.14516 8.14516 2.43 0.000221408 0.000179969 0.0177354 0.0146792 36 3215 23 6.79088e+06 269440 648988. 2245.63 13.87 0.200928 0.189127 25390 158009 -1 2583 21 1334 3813 212707 47879 7.17517 7.17517 -157.885 -7.17517 0 0 828058. 2865.25 1.10 0.32 0.37 -1 -1 1.10 0.216246 0.0172196 125 168 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 39.38 vpr 64.37 MiB -1 -1 0.46 21736 13 1.04 -1 -1 36948 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 25.6 MiB 7.58 1230 12547 3334 7250 1963 64.4 MiB 0.43 0.00 8.09269 -160.616 -8.09269 8.09269 2.92 0.000267871 0.00020868 0.0210651 0.0172658 36 3920 34 6.79088e+06 282912 648988. 2245.63 19.44 0.269556 0.255153 25390 158009 -1 3169 26 2031 6074 492410 149015 6.93565 6.93565 -154.112 -6.93565 0 0 828058. 2865.25 0.98 0.23 0.56 -1 -1 0.98 0.0705995 0.0687446 136 197 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 25.55 vpr 64.19 MiB -1 -1 0.90 22192 13 0.77 -1 -1 36480 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 25.6 MiB 7.43 1194 6855 1560 4961 334 64.2 MiB 0.13 0.00 7.84076 -167.565 -7.84076 7.84076 2.28 0.000241605 0.000188472 0.0916661 0.0896377 48 2954 22 6.79088e+06 282912 865456. 2994.66 6.64 0.163436 0.151934 27694 206865 -1 2632 18 1331 3856 240858 53932 6.65923 6.65923 -154.098 -6.65923 0 0 1.05005e+06 3633.38 1.15 0.14 0.54 -1 -1 1.15 0.0198617 0.0181981 144 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 25.10 vpr 64.47 MiB -1 -1 0.61 21736 12 1.03 -1 -1 36688 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 25.7 MiB 5.36 1311 5851 1203 3709 939 64.5 MiB 0.02 0.00 7.71669 -163.184 -7.71669 7.71669 2.74 0.000112474 9.1615e-05 0.0079034 0.00708409 40 3316 22 6.79088e+06 282912 706193. 2443.58 8.09 0.257026 0.246894 26254 175826 -1 3313 20 1647 4462 285411 62849 6.63117 6.63117 -158.189 -6.63117 0 0 926341. 3205.33 0.87 0.31 0.44 -1 -1 0.87 0.0201752 0.0183414 147 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 22.00 vpr 63.66 MiB -1 -1 0.35 21432 11 0.70 -1 -1 36356 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65188 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 25.0 MiB 4.58 1005 10702 3112 6246 1344 63.7 MiB 0.46 0.00 6.21064 -136.494 -6.21064 6.21064 2.48 0.000192871 0.000159306 0.013544 0.0111321 40 2250 19 6.79088e+06 188608 706193. 2443.58 6.11 0.122257 0.112621 26254 175826 -1 2127 18 845 2152 139952 31180 5.40258 5.40258 -131.108 -5.40258 0 0 926341. 3205.33 1.15 0.08 0.21 -1 -1 1.15 0.013256 0.0120132 91 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 30.09 vpr 63.81 MiB -1 -1 0.44 21432 13 0.77 -1 -1 36304 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 25.3 MiB 6.51 1176 10515 2869 6205 1441 63.8 MiB 0.19 0.00 7.53642 -162.326 -7.53642 7.53642 2.57 0.000107736 8.6084e-05 0.013269 0.0108508 36 3408 30 6.79088e+06 269440 648988. 2245.63 12.89 0.253267 0.241571 25390 158009 -1 2709 14 1186 3024 183009 41359 6.45902 6.45902 -157.581 -6.45902 0 0 828058. 2865.25 1.10 0.15 0.33 -1 -1 1.10 0.10883 0.107951 118 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 33.06 vpr 64.73 MiB -1 -1 0.64 22344 14 1.53 -1 -1 36652 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66288 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 26.2 MiB 4.33 1606 14908 4178 8064 2666 64.7 MiB 0.27 0.00 9.30628 -185.251 -9.30628 9.30628 2.23 0.000134787 0.000110081 0.124343 0.121712 40 4467 40 6.79088e+06 323328 706193. 2443.58 15.91 0.417336 0.322385 26254 175826 -1 4044 41 3170 10484 1659413 686250 8.71802 8.71802 -185.563 -8.71802 0 0 926341. 3205.33 0.97 1.22 0.30 -1 -1 0.97 0.0306023 0.0274072 171 244 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 25.30 vpr 64.04 MiB -1 -1 0.76 21888 13 1.14 -1 -1 36516 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 25.3 MiB 5.51 1373 5107 1065 3575 467 64.0 MiB 0.04 0.00 7.99662 -176.141 -7.99662 7.99662 2.49 0.000218079 0.000176617 0.00941603 0.00790282 40 3267 21 6.79088e+06 282912 706193. 2443.58 7.75 0.131858 0.122108 26254 175826 -1 2988 16 1279 3446 222044 48292 7.28922 7.28922 -171.863 -7.28922 0 0 926341. 3205.33 0.98 0.14 0.39 -1 -1 0.98 0.124756 0.123954 134 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 28.03 vpr 63.77 MiB -1 -1 0.46 21280 11 0.50 -1 -1 36860 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 25.1 MiB 2.54 913 8698 3216 4702 780 63.8 MiB 0.18 0.00 6.69153 -142.001 -6.69153 6.69153 2.51 0.000209485 0.000173569 0.0126132 0.0103406 34 2978 37 6.79088e+06 229024 618332. 2139.56 15.11 0.169104 0.146718 25102 150614 -1 2191 25 1068 2905 278697 110360 5.86813 5.86813 -137.036 -5.86813 0 0 787024. 2723.27 1.18 0.27 0.34 -1 -1 1.18 0.0210295 0.0158263 101 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 31.55 vpr 64.84 MiB -1 -1 0.58 22344 15 1.74 -1 -1 36496 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66392 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 26.0 MiB 3.96 1499 13751 3607 8212 1932 64.8 MiB 0.33 0.00 9.45131 -196.491 -9.45131 9.45131 2.71 0.000318105 0.000263405 0.0230354 0.0194144 38 4290 28 6.79088e+06 336800 678818. 2348.85 15.30 0.672402 0.553503 25966 169698 -1 3256 18 1773 4898 239338 54871 8.26721 8.26721 -182.774 -8.26721 0 0 902133. 3121.57 1.05 0.16 0.25 -1 -1 1.05 0.0245497 0.0219405 179 257 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 30.67 vpr 64.41 MiB -1 -1 0.59 21736 13 0.96 -1 -1 36504 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 25.7 MiB 3.51 1327 7221 1806 4907 508 64.4 MiB 0.22 0.00 8.09861 -175.276 -8.09861 8.09861 2.48 0.000331575 0.000277067 0.0137795 0.0117318 36 3663 28 6.79088e+06 269440 648988. 2245.63 15.90 0.233698 0.220814 25390 158009 -1 3024 29 1390 3984 459582 194762 7.09671 7.09671 -171.261 -7.09671 0 0 828058. 2865.25 0.87 0.26 0.24 -1 -1 0.87 0.046677 0.0442748 139 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 22.41 vpr 63.77 MiB -1 -1 0.68 21128 11 0.70 -1 -1 36428 -1 -1 13 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65300 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 25.1 MiB 4.90 1048 9368 2840 4823 1705 63.8 MiB 0.22 0.00 6.8184 -143.52 -6.8184 6.8184 2.64 8.2634e-05 6.5816e-05 0.00629914 0.00517708 30 2846 50 6.79088e+06 175136 556674. 1926.21 6.30 0.263977 0.257217 24526 138013 -1 2348 20 938 2439 208524 64465 6.07177 6.07177 -142.376 -6.07177 0 0 706193. 2443.58 0.77 0.25 0.38 -1 -1 0.77 0.0146992 0.0133064 94 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 23.96 vpr 64.50 MiB -1 -1 0.62 21888 12 1.35 -1 -1 36672 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66052 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 25.9 MiB 4.42 1273 3744 682 2956 106 64.5 MiB 0.11 0.00 7.80662 -164.116 -7.80662 7.80662 2.57 0.000244239 0.000199565 0.00687012 0.00580622 40 3138 27 6.79088e+06 269440 706193. 2443.58 7.56 0.105382 0.0946088 26254 175826 -1 2977 17 1398 4272 273067 60353 6.75996 6.75996 -158.558 -6.75996 0 0 926341. 3205.33 0.95 0.21 0.36 -1 -1 0.95 0.0734521 0.0724445 146 211 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 24.70 vpr 63.98 MiB -1 -1 0.72 21432 12 0.65 -1 -1 36228 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65512 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 25.3 MiB 5.26 1093 11296 2879 6424 1993 64.0 MiB 0.37 0.00 7.38808 -154.548 -7.38808 7.38808 2.24 0.000239935 0.000200695 0.155373 0.013257 38 2925 25 6.79088e+06 242496 678818. 2348.85 6.55 0.21314 0.0629693 25966 169698 -1 2388 18 1120 2927 157781 35630 6.38057 6.38057 -146.795 -6.38057 0 0 902133. 3121.57 1.31 0.20 0.59 -1 -1 1.31 0.0681036 0.0667688 113 149 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 24.48 vpr 63.66 MiB -1 -1 0.91 21432 12 0.69 -1 -1 36368 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 25.1 MiB 3.45 829 8191 1875 6055 261 63.7 MiB 0.19 0.00 7.82373 -148.45 -7.82373 7.82373 2.83 0.000203113 0.000164562 0.013368 0.0110101 36 2341 28 6.79088e+06 229024 648988. 2245.63 9.38 0.295668 0.284638 25390 158009 -1 2017 24 946 2503 136921 35400 6.75996 6.75996 -143.141 -6.75996 0 0 828058. 2865.25 1.00 0.05 0.49 -1 -1 1.00 0.0168202 0.0151748 106 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 34.01 vpr 64.32 MiB -1 -1 0.74 21736 12 0.92 -1 -1 36356 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 25.6 MiB 7.87 1310 7383 1809 4748 826 64.3 MiB 0.05 0.00 7.48697 -145.09 -7.48697 7.48697 2.82 0.000292137 0.000185049 0.0217345 0.020355 38 3295 41 6.79088e+06 350272 678818. 2348.85 14.20 0.260329 0.247771 25966 169698 -1 2675 24 1252 3878 344961 136790 6.54158 6.54158 -137.332 -6.54158 0 0 902133. 3121.57 0.90 0.36 0.42 -1 -1 0.90 0.0196077 0.0181298 140 190 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 27.97 vpr 64.62 MiB -1 -1 0.84 21888 13 1.37 -1 -1 36532 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66176 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 25.9 MiB 3.60 1469 6615 1348 4384 883 64.6 MiB 0.31 0.00 7.94883 -165.303 -7.94883 7.94883 3.06 0.000267001 0.000206715 0.186171 0.184091 36 4119 27 6.79088e+06 309856 648988. 2245.63 11.27 0.512899 0.500123 25390 158009 -1 3376 21 2082 5079 318029 69650 7.04976 7.04976 -167.899 -7.04976 0 0 828058. 2865.25 0.78 0.16 0.27 -1 -1 0.78 0.0184049 0.0170139 160 236 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 35.75 vpr 64.09 MiB -1 -1 0.81 21432 12 0.61 -1 -1 36512 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65628 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 25.6 MiB 4.48 1369 7770 1945 5143 682 64.1 MiB 0.14 0.00 7.82957 -168.971 -7.82957 7.82957 2.42 0.000233252 0.000191506 0.101844 0.0997273 36 4168 40 6.79088e+06 269440 648988. 2245.63 19.11 0.7468 0.731399 25390 158009 -1 3205 21 1508 4153 311924 77482 6.91327 6.91327 -165.194 -6.91327 0 0 828058. 2865.25 0.75 0.18 0.54 -1 -1 0.75 0.106456 0.104503 140 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 29.15 vpr 63.68 MiB -1 -1 0.92 21432 12 0.90 -1 -1 36216 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 25.0 MiB 7.06 827 5825 1179 4572 74 63.7 MiB 0.06 0.00 7.39828 -145.899 -7.39828 7.39828 2.64 0.000198677 0.000162889 0.033063 0.0316761 36 2583 41 6.79088e+06 202080 648988. 2245.63 9.66 0.110919 0.101458 25390 158009 -1 1941 15 809 2234 143044 32097 6.37287 6.37287 -138.856 -6.37287 0 0 828058. 2865.25 1.03 0.11 0.19 -1 -1 1.03 0.0118702 0.010874 93 120 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 27.73 vpr 63.86 MiB -1 -1 0.66 21736 12 0.84 -1 -1 36036 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 4.99 989 11830 4101 6106 1623 63.9 MiB 0.29 0.00 7.24523 -149.288 -7.24523 7.24523 2.39 0.000193892 0.000157104 0.241623 0.238772 36 3110 24 6.79088e+06 255968 648988. 2245.63 10.55 0.502515 0.49089 25390 158009 -1 2468 16 1076 3020 188463 42983 6.09963 6.09963 -144.436 -6.09963 0 0 828058. 2865.25 1.15 0.13 0.33 -1 -1 1.15 0.0148927 0.0135748 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 52.42 vpr 64.20 MiB -1 -1 0.86 21736 11 1.01 -1 -1 36516 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 25.4 MiB 5.06 1062 11296 3634 5901 1761 64.2 MiB 0.21 0.00 6.89956 -139.068 -6.89956 6.89956 2.16 0.000106642 8.3768e-05 0.0112168 0.00934218 38 2948 43 6.79088e+06 269440 678818. 2348.85 35.25 0.509993 0.487258 25966 169698 -1 2389 17 1070 3307 169957 38680 5.78197 5.78197 -130.146 -5.78197 0 0 902133. 3121.57 0.95 0.08 0.34 -1 -1 0.95 0.0211488 0.0195772 125 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 31.38 vpr 64.03 MiB -1 -1 0.44 21584 11 0.82 -1 -1 36348 -1 -1 19 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65564 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 25.6 MiB 4.92 1034 10388 3390 5543 1455 64.0 MiB 0.27 0.00 6.39394 -127.87 -6.39394 6.39394 2.61 9.595e-05 7.5721e-05 0.0156995 0.0129696 36 2873 38 6.79088e+06 255968 648988. 2245.63 14.75 0.330659 0.318051 25390 158009 -1 2414 20 1286 4124 267250 57798 5.56708 5.56708 -124.707 -5.56708 0 0 828058. 2865.25 1.08 0.25 0.35 -1 -1 1.08 0.193951 0.192324 116 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 68.38 vpr 63.90 MiB -1 -1 0.70 21432 13 0.69 -1 -1 36332 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65432 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 25.3 MiB 6.69 1069 10744 3320 5344 2080 63.9 MiB 0.06 0.00 7.007 -145.297 -7.007 7.007 2.51 0.000198778 0.000160338 0.0147657 0.0121089 30 3512 38 6.79088e+06 242496 556674. 1926.21 50.60 0.364066 0.329897 24526 138013 -1 2473 16 1122 3044 172020 39077 6.3268 6.3268 -142.889 -6.3268 0 0 706193. 2443.58 1.02 0.08 0.33 -1 -1 1.02 0.0131872 0.0120748 108 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 34.41 vpr 64.18 MiB -1 -1 0.72 21736 12 1.11 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.6 MiB 7.01 1181 11474 3011 6873 1590 64.2 MiB 0.35 0.00 7.19453 -164.62 -7.19453 7.19453 2.59 0.000250409 0.000206342 0.0184873 0.0155476 36 3249 47 6.79088e+06 242496 648988. 2245.63 16.22 0.518665 0.504726 25390 158009 -1 2767 31 1313 3455 450128 202660 6.29442 6.29442 -153.441 -6.29442 0 0 828058. 2865.25 0.96 0.23 0.28 -1 -1 0.96 0.0229519 0.0204786 120 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 23.65 vpr 64.21 MiB -1 -1 0.51 21432 13 1.08 -1 -1 36564 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65756 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 25.6 MiB 6.00 1196 12528 3337 7297 1894 64.2 MiB 0.18 0.00 8.59275 -169.25 -8.59275 8.59275 2.79 0.000237044 0.000193352 0.132535 0.129176 30 3445 28 6.79088e+06 282912 556674. 1926.21 5.13 0.59282 0.550171 24526 138013 -1 2737 15 1314 3497 185103 42238 7.51535 7.51535 -164.152 -7.51535 0 0 706193. 2443.58 0.84 0.15 0.30 -1 -1 0.84 0.0156508 0.0143744 137 187 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 22.34 vpr 64.34 MiB -1 -1 0.55 21888 14 1.09 -1 -1 36932 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 25.6 MiB 4.37 1146 5574 1039 4449 86 64.3 MiB 0.02 0.00 8.72598 -178.523 -8.72598 8.72598 2.64 0.00011691 9.3905e-05 0.00539058 0.004559 46 2907 36 6.79088e+06 269440 828058. 2865.25 6.69 0.113 0.102811 27406 200422 -1 2346 18 1166 3599 177913 40777 7.64066 7.64066 -167.177 -7.64066 0 0 1.01997e+06 3529.29 1.05 0.22 0.45 -1 -1 1.05 0.0176089 0.0161782 132 196 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 34.27 vpr 64.09 MiB -1 -1 0.64 22040 14 0.77 -1 -1 36380 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65632 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 25.4 MiB 8.09 1230 8656 2011 5349 1296 64.1 MiB 0.12 0.00 8.05712 -162.43 -8.05712 8.05712 2.43 0.000317229 0.000272174 0.0148106 0.012429 36 3323 48 6.79088e+06 229024 648988. 2245.63 14.49 0.136221 0.122487 25390 158009 -1 2736 21 1388 4227 246785 54143 6.92451 6.92451 -155.298 -6.92451 0 0 828058. 2865.25 0.85 0.17 0.34 -1 -1 0.85 0.0944107 0.092571 122 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 31.33 vpr 64.20 MiB -1 -1 0.74 22192 13 1.29 -1 -1 36544 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 25.6 MiB 6.66 1412 5945 1208 4509 228 64.2 MiB 0.14 0.00 8.26127 -169.83 -8.26127 8.26127 2.73 0.000127078 0.000102927 0.0100232 0.00857266 46 3364 24 6.79088e+06 296384 828058. 2865.25 12.10 0.114665 0.10355 27406 200422 -1 2817 19 1407 3920 199584 45033 7.25008 7.25008 -161.265 -7.25008 0 0 1.01997e+06 3529.29 1.48 0.15 0.42 -1 -1 1.48 0.0198741 0.0181337 144 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 25.00 vpr 63.68 MiB -1 -1 0.41 21432 13 0.48 -1 -1 36260 -1 -1 18 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 25.0 MiB 6.76 994 9024 2062 6050 912 63.7 MiB 0.08 0.00 7.09997 -149.654 -7.09997 7.09997 2.35 0.000181299 0.000146487 0.0127175 0.0105188 38 2558 18 6.79088e+06 242496 678818. 2348.85 6.04 0.150968 0.141226 25966 169698 -1 2142 16 993 2590 129762 29565 6.16917 6.16917 -140.618 -6.16917 0 0 902133. 3121.57 1.19 0.14 0.51 -1 -1 1.19 0.130816 0.130237 104 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 32.85 vpr 64.27 MiB -1 -1 0.94 22192 13 1.75 -1 -1 36540 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 25.7 MiB 5.76 1348 12894 3597 7190 2107 64.3 MiB 0.15 0.00 8.17676 -167.864 -8.17676 8.17676 2.45 0.000120605 9.6308e-05 0.0112707 0.00933704 38 3888 38 6.79088e+06 296384 678818. 2348.85 14.71 0.392014 0.279797 25966 169698 -1 2997 18 1534 4216 220306 49419 7.08126 7.08126 -162.178 -7.08126 0 0 902133. 3121.57 1.19 0.17 0.51 -1 -1 1.19 0.13666 0.135017 145 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 26.30 vpr 64.20 MiB -1 -1 0.62 21736 14 1.21 -1 -1 36684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 25.4 MiB 6.17 1204 12542 3557 7512 1473 64.2 MiB 0.28 0.00 8.33107 -176.562 -8.33107 8.33107 1.99 0.000231903 0.000179628 0.225717 0.222269 44 3220 27 6.79088e+06 242496 787024. 2723.27 8.45 0.363751 0.349328 27118 194962 -1 2662 17 1149 3386 201433 43261 7.43352 7.43352 -168.165 -7.43352 0 0 997811. 3452.63 1.18 0.17 0.58 -1 -1 1.18 0.103352 0.101981 128 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 35.90 vpr 64.16 MiB -1 -1 0.59 21736 13 0.69 -1 -1 36520 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 25.6 MiB 6.14 1125 9516 2594 5042 1880 64.2 MiB 0.17 0.05 7.45922 -159.332 -7.45922 7.45922 2.59 0.0483542 0.0483104 0.131607 0.129133 36 3566 40 6.79088e+06 255968 648988. 2245.63 18.22 0.356329 0.343212 25390 158009 -1 2839 19 1358 3733 236269 51682 6.95324 6.95324 -158.854 -6.95324 0 0 828058. 2865.25 1.03 0.32 0.28 -1 -1 1.03 0.0143134 0.0128503 124 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 33.80 vpr 63.89 MiB -1 -1 0.65 21888 13 0.68 -1 -1 36520 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 25.3 MiB 5.35 1137 12856 4036 7043 1777 63.9 MiB 0.28 0.00 7.52397 -147.14 -7.52397 7.52397 2.53 0.000199929 0.000161569 0.0523737 0.0486881 36 3258 50 6.79088e+06 255968 648988. 2245.63 18.13 0.237289 0.223628 25390 158009 -1 2698 19 1306 3548 219060 48160 6.90978 6.90978 -145.069 -6.90978 0 0 828058. 2865.25 0.76 0.23 0.38 -1 -1 0.76 0.0170688 0.015416 121 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 30.99 vpr 64.41 MiB -1 -1 0.69 21888 14 1.87 -1 -1 36380 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 25.9 MiB 6.24 1451 10687 2741 6315 1631 64.4 MiB 0.13 0.00 8.72215 -179.517 -8.72215 8.72215 2.68 0.00026871 0.000222142 0.0190015 0.0157864 40 4139 45 6.79088e+06 282912 706193. 2443.58 12.16 0.283295 0.267711 26254 175826 -1 3710 19 1704 5017 366822 79085 8.01306 8.01306 -176.138 -8.01306 0 0 926341. 3205.33 1.13 0.20 0.36 -1 -1 1.13 0.0218377 0.019966 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 31.78 vpr 64.07 MiB -1 -1 0.79 22040 11 1.09 -1 -1 36316 -1 -1 23 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65608 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 7.47 1069 9783 2744 5515 1524 64.1 MiB 0.10 0.00 7.52622 -141.496 -7.52622 7.52622 2.53 0.000267645 0.000221515 0.0163732 0.0133055 34 3669 49 6.79088e+06 309856 618332. 2139.56 11.22 0.350322 0.336507 25102 150614 -1 2740 28 1337 3793 356365 131059 6.38057 6.38057 -134.372 -6.38057 0 0 787024. 2723.27 1.23 0.41 0.48 -1 -1 1.23 0.0113785 0.0102966 136 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 62.96 vpr 63.74 MiB -1 -1 0.76 21584 13 0.39 -1 -1 36372 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65268 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 25.3 MiB 12.25 943 8212 2080 5932 200 63.7 MiB 0.18 0.00 7.06068 -160.405 -7.06068 7.06068 2.84 8.3754e-05 6.6995e-05 0.00552488 0.00458763 40 2594 33 6.79088e+06 188608 706193. 2443.58 38.55 0.369759 0.353198 26254 175826 -1 2242 27 1135 2554 257116 93514 5.99004 5.99004 -151.715 -5.99004 0 0 926341. 3205.33 1.00 0.28 0.22 -1 -1 1.00 0.0176698 0.0159026 98 128 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 30.00 vpr 63.86 MiB -1 -1 0.90 21888 14 1.08 -1 -1 36560 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 25.3 MiB 6.44 1207 6731 1642 4519 570 63.9 MiB 0.16 0.00 8.29812 -170.987 -8.29812 8.29812 2.37 0.000228579 0.000187435 0.0463598 0.0443926 36 3162 22 6.79088e+06 229024 648988. 2245.63 11.74 0.161469 0.150586 25390 158009 -1 2729 17 1154 3067 182715 40642 7.42577 7.42577 -164.968 -7.42577 0 0 828058. 2865.25 1.00 0.13 0.44 -1 -1 1.00 0.0173116 0.0158816 122 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 26.95 vpr 64.71 MiB -1 -1 0.62 22344 15 1.01 -1 -1 36248 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66260 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 26.0 MiB 5.51 1316 11223 3211 6360 1652 64.7 MiB 0.15 0.00 9.24101 -186.679 -9.24101 9.24101 2.38 0.000136464 0.000109802 0.010004 0.00827923 46 3545 32 6.79088e+06 309856 828058. 2865.25 8.31 0.102984 0.0852926 27406 200422 -1 2867 18 1576 4182 206928 48477 8.10615 8.10615 -174.61 -8.10615 0 0 1.01997e+06 3529.29 1.22 0.11 0.40 -1 -1 1.22 0.0142682 0.0128737 163 240 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 46.75 vpr 63.72 MiB -1 -1 0.30 21736 11 0.47 -1 -1 36352 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65248 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 25.1 MiB 6.28 817 7008 1491 5366 151 63.7 MiB 0.26 0.00 6.91752 -143.632 -6.91752 6.91752 2.45 0.000198506 0.000149481 0.233414 0.00922393 38 2333 21 6.79088e+06 202080 678818. 2348.85 29.04 0.475864 0.23947 25966 169698 -1 1855 17 922 2444 131934 30357 5.99343 5.99343 -137.822 -5.99343 0 0 902133. 3121.57 1.06 0.09 0.26 -1 -1 1.06 0.0132275 0.012109 97 126 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 33.05 vpr 63.63 MiB -1 -1 0.91 21280 12 0.70 -1 -1 36552 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65160 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 25.1 MiB 5.66 1059 6100 1333 4406 361 63.6 MiB 0.17 0.00 6.68467 -150.19 -6.68467 6.68467 3.03 0.000203636 0.000162379 0.042617 0.0408947 36 3480 34 6.79088e+06 229024 648988. 2245.63 15.41 0.36556 0.35435 25390 158009 -1 2742 21 1417 3797 229983 51414 5.82887 5.82887 -146.097 -5.82887 0 0 828058. 2865.25 1.03 0.31 0.26 -1 -1 1.03 0.0174261 0.0158652 112 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 24.24 vpr 64.44 MiB -1 -1 0.51 21888 12 1.09 -1 -1 36528 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65988 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 25.7 MiB 4.33 1274 6023 1243 4416 364 64.4 MiB 0.16 0.00 7.44946 -160.947 -7.44946 7.44946 2.83 0.000262393 0.000216047 0.0651238 0.0632751 36 3519 22 6.79088e+06 255968 648988. 2245.63 7.78 0.275483 0.263528 25390 158009 -1 2937 19 1489 4320 235582 54894 6.67381 6.67381 -157.967 -6.67381 0 0 828058. 2865.25 1.12 0.20 0.18 -1 -1 1.12 0.17701 0.175841 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 72.75 vpr 64.23 MiB -1 -1 0.57 21736 12 1.29 -1 -1 36360 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 25.6 MiB 7.02 1256 11652 3336 6758 1558 64.2 MiB 0.23 0.00 7.26447 -155.226 -7.26447 7.26447 2.83 0.000252864 0.000180633 0.158774 0.155743 40 3216 19 6.79088e+06 242496 706193. 2443.58 52.33 0.601826 0.508429 26254 175826 -1 3120 16 1362 3927 262860 55541 6.33367 6.33367 -153.277 -6.33367 0 0 926341. 3205.33 1.43 0.09 0.55 -1 -1 1.43 0.0161406 0.0148196 130 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 37.89 vpr 64.59 MiB -1 -1 0.71 22192 14 1.75 -1 -1 36588 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66144 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 25.9 MiB 7.53 1311 5567 1101 4179 287 64.6 MiB 0.04 0.02 9.37625 -182.592 -9.37625 9.37625 2.47 0.000134163 0.000107512 0.00613148 0.00519029 36 4039 26 6.79088e+06 296384 648988. 2245.63 17.04 0.513928 0.43663 25390 158009 -1 3438 21 1758 5180 314485 70041 7.81291 7.81291 -173.382 -7.81291 0 0 828058. 2865.25 1.15 0.18 0.25 -1 -1 1.15 0.0242137 0.0220307 167 233 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 36.68 vpr 63.84 MiB -1 -1 0.60 21432 12 0.92 -1 -1 36468 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 25.3 MiB 5.74 1038 11631 4130 5622 1879 63.8 MiB 0.14 0.00 7.09222 -139.67 -7.09222 7.09222 2.91 0.000218801 0.000178227 0.00985613 0.00803052 36 3325 46 6.79088e+06 255968 648988. 2245.63 18.89 0.406694 0.395249 25390 158009 -1 2718 18 1284 3770 248485 55214 6.36168 6.36168 -136.43 -6.36168 0 0 828058. 2865.25 0.95 0.18 0.20 -1 -1 0.95 0.016007 0.0145486 121 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 21.36 vpr 63.59 MiB -1 -1 0.37 21128 11 0.71 -1 -1 36524 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65116 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 8.70 836 12362 3373 7574 1415 63.6 MiB 0.25 0.00 7.24312 -129.617 -7.24312 7.24312 2.50 0.000183914 0.000148634 0.166608 0.0137765 30 2248 26 6.79088e+06 255968 556674. 1926.21 2.90 0.20089 0.0430698 24526 138013 -1 1895 15 862 2117 104629 25215 6.67032 6.67032 -127.143 -6.67032 0 0 706193. 2443.58 0.59 0.12 0.35 -1 -1 0.59 0.0123789 0.0112994 104 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 33.71 vpr 64.76 MiB -1 -1 0.63 22648 13 1.67 -1 -1 36704 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66312 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 26.2 MiB 5.72 1548 9135 2246 6246 643 64.8 MiB 0.12 0.00 8.07817 -163.002 -8.07817 8.07817 2.72 0.000324898 0.000270015 0.0670237 0.0639352 40 4395 40 6.79088e+06 350272 706193. 2443.58 15.10 0.279144 0.153606 26254 175826 -1 4023 19 2209 6634 428390 91098 6.96017 6.96017 -159.086 -6.96017 0 0 926341. 3205.33 1.07 0.36 0.28 -1 -1 1.07 0.0249782 0.0228678 188 286 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 25.03 vpr 64.05 MiB -1 -1 0.59 21888 14 1.03 -1 -1 36304 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 25.4 MiB 7.07 1216 5665 1120 3933 612 64.1 MiB 0.14 0.00 8.1916 -166.036 -8.1916 8.1916 2.67 0.000226605 0.000185802 0.00584723 0.00496125 38 2974 17 6.79088e+06 296384 678818. 2348.85 6.98 0.147742 0.13804 25966 169698 -1 2613 21 1157 3235 164176 37413 7.1786 7.1786 -156.686 -7.1786 0 0 902133. 3121.57 0.89 0.15 0.32 -1 -1 0.89 0.0184198 0.0168247 130 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 24.59 vpr 63.77 MiB -1 -1 0.43 21432 12 0.57 -1 -1 36308 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 25.1 MiB 6.12 1069 7736 1622 5709 405 63.8 MiB 0.13 0.00 7.30616 -155.25 -7.30616 7.30616 2.38 0.000223248 0.000172778 0.0109389 0.0091079 36 2757 24 6.79088e+06 242496 648988. 2245.63 7.65 0.0694634 0.0595311 25390 158009 -1 2268 14 931 2345 132703 30214 6.27527 6.27527 -149.173 -6.27527 0 0 828058. 2865.25 1.03 0.04 0.20 -1 -1 1.03 0.0132514 0.0121832 109 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 51.60 vpr 63.95 MiB -1 -1 0.57 21584 13 0.90 -1 -1 36364 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65488 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 25.4 MiB 5.81 1256 6846 1513 4068 1265 64.0 MiB 0.09 0.00 8.39101 -170.885 -8.39101 8.39101 2.34 0.000283038 0.000242275 0.0531481 0.0513807 34 3785 45 6.79088e+06 242496 618332. 2139.56 35.07 0.54238 0.52401 25102 150614 -1 3057 17 1293 3503 237559 52009 7.08906 7.08906 -166.878 -7.08906 0 0 787024. 2723.27 1.30 0.14 0.47 -1 -1 1.30 0.0128271 0.011729 128 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 31.87 vpr 64.61 MiB -1 -1 0.70 22192 13 0.97 -1 -1 36568 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 25.9 MiB 5.56 1444 6039 1232 4262 545 64.6 MiB 0.27 0.00 7.26103 -154.941 -7.26103 7.26103 3.14 0.000128786 0.000105109 0.111643 0.109916 40 3873 25 6.79088e+06 323328 706193. 2443.58 13.07 0.522711 0.50947 26254 175826 -1 3690 26 2164 6542 540823 149368 6.45548 6.45548 -154.67 -6.45548 0 0 926341. 3205.33 1.15 0.58 0.34 -1 -1 1.15 0.0864627 0.0839129 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 39.85 vpr 64.26 MiB -1 -1 0.84 21736 11 0.98 -1 -1 36344 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65800 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 25.6 MiB 6.78 1252 8136 2096 4731 1309 64.3 MiB 0.05 0.00 7.13827 -144.758 -7.13827 7.13827 2.83 0.000245886 0.000204375 0.0100692 0.00833935 36 3579 27 6.79088e+06 296384 648988. 2245.63 20.86 0.333703 0.145771 25390 158009 -1 2774 18 1258 3822 237022 52155 6.12992 6.12992 -138.211 -6.12992 0 0 828058. 2865.25 0.99 0.10 0.23 -1 -1 0.99 0.0174968 0.0159903 141 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 84.90 vpr 64.32 MiB -1 -1 0.96 21888 15 1.57 -1 -1 36384 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65860 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 25.7 MiB 5.34 1398 5000 1022 3623 355 64.3 MiB 0.25 0.00 8.64473 -188.25 -8.64473 8.64473 2.52 0.000255711 0.000206434 0.0104988 0.00889174 40 3355 32 6.79088e+06 296384 706193. 2443.58 66.18 0.406963 0.383136 26254 175826 -1 3182 18 1306 4145 285809 60984 7.67991 7.67991 -176.515 -7.67991 0 0 926341. 3205.33 1.28 0.13 0.31 -1 -1 1.28 0.0899599 0.0883922 147 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 29.36 vpr 64.37 MiB -1 -1 0.50 22040 13 1.59 -1 -1 36852 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 25.7 MiB 7.97 1264 9385 2386 5811 1188 64.4 MiB 0.16 0.00 8.01335 -174.221 -8.01335 8.01335 2.10 0.000251256 0.000208167 0.113164 0.110591 38 3415 21 6.79088e+06 282912 678818. 2348.85 7.71 0.337982 0.325943 25966 169698 -1 2763 21 1340 3969 196219 45514 7.08901 7.08901 -167.166 -7.08901 0 0 902133. 3121.57 1.13 0.16 0.49 -1 -1 1.13 0.312205 0.310521 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 25.44 vpr 63.90 MiB -1 -1 0.53 21584 12 0.78 -1 -1 36568 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65436 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 25.4 MiB 6.39 1082 7177 1879 4686 612 63.9 MiB 0.12 0.00 7.46481 -154.166 -7.46481 7.46481 2.48 0.000265814 0.00022923 0.011956 0.010091 38 2803 27 6.79088e+06 242496 678818. 2348.85 7.97 0.276848 0.267483 25966 169698 -1 2280 16 1197 2964 157668 36113 6.25871 6.25871 -141.46 -6.25871 0 0 902133. 3121.57 1.26 0.02 0.39 -1 -1 1.26 0.00697017 0.00630815 111 154 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 40.48 vpr 63.79 MiB -1 -1 0.69 21432 11 0.70 -1 -1 36752 -1 -1 14 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 25.1 MiB 4.85 795 3896 739 3108 49 63.8 MiB 0.11 0.00 6.53043 -137.046 -6.53043 6.53043 2.89 0.00018483 0.000148471 0.088664 0.0875687 38 2455 21 6.79088e+06 188608 678818. 2348.85 24.85 0.488295 0.472963 25966 169698 -1 1914 16 1035 2541 117928 30509 5.86813 5.86813 -135.756 -5.86813 0 0 902133. 3121.57 1.50 0.07 0.36 -1 -1 1.50 0.0457419 0.0445629 98 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 28.15 vpr 64.36 MiB -1 -1 0.80 21736 13 1.27 -1 -1 36680 -1 -1 21 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65904 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 25.7 MiB 3.98 1198 13077 3554 7195 2328 64.4 MiB 0.27 0.00 8.26103 -160.93 -8.26103 8.26103 2.16 0.000270348 0.000226147 0.216508 0.212863 34 3863 44 6.79088e+06 282912 618332. 2139.56 11.91 0.46639 0.418887 25102 150614 -1 2972 18 1580 4441 276457 61802 7.17157 7.17157 -154.867 -7.17157 0 0 787024. 2723.27 1.04 0.15 0.57 -1 -1 1.04 0.0123437 0.0113039 143 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 22.20 vpr 63.58 MiB -1 -1 0.76 21432 10 0.46 -1 -1 36424 -1 -1 17 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65108 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 25.1 MiB 7.21 954 8046 2043 4866 1137 63.6 MiB 0.10 0.00 6.11522 -126.764 -6.11522 6.11522 2.97 0.000210845 0.000158605 0.0119812 0.00979056 30 2468 23 6.79088e+06 229024 556674. 1926.21 4.31 0.191789 0.185121 24526 138013 -1 2106 17 967 2467 126790 28864 5.15193 5.15193 -122.814 -5.15193 0 0 706193. 2443.58 0.68 0.03 0.18 -1 -1 0.68 0.0132977 0.0121969 101 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 34.04 vpr 63.78 MiB -1 -1 0.81 21280 14 0.69 -1 -1 36404 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65308 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 25.1 MiB 10.50 1162 8092 2174 5283 635 63.8 MiB 0.13 0.00 7.73405 -163.867 -7.73405 7.73405 2.31 0.000215391 0.000175772 0.0132003 0.0109805 36 2830 21 6.79088e+06 242496 648988. 2245.63 10.65 0.0705317 0.0597081 25390 158009 -1 2507 18 1054 2739 161347 36131 6.99942 6.99942 -158.459 -6.99942 0 0 828058. 2865.25 1.19 0.17 0.55 -1 -1 1.19 0.137354 0.0138083 110 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 27.37 vpr 64.03 MiB -1 -1 0.58 21888 13 1.03 -1 -1 36536 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 25.4 MiB 9.35 1137 9083 2001 6216 866 64.0 MiB 0.11 0.00 8.08721 -167.06 -8.08721 8.08721 2.75 0.000272858 0.000227797 0.0792009 0.0127277 46 2776 17 6.79088e+06 269440 828058. 2865.25 6.76 0.137092 0.0627626 27406 200422 -1 2419 14 1059 2826 147207 32803 6.97485 6.97485 -157.217 -6.97485 0 0 1.01997e+06 3529.29 1.32 0.19 0.33 -1 -1 1.32 0.162164 0.0134858 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 51.31 vpr 63.60 MiB -1 -1 0.88 21432 12 0.77 -1 -1 36244 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65124 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 25.1 MiB 12.49 1082 7476 1931 4630 915 63.6 MiB 0.38 0.11 6.65573 -144.442 -6.65573 6.65573 2.90 0.000188455 0.00015255 0.200067 0.00936333 36 2682 32 6.79088e+06 229024 648988. 2245.63 25.83 0.406768 0.201892 25390 158009 -1 2393 30 1144 2885 386195 181882 5.65673 5.65673 -137.02 -5.65673 0 0 828058. 2865.25 0.83 0.28 0.29 -1 -1 0.83 0.12046 0.118518 99 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 25.34 vpr 64.32 MiB -1 -1 0.61 21584 12 0.58 -1 -1 37044 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 25.6 MiB 7.32 1119 6134 1379 4379 376 64.3 MiB 0.21 0.00 7.01038 -154.061 -7.01038 7.01038 2.75 0.000112302 8.9372e-05 0.0111242 0.00931707 38 2950 24 6.79088e+06 242496 678818. 2348.85 5.96 0.16096 0.0705324 25966 169698 -1 2464 16 1172 3380 179416 40524 6.07958 6.07958 -148.005 -6.07958 0 0 902133. 3121.57 1.07 0.14 0.34 -1 -1 1.07 0.0176994 0.016164 130 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 27.67 vpr 64.27 MiB -1 -1 0.75 21888 13 0.85 -1 -1 36472 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 25.6 MiB 4.30 1249 12503 3919 6242 2342 64.3 MiB 0.32 0.00 7.84749 -165.919 -7.84749 7.84749 2.33 0.000261365 0.000210017 0.162284 0.0163846 38 3454 36 6.79088e+06 269440 678818. 2348.85 10.41 0.400356 0.244355 25966 169698 -1 2838 16 1332 3829 207412 46302 6.78001 6.78001 -155.304 -6.78001 0 0 902133. 3121.57 1.27 0.27 0.32 -1 -1 1.27 0.110172 0.0149654 143 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 28.79 vpr 63.38 MiB -1 -1 0.51 21280 11 0.77 -1 -1 36240 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64896 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 24.8 MiB 8.13 975 11260 3989 5096 2175 63.4 MiB 0.26 0.00 6.23648 -144.813 -6.23648 6.23648 2.69 0.000179694 0.000144289 0.0150163 0.0124489 38 2971 28 6.79088e+06 215552 678818. 2348.85 8.23 0.613452 0.59947 25966 169698 -1 2312 17 1336 3500 191962 44203 5.4461 5.4461 -139.775 -5.4461 0 0 902133. 3121.57 1.32 0.20 0.31 -1 -1 1.32 0.159588 0.158092 106 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 69.78 vpr 64.03 MiB -1 -1 0.82 21432 13 0.85 -1 -1 36252 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 25.4 MiB 9.17 1138 8360 2130 5255 975 64.0 MiB 0.04 0.00 7.72657 -166.89 -7.72657 7.72657 2.07 0.000222629 0.000183485 0.00710553 0.00589471 38 3105 26 6.79088e+06 202080 678818. 2348.85 48.20 0.559157 0.539576 25966 169698 -1 2590 15 1182 3141 185601 42452 6.83149 6.83149 -159.702 -6.83149 0 0 902133. 3121.57 0.98 0.08 0.25 -1 -1 0.98 0.0127724 0.0115959 113 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 82.43 vpr 64.21 MiB -1 -1 0.51 21736 13 0.78 -1 -1 36796 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 25.6 MiB 4.00 1313 11963 3400 6650 1913 64.2 MiB 0.30 0.00 7.85887 -174.519 -7.85887 7.85887 2.35 0.00031479 0.000205969 0.0200107 0.0165406 30 4568 41 6.79088e+06 255968 556674. 1926.21 66.34 0.871574 0.572404 24526 138013 -1 3314 37 2252 6875 999408 364248 7.16049 7.16049 -172.992 -7.16049 0 0 706193. 2443.58 1.19 0.71 0.19 -1 -1 1.19 0.232466 0.230096 136 191 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 36.68 vpr 63.86 MiB -1 -1 0.58 21584 11 0.65 -1 -1 36244 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65396 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 25.3 MiB 6.41 1115 11432 3871 5660 1901 63.9 MiB 0.19 0.00 6.26054 -131.434 -6.26054 6.26054 2.71 0.000213964 0.000174081 0.0171196 0.0142019 34 3221 43 6.79088e+06 255968 618332. 2139.56 18.36 0.339668 0.318575 25102 150614 -1 2706 20 1337 3963 285622 59780 5.35984 5.35984 -129.56 -5.35984 0 0 787024. 2723.27 1.06 0.35 0.30 -1 -1 1.06 0.0174185 0.0156703 116 158 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 25.67 vpr 64.23 MiB -1 -1 0.70 22192 14 1.04 -1 -1 36904 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 25.6 MiB 6.96 1385 10647 2557 6767 1323 64.2 MiB 0.25 0.00 8.80331 -192.733 -8.80331 8.80331 2.81 0.000276201 0.000229648 0.0891363 0.0857842 30 3986 28 6.79088e+06 309856 556674. 1926.21 6.57 0.245103 0.23526 24526 138013 -1 3287 25 1652 4416 358935 112256 7.64841 7.64841 -182.338 -7.64841 0 0 706193. 2443.58 0.79 0.19 0.41 -1 -1 0.79 0.104946 0.102389 159 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 37.72 vpr 63.71 MiB -1 -1 0.54 21128 12 0.61 -1 -1 36272 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65236 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 25.1 MiB 9.80 1086 12186 3312 7382 1492 63.7 MiB 0.33 0.00 6.63439 -153.849 -6.63439 6.63439 3.18 0.000183914 0.000147091 0.0156249 0.0128517 36 2948 49 6.79088e+06 255968 648988. 2245.63 16.62 0.153242 0.0646456 25390 158009 -1 2400 28 1086 2531 308355 129895 5.82549 5.82549 -143.643 -5.82549 0 0 828058. 2865.25 0.91 0.30 0.42 -1 -1 0.91 0.0542581 0.052464 106 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 68.05 vpr 64.02 MiB -1 -1 0.65 22192 13 1.09 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65556 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 25.4 MiB 5.73 1327 11796 3119 6792 1885 64.0 MiB 0.28 0.00 8.16138 -171.4 -8.16138 8.16138 2.39 0.000130482 9.8505e-05 0.0195796 0.0155773 36 4119 25 6.79088e+06 269440 648988. 2245.63 49.95 0.617249 0.533045 25390 158009 -1 3227 18 1447 4088 298721 67832 7.16403 7.16403 -164.556 -7.16403 0 0 828058. 2865.25 1.06 0.36 0.45 -1 -1 1.06 0.0159327 0.0141426 136 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 43.78 vpr 63.73 MiB -1 -1 0.59 21432 13 0.65 -1 -1 36324 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65264 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 25.1 MiB 4.97 1047 11613 3365 5842 2406 63.7 MiB 0.16 0.00 7.82359 -169.628 -7.82359 7.82359 2.41 0.000227712 0.000190496 0.0538307 0.0511428 34 3044 39 6.79088e+06 269440 618332. 2139.56 27.45 0.668463 0.411437 25102 150614 -1 2691 21 1199 3043 213784 46250 7.08896 7.08896 -169.68 -7.08896 0 0 787024. 2723.27 0.99 0.24 0.25 -1 -1 0.99 0.0156106 0.0141582 107 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 51.44 vpr 63.93 MiB -1 -1 0.65 21888 12 0.73 -1 -1 36804 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 25.4 MiB 6.07 1272 8543 2219 5545 779 63.9 MiB 0.13 0.00 7.47927 -162.601 -7.47927 7.47927 2.32 0.000242842 0.000198714 0.015874 0.0134652 30 3408 29 6.79088e+06 255968 556674. 1926.21 33.94 0.61366 0.599782 24526 138013 -1 2718 21 1487 4408 233239 51727 6.49119 6.49119 -152.452 -6.49119 0 0 706193. 2443.58 0.91 0.15 0.22 -1 -1 0.91 0.0120418 0.0107914 128 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 28.74 vpr 64.81 MiB -1 -1 0.80 22496 15 1.59 -1 -1 36820 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66364 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 26.2 MiB 5.00 1539 10979 3042 6587 1350 64.8 MiB 0.23 0.00 9.52142 -198.607 -9.52142 9.52142 2.32 0.000300575 0.00024672 0.0234605 0.0197836 38 4388 50 6.79088e+06 336800 678818. 2348.85 11.62 0.253926 0.137742 25966 169698 -1 3570 19 1907 5785 301624 67256 8.06351 8.06351 -186.424 -8.06351 0 0 902133. 3121.57 1.08 0.27 0.41 -1 -1 1.08 0.0828552 0.0808869 183 256 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 23.41 vpr 63.17 MiB -1 -1 0.39 21280 10 0.31 -1 -1 36224 -1 -1 11 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64688 30 32 174 206 1 133 73 17 17 289 -1 unnamed_device 24.7 MiB 6.67 627 9953 2899 5238 1816 63.2 MiB 0.10 0.00 4.79366 -113.325 -4.79366 4.79366 2.34 0.000135958 0.000107489 0.0696102 0.06753 34 1992 42 6.79088e+06 148192 618332. 2139.56 6.04 0.106627 0.098773 25102 150614 -1 1541 15 725 1603 89087 22561 4.51496 4.51496 -114.565 -4.51496 0 0 787024. 2723.27 1.19 0.19 0.30 -1 -1 1.19 0.00914581 0.0083407 65 86 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 23.14 vpr 63.53 MiB -1 -1 0.64 21584 13 0.63 -1 -1 36340 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65056 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 25.0 MiB 5.06 1062 12416 3908 6746 1762 63.5 MiB 0.15 0.00 7.81527 -160.852 -7.81527 7.81527 2.45 0.000206254 0.000159013 0.0185229 0.014972 36 2664 19 6.79088e+06 229024 648988. 2245.63 7.43 0.192552 0.180408 25390 158009 -1 2364 17 1084 2673 155516 35420 6.83498 6.83498 -156.84 -6.83498 0 0 828058. 2865.25 1.03 0.10 0.26 -1 -1 1.03 0.0146921 0.0134424 103 140 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 34.53 vpr 63.93 MiB -1 -1 0.66 21584 12 0.63 -1 -1 36380 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 25.4 MiB 7.54 1159 7736 1879 5232 625 63.9 MiB 0.49 0.00 7.13237 -158.608 -7.13237 7.13237 2.95 0.000210627 0.000169769 0.00960852 0.00787974 34 3355 47 6.79088e+06 242496 618332. 2139.56 14.32 0.116058 0.102759 25102 150614 -1 2853 20 1620 4022 273560 59015 6.28323 6.28323 -157.495 -6.28323 0 0 787024. 2723.27 1.12 0.29 0.25 -1 -1 1.12 0.0213319 0.0196772 117 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 18.54 vpr 63.36 MiB -1 -1 0.47 21280 9 0.55 -1 -1 36084 -1 -1 18 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64880 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 24.8 MiB 3.64 683 6711 1744 4492 475 63.4 MiB 0.60 0.00 5.04099 -94.9896 -5.04099 5.04099 2.25 7.3999e-05 5.8196e-05 0.155318 0.00645552 28 2279 50 6.79088e+06 242496 531479. 1839.03 3.90 0.326083 0.0386991 23950 126010 -1 1882 35 1206 3337 388976 144017 4.77249 4.77249 -103.451 -4.77249 0 0 648988. 2245.63 0.82 0.16 0.30 -1 -1 0.82 0.00993864 0.00876295 86 110 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 29.40 vpr 64.38 MiB -1 -1 0.55 21888 12 1.10 -1 -1 36540 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 25.6 MiB 5.88 1287 10501 2542 6098 1861 64.4 MiB 0.15 0.00 7.44518 -164.845 -7.44518 7.44518 3.10 0.000112587 8.9592e-05 0.0096715 0.0080076 46 3522 28 6.79088e+06 282912 828058. 2865.25 9.91 0.399568 0.383678 27406 200422 -1 2824 20 1482 4119 210242 47127 6.41977 6.41977 -155.05 -6.41977 0 0 1.01997e+06 3529.29 1.30 0.09 0.53 -1 -1 1.30 0.0267084 0.0249463 143 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 29.42 vpr 64.29 MiB -1 -1 0.57 22344 13 0.97 -1 -1 36388 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 25.6 MiB 7.07 1313 6409 1340 4499 570 64.3 MiB 0.15 0.00 8.4064 -173.711 -8.4064 8.4064 2.11 0.000266612 0.000223623 0.0579655 0.0098834 36 3598 20 6.79088e+06 296384 648988. 2245.63 11.51 0.354726 0.29688 25390 158009 -1 3137 19 1415 4009 239624 53054 7.719 7.719 -169.02 -7.719 0 0 828058. 2865.25 0.89 0.21 0.23 -1 -1 0.89 0.0205568 0.0188058 147 199 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 36.82 vpr 64.11 MiB -1 -1 0.39 21280 1 0.15 -1 -1 33932 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65652 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 25.3 MiB 10.99 991 16773 4981 8552 3240 64.1 MiB 0.17 0.00 5.46262 -158.993 -5.46262 5.46262 2.39 0.000166257 0.00013232 0.0170672 0.0139707 30 2828 34 6.87369e+06 363320 556674. 1926.21 16.16 0.628108 0.614131 25186 138497 -1 1951 21 1455 2342 135152 34327 4.306 4.306 -144.582 -4.306 0 0 706193. 2443.58 0.90 0.05 0.21 -1 -1 0.90 0.0091799 0.00828407 142 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 23.92 vpr 64.31 MiB -1 -1 0.32 21280 1 0.03 -1 -1 33704 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 25.8 MiB 9.80 1105 15395 5029 8642 1724 64.3 MiB 0.19 0.00 4.6569 -139.628 -4.6569 4.6569 2.33 0.000183779 0.000149981 0.0159037 0.0129477 34 2743 24 6.87369e+06 335372 618332. 2139.56 4.02 0.236274 0.165765 25762 151098 -1 2373 20 1798 2701 226002 50787 4.34166 4.34166 -150.553 -4.34166 0 0 787024. 2723.27 0.88 0.11 0.32 -1 -1 0.88 0.0278436 0.0102401 141 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 23.13 vpr 64.22 MiB -1 -1 0.64 21280 1 0.07 -1 -1 33484 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.5 MiB 8.21 973 9571 2499 6619 453 64.2 MiB 0.13 0.00 4.36457 -122.38 -4.36457 4.36457 2.58 0.000149868 0.000118135 0.010994 0.00912159 34 2446 23 6.87369e+06 293451 618332. 2139.56 4.31 0.0465469 0.0389704 25762 151098 -1 1989 21 1377 1840 125121 30167 3.85196 3.85196 -122.838 -3.85196 0 0 787024. 2723.27 1.13 0.06 0.29 -1 -1 1.13 0.0100137 0.00865675 124 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 18.42 vpr 64.22 MiB -1 -1 0.26 21280 1 0.14 -1 -1 33676 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 25.5 MiB 3.14 962 13557 3889 7576 2092 64.2 MiB 0.30 0.00 4.63038 -127.857 -4.63038 4.63038 2.75 0.00015505 0.000122539 0.0115351 0.00925165 34 2292 25 6.87369e+06 405241 618332. 2139.56 3.84 0.350809 0.342104 25762 151098 -1 1968 20 1368 2519 188672 42105 3.8044 3.8044 -122.158 -3.8044 0 0 787024. 2723.27 0.95 0.05 0.37 -1 -1 0.95 0.0107964 0.00957934 124 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 20.87 vpr 64.36 MiB -1 -1 0.44 21280 1 0.19 -1 -1 33704 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 25.6 MiB 4.87 1039 17023 5711 8892 2420 64.4 MiB 0.22 0.00 4.54412 -133.694 -4.54412 4.54412 3.05 0.000166785 0.000133977 0.114843 0.0582197 34 2709 22 6.87369e+06 377294 618332. 2139.56 4.64 0.265154 0.201143 25762 151098 -1 2243 23 1783 3463 258575 57562 3.5348 3.5348 -127.602 -3.5348 0 0 787024. 2723.27 1.07 0.21 0.47 -1 -1 1.07 0.086927 0.0854641 131 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 17.64 vpr 64.25 MiB -1 -1 0.53 21432 1 0.06 -1 -1 33692 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 25.6 MiB 4.93 1055 17134 4716 10280 2138 64.2 MiB 0.33 0.00 3.30607 -118.576 -3.30607 3.30607 2.42 0.000174675 0.000142387 0.0411234 0.0379096 30 2419 18 6.87369e+06 419215 556674. 1926.21 2.66 0.2291 0.221514 25186 138497 -1 1992 20 1192 2027 120521 27314 2.73471 2.73471 -114.003 -2.73471 0 0 706193. 2443.58 1.12 0.03 0.35 -1 -1 1.12 0.0111662 0.00984468 136 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 21.59 vpr 63.89 MiB -1 -1 0.63 21280 1 0.20 -1 -1 34148 -1 -1 19 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65424 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 25.2 MiB 7.61 598 11532 3252 7421 859 63.9 MiB 0.16 0.00 3.87934 -104.974 -3.87934 3.87934 2.58 0.000132466 0.000103121 0.0101505 0.00808648 34 1593 23 6.87369e+06 265503 618332. 2139.56 3.70 0.325426 0.318722 25762 151098 -1 1264 18 995 1650 93834 24428 2.92396 2.92396 -98.013 -2.92396 0 0 787024. 2723.27 0.74 0.08 0.34 -1 -1 0.74 0.00893896 0.00791239 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 17.49 vpr 64.05 MiB -1 -1 0.57 21280 1 0.10 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.5 MiB 2.68 978 15431 4433 8823 2175 64.1 MiB 0.12 0.00 3.50695 -106.713 -3.50695 3.50695 2.58 0.000143358 0.000114212 0.0207569 0.0181229 34 2114 20 6.87369e+06 447163 618332. 2139.56 4.43 0.177116 0.167919 25762 151098 -1 1814 17 965 1627 111277 25198 2.59636 2.59636 -97.5085 -2.59636 0 0 787024. 2723.27 0.84 0.06 0.40 -1 -1 0.84 0.00819473 0.00710164 119 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 22.87 vpr 64.05 MiB -1 -1 0.51 21280 1 0.09 -1 -1 33892 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65588 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 25.6 MiB 7.76 916 12980 4301 6644 2035 64.1 MiB 0.19 0.00 3.30197 -112.934 -3.30197 3.30197 2.91 6.6029e-05 5.1628e-05 0.121977 0.119214 34 2285 22 6.87369e+06 237555 618332. 2139.56 4.64 0.160641 0.151527 25762 151098 -1 1949 21 1338 1995 161157 36615 3.20191 3.20191 -121.06 -3.20191 0 0 787024. 2723.27 1.09 0.11 0.28 -1 -1 1.09 0.0102387 0.00892518 113 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 27.58 vpr 63.84 MiB -1 -1 0.66 21280 1 0.02 -1 -1 33680 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65372 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 25.3 MiB 14.09 944 11432 3128 6967 1337 63.8 MiB 0.03 0.00 4.11183 -135.597 -4.11183 4.11183 2.46 6.5683e-05 5.0992e-05 0.00516988 0.00410632 34 2163 22 6.87369e+06 223581 618332. 2139.56 4.09 0.166875 0.159829 25762 151098 -1 1889 22 1377 2269 183926 40856 2.87696 2.87696 -119.913 -2.87696 0 0 787024. 2723.27 0.83 0.11 0.22 -1 -1 0.83 0.0109243 0.00962712 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 24.39 vpr 63.82 MiB -1 -1 0.39 21128 1 0.08 -1 -1 33864 -1 -1 16 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 25.3 MiB 10.48 698 4228 848 3032 348 63.8 MiB 0.01 0.00 4.05863 -116.721 -4.05863 4.05863 2.58 6.9263e-05 5.3973e-05 0.00246885 0.00201753 34 1839 40 6.87369e+06 223581 618332. 2139.56 3.70 0.308414 0.300163 25762 151098 -1 1593 21 1044 1703 118400 27927 2.97416 2.97416 -108.479 -2.97416 0 0 787024. 2723.27 1.08 0.05 0.29 -1 -1 1.08 0.0264197 0.00935091 98 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 23.14 vpr 63.97 MiB -1 -1 0.60 21432 1 0.07 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65508 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.3 MiB 7.30 793 8131 1974 5384 773 64.0 MiB 0.11 0.00 3.6704 -113.179 -3.6704 3.6704 2.43 0.000148922 0.000109591 0.00809364 0.00658796 34 2134 22 6.87369e+06 237555 618332. 2139.56 4.88 0.405053 0.397143 25762 151098 -1 1742 20 1056 1506 111588 26371 3.35341 3.35341 -115.585 -3.35341 0 0 787024. 2723.27 1.40 0.02 0.28 -1 -1 1.40 0.00544739 0.00485243 107 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 30.26 vpr 64.30 MiB -1 -1 0.40 21128 1 0.27 -1 -1 33652 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65840 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.6 MiB 12.21 837 15063 3948 9014 2101 64.3 MiB 0.31 0.00 4.17399 -130.445 -4.17399 4.17399 2.86 9.0849e-05 7.2602e-05 0.0152808 0.0123649 36 2644 26 6.87369e+06 321398 648988. 2245.63 6.80 0.23074 0.124605 26050 158493 -1 2067 24 1964 3050 211379 51988 3.51651 3.51651 -124.444 -3.51651 0 0 828058. 2865.25 0.73 0.27 0.29 -1 -1 0.73 0.0133495 0.0117129 142 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 29.21 vpr 64.17 MiB -1 -1 0.50 21432 1 0.19 -1 -1 33724 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 25.5 MiB 8.83 872 16727 4869 9293 2565 64.2 MiB 0.25 0.00 4.77648 -139.073 -4.77648 4.77648 3.02 0.000163405 0.000130951 0.0152816 0.0124366 30 2490 24 6.87369e+06 433189 556674. 1926.21 10.27 0.0733525 0.061115 25186 138497 -1 1883 19 1342 2199 140123 33008 4.01576 4.01576 -135.5 -4.01576 0 0 706193. 2443.58 0.78 0.09 0.33 -1 -1 0.78 0.0109592 0.00960836 133 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 17.20 vpr 63.62 MiB -1 -1 0.49 21280 1 0.11 -1 -1 33732 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 25.0 MiB 5.52 782 10916 2876 6758 1282 63.6 MiB 0.20 0.00 3.26207 -99.6514 -3.26207 3.26207 2.38 0.000190873 0.000158989 0.0300257 0.0281333 32 1990 21 6.87369e+06 265503 586450. 2029.24 2.55 0.0521373 0.0467142 25474 144626 -1 1683 21 1109 1760 137076 31622 2.84596 2.84596 -100.232 -2.84596 0 0 744469. 2576.02 0.66 0.18 0.32 -1 -1 0.66 0.00850023 0.00740987 94 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 20.16 vpr 64.47 MiB -1 -1 0.42 21280 1 0.12 -1 -1 33736 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66020 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 25.8 MiB 6.25 1043 16273 5726 7876 2671 64.5 MiB 0.21 0.00 3.8137 -126.628 -3.8137 3.8137 2.28 0.000170614 0.000137127 0.0764758 0.073383 32 2878 41 6.87369e+06 335372 586450. 2029.24 2.74 0.112452 0.103721 25474 144626 -1 2322 22 1768 3019 252321 57893 3.36621 3.36621 -127.403 -3.36621 0 0 744469. 2576.02 1.18 0.37 0.18 -1 -1 1.18 0.0109143 0.00938248 135 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 29.38 vpr 64.13 MiB -1 -1 0.54 21432 1 0.16 -1 -1 33608 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 13.99 1087 9571 2614 6264 693 64.1 MiB 0.23 0.00 4.17947 -136.952 -4.17947 4.17947 2.29 0.000162453 0.000130153 0.00622417 0.00504765 34 2708 23 6.87369e+06 293451 618332. 2139.56 4.96 0.05586 0.0468219 25762 151098 -1 2252 20 1534 2283 175831 39652 3.24661 3.24661 -128.103 -3.24661 0 0 787024. 2723.27 0.82 0.23 0.45 -1 -1 0.82 0.0120199 0.010537 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 23.86 vpr 63.93 MiB -1 -1 0.29 21584 1 0.31 -1 -1 33716 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65468 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 25.3 MiB 8.52 699 8993 2148 6078 767 63.9 MiB 0.24 0.00 3.09156 -107.654 -3.09156 3.09156 2.68 0.000158125 0.00012581 0.00826315 0.006625 34 2013 25 6.87369e+06 391268 618332. 2139.56 4.82 0.210333 0.202125 25762 151098 -1 1669 19 1066 1662 108956 26905 2.19587 2.19587 -100.714 -2.19587 0 0 787024. 2723.27 1.16 0.16 0.28 -1 -1 1.16 0.0101906 0.00893816 109 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 14.33 vpr 63.51 MiB -1 -1 0.45 21128 1 0.20 -1 -1 33724 -1 -1 14 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65032 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 25.0 MiB 1.87 552 9196 3320 4707 1169 63.5 MiB 0.24 0.00 2.58823 -85.0004 -2.58823 2.58823 2.62 0.00012371 9.5239e-05 0.00779298 0.00618129 30 1296 20 6.87369e+06 195634 556674. 1926.21 2.13 0.0269794 0.0219935 25186 138497 -1 1079 19 533 777 51739 12120 1.94352 1.94352 -83.1698 -1.94352 0 0 706193. 2443.58 1.04 0.07 0.44 -1 -1 1.04 0.00518792 0.00460682 71 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 24.87 vpr 63.97 MiB -1 -1 0.52 21128 1 0.13 -1 -1 33880 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 25.3 MiB 9.81 952 10940 3346 6666 928 64.0 MiB 0.13 0.00 5.00887 -150.561 -5.00887 5.00887 2.38 0.000146586 0.000117062 0.0105465 0.00851292 34 2258 24 6.87369e+06 265503 618332. 2139.56 4.47 0.0440352 0.0362521 25762 151098 -1 1964 21 1126 1675 111074 27347 3.69321 3.69321 -139.902 -3.69321 0 0 787024. 2723.27 0.92 0.07 0.32 -1 -1 0.92 0.0102893 0.00900734 116 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 14.42 vpr 64.21 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33812 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 25.5 MiB 2.84 1087 17427 4758 10581 2088 64.2 MiB 0.18 0.00 4.24609 -138.045 -4.24609 4.24609 2.22 0.000169902 0.000134969 0.0146762 0.0117861 32 2549 24 6.87369e+06 489084 586450. 2029.24 2.70 0.307655 0.300729 25474 144626 -1 2181 23 1617 2442 198435 44964 3.9297 3.9297 -134.381 -3.9297 0 0 744469. 2576.02 0.86 0.26 0.19 -1 -1 0.86 0.00896796 0.00785315 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 23.30 vpr 64.34 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33788 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 25.6 MiB 7.53 1158 12938 3721 7732 1485 64.3 MiB 0.21 0.00 4.29925 -134.625 -4.29925 4.29925 2.73 0.000196529 0.000158681 0.153724 0.151043 34 2953 28 6.87369e+06 307425 618332. 2139.56 5.01 0.303634 0.292188 25762 151098 -1 2435 18 1582 2467 217411 47399 3.76066 3.76066 -132.683 -3.76066 0 0 787024. 2723.27 0.93 0.15 0.13 -1 -1 0.93 0.0106301 0.00938089 142 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 17.81 vpr 63.55 MiB -1 -1 0.41 21280 1 0.03 -1 -1 34136 -1 -1 17 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65080 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 24.9 MiB 5.33 354 9555 3920 4765 870 63.6 MiB 0.13 0.00 2.60613 -72.0813 -2.60613 2.60613 2.49 0.000101463 7.7379e-05 0.109573 0.107996 30 1232 32 6.87369e+06 237555 556674. 1926.21 2.51 0.130498 0.125272 25186 138497 -1 874 22 615 899 53669 14593 2.25347 2.25347 -72.1647 -2.25347 0 0 706193. 2443.58 0.84 0.04 0.25 -1 -1 0.84 0.00714922 0.0061756 67 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 19.64 vpr 64.14 MiB -1 -1 0.34 21280 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.5 MiB 3.45 1058 9111 2260 6245 606 64.1 MiB 0.18 0.00 4.50666 -128.623 -4.50666 4.50666 2.81 7.3797e-05 5.7532e-05 0.0292749 0.0276202 34 2389 21 6.87369e+06 321398 618332. 2139.56 4.62 0.193589 0.185412 25762 151098 -1 2137 22 1445 2595 201568 45085 3.7324 3.7324 -123.569 -3.7324 0 0 787024. 2723.27 1.17 0.02 0.32 -1 -1 1.17 0.00605222 0.0053764 119 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 15.46 vpr 63.29 MiB -1 -1 0.38 20976 1 0.12 -1 -1 33784 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64808 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.55 446 9836 2914 4955 1967 63.3 MiB 0.05 0.00 2.58823 -76.6987 -2.58823 2.58823 2.93 9.893e-05 7.5625e-05 0.0230507 0.0215441 28 1286 19 6.87369e+06 167686 531479. 1839.03 2.51 0.0376124 0.0336914 24610 126494 -1 1088 15 585 680 59406 15832 2.02487 2.02487 -80.4549 -2.02487 0 0 648988. 2245.63 0.95 0.07 0.38 -1 -1 0.95 0.00637249 0.00552249 65 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 14.99 vpr 64.21 MiB -1 -1 0.52 21128 1 0.03 -1 -1 33528 -1 -1 30 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 25.5 MiB 2.60 1001 15430 4006 9830 1594 64.2 MiB 0.12 0.00 4.66212 -132.229 -4.66212 4.66212 2.37 0.000171177 0.000125981 0.013494 0.0108168 32 2320 23 6.87369e+06 419215 586450. 2029.24 2.87 0.168715 0.162025 25474 144626 -1 1958 19 984 1559 118404 26575 3.6508 3.6508 -122.317 -3.6508 0 0 744469. 2576.02 0.80 0.17 0.33 -1 -1 0.80 0.00997043 0.00873605 120 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 18.10 vpr 64.23 MiB -1 -1 0.40 21432 1 0.08 -1 -1 33776 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 2.89 1076 17591 5379 9750 2462 64.2 MiB 0.52 0.00 3.49633 -112.341 -3.49633 3.49633 2.77 7.6094e-05 5.8663e-05 0.00877982 0.00683959 34 2436 22 6.87369e+06 433189 618332. 2139.56 4.19 0.471368 0.463508 25762 151098 -1 2017 20 1232 2248 141825 33683 3.08856 3.08856 -109.053 -3.08856 0 0 787024. 2723.27 0.85 0.18 0.32 -1 -1 0.85 0.00999505 0.00875882 130 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 22.31 vpr 64.38 MiB -1 -1 0.29 21432 1 0.23 -1 -1 33700 -1 -1 28 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 25.8 MiB 5.34 1002 15824 5356 7353 3115 64.4 MiB 0.27 0.00 4.71758 -131.299 -4.71758 4.71758 2.71 0.000173243 0.000140509 0.141782 0.138865 34 2511 23 6.87369e+06 391268 618332. 2139.56 6.77 0.223662 0.213441 25762 151098 -1 2005 21 1353 2404 182427 42184 3.94976 3.94976 -127.416 -3.94976 0 0 787024. 2723.27 0.91 0.12 0.46 -1 -1 0.91 0.0549185 0.0535834 131 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 16.61 vpr 63.74 MiB -1 -1 0.50 21432 1 0.14 -1 -1 33824 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65272 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 25.0 MiB 3.16 723 7304 1770 4913 621 63.7 MiB 0.12 0.00 3.24007 -108.229 -3.24007 3.24007 2.29 0.000144569 0.000114815 0.00768406 0.0062006 34 1830 21 6.87369e+06 223581 618332. 2139.56 3.58 0.0480745 0.0398852 25762 151098 -1 1578 14 814 1319 84892 20527 2.77396 2.77396 -105.415 -2.77396 0 0 787024. 2723.27 0.91 0.02 0.44 -1 -1 0.91 0.00732863 0.00651873 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 16.14 vpr 63.80 MiB -1 -1 0.45 21280 1 0.10 -1 -1 33528 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65336 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 25.3 MiB 4.10 669 13738 3602 8368 1768 63.8 MiB 0.16 0.00 3.22907 -99.5149 -3.22907 3.22907 2.28 6.4238e-05 4.8759e-05 0.00889745 0.0070061 30 1623 18 6.87369e+06 363320 556674. 1926.21 2.28 0.0798346 0.0744247 25186 138497 -1 1326 21 858 1419 92180 21062 2.71316 2.71316 -92.9909 -2.71316 0 0 706193. 2443.58 0.99 0.21 0.35 -1 -1 0.99 0.00829668 0.00697333 97 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 17.14 vpr 63.75 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33744 -1 -1 18 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 25.2 MiB 3.03 758 11698 3516 6781 1401 63.7 MiB 0.35 0.00 3.63766 -102.515 -3.63766 3.63766 2.72 0.000141617 0.000112184 0.0110367 0.00886746 32 2139 25 6.87369e+06 251529 586450. 2029.24 2.95 0.0334332 0.027644 25474 144626 -1 1714 22 1198 2121 189213 42791 3.08656 3.08656 -106.439 -3.08656 0 0 744469. 2576.02 0.84 0.04 0.22 -1 -1 0.84 0.00971103 0.00842229 95 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 15.67 vpr 63.91 MiB -1 -1 0.36 21128 1 0.05 -1 -1 33692 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65440 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 25.2 MiB 2.65 760 11106 3371 5478 2257 63.9 MiB 0.28 0.00 4.03537 -119.574 -4.03537 4.03537 2.46 0.000135572 0.000106047 0.0107382 0.00864175 32 2134 23 6.87369e+06 237555 586450. 2029.24 2.86 0.13161 0.125728 25474 144626 -1 1727 20 1173 1954 154118 36053 2.84396 2.84396 -110.588 -2.84396 0 0 744469. 2576.02 1.06 0.31 0.50 -1 -1 1.06 0.00903045 0.00788851 101 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 15.11 vpr 64.00 MiB -1 -1 0.41 21280 1 0.12 -1 -1 33764 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65536 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 25.3 MiB 2.64 713 5831 1066 4417 348 64.0 MiB 0.03 0.00 3.5993 -106.942 -3.5993 3.5993 2.40 0.000171539 0.000140931 0.00556667 0.00456771 28 1996 18 6.87369e+06 363320 531479. 1839.03 3.27 0.103794 0.100207 24610 126494 -1 1700 22 1183 2030 135922 33143 3.06161 3.06161 -106.539 -3.06161 0 0 648988. 2245.63 0.80 0.07 0.27 -1 -1 0.80 0.00948447 0.00823742 102 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 22.03 vpr 63.85 MiB -1 -1 0.37 21128 1 0.28 -1 -1 33500 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 25.3 MiB 9.41 706 8402 1995 5635 772 63.9 MiB 0.12 0.00 3.04756 -96.0841 -3.04756 3.04756 2.70 0.000155535 0.000124263 0.00834491 0.00658225 30 1803 22 6.87369e+06 349346 556674. 1926.21 2.70 0.0339241 0.0280783 25186 138497 -1 1489 21 913 1418 77368 19017 2.25817 2.25817 -91.9004 -2.25817 0 0 706193. 2443.58 0.72 0.03 0.19 -1 -1 0.72 0.00919613 0.00801712 106 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 24.14 vpr 64.41 MiB -1 -1 0.37 21432 1 0.20 -1 -1 33972 -1 -1 40 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65952 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 25.6 MiB 11.77 1199 12548 3440 7715 1393 64.4 MiB 0.25 0.00 4.16289 -124.152 -4.16289 4.16289 2.19 9.1343e-05 7.2267e-05 0.00570294 0.0045507 32 3305 23 6.87369e+06 558954 586450. 2029.24 2.88 0.0342904 0.0287899 25474 144626 -1 2475 24 1659 3141 250353 54866 3.5931 3.5931 -123.591 -3.5931 0 0 744469. 2576.02 0.80 0.06 0.25 -1 -1 0.80 0.0126887 0.0110685 156 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 24.99 vpr 64.59 MiB -1 -1 0.33 21432 1 0.09 -1 -1 33724 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66136 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 25.9 MiB 10.97 1019 17476 4989 10107 2380 64.6 MiB 0.27 0.00 3.96554 -133.621 -3.96554 3.96554 2.71 0.000183749 0.000148034 0.0160662 0.0130401 34 2318 19 6.87369e+06 531006 618332. 2139.56 3.70 0.103257 0.0923802 25762 151098 -1 1994 20 1598 2530 167629 38388 3.16056 3.16056 -122.735 -3.16056 0 0 787024. 2723.27 0.74 0.14 0.38 -1 -1 0.74 0.111646 0.110121 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 21.76 vpr 64.04 MiB -1 -1 0.35 21280 1 0.03 -1 -1 33716 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65576 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.3 MiB 6.56 811 8306 2170 5113 1023 64.0 MiB 0.09 0.00 4.07373 -119.929 -4.07373 4.07373 2.23 0.000173477 0.000138782 0.00866396 0.00704272 34 2155 20 6.87369e+06 251529 618332. 2139.56 5.09 0.45008 0.441926 25762 151098 -1 1863 19 1282 1823 137204 32816 3.38021 3.38021 -121.441 -3.38021 0 0 787024. 2723.27 0.89 0.06 0.31 -1 -1 0.89 0.0090967 0.00803358 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 23.93 vpr 64.20 MiB -1 -1 0.55 21432 1 0.24 -1 -1 33736 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 25.6 MiB 8.06 977 12959 4558 6216 2185 64.2 MiB 0.29 0.00 3.77586 -121.537 -3.77586 3.77586 2.82 0.000204933 0.000167121 0.013641 0.0111008 34 2883 22 6.87369e+06 363320 618332. 2139.56 4.79 0.129067 0.11922 25762 151098 -1 2230 20 1564 2672 180642 43077 3.17786 3.17786 -118.463 -3.17786 0 0 787024. 2723.27 0.90 0.13 0.24 -1 -1 0.90 0.0111489 0.00981712 136 61 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 27.75 vpr 64.61 MiB -1 -1 0.58 21584 1 0.09 -1 -1 33832 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66164 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 25.8 MiB 12.30 1217 9058 2366 5991 701 64.6 MiB 0.11 0.00 5.67608 -170.045 -5.67608 5.67608 2.73 0.000179957 0.00014612 0.00584614 0.00468298 34 3293 23 6.87369e+06 349346 618332. 2139.56 4.81 0.269149 0.259578 25762 151098 -1 2796 22 2219 3285 287360 63069 5.1298 5.1298 -175.351 -5.1298 0 0 787024. 2723.27 1.10 0.17 0.26 -1 -1 1.10 0.120757 0.119223 159 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 28.13 vpr 64.49 MiB -1 -1 0.47 21736 1 0.12 -1 -1 33792 -1 -1 27 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66040 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 25.8 MiB 12.46 930 10341 2765 6600 976 64.5 MiB 0.18 0.00 5.24874 -156.327 -5.24874 5.24874 2.19 0.000201036 0.000162313 0.0085521 0.00689602 36 2493 27 6.87369e+06 377294 648988. 2245.63 5.33 0.0595267 0.0497657 26050 158493 -1 1987 21 1573 2425 167657 40241 4.67715 4.67715 -153.728 -4.67715 0 0 828058. 2865.25 0.99 0.36 0.21 -1 -1 0.99 0.121806 0.120326 152 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 22.64 vpr 64.09 MiB -1 -1 0.61 21432 1 0.10 -1 -1 33536 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65624 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 25.5 MiB 9.52 890 9838 2427 6571 840 64.1 MiB 0.21 0.00 4.12463 -126.459 -4.12463 4.12463 2.45 0.000172275 0.000139746 0.0110367 0.00908615 32 2860 24 6.87369e+06 349346 586450. 2029.24 3.08 0.0423773 0.0355873 25474 144626 -1 2227 21 1692 2813 220362 53108 3.62251 3.62251 -132.075 -3.62251 0 0 744469. 2576.02 0.90 0.13 0.50 -1 -1 0.90 0.00909422 0.00788212 131 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 22.68 vpr 64.16 MiB -1 -1 0.61 21128 1 0.11 -1 -1 33812 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 25.5 MiB 8.11 1030 14907 5658 7296 1953 64.2 MiB 0.17 0.00 4.31305 -116.7 -4.31305 4.31305 2.32 0.000149171 0.000118967 0.0139152 0.0112162 34 2414 26 6.87369e+06 279477 618332. 2139.56 4.51 0.178041 0.0453794 25762 151098 -1 2028 24 1457 2155 154286 36972 3.85476 3.85476 -121.754 -3.85476 0 0 787024. 2723.27 0.71 0.12 0.18 -1 -1 0.71 0.0775601 0.0762208 119 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 26.69 vpr 64.92 MiB -1 -1 0.41 21432 1 0.26 -1 -1 33948 -1 -1 38 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66476 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 26.2 MiB 10.57 1252 19142 5218 11863 2061 64.9 MiB 0.25 0.00 4.94161 -161.682 -4.94161 4.94161 2.70 0.000236376 0.000197878 0.0159381 0.012697 26 3662 47 6.87369e+06 531006 503264. 1741.40 5.64 0.0656135 0.0547177 24322 120374 -1 3019 24 2201 3522 390352 93116 4.62016 4.62016 -166.293 -4.62016 0 0 618332. 2139.56 0.61 0.43 0.16 -1 -1 0.61 0.016284 0.0143587 173 87 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 22.21 vpr 63.92 MiB -1 -1 0.36 21280 1 0.15 -1 -1 33852 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 25.2 MiB 5.65 665 8827 1886 5968 973 63.9 MiB 0.18 0.00 3.55895 -103.54 -3.55895 3.55895 2.40 0.0001289 0.000102535 0.00744448 0.00593677 32 2162 45 6.87369e+06 307425 586450. 2029.24 2.23 0.0452005 0.0389452 25474 144626 -1 1638 24 1277 2195 166532 39561 2.88796 2.88796 -103.251 -2.88796 0 0 744469. 2576.02 0.94 0.28 0.25 -1 -1 0.94 0.159153 0.157628 96 28 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 27.15 vpr 64.17 MiB -1 -1 0.31 21584 1 0.06 -1 -1 33500 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65712 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.6 MiB 7.46 1143 8780 2224 5686 870 64.2 MiB 0.13 0.00 4.84783 -148.334 -4.84783 4.84783 2.41 8.0976e-05 6.3748e-05 0.00542575 0.00443272 30 2974 22 6.87369e+06 321398 556674. 1926.21 3.06 0.0345488 0.0292347 25186 138497 -1 2276 20 1319 1963 128114 29110 3.90446 3.90446 -137.638 -3.90446 0 0 706193. 2443.58 1.15 0.08 0.32 -1 -1 1.15 0.0585967 0.0572947 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 19.35 vpr 64.43 MiB -1 -1 0.48 21280 1 0.26 -1 -1 33996 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65972 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 25.6 MiB 5.83 1092 15207 4580 7502 3125 64.4 MiB 0.15 0.00 3.6664 -115.914 -3.6664 3.6664 2.54 0.00017133 0.000137374 0.0135402 0.0109293 30 2573 46 6.87369e+06 447163 556674. 1926.21 3.62 0.180732 0.17235 25186 138497 -1 2104 22 1306 2375 155359 38292 2.88001 2.88001 -108.543 -2.88001 0 0 706193. 2443.58 0.93 0.04 0.20 -1 -1 0.93 0.0114539 0.0100252 132 53 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 14.87 vpr 64.06 MiB -1 -1 0.51 21128 1 0.14 -1 -1 33724 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.3 MiB 2.40 951 7326 1464 5460 402 64.1 MiB 0.09 0.00 4.18575 -127.803 -4.18575 4.18575 1.82 0.000175655 0.000143574 0.0555812 0.0541994 34 2528 23 6.87369e+06 363320 618332. 2139.56 3.31 0.191298 0.183088 25762 151098 -1 2047 23 1405 2633 189987 44011 3.5621 3.5621 -123.698 -3.5621 0 0 787024. 2723.27 0.72 0.12 0.38 -1 -1 0.72 0.0114617 0.0100687 123 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 36.94 vpr 64.12 MiB -1 -1 0.51 21584 1 0.18 -1 -1 33692 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65664 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 25.5 MiB 10.66 1138 14072 4363 7314 2395 64.1 MiB 0.29 0.00 5.07875 -152.281 -5.07875 5.07875 2.27 0.000170691 0.000137737 0.0148082 0.0120735 34 2622 19 6.87369e+06 307425 618332. 2139.56 4.22 0.16563 0.0454305 25762 151098 -1 2306 20 1280 1714 142445 32122 3.4645 3.4645 -130.908 -3.4645 0 0 787024. 2723.27 1.00 0.07 0.25 -1 -1 1.00 0.0121515 0.0107941 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 23.89 vpr 64.47 MiB -1 -1 0.25 21280 1 0.24 -1 -1 33852 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66016 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 25.8 MiB 8.95 892 17835 6311 8192 3332 64.5 MiB 0.23 0.00 3.76804 -119.452 -3.76804 3.76804 2.29 0.000167884 0.000134379 0.0160244 0.0129913 34 2804 46 6.87369e+06 447163 618332. 2139.56 5.31 0.199513 0.188489 25762 151098 -1 1968 21 1467 2565 178739 43690 3.35021 3.35021 -119.572 -3.35021 0 0 787024. 2723.27 0.96 0.10 0.20 -1 -1 0.96 0.0112241 0.00966769 136 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 21.50 vpr 64.41 MiB -1 -1 0.60 21584 1 0.03 -1 -1 33712 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65956 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 25.6 MiB 9.25 941 16971 5230 8707 3034 64.4 MiB 0.18 0.00 4.11773 -131.819 -4.11773 4.11773 1.81 0.000182521 0.000146926 0.0156153 0.0126952 34 2879 28 6.87369e+06 489084 618332. 2139.56 4.32 0.117275 0.105604 25762 151098 -1 2186 23 1729 2772 226088 51849 3.24691 3.24691 -123.814 -3.24691 0 0 787024. 2723.27 0.73 0.12 0.37 -1 -1 0.73 0.0764884 0.0747819 144 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 18.66 vpr 64.24 MiB -1 -1 0.37 21128 1 0.22 -1 -1 33856 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 25.5 MiB 3.14 948 15415 4265 8583 2567 64.2 MiB 0.23 0.00 4.39109 -128.888 -4.39109 4.39109 2.31 0.000152422 0.000121698 0.0131672 0.0107519 28 2279 18 6.87369e+06 461137 531479. 1839.03 2.50 0.164879 0.159291 24610 126494 -1 2106 19 1297 2273 152125 35569 3.8374 3.8374 -129.391 -3.8374 0 0 648988. 2245.63 0.94 0.23 0.39 -1 -1 0.94 0.199371 0.198145 124 24 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 20.30 vpr 64.19 MiB -1 -1 0.45 21432 1 0.14 -1 -1 33636 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.6 MiB 6.89 981 12560 3220 7625 1715 64.2 MiB 0.16 0.00 4.75658 -136.53 -4.75658 4.75658 1.94 0.000185334 0.00013945 0.0134098 0.0109114 34 2576 31 6.87369e+06 307425 618332. 2139.56 3.94 0.19211 0.181743 25762 151098 -1 2232 18 1502 2206 155865 36516 3.94506 3.94506 -130.167 -3.94506 0 0 787024. 2723.27 0.86 0.12 0.22 -1 -1 0.86 0.0607714 0.0595868 135 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 23.47 vpr 64.35 MiB -1 -1 0.69 21736 1 0.03 -1 -1 33836 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65896 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 25.8 MiB 7.13 1089 11617 3558 6983 1076 64.4 MiB 0.17 0.00 4.74348 -142.628 -4.74348 4.74348 2.12 0.000169749 0.000137229 0.0135104 0.0110986 34 3012 33 6.87369e+06 307425 618332. 2139.56 6.51 0.245812 0.234455 25762 151098 -1 2421 24 1896 3142 255518 58176 4.20536 4.20536 -145.105 -4.20536 0 0 787024. 2723.27 0.88 0.18 0.54 -1 -1 0.88 0.0886337 0.0869785 141 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 21.17 vpr 64.27 MiB -1 -1 0.31 21584 1 0.12 -1 -1 33668 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 25.6 MiB 8.03 1081 14779 5269 7600 1910 64.3 MiB 0.18 0.00 4.3693 -135.724 -4.3693 4.3693 2.21 0.00018211 0.000144551 0.0165506 0.0135388 34 3071 25 6.87369e+06 293451 618332. 2139.56 4.03 0.308197 0.246337 25762 151098 -1 2452 20 1602 2893 227755 52056 3.90206 3.90206 -134.338 -3.90206 0 0 787024. 2723.27 1.06 0.02 0.31 -1 -1 1.06 0.00672024 0.00600909 135 77 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 14.31 vpr 63.62 MiB -1 -1 0.46 21280 1 0.03 -1 -1 33404 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65148 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 25.0 MiB 2.85 779 13883 3395 9668 820 63.6 MiB 0.39 0.00 3.5583 -108.13 -3.5583 3.5583 2.11 0.000129762 0.000102444 0.0112484 0.00892394 32 1947 23 6.87369e+06 307425 586450. 2029.24 2.62 0.0872094 0.0814203 25474 144626 -1 1653 18 1025 1710 137116 31761 2.96926 2.96926 -106.227 -2.96926 0 0 744469. 2576.02 0.86 0.18 0.33 -1 -1 0.86 0.00887165 0.00785178 93 23 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 24.94 vpr 64.17 MiB -1 -1 0.35 21280 1 0.02 -1 -1 33920 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 25.6 MiB 6.05 963 13432 4412 7074 1946 64.2 MiB 0.38 0.00 3.7434 -132.085 -3.7434 3.7434 2.71 0.000152367 0.000121191 0.0136534 0.0110173 34 2552 22 6.87369e+06 251529 618332. 2139.56 4.28 0.106562 0.0961737 25762 151098 -1 2119 20 1604 2308 201181 43912 3.3618 3.3618 -131.165 -3.3618 0 0 787024. 2723.27 0.97 0.18 0.34 -1 -1 0.97 0.0126879 0.0108771 124 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 27.50 vpr 64.68 MiB -1 -1 0.58 21584 1 0.13 -1 -1 33676 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66236 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 25.9 MiB 10.07 1271 11983 3961 5911 2111 64.7 MiB 0.26 0.00 5.44288 -158.174 -5.44288 5.44288 2.43 8.7752e-05 6.9194e-05 0.122852 0.120327 36 3481 23 6.87369e+06 335372 648988. 2245.63 6.36 0.284489 0.273162 26050 158493 -1 2730 24 2175 3406 265530 61473 4.81335 4.81335 -159.454 -4.81335 0 0 828058. 2865.25 1.00 0.10 0.38 -1 -1 1.00 0.0148493 0.0131138 166 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 26.25 vpr 64.18 MiB -1 -1 0.38 21432 1 0.03 -1 -1 34124 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65720 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 25.5 MiB 9.39 1044 14048 3802 8919 1327 64.2 MiB 0.16 0.00 4.31147 -138.564 -4.31147 4.31147 2.23 8.601e-05 6.7813e-05 0.0096058 0.0076664 28 2413 22 6.87369e+06 475111 531479. 1839.03 2.67 0.208974 0.202307 24610 126494 -1 2220 20 1412 2227 166392 37304 3.00716 3.00716 -126.181 -3.00716 0 0 648988. 2245.63 0.66 0.13 0.27 -1 -1 0.66 0.0107818 0.00946197 137 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 15.88 vpr 64.02 MiB -1 -1 0.54 21128 1 0.03 -1 -1 33768 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 25.3 MiB 2.44 643 13911 3216 9368 1327 64.0 MiB 0.02 0.00 3.6213 -108.932 -3.6213 3.6213 2.13 5.8612e-05 4.5284e-05 0.00512171 0.00404163 28 2013 27 6.87369e+06 349346 531479. 1839.03 3.22 0.0320664 0.0264633 24610 126494 -1 1716 23 1345 2134 175226 47870 2.99626 2.99626 -111.937 -2.99626 0 0 648988. 2245.63 1.04 0.24 0.29 -1 -1 1.04 0.00901013 0.00774294 104 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 32.72 vpr 64.79 MiB -1 -1 0.66 21584 1 0.14 -1 -1 33960 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66348 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 26.1 MiB 16.94 1320 13157 3582 8208 1367 64.8 MiB 0.24 0.00 5.88501 -173.819 -5.88501 5.88501 2.08 0.000234908 0.000194653 0.0167643 0.0139545 36 3191 21 6.87369e+06 349346 648988. 2245.63 6.14 0.220988 0.208642 26050 158493 -1 2779 24 2351 3650 311794 67863 4.8519 4.8519 -164.233 -4.8519 0 0 828058. 2865.25 0.68 0.25 0.28 -1 -1 0.68 0.0150635 0.013257 171 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 22.57 vpr 64.25 MiB -1 -1 0.52 21584 1 0.03 -1 -1 33796 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 25.5 MiB 10.07 982 19023 5630 11222 2171 64.2 MiB 0.25 0.00 4.64628 -141.602 -4.64628 4.64628 2.49 0.000164867 0.000130981 0.134591 0.131451 28 2297 23 6.87369e+06 489084 531479. 1839.03 2.50 0.158162 0.151353 24610 126494 -1 2086 21 1562 2642 173496 40703 3.9034 3.9034 -136.594 -3.9034 0 0 648988. 2245.63 0.61 0.07 0.18 -1 -1 0.61 0.0350567 0.0335832 135 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 15.57 vpr 63.76 MiB -1 -1 0.69 21128 1 0.02 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.0 MiB 3.06 766 11398 3000 7253 1145 63.8 MiB 0.04 0.00 3.5954 -102.128 -3.5954 3.5954 2.91 0.000123186 9.6567e-05 0.00521953 0.00410918 26 2180 25 6.87369e+06 335372 503264. 1741.40 3.23 0.0240276 0.0198909 24322 120374 -1 1815 20 1140 1925 162853 38227 3.43151 3.43151 -112.946 -3.43151 0 0 618332. 2139.56 0.72 0.09 0.23 -1 -1 0.72 0.00792622 0.00683717 94 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 20.97 vpr 64.29 MiB -1 -1 0.46 21432 1 0.05 -1 -1 33756 -1 -1 37 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 25.8 MiB 6.95 1098 18666 5476 10496 2694 64.3 MiB 0.32 0.00 5.27722 -139.12 -5.27722 5.27722 2.62 0.000168908 0.000136444 0.0162693 0.0131555 32 3049 25 6.87369e+06 517032 586450. 2029.24 3.25 0.0761952 0.0682264 25474 144626 -1 2273 23 1537 2878 240761 53474 4.42825 4.42825 -139.024 -4.42825 0 0 744469. 2576.02 1.12 0.17 0.36 -1 -1 1.12 0.0096377 0.00820186 145 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 17.36 vpr 63.61 MiB -1 -1 0.34 20976 1 0.21 -1 -1 33880 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.0 MiB 2.45 805 14303 4969 7161 2173 63.6 MiB 0.25 0.00 3.6144 -113.068 -3.6144 3.6144 2.47 0.000133477 0.00010393 0.108573 0.106008 34 2002 21 6.87369e+06 265503 618332. 2139.56 4.47 0.317148 0.309478 25762 151098 -1 1738 20 1190 2122 159718 35273 2.89096 2.89096 -110.154 -2.89096 0 0 787024. 2723.27 0.83 0.02 0.48 -1 -1 0.83 0.00441281 0.00379108 98 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 21.45 vpr 64.06 MiB -1 -1 0.54 21280 1 0.02 -1 -1 33644 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 25.3 MiB 8.50 838 14988 4128 9396 1464 64.1 MiB 0.22 0.00 3.91538 -116.007 -3.91538 3.91538 2.86 0.000177341 0.000130236 0.0111925 0.00880656 28 1968 20 6.87369e+06 475111 531479. 1839.03 2.54 0.105873 0.0996559 24610 126494 -1 1887 19 1129 2039 157359 35630 3.04726 3.04726 -113.863 -3.04726 0 0 648988. 2245.63 0.68 0.05 0.31 -1 -1 0.68 0.00905519 0.0079596 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 38.84 vpr 64.43 MiB -1 -1 0.39 21280 1 0.10 -1 -1 33832 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 25.6 MiB 14.50 1022 14221 4941 6601 2679 64.4 MiB 0.15 0.00 4.14789 -124.13 -4.14789 4.14789 2.22 0.000165242 0.000132585 0.0143373 0.0116609 34 2597 22 6.87369e+06 335372 618332. 2139.56 4.66 0.260767 0.251221 25762 151098 -1 2202 23 1894 2884 228158 51796 3.21181 3.21181 -117.514 -3.21181 0 0 787024. 2723.27 0.97 0.21 0.33 -1 -1 0.97 0.00826217 0.00730772 138 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 22.26 vpr 64.43 MiB -1 -1 0.69 21280 1 0.07 -1 -1 33840 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65976 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 25.6 MiB 8.13 981 14964 4061 9219 1684 64.4 MiB 0.16 0.00 4.38015 -143.22 -4.38015 4.38015 2.51 7.439e-05 5.8317e-05 0.00980464 0.0078887 34 2270 24 6.87369e+06 363320 618332. 2139.56 4.00 0.063303 0.054202 25762 151098 -1 1860 21 1373 2075 135251 32141 3.70116 3.70116 -134.582 -3.70116 0 0 787024. 2723.27 0.83 0.13 0.34 -1 -1 0.83 0.0103844 0.00902867 132 54 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 18.92 vpr 64.37 MiB -1 -1 0.48 21584 1 0.23 -1 -1 33540 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65916 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 25.6 MiB 7.52 1048 11719 3049 7703 967 64.4 MiB 0.32 0.00 4.78763 -143.617 -4.78763 4.78763 2.11 0.000174953 0.000139402 0.0491357 0.0469582 32 2790 38 6.87369e+06 377294 586450. 2029.24 2.78 0.100601 0.0930089 25474 144626 -1 2289 21 1558 2779 235785 52014 3.94076 3.94076 -140.873 -3.94076 0 0 744469. 2576.02 0.78 0.12 0.35 -1 -1 0.78 0.0135515 0.0112368 133 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 24.25 vpr 63.83 MiB -1 -1 0.38 21432 1 0.25 -1 -1 33980 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65364 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.3 MiB 11.11 879 8529 2069 5850 610 63.8 MiB 0.23 0.00 4.78272 -134.878 -4.78272 4.78272 2.20 0.000150234 0.000119581 0.0532462 0.0515203 34 2183 21 6.87369e+06 209608 618332. 2139.56 3.86 0.103417 0.0884825 25762 151098 -1 1835 19 952 1292 98617 22365 3.2292 3.2292 -117.412 -3.2292 0 0 787024. 2723.27 0.77 0.05 0.23 -1 -1 0.77 0.0322942 0.0311015 103 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 22.79 vpr 64.23 MiB -1 -1 0.38 21584 1 0.14 -1 -1 33752 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65768 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 25.5 MiB 9.37 834 6960 1607 4728 625 64.2 MiB 0.06 0.00 3.80246 -121.175 -3.80246 3.80246 1.93 0.000157813 0.000126288 0.00778018 0.00633874 34 2495 25 6.87369e+06 237555 618332. 2139.56 4.16 0.147391 0.138876 25762 151098 -1 2013 23 1489 2217 176461 41044 3.1862 3.1862 -121.365 -3.1862 0 0 787024. 2723.27 0.83 0.18 0.29 -1 -1 0.83 0.0998266 0.098435 114 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 22.54 vpr 64.34 MiB -1 -1 0.43 21584 1 0.11 -1 -1 33876 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 25.6 MiB 8.11 921 12141 3304 7964 873 64.3 MiB 0.24 0.00 3.48905 -102.447 -3.48905 3.48905 2.72 0.000179988 0.000141898 0.0105803 0.00845878 26 2465 24 6.87369e+06 475111 503264. 1741.40 3.82 0.071131 0.0645333 24322 120374 -1 2134 19 1258 2349 180203 40845 3.06356 3.06356 -107.013 -3.06356 0 0 618332. 2139.56 1.09 0.02 0.19 -1 -1 1.09 0.1333 0.13263 124 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 20.17 vpr 63.75 MiB -1 -1 0.45 21432 1 0.02 -1 -1 33560 -1 -1 35 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 25.0 MiB 6.99 887 17159 5443 8925 2791 63.8 MiB 0.18 0.00 4.16979 -108.155 -4.16979 4.16979 2.58 6.3706e-05 4.9913e-05 0.137375 0.135498 28 2132 25 6.87369e+06 489084 531479. 1839.03 2.77 0.201414 0.196002 24610 126494 -1 1890 23 1185 2097 149261 34011 3.5961 3.5961 -107.81 -3.5961 0 0 648988. 2245.63 1.13 0.09 0.27 -1 -1 1.13 0.00967635 0.00838358 117 27 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 23.82 vpr 63.89 MiB -1 -1 0.30 21432 1 0.11 -1 -1 33856 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 25.3 MiB 10.29 720 7853 2018 5047 788 63.9 MiB 0.22 0.00 4.09699 -121.029 -4.09699 4.09699 2.89 0.00014649 0.000117609 0.0557506 0.0542115 28 2181 20 6.87369e+06 237555 531479. 1839.03 3.52 0.0811081 0.0755246 24610 126494 -1 1811 24 1496 2619 190050 43819 3.00226 3.00226 -118.43 -3.00226 0 0 648988. 2245.63 0.85 0.13 0.25 -1 -1 0.85 0.0115239 0.0100459 105 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 24.07 vpr 64.30 MiB -1 -1 0.46 21280 1 0.06 -1 -1 33704 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 25.6 MiB 9.88 1031 14256 4617 7292 2347 64.3 MiB 0.11 0.00 3.6774 -127.4 -3.6774 3.6774 2.71 0.000176986 0.000141073 0.00876203 0.00699472 34 2685 25 6.87369e+06 237555 618332. 2139.56 4.61 0.0513892 0.0424255 25762 151098 -1 2119 21 1403 2128 175919 39592 3.0892 3.0892 -123.982 -3.0892 0 0 787024. 2723.27 0.81 0.15 0.22 -1 -1 0.81 0.00764843 0.00655914 122 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 17.84 vpr 64.21 MiB -1 -1 0.50 21128 1 0.05 -1 -1 33940 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65748 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.5 MiB 2.66 1006 10105 2485 6935 685 64.2 MiB 0.18 0.00 4.52456 -130.912 -4.52456 4.52456 3.08 0.000193372 0.000158801 0.0778823 0.0759039 26 2792 34 6.87369e+06 433189 503264. 1741.40 5.02 0.209922 0.203266 24322 120374 -1 2448 21 1440 2466 335391 89771 4.1193 4.1193 -135.113 -4.1193 0 0 618332. 2139.56 0.78 0.12 0.30 -1 -1 0.78 0.039717 0.0385584 129 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 29.64 vpr 64.51 MiB -1 -1 0.56 21584 1 0.16 -1 -1 33956 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66060 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.8 MiB 11.58 1030 16023 4465 9060 2498 64.5 MiB 0.36 0.00 4.80948 -150.045 -4.80948 4.80948 2.46 0.000176942 0.000144389 0.0169233 0.0137793 34 3428 33 6.87369e+06 321398 618332. 2139.56 6.67 0.161447 0.150138 25762 151098 -1 2449 24 2150 3216 257431 61542 4.23836 4.23836 -150.772 -4.23836 0 0 787024. 2723.27 1.05 0.32 0.32 -1 -1 1.05 0.011305 0.00989923 147 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 28.13 vpr 64.56 MiB -1 -1 0.36 21280 1 0.05 -1 -1 33380 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66108 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 13.99 992 11004 2505 7094 1405 64.6 MiB 0.20 0.00 5.358 -156.897 -5.358 5.358 2.33 0.000242429 0.000193313 0.011381 0.00927607 30 2877 24 6.87369e+06 503058 556674. 1926.21 4.22 0.18809 0.0356575 25186 138497 -1 2002 23 1283 2303 125778 31088 4.10065 4.10065 -142.7 -4.10065 0 0 706193. 2443.58 0.65 0.19 0.38 -1 -1 0.65 0.0132399 0.0115817 147 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 27.82 vpr 64.61 MiB -1 -1 0.44 21280 1 0.26 -1 -1 33784 -1 -1 41 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66156 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 25.8 MiB 11.28 1067 14184 3960 9254 970 64.6 MiB 0.39 0.00 4.55456 -143.325 -4.55456 4.55456 2.33 0.000215782 0.000172066 0.012717 0.0103013 28 3027 43 6.87369e+06 572927 531479. 1839.03 4.93 0.207036 0.198649 24610 126494 -1 2564 21 1734 3064 262501 59491 3.8094 3.8094 -142.318 -3.8094 0 0 648988. 2245.63 0.73 0.10 0.61 -1 -1 0.73 0.0124746 0.0109496 148 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 22.48 vpr 63.75 MiB -1 -1 0.51 21280 1 0.15 -1 -1 33912 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 25.2 MiB 8.25 842 13261 4606 6728 1927 63.8 MiB 0.19 0.00 4.07653 -124.408 -4.07653 4.07653 2.42 7.0062e-05 5.5974e-05 0.146543 0.110637 34 2031 21 6.87369e+06 237555 618332. 2139.56 4.71 0.205748 0.163126 25762 151098 -1 1703 19 962 1667 121009 28305 3.04731 3.04731 -111.246 -3.04731 0 0 787024. 2723.27 0.69 0.03 0.37 -1 -1 0.69 0.00899034 0.00787086 99 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 26.21 vpr 64.23 MiB -1 -1 0.54 21432 1 0.20 -1 -1 34056 -1 -1 22 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 25.6 MiB 11.39 1040 10332 2707 6497 1128 64.2 MiB 0.16 0.00 4.61482 -143.916 -4.61482 4.61482 2.36 0.000170814 0.00013764 0.0113869 0.00931017 34 2561 21 6.87369e+06 307425 618332. 2139.56 4.62 0.0545508 0.0457899 25762 151098 -1 2200 24 1763 2818 238272 51426 3.9216 3.9216 -141.718 -3.9216 0 0 787024. 2723.27 1.03 0.10 0.30 -1 -1 1.03 0.0103456 0.00909204 136 63 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 24.47 vpr 64.24 MiB -1 -1 0.64 21280 1 0.02 -1 -1 33848 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65784 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.5 MiB 9.06 994 8535 2039 6107 389 64.2 MiB 0.08 0.00 5.21006 -151.071 -5.21006 5.21006 3.12 0.000159427 0.00012768 0.0114246 0.00944575 34 2957 23 6.87369e+06 321398 618332. 2139.56 5.03 0.0584212 0.0487153 25762 151098 -1 2368 21 1687 2792 256911 57806 3.94176 3.94176 -140.022 -3.94176 0 0 787024. 2723.27 0.78 0.18 0.28 -1 -1 0.78 0.00927597 0.00825864 140 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 22.36 vpr 64.05 MiB -1 -1 0.19 21280 1 0.11 -1 -1 33744 -1 -1 28 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65592 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 25.5 MiB 7.60 1089 16207 4865 8603 2739 64.1 MiB 0.39 0.13 5.3663 -151.531 -5.3663 5.3663 2.57 0.00016299 0.000132014 0.200524 0.197734 34 2572 26 6.87369e+06 391268 618332. 2139.56 4.68 0.309481 0.299374 25762 151098 -1 2215 23 1619 2600 183520 43034 4.4486 4.4486 -143.379 -4.4486 0 0 787024. 2723.27 0.90 0.16 0.46 -1 -1 0.90 0.0118623 0.010397 141 47 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 25.81 vpr 64.35 MiB -1 -1 0.62 21280 1 0.05 -1 -1 33828 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65892 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 25.8 MiB 11.50 902 15003 4201 8477 2325 64.3 MiB 0.20 0.10 4.69758 -137.432 -4.69758 4.69758 3.03 0.00017586 0.000138935 0.0145663 0.0117314 28 2839 48 6.87369e+06 433189 531479. 1839.03 4.43 0.204168 0.195417 24610 126494 -1 2184 20 1415 2315 189694 44392 3.7954 3.7954 -136.767 -3.7954 0 0 648988. 2245.63 0.58 0.27 0.18 -1 -1 0.58 0.11292 0.11145 136 83 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 24.15 vpr 64.06 MiB -1 -1 0.49 21584 1 0.15 -1 -1 33820 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65600 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 25.5 MiB 8.25 1057 15709 4238 9990 1481 64.1 MiB 0.15 0.00 4.73658 -142.328 -4.73658 4.73658 2.48 0.000192429 0.000158325 0.0160489 0.0130146 34 2693 29 6.87369e+06 293451 618332. 2139.56 4.46 0.365607 0.354475 25762 151098 -1 2414 24 1860 3277 244353 56063 3.99376 3.99376 -142.813 -3.99376 0 0 787024. 2723.27 0.73 0.41 0.32 -1 -1 0.73 0.14787 0.0116698 132 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 24.14 vpr 64.48 MiB -1 -1 0.49 21736 1 0.13 -1 -1 33836 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 25.8 MiB 8.36 980 14361 3795 8758 1808 64.5 MiB 0.23 0.00 4.08063 -123.956 -4.08063 4.08063 2.45 0.000173293 0.000138665 0.0116365 0.00942744 34 2277 22 6.87369e+06 405241 618332. 2139.56 4.29 0.0590924 0.0491969 25762 151098 -1 1855 21 1465 2435 157122 37309 2.92401 2.92401 -112.423 -2.92401 0 0 787024. 2723.27 1.19 0.24 0.72 -1 -1 1.19 0.165371 0.164343 132 85 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 17.87 vpr 63.86 MiB -1 -1 0.52 20824 1 0.07 -1 -1 33924 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.3 MiB 2.41 762 13381 3888 7655 1838 63.9 MiB 0.48 0.00 4.08063 -121.878 -4.08063 4.08063 2.17 0.000127364 0.000101096 0.0115594 0.00927363 30 1753 24 6.87369e+06 237555 556674. 1926.21 5.95 0.328848 0.272579 25186 138497 -1 1475 16 699 1012 58829 14121 2.80671 2.80671 -106.483 -2.80671 0 0 706193. 2443.58 0.72 0.11 0.13 -1 -1 0.72 0.00761888 0.00657686 96 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 27.83 vpr 64.21 MiB -1 -1 0.37 21432 1 0.07 -1 -1 33736 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65752 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 25.6 MiB 15.27 1078 12698 2986 8362 1350 64.2 MiB 0.16 0.00 4.62608 -141.267 -4.62608 4.62608 2.24 0.000195534 0.00016125 0.0119889 0.0096477 30 2506 24 6.87369e+06 475111 556674. 1926.21 2.89 0.287809 0.280734 25186 138497 -1 2052 20 1183 2080 122141 28584 3.6918 3.6918 -130.183 -3.6918 0 0 706193. 2443.58 0.85 0.14 0.25 -1 -1 0.85 0.0110472 0.00974873 137 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 30.14 vpr 63.94 MiB -1 -1 0.27 21432 1 0.25 -1 -1 33476 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65472 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 25.3 MiB 14.03 998 8827 2077 6176 574 63.9 MiB 0.19 0.00 4.56982 -152.779 -4.56982 4.56982 2.58 0.000311625 0.000272813 0.0111269 0.00904738 34 2791 32 6.87369e+06 293451 618332. 2139.56 4.84 0.14087 0.130225 25762 151098 -1 2300 24 2093 3481 261894 59837 3.6874 3.6874 -146.807 -3.6874 0 0 787024. 2723.27 1.10 0.13 0.37 -1 -1 1.10 0.0146963 0.012916 142 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 24.87 vpr 63.95 MiB -1 -1 0.44 21128 1 0.13 -1 -1 33740 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 25.3 MiB 10.55 877 12464 4060 6378 2026 63.9 MiB 0.23 0.00 4.35092 -123.721 -4.35092 4.35092 2.40 0.000138315 0.000109707 0.0291551 0.0267301 34 2390 25 6.87369e+06 223581 618332. 2139.56 4.00 0.180129 0.171184 25762 151098 -1 1912 19 1045 1383 113106 26026 3.3655 3.3655 -119.599 -3.3655 0 0 787024. 2723.27 1.16 0.25 0.24 -1 -1 1.16 0.00864042 0.00764285 106 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 13.91 vpr 63.88 MiB -1 -1 0.49 21280 1 0.05 -1 -1 33796 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 25.2 MiB 2.36 831 12143 3710 6458 1975 63.9 MiB 0.04 0.00 4.08753 -121.46 -4.08753 4.08753 2.51 0.000130321 0.000103266 0.00813313 0.00648839 28 2091 26 6.87369e+06 279477 531479. 1839.03 2.43 0.032326 0.0268989 24610 126494 -1 1926 22 1255 2098 151129 33631 3.06656 3.06656 -115.299 -3.06656 0 0 648988. 2245.63 0.97 0.10 0.32 -1 -1 0.97 0.0191137 0.018127 99 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 24.89 vpr 64.17 MiB -1 -1 0.43 21432 1 0.20 -1 -1 34116 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.6 MiB 10.15 1048 14871 5310 7645 1916 64.2 MiB 0.25 0.00 4.74578 -148.239 -4.74578 4.74578 2.16 0.000217443 0.000179441 0.154511 0.151479 36 2778 21 6.87369e+06 321398 648988. 2245.63 5.31 0.203356 0.19278 26050 158493 -1 2299 23 2032 2768 214916 47750 4.09326 4.09326 -145.711 -4.09326 0 0 828058. 2865.25 0.92 0.09 0.31 -1 -1 0.92 0.0144787 0.0129622 145 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 23.43 vpr 64.27 MiB -1 -1 0.56 21432 1 0.47 -1 -1 33828 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65816 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 25.6 MiB 8.04 1156 10291 2704 7024 563 64.3 MiB 0.20 0.00 5.18474 -149.951 -5.18474 5.18474 2.28 0.000173435 0.000138918 0.0106602 0.00869726 34 2836 43 6.87369e+06 377294 618332. 2139.56 4.75 0.177397 0.166598 25762 151098 -1 2209 21 1477 2262 145226 37923 4.8875 4.8875 -153.376 -4.8875 0 0 787024. 2723.27 1.03 0.16 0.41 -1 -1 1.03 0.0517608 0.0501269 142 56 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 17.97 vpr 64.36 MiB -1 -1 0.49 21432 1 0.09 -1 -1 33684 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.8 MiB 2.66 1079 20284 6521 10124 3639 64.4 MiB 0.23 0.00 5.37378 -147.82 -5.37378 5.37378 2.37 0.000175743 0.0001416 0.0177904 0.0144316 30 3023 31 6.87369e+06 503058 556674. 1926.21 4.03 0.139801 0.131127 25186 138497 -1 2085 21 1291 2437 138623 33500 4.25585 4.25585 -141.062 -4.25585 0 0 706193. 2443.58 1.08 0.08 0.31 -1 -1 1.08 0.0127445 0.0112248 157 3 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 22.13 vpr 64.25 MiB -1 -1 0.31 21432 1 0.03 -1 -1 33684 -1 -1 34 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 25.5 MiB 7.93 927 17397 5065 9948 2384 64.3 MiB 0.46 0.00 3.60295 -108.088 -3.60295 3.60295 2.72 0.000149172 0.000117939 0.083006 0.0801073 28 2143 16 6.87369e+06 475111 531479. 1839.03 3.59 0.104044 0.0978537 24610 126494 -1 1954 21 1477 2589 180577 42563 3.17156 3.17156 -109.399 -3.17156 0 0 648988. 2245.63 0.63 0.19 0.37 -1 -1 0.63 0.158986 0.0207749 119 52 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 17.86 vpr 63.88 MiB -1 -1 0.56 21128 1 0.02 -1 -1 34300 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 25.2 MiB 3.53 651 12980 3995 7984 1001 63.9 MiB 0.16 0.00 3.6605 -100.499 -3.6605 3.6605 2.63 0.000133245 0.000102794 0.0129438 0.0105119 34 1631 22 6.87369e+06 293451 618332. 2139.56 4.12 0.2536 0.244908 25762 151098 -1 1471 17 1000 1481 108358 24700 2.98326 2.98326 -98.5613 -2.98326 0 0 787024. 2723.27 0.89 0.16 0.37 -1 -1 0.89 0.00550685 0.0047051 96 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 28.21 vpr 64.48 MiB -1 -1 0.69 21432 1 0.03 -1 -1 33684 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66032 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 25.9 MiB 12.12 1305 7498 1697 5254 547 64.5 MiB 0.21 0.00 4.4144 -140.878 -4.4144 4.4144 3.05 0.000193586 0.000155586 0.0102645 0.00841528 34 3816 26 6.87369e+06 335372 618332. 2139.56 5.70 0.209201 0.19799 25762 151098 -1 3072 23 2124 3517 294906 66508 4.13856 4.13856 -146.202 -4.13856 0 0 787024. 2723.27 0.81 0.30 0.39 -1 -1 0.81 0.155998 0.154166 165 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 30.74 vpr 64.23 MiB -1 -1 0.39 21584 1 0.20 -1 -1 33564 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 25.6 MiB 15.64 1074 15151 5128 7714 2309 64.2 MiB 0.39 0.00 5.62787 -168.35 -5.62787 5.62787 3.08 0.000195413 0.000162177 0.0111841 0.00903981 34 2751 44 6.87369e+06 307425 618332. 2139.56 4.57 0.125654 0.115732 25762 151098 -1 2244 21 1792 2718 184181 44605 4.71195 4.71195 -159.067 -4.71195 0 0 787024. 2723.27 0.93 0.08 0.36 -1 -1 0.93 0.0648545 0.0634683 139 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 31.71 vpr 64.29 MiB -1 -1 0.48 21432 1 0.06 -1 -1 34084 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65832 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 25.6 MiB 16.51 919 12720 5050 5541 2129 64.3 MiB 0.41 0.00 4.44674 -144.261 -4.44674 4.44674 2.50 0.00016062 0.000126966 0.0264314 0.02378 34 2497 25 6.87369e+06 251529 618332. 2139.56 4.26 0.073152 0.0625917 25762 151098 -1 2129 21 1638 2383 187322 42493 3.67646 3.67646 -142.535 -3.67646 0 0 787024. 2723.27 0.88 0.11 0.30 -1 -1 0.88 0.0108914 0.00959515 118 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 17.61 vpr 64.34 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33780 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65888 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 25.8 MiB 4.09 976 10753 2429 7569 755 64.3 MiB 0.54 0.00 5.00965 -138.522 -5.00965 5.00965 2.41 0.000155334 0.000124383 0.00679763 0.00545239 32 2763 27 6.87369e+06 461137 586450. 2029.24 2.44 0.131443 0.125685 25474 144626 -1 2212 23 1337 2115 197538 43683 3.6091 3.6091 -126.097 -3.6091 0 0 744469. 2576.02 1.15 0.21 0.49 -1 -1 1.15 0.00988829 0.00863721 129 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 19.99 vpr 64.30 MiB -1 -1 0.48 21432 1 0.11 -1 -1 33488 -1 -1 34 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65848 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 25.7 MiB 6.71 1013 10087 2314 7206 567 64.3 MiB 0.12 0.00 4.42234 -128.528 -4.42234 4.42234 2.48 0.000210025 0.000173901 0.0109573 0.00897473 26 2786 25 6.87369e+06 475111 503264. 1741.40 3.48 0.302713 0.119406 24322 120374 -1 2350 23 1643 2720 217701 49985 4.30596 4.30596 -136.052 -4.30596 0 0 618332. 2139.56 0.94 0.28 0.21 -1 -1 0.94 0.0130602 0.0113431 149 50 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 20.47 vpr 64.15 MiB -1 -1 0.47 21584 1 0.16 -1 -1 33892 -1 -1 31 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 25.6 MiB 6.88 789 16473 4509 9304 2660 64.1 MiB 0.16 0.00 3.6543 -102.402 -3.6543 3.6543 2.47 0.000157977 0.000125103 0.0114113 0.00918502 30 2403 31 6.87369e+06 433189 556674. 1926.21 3.36 0.0384202 0.0318093 25186 138497 -1 1692 21 1163 2079 118397 30989 2.84601 2.84601 -99.6498 -2.84601 0 0 706193. 2443.58 1.13 0.07 0.34 -1 -1 1.13 0.0105219 0.00923325 124 51 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 26.24 vpr 64.34 MiB -1 -1 0.33 21280 1 0.14 -1 -1 33420 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 25.8 MiB 11.25 1043 7835 1690 4990 1155 64.3 MiB 0.14 0.00 4.80948 -147.863 -4.80948 4.80948 2.35 8.083e-05 6.2918e-05 0.120904 0.119769 38 2793 25 6.87369e+06 307425 678818. 2348.85 4.77 0.356462 0.331458 26626 170182 -1 2286 21 1725 2702 176685 43882 3.97676 3.97676 -143.812 -3.97676 0 0 902133. 3121.57 1.04 0.14 0.53 -1 -1 1.04 0.0118122 0.0104249 148 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 27.06 vpr 64.31 MiB -1 -1 0.30 21280 1 0.02 -1 -1 33584 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65856 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 25.8 MiB 11.54 1116 17964 5292 9872 2800 64.3 MiB 0.17 0.00 4.13563 -137.404 -4.13563 4.13563 2.45 8.7406e-05 6.708e-05 0.00957555 0.00757502 34 2483 28 6.87369e+06 503058 618332. 2139.56 5.17 0.233915 0.223526 25762 151098 -1 2092 21 1459 2325 157406 36334 3.12431 3.12431 -122.815 -3.12431 0 0 787024. 2723.27 1.11 0.06 0.37 -1 -1 1.11 0.0132458 0.0118161 147 62 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 20.09 vpr 63.97 MiB -1 -1 0.43 21128 1 0.06 -1 -1 33816 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 25.3 MiB 6.95 703 14184 4182 7144 2858 64.0 MiB 0.28 0.00 3.92008 -117.095 -3.92008 3.92008 2.06 0.000130365 0.000101356 0.0130918 0.0104772 32 1786 22 6.87369e+06 265503 586450. 2029.24 2.57 0.0443424 0.03859 25474 144626 -1 1465 18 1159 1649 106327 25517 2.95216 2.95216 -109.502 -2.95216 0 0 744469. 2576.02 0.96 0.05 0.37 -1 -1 0.96 0.00803945 0.00704296 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 20.83 vpr 64.20 MiB -1 -1 0.44 21280 1 0.02 -1 -1 33756 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 25.5 MiB 5.94 745 10056 2219 6943 894 64.2 MiB 0.08 0.00 4.29715 -118.471 -4.29715 4.29715 2.67 0.000175463 0.000142299 0.0117008 0.0095659 34 2412 25 6.87369e+06 237555 618332. 2139.56 4.97 0.121361 0.11164 25762 151098 -1 1921 22 1172 1607 147553 34263 3.38331 3.38331 -128.591 -3.38331 0 0 787024. 2723.27 0.84 0.02 0.34 -1 -1 0.84 0.00952054 0.00885081 112 58 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 21.30 vpr 64.37 MiB -1 -1 0.47 21432 1 0.02 -1 -1 34036 -1 -1 39 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 25.8 MiB 6.44 902 19380 5589 10619 3172 64.4 MiB 0.18 0.00 4.58512 -127.193 -4.58512 4.58512 2.91 0.000155813 0.000124815 0.0154607 0.0123699 30 2365 22 6.87369e+06 544980 556674. 1926.21 3.93 0.0444408 0.0369961 25186 138497 -1 1716 22 1241 2354 128386 30446 3.5538 3.5538 -120.664 -3.5538 0 0 706193. 2443.58 0.82 0.07 0.19 -1 -1 0.82 0.0114633 0.0100832 135 33 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 24.06 vpr 63.75 MiB -1 -1 0.55 21280 1 0.20 -1 -1 33708 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.2 MiB 11.31 749 6788 1524 4749 515 63.7 MiB 0.08 0.00 4.6958 -121.206 -4.6958 4.6958 2.31 0.000169203 0.00013788 0.00655129 0.00534007 30 1952 20 6.87369e+06 265503 556674. 1926.21 2.30 0.0735153 0.0687536 25186 138497 -1 1612 16 830 1112 65319 16469 3.46886 3.46886 -112.916 -3.46886 0 0 706193. 2443.58 1.12 0.01 0.38 -1 -1 1.12 0.00378377 0.00333699 107 31 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 26.02 vpr 64.00 MiB -1 -1 0.58 21280 1 0.21 -1 -1 33960 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65540 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 25.3 MiB 11.72 866 13092 4214 7388 1490 64.0 MiB 0.10 0.00 4.09853 -129.916 -4.09853 4.09853 2.25 0.00017348 0.000144012 0.0517077 0.0492828 34 2136 19 6.87369e+06 209608 618332. 2139.56 4.28 0.160242 0.15194 25762 151098 -1 1876 19 1305 2186 179380 40088 3.06026 3.06026 -118.527 -3.06026 0 0 787024. 2723.27 1.00 0.13 0.34 -1 -1 1.00 0.0974043 0.0963665 101 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 25.95 vpr 64.29 MiB -1 -1 0.41 21432 1 0.18 -1 -1 33660 -1 -1 37 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 25.8 MiB 9.88 1039 12628 3304 8275 1049 64.3 MiB 0.32 0.00 4.00054 -129.166 -4.00054 4.00054 2.13 0.000210017 0.000174169 0.0122035 0.00990819 30 2209 47 6.87369e+06 517032 556674. 1926.21 6.04 0.554985 0.542485 25186 138497 -1 1847 24 1361 2336 125733 29890 2.85166 2.85166 -116.929 -2.85166 0 0 706193. 2443.58 0.64 0.07 0.17 -1 -1 0.64 0.045678 0.0436281 141 64 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 26.14 vpr 63.98 MiB -1 -1 0.40 21128 1 0.13 -1 -1 33904 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65520 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 25.4 MiB 11.40 739 6272 1406 4366 500 64.0 MiB 0.04 0.00 3.6584 -112.307 -3.6584 3.6584 2.53 0.000146881 0.000116644 0.00726985 0.00588212 34 2230 21 6.87369e+06 237555 618332. 2139.56 4.11 0.12054 0.113228 25762 151098 -1 1774 21 1275 1857 140665 34493 3.10761 3.10761 -112.25 -3.10761 0 0 787024. 2723.27 1.02 0.23 0.53 -1 -1 1.02 0.00745575 0.00654715 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 23.18 vpr 64.41 MiB -1 -1 0.42 21280 1 0.05 -1 -1 33692 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65960 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 25.6 MiB 9.96 994 15431 4930 8161 2340 64.4 MiB 0.38 0.00 3.71714 -116.274 -3.71714 3.71714 2.43 0.00016668 0.000132315 0.154015 0.151407 28 2577 30 6.87369e+06 433189 531479. 1839.03 3.18 0.260622 0.253714 24610 126494 -1 2282 22 1256 2064 170461 37936 2.99431 2.99431 -116.308 -2.99431 0 0 648988. 2245.63 0.97 0.08 0.39 -1 -1 0.97 0.0116898 0.010177 129 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 24.73 vpr 64.34 MiB -1 -1 0.42 21584 1 0.06 -1 -1 33836 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65880 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 25.7 MiB 11.44 961 16511 5552 8275 2684 64.3 MiB 0.17 0.00 3.7214 -123.871 -3.7214 3.7214 3.01 0.000210592 0.00017045 0.0799071 0.0769423 30 2253 32 6.87369e+06 447163 556674. 1926.21 3.39 0.11623 0.107678 25186 138497 -1 1722 20 1533 2326 127313 31294 2.93501 2.93501 -117.678 -2.93501 0 0 706193. 2443.58 1.19 0.09 0.27 -1 -1 1.19 0.0117807 0.0103106 137 91 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 21.28 vpr 63.85 MiB -1 -1 0.42 21432 1 0.21 -1 -1 33736 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 25.3 MiB 8.28 737 5584 1099 4145 340 63.8 MiB 0.04 0.00 3.6034 -109.653 -3.6034 3.6034 2.54 0.000172967 0.000138711 0.00655164 0.00533344 34 2010 22 6.87369e+06 223581 618332. 2139.56 3.44 0.197616 0.173372 25762 151098 -1 1778 20 1088 1717 149494 35149 2.93831 2.93831 -111.61 -2.93831 0 0 787024. 2723.27 0.96 0.04 0.25 -1 -1 0.96 0.00950595 0.00830105 99 57 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 20.96 vpr 64.08 MiB -1 -1 0.35 21128 1 0.03 -1 -1 33692 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65616 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.3 MiB 5.02 952 10940 2740 7203 997 64.1 MiB 0.14 0.00 4.25609 -132.381 -4.25609 4.25609 2.59 0.000151853 0.000121995 0.0911806 0.0892098 34 2539 31 6.87369e+06 251529 618332. 2139.56 4.62 0.254826 0.209777 25762 151098 -1 2274 20 1537 2285 205051 45570 3.43621 3.43621 -129.843 -3.43621 0 0 787024. 2723.27 1.20 0.20 0.44 -1 -1 1.20 0.00827715 0.00723661 114 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 23.20 vpr 64.33 MiB -1 -1 0.42 21280 1 0.16 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 25.6 MiB 8.99 1054 12749 3289 7313 2147 64.3 MiB 0.36 0.00 4.80313 -136.884 -4.80313 4.80313 2.18 7.4449e-05 5.8209e-05 0.0104704 0.00848545 34 2729 44 6.87369e+06 307425 618332. 2139.56 4.30 0.0586755 0.0488335 25762 151098 -1 2281 19 1506 2130 160084 36271 4.02506 4.02506 -135.193 -4.02506 0 0 787024. 2723.27 1.01 0.21 0.21 -1 -1 1.01 0.0102614 0.00911307 132 30 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 24.01 vpr 63.86 MiB -1 -1 0.40 21584 1 0.02 -1 -1 33852 -1 -1 29 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65388 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 25.4 MiB 9.05 910 8331 2069 5702 560 63.9 MiB 0.06 0.00 4.10263 -113.755 -4.10263 4.10263 2.81 0.000161988 0.000130599 0.0169096 0.0153965 26 2355 25 6.87369e+06 405241 503264. 1741.40 3.92 0.205653 0.0381333 24322 120374 -1 2033 23 1259 2182 174835 40984 3.55251 3.55251 -115.502 -3.55251 0 0 618332. 2139.56 0.78 0.10 0.21 -1 -1 0.78 0.011704 0.0102749 123 55 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 25.23 vpr 64.60 MiB -1 -1 0.62 21584 1 0.14 -1 -1 33436 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 26.1 MiB 10.23 1103 15395 4881 8425 2089 64.6 MiB 0.25 0.00 5.21806 -166.108 -5.21806 5.21806 2.43 0.000182827 0.000148202 0.0237798 0.0138708 34 2947 24 6.87369e+06 307425 618332. 2139.56 4.30 0.152651 0.134698 25762 151098 -1 2371 20 1678 2569 223080 48160 4.13096 4.13096 -154.719 -4.13096 0 0 787024. 2723.27 1.05 0.12 0.42 -1 -1 1.05 0.01251 0.0110478 151 65 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 17.53 vpr 63.66 MiB -1 -1 0.52 21128 1 0.10 -1 -1 33776 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65192 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.2 MiB 2.28 761 8164 2247 5336 581 63.7 MiB 0.19 0.00 3.6213 -109.656 -3.6213 3.6213 2.52 0.000132315 0.000104858 0.00764862 0.00618307 34 1877 21 6.87369e+06 237555 618332. 2139.56 4.02 0.153606 0.146459 25762 151098 -1 1560 22 878 1383 100065 23147 2.69971 2.69971 -100.34 -2.69971 0 0 787024. 2723.27 0.87 0.18 0.14 -1 -1 0.87 0.00978808 0.0085085 92 4 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 22.05 vpr 64.48 MiB -1 -1 0.43 21432 1 0.22 -1 -1 33844 -1 -1 35 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66028 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 25.9 MiB 6.44 1098 17883 5450 10197 2236 64.5 MiB 0.21 0.00 4.40215 -147.898 -4.40215 4.40215 2.31 0.0001791 0.000141826 0.016478 0.0133201 34 2698 23 6.87369e+06 489084 618332. 2139.56 4.46 0.204551 0.192941 25762 151098 -1 2289 19 1528 2195 163597 37531 4.09906 4.09906 -150.382 -4.09906 0 0 787024. 2723.27 1.25 0.14 0.42 -1 -1 1.25 0.0123489 0.010729 145 90 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 28.71 vpr 64.36 MiB -1 -1 0.34 21280 1 0.15 -1 -1 33432 -1 -1 16 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65908 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 25.8 MiB 14.98 884 12808 4071 7270 1467 64.4 MiB 0.10 0.00 3.7416 -133.639 -3.7416 3.7416 2.39 0.000185557 0.000133548 0.0145308 0.0116667 34 2203 22 6.87369e+06 223581 618332. 2139.56 3.97 0.167213 0.138523 25762 151098 -1 1898 22 1647 2358 207288 44212 3.09651 3.09651 -131.753 -3.09651 0 0 787024. 2723.27 1.01 0.21 0.15 -1 -1 1.01 0.177656 0.176112 114 96 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 23.18 vpr 64.25 MiB -1 -1 0.35 21432 1 0.03 -1 -1 33524 -1 -1 32 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65796 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 25.6 MiB 9.73 1035 16083 4540 9099 2444 64.3 MiB 0.33 0.00 4.13563 -128.556 -4.13563 4.13563 2.53 0.000178336 0.000141814 0.155804 0.0300563 34 2321 22 6.87369e+06 447163 618332. 2139.56 3.70 0.241406 0.108683 25762 151098 -1 1975 20 1113 1723 125202 28251 2.88171 2.88171 -110.937 -2.88171 0 0 787024. 2723.27 0.78 0.14 0.36 -1 -1 0.78 0.12239 0.121288 134 60 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 27.47 vpr 64.60 MiB -1 -1 0.61 21432 1 0.13 -1 -1 33808 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66148 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 25.9 MiB 12.84 1287 13355 3699 8482 1174 64.6 MiB 0.26 0.00 5.89739 -178.153 -5.89739 5.89739 2.62 0.000182643 0.000146677 0.0152379 0.0125769 30 3132 24 6.87369e+06 349346 556674. 1926.21 3.01 0.0535792 0.0453289 25186 138497 -1 2431 22 1816 2892 196741 44670 4.7438 4.7438 -161.916 -4.7438 0 0 706193. 2443.58 0.97 0.06 0.23 -1 -1 0.97 0.0124387 0.0109805 171 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 19.27 vpr 63.44 MiB -1 -1 0.59 21128 1 0.43 -1 -1 33428 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64964 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 4.17 701 8879 2399 5497 983 63.4 MiB 0.02 0.00 3.00866 -95.1783 -3.00866 3.00866 2.29 5.4423e-05 4.1445e-05 0.00344419 0.0026929 34 1714 22 6.87369e+06 209608 618332. 2139.56 3.49 0.0229619 0.018796 25762 151098 -1 1446 22 914 1239 95931 21985 2.41177 2.41177 -93.2366 -2.41177 0 0 787024. 2723.27 0.86 0.08 0.56 -1 -1 0.86 0.155442 0.154411 81 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 21.09 vpr 64.02 MiB -1 -1 0.25 21128 1 0.03 -1 -1 34020 -1 -1 19 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65560 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 25.3 MiB 4.35 780 10931 2920 7179 832 64.0 MiB 0.14 0.00 4.09289 -125.17 -4.09289 4.09289 2.63 0.000138732 0.000110097 0.0106528 0.00854101 30 1832 21 6.87369e+06 265503 556674. 1926.21 6.08 0.052991 0.0439109 25186 138497 -1 1484 19 812 1262 82398 18839 2.96331 2.96331 -113.015 -2.96331 0 0 706193. 2443.58 0.91 0.04 0.35 -1 -1 0.91 0.0184988 0.0174497 105 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 15.59 vpr 63.84 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33992 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65368 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 25.3 MiB 2.97 823 13335 3842 8129 1364 63.8 MiB 0.22 0.00 3.6323 -119.992 -3.6323 3.6323 2.25 0.000169515 0.000139323 0.00897186 0.00703524 32 2531 30 6.87369e+06 321398 586450. 2029.24 2.94 0.0389559 0.0323161 25474 144626 -1 2024 23 1432 2515 224836 51322 3.19191 3.19191 -122.428 -3.19191 0 0 744469. 2576.02 0.71 0.15 0.21 -1 -1 0.71 0.0323575 0.0308986 109 34 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 14.86 vpr 63.75 MiB -1 -1 0.18 21280 1 0.03 -1 -1 33660 -1 -1 29 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65284 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 24.9 MiB 2.77 478 11804 3373 6324 2107 63.8 MiB 0.29 0.00 3.5473 -82.0121 -3.5473 3.5473 2.29 0.00011186 8.6921e-05 0.00848826 0.00661571 32 1406 23 6.87369e+06 405241 586450. 2029.24 2.43 0.224238 0.219024 25474 144626 -1 1113 21 759 1365 103068 25092 3.24821 3.24821 -82.8494 -3.24821 0 0 744469. 2576.02 0.96 0.14 0.29 -1 -1 0.96 0.00721949 0.00620565 87 29 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 25.09 vpr 64.49 MiB -1 -1 0.68 21280 1 0.03 -1 -1 33836 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66036 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 25.8 MiB 9.26 1101 11796 3845 6942 1009 64.5 MiB 0.11 0.00 4.3434 -133.109 -4.3434 4.3434 2.62 8.5428e-05 6.6476e-05 0.0118216 0.00980211 34 2898 48 6.87369e+06 279477 618332. 2139.56 4.35 0.0697086 0.057851 25762 151098 -1 2423 20 1440 2558 195916 43947 3.72146 3.72146 -131.72 -3.72146 0 0 787024. 2723.27 0.94 0.26 0.28 -1 -1 0.94 0.0118249 0.010334 133 72 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 24.82 vpr 64.62 MiB -1 -1 0.61 21584 1 0.04 -1 -1 33868 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66168 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 26.1 MiB 9.55 1005 17347 4974 10720 1653 64.6 MiB 0.48 0.08 4.12463 -135.699 -4.12463 4.12463 2.30 0.000174695 0.000139207 0.0174827 0.0142548 34 2407 22 6.87369e+06 433189 618332. 2139.56 3.99 0.0820274 0.0713159 25762 151098 -1 2069 22 1746 2660 180911 42069 3.30881 3.30881 -130.418 -3.30881 0 0 787024. 2723.27 0.88 0.15 0.36 -1 -1 0.88 0.0142291 0.0125481 143 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 24.91 vpr 64.22 MiB -1 -1 0.45 21128 1 0.25 -1 -1 33628 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 25.4 MiB 8.52 1161 17053 5989 8608 2456 64.2 MiB 0.25 0.00 5.4505 -158.266 -5.4505 5.4505 2.07 0.000176998 0.000143319 0.0795813 0.0763266 36 2675 22 6.89349e+06 338252 648988. 2245.63 5.71 0.128371 0.117427 26050 158493 -1 2304 20 1673 2418 173005 38338 4.47565 4.47565 -149.167 -4.47565 0 0 828058. 2865.25 0.85 0.18 0.63 -1 -1 0.85 0.00957657 0.0082788 149 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 20.74 vpr 64.20 MiB -1 -1 0.40 21280 1 0.08 -1 -1 33564 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 25.6 MiB 5.58 1183 17053 6028 7314 3711 64.2 MiB 0.32 0.00 4.96382 -147.599 -4.96382 4.96382 2.48 0.000185221 0.000152978 0.0174222 0.0142415 40 2569 24 6.89349e+06 366440 706193. 2443.58 4.65 0.0633972 0.0531138 26914 176310 -1 2410 21 2086 3030 245852 53097 4.44693 4.44693 -146.332 -4.44693 0 0 926341. 3205.33 1.30 0.09 0.24 -1 -1 1.30 0.0121252 0.0105801 157 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 21.58 vpr 63.75 MiB -1 -1 0.30 21280 1 0.23 -1 -1 33560 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65280 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 25.2 MiB 6.30 1005 8641 2306 5994 341 63.8 MiB 0.18 0.00 4.21693 -118.79 -4.21693 4.21693 2.64 0.000165577 0.000136217 0.00595313 0.00481065 34 2497 30 6.89349e+06 295971 618332. 2139.56 5.69 0.0524443 0.0442435 25762 151098 -1 2075 21 1394 1953 140315 31761 3.481 3.481 -115.563 -3.481 0 0 787024. 2723.27 0.96 0.10 0.28 -1 -1 0.96 0.0681163 0.0668224 125 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 21.95 vpr 63.76 MiB -1 -1 0.57 21432 1 0.02 -1 -1 33496 -1 -1 24 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65288 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 25.2 MiB 5.76 1042 11245 2935 7152 1158 63.8 MiB 0.36 0.00 4.87453 -132.17 -4.87453 4.87453 2.76 0.000131131 0.000103231 0.00891168 0.00719115 40 2177 26 6.89349e+06 338252 706193. 2443.58 3.98 0.118991 0.110701 26914 176310 -1 2110 21 1379 2258 178424 40311 3.77346 3.77346 -124.825 -3.77346 0 0 926341. 3205.33 1.49 0.07 0.38 -1 -1 1.49 0.0106657 0.00938011 134 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 23.32 vpr 64.04 MiB -1 -1 0.57 21584 1 0.22 -1 -1 33576 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65580 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 25.5 MiB 5.13 1138 14679 5112 7369 2198 64.0 MiB 0.19 0.00 5.26431 -151.77 -5.26431 5.26431 2.81 8.4178e-05 6.6136e-05 0.0106353 0.00857157 34 3290 30 6.89349e+06 324158 618332. 2139.56 6.37 0.115847 0.105756 25762 151098 -1 2611 22 1920 3410 320266 76372 4.37429 4.37429 -147.257 -4.37429 0 0 787024. 2723.27 0.91 0.24 0.35 -1 -1 0.91 0.0117727 0.0103205 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 24.12 vpr 64.25 MiB -1 -1 0.45 21432 1 0.04 -1 -1 33972 -1 -1 33 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65788 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 25.5 MiB 7.12 1321 18079 5361 9939 2779 64.2 MiB 0.45 0.00 4.04936 -131.962 -4.04936 4.04936 2.50 0.000178121 0.000132771 0.0628183 0.0122638 34 3361 47 6.89349e+06 465097 618332. 2139.56 6.19 0.31131 0.251722 25762 151098 -1 2778 21 1732 2914 219808 48366 3.70335 3.70335 -137.69 -3.70335 0 0 787024. 2723.27 1.06 0.28 0.25 -1 -1 1.06 0.0107926 0.00956445 162 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 18.37 vpr 63.77 MiB -1 -1 0.61 21128 1 0.04 -1 -1 34176 -1 -1 21 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 25.1 MiB 4.35 839 11260 3450 5917 1893 63.8 MiB 0.09 0.00 4.19007 -114.449 -4.19007 4.19007 2.64 0.000137292 0.000108949 0.044233 0.00826467 34 1915 21 6.89349e+06 295971 618332. 2139.56 4.34 0.119948 0.0784687 25762 151098 -1 1655 18 1154 1659 146368 31515 3.17986 3.17986 -105.452 -3.17986 0 0 787024. 2723.27 0.78 0.07 0.21 -1 -1 0.78 0.00843702 0.00722768 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 16.07 vpr 63.86 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33720 -1 -1 32 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65392 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 25.2 MiB 2.73 949 9383 2442 6271 670 63.9 MiB 0.16 0.00 3.43417 -103.803 -3.43417 3.43417 2.64 0.000147994 0.000117041 0.00818077 0.00660448 26 2457 27 6.89349e+06 451003 503264. 1741.40 3.83 0.130788 0.125164 24322 120374 -1 2161 21 1217 2108 198951 44635 2.60681 2.60681 -101.55 -2.60681 0 0 618332. 2139.56 0.94 0.02 0.17 -1 -1 0.94 0.00539005 0.00467584 119 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 21.79 vpr 63.85 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33580 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65384 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 25.2 MiB 6.39 1057 11652 3291 6897 1464 63.9 MiB 0.15 0.00 3.72781 -126.045 -3.72781 3.72781 2.44 6.9584e-05 5.2628e-05 0.00794743 0.00642072 36 2479 32 6.89349e+06 267783 648988. 2245.63 5.19 0.25551 0.246837 26050 158493 -1 2104 21 1429 1952 165378 35709 2.76806 2.76806 -114.99 -2.76806 0 0 828058. 2865.25 1.13 0.19 0.32 -1 -1 1.13 0.0860574 0.0846668 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 21.88 vpr 63.96 MiB -1 -1 0.27 21432 1 0.06 -1 -1 33500 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65496 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 25.2 MiB 7.59 828 7914 1799 5700 415 64.0 MiB 0.08 0.00 4.03358 -129.578 -4.03358 4.03358 2.79 0.000155201 0.000122814 0.00860274 0.00698644 34 2423 23 6.89349e+06 253689 618332. 2139.56 4.90 0.157708 0.149603 25762 151098 -1 1889 18 1292 1700 120374 28926 3.2385 3.2385 -123.374 -3.2385 0 0 787024. 2723.27 1.03 0.04 0.17 -1 -1 1.03 0.0185968 0.0173179 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 20.73 vpr 63.75 MiB -1 -1 0.37 21128 1 0.13 -1 -1 33884 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65276 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 25.1 MiB 6.51 926 14123 4183 7803 2137 63.7 MiB 0.14 0.00 4.47797 -129.601 -4.47797 4.47797 2.37 6.263e-05 4.9121e-05 0.00666466 0.00535488 36 2199 23 6.89349e+06 295971 648988. 2245.63 4.51 0.0440458 0.0363173 26050 158493 -1 1863 20 1236 1654 121267 27418 3.4952 3.4952 -120.568 -3.4952 0 0 828058. 2865.25 1.07 0.12 0.27 -1 -1 1.07 0.00947721 0.00827429 124 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 19.03 vpr 63.84 MiB -1 -1 0.39 21128 1 0.03 -1 -1 33688 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65376 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 25.4 MiB 4.68 952 13206 3630 8318 1258 63.8 MiB 0.10 0.00 3.6807 -113.75 -3.6807 3.6807 2.33 0.000156193 0.000127332 0.0299875 0.00961667 34 2268 22 6.89349e+06 239595 618332. 2139.56 4.23 0.290009 0.263579 25762 151098 -1 1953 19 1085 1467 115324 26320 3.22811 3.22811 -116.042 -3.22811 0 0 787024. 2723.27 1.11 0.13 0.46 -1 -1 1.11 0.106119 0.104901 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 21.93 vpr 63.82 MiB -1 -1 0.47 21584 1 0.04 -1 -1 33980 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65348 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 25.2 MiB 7.61 1096 16791 5267 9304 2220 63.8 MiB 0.20 0.00 4.09068 -133.499 -4.09068 4.09068 2.50 0.000198508 0.000163314 0.0170644 0.0137481 34 2716 23 6.89349e+06 324158 618332. 2139.56 4.67 0.0958319 0.0848305 25762 151098 -1 2330 21 1747 2714 224269 47993 3.20486 3.20486 -124.183 -3.20486 0 0 787024. 2723.27 0.76 0.04 0.25 -1 -1 0.76 0.0141967 0.0131484 143 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 23.57 vpr 64.22 MiB -1 -1 0.36 21280 1 0.16 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 25.6 MiB 6.26 1098 13348 3832 7332 2184 64.2 MiB 0.17 0.00 5.44961 -153.357 -5.44961 5.44961 2.31 0.000166728 0.000133456 0.0133028 0.010714 36 3003 29 6.89349e+06 338252 648988. 2245.63 7.54 0.158609 0.147505 26050 158493 -1 2305 21 2012 2798 189613 45478 4.37909 4.37909 -148.168 -4.37909 0 0 828058. 2865.25 0.87 0.25 0.38 -1 -1 0.87 0.0117438 0.0103645 153 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 21.27 vpr 63.53 MiB -1 -1 0.38 21280 1 0.08 -1 -1 33736 -1 -1 18 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65052 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 24.9 MiB 6.93 831 9374 2437 5969 968 63.5 MiB 0.18 0.00 3.17792 -97.7522 -3.17792 3.17792 2.69 0.000125564 9.9846e-05 0.00871104 0.00701499 34 1972 27 6.89349e+06 253689 618332. 2139.56 3.59 0.0596259 0.0364528 25762 151098 -1 1638 18 940 1326 89510 20951 2.71661 2.71661 -94.194 -2.71661 0 0 787024. 2723.27 1.03 0.16 0.31 -1 -1 1.03 0.00531485 0.00468482 102 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 23.39 vpr 64.37 MiB -1 -1 0.46 21432 1 0.03 -1 -1 33548 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65912 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 25.7 MiB 7.86 1293 12568 3874 7582 1112 64.4 MiB 0.28 0.00 4.1299 -137.165 -4.1299 4.1299 2.34 0.000193488 0.000155335 0.129421 0.126839 34 3535 29 6.89349e+06 338252 618332. 2139.56 5.03 0.177301 0.167009 25762 151098 -1 2788 23 2219 3501 275962 61516 3.65345 3.65345 -137.227 -3.65345 0 0 787024. 2723.27 0.96 0.30 0.26 -1 -1 0.96 0.0125185 0.0109158 159 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 24.27 vpr 63.88 MiB -1 -1 0.56 21584 1 0.03 -1 -1 33708 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 25.4 MiB 6.83 1050 11237 3157 6324 1756 63.9 MiB 0.19 0.00 4.12104 -133.15 -4.12104 4.12104 2.51 0.000201959 0.000135361 0.0114769 0.00929293 34 2644 33 6.89349e+06 310065 618332. 2139.56 5.08 0.302628 0.292097 25762 151098 -1 2226 20 1454 2138 168154 37059 2.99151 2.99151 -119.597 -2.99151 0 0 787024. 2723.27 1.10 0.03 0.30 -1 -1 1.10 0.00779777 0.00688851 142 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 21.98 vpr 64.17 MiB -1 -1 0.73 21128 1 0.08 -1 -1 33408 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65708 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 25.4 MiB 6.58 1106 9943 2735 6276 932 64.2 MiB 0.34 0.00 3.55425 -126.676 -3.55425 3.55425 2.33 0.000191948 0.00015908 0.0102347 0.0083218 34 2862 34 6.89349e+06 295971 618332. 2139.56 4.80 0.081078 0.0710734 25762 151098 -1 2261 21 1595 2084 154635 34776 2.92521 2.92521 -121.736 -2.92521 0 0 787024. 2723.27 1.00 0.29 0.27 -1 -1 1.00 0.00865996 0.00745008 131 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 17.39 vpr 63.63 MiB -1 -1 0.53 20976 1 0.03 -1 -1 33700 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 222 206 1 140 77 17 17 289 -1 unnamed_device 25.1 MiB 3.33 750 8227 2512 4388 1327 63.6 MiB 0.22 0.00 2.66469 -91.1536 -2.66469 2.66469 2.59 5.4469e-05 4.1216e-05 0.200041 0.198555 34 1569 21 6.89349e+06 211408 618332. 2139.56 3.74 0.409015 0.320328 25762 151098 -1 1355 14 606 676 48927 10985 2.17217 2.17217 -89.9899 -2.17217 0 0 787024. 2723.27 1.21 0.05 0.38 -1 -1 1.21 0.00583853 0.00512938 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 22.09 vpr 63.93 MiB -1 -1 0.24 21128 1 0.09 -1 -1 33852 -1 -1 19 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65460 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 25.2 MiB 7.05 945 9338 2566 6202 570 63.9 MiB 0.23 0.00 4.75752 -142.801 -4.75752 4.75752 2.42 0.000146087 0.000116232 0.00942941 0.00743356 36 2155 20 6.89349e+06 267783 648988. 2245.63 4.43 0.0493733 0.0406779 26050 158493 -1 1957 22 1225 1925 163923 35742 3.32256 3.32256 -127.555 -3.32256 0 0 828058. 2865.25 0.89 0.20 0.36 -1 -1 0.89 0.010323 0.00904507 117 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 19.62 vpr 64.27 MiB -1 -1 0.36 21432 1 0.14 -1 -1 34096 -1 -1 34 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65808 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 25.5 MiB 3.79 1106 14498 3974 9407 1117 64.3 MiB 0.31 0.00 4.73843 -148.84 -4.73843 4.73843 2.10 0.000159838 0.000128976 0.0480151 0.0455712 34 2741 36 6.89349e+06 479191 618332. 2139.56 4.53 0.0924301 0.0826887 25762 151098 -1 2294 20 1441 2135 164381 36417 4.00824 4.00824 -141.721 -4.00824 0 0 787024. 2723.27 1.00 0.20 0.18 -1 -1 1.00 0.0500119 0.0486807 151 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 20.70 vpr 64.38 MiB -1 -1 0.53 21432 1 0.10 -1 -1 33484 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 25.7 MiB 4.49 1263 9303 2806 5911 586 64.4 MiB 0.13 0.00 4.4892 -137.729 -4.4892 4.4892 2.30 0.000179038 0.000145934 0.0107695 0.00879205 34 3261 30 6.89349e+06 324158 618332. 2139.56 5.69 0.0984196 0.0884654 25762 151098 -1 2599 19 1835 2784 217381 46351 3.69166 3.69166 -135.469 -3.69166 0 0 787024. 2723.27 1.04 0.33 0.41 -1 -1 1.04 0.0120759 0.0106086 155 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 18.67 vpr 63.48 MiB -1 -1 0.39 20976 1 0.07 -1 -1 34132 -1 -1 18 26 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65000 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 24.8 MiB 3.35 418 9996 4123 4950 923 63.5 MiB 0.22 0.00 2.70371 -73.2251 -2.70371 2.70371 2.81 0.000105946 8.1485e-05 0.00853983 0.00661842 36 1235 30 6.89349e+06 253689 648988. 2245.63 4.26 0.0795398 0.0720086 26050 158493 -1 969 17 715 861 71372 17438 2.14365 2.14365 -67.9526 -2.14365 0 0 828058. 2865.25 0.82 0.17 0.22 -1 -1 0.82 0.00591336 0.00494052 75 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 17.79 vpr 63.89 MiB -1 -1 0.38 21128 1 0.06 -1 -1 33600 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65420 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 25.2 MiB 3.25 1037 13527 3557 8136 1834 63.9 MiB 0.22 0.00 4.54937 -129.45 -4.54937 4.54937 2.28 0.000152252 0.000120273 0.0120581 0.00969019 34 2454 22 6.89349e+06 324158 618332. 2139.56 3.94 0.0937873 0.0853824 25762 151098 -1 2055 23 1346 2426 175903 39239 3.5448 3.5448 -121.004 -3.5448 0 0 787024. 2723.27 1.19 0.08 0.32 -1 -1 1.19 0.0445351 0.0432386 119 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 14.96 vpr 63.37 MiB -1 -1 0.22 20976 1 0.07 -1 -1 33288 -1 -1 12 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64888 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 24.8 MiB 1.20 387 9836 3174 4591 2071 63.4 MiB 0.19 0.00 2.35942 -72.6422 -2.35942 2.35942 2.94 9.4139e-05 7.0639e-05 0.00748048 0.00591742 34 1203 34 6.89349e+06 169126 618332. 2139.56 4.50 0.0385843 0.0313698 25762 151098 -1 923 18 587 743 56885 15810 2.15406 2.15406 -75.681 -2.15406 0 0 787024. 2723.27 0.74 0.02 0.17 -1 -1 0.74 0.0058296 0.00487531 65 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 20.68 vpr 63.97 MiB -1 -1 0.26 21432 1 0.23 -1 -1 33540 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65504 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 25.4 MiB 5.16 1049 14175 4566 7521 2088 64.0 MiB 0.38 0.00 4.89708 -136.784 -4.89708 4.89708 2.42 0.000153844 0.000121804 0.0486893 0.0459391 34 2358 23 6.89349e+06 281877 618332. 2139.56 5.03 0.162207 0.152474 25762 151098 -1 2096 20 1206 1786 142525 31564 3.97096 3.97096 -128.615 -3.97096 0 0 787024. 2723.27 0.91 0.09 0.39 -1 -1 0.91 0.010172 0.00897861 125 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 15.77 vpr 63.89 MiB -1 -1 0.59 21128 1 0.04 -1 -1 33924 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65428 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 25.4 MiB 2.37 982 15863 4499 9572 1792 63.9 MiB 0.29 0.00 3.4448 -108.59 -3.4448 3.4448 2.47 0.000160124 0.000127726 0.00992976 0.00796932 30 2387 22 6.89349e+06 436909 556674. 1926.21 2.85 0.333538 0.327146 25186 138497 -1 1959 20 1197 2106 124320 29935 2.79101 2.79101 -104.316 -2.79101 0 0 706193. 2443.58 0.87 0.02 0.32 -1 -1 0.87 0.00564937 0.00503124 130 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 28.86 vpr 64.22 MiB -1 -1 2.74 21280 1 0.08 -1 -1 33544 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65760 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 7.70 1071 15639 5177 7703 2759 64.2 MiB 0.40 0.00 4.83798 -133.537 -4.83798 4.83798 2.27 7.6476e-05 6.0777e-05 0.0142363 0.0114557 36 2758 21 6.89349e+06 324158 648988. 2245.63 6.89 0.0615648 0.0513071 26050 158493 -1 2302 18 1377 2115 163695 35160 3.78876 3.78876 -128.419 -3.78876 0 0 828058. 2865.25 0.86 0.12 0.35 -1 -1 0.86 0.0105428 0.00937975 142 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 20.96 vpr 63.79 MiB -1 -1 0.29 21128 1 0.10 -1 -1 33676 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 25.2 MiB 6.22 990 13381 4387 7225 1769 63.8 MiB 0.23 0.00 3.7357 -124.935 -3.7357 3.7357 2.94 0.000158141 0.000125865 0.0131214 0.0104593 34 2226 21 6.89349e+06 239595 618332. 2139.56 4.00 0.577318 0.351787 25762 151098 -1 1912 21 1234 1820 133303 30491 3.11201 3.11201 -123.369 -3.11201 0 0 787024. 2723.27 0.91 0.11 0.30 -1 -1 0.91 0.0103176 0.00900796 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 21.87 vpr 63.79 MiB -1 -1 0.34 21128 1 0.08 -1 -1 33752 -1 -1 17 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 25.1 MiB 6.05 909 12754 4897 5949 1908 63.8 MiB 0.07 0.00 4.01762 -115.9 -4.01762 4.01762 2.53 0.000132799 0.00010365 0.0126227 0.00986177 34 2278 33 6.89349e+06 239595 618332. 2139.56 5.98 0.0506795 0.0414166 25762 151098 -1 1998 21 1029 1668 193909 63148 3.61455 3.61455 -117.663 -3.61455 0 0 787024. 2723.27 0.97 0.26 0.25 -1 -1 0.97 0.00960677 0.00840918 104 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 20.37 vpr 63.77 MiB -1 -1 0.57 21280 1 0.25 -1 -1 33740 -1 -1 20 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65304 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 25.1 MiB 5.26 770 10744 2793 6819 1132 63.8 MiB 0.27 0.00 4.27226 -116.484 -4.27226 4.27226 2.46 0.000147524 0.000117958 0.149002 0.00824494 34 2208 21 6.89349e+06 281877 618332. 2139.56 4.76 0.249153 0.102272 25762 151098 -1 1705 19 1133 1910 128252 31463 3.82765 3.82765 -122.486 -3.82765 0 0 787024. 2723.27 1.06 0.17 0.48 -1 -1 1.06 0.146382 0.145231 107 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 15.41 vpr 63.73 MiB -1 -1 0.56 21280 1 0.16 -1 -1 33720 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 24.9 MiB 2.13 762 11106 3345 5408 2353 63.7 MiB 0.08 0.00 3.95122 -118.483 -3.95122 3.95122 2.73 0.000146478 0.000116101 0.0119581 0.00988952 32 2205 41 6.89349e+06 239595 586450. 2029.24 3.25 0.0422495 0.0356058 25474 144626 -1 1767 20 1241 2040 155089 37004 2.94736 2.94736 -113.578 -2.94736 0 0 744469. 2576.02 0.71 0.14 0.26 -1 -1 0.71 0.00961496 0.00840644 101 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 18.64 vpr 63.83 MiB -1 -1 0.41 21432 1 0.03 -1 -1 33792 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65360 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 25.1 MiB 4.98 947 14081 4218 7922 1941 63.8 MiB 0.13 0.00 3.58045 -111.985 -3.58045 3.58045 2.71 0.000150592 0.000119266 0.0100022 0.00805501 34 2183 24 6.89349e+06 253689 618332. 2139.56 4.24 0.0864726 0.0782567 25762 151098 -1 1888 17 1055 1549 124959 27488 2.96526 2.96526 -111.334 -2.96526 0 0 787024. 2723.27 0.71 0.07 0.24 -1 -1 0.71 0.00751459 0.00642917 108 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 20.80 vpr 63.95 MiB -1 -1 0.33 21280 1 0.11 -1 -1 33804 -1 -1 22 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65484 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 25.4 MiB 5.88 967 13763 3852 8263 1648 63.9 MiB 0.15 0.00 3.56757 -107.571 -3.56757 3.56757 2.31 0.000149774 0.000117813 0.0925902 0.0901656 34 2211 20 6.89349e+06 310065 618332. 2139.56 3.99 0.219681 0.210222 25762 151098 -1 1919 21 1319 1792 133626 30538 2.68166 2.68166 -105.653 -2.68166 0 0 787024. 2723.27 0.89 0.27 0.28 -1 -1 0.89 0.184225 0.182958 120 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 24.19 vpr 64.19 MiB -1 -1 0.56 21280 1 0.07 -1 -1 33984 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65728 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 25.5 MiB 6.21 1340 9395 2079 6207 1109 64.2 MiB 0.14 0.00 4.57545 -132.533 -4.57545 4.57545 2.52 8.4226e-05 6.7783e-05 0.00503451 0.00413113 36 2944 20 6.89349e+06 352346 648988. 2245.63 6.30 0.473721 0.358325 26050 158493 -1 2516 22 1406 2458 184861 40610 3.93936 3.93936 -129.14 -3.93936 0 0 828058. 2865.25 0.90 0.21 0.26 -1 -1 0.90 0.0103301 0.00902842 159 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 25.06 vpr 64.46 MiB -1 -1 0.47 21432 1 0.02 -1 -1 33840 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66004 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 25.7 MiB 7.15 1272 11983 3218 7752 1013 64.5 MiB 0.30 0.05 4.72237 -154.591 -4.72237 4.72237 2.46 0.000182637 0.000146584 0.158053 0.155323 36 3300 35 6.89349e+06 338252 648988. 2245.63 7.15 0.301791 0.289655 26050 158493 -1 2824 20 2224 3106 243367 52681 3.69635 3.69635 -143.014 -3.69635 0 0 828058. 2865.25 0.98 0.33 0.29 -1 -1 0.98 0.123518 0.122076 168 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 18.79 vpr 63.70 MiB -1 -1 0.47 21432 1 0.17 -1 -1 33696 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65224 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 25.2 MiB 4.48 841 12681 4546 5579 2556 63.7 MiB 0.09 0.00 4.0919 -121.826 -4.0919 4.0919 2.46 6.4517e-05 4.9961e-05 0.0111589 0.00889523 34 2184 25 6.89349e+06 253689 618332. 2139.56 4.61 0.052851 0.0435675 25762 151098 -1 1749 31 1232 2059 335521 138536 3.03485 3.03485 -111.97 -3.03485 0 0 787024. 2723.27 1.07 0.37 0.25 -1 -1 1.07 0.0107278 0.00910154 109 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 23.18 vpr 64.05 MiB -1 -1 0.33 21280 1 0.02 -1 -1 33904 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 25.4 MiB 7.83 1305 10618 3120 6525 973 64.0 MiB 0.22 0.00 4.27101 -135.48 -4.27101 4.27101 2.47 0.000182376 0.000148056 0.0114622 0.00929948 34 3173 45 6.89349e+06 352346 618332. 2139.56 5.47 0.182183 0.17048 25762 151098 -1 2697 22 1768 2621 206634 45615 3.61005 3.61005 -135.072 -3.61005 0 0 787024. 2723.27 0.90 0.16 0.25 -1 -1 0.90 0.0261556 0.0244935 160 61 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 27.70 vpr 64.15 MiB -1 -1 0.35 21432 1 0.06 -1 -1 33864 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65688 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 25.5 MiB 8.63 1252 16858 5939 8225 2694 64.1 MiB 0.39 0.00 5.45066 -163.759 -5.45066 5.45066 2.65 0.000229146 0.000188047 0.0179937 0.014615 36 3174 28 6.89349e+06 352346 648988. 2245.63 8.51 0.276731 0.165252 26050 158493 -1 2710 20 2061 2993 257997 53984 4.53995 4.53995 -156.682 -4.53995 0 0 828058. 2865.25 1.04 0.13 0.25 -1 -1 1.04 0.0115974 0.0101953 163 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 23.94 vpr 64.57 MiB -1 -1 0.50 21736 1 0.16 -1 -1 33784 -1 -1 25 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66116 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 25.8 MiB 7.73 1213 15688 5612 7679 2397 64.6 MiB 0.34 0.00 5.84064 -169.918 -5.84064 5.84064 2.54 0.000207408 0.000159411 0.0171914 0.0138646 34 3647 42 6.89349e+06 352346 618332. 2139.56 6.28 0.144176 0.132151 25762 151098 -1 2864 25 2196 3313 285768 66829 5.40808 5.40808 -173.675 -5.40808 0 0 787024. 2723.27 0.88 0.35 0.45 -1 -1 0.88 0.193491 0.191939 166 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 21.49 vpr 64.15 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33824 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 25.5 MiB 6.29 1263 9879 2667 6477 735 64.2 MiB 0.18 0.00 4.11004 -128.233 -4.11004 4.11004 2.30 8.4418e-05 6.5533e-05 0.0085894 0.00702498 36 2766 20 6.89349e+06 338252 648988. 2245.63 5.15 0.199224 0.110009 26050 158493 -1 2415 22 1610 2307 167831 36881 3.20466 3.20466 -120.439 -3.20466 0 0 828058. 2865.25 1.00 0.07 0.21 -1 -1 1.00 0.0124044 0.0106203 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 22.97 vpr 63.79 MiB -1 -1 0.40 21128 1 0.02 -1 -1 33604 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65324 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 25.1 MiB 5.90 1023 13992 4497 7044 2451 63.8 MiB 0.36 0.00 4.45885 -119.521 -4.45885 4.45885 2.43 6.2569e-05 4.934e-05 0.0111908 0.00876703 34 2549 18 6.89349e+06 281877 618332. 2139.56 5.60 0.278267 0.0799272 25762 151098 -1 2088 21 1165 1640 132247 28991 3.7047 3.7047 -118.264 -3.7047 0 0 787024. 2723.27 0.73 0.07 0.20 -1 -1 0.73 0.0104538 0.00903745 120 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 28.93 vpr 64.66 MiB -1 -1 0.75 21888 1 0.16 -1 -1 33936 -1 -1 31 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66216 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 26.0 MiB 7.24 1484 18239 5692 9124 3423 64.7 MiB 0.31 0.00 5.31607 -168.894 -5.31607 5.31607 2.48 0.000202766 0.000164484 0.163627 0.160066 36 4388 31 6.89349e+06 436909 648988. 2245.63 11.40 0.371241 0.358157 26050 158493 -1 3294 23 2757 4157 326606 70776 4.48819 4.48819 -160.677 -4.48819 0 0 828058. 2865.25 0.85 0.27 0.39 -1 -1 0.85 0.0108999 0.00935499 203 87 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 20.37 vpr 63.79 MiB -1 -1 0.41 21128 1 0.22 -1 -1 33616 -1 -1 18 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65316 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 25.1 MiB 5.34 846 14606 5266 7102 2238 63.8 MiB 0.24 0.00 3.7437 -110.334 -3.7437 3.7437 2.80 0.000133293 0.000105081 0.012947 0.0103795 34 2165 23 6.89349e+06 253689 618332. 2139.56 4.19 0.204173 0.195921 25762 151098 -1 1930 20 1178 1601 118497 27392 3.02146 3.02146 -107.83 -3.02146 0 0 787024. 2723.27 1.01 0.14 0.37 -1 -1 1.01 0.117757 0.116637 106 28 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 18.75 vpr 64.16 MiB -1 -1 0.47 21432 1 0.19 -1 -1 33900 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65700 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 5.09 1166 14639 3979 9152 1508 64.2 MiB 0.31 0.00 4.78472 -144.026 -4.78472 4.78472 2.32 0.000162417 0.000131542 0.0144069 0.0117087 30 2873 22 6.89349e+06 324158 556674. 1926.21 3.01 0.0414557 0.0347172 25186 138497 -1 2298 18 1267 2011 140907 30722 3.7785 3.7785 -134.678 -3.7785 0 0 706193. 2443.58 0.98 0.07 0.23 -1 -1 0.98 0.00949522 0.00836261 140 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 23.51 vpr 64.31 MiB -1 -1 0.49 21584 1 0.07 -1 -1 33708 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65852 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 25.5 MiB 7.31 1247 9495 2379 6397 719 64.3 MiB 0.22 0.00 4.43179 -132.548 -4.43179 4.43179 2.33 0.000181305 0.00014822 0.0100271 0.00815757 34 3354 35 6.89349e+06 324158 618332. 2139.56 5.32 0.0605553 0.0502183 25762 151098 -1 2766 20 1589 2479 199855 43969 3.7586 3.7586 -136.828 -3.7586 0 0 787024. 2723.27 1.17 0.21 0.35 -1 -1 1.17 0.0114649 0.010084 149 53 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 15.31 vpr 63.92 MiB -1 -1 0.33 21280 1 0.06 -1 -1 33716 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 25.2 MiB 2.03 983 11748 2712 8028 1008 63.9 MiB 0.31 0.00 4.26729 -129.037 -4.26729 4.26729 2.47 0.000158889 0.000127092 0.0103642 0.00837274 30 2359 20 6.89349e+06 366440 556674. 1926.21 2.71 0.135345 0.129445 25186 138497 -1 2080 23 1168 2312 157273 35494 3.5399 3.5399 -124.689 -3.5399 0 0 706193. 2443.58 0.85 0.04 0.28 -1 -1 0.85 0.010869 0.00949345 123 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 23.38 vpr 64.15 MiB -1 -1 0.40 21584 1 0.03 -1 -1 33808 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 25.5 MiB 6.08 1053 12951 4521 6182 2248 64.2 MiB 0.21 0.00 4.44301 -128.576 -4.44301 4.44301 2.52 0.000166899 0.000132888 0.0202605 0.0111968 36 2766 29 6.89349e+06 324158 648988. 2245.63 6.60 0.0667079 0.0499854 26050 158493 -1 2198 23 1688 2397 202147 44724 3.11036 3.11036 -115.539 -3.11036 0 0 828058. 2865.25 1.03 0.15 0.32 -1 -1 1.03 0.0118027 0.0102965 148 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 24.13 vpr 64.14 MiB -1 -1 0.41 21432 1 0.11 -1 -1 33712 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 25.6 MiB 6.97 1202 11788 3122 7816 850 64.1 MiB 0.25 0.10 4.19329 -133.825 -4.19329 4.19329 2.49 0.000183749 0.000148657 0.0126274 0.010324 36 2908 34 6.89349e+06 338252 648988. 2245.63 6.10 0.179532 0.0537203 26050 158493 -1 2519 23 1772 2730 228071 48644 3.66955 3.66955 -130.973 -3.66955 0 0 828058. 2865.25 0.98 0.45 0.48 -1 -1 0.98 0.0136083 0.012064 154 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 21.47 vpr 64.14 MiB -1 -1 0.32 21584 1 0.06 -1 -1 33708 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65684 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 25.6 MiB 6.79 1324 15969 4574 9361 2034 64.1 MiB 0.44 0.00 4.16268 -137.652 -4.16268 4.16268 2.63 0.000185264 0.000149438 0.0173496 0.014153 34 3306 30 6.89349e+06 366440 618332. 2139.56 4.25 0.0703779 0.0585609 25762 151098 -1 2613 35 2421 3460 433837 152341 3.23786 3.23786 -127.791 -3.23786 0 0 787024. 2723.27 0.80 0.32 0.21 -1 -1 0.80 0.0174378 0.0151386 164 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 20.71 vpr 63.71 MiB -1 -1 0.42 21128 1 0.23 -1 -1 33856 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65240 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 25.2 MiB 5.93 1043 15337 4572 8852 1913 63.7 MiB 0.27 0.00 4.60527 -135.983 -4.60527 4.60527 2.38 0.000151061 0.000118608 0.00866557 0.00693249 34 2447 21 6.89349e+06 295971 618332. 2139.56 4.67 0.184195 0.175787 25762 151098 -1 2097 19 1155 1733 125369 28657 4.00016 4.00016 -131.526 -4.00016 0 0 787024. 2723.27 0.99 0.06 0.49 -1 -1 0.99 0.00991432 0.00858093 128 24 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 21.76 vpr 63.96 MiB -1 -1 0.74 21584 1 0.17 -1 -1 33968 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 25.2 MiB 5.06 999 13883 3878 7792 2213 64.0 MiB 0.30 0.00 4.84598 -138.728 -4.84598 4.84598 2.74 0.000152575 0.00012219 0.122713 0.120135 34 2662 35 6.89349e+06 310065 618332. 2139.56 5.00 0.206561 0.1953 25762 151098 -1 2249 18 1376 1994 140570 32119 3.8456 3.8456 -130.88 -3.8456 0 0 787024. 2723.27 1.03 0.11 0.43 -1 -1 1.03 0.00974207 0.00861996 135 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 20.99 vpr 64.38 MiB -1 -1 0.47 21584 1 0.02 -1 -1 33664 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65924 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 25.5 MiB 4.92 1200 9111 2304 5966 841 64.4 MiB 0.05 0.00 4.69282 -141.391 -4.69282 4.69282 2.41 0.000178572 0.000145133 0.00648746 0.00525394 34 3322 27 6.89349e+06 338252 618332. 2139.56 6.69 0.0559609 0.0465733 25762 151098 -1 2687 20 1784 2831 220165 49356 4.12199 4.12199 -138.153 -4.12199 0 0 787024. 2723.27 0.90 0.27 0.37 -1 -1 0.90 0.0119034 0.0105188 156 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 26.04 vpr 64.46 MiB -1 -1 0.48 21584 1 0.19 -1 -1 33508 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66008 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 25.7 MiB 8.53 1343 12167 3516 8024 627 64.5 MiB 0.31 0.04 4.50405 -138.501 -4.50405 4.50405 2.48 0.0390411 0.0390027 0.242501 0.239967 38 3202 26 6.89349e+06 352346 678818. 2348.85 5.83 0.293853 0.28163 26626 170182 -1 2797 19 1761 2600 192101 40142 3.86596 3.86596 -136.397 -3.86596 0 0 902133. 3121.57 0.87 0.04 0.37 -1 -1 0.87 0.00867032 0.00763446 166 77 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 19.98 vpr 63.59 MiB -1 -1 0.50 21128 1 0.12 -1 -1 33556 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65112 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 25.1 MiB 5.65 626 7008 1670 4854 484 63.6 MiB 0.04 0.00 3.61459 -104.917 -3.61459 3.61459 2.67 0.000127579 9.9978e-05 0.00710085 0.00559399 34 2255 39 6.89349e+06 211408 618332. 2139.56 5.01 0.0472596 0.0387255 25762 151098 -1 1534 21 1103 1639 109289 28405 2.72791 2.72791 -97.7045 -2.72791 0 0 787024. 2723.27 0.88 0.14 0.38 -1 -1 0.88 0.119369 0.118679 96 23 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 21.84 vpr 64.22 MiB -1 -1 0.29 21280 1 0.05 -1 -1 33924 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65764 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 25.5 MiB 4.38 1155 12345 3444 6961 1940 64.2 MiB 0.16 0.00 4.26535 -147.353 -4.26535 4.26535 2.87 0.000160263 0.000127956 0.0299192 0.0270681 34 3076 30 6.89349e+06 281877 618332. 2139.56 5.54 0.184282 0.173925 25762 151098 -1 2487 22 1956 2642 242136 49222 3.74935 3.74935 -148.334 -3.74935 0 0 787024. 2723.27 1.06 0.16 0.53 -1 -1 1.06 0.0134525 0.0116382 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 25.54 vpr 64.24 MiB -1 -1 0.28 21584 1 0.19 -1 -1 33952 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65780 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 25.7 MiB 7.14 1356 17711 6423 8690 2598 64.2 MiB 0.29 0.00 5.51412 -162.32 -5.51412 5.51412 2.28 0.000243559 0.000202251 0.0641045 0.0604416 34 3734 45 6.89349e+06 352346 618332. 2139.56 7.59 0.481313 0.468255 25762 151098 -1 2852 21 1994 3095 235675 53439 4.68885 4.68885 -157.727 -4.68885 0 0 787024. 2723.27 0.94 0.30 0.35 -1 -1 0.94 0.125407 0.123868 168 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 24.40 vpr 64.20 MiB -1 -1 0.45 21432 1 0.08 -1 -1 33936 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 25.5 MiB 6.80 1176 13694 3960 8110 1624 64.2 MiB 0.26 0.00 4.43296 -141.765 -4.43296 4.43296 2.85 7.9431e-05 6.1889e-05 0.0112061 0.00943761 36 2597 19 6.89349e+06 310065 648988. 2245.63 6.72 0.146085 0.0507587 26050 158493 -1 2335 18 1526 2255 185076 38993 3.01051 3.01051 -123.037 -3.01051 0 0 828058. 2865.25 0.69 0.16 0.28 -1 -1 0.69 0.126641 0.125282 144 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 20.00 vpr 63.73 MiB -1 -1 0.27 21280 1 0.09 -1 -1 33768 -1 -1 27 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65260 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 25.2 MiB 4.79 953 10979 2941 7323 715 63.7 MiB 0.21 0.00 4.13238 -125.523 -4.13238 4.13238 2.81 0.00015005 0.000118858 0.00707004 0.00557941 34 2254 24 6.89349e+06 380534 618332. 2139.56 4.82 0.0457448 0.0376598 25762 151098 -1 2013 22 1356 2162 198958 42605 3.39485 3.39485 -121.521 -3.39485 0 0 787024. 2723.27 1.02 0.15 0.36 -1 -1 1.02 0.0523629 0.00843968 118 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 34.47 vpr 64.69 MiB -1 -1 0.34 21736 1 0.17 -1 -1 33908 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66244 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 26.0 MiB 11.68 1587 13555 4266 6864 2425 64.7 MiB 0.44 0.00 6.66529 -189.759 -6.66529 6.66529 2.09 0.000191159 0.000153143 0.0559942 0.053203 36 3787 26 6.89349e+06 380534 648988. 2245.63 11.99 0.18235 0.133739 26050 158493 -1 3300 21 2337 3726 323115 67739 5.11714 5.11714 -175.516 -5.11714 0 0 828058. 2865.25 1.19 0.33 0.21 -1 -1 1.19 0.155697 0.153936 188 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 20.23 vpr 64.16 MiB -1 -1 0.69 21584 1 0.03 -1 -1 33960 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 25.4 MiB 4.71 1084 14035 4347 7601 2087 64.2 MiB 0.22 0.00 4.71732 -146.054 -4.71732 4.71732 3.00 0.000158516 0.000125927 0.014086 0.011392 34 2665 25 6.89349e+06 295971 618332. 2139.56 5.05 0.152688 0.143841 25762 151098 -1 2181 22 1699 2407 168402 38947 3.8375 3.8375 -138.918 -3.8375 0 0 787024. 2723.27 0.82 0.02 0.30 -1 -1 0.82 0.00659974 0.00590448 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 17.30 vpr 63.68 MiB -1 -1 0.48 20976 1 0.03 -1 -1 33484 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65204 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 25.1 MiB 2.05 733 14713 4574 7961 2178 63.7 MiB 0.39 0.00 3.6346 -103.696 -3.6346 3.6346 2.99 0.000133784 0.000104322 0.127527 0.00840601 34 1906 21 6.89349e+06 338252 618332. 2139.56 4.33 0.257882 0.133671 25762 151098 -1 1531 18 844 1462 108240 25496 2.80501 2.80501 -101.087 -2.80501 0 0 787024. 2723.27 0.88 0.14 0.35 -1 -1 0.88 0.00724094 0.00628905 94 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 21.96 vpr 64.11 MiB -1 -1 0.46 21280 1 0.21 -1 -1 33596 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65644 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 25.4 MiB 5.87 1286 14679 3997 8814 1868 64.1 MiB 0.28 0.00 5.36187 -142.911 -5.36187 5.36187 2.16 0.000175792 0.00014046 0.0148892 0.0120684 36 2850 21 6.89349e+06 324158 648988. 2245.63 6.61 0.122603 0.111944 26050 158493 -1 2566 22 1351 2504 229048 46874 4.49165 4.49165 -140.844 -4.49165 0 0 828058. 2865.25 0.96 0.29 0.37 -1 -1 0.96 0.116779 0.115266 149 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 15.99 vpr 63.72 MiB -1 -1 0.25 21128 1 0.23 -1 -1 33748 -1 -1 19 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65252 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 25.1 MiB 2.26 839 14303 4497 7906 1900 63.7 MiB 0.21 0.00 3.56945 -113.475 -3.56945 3.56945 2.32 0.000137515 0.000108184 0.011778 0.00932198 34 2028 26 6.89349e+06 267783 618332. 2139.56 3.74 0.159196 0.151276 25762 151098 -1 1724 20 1026 1876 147325 31715 2.81586 2.81586 -107.951 -2.81586 0 0 787024. 2723.27 0.97 0.08 0.30 -1 -1 0.97 0.00823069 0.00682716 98 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 20.40 vpr 63.73 MiB -1 -1 0.44 21128 1 0.17 -1 -1 33900 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65256 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 25.2 MiB 4.82 765 9872 2693 6531 648 63.7 MiB 0.23 0.00 4.06868 -115.875 -4.06868 4.06868 2.47 0.000138523 0.000109592 0.103906 0.102106 36 2037 21 6.89349e+06 281877 648988. 2245.63 5.18 0.261776 0.25349 26050 158493 -1 1725 19 1151 1651 123279 28535 3.27511 3.27511 -112.954 -3.27511 0 0 828058. 2865.25 1.00 0.13 0.31 -1 -1 1.00 0.0078477 0.00685102 113 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 26.71 vpr 64.15 MiB -1 -1 0.32 21280 1 0.02 -1 -1 33952 -1 -1 26 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 11.40 1238 16215 4925 9204 2086 64.2 MiB 0.26 0.00 4.47797 -134.56 -4.47797 4.47797 2.34 0.000181848 0.000149429 0.119696 0.116428 34 3148 29 6.89349e+06 366440 618332. 2139.56 5.06 0.335322 0.154526 25762 151098 -1 2482 23 1798 2645 192061 44510 3.62725 3.62725 -129.121 -3.62725 0 0 787024. 2723.27 1.11 0.14 0.34 -1 -1 1.11 0.0124727 0.0109654 154 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 22.38 vpr 64.33 MiB -1 -1 0.62 21128 1 0.06 -1 -1 33576 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65876 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 25.5 MiB 5.93 1158 9158 2522 5945 691 64.3 MiB 0.32 0.00 5.08364 -155.965 -5.08364 5.08364 2.12 0.00021094 0.000172734 0.0105648 0.00865069 34 3265 45 6.89349e+06 310065 618332. 2139.56 5.59 0.176481 0.16554 25762 151098 -1 2677 20 1821 2669 195441 45785 4.26489 4.26489 -151.208 -4.26489 0 0 787024. 2723.27 1.01 0.06 0.25 -1 -1 1.01 0.0111339 0.00967436 151 54 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 21.35 vpr 64.05 MiB -1 -1 0.31 21280 1 0.21 -1 -1 33604 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65584 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 25.4 MiB 5.39 1179 9495 2108 6587 800 64.0 MiB 0.27 0.00 5.42099 -154.483 -5.42099 5.42099 2.69 0.000231471 0.000194874 0.0108126 0.00894246 36 3089 22 6.89349e+06 324158 648988. 2245.63 6.21 0.472744 0.13703 26050 158493 -1 2679 22 1863 2759 218703 47951 4.88775 4.88775 -161.286 -4.88775 0 0 828058. 2865.25 0.90 0.10 0.44 -1 -1 0.90 0.0131315 0.0115332 150 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 17.67 vpr 63.82 MiB -1 -1 0.41 21280 1 0.27 -1 -1 33524 -1 -1 15 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65356 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 25.2 MiB 5.01 809 7684 1992 5210 482 63.8 MiB 0.11 0.00 4.51797 -123.273 -4.51797 4.51797 2.40 0.000137539 0.000109505 0.00799187 0.00644564 30 2237 24 6.89349e+06 211408 556674. 1926.21 2.79 0.033585 0.0280054 25186 138497 -1 1774 18 900 1288 91307 20980 3.18905 3.18905 -113.358 -3.18905 0 0 706193. 2443.58 0.91 0.03 0.31 -1 -1 0.91 0.00875331 0.00772807 105 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 20.03 vpr 64.12 MiB -1 -1 0.46 21280 1 0.07 -1 -1 33632 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65660 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 25.4 MiB 5.82 1070 14483 4888 7061 2534 64.1 MiB 0.41 0.00 3.67535 -124.357 -3.67535 3.67535 2.74 0.000155012 0.000123106 0.0146842 0.0117282 36 2551 21 6.89349e+06 281877 648988. 2245.63 4.10 0.0533338 0.0440892 26050 158493 -1 2220 16 1362 1896 131066 29818 3.42295 3.42295 -124.954 -3.42295 0 0 828058. 2865.25 1.06 0.22 0.25 -1 -1 1.06 0.00921183 0.00807401 131 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 24.57 vpr 64.20 MiB -1 -1 0.45 21280 1 0.13 -1 -1 33880 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65744 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 25.5 MiB 7.78 978 15493 5829 7048 2616 64.2 MiB 0.18 0.00 3.74244 -106.797 -3.74244 3.74244 2.75 0.000158246 0.000126657 0.0150579 0.0121518 36 2729 30 6.89349e+06 366440 648988. 2245.63 6.40 0.173613 0.162962 26050 158493 -1 2255 25 1674 2511 187286 43762 3.33836 3.33836 -110.581 -3.33836 0 0 828058. 2865.25 1.18 0.09 0.33 -1 -1 1.18 0.0369334 0.0107638 142 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 19.91 vpr 63.88 MiB -1 -1 0.67 21128 1 0.16 -1 -1 33764 -1 -1 23 28 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65408 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 25.2 MiB 4.57 909 14123 3981 8851 1291 63.9 MiB 0.26 0.00 4.4511 -113.633 -4.4511 4.4511 2.39 0.000133776 0.000105272 0.180451 0.178298 34 2249 22 6.89349e+06 324158 618332. 2139.56 4.87 0.217041 0.208433 25762 151098 -1 1933 21 1113 1927 152728 34237 3.56526 3.56526 -111.597 -3.56526 0 0 787024. 2723.27 0.97 0.04 0.50 -1 -1 0.97 0.00940156 0.00821871 119 27 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 22.57 vpr 63.92 MiB -1 -1 0.59 21432 1 0.15 -1 -1 33852 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 25.4 MiB 8.14 1061 15203 4868 8207 2128 63.9 MiB 0.30 0.00 4.60916 -138.593 -4.60916 4.60916 2.62 0.000153547 0.000121529 0.0147817 0.0119665 34 2809 29 6.89349e+06 295971 618332. 2139.56 4.94 0.146731 0.136262 25762 151098 -1 2270 20 1711 2405 200868 43200 3.8459 3.8459 -136.425 -3.8459 0 0 787024. 2723.27 0.69 0.18 0.33 -1 -1 0.69 0.00728554 0.00641479 130 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 23.77 vpr 63.92 MiB -1 -1 0.40 21280 1 0.20 -1 -1 33724 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65452 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 25.4 MiB 7.03 1154 13443 3441 8088 1914 63.9 MiB 0.34 0.00 4.07374 -139.312 -4.07374 4.07374 2.27 0.00016575 0.00012968 0.218277 0.215377 36 2669 24 6.89349e+06 281877 648988. 2245.63 5.63 0.266215 0.255767 26050 158493 -1 2331 22 1487 1998 151487 33232 3.09105 3.09105 -125.673 -3.09105 0 0 828058. 2865.25 1.14 0.02 0.28 -1 -1 1.14 0.00550433 0.00469847 138 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 20.36 vpr 63.93 MiB -1 -1 0.27 21128 1 0.42 -1 -1 33604 -1 -1 31 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65464 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 25.4 MiB 2.24 955 9679 2173 6860 646 63.9 MiB 0.24 0.00 4.69362 -132.871 -4.69362 4.69362 2.35 0.000150226 0.000120644 0.0407615 0.00696356 30 2522 22 6.89349e+06 436909 556674. 1926.21 9.30 0.165277 0.123646 25186 138497 -1 1987 18 919 1672 119220 26827 3.39635 3.39635 -119.763 -3.39635 0 0 706193. 2443.58 0.89 0.05 0.34 -1 -1 0.89 0.00911603 0.00806411 129 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 25.41 vpr 64.28 MiB -1 -1 0.38 21432 1 0.23 -1 -1 33972 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 25.5 MiB 6.60 941 15063 4400 7415 3248 64.3 MiB 0.37 0.00 4.82162 -147.572 -4.82162 4.82162 2.15 0.000162229 0.000129513 0.0841057 0.0811864 36 2908 28 6.89349e+06 324158 648988. 2245.63 7.91 0.130746 0.120406 26050 158493 -1 2183 23 1824 2782 213354 50451 4.03946 4.03946 -138.68 -4.03946 0 0 828058. 2865.25 0.85 0.19 0.27 -1 -1 0.85 0.0881961 0.0864791 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 24.97 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33548 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 25.7 MiB 6.13 1350 12331 3666 6215 2450 64.4 MiB 0.28 0.00 5.44225 -166.483 -5.44225 5.44225 2.09 0.000204204 0.000167247 0.012945 0.0105622 34 3934 50 6.89349e+06 380534 618332. 2139.56 9.26 0.282495 0.269832 25762 151098 -1 2785 21 2139 3000 277051 60549 4.55095 4.55095 -162.881 -4.55095 0 0 787024. 2723.27 0.77 0.43 0.28 -1 -1 0.77 0.175876 0.174293 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 26.30 vpr 64.32 MiB -1 -1 0.62 21432 1 0.13 -1 -1 33596 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65864 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 25.5 MiB 6.74 1256 15366 4541 7767 3058 64.3 MiB 0.26 0.00 4.55797 -146.919 -4.55797 4.55797 2.46 0.000173389 0.000138913 0.0168525 0.0137073 36 3206 25 6.89349e+06 366440 648988. 2245.63 8.46 0.0670195 0.055905 26050 158493 -1 2691 20 1778 2589 202528 44258 3.77455 3.77455 -140.722 -3.77455 0 0 828058. 2865.25 0.95 0.23 0.31 -1 -1 0.95 0.0122185 0.0108175 164 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 20.54 vpr 63.87 MiB -1 -1 0.39 21128 1 0.02 -1 -1 33888 -1 -1 21 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65404 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 25.2 MiB 5.47 896 15383 5005 7997 2381 63.9 MiB 0.28 0.00 4.16933 -123.957 -4.16933 4.16933 2.83 0.000145567 0.000105814 0.0132442 0.0105646 34 2255 20 6.89349e+06 295971 618332. 2139.56 4.00 0.0482679 0.0398604 25762 151098 -1 1950 23 1239 1726 166521 34490 3.09671 3.09671 -112.07 -3.09671 0 0 787024. 2723.27 0.87 0.19 0.30 -1 -1 0.87 0.010198 0.00885843 112 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 25.43 vpr 64.20 MiB -1 -1 0.39 21432 1 0.17 -1 -1 34064 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65736 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 25.5 MiB 8.51 1198 5938 1274 4302 362 64.2 MiB 0.18 0.00 5.49187 -164.452 -5.49187 5.49187 2.04 0.000193889 0.000145403 0.0296397 0.0282922 34 3051 34 6.89349e+06 366440 618332. 2139.56 5.80 0.0770409 0.068139 25762 151098 -1 2580 20 1865 2528 220135 47612 4.59669 4.59669 -160.513 -4.59669 0 0 787024. 2723.27 1.21 0.25 0.47 -1 -1 1.21 0.0115218 0.0102854 162 63 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 20.64 vpr 64.15 MiB -1 -1 0.29 21280 1 0.02 -1 -1 33696 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65692 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 25.4 MiB 5.30 1140 15255 5147 8101 2007 64.2 MiB 0.45 0.00 5.21835 -154.719 -5.21835 5.21835 2.00 0.000163035 0.000128621 0.0157478 0.0126687 34 2848 21 6.89349e+06 324158 618332. 2139.56 5.75 0.224547 0.0521443 25762 151098 -1 2452 21 1640 2738 249504 52720 4.0231 4.0231 -141.136 -4.0231 0 0 787024. 2723.27 1.07 0.16 0.25 -1 -1 1.07 0.00805975 0.00704008 139 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 23.77 vpr 64.03 MiB -1 -1 0.49 21432 1 0.17 -1 -1 33776 -1 -1 23 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65568 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 25.5 MiB 6.83 1179 13505 4412 7143 1950 64.0 MiB 0.19 0.00 4.98904 -144.643 -4.98904 4.98904 2.90 0.000159733 0.000128128 0.0137356 0.0111582 38 2759 30 6.89349e+06 324158 678818. 2348.85 5.97 0.184194 0.173879 26626 170182 -1 2440 19 1314 2028 181681 37011 4.15485 4.15485 -140.802 -4.15485 0 0 902133. 3121.57 1.00 0.04 0.23 -1 -1 1.00 0.0102647 0.00907893 142 47 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 24.91 vpr 64.27 MiB -1 -1 0.49 21280 1 0.18 -1 -1 33832 -1 -1 26 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65812 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 25.7 MiB 7.78 1244 15103 4566 8211 2326 64.3 MiB 0.26 0.00 4.69488 -139.913 -4.69488 4.69488 2.40 0.000185554 0.00015161 0.0159818 0.0129162 36 2900 49 6.89349e+06 366440 648988. 2245.63 6.60 0.178138 0.166468 26050 158493 -1 2417 22 1825 2690 193242 42062 3.69799 3.69799 -131.492 -3.69799 0 0 828058. 2865.25 0.86 0.10 0.31 -1 -1 0.86 0.0090156 0.00780908 162 83 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 26.99 vpr 64.36 MiB -1 -1 0.43 21280 1 0.21 -1 -1 33832 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65900 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 25.7 MiB 9.80 1232 16599 5975 8052 2572 64.4 MiB 0.48 0.00 5.50928 -158.621 -5.50928 5.50928 2.77 0.000170116 0.000135799 0.0172355 0.013889 34 3271 23 6.89349e+06 324158 618332. 2139.56 5.55 0.184658 0.173751 25762 151098 -1 2589 22 1900 2887 231938 49963 4.39435 4.39435 -155.2 -4.39435 0 0 787024. 2723.27 1.16 0.11 0.32 -1 -1 1.16 0.0122461 0.0106283 155 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 21.88 vpr 64.45 MiB -1 -1 0.35 21280 1 0.06 -1 -1 33804 -1 -1 30 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 25.8 MiB 5.97 1305 10699 2770 6940 989 64.4 MiB 0.29 0.00 4.6273 -137.721 -4.6273 4.6273 2.25 0.000190568 0.000153878 0.177611 0.00927994 36 2780 26 6.89349e+06 422815 648988. 2245.63 6.12 0.314205 0.138065 26050 158493 -1 2445 20 1548 2135 144509 33144 3.4748 3.4748 -124.133 -3.4748 0 0 828058. 2865.25 0.92 0.16 0.47 -1 -1 0.92 0.0123846 0.0109614 166 85 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 13.98 vpr 63.70 MiB -1 -1 0.43 20976 1 0.03 -1 -1 34100 -1 -1 17 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65228 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 25.1 MiB 1.68 779 13381 4026 7576 1779 63.7 MiB 0.13 0.00 4.15903 -123.364 -4.15903 4.15903 2.35 0.000129179 0.000101415 0.0116914 0.00939573 30 1811 19 6.89349e+06 239595 556674. 1926.21 2.60 0.0333979 0.0276437 25186 138497 -1 1542 20 745 1194 79326 18467 2.80671 2.80671 -105.542 -2.80671 0 0 706193. 2443.58 1.17 0.04 0.48 -1 -1 1.17 0.0170474 0.0160413 96 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 22.89 vpr 64.39 MiB -1 -1 0.28 21280 1 0.20 -1 -1 33532 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65936 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 25.7 MiB 5.92 1363 14741 4757 7501 2483 64.4 MiB 0.11 0.00 5.7749 -170.63 -5.7749 5.7749 2.96 0.000165631 0.00013264 0.010877 0.00874846 38 2791 29 6.89349e+06 352346 678818. 2348.85 6.75 0.266175 0.252132 26626 170182 -1 2525 19 1500 2156 164571 35271 4.25068 4.25068 -147.335 -4.25068 0 0 902133. 3121.57 1.09 0.02 0.32 -1 -1 1.09 0.00660438 0.00591996 156 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 32.15 vpr 64.40 MiB -1 -1 0.30 21280 1 0.12 -1 -1 33512 -1 -1 25 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65948 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 25.7 MiB 11.10 1408 14543 4021 8480 2042 64.4 MiB 0.34 0.00 5.38563 -175.555 -5.38563 5.38563 2.57 0.000204368 0.00016567 0.212069 0.209123 34 3658 36 6.89349e+06 352346 618332. 2139.56 10.79 0.582621 0.565787 25762 151098 -1 2905 20 2190 3138 275923 60217 4.60928 4.60928 -169.451 -4.60928 0 0 787024. 2723.27 0.85 0.23 0.26 -1 -1 0.85 0.0124664 0.0110569 171 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 23.11 vpr 63.67 MiB -1 -1 0.33 21128 1 0.12 -1 -1 33724 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65200 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 25.1 MiB 8.98 833 8448 2039 5944 465 63.7 MiB 0.06 0.00 4.14342 -115.158 -4.14342 4.14342 2.51 0.000147778 0.000118352 0.00858533 0.00694423 34 2126 22 6.89349e+06 253689 618332. 2139.56 4.34 0.149866 0.142818 25762 151098 -1 1850 19 1229 1651 116347 27406 2.87616 2.87616 -103.554 -2.87616 0 0 787024. 2723.27 0.96 0.21 0.34 -1 -1 0.96 0.00842915 0.00737429 108 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 15.11 vpr 63.60 MiB -1 -1 0.57 21128 1 0.39 -1 -1 33792 -1 -1 20 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65128 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.9 MiB 2.01 851 11783 3652 6352 1779 63.6 MiB 0.09 0.00 4.15709 -122.39 -4.15709 4.15709 2.44 0.000131275 0.000103685 0.0101455 0.00816832 32 2162 37 6.89349e+06 281877 586450. 2029.24 3.02 0.142633 0.136407 25474 144626 -1 1820 20 1206 1988 166657 36264 2.86611 2.86611 -109.421 -2.86611 0 0 744469. 2576.02 1.22 0.25 0.58 -1 -1 1.22 0.0617261 0.0606918 99 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 21.74 vpr 64.25 MiB -1 -1 0.73 21280 1 0.13 -1 -1 34060 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65792 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 25.5 MiB 6.26 1128 5463 1080 3935 448 64.2 MiB 0.02 0.00 4.60732 -147.469 -4.60732 4.60732 2.85 8.3022e-05 6.5473e-05 0.00313374 0.0025469 34 2986 22 6.89349e+06 324158 618332. 2139.56 4.43 0.0510189 0.0427267 25762 151098 -1 2576 22 1848 2639 205468 44723 3.81745 3.81745 -144.162 -3.81745 0 0 787024. 2723.27 0.88 0.17 0.41 -1 -1 0.88 0.0542968 0.0527716 145 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 22.46 vpr 64.18 MiB -1 -1 0.44 21432 1 0.12 -1 -1 33732 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65716 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 25.5 MiB 6.02 1149 15639 4916 8896 1827 64.2 MiB 0.20 0.00 4.95049 -142.516 -4.95049 4.95049 2.61 0.000177933 0.000144383 0.0157059 0.0127585 36 2484 31 6.89349e+06 324158 648988. 2245.63 6.14 0.193422 0.0559911 26050 158493 -1 2192 17 1390 1998 142878 33097 4.10595 4.10595 -134.504 -4.10595 0 0 828058. 2865.25 0.96 0.11 0.26 -1 -1 0.96 0.0108504 0.009661 149 56 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 16.53 vpr 64.28 MiB -1 -1 0.50 21584 1 0.11 -1 -1 33644 -1 -1 36 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65824 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 25.5 MiB 2.05 1164 18660 4771 12167 1722 64.3 MiB 0.25 0.00 5.17601 -145.908 -5.17601 5.17601 2.93 0.000177074 0.000140351 0.0171829 0.0137555 30 2907 20 6.89349e+06 507378 556674. 1926.21 3.68 0.051244 0.0432518 25186 138497 -1 2337 23 1541 2927 191095 44081 4.29189 4.29189 -141.668 -4.29189 0 0 706193. 2443.58 1.05 0.08 0.17 -1 -1 1.05 0.0127475 0.0111675 157 3 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 19.33 vpr 64.14 MiB -1 -1 0.49 21280 1 0.21 -1 -1 33732 -1 -1 25 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65680 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 25.4 MiB 5.02 1063 8727 2092 6073 562 64.1 MiB 0.19 0.00 3.88834 -114.425 -3.88834 3.88834 2.49 0.000157164 0.000124618 0.0088473 0.00720077 34 2680 27 6.89349e+06 352346 618332. 2139.56 4.40 0.163025 0.154217 25762 151098 -1 2246 24 2014 2925 210422 47024 3.00136 3.00136 -105.925 -3.00136 0 0 787024. 2723.27 1.04 0.10 0.35 -1 -1 1.04 0.0117087 0.010213 136 52 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 22.21 vpr 63.61 MiB -1 -1 0.42 21280 1 0.20 -1 -1 34212 -1 -1 20 27 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65132 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 24.9 MiB 4.97 671 12416 5199 6032 1185 63.6 MiB 0.21 0.00 4.37503 -112.665 -4.37503 4.37503 3.09 0.000129922 0.00010165 0.0114461 0.00910148 36 1798 46 6.89349e+06 281877 648988. 2245.63 5.88 0.293177 0.102297 26050 158493 -1 1495 16 1035 1508 126330 31089 4.20355 4.20355 -115.594 -4.20355 0 0 828058. 2865.25 0.85 0.20 0.57 -1 -1 0.85 0.168288 0.167406 106 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 32.30 vpr 64.62 MiB -1 -1 0.57 21584 1 0.19 -1 -1 33808 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66172 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 25.8 MiB 10.54 1548 10495 2998 6825 672 64.6 MiB 0.28 0.00 4.58631 -145.891 -4.58631 4.58631 3.18 0.000217986 0.00017784 0.081175 0.0789575 36 3695 31 6.89349e+06 380534 648988. 2245.63 10.29 0.152387 0.141344 26050 158493 -1 3222 19 2063 3223 245817 53698 4.34139 4.34139 -147.194 -4.34139 0 0 828058. 2865.25 0.92 0.03 0.17 -1 -1 0.92 0.00747472 0.00668442 185 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 23.01 vpr 64.51 MiB -1 -1 0.42 21584 1 0.02 -1 -1 33528 -1 -1 24 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66056 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 25.8 MiB 6.69 1076 15639 5741 7479 2419 64.5 MiB 0.43 0.00 5.4794 -158.779 -5.4794 5.4794 2.29 0.000174894 0.000140044 0.27292 0.269701 36 3098 30 6.89349e+06 338252 648988. 2245.63 6.39 0.557437 0.441769 26050 158493 -1 2267 23 2051 2967 192027 45783 4.52198 4.52198 -150.578 -4.52198 0 0 828058. 2865.25 0.87 0.08 0.32 -1 -1 0.87 0.0121644 0.0106245 155 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 21.60 vpr 64.20 MiB -1 -1 0.36 21584 1 0.06 -1 -1 33932 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65740 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 25.5 MiB 6.07 1166 15523 4854 8569 2100 64.2 MiB 0.36 0.00 4.30939 -141.47 -4.30939 4.30939 2.54 0.00016881 0.000131832 0.0698507 0.0666225 34 2899 42 6.89349e+06 295971 618332. 2139.56 4.71 0.204328 0.112313 25762 151098 -1 2437 26 1907 2549 229050 49696 3.5282 3.5282 -138.137 -3.5282 0 0 787024. 2723.27 0.90 0.05 0.48 -1 -1 0.90 0.0122093 0.0106321 137 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 22.33 vpr 64.13 MiB -1 -1 0.34 21584 1 0.16 -1 -1 33904 -1 -1 21 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65672 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 25.5 MiB 6.16 1094 11617 2997 7709 911 64.1 MiB 0.07 0.00 5.20986 -144.706 -5.20986 5.20986 2.49 0.00016337 0.000130837 0.0120427 0.00981594 34 2652 23 6.89349e+06 295971 618332. 2139.56 5.52 0.148601 0.139401 25762 151098 -1 2163 20 1231 1828 141013 31610 3.72616 3.72616 -128.964 -3.72616 0 0 787024. 2723.27 1.03 0.09 0.30 -1 -1 1.03 0.0592577 0.0579475 135 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 21.74 vpr 64.39 MiB -1 -1 0.46 21584 1 0.13 -1 -1 33808 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65932 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 25.7 MiB 7.05 1250 13751 4489 7484 1778 64.4 MiB 0.38 0.04 4.48785 -130.629 -4.48785 4.48785 2.88 0.0394262 0.000164113 0.0512839 0.00977326 34 3040 22 6.89349e+06 366440 618332. 2139.56 4.20 0.152598 0.103546 25762 151098 -1 2564 18 1728 2629 184543 42607 4.0604 4.0604 -128.889 -4.0604 0 0 787024. 2723.27 0.80 0.26 0.20 -1 -1 0.80 0.0113901 0.0100323 163 50 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 24.92 vpr 64.16 MiB -1 -1 0.67 21432 1 0.02 -1 -1 34064 -1 -1 24 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65704 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 25.4 MiB 7.27 1146 9158 2597 5794 767 64.2 MiB 0.32 0.00 4.26851 -119.64 -4.26851 4.26851 3.09 0.000157528 0.000127065 0.0589576 0.0571749 34 3101 28 6.89349e+06 338252 618332. 2139.56 6.53 0.667182 0.657828 25762 151098 -1 2575 18 1343 2150 176039 37969 3.456 3.456 -117.55 -3.456 0 0 787024. 2723.27 0.98 0.12 0.38 -1 -1 0.98 0.0101841 0.00899752 140 51 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 26.40 vpr 64.28 MiB -1 -1 0.35 21432 1 0.12 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65820 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 25.5 MiB 8.30 1212 14828 4814 7843 2171 64.3 MiB 0.16 0.00 4.88838 -154.361 -4.88838 4.88838 2.40 0.000186929 0.000139129 0.0168369 0.0137369 36 2984 22 6.89349e+06 310065 648988. 2245.63 7.18 0.0680473 0.0569205 26050 158493 -1 2636 20 1645 2634 228939 46913 3.99939 3.99939 -144.13 -3.99939 0 0 828058. 2865.25 0.89 0.26 0.35 -1 -1 0.89 0.0800076 0.0102794 148 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 24.87 vpr 64.45 MiB -1 -1 0.42 21584 1 0.20 -1 -1 33388 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65992 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 25.7 MiB 8.55 1282 15969 5653 7267 3049 64.4 MiB 0.30 0.00 4.10098 -137.106 -4.10098 4.10098 2.19 9.2791e-05 7.1517e-05 0.0798272 0.0765536 34 3469 29 6.89349e+06 366440 618332. 2139.56 6.08 0.31073 0.298644 25762 151098 -1 2577 22 2108 2976 221177 51691 3.61546 3.61546 -136.434 -3.61546 0 0 787024. 2723.27 0.91 0.25 0.30 -1 -1 0.91 0.154424 0.0115099 167 62 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 19.96 vpr 63.85 MiB -1 -1 0.29 21128 1 0.17 -1 -1 33804 -1 -1 20 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65380 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 25.1 MiB 4.49 640 9706 2308 6853 545 63.8 MiB 0.28 0.00 4.18793 -120.962 -4.18793 4.18793 2.42 0.000135154 0.000106849 0.00898731 0.00710241 34 1711 40 6.89349e+06 281877 618332. 2139.56 4.21 0.0452745 0.0372849 25762 151098 -1 1396 22 1306 1759 120180 30461 3.46451 3.46451 -114.15 -3.46451 0 0 787024. 2723.27 1.16 0.15 0.28 -1 -1 1.16 0.0102211 0.00900716 110 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 20.98 vpr 63.81 MiB -1 -1 0.38 21280 1 0.02 -1 -1 34044 -1 -1 20 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65340 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 25.2 MiB 3.74 1151 15456 4811 8697 1948 63.8 MiB 0.15 0.00 4.32729 -137.057 -4.32729 4.32729 2.39 6.9456e-05 5.3731e-05 0.00831482 0.00661248 36 2629 22 6.89349e+06 281877 648988. 2245.63 7.12 0.236735 0.21181 26050 158493 -1 2352 19 1523 2100 174325 37350 3.5651 3.5651 -130.487 -3.5651 0 0 828058. 2865.25 0.81 0.17 0.29 -1 -1 0.81 0.0100452 0.00876141 125 58 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 26.98 vpr 64.29 MiB -1 -1 0.61 21128 1 0.08 -1 -1 33996 -1 -1 22 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65836 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 25.5 MiB 4.47 1140 13477 4008 7256 2213 64.3 MiB 0.35 0.00 4.87863 -139.65 -4.87863 4.87863 2.54 0.000178144 0.000142033 0.0140783 0.0114068 34 2816 38 6.89349e+06 310065 618332. 2139.56 11.59 0.149882 0.135834 25762 151098 -1 2261 20 1585 2469 195102 43554 3.98916 3.98916 -133.793 -3.98916 0 0 787024. 2723.27 0.91 0.17 0.16 -1 -1 0.91 0.0107526 0.0094819 137 33 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 24.70 vpr 63.57 MiB -1 -1 0.54 21280 1 0.03 -1 -1 33880 -1 -1 19 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65100 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 25.1 MiB 9.78 743 7992 1817 5819 356 63.6 MiB 0.21 0.00 4.21347 -111.925 -4.21347 4.21347 2.81 0.000139216 0.000110547 0.00766615 0.00618746 30 2121 33 6.89349e+06 267783 556674. 1926.21 3.58 0.0342471 0.0284364 25186 138497 -1 1734 19 961 1330 97844 23122 2.9715 2.9715 -103.215 -2.9715 0 0 706193. 2443.58 1.34 0.05 0.26 -1 -1 1.34 0.00857104 0.00759085 108 31 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 21.99 vpr 63.62 MiB -1 -1 0.31 21584 1 0.05 -1 -1 33516 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65152 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 25.1 MiB 6.04 963 11652 3141 7413 1098 63.6 MiB 0.33 0.00 4.14413 -129.495 -4.14413 4.14413 2.20 6.5384e-05 4.9992e-05 0.0911093 0.00831123 34 2440 49 6.89349e+06 253689 618332. 2139.56 6.05 0.233424 0.143217 25762 151098 -1 2081 21 1519 2129 189778 40165 3.15871 3.15871 -120.031 -3.15871 0 0 787024. 2723.27 0.97 0.05 0.21 -1 -1 0.97 0.0100594 0.00879218 114 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 21.71 vpr 64.23 MiB -1 -1 0.53 21432 1 0.16 -1 -1 33840 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65776 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 25.5 MiB 5.19 1148 8801 2055 6262 484 64.2 MiB 0.25 0.00 4.66911 -146.299 -4.66911 4.66911 2.42 0.000177482 0.000142542 0.00977455 0.00805415 34 3184 42 6.89349e+06 366440 618332. 2139.56 5.96 0.661935 0.548411 25762 151098 -1 2593 21 2070 2865 230832 52120 3.73625 3.73625 -139.661 -3.73625 0 0 787024. 2723.27 0.87 0.34 0.69 -1 -1 0.87 0.010731 0.00935867 160 64 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 20.99 vpr 63.68 MiB -1 -1 0.41 21280 1 0.23 -1 -1 33756 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65212 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 25.1 MiB 6.21 799 6960 1451 5242 267 63.7 MiB 0.15 0.00 3.55845 -110.116 -3.55845 3.55845 2.46 0.000130468 0.000103685 0.121818 0.120414 34 2362 25 6.89349e+06 239595 618332. 2139.56 4.88 0.154775 0.147745 25762 151098 -1 1961 18 1203 1687 149474 33371 2.87011 2.87011 -108.988 -2.87011 0 0 787024. 2723.27 0.84 0.07 0.30 -1 -1 0.84 0.00842668 0.00740156 108 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 22.78 vpr 64.29 MiB -1 -1 0.52 21280 1 0.07 -1 -1 33688 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65828 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 25.5 MiB 5.95 1229 13883 4377 7381 2125 64.3 MiB 0.26 0.00 4.30445 -130.63 -4.30445 4.30445 3.21 0.00017229 0.00012905 0.0787474 0.0759874 34 3092 29 6.89349e+06 310065 618332. 2139.56 6.00 0.289372 0.278589 25762 151098 -1 2481 21 1411 2036 157419 35147 3.398 3.398 -125.222 -3.398 0 0 787024. 2723.27 0.77 0.17 0.19 -1 -1 0.77 0.0118959 0.0104286 146 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 26.14 vpr 64.38 MiB -1 -1 0.54 21736 1 0.03 -1 -1 33804 -1 -1 26 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65920 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 25.7 MiB 6.03 1410 16127 5422 8584 2121 64.4 MiB 0.28 0.00 4.86804 -156.439 -4.86804 4.86804 2.23 0.000178334 0.000143382 0.0171012 0.0139332 36 3574 24 6.89349e+06 366440 648988. 2245.63 8.64 0.223924 0.211835 26050 158493 -1 2991 22 2294 3249 274679 57779 4.43249 4.43249 -161.158 -4.43249 0 0 828058. 2865.25 1.05 0.09 0.42 -1 -1 1.05 0.0129085 0.0113396 167 91 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 24.21 vpr 63.61 MiB -1 -1 0.52 21128 1 0.08 -1 -1 33704 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65140 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 25.1 MiB 9.84 1102 7914 1891 5147 876 63.6 MiB 0.09 0.00 3.8031 -118.938 -3.8031 3.8031 2.79 0.000174316 0.00014394 0.0518347 0.0502704 34 2636 25 6.89349e+06 253689 618332. 2139.56 4.65 0.104329 0.097019 25762 151098 -1 2252 20 1548 2123 174961 37783 2.90126 2.90126 -115.992 -2.90126 0 0 787024. 2723.27 0.92 0.19 0.24 -1 -1 0.92 0.0100668 0.00877884 124 57 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 19.34 vpr 63.92 MiB -1 -1 0.38 21280 1 0.02 -1 -1 33808 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65456 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 25.2 MiB 4.22 807 8448 2163 5780 505 63.9 MiB 0.16 0.00 4.17839 -126.972 -4.17839 4.17839 2.34 0.000151446 0.0001198 0.00937569 0.00768463 34 2328 25 6.89349e+06 253689 618332. 2139.56 4.59 0.0498073 0.0416968 25762 151098 -1 1966 17 1279 1909 140751 34111 3.24765 3.24765 -119.345 -3.24765 0 0 787024. 2723.27 1.21 0.09 0.38 -1 -1 1.21 0.00962645 0.00838545 115 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 20.55 vpr 63.96 MiB -1 -1 0.36 21432 1 0.03 -1 -1 33832 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65492 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 25.2 MiB 5.84 1027 14828 4768 7813 2247 64.0 MiB 0.31 0.00 4.90028 -135.696 -4.90028 4.90028 2.64 0.000181285 0.000145784 0.0160408 0.0129457 34 2558 23 6.89349e+06 310065 618332. 2139.56 4.30 0.276127 0.265548 25762 151098 -1 2264 19 1350 1887 133010 30628 3.69936 3.69936 -130.261 -3.69936 0 0 787024. 2723.27 0.96 0.20 0.42 -1 -1 0.96 0.0100675 0.00882803 133 30 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 20.95 vpr 64.16 MiB -1 -1 0.32 21432 1 0.13 -1 -1 33764 -1 -1 25 29 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65696 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 25.4 MiB 6.87 1109 14639 4187 8652 1800 64.2 MiB 0.34 0.00 4.08804 -114.007 -4.08804 4.08804 2.65 0.000164732 0.000132755 0.0145936 0.0118895 30 2421 25 6.89349e+06 352346 556674. 1926.21 3.37 0.0420948 0.0349819 25186 138497 -1 2027 20 1092 1557 101389 22884 3.32475 3.32475 -110.151 -3.32475 0 0 706193. 2443.58 0.75 0.24 0.33 -1 -1 0.75 0.00763949 0.0067353 138 55 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 25.12 vpr 64.32 MiB -1 -1 0.37 21432 1 0.11 -1 -1 33632 -1 -1 24 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65868 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 25.7 MiB 6.68 1260 16078 5801 8535 1742 64.3 MiB 0.26 0.00 5.65598 -180.247 -5.65598 5.65598 3.01 0.000205848 0.00016758 0.0663335 0.0629995 34 3621 37 6.89349e+06 338252 618332. 2139.56 7.89 0.126222 0.113304 25762 151098 -1 2914 23 2099 3261 294480 62314 4.80588 4.80588 -169.563 -4.80588 0 0 787024. 2723.27 1.00 0.16 0.28 -1 -1 1.00 0.0118916 0.0102498 166 65 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 18.17 vpr 63.65 MiB -1 -1 0.30 21128 1 0.03 -1 -1 33780 -1 -1 17 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65176 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 25.1 MiB 1.94 765 8164 2211 5437 516 63.6 MiB 0.08 0.00 3.49795 -107.657 -3.49795 3.49795 2.65 0.000147879 0.000119776 0.00792074 0.00635542 34 1845 19 6.89349e+06 239595 618332. 2139.56 4.82 0.221076 0.21405 25762 151098 -1 1589 19 725 1119 83681 18632 2.57636 2.57636 -97.7119 -2.57636 0 0 787024. 2723.27 1.05 0.12 0.29 -1 -1 1.05 0.103386 0.102359 92 4 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 22.88 vpr 64.55 MiB -1 -1 0.43 21736 1 0.03 -1 -1 33804 -1 -1 27 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66096 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 25.8 MiB 6.10 1449 14167 4014 7626 2527 64.5 MiB 0.23 0.00 5.78233 -180.669 -5.78233 5.78233 2.40 0.000215442 0.000175505 0.0276983 0.0247365 34 3752 47 6.89349e+06 380534 618332. 2139.56 7.01 0.0858023 0.0734008 25762 151098 -1 3040 19 2102 2772 224967 49169 5.38524 5.38524 -185.112 -5.38524 0 0 787024. 2723.27 1.08 0.11 0.35 -1 -1 1.08 0.0499225 0.0485076 175 90 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 22.25 vpr 64.44 MiB -1 -1 0.40 21432 1 0.07 -1 -1 33712 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65984 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 25.5 MiB 7.19 1300 9495 2262 6592 641 64.4 MiB 0.18 0.00 4.81994 -164.712 -4.81994 4.81994 2.69 0.000210846 0.000162027 0.0103378 0.00842966 36 3397 34 6.89349e+06 324158 648988. 2245.63 5.49 0.0630784 0.052594 26050 158493 -1 2633 21 2418 2999 239568 51827 4.33539 4.33539 -159.505 -4.33539 0 0 828058. 2865.25 0.91 0.08 0.18 -1 -1 0.91 0.0556903 0.0548207 160 96 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 23.34 vpr 64.34 MiB -1 -1 0.26 21584 1 0.04 -1 -1 33812 -1 -1 22 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65884 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 25.5 MiB 6.30 1234 15017 4303 8531 2183 64.3 MiB 0.40 0.00 4.10098 -126.009 -4.10098 4.10098 2.77 0.00020311 0.000167695 0.0166606 0.0136713 34 2988 24 6.89349e+06 310065 618332. 2139.56 6.09 0.329835 0.319239 25762 151098 -1 2338 21 1700 2332 199279 43093 3.23576 3.23576 -119.971 -3.23576 0 0 787024. 2723.27 0.85 0.29 0.23 -1 -1 0.85 0.0124456 0.0109865 152 60 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 25.30 vpr 64.45 MiB -1 -1 0.43 21736 1 0.09 -1 -1 33532 -1 -1 26 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65996 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 25.7 MiB 8.33 1279 16170 5076 8373 2721 64.4 MiB 0.41 0.00 5.8006 -172.976 -5.8006 5.8006 2.31 9.1537e-05 7.1825e-05 0.0174817 0.0143455 34 3567 22 6.89349e+06 366440 618332. 2139.56 6.93 0.0716582 0.0600033 25762 151098 -1 2699 21 2086 3337 323710 67797 4.54445 4.54445 -156.128 -4.54445 0 0 787024. 2723.27 0.87 0.07 0.18 -1 -1 0.87 0.012756 0.0112965 172 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 14.06 vpr 63.63 MiB -1 -1 0.41 21128 1 0.05 -1 -1 33724 -1 -1 15 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65156 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 24.9 MiB 2.63 775 6434 1498 4493 443 63.6 MiB 0.13 0.00 3.08622 -96.4372 -3.08622 3.08622 2.50 0.000143054 0.000116213 0.0059216 0.00471773 30 1655 23 6.89349e+06 211408 556674. 1926.21 2.33 0.0226946 0.018387 25186 138497 -1 1548 16 662 874 63994 14007 2.32501 2.32501 -94.7646 -2.32501 0 0 706193. 2443.58 0.75 0.17 0.19 -1 -1 0.75 0.00709399 0.0062645 82 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 18.36 vpr 63.91 MiB -1 -1 0.28 21128 1 0.03 -1 -1 33848 -1 -1 20 30 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65444 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 25.1 MiB 4.19 965 13610 5107 7005 1498 63.9 MiB 0.15 0.00 4.62117 -141.292 -4.62117 4.62117 2.66 0.000164657 0.000130325 0.00929135 0.00738936 34 2261 32 6.89349e+06 281877 618332. 2139.56 4.53 0.196293 0.154331 25762 151098 -1 1973 18 1265 1860 176101 36344 3.6743 3.6743 -133.516 -3.6743 0 0 787024. 2723.27 0.93 0.06 0.41 -1 -1 0.93 0.0329342 0.00771684 119 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 27.63 vpr 63.88 MiB -1 -1 0.36 21280 1 0.03 -1 -1 33684 -1 -1 18 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65412 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 25.2 MiB 6.08 1149 10406 3059 5866 1481 63.9 MiB 0.12 0.00 4.19289 -140.143 -4.19289 4.19289 3.15 0.000149437 0.000117561 0.010765 0.00861864 36 2692 44 6.89349e+06 253689 648988. 2245.63 11.23 0.151484 0.136889 26050 158493 -1 2234 18 1335 2383 172957 38095 3.5312 3.5312 -138.222 -3.5312 0 0 828058. 2865.25 0.91 0.11 0.27 -1 -1 0.91 0.0643106 0.063138 120 34 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 20.30 vpr 63.45 MiB -1 -1 0.33 21128 1 0.07 -1 -1 34004 -1 -1 21 25 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 64976 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 25.0 MiB 4.14 538 11200 3798 4353 3049 63.5 MiB 0.18 0.00 3.6656 -83.8355 -3.6656 3.6656 2.77 0.000119147 9.3182e-05 0.00925102 0.00735563 34 1768 43 6.89349e+06 295971 618332. 2139.56 6.26 0.0455755 0.0373787 25762 151098 -1 1290 19 793 1238 107114 27053 2.84936 2.84936 -80.5665 -2.84936 0 0 787024. 2723.27 0.86 0.13 0.28 -1 -1 0.86 0.110124 0.00441335 92 29 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 26.03 vpr 64.23 MiB -1 -1 0.32 21432 1 0.03 -1 -1 33552 -1 -1 23 32 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 65772 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 25.5 MiB 7.02 1224 10455 2606 6691 1158 64.2 MiB 0.42 0.00 4.36555 -131.719 -4.36555 4.36555 2.83 0.000207291 0.000166062 0.124815 0.122383 36 3235 24 6.89349e+06 324158 648988. 2245.63 8.62 0.446978 0.436299 26050 158493 -1 2709 22 2008 3044 219720 49398 3.76586 3.76586 -131.33 -3.76586 0 0 828058. 2865.25 0.94 0.16 0.31 -1 -1 0.94 0.0120957 0.0105961 161 72 -1 -1 -1 -1 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 23.80 vpr 64.59 MiB -1 -1 0.40 21584 1 0.06 -1 -1 33876 -1 -1 29 31 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66140 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 25.7 MiB 7.63 1242 10442 2632 6826 984 64.6 MiB 0.42 0.00 4.77028 -152.218 -4.77028 4.77028 2.47 0.000200944 0.000162858 0.0120702 0.0099316 34 3362 29 6.89349e+06 408721 618332. 2139.56 6.38 0.456192 0.324359 25762 151098 -1 2697 22 2278 3206 240107 54749 4.44149 4.44149 -153.801 -4.44149 0 0 787024. 2723.27 0.69 0.22 0.23 -1 -1 0.69 0.0137196 0.012184 179 90 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 9.45 vpr 62.28 MiB -1 -1 0.30 18624 14 0.31 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 277 309 1 204 91 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1316 5599 1118 4072 409 62.3 MiB 0.06 0.00 8.11929 -167.236 -8.11929 8.11929 0.88 0.00066517 0.000609021 0.0220194 0.0201831 28 3915 31 6.55708e+06 325485 500653. 1732.36 5.23 0.29474 0.257433 21310 115450 -1 3058 16 1262 3792 241774 55151 7.01016 7.01016 -162.336 -7.01016 0 0 612192. 2118.31 0.24 0.09 0.12 -1 -1 0.24 0.0298004 0.0267725 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 6.16 vpr 62.80 MiB -1 -1 0.35 18640 14 0.37 -1 -1 32748 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 272 304 1 210 93 17 17 289 -1 unnamed_device 24.4 MiB 0.46 1284 6813 1396 4664 753 62.8 MiB 0.08 0.00 8.17826 -159.503 -8.17826 8.17826 0.94 0.000717201 0.000656491 0.0276047 0.0254297 28 3885 28 6.55708e+06 373705 500653. 1732.36 1.79 0.140041 0.123081 21310 115450 -1 3014 22 1325 3823 218798 50567 7.17216 7.17216 -153.087 -7.17216 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0378488 0.0337721 184 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 11.66 vpr 62.29 MiB -1 -1 0.29 18268 11 0.27 -1 -1 32824 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1318 12150 2688 7851 1611 62.3 MiB 0.12 0.00 7.09041 -141.994 -7.09041 7.09041 0.71 0.000919542 0.000851066 0.0603565 0.0558546 32 3405 20 6.55708e+06 313430 554710. 1919.41 7.74 0.412837 0.365307 22174 131602 -1 2922 17 1211 4047 207583 48205 6.01838 6.01838 -135.561 -6.01838 0 0 701300. 2426.64 0.23 0.09 0.13 -1 -1 0.23 0.0347247 0.0305763 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 7.08 vpr 62.67 MiB -1 -1 0.35 18272 12 0.40 -1 -1 32728 -1 -1 30 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 275 307 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.67 1291 8659 1933 5978 748 62.7 MiB 0.10 0.00 7.59163 -142.516 -7.59163 7.59163 0.68 0.000915867 0.000847569 0.0444219 0.0410875 34 3325 26 6.55708e+06 361650 585099. 2024.56 2.72 0.261375 0.233101 22462 138074 -1 2767 29 1717 5670 405311 136801 6.51004 6.51004 -133.574 -6.51004 0 0 742403. 2568.87 0.32 0.18 0.14 -1 -1 0.32 0.0573751 0.0511049 190 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 6.27 vpr 62.52 MiB -1 -1 0.30 18460 13 0.34 -1 -1 32732 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 302 334 1 233 95 17 17 289 -1 unnamed_device 23.9 MiB 0.54 1517 10247 2681 6332 1234 62.5 MiB 0.10 0.00 7.78538 -167.201 -7.78538 7.78538 0.91 0.000756628 0.000688816 0.0405122 0.0369408 30 3963 42 6.55708e+06 373705 526063. 1820.29 1.94 0.212431 0.189815 21886 126133 -1 3369 18 1586 4655 233556 54083 6.7183 6.7183 -159.433 -6.7183 0 0 666494. 2306.21 0.27 0.10 0.11 -1 -1 0.27 0.0387307 0.0350113 210 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.95 vpr 62.60 MiB -1 -1 0.35 18400 13 0.26 -1 -1 32864 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 292 324 1 217 96 17 17 289 -1 unnamed_device 24.1 MiB 0.44 1424 8199 1838 5705 656 62.6 MiB 0.08 0.00 7.59163 -154.292 -7.59163 7.59163 0.96 0.000738388 0.000678344 0.0328368 0.030219 30 3692 44 6.55708e+06 385760 526063. 1820.29 1.67 0.189255 0.168996 21886 126133 -1 2951 17 1311 4081 200727 47055 6.4805 6.4805 -147.355 -6.4805 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0336547 0.03027 198 198 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 5.35 vpr 62.14 MiB -1 -1 0.27 18032 12 0.25 -1 -1 32560 -1 -1 27 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63632 27 32 229 261 1 176 86 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1035 6512 1527 4332 653 62.1 MiB 0.06 0.00 7.17186 -130.596 -7.17186 7.17186 0.95 0.00056802 0.000521224 0.0231403 0.02128 28 2827 21 6.55708e+06 325485 500653. 1732.36 1.48 0.114501 0.101743 21310 115450 -1 2415 15 971 2564 145656 34359 6.43104 6.43104 -126.026 -6.43104 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0254332 0.0224777 152 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 5.96 vpr 62.05 MiB -1 -1 0.29 18352 12 0.23 -1 -1 32844 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63536 31 32 229 261 1 184 85 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1249 5107 1019 3661 427 62.0 MiB 0.06 0.00 6.39885 -135.828 -6.39885 6.39885 0.94 0.000606216 0.000557069 0.0203299 0.0187298 34 2913 29 6.55708e+06 265210 585099. 2024.56 1.98 0.150963 0.13292 22462 138074 -1 2633 15 1067 3282 180136 41282 5.52086 5.52086 -129.169 -5.52086 0 0 742403. 2568.87 0.33 0.08 0.14 -1 -1 0.33 0.0270602 0.0245953 140 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 6.77 vpr 62.11 MiB -1 -1 0.30 18364 12 0.21 -1 -1 32600 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63604 31 32 235 267 1 192 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1208 12167 3615 7245 1307 62.1 MiB 0.11 0.00 6.4388 -137.229 -6.4388 6.4388 0.70 0.000770151 0.000712578 0.0506548 0.0467176 30 2785 18 6.55708e+06 313430 526063. 1820.29 3.09 0.210361 0.185104 21886 126133 -1 2424 14 1002 2573 124791 29555 5.55806 5.55806 -131.327 -5.55806 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0266582 0.024284 150 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 5.26 vpr 62.25 MiB -1 -1 0.27 18376 13 0.25 -1 -1 32624 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63740 32 32 250 282 1 193 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1179 13949 3758 7924 2267 62.2 MiB 0.12 0.00 7.37832 -161.437 -7.37832 7.37832 0.91 0.000624451 0.000573162 0.0486531 0.0446525 28 3241 23 6.55708e+06 301375 500653. 1732.36 1.21 0.140552 0.124388 21310 115450 -1 2626 18 1118 3052 166252 39686 6.58844 6.58844 -156.412 -6.58844 0 0 612192. 2118.31 0.27 0.09 0.12 -1 -1 0.27 0.0336859 0.0305129 157 156 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 6.58 vpr 61.95 MiB -1 -1 0.28 18468 12 0.20 -1 -1 32420 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 216 248 1 168 86 17 17 289 -1 unnamed_device 23.5 MiB 0.29 981 5378 1128 4037 213 61.9 MiB 0.06 0.00 7.10558 -136.499 -7.10558 7.10558 0.68 0.000722427 0.000667991 0.0232854 0.0215603 30 2534 16 6.55708e+06 289320 526063. 1820.29 3.02 0.175349 0.152998 21886 126133 -1 2145 17 857 2313 122883 29088 6.15344 6.15344 -132.973 -6.15344 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0247462 0.02228 132 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 5.18 vpr 62.11 MiB -1 -1 0.33 18092 12 0.17 -1 -1 32576 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 236 268 1 183 86 17 17 289 -1 unnamed_device 23.6 MiB 0.33 1197 6890 1537 4796 557 62.1 MiB 0.06 0.00 6.77748 -151.802 -6.77748 6.77748 0.92 0.00057088 0.000522487 0.0238456 0.0217812 28 3059 25 6.55708e+06 265210 500653. 1732.36 1.19 0.109773 0.0963787 21310 115450 -1 2639 28 1045 2964 311874 128938 6.12952 6.12952 -148.576 -6.12952 0 0 612192. 2118.31 0.27 0.15 0.11 -1 -1 0.27 0.0441616 0.0396711 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.65 vpr 62.50 MiB -1 -1 0.33 18696 13 0.31 -1 -1 32752 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 283 315 1 223 94 17 17 289 -1 unnamed_device 24.0 MiB 0.29 1356 7123 1389 5311 423 62.5 MiB 0.07 0.00 8.23449 -171.323 -8.23449 8.23449 0.90 0.000727031 0.000667453 0.0283048 0.0260807 28 3692 47 6.55708e+06 361650 500653. 1732.36 1.60 0.173814 0.152704 21310 115450 -1 3052 16 1257 3692 207278 48097 6.96836 6.96836 -162.196 -6.96836 0 0 612192. 2118.31 0.27 0.10 0.12 -1 -1 0.27 0.0364539 0.033136 191 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 6.69 vpr 62.70 MiB -1 -1 0.31 18588 14 0.38 -1 -1 32748 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 303 335 1 241 94 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1483 9892 2515 6721 656 62.7 MiB 0.11 0.00 8.67238 -180.492 -8.67238 8.67238 0.98 0.000772128 0.000708632 0.0453325 0.041601 28 4303 38 6.55708e+06 361650 500653. 1732.36 2.16 0.209351 0.187141 21310 115450 -1 3319 17 1509 4282 228482 54819 7.64835 7.64835 -175.009 -7.64835 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0392646 0.0354831 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 5.10 vpr 62.24 MiB -1 -1 0.28 18232 11 0.22 -1 -1 32560 -1 -1 27 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63736 29 32 225 257 1 174 88 17 17 289 -1 unnamed_device 23.7 MiB 0.30 1052 8473 2221 5229 1023 62.2 MiB 0.08 0.00 6.75495 -130.804 -6.75495 6.75495 0.97 0.000573031 0.000520892 0.0285199 0.026069 26 3219 33 6.55708e+06 325485 477104. 1650.88 1.19 0.137413 0.119707 21022 109990 -1 2456 16 1059 2816 154681 36761 6.01898 6.01898 -128.344 -6.01898 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.024997 0.0224361 147 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.33 vpr 62.77 MiB -1 -1 0.32 18500 12 0.34 -1 -1 32944 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 301 333 1 230 97 17 17 289 -1 unnamed_device 24.0 MiB 0.47 1418 15859 4433 8623 2803 62.8 MiB 0.15 0.00 7.2388 -152.411 -7.2388 7.2388 0.82 0.000970736 0.00089748 0.074781 0.0691038 38 3973 25 6.55708e+06 397815 638502. 2209.35 2.93 0.289836 0.256393 23326 155178 -1 3172 19 1543 5081 250926 58666 6.31284 6.31284 -144.952 -6.31284 0 0 851065. 2944.86 0.35 0.11 0.16 -1 -1 0.35 0.0391673 0.0350973 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.66 vpr 62.52 MiB -1 -1 0.31 18704 14 0.36 -1 -1 32820 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 217 93 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1479 5553 1093 3977 483 62.5 MiB 0.07 0.00 7.46703 -157.396 -7.46703 7.46703 0.71 0.00106955 0.000981003 0.0281497 0.0260318 30 3622 19 6.55708e+06 349595 526063. 1820.29 1.88 0.143687 0.127026 21886 126133 -1 3092 20 1468 4351 216807 50395 6.51004 6.51004 -150.243 -6.51004 0 0 666494. 2306.21 0.27 0.10 0.12 -1 -1 0.27 0.0371914 0.0333032 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.11 vpr 62.11 MiB -1 -1 0.35 18340 12 0.20 -1 -1 32456 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 227 259 1 178 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1106 10647 2481 6612 1554 62.1 MiB 0.09 0.00 7.21601 -163.068 -7.21601 7.21601 0.75 0.0007434 0.000687694 0.0450553 0.0416436 30 2675 16 6.55708e+06 277265 526063. 1820.29 1.19 0.130601 0.117169 21886 126133 -1 2211 14 913 2619 128595 30382 6.0827 6.0827 -149.905 -6.0827 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0258647 0.0235912 140 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.08 vpr 61.61 MiB -1 -1 0.23 17804 10 0.13 -1 -1 32288 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63092 30 32 175 207 1 131 78 17 17 289 -1 unnamed_device 23.2 MiB 0.16 832 5390 1191 3544 655 61.6 MiB 0.05 0.00 5.518 -123.291 -5.518 5.518 0.74 0.000574888 0.000533569 0.0206231 0.0191346 26 2072 24 6.55708e+06 192880 477104. 1650.88 0.90 0.0850398 0.0749621 21022 109990 -1 1776 13 605 1506 82675 20368 4.8704 4.8704 -120.009 -4.8704 0 0 585099. 2024.56 0.24 0.04 0.11 -1 -1 0.24 0.0158661 0.0142298 91 87 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.97 vpr 62.25 MiB -1 -1 0.28 18408 13 0.21 -1 -1 32660 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 231 263 1 184 87 17 17 289 -1 unnamed_device 23.7 MiB 0.47 1110 11991 2880 6757 2354 62.3 MiB 0.10 0.00 6.78754 -145.779 -6.78754 6.78754 0.88 0.000626222 0.000574138 0.0409789 0.0375822 30 2893 20 6.55708e+06 289320 526063. 1820.29 1.10 0.135868 0.119883 21886 126133 -1 2396 23 1175 3120 155208 36586 6.34238 6.34238 -146.063 -6.34238 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.035116 0.0312591 144 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.27 vpr 62.71 MiB -1 -1 0.32 18624 13 0.35 -1 -1 32844 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 304 336 1 224 95 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1342 7223 1422 5428 373 62.7 MiB 0.07 0.00 8.47343 -161.189 -8.47343 8.47343 0.70 0.000753403 0.000686337 0.029695 0.0272249 28 3695 25 6.55708e+06 373705 500653. 1732.36 1.42 0.155346 0.135698 21310 115450 -1 3168 17 1524 4504 249594 61161 7.45116 7.45116 -156.987 -7.45116 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0371732 0.0329196 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 6.84 vpr 62.71 MiB -1 -1 0.33 18472 13 0.37 -1 -1 32468 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 288 320 1 221 91 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 6415 1520 4239 656 62.7 MiB 0.07 0.00 7.98903 -167.855 -7.98903 7.98903 0.98 0.000799637 0.000709218 0.0280475 0.025637 38 3864 27 6.55708e+06 325485 638502. 2209.35 2.15 0.192322 0.170648 23326 155178 -1 3207 36 1764 6171 601969 247974 6.9195 6.9195 -154.284 -6.9195 0 0 851065. 2944.86 0.31 0.23 0.16 -1 -1 0.31 0.0571372 0.0503419 194 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.27 vpr 61.58 MiB -1 -1 0.20 17820 9 0.11 -1 -1 32224 -1 -1 24 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63056 26 32 152 184 1 120 82 17 17 289 -1 unnamed_device 22.9 MiB 0.21 608 5066 1233 3547 286 61.6 MiB 0.04 0.00 4.88957 -92.6709 -4.88957 4.88957 0.73 0.000536876 0.000492346 0.0173571 0.0161359 26 1974 17 6.55708e+06 289320 477104. 1650.88 0.94 0.0734012 0.0645802 21022 109990 -1 1522 16 597 1451 84798 20331 4.711 4.711 -95.0964 -4.711 0 0 585099. 2024.56 0.26 0.05 0.11 -1 -1 0.26 0.0186903 0.0166278 87 76 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.76 vpr 62.45 MiB -1 -1 0.26 18332 13 0.34 -1 -1 32944 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 287 319 1 210 89 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1399 12365 2949 7626 1790 62.5 MiB 0.12 0.00 7.71183 -153.087 -7.71183 7.71183 0.93 0.000699023 0.000634967 0.048012 0.0436786 30 3944 35 6.55708e+06 301375 526063. 1820.29 2.65 0.207546 0.185104 21886 126133 -1 3008 16 1345 4034 208784 46996 6.6837 6.6837 -146.667 -6.6837 0 0 666494. 2306.21 0.27 0.08 0.12 -1 -1 0.27 0.0319869 0.0288659 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.40 vpr 61.39 MiB -1 -1 0.19 17972 8 0.10 -1 -1 32128 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62864 32 32 154 186 1 120 80 17 17 289 -1 unnamed_device 22.8 MiB 0.15 748 11432 3918 5733 1781 61.4 MiB 0.07 0.00 4.04251 -94.2802 -4.04251 4.04251 0.91 0.000362329 0.000330542 0.0266827 0.0244375 26 1748 16 6.55708e+06 192880 477104. 1650.88 1.03 0.0823331 0.0731822 21022 109990 -1 1580 17 655 1576 85547 20628 3.62554 3.62554 -95.523 -3.62554 0 0 585099. 2024.56 0.25 0.04 0.10 -1 -1 0.25 0.0164279 0.014627 77 60 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 9.07 vpr 62.38 MiB -1 -1 0.32 18332 15 0.29 -1 -1 32860 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 254 286 1 199 92 17 17 289 -1 unnamed_device 23.8 MiB 0.43 1245 4853 801 3926 126 62.4 MiB 0.06 0.00 8.34392 -162.215 -8.34392 8.34392 0.73 0.00086916 0.000800497 0.0246076 0.0227855 30 3257 41 6.55708e+06 337540 526063. 1820.29 5.08 0.327326 0.288939 21886 126133 -1 2755 17 1248 3525 182282 42766 7.4401 7.4401 -157.077 -7.4401 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0321353 0.0290908 165 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.58 vpr 62.50 MiB -1 -1 0.33 18236 13 0.30 -1 -1 32768 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 260 292 1 207 90 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1269 7326 1600 4999 727 62.5 MiB 0.08 0.00 6.99575 -156.984 -6.99575 6.99575 0.68 0.000889286 0.000822233 0.034793 0.0321595 40 2691 15 6.55708e+06 313430 666494. 2306.21 3.88 0.256524 0.223695 23614 160646 -1 2546 15 1010 2832 145686 34351 6.05878 6.05878 -145.97 -6.05878 0 0 872365. 3018.56 0.35 0.07 0.17 -1 -1 0.35 0.029671 0.0269298 168 166 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 5.31 vpr 62.52 MiB -1 -1 0.32 18336 13 0.36 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 279 311 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1254 7023 1455 4777 791 62.5 MiB 0.08 0.00 7.90752 -158.46 -7.90752 7.90752 0.73 0.000917162 0.000849995 0.0346387 0.0320705 28 4018 26 6.55708e+06 349595 500653. 1732.36 1.44 0.165994 0.145607 21310 115450 -1 2901 18 1566 4728 247222 59652 6.8777 6.8777 -153.977 -6.8777 0 0 612192. 2118.31 0.27 0.11 0.11 -1 -1 0.27 0.0394744 0.0356227 187 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 8.24 vpr 62.11 MiB -1 -1 0.28 17968 12 0.19 -1 -1 32568 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 238 270 1 189 87 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1268 6039 1228 4546 265 62.1 MiB 0.06 0.00 6.67895 -148.946 -6.67895 6.67895 0.91 0.000605774 0.000556705 0.0225065 0.0206899 36 3129 30 6.55708e+06 277265 612192. 2118.31 4.26 0.229207 0.201616 22750 144809 -1 2738 16 1043 3079 185570 41642 5.82038 5.82038 -141.41 -5.82038 0 0 782063. 2706.10 0.31 0.07 0.14 -1 -1 0.31 0.0258163 0.023395 147 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 5.03 vpr 62.26 MiB -1 -1 0.24 18120 11 0.19 -1 -1 32616 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63752 30 32 213 245 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.21 950 9199 2047 6588 564 62.3 MiB 0.08 0.00 6.46258 -131.985 -6.46258 6.46258 0.84 0.000540274 0.000495878 0.029712 0.0273039 26 2672 24 6.55708e+06 277265 477104. 1650.88 1.52 0.128323 0.114357 21022 109990 -1 2094 17 896 2372 140324 33421 5.60892 5.60892 -124.395 -5.60892 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.025454 0.0229362 131 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 6.40 vpr 62.25 MiB -1 -1 0.28 18080 11 0.21 -1 -1 32760 -1 -1 28 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63740 28 32 227 259 1 175 88 17 17 289 -1 unnamed_device 23.7 MiB 0.48 1027 5548 1148 3763 637 62.2 MiB 0.06 0.00 6.55329 -127.208 -6.55329 6.55329 0.71 0.00102289 0.000945473 0.025738 0.0238178 26 2820 24 6.55708e+06 337540 477104. 1650.88 2.86 0.189181 0.166446 21022 109990 -1 2403 18 1082 2777 154544 37065 5.90338 5.90338 -125.591 -5.90338 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0258401 0.0230686 150 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 9.52 vpr 62.31 MiB -1 -1 0.27 18128 12 0.24 -1 -1 32680 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 274 306 1 206 90 17 17 289 -1 unnamed_device 23.7 MiB 0.32 1316 8331 2003 5453 875 62.3 MiB 0.08 0.00 7.36014 -161.452 -7.36014 7.36014 0.99 0.000695009 0.000633175 0.0329492 0.030217 26 3921 41 6.55708e+06 313430 477104. 1650.88 5.45 0.306905 0.272512 21022 109990 -1 3100 18 1408 3671 224142 51072 6.51204 6.51204 -160.968 -6.51204 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0347874 0.0313976 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 7.40 vpr 62.10 MiB -1 -1 0.25 18096 12 0.19 -1 -1 32612 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 31 32 237 269 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.73 1054 7268 1685 4837 746 62.1 MiB 0.08 0.00 7.17381 -146.631 -7.17381 7.17381 0.78 0.000935683 0.000854367 0.0343276 0.0316823 34 2430 16 6.55708e+06 277265 585099. 2024.56 3.24 0.246881 0.215366 22462 138074 -1 2165 20 945 2530 120746 29878 6.1239 6.1239 -136.911 -6.1239 0 0 742403. 2568.87 0.29 0.07 0.14 -1 -1 0.29 0.0281375 0.0250627 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 7.80 vpr 62.00 MiB -1 -1 0.29 18384 10 0.19 -1 -1 32616 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63492 29 32 220 252 1 163 83 17 17 289 -1 unnamed_device 23.5 MiB 0.23 1026 7463 1753 4811 899 62.0 MiB 0.07 0.00 5.795 -123.2 -5.795 5.795 0.95 0.000581996 0.000533668 0.0279698 0.0257059 26 2808 44 6.55708e+06 265210 477104. 1650.88 3.98 0.227312 0.200383 21022 109990 -1 2333 17 842 2563 156040 35891 5.27986 5.27986 -121.224 -5.27986 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0267721 0.024119 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.54 vpr 62.90 MiB -1 -1 0.32 18992 13 0.38 -1 -1 32816 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 315 347 1 239 95 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1543 8303 1822 5923 558 62.9 MiB 0.09 0.00 7.75344 -163.706 -7.75344 7.75344 0.96 0.000799354 0.000733195 0.035754 0.0328283 30 3739 28 6.55708e+06 373705 526063. 1820.29 2.34 0.183505 0.163179 21886 126133 -1 3152 19 1483 4706 232308 53814 6.7595 6.7595 -157.725 -6.7595 0 0 666494. 2306.21 0.22 0.11 0.11 -1 -1 0.22 0.040535 0.0364229 221 221 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 11.58 vpr 62.59 MiB -1 -1 0.31 18972 14 0.37 -1 -1 33360 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 282 314 1 220 92 17 17 289 -1 unnamed_device 23.9 MiB 0.60 1334 6095 1239 4218 638 62.6 MiB 0.07 0.00 7.39355 -163.567 -7.39355 7.39355 0.88 0.000704312 0.00064556 0.0261882 0.0239761 32 3773 33 6.55708e+06 337540 554710. 1919.41 7.23 0.367186 0.321199 22174 131602 -1 3105 17 1378 4082 218675 51391 6.65518 6.65518 -154.853 -6.65518 0 0 701300. 2426.64 0.22 0.10 0.12 -1 -1 0.22 0.0354444 0.0312173 191 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.18 vpr 62.39 MiB -1 -1 0.29 18352 12 0.19 -1 -1 32304 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 241 273 1 189 92 17 17 289 -1 unnamed_device 23.8 MiB 0.29 1163 7958 1799 5552 607 62.4 MiB 0.07 0.00 7.47368 -147.272 -7.47368 7.47368 0.90 0.000598239 0.000549066 0.0262319 0.0241088 30 2894 20 6.55708e+06 349595 526063. 1820.29 1.45 0.124042 0.110818 21886 126133 -1 2412 14 945 2660 131405 30625 6.4819 6.4819 -139.307 -6.4819 0 0 666494. 2306.21 0.20 0.07 0.12 -1 -1 0.20 0.025434 0.0224921 156 150 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 6.21 vpr 62.84 MiB -1 -1 0.35 18544 12 0.35 -1 -1 32732 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 307 339 1 235 96 17 17 289 -1 unnamed_device 24.1 MiB 0.51 1468 11922 3374 7097 1451 62.8 MiB 0.12 0.00 7.8013 -160.233 -7.8013 7.8013 0.90 0.000792886 0.000728884 0.0477324 0.0438409 30 3747 34 6.55708e+06 397815 526063. 1820.29 1.81 0.17798 0.157482 21886 126133 -1 3088 18 1392 3987 196092 45720 6.7601 6.7601 -154.181 -6.7601 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0361848 0.0324808 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.95 vpr 62.59 MiB -1 -1 0.34 19004 14 0.43 -1 -1 32700 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 293 325 1 224 92 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1386 14996 4276 8243 2477 62.6 MiB 0.15 0.00 8.29295 -162.632 -8.29295 8.29295 0.87 0.000978172 0.000904551 0.0742725 0.0686766 30 3602 23 6.55708e+06 349595 526063. 1820.29 1.55 0.199373 0.179458 21886 126133 -1 2932 17 1464 4453 204275 49023 7.4421 7.4421 -155.552 -7.4421 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0380109 0.0343702 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 10.06 vpr 62.61 MiB -1 -1 0.36 18764 13 0.34 -1 -1 32904 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 276 308 1 223 91 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1440 7639 1723 5234 682 62.6 MiB 0.08 0.00 7.87383 -161.518 -7.87383 7.87383 0.96 0.000759298 0.00070029 0.0320191 0.0293688 32 3939 31 6.55708e+06 337540 554710. 1919.41 5.90 0.306713 0.267236 22174 131602 -1 3300 20 1561 4573 275561 64033 7.03004 7.03004 -157.737 -7.03004 0 0 701300. 2426.64 0.28 0.11 0.13 -1 -1 0.28 0.0350793 0.0312979 185 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 15.41 vpr 62.45 MiB -1 -1 0.39 18592 13 0.33 -1 -1 32888 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63948 31 32 269 301 1 203 89 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1318 11375 3119 6567 1689 62.4 MiB 0.11 0.00 7.15329 -140.404 -7.15329 7.15329 0.97 0.000710381 0.000653479 0.0452603 0.0415991 28 4544 43 6.55708e+06 313430 500653. 1732.36 11.02 0.297954 0.26059 21310 115450 -1 3285 21 1543 5119 307161 69293 6.35004 6.35004 -143.38 -6.35004 0 0 612192. 2118.31 0.27 0.12 0.12 -1 -1 0.27 0.042418 0.038404 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 10.21 vpr 62.58 MiB -1 -1 0.27 18504 12 0.22 -1 -1 32856 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 264 296 1 196 88 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1298 13348 3331 7818 2199 62.6 MiB 0.12 0.00 7.05352 -145.133 -7.05352 7.05352 0.83 0.000846097 0.000782158 0.0607074 0.0560922 26 3727 43 6.55708e+06 289320 477104. 1650.88 6.38 0.348465 0.306108 21022 109990 -1 2811 15 1187 3317 182153 43136 6.33778 6.33778 -141.266 -6.33778 0 0 585099. 2024.56 0.24 0.08 0.10 -1 -1 0.24 0.0300363 0.0271778 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 7.81 vpr 62.84 MiB -1 -1 0.43 19416 14 0.51 -1 -1 32784 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 324 356 1 249 95 17 17 289 -1 unnamed_device 24.3 MiB 0.51 1672 6791 1273 5168 350 62.8 MiB 0.09 0.00 8.30332 -177.675 -8.30332 8.30332 0.76 0.00107202 0.000989826 0.0374017 0.0346445 34 4738 50 6.55708e+06 373705 585099. 2024.56 3.42 0.290772 0.257437 22462 138074 -1 3926 21 1876 6249 365233 81401 6.86804 6.86804 -165.73 -6.86804 0 0 742403. 2568.87 0.30 0.13 0.14 -1 -1 0.30 0.0439853 0.0394177 230 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 5.20 vpr 62.25 MiB -1 -1 0.27 17976 11 0.25 -1 -1 32368 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 249 281 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.44 1193 12761 3444 7164 2153 62.3 MiB 0.11 0.00 6.7976 -143.12 -6.7976 6.7976 0.69 0.000801935 0.000742179 0.0558392 0.0516501 30 3532 31 6.55708e+06 313430 526063. 1820.29 1.43 0.176622 0.155718 21886 126133 -1 2773 16 1151 3356 185089 44645 6.14118 6.14118 -140.277 -6.14118 0 0 666494. 2306.21 0.21 0.08 0.13 -1 -1 0.21 0.0288898 0.0254502 163 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 9.70 vpr 62.70 MiB -1 -1 0.34 18640 13 0.32 -1 -1 33208 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 284 316 1 206 91 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1353 4987 879 3661 447 62.7 MiB 0.05 0.00 8.21906 -157.673 -8.21906 8.21906 0.93 0.000666186 0.0006094 0.0211239 0.0194382 28 4165 41 6.55708e+06 337540 500653. 1732.36 5.40 0.281029 0.243274 21310 115450 -1 3228 28 1567 5324 422662 133480 7.41196 7.41196 -155.017 -7.41196 0 0 612192. 2118.31 0.27 0.17 0.11 -1 -1 0.27 0.0506745 0.0452015 193 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 9.98 vpr 62.74 MiB -1 -1 0.29 18568 12 0.32 -1 -1 32780 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 303 335 1 222 93 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1498 9753 2481 6035 1237 62.7 MiB 0.10 0.00 7.14558 -152.066 -7.14558 7.14558 0.89 0.000770375 0.000706322 0.0400889 0.0367556 34 3815 17 6.55708e+06 349595 585099. 2024.56 5.64 0.301745 0.262574 22462 138074 -1 3189 15 1254 4282 247642 54681 6.43304 6.43304 -144.308 -6.43304 0 0 742403. 2568.87 0.31 0.10 0.14 -1 -1 0.31 0.0371425 0.0338663 210 209 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 5.87 vpr 62.49 MiB -1 -1 0.25 18368 13 0.32 -1 -1 32704 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 272 304 1 203 93 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1297 6813 1586 4608 619 62.5 MiB 0.09 0.01 7.48135 -156.262 -7.48135 7.48135 0.92 0.000804755 0.000740276 0.0281281 0.0258322 28 3871 30 6.55708e+06 349595 500653. 1732.36 1.86 0.154033 0.136457 21310 115450 -1 3074 19 1393 4078 228364 53578 6.58844 6.58844 -156.391 -6.58844 0 0 612192. 2118.31 0.25 0.09 0.11 -1 -1 0.25 0.0348007 0.0312542 183 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 12.52 vpr 62.33 MiB -1 -1 0.34 18624 13 0.26 -1 -1 33224 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63828 32 32 271 303 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.36 1336 8733 2203 5909 621 62.3 MiB 0.09 0.00 7.1624 -156.518 -7.1624 7.1624 0.78 0.000881995 0.000816029 0.0420094 0.0388768 28 3898 36 6.55708e+06 313430 500653. 1732.36 8.59 0.329983 0.290381 21310 115450 -1 3073 20 1410 4335 289536 79990 6.17898 6.17898 -151.068 -6.17898 0 0 612192. 2118.31 0.25 0.11 0.12 -1 -1 0.25 0.03427 0.030571 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 7.03 vpr 62.57 MiB -1 -1 0.38 18600 12 0.25 -1 -1 32820 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 288 320 1 223 94 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1360 10531 2375 7022 1134 62.6 MiB 0.10 0.00 7.39995 -157.446 -7.39995 7.39995 0.89 0.000739537 0.000677377 0.0409401 0.0375729 34 3514 27 6.55708e+06 361650 585099. 2024.56 2.64 0.218757 0.191672 22462 138074 -1 3027 17 1310 4409 235176 53919 6.65918 6.65918 -152.115 -6.65918 0 0 742403. 2568.87 0.21 0.10 0.14 -1 -1 0.21 0.0362373 0.031972 197 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.42 vpr 63.04 MiB -1 -1 0.27 18856 13 0.36 -1 -1 33344 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 306 338 1 233 95 17 17 289 -1 unnamed_device 24.3 MiB 0.50 1514 8087 1653 5822 612 63.0 MiB 0.08 0.00 7.8424 -163.45 -7.8424 7.8424 0.88 0.000773909 0.000710381 0.0334477 0.0306572 34 3863 23 6.55708e+06 373705 585099. 2024.56 2.11 0.17687 0.155416 22462 138074 -1 3202 19 1491 4654 240379 56322 6.90984 6.90984 -155.576 -6.90984 0 0 742403. 2568.87 0.29 0.11 0.13 -1 -1 0.29 0.0424937 0.0384262 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 8.74 vpr 62.29 MiB -1 -1 0.29 18268 14 0.29 -1 -1 32736 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 262 294 1 191 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1270 6328 1321 4213 794 62.3 MiB 0.07 0.00 8.25686 -165.075 -8.25686 8.25686 0.92 0.000654034 0.000591528 0.025674 0.0235145 30 3256 29 6.55708e+06 289320 526063. 1820.29 4.64 0.296347 0.258745 21886 126133 -1 2706 18 1223 3778 183284 42674 7.17216 7.17216 -156.031 -7.17216 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0344712 0.0304766 168 168 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.75 vpr 62.83 MiB -1 -1 0.30 18464 13 0.31 -1 -1 32720 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 291 323 1 224 94 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1492 5845 1128 4445 272 62.8 MiB 0.07 0.00 8.14181 -162.894 -8.14181 8.14181 0.71 0.000949731 0.000879332 0.0309579 0.0286746 30 3707 27 6.55708e+06 361650 526063. 1820.29 1.67 0.163867 0.143404 21886 126133 -1 3113 28 1502 4504 339845 128741 6.93376 6.93376 -156.281 -6.93376 0 0 666494. 2306.21 0.23 0.15 0.12 -1 -1 0.23 0.0510841 0.0446085 198 197 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 15.38 vpr 62.73 MiB -1 -1 0.43 18420 13 0.34 -1 -1 32824 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 31 32 302 334 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1346 6910 1355 5304 251 62.7 MiB 0.07 0.00 7.86512 -160.397 -7.86512 7.86512 0.84 0.000736377 0.000677673 0.027714 0.0254378 30 4147 35 6.55708e+06 373705 526063. 1820.29 11.19 0.357333 0.311756 21886 126133 -1 3272 17 1542 4641 278605 70981 6.9215 6.9215 -154.898 -6.9215 0 0 666494. 2306.21 0.28 0.11 0.12 -1 -1 0.28 0.0376154 0.0340349 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 5.15 vpr 62.95 MiB -1 -1 0.34 18392 12 0.38 -1 -1 32800 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 308 340 1 238 97 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1434 5869 1120 4385 364 62.9 MiB 0.07 0.00 7.65261 -158.289 -7.65261 7.65261 0.71 0.00096805 0.0008906 0.0293817 0.02716 30 3474 18 6.55708e+06 397815 526063. 1820.29 1.41 0.163724 0.147306 21886 126133 -1 3042 18 1420 3930 177067 43130 6.71064 6.71064 -152.19 -6.71064 0 0 666494. 2306.21 0.27 0.09 0.11 -1 -1 0.27 0.0391292 0.0353235 216 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 5.11 vpr 61.95 MiB -1 -1 0.22 18204 11 0.16 -1 -1 32596 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 216 248 1 160 82 17 17 289 -1 unnamed_device 23.3 MiB 0.28 938 4354 809 3198 347 61.9 MiB 0.05 0.00 6.12166 -126.096 -6.12166 6.12166 0.97 0.000535015 0.000491265 0.0167115 0.0154003 26 2903 36 6.55708e+06 216990 477104. 1650.88 1.42 0.121017 0.107289 21022 109990 -1 2151 15 988 2511 138474 33730 5.29012 5.29012 -129.827 -5.29012 0 0 585099. 2024.56 0.24 0.06 0.10 -1 -1 0.24 0.0233458 0.021065 125 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 8.87 vpr 62.30 MiB -1 -1 0.30 18440 13 0.27 -1 -1 32724 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 254 286 1 194 88 17 17 289 -1 unnamed_device 23.8 MiB 0.42 1244 6913 1456 4785 672 62.3 MiB 0.06 0.00 7.60641 -160.262 -7.60641 7.60641 0.88 0.000624861 0.000574464 0.0254894 0.0233911 28 3450 20 6.55708e+06 289320 500653. 1732.36 4.83 0.236099 0.204359 21310 115450 -1 2848 21 1303 3778 207094 48336 6.66378 6.66378 -156.574 -6.66378 0 0 612192. 2118.31 0.26 0.10 0.12 -1 -1 0.26 0.0366915 0.0330268 161 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.75 vpr 62.92 MiB -1 -1 0.35 19232 14 0.49 -1 -1 32816 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 338 370 1 252 97 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1644 9865 2502 6499 864 62.9 MiB 0.11 0.00 8.53135 -177.728 -8.53135 8.53135 0.91 0.000853789 0.000780406 0.043569 0.0398806 30 4291 29 6.55708e+06 397815 526063. 1820.29 2.35 0.222712 0.199979 21886 126133 -1 3602 17 1729 5456 262006 60865 7.3591 7.3591 -165.422 -7.3591 0 0 666494. 2306.21 0.27 0.12 0.12 -1 -1 0.27 0.0458623 0.0417124 245 244 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 5.86 vpr 62.52 MiB -1 -1 0.32 18428 13 0.38 -1 -1 32776 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 32 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1387 8863 2093 6011 759 62.5 MiB 0.08 0.00 7.926 -171.401 -7.926 7.926 0.95 0.000696394 0.000642719 0.0342444 0.0314297 34 3431 20 6.55708e+06 325485 585099. 2024.56 1.84 0.18799 0.167108 22462 138074 -1 2924 15 1099 3246 170140 39784 6.9567 6.9567 -159.233 -6.9567 0 0 742403. 2568.87 0.29 0.07 0.14 -1 -1 0.29 0.0289432 0.0261097 178 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 5.39 vpr 62.18 MiB -1 -1 0.27 18312 11 0.22 -1 -1 32776 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63672 30 32 224 256 1 165 85 17 17 289 -1 unnamed_device 23.7 MiB 0.21 1027 8641 2218 5647 776 62.2 MiB 0.07 0.00 6.67134 -137.606 -6.67134 6.67134 0.91 0.000599041 0.000542232 0.0299624 0.0274735 30 2408 35 6.55708e+06 277265 526063. 1820.29 1.62 0.132339 0.116273 21886 126133 -1 2006 16 836 2500 120266 28573 5.92772 5.92772 -132.802 -5.92772 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.0242829 0.0217594 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 20.17 vpr 62.95 MiB -1 -1 0.41 19444 15 0.64 -1 -1 32908 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 351 383 1 268 98 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1739 8198 1861 5696 641 62.9 MiB 0.08 0.00 9.48099 -183.773 -9.48099 9.48099 0.89 0.000789463 0.000722499 0.0343623 0.0315069 28 5767 49 6.55708e+06 409870 500653. 1732.36 15.46 0.442646 0.38951 21310 115450 -1 4067 20 2653 8261 493931 107144 8.34967 8.34967 -180.766 -8.34967 0 0 612192. 2118.31 0.26 0.18 0.11 -1 -1 0.26 0.0550554 0.0488938 257 257 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 8.11 vpr 62.64 MiB -1 -1 0.31 18600 13 0.39 -1 -1 32928 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 297 329 1 215 92 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1439 6509 1332 4682 495 62.6 MiB 0.07 0.00 8.18652 -164.372 -8.18652 8.18652 0.93 0.000751144 0.000688528 0.028515 0.0261767 30 3615 19 6.55708e+06 337540 526063. 1820.29 3.83 0.292357 0.259452 21886 126133 -1 2978 16 1247 3910 188255 44184 7.29436 7.29436 -157.737 -7.29436 0 0 666494. 2306.21 0.27 0.09 0.11 -1 -1 0.27 0.0362403 0.0329437 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.80 vpr 61.99 MiB -1 -1 0.28 18116 11 0.16 -1 -1 32784 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 231 263 1 176 86 17 17 289 -1 unnamed_device 23.5 MiB 0.35 1055 6512 1402 4966 144 62.0 MiB 0.07 0.00 6.21838 -133.407 -6.21838 6.21838 0.73 0.000601522 0.000551388 0.0255859 0.0234775 28 3109 25 6.55708e+06 265210 500653. 1732.36 1.41 0.126236 0.112609 21310 115450 -1 2446 15 1000 2876 167609 39223 5.68992 5.68992 -135.355 -5.68992 0 0 612192. 2118.31 0.24 0.07 0.10 -1 -1 0.24 0.0244654 0.0221153 141 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 6.93 vpr 62.80 MiB -1 -1 0.31 18444 12 0.37 -1 -1 32896 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 305 337 1 231 94 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1408 8188 1789 5868 531 62.8 MiB 0.09 0.00 7.58418 -153.318 -7.58418 7.58418 0.93 0.000792315 0.000723175 0.0344237 0.03141 30 3802 49 6.55708e+06 361650 526063. 1820.29 2.52 0.224996 0.200688 21886 126133 -1 3014 16 1306 4296 205583 47349 6.8823 6.8823 -149.116 -6.8823 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0372201 0.033689 213 211 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 5.65 vpr 62.36 MiB -1 -1 0.26 18080 12 0.24 -1 -1 32628 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 243 275 1 186 90 17 17 289 -1 unnamed_device 23.8 MiB 0.46 1181 8733 2191 5537 1005 62.4 MiB 0.09 0.00 7.34198 -153.7 -7.34198 7.34198 0.98 0.000671412 0.000618309 0.0319407 0.0293878 28 3376 31 6.55708e+06 313430 500653. 1732.36 1.61 0.147084 0.131029 21310 115450 -1 2733 16 1101 3076 165934 39659 6.51004 6.51004 -150.081 -6.51004 0 0 612192. 2118.31 0.24 0.07 0.12 -1 -1 0.24 0.0261122 0.0234884 153 149 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 5.32 vpr 62.16 MiB -1 -1 0.24 18244 12 0.22 -1 -1 32716 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 228 260 1 161 83 17 17 289 -1 unnamed_device 23.7 MiB 0.25 977 10163 2498 5973 1692 62.2 MiB 0.08 0.00 7.03389 -140.137 -7.03389 7.03389 0.94 0.000580657 0.000532948 0.0360789 0.0330655 26 2662 20 6.55708e+06 253155 477104. 1650.88 1.51 0.143989 0.129083 21022 109990 -1 2182 14 870 2478 128650 31689 6.19004 6.19004 -134.264 -6.19004 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0264441 0.0240585 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.54 vpr 62.39 MiB -1 -1 0.33 18576 12 0.32 -1 -1 33156 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63892 29 32 275 307 1 206 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1286 8165 1985 5620 560 62.4 MiB 0.10 0.00 6.66378 -127.805 -6.66378 6.66378 0.85 0.00108677 0.00100063 0.0447111 0.0411176 30 3497 38 6.55708e+06 373705 526063. 1820.29 1.55 0.191711 0.167775 21886 126133 -1 2685 18 1204 3985 199862 45719 5.82238 5.82238 -124.619 -5.82238 0 0 666494. 2306.21 0.28 0.09 0.11 -1 -1 0.28 0.0363626 0.0327333 191 190 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 6.72 vpr 63.05 MiB -1 -1 0.30 18512 13 0.43 -1 -1 32712 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 330 362 1 256 97 17 17 289 -1 unnamed_device 24.5 MiB 0.69 1575 8089 1792 5648 649 63.1 MiB 0.09 0.00 8.199 -173.718 -8.199 8.199 0.89 0.000842212 0.00076341 0.0352413 0.0323346 30 4366 46 6.55708e+06 397815 526063. 1820.29 2.07 0.191885 0.169074 21886 126133 -1 3389 25 1746 4854 343466 119381 7.16956 7.16956 -166.873 -7.16956 0 0 666494. 2306.21 0.27 0.15 0.13 -1 -1 0.27 0.0477671 0.042453 238 236 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 15.05 vpr 62.56 MiB -1 -1 0.30 18640 12 0.28 -1 -1 32920 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 290 322 1 220 96 17 17 289 -1 unnamed_device 24.0 MiB 0.53 1304 13674 3198 8447 2029 62.6 MiB 0.12 0.00 7.70392 -150.607 -7.70392 7.70392 0.95 0.000762815 0.000701413 0.0520482 0.0478721 32 3994 32 6.55708e+06 385760 554710. 1919.41 10.51 0.447365 0.394883 22174 131602 -1 3099 25 1458 4317 312811 84182 6.55064 6.55064 -144.142 -6.55064 0 0 701300. 2426.64 0.29 0.15 0.13 -1 -1 0.29 0.0516558 0.046221 200 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.41 vpr 61.91 MiB -1 -1 0.26 18088 12 0.19 -1 -1 32668 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63392 32 32 214 246 1 164 84 17 17 289 -1 unnamed_device 23.5 MiB 0.66 1050 7587 1832 5326 429 61.9 MiB 0.07 0.00 6.64951 -139.656 -6.64951 6.64951 0.91 0.000545296 0.00050039 0.0258757 0.0237615 30 2461 17 6.55708e+06 241100 526063. 1820.29 3.19 0.17517 0.153822 21886 126133 -1 2274 17 1020 2982 153690 35424 5.72772 5.72772 -134.525 -5.72772 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0269587 0.0242564 126 120 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 9.84 vpr 62.22 MiB -1 -1 0.27 18340 12 0.27 -1 -1 32444 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63716 31 32 244 276 1 182 87 17 17 289 -1 unnamed_device 23.7 MiB 0.32 1153 6039 1205 4356 478 62.2 MiB 0.06 0.00 6.87029 -138.197 -6.87029 6.87029 0.93 0.000653518 0.000602552 0.024847 0.0228498 26 3585 32 6.55708e+06 289320 477104. 1650.88 6.05 0.258859 0.227939 21022 109990 -1 2862 21 1216 3666 212361 48492 6.25938 6.25938 -140.049 -6.25938 0 0 585099. 2024.56 0.25 0.09 0.10 -1 -1 0.25 0.0339763 0.0305112 154 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 10.11 vpr 62.44 MiB -1 -1 0.31 18236 11 0.24 -1 -1 32652 -1 -1 30 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 30 32 276 308 1 210 92 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1269 13340 3337 7820 2183 62.4 MiB 0.12 0.00 6.87709 -132.09 -6.87709 6.87709 0.94 0.000721076 0.000662251 0.0504652 0.0463735 30 3274 25 6.55708e+06 361650 526063. 1820.29 6.11 0.333785 0.292235 21886 126133 -1 2747 17 1165 3762 194359 44865 6.23644 6.23644 -134.467 -6.23644 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0340553 0.0307208 190 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.60 vpr 62.25 MiB -1 -1 0.28 18092 11 0.26 -1 -1 32676 -1 -1 27 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63744 28 32 253 285 1 181 87 17 17 289 -1 unnamed_device 23.7 MiB 0.19 1130 7959 1993 5244 722 62.2 MiB 0.07 0.00 6.52095 -121.312 -6.52095 6.52095 0.90 0.000662432 0.00060344 0.0307944 0.0282199 28 3208 27 6.55708e+06 325485 500653. 1732.36 1.78 0.141817 0.126082 21310 115450 -1 2669 23 1302 4800 286554 64106 6.01332 6.01332 -120.186 -6.01332 0 0 612192. 2118.31 0.27 0.11 0.12 -1 -1 0.27 0.0375646 0.0334754 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 9.37 vpr 62.27 MiB -1 -1 0.30 18356 13 0.28 -1 -1 32580 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63768 30 32 235 267 1 174 87 17 17 289 -1 unnamed_device 23.7 MiB 0.34 1062 5655 1187 4180 288 62.3 MiB 0.08 0.00 7.51524 -139.468 -7.51524 7.51524 0.84 0.000792336 0.000723173 0.0365569 0.0337936 28 3256 50 6.55708e+06 301375 500653. 1732.36 5.49 0.278344 0.245782 21310 115450 -1 2679 23 1098 3351 298862 99152 6.43104 6.43104 -135.081 -6.43104 0 0 612192. 2118.31 0.25 0.12 0.10 -1 -1 0.25 0.0359851 0.0323191 148 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 5.53 vpr 62.49 MiB -1 -1 0.28 18380 12 0.25 -1 -1 32304 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 264 296 1 207 92 17 17 289 -1 unnamed_device 24.1 MiB 0.35 1223 6923 1491 4662 770 62.5 MiB 0.07 0.00 7.37241 -157.796 -7.37241 7.37241 0.93 0.000648866 0.000596101 0.0255922 0.0234696 28 3554 24 6.55708e+06 337540 500653. 1732.36 1.61 0.144693 0.128842 21310 115450 -1 2834 14 1132 3127 172330 41414 6.4427 6.4427 -152.242 -6.4427 0 0 612192. 2118.31 0.24 0.07 0.10 -1 -1 0.24 0.0263503 0.0239236 174 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 9.75 vpr 62.61 MiB -1 -1 0.31 18228 13 0.35 -1 -1 32760 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64108 31 32 278 310 1 202 90 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1253 5919 1160 4308 451 62.6 MiB 0.07 0.00 8.10858 -155.032 -8.10858 8.10858 0.93 0.000908237 0.00084108 0.0300168 0.0277477 26 3647 25 6.55708e+06 325485 477104. 1650.88 5.85 0.33304 0.292972 21022 109990 -1 2895 21 1222 3657 196054 46060 7.24996 7.24996 -153.221 -7.24996 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0379987 0.0340667 187 187 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 9.13 vpr 62.53 MiB -1 -1 0.31 18488 14 0.32 -1 -1 32724 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 290 322 1 214 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1284 10442 2916 6424 1102 62.5 MiB 0.11 0.00 8.2513 -166.21 -8.2513 8.2513 0.67 0.000925387 0.000856991 0.0510592 0.0472395 26 3751 23 6.55708e+06 337540 477104. 1650.88 5.51 0.319994 0.282662 21022 109990 -1 3127 22 1769 4904 309148 74083 7.68956 7.68956 -173.895 -7.68956 0 0 585099. 2024.56 0.18 0.12 0.10 -1 -1 0.18 0.0425622 0.0372905 196 196 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 7.50 vpr 62.40 MiB -1 -1 0.30 18960 14 0.27 -1 -1 32852 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63896 32 32 269 301 1 199 89 17 17 289 -1 unnamed_device 23.7 MiB 0.35 1345 13751 3514 7977 2260 62.4 MiB 0.12 0.00 7.89392 -157.269 -7.89392 7.89392 0.94 0.000716178 0.000655918 0.0498541 0.0455395 28 3907 45 6.55708e+06 301375 500653. 1732.36 2.78 0.200589 0.17881 21310 115450 -1 3158 90 2837 11692 1751407 789997 7.09878 7.09878 -154.85 -7.09878 0 0 612192. 2118.31 0.26 0.68 0.11 -1 -1 0.26 0.13824 0.122574 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.70 vpr 62.64 MiB -1 -1 0.34 18872 13 0.42 -1 -1 33208 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 296 328 1 221 93 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1380 7443 1649 5147 647 62.6 MiB 0.08 0.00 8.01781 -156.923 -8.01781 8.01781 0.90 0.000740014 0.000681091 0.0303679 0.0277872 26 4390 43 6.55708e+06 349595 477104. 1650.88 5.53 0.408467 0.36087 21022 109990 -1 3580 19 1717 5251 343339 79449 7.37016 7.37016 -162.574 -7.37016 0 0 585099. 2024.56 0.22 0.11 0.10 -1 -1 0.22 0.036356 0.0328675 205 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 9.43 vpr 62.09 MiB -1 -1 0.26 17988 13 0.24 -1 -1 32580 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63584 30 32 234 266 1 186 86 17 17 289 -1 unnamed_device 23.5 MiB 0.49 1107 9158 2494 5916 748 62.1 MiB 0.09 0.00 7.35655 -149.828 -7.35655 7.35655 0.93 0.000586095 0.000529305 0.0326022 0.0297094 28 3169 37 6.55708e+06 289320 500653. 1732.36 5.37 0.258666 0.229161 21310 115450 -1 2549 19 1137 3047 158121 37656 6.65718 6.65718 -146.074 -6.65718 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0340424 0.0307224 147 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 10.80 vpr 62.76 MiB -1 -1 0.34 18804 13 0.52 -1 -1 32648 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 291 323 1 232 94 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1381 6484 1204 4933 347 62.8 MiB 0.08 0.00 8.19984 -161.023 -8.19984 8.19984 0.92 0.000761379 0.000696657 0.0279475 0.0257319 32 3884 22 6.55708e+06 385760 554710. 1919.41 6.33 0.369554 0.32696 22174 131602 -1 3307 23 1584 4418 336902 108642 7.04936 7.04936 -154.019 -7.04936 0 0 701300. 2426.64 0.26 0.14 0.11 -1 -1 0.26 0.0466014 0.0422162 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.27 vpr 62.36 MiB -1 -1 0.32 18632 14 0.39 -1 -1 32856 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 274 306 1 210 91 17 17 289 -1 unnamed_device 23.9 MiB 0.61 1305 5599 950 4386 263 62.4 MiB 0.06 0.00 8.03849 -165.113 -8.03849 8.03849 0.92 0.000719894 0.000659052 0.0239472 0.0219871 30 3350 18 6.55708e+06 325485 526063. 1820.29 1.76 0.134803 0.119512 21886 126133 -1 2845 17 1252 4156 204492 47404 6.93176 6.93176 -158.794 -6.93176 0 0 666494. 2306.21 0.29 0.09 0.12 -1 -1 0.29 0.0350894 0.0317457 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 6.19 vpr 62.36 MiB -1 -1 0.32 18552 13 0.28 -1 -1 32756 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63856 31 32 266 298 1 204 88 17 17 289 -1 unnamed_device 23.6 MiB 0.35 1143 8473 2254 5090 1129 62.4 MiB 0.09 0.00 7.8048 -151.404 -7.8048 7.8048 0.92 0.000681024 0.000624259 0.0342592 0.0314838 34 3368 24 6.55708e+06 301375 585099. 2024.56 2.08 0.187616 0.166056 22462 138074 -1 2783 18 1305 3836 222593 53022 7.14824 7.14824 -151.66 -7.14824 0 0 742403. 2568.87 0.31 0.09 0.14 -1 -1 0.31 0.0322524 0.0288754 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 7.48 vpr 62.43 MiB -1 -1 0.32 18592 13 0.26 -1 -1 32672 -1 -1 27 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 266 298 1 204 89 17 17 289 -1 unnamed_device 23.8 MiB 0.50 1313 4445 808 3252 385 62.4 MiB 0.05 0.00 7.65777 -143.701 -7.65777 7.65777 0.90 0.000572478 0.000523178 0.0177035 0.0162327 30 3154 19 6.55708e+06 325485 526063. 1820.29 3.38 0.218647 0.192801 21886 126133 -1 2627 15 1137 3398 163696 38548 6.8013 6.8013 -139.702 -6.8013 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0300589 0.0272432 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 13.10 vpr 62.89 MiB -1 -1 0.33 18608 14 0.47 -1 -1 32748 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 310 342 1 238 101 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1488 10441 2580 6390 1471 62.9 MiB 0.12 0.00 8.09286 -167.507 -8.09286 8.09286 0.77 0.00111161 0.000997092 0.0543265 0.0500638 28 4781 47 6.55708e+06 446035 500653. 1732.36 8.79 0.405392 0.35756 21310 115450 -1 3540 26 1713 4735 308744 82391 7.06724 7.06724 -164.473 -7.06724 0 0 612192. 2118.31 0.25 0.14 0.11 -1 -1 0.25 0.0530375 0.0476237 218 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 6.10 vpr 62.36 MiB -1 -1 0.31 18536 11 0.35 -1 -1 32804 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63852 29 32 262 294 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.54 1205 8130 1875 5560 695 62.4 MiB 0.08 0.00 6.90974 -135.543 -6.90974 6.90974 0.92 0.000706354 0.000648936 0.0331957 0.0305527 28 3722 38 6.55708e+06 349595 500653. 1732.36 1.74 0.174466 0.152325 21310 115450 -1 2903 18 1524 4535 250873 58253 6.13918 6.13918 -134.297 -6.13918 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0321298 0.0287769 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 5.67 vpr 62.10 MiB -1 -1 0.25 17884 13 0.18 -1 -1 32624 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 222 254 1 180 88 17 17 289 -1 unnamed_device 23.6 MiB 0.34 1186 6328 1272 4421 635 62.1 MiB 0.06 0.00 7.14789 -159.983 -7.14789 7.14789 0.94 0.000555643 0.000509408 0.0218481 0.0201211 26 3207 44 6.55708e+06 289320 477104. 1650.88 1.80 0.139406 0.123293 21022 109990 -1 2755 26 1085 2789 235742 72914 6.25998 6.25998 -159.277 -6.25998 0 0 585099. 2024.56 0.24 0.10 0.10 -1 -1 0.24 0.0337478 0.0300579 138 128 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 8.74 vpr 62.56 MiB -1 -1 0.30 18464 14 0.29 -1 -1 32804 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 267 299 1 205 92 17 17 289 -1 unnamed_device 24.1 MiB 0.50 1337 6509 1295 4681 533 62.6 MiB 0.07 0.00 7.98458 -168.027 -7.98458 7.98458 0.93 0.000702871 0.000647273 0.0254465 0.0234186 38 3146 18 6.55708e+06 337540 638502. 2209.35 4.41 0.243815 0.214813 23326 155178 -1 2718 15 1153 3777 199782 43677 7.1997 7.1997 -160.097 -7.1997 0 0 851065. 2944.86 0.35 0.09 0.16 -1 -1 0.35 0.0317285 0.0287904 179 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 7.50 vpr 63.10 MiB -1 -1 0.38 19148 15 0.44 -1 -1 32920 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 334 366 1 263 97 17 17 289 -1 unnamed_device 24.5 MiB 0.34 1610 8311 1730 5798 783 63.1 MiB 0.10 0.00 9.07969 -190.885 -9.07969 9.07969 0.96 0.000854624 0.00078291 0.0386389 0.035457 34 4438 31 6.55708e+06 397815 585099. 2024.56 2.95 0.295107 0.26246 22462 138074 -1 3668 27 1744 5195 426058 136841 8.10021 8.10021 -183.633 -8.10021 0 0 742403. 2568.87 0.31 0.18 0.14 -1 -1 0.31 0.056492 0.050631 241 240 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.47 vpr 62.03 MiB -1 -1 0.24 17952 11 0.22 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 220 252 1 157 86 17 17 289 -1 unnamed_device 23.3 MiB 0.51 979 5945 1142 4535 268 62.0 MiB 0.05 0.00 6.54888 -132.473 -6.54888 6.54888 0.95 0.000569307 0.000522367 0.0210833 0.0194044 28 2604 31 6.55708e+06 265210 500653. 1732.36 1.38 0.130359 0.116624 21310 115450 -1 2227 15 888 2456 141980 33858 5.98178 5.98178 -133.169 -5.98178 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.022523 0.0202333 129 126 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 5.67 vpr 62.29 MiB -1 -1 0.26 18088 12 0.22 -1 -1 33056 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63788 31 32 244 276 1 193 89 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1184 5435 1029 3992 414 62.3 MiB 0.06 0.00 6.88026 -147.814 -6.88026 6.88026 0.93 0.000612198 0.000560707 0.0200925 0.0184571 32 3151 20 6.55708e+06 313430 554710. 1919.41 1.66 0.126024 0.109811 22174 131602 -1 2737 15 1161 3340 175546 41182 6.25678 6.25678 -145.27 -6.25678 0 0 701300. 2426.64 0.26 0.07 0.13 -1 -1 0.26 0.0241629 0.0218331 156 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 5.80 vpr 62.63 MiB -1 -1 0.33 18640 12 0.40 -1 -1 32884 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 300 332 1 237 96 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1451 10608 2638 6974 996 62.6 MiB 0.10 0.00 7.23744 -159.275 -7.23744 7.23744 0.87 0.000734972 0.000672899 0.040647 0.0372933 30 3847 24 6.55708e+06 385760 526063. 1820.29 1.58 0.164752 0.14668 21886 126133 -1 3154 17 1634 4863 229621 53777 6.11164 6.11164 -150.417 -6.11164 0 0 666494. 2306.21 0.26 0.09 0.13 -1 -1 0.26 0.0350287 0.0314848 213 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 11.94 vpr 62.60 MiB -1 -1 0.33 18716 12 0.32 -1 -1 32824 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 271 303 1 211 90 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1398 8733 1967 5833 933 62.6 MiB 0.09 0.00 7.43539 -158.721 -7.43539 7.43539 0.92 0.000788579 0.000723882 0.0369333 0.0339435 28 4295 34 6.55708e+06 313430 500653. 1732.36 7.85 0.298901 0.261223 21310 115450 -1 3331 28 1545 4789 415240 149852 6.50944 6.50944 -156.271 -6.50944 0 0 612192. 2118.31 0.26 0.16 0.11 -1 -1 0.26 0.0437044 0.0384998 181 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 7.31 vpr 62.90 MiB -1 -1 0.33 18884 14 0.55 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 327 359 1 242 95 17 17 289 -1 unnamed_device 24.4 MiB 0.58 1665 7871 1657 5890 324 62.9 MiB 0.09 0.00 8.95358 -178.735 -8.95358 8.95358 0.76 0.00106637 0.000986549 0.0440233 0.0406644 36 4279 26 6.55708e+06 373705 612192. 2118.31 2.91 0.285738 0.25276 22750 144809 -1 3672 19 1721 5572 314368 71554 7.56735 7.56735 -165.183 -7.56735 0 0 782063. 2706.10 0.33 0.13 0.15 -1 -1 0.33 0.0434802 0.0393225 234 233 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 6.62 vpr 62.41 MiB -1 -1 0.31 18364 12 0.28 -1 -1 32828 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 246 278 1 191 87 17 17 289 -1 unnamed_device 23.8 MiB 0.53 1243 8727 1998 5960 769 62.4 MiB 0.08 0.00 7.13411 -137.801 -7.13411 7.13411 0.87 0.000657286 0.000602711 0.0332075 0.0305791 28 3916 37 6.55708e+06 301375 500653. 1732.36 2.51 0.166296 0.145268 21310 115450 -1 3049 19 1225 3778 249348 54624 6.03324 6.03324 -133.577 -6.03324 0 0 612192. 2118.31 0.25 0.10 0.11 -1 -1 0.25 0.0338514 0.0303616 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 6.62 vpr 62.12 MiB -1 -1 0.32 18236 11 0.23 -1 -1 32608 -1 -1 26 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63612 27 32 219 251 1 163 85 17 17 289 -1 unnamed_device 23.7 MiB 0.29 979 9199 2492 5781 926 62.1 MiB 0.08 0.00 6.86503 -123.275 -6.86503 6.86503 0.82 0.000550118 0.000505601 0.0314792 0.028871 26 2789 46 6.55708e+06 313430 477104. 1650.88 3.09 0.234291 0.206836 21022 109990 -1 2336 15 928 2775 157841 37106 6.02098 6.02098 -121.839 -6.02098 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0239993 0.0216784 140 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.04 vpr 62.93 MiB -1 -1 0.37 19220 13 0.52 -1 -1 32988 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 380 412 1 282 104 17 17 289 -1 unnamed_device 24.8 MiB 0.52 1739 8400 1898 5561 941 62.9 MiB 0.11 0.00 7.90403 -157.442 -7.90403 7.90403 0.93 0.000951142 0.000871959 0.0393175 0.0361058 40 4484 27 6.55708e+06 482200 666494. 2306.21 4.01 0.300144 0.266137 23614 160646 -1 3916 48 3258 12659 1049740 398623 7.06924 7.06924 -158.297 -7.06924 0 0 872365. 3018.56 0.35 0.39 0.16 -1 -1 0.35 0.0900446 0.0791532 286 286 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.59 vpr 62.49 MiB -1 -1 0.32 18660 14 0.32 -1 -1 32804 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 31 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.1 MiB 0.27 1261 11107 2450 7308 1349 62.5 MiB 0.11 0.00 8.13646 -161.778 -8.13646 8.13646 0.71 0.000902588 0.000830209 0.0540873 0.0499051 26 3701 50 6.55708e+06 337540 477104. 1650.88 1.76 0.219627 0.193987 21022 109990 -1 3119 18 1494 4161 237221 55241 7.11104 7.11104 -155.907 -7.11104 0 0 585099. 2024.56 0.25 0.10 0.10 -1 -1 0.25 0.0354277 0.031833 188 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.29 vpr 62.00 MiB -1 -1 0.29 18308 12 0.22 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63488 32 32 229 261 1 178 91 17 17 289 -1 unnamed_device 23.5 MiB 0.38 1200 9883 2726 6549 608 62.0 MiB 0.08 0.00 7.16941 -157.701 -7.16941 7.16941 0.90 0.00060446 0.00055446 0.0328768 0.0301527 28 3160 19 6.55708e+06 325485 500653. 1732.36 1.38 0.117117 0.103679 21310 115450 -1 2677 18 1049 2960 178456 40940 6.22984 6.22984 -150.744 -6.22984 0 0 612192. 2118.31 0.25 0.08 0.12 -1 -1 0.25 0.0281216 0.0251557 145 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.39 vpr 62.46 MiB -1 -1 0.32 18456 13 0.37 -1 -1 32892 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 263 295 1 201 90 17 17 289 -1 unnamed_device 24.0 MiB 0.55 1270 7326 1666 5130 530 62.5 MiB 0.08 0.00 7.85381 -158.457 -7.85381 7.85381 0.66 0.000895707 0.000830578 0.0364695 0.0338176 30 3165 23 6.55708e+06 313430 526063. 1820.29 1.31 0.150409 0.132497 21886 126133 -1 2770 17 1193 3505 177808 41085 6.6837 6.6837 -148.567 -6.6837 0 0 666494. 2306.21 0.27 0.08 0.11 -1 -1 0.27 0.0319418 0.0288332 169 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 9.94 vpr 62.78 MiB -1 -1 0.34 18904 13 0.41 -1 -1 32812 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 321 353 1 256 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1567 6848 1250 5272 326 62.8 MiB 0.08 0.00 7.93997 -162.463 -7.93997 7.93997 0.69 0.00103047 0.000950907 0.03514 0.0325106 32 4179 42 6.55708e+06 421925 554710. 1919.41 5.84 0.372852 0.325902 22174 131602 -1 3613 19 1583 4654 310948 81794 6.7993 6.7993 -154.218 -6.7993 0 0 701300. 2426.64 0.29 0.12 0.14 -1 -1 0.29 0.0402791 0.0362535 233 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 6.67 vpr 62.47 MiB -1 -1 0.29 18312 11 0.32 -1 -1 32860 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 287 319 1 212 93 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1431 6393 1248 4502 643 62.5 MiB 0.07 0.00 6.69021 -132.692 -6.69021 6.69021 0.93 0.000717651 0.000647924 0.0258475 0.0237118 36 3516 22 6.55708e+06 373705 612192. 2118.31 2.57 0.228857 0.201202 22750 144809 -1 3041 16 1328 4461 252636 57111 5.61352 5.61352 -125.545 -5.61352 0 0 782063. 2706.10 0.23 0.10 0.13 -1 -1 0.23 0.035243 0.0313212 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.85 vpr 62.57 MiB -1 -1 0.32 18644 15 0.44 -1 -1 32816 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 296 328 1 223 93 17 17 289 -1 unnamed_device 24.0 MiB 0.62 1449 8493 1841 5572 1080 62.6 MiB 0.09 0.00 8.92955 -182.976 -8.92955 8.92955 0.89 0.000753577 0.000688395 0.0345402 0.0314795 30 3750 34 6.55708e+06 349595 526063. 1820.29 2.35 0.193225 0.172131 21886 126133 -1 3091 17 1328 4240 214055 52083 7.85721 7.85721 -175.244 -7.85721 0 0 666494. 2306.21 0.28 0.09 0.12 -1 -1 0.28 0.0353563 0.0317852 202 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.99 vpr 62.65 MiB -1 -1 0.35 18956 13 0.33 -1 -1 32736 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 285 317 1 224 94 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1371 7123 1421 5075 627 62.6 MiB 0.08 0.00 7.82963 -168.646 -7.82963 7.82963 0.67 0.00119207 0.00110011 0.0356121 0.0328526 28 4281 30 6.55708e+06 361650 500653. 1732.36 2.14 0.17692 0.154939 21310 115450 -1 3209 18 1384 4211 233221 53336 6.8405 6.8405 -160.341 -6.8405 0 0 612192. 2118.31 0.24 0.10 0.11 -1 -1 0.24 0.0383376 0.0346217 194 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 5.65 vpr 62.20 MiB -1 -1 0.28 18072 12 0.25 -1 -1 32632 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63696 29 32 239 271 1 189 90 17 17 289 -1 unnamed_device 23.6 MiB 0.57 1076 11145 2707 7146 1292 62.2 MiB 0.10 0.00 7.48815 -152.335 -7.48815 7.48815 0.84 0.000677579 0.000625535 0.0452664 0.0417674 28 3345 48 6.55708e+06 349595 500653. 1732.36 1.76 0.182287 0.161919 21310 115450 -1 2605 23 1555 4421 296494 80891 6.7621 6.7621 -148.302 -6.7621 0 0 612192. 2118.31 0.19 0.12 0.12 -1 -1 0.19 0.0383566 0.0337492 157 154 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 5.04 vpr 61.98 MiB -1 -1 0.28 18368 11 0.19 -1 -1 32664 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63468 32 32 235 267 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.26 1137 9013 2200 5776 1037 62.0 MiB 0.08 0.00 6.83529 -140.07 -6.83529 6.83529 0.88 0.000535543 0.000489022 0.0299854 0.0274278 28 3260 26 6.55708e+06 253155 500653. 1732.36 1.30 0.130869 0.114824 21310 115450 -1 2569 21 1154 3187 179189 42061 6.22418 6.22418 -138.311 -6.22418 0 0 612192. 2118.31 0.27 0.08 0.11 -1 -1 0.27 0.0291222 0.0258989 145 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.98 vpr 62.58 MiB -1 -1 0.31 18332 13 0.38 -1 -1 32864 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 294 326 1 226 92 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1445 8165 2047 5274 844 62.6 MiB 0.10 0.00 8.06583 -161.677 -8.06583 8.06583 0.80 0.000961232 0.000888787 0.0443017 0.0407802 30 3916 30 6.55708e+06 349595 526063. 1820.29 1.61 0.181793 0.159974 21886 126133 -1 3095 19 1441 4607 229808 53551 7.2409 7.2409 -157.975 -7.2409 0 0 666494. 2306.21 0.29 0.10 0.12 -1 -1 0.29 0.0364507 0.0327029 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 6.46 vpr 62.06 MiB -1 -1 0.25 18000 10 0.20 -1 -1 33000 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63548 29 32 219 251 1 164 85 17 17 289 -1 unnamed_device 23.5 MiB 0.24 1034 4921 1106 3348 467 62.1 MiB 0.05 0.00 5.68406 -116.659 -5.68406 5.68406 0.69 0.00052781 0.000477503 0.0189675 0.0173215 30 2338 20 6.55708e+06 289320 526063. 1820.29 3.11 0.18374 0.158826 21886 126133 -1 2113 18 979 3066 145357 34666 4.97272 4.97272 -114.109 -4.97272 0 0 666494. 2306.21 0.27 0.07 0.13 -1 -1 0.27 0.0258207 0.0230499 137 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.73 vpr 62.21 MiB -1 -1 0.29 17892 14 0.25 -1 -1 32640 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 239 271 1 186 88 17 17 289 -1 unnamed_device 23.6 MiB 0.64 1088 10813 2512 6516 1785 62.2 MiB 0.10 0.00 7.85572 -162.036 -7.85572 7.85572 0.84 0.000786794 0.000727755 0.045731 0.0422985 30 3060 27 6.55708e+06 289320 526063. 1820.29 1.33 0.150036 0.132886 21886 126133 -1 2356 20 1065 3088 150557 36243 6.94764 6.94764 -155.495 -6.94764 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0288947 0.025742 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 10.99 vpr 62.58 MiB -1 -1 0.23 18620 13 0.33 -1 -1 32772 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 266 298 1 208 93 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1286 9333 2274 5926 1133 62.6 MiB 0.08 0.00 7.57111 -160.828 -7.57111 7.57111 0.90 0.00069301 0.000636875 0.0323189 0.0295873 28 4132 42 6.55708e+06 361650 500653. 1732.36 6.69 0.257488 0.224107 21310 115450 -1 3042 64 1478 4088 756023 379209 6.78964 6.78964 -163.06 -6.78964 0 0 612192. 2118.31 0.25 0.35 0.11 -1 -1 0.25 0.0922092 0.0812429 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 7.01 vpr 62.06 MiB -1 -1 0.25 18080 12 0.19 -1 -1 32560 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63552 31 32 225 257 1 178 89 17 17 289 -1 unnamed_device 23.6 MiB 0.37 1206 10385 2702 6390 1293 62.1 MiB 0.08 0.00 6.65202 -141.569 -6.65202 6.65202 0.81 0.000508293 0.00046582 0.0301023 0.0275399 30 2784 18 6.55708e+06 313430 526063. 1820.29 3.36 0.185522 0.161644 21886 126133 -1 2353 14 929 2429 125915 28916 6.00932 6.00932 -140.025 -6.00932 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.0225364 0.0203282 138 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 11.18 vpr 62.62 MiB -1 -1 0.29 18604 12 0.24 -1 -1 32836 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 288 320 1 216 90 17 17 289 -1 unnamed_device 24.1 MiB 0.39 1371 5718 1045 4451 222 62.6 MiB 0.06 0.00 7.06387 -150.59 -7.06387 7.06387 0.90 0.000706267 0.000645726 0.0239198 0.0218313 30 3375 45 6.55708e+06 313430 526063. 1820.29 7.20 0.290907 0.250466 21886 126133 -1 2920 16 1258 3953 199038 45797 6.27364 6.27364 -146.86 -6.27364 0 0 666494. 2306.21 0.27 0.08 0.13 -1 -1 0.27 0.0310125 0.0278163 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.35 vpr 62.68 MiB -1 -1 0.42 18560 13 0.35 -1 -1 32868 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 282 314 1 222 92 17 17 289 -1 unnamed_device 24.1 MiB 0.54 1352 12719 3295 7542 1882 62.7 MiB 0.14 0.00 7.66758 -155.332 -7.66758 7.66758 0.68 0.000957968 0.000885934 0.0624921 0.0577622 32 3515 20 6.55708e+06 349595 554710. 1919.41 1.97 0.211791 0.189215 22174 131602 -1 2919 17 1339 4113 219614 52063 6.8013 6.8013 -148.6 -6.8013 0 0 701300. 2426.64 0.29 0.10 0.12 -1 -1 0.29 0.0369984 0.0334886 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 5.17 vpr 62.05 MiB -1 -1 0.28 18280 11 0.20 -1 -1 32840 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63544 32 32 233 265 1 183 89 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1082 7415 1581 5155 679 62.1 MiB 0.07 0.00 6.31359 -143.036 -6.31359 6.31359 0.87 0.000608786 0.000558534 0.0250209 0.0228973 28 3218 25 6.55708e+06 301375 500653. 1732.36 1.42 0.142972 0.127812 21310 115450 -1 2515 15 1047 2919 162844 38094 5.57232 5.57232 -139.09 -5.57232 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0237 0.0213059 148 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 8.16 vpr 62.16 MiB -1 -1 0.29 18416 13 0.22 -1 -1 32704 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63648 32 32 254 286 1 196 88 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1235 12763 3469 7332 1962 62.2 MiB 0.11 0.00 7.41461 -156.931 -7.41461 7.41461 0.93 0.000678444 0.000622738 0.0481969 0.0442151 30 3169 23 6.55708e+06 289320 526063. 1820.29 4.08 0.243731 0.214588 21886 126133 -1 2724 26 1215 3657 302902 116903 6.30884 6.30884 -147.537 -6.30884 0 0 666494. 2306.21 0.28 0.14 0.12 -1 -1 0.28 0.0436733 0.0390685 164 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 6.58 vpr 62.68 MiB -1 -1 0.31 18264 13 0.33 -1 -1 32880 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 285 317 1 216 92 17 17 289 -1 unnamed_device 24.2 MiB 0.81 1388 6302 1254 4414 634 62.7 MiB 0.07 0.00 7.89081 -170.839 -7.89081 7.89081 0.92 0.000741413 0.000682159 0.0268911 0.0248035 34 3237 20 6.55708e+06 337540 585099. 2024.56 1.95 0.184062 0.162357 22462 138074 -1 2998 19 1364 3893 200791 47076 6.9195 6.9195 -159.525 -6.9195 0 0 742403. 2568.87 0.30 0.09 0.13 -1 -1 0.30 0.0380621 0.0343156 193 191 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 9.46 vpr 62.45 MiB -1 -1 0.31 18348 11 0.25 -1 -1 33224 -1 -1 27 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63944 29 32 243 275 1 185 88 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1142 12958 3537 7390 2031 62.4 MiB 0.10 0.00 6.51109 -124.99 -6.51109 6.51109 0.91 0.000608407 0.000556393 0.0438032 0.0401208 26 3403 43 6.55708e+06 325485 477104. 1650.88 5.54 0.246015 0.213491 21022 109990 -1 2747 28 1415 4276 361227 127549 5.85132 5.85132 -125.387 -5.85132 0 0 585099. 2024.56 0.24 0.14 0.11 -1 -1 0.24 0.0389367 0.0343554 160 158 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 6.79 vpr 63.00 MiB -1 -1 0.41 19068 14 0.39 -1 -1 33220 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 318 350 1 251 99 17 17 289 -1 unnamed_device 24.5 MiB 0.43 1576 7851 1546 5933 372 63.0 MiB 0.09 0.00 8.33526 -182.394 -8.33526 8.33526 0.90 0.000785576 0.000719858 0.0329765 0.0303569 30 4450 35 6.55708e+06 421925 526063. 1820.29 2.35 0.193948 0.171769 21886 126133 -1 3611 19 2114 6505 329298 76485 7.4375 7.4375 -177.262 -7.4375 0 0 666494. 2306.21 0.28 0.15 0.12 -1 -1 0.28 0.0481025 0.0435769 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 7.39 vpr 62.27 MiB -1 -1 0.24 18228 12 0.20 -1 -1 32576 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 222 254 1 184 91 17 17 289 -1 unnamed_device 23.8 MiB 0.33 1099 11311 2604 7322 1385 62.3 MiB 0.08 0.00 6.85552 -147.848 -6.85552 6.85552 0.90 0.000536796 0.000490887 0.0330067 0.0301896 30 2847 21 6.55708e+06 337540 526063. 1820.29 3.55 0.214849 0.18908 21886 126133 -1 2399 15 1012 2586 134760 31787 5.94058 5.94058 -137.663 -5.94058 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0232599 0.0209685 138 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 7.28 vpr 62.50 MiB -1 -1 0.39 18776 13 0.38 -1 -1 32704 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 282 314 1 218 89 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1274 9395 2232 5867 1296 62.5 MiB 0.09 0.00 7.81266 -155.924 -7.81266 7.81266 0.86 0.000753875 0.000676514 0.0380979 0.0344921 30 3950 46 6.55708e+06 301375 526063. 1820.29 2.97 0.180856 0.15947 21886 126133 -1 2874 18 1346 4256 223788 52651 6.7575 6.7575 -149.517 -6.7575 0 0 666494. 2306.21 0.27 0.09 0.13 -1 -1 0.27 0.0336361 0.0301824 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.23 vpr 61.99 MiB -1 -1 0.31 18336 13 0.22 -1 -1 32620 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.41 1170 8130 1915 5523 692 62.0 MiB 0.07 0.00 7.51063 -158.904 -7.51063 7.51063 0.89 0.000572613 0.000523196 0.0260477 0.0238406 28 3275 22 6.55708e+06 313430 500653. 1732.36 1.45 0.131493 0.117727 21310 115450 -1 2701 14 1063 2769 161463 37465 6.4015 6.4015 -153.298 -6.4015 0 0 612192. 2118.31 0.17 0.04 0.09 -1 -1 0.17 0.0148168 0.0134523 151 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 11.03 vpr 62.31 MiB -1 -1 0.35 18612 12 0.28 -1 -1 32748 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 269 301 1 199 90 17 17 289 -1 unnamed_device 23.6 MiB 0.33 1308 9336 2430 5918 988 62.3 MiB 0.09 0.00 6.8413 -150.87 -6.8413 6.8413 0.97 0.000715595 0.000659389 0.0375547 0.034501 28 3794 46 6.55708e+06 313430 500653. 1732.36 6.86 0.320863 0.283704 21310 115450 -1 2919 17 1172 3774 214233 48773 6.23184 6.23184 -145.532 -6.23184 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0351978 0.0318412 176 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 9.64 vpr 63.01 MiB -1 -1 0.37 19336 15 0.59 -1 -1 33212 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 350 382 1 272 100 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1721 13324 3640 7906 1778 63.0 MiB 0.14 0.00 8.79929 -171.347 -8.79929 8.79929 0.68 0.00119017 0.00109265 0.0700502 0.0645009 44 3961 24 6.55708e+06 433980 742403. 2568.87 5.26 0.439737 0.388239 24478 177802 -1 3364 30 1739 5756 363407 114726 7.56996 7.56996 -161.568 -7.56996 0 0 937218. 3242.97 0.30 0.17 0.17 -1 -1 0.30 0.0685404 0.0598845 256 256 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 4.45 vpr 61.66 MiB -1 -1 0.21 17796 10 0.12 -1 -1 32548 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63144 30 32 174 206 1 139 80 17 17 289 -1 unnamed_device 23.1 MiB 0.12 909 3864 801 2776 287 61.7 MiB 0.03 0.00 5.1986 -120.097 -5.1986 5.1986 0.90 0.000415517 0.000378043 0.011773 0.0108277 26 2316 23 6.55708e+06 216990 477104. 1650.88 1.14 0.0837602 0.0741568 21022 109990 -1 2026 17 875 2208 134397 31274 4.57854 4.57854 -121.186 -4.57854 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0195698 0.0175082 92 86 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.85 vpr 62.04 MiB -1 -1 0.34 18364 13 0.22 -1 -1 32612 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63532 30 32 228 260 1 171 87 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1036 7575 1525 5019 1031 62.0 MiB 0.07 0.00 7.36426 -147.717 -7.36426 7.36426 0.71 0.000764642 0.000706778 0.0330513 0.0306181 28 2948 21 6.55708e+06 301375 500653. 1732.36 1.19 0.13865 0.123939 21310 115450 -1 2487 18 1040 2821 175004 44817 6.77798 6.77798 -145.56 -6.77798 0 0 612192. 2118.31 0.26 0.08 0.10 -1 -1 0.26 0.0291653 0.0262808 143 140 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 5.72 vpr 62.34 MiB -1 -1 0.32 18356 12 0.25 -1 -1 32620 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63840 32 32 264 296 1 204 88 17 17 289 -1 unnamed_device 23.7 MiB 0.33 1153 10813 3047 5880 1886 62.3 MiB 0.09 0.00 7.55494 -153.61 -7.55494 7.55494 0.88 0.000657147 0.000600035 0.0408396 0.0374379 32 2959 26 6.55708e+06 289320 554710. 1919.41 1.74 0.164483 0.14391 22174 131602 -1 2562 16 1196 3142 168407 43583 6.58844 6.58844 -151.632 -6.58844 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0316997 0.0287364 171 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.57 vpr 61.72 MiB -1 -1 0.25 17900 9 0.17 -1 -1 32436 -1 -1 22 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63204 25 32 183 215 1 140 79 17 17 289 -1 unnamed_device 23.2 MiB 0.20 830 9374 2202 6391 781 61.7 MiB 0.07 0.00 5.41683 -98.6163 -5.41683 5.41683 0.89 0.000484729 0.000446537 0.0299505 0.0274969 30 1933 18 6.55708e+06 265210 526063. 1820.29 0.96 0.0940236 0.0830954 21886 126133 -1 1678 18 701 2000 93548 22278 4.64166 4.64166 -93.7436 -4.64166 0 0 666494. 2306.21 0.30 0.05 0.12 -1 -1 0.30 0.0235927 0.0211911 111 110 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 5.89 vpr 62.66 MiB -1 -1 0.34 18668 12 0.33 -1 -1 32816 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 300 332 1 233 97 17 17 289 -1 unnamed_device 24.0 MiB 0.42 1426 9865 2341 6996 528 62.7 MiB 0.11 0.00 7.21898 -157.037 -7.21898 7.21898 0.71 0.000970706 0.000896552 0.0476091 0.0439856 34 3603 32 6.55708e+06 397815 585099. 2024.56 1.85 0.230995 0.204482 22462 138074 -1 3174 18 1509 4429 228737 54408 6.2833 6.2833 -151.292 -6.2833 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.037925 0.0334013 212 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 11.33 vpr 62.51 MiB -1 -1 0.32 19144 13 0.37 -1 -1 32684 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 290 322 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1441 7863 1836 5236 791 62.5 MiB 0.08 0.00 8.16309 -168.172 -8.16309 8.16309 0.91 0.00073806 0.000677107 0.0319344 0.0292926 30 4009 48 6.55708e+06 361650 526063. 1820.29 7.08 0.410429 0.359187 21886 126133 -1 3280 18 1591 5001 245972 57102 6.76976 6.76976 -156.385 -6.76976 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0338405 0.0303128 200 199 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.71 vpr 62.77 MiB -1 -1 0.21 18276 1 0.03 -1 -1 30260 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 354 285 1 202 96 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1016 11703 2995 7482 1226 62.8 MiB 0.12 0.00 5.5261 -159.162 -5.5261 5.5261 0.90 0.000556346 0.000511652 0.0329755 0.0303947 32 2321 22 6.64007e+06 401856 554710. 1919.41 0.99 0.104435 0.0920482 22834 132086 -1 2054 19 1238 1984 113856 27331 4.29188 4.29188 -145.316 -4.29188 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.0261416 0.0233581 154 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.58 vpr 62.69 MiB -1 -1 0.22 18388 1 0.03 -1 -1 30368 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 30 32 363 293 1 196 87 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1071 13527 3636 8473 1418 62.7 MiB 0.13 0.00 4.97921 -144.408 -4.97921 4.97921 0.73 0.000539946 0.000495369 0.0530231 0.0491349 32 2213 21 6.64007e+06 313950 554710. 1919.41 1.04 0.130016 0.116261 22834 132086 -1 2002 19 1244 1916 113012 27100 4.03489 4.03489 -137.781 -4.03489 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.025595 0.0228351 141 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.46 vpr 62.49 MiB -1 -1 0.17 18484 1 0.03 -1 -1 30284 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1074 15639 5003 8705 1931 62.5 MiB 0.13 0.00 4.31513 -125.567 -4.31513 4.31513 0.93 0.000464829 0.000427042 0.0411791 0.0378852 32 2286 21 6.64007e+06 288834 554710. 1919.41 0.91 0.100503 0.0891833 22834 132086 -1 1999 20 1084 1559 102142 23711 3.55343 3.55343 -121.431 -3.55343 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0231314 0.0204985 126 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.67 vpr 62.46 MiB -1 -1 0.20 18340 1 0.04 -1 -1 30432 -1 -1 27 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63956 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.8 MiB 0.06 931 15103 4868 7954 2281 62.5 MiB 0.14 0.00 4.52953 -121.776 -4.52953 4.52953 1.00 0.000498314 0.000457582 0.0414548 0.0380333 32 2077 21 6.64007e+06 339066 554710. 1919.41 1.04 0.105586 0.0930574 22834 132086 -1 1917 20 1145 2169 139732 31707 3.54643 3.54643 -113.362 -3.54643 0 0 701300. 2426.64 0.26 0.07 0.12 -1 -1 0.26 0.0260582 0.0227899 126 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.39 vpr 62.55 MiB -1 -1 0.23 18216 1 0.03 -1 -1 30412 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.9 MiB 0.07 1007 10071 2662 6608 801 62.5 MiB 0.10 0.00 4.57112 -132.997 -4.57112 4.57112 0.87 0.000537621 0.000494993 0.030477 0.0280632 32 2234 19 6.64007e+06 288834 554710. 1919.41 0.98 0.0976041 0.0862874 22834 132086 -1 1891 18 1197 2318 127437 30046 3.51723 3.51723 -126.215 -3.51723 0 0 701300. 2426.64 0.30 0.06 0.15 -1 -1 0.30 0.0238038 0.0212261 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.56 vpr 62.54 MiB -1 -1 0.21 18296 1 0.03 -1 -1 30240 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 366 295 1 189 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1015 12248 3024 8320 904 62.5 MiB 0.13 0.00 3.5011 -120.544 -3.5011 3.5011 0.78 0.000784834 0.000715031 0.0371062 0.0342399 28 2649 37 6.64007e+06 426972 500653. 1732.36 1.28 0.14568 0.127685 21970 115934 -1 2228 19 1442 2312 148611 35750 2.97917 2.97917 -120.58 -2.97917 0 0 612192. 2118.31 0.27 0.07 0.12 -1 -1 0.27 0.0261602 0.0232851 142 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.24 vpr 62.16 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30572 -1 -1 19 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63656 27 32 259 221 1 130 78 17 17 289 -1 unnamed_device 23.6 MiB 0.09 708 9374 2595 5724 1055 62.2 MiB 0.07 0.00 4.05083 -102.502 -4.05083 4.05083 0.89 0.000417977 0.000384888 0.0247708 0.0228243 32 1464 22 6.64007e+06 238602 554710. 1919.41 0.92 0.0787567 0.0691217 22834 132086 -1 1333 19 718 1230 71285 17405 2.97816 2.97816 -93.0207 -2.97816 0 0 701300. 2426.64 0.26 0.05 0.14 -1 -1 0.26 0.0200657 0.017821 93 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.49 vpr 62.23 MiB -1 -1 0.18 18232 1 0.03 -1 -1 30028 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63724 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 827 11383 2423 8400 560 62.2 MiB 0.09 0.00 3.48559 -101.391 -3.48559 3.48559 0.95 0.000473363 0.000433936 0.0273488 0.0251216 28 2157 21 6.64007e+06 389298 500653. 1732.36 1.11 0.0967681 0.0856821 21970 115934 -1 1909 19 945 1698 119108 27761 2.77597 2.77597 -98.6032 -2.77597 0 0 612192. 2118.31 0.27 0.06 0.11 -1 -1 0.27 0.0217882 0.0193814 115 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.35 vpr 62.46 MiB -1 -1 0.23 18208 1 0.03 -1 -1 30108 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63964 31 32 317 271 1 167 83 17 17 289 -1 unnamed_device 23.9 MiB 0.23 888 14123 4595 7521 2007 62.5 MiB 0.12 0.00 3.62422 -120.034 -3.62422 3.62422 0.89 0.000483381 0.000438118 0.0414567 0.0381669 32 1803 20 6.64007e+06 251160 554710. 1919.41 0.98 0.113881 0.100425 22834 132086 -1 1682 20 939 1368 81401 19315 3.05263 3.05263 -116.946 -3.05263 0 0 701300. 2426.64 0.26 0.06 0.13 -1 -1 0.26 0.0266365 0.0233254 111 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.33 vpr 62.25 MiB -1 -1 0.23 18360 1 0.03 -1 -1 30128 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.16 874 11631 3631 6742 1258 62.3 MiB 0.10 0.00 3.92955 -127.77 -3.92955 3.92955 0.90 0.00047748 0.00043906 0.0335644 0.0308516 32 1820 21 6.64007e+06 213486 554710. 1919.41 0.95 0.0943866 0.0834214 22834 132086 -1 1661 20 1004 1614 99137 23539 2.78157 2.78157 -113.165 -2.78157 0 0 701300. 2426.64 0.21 0.07 0.11 -1 -1 0.21 0.0261519 0.0228816 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.40 vpr 62.27 MiB -1 -1 0.20 18244 1 0.03 -1 -1 30468 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63760 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.6 MiB 0.14 729 11571 3200 7477 894 62.3 MiB 0.10 0.00 4.09995 -111.19 -4.09995 4.09995 0.91 0.000481261 0.000441667 0.0345379 0.0317584 28 1655 17 6.64007e+06 213486 500653. 1732.36 0.91 0.0916313 0.0805539 21970 115934 -1 1464 18 835 1294 85466 22003 2.92096 2.92096 -102.783 -2.92096 0 0 612192. 2118.31 0.27 0.05 0.12 -1 -1 0.27 0.0208 0.0183587 98 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.59 vpr 62.29 MiB -1 -1 0.18 18268 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 276 237 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 0.27 793 12008 4624 6064 1320 62.3 MiB 0.10 0.00 3.82041 -120.561 -3.82041 3.82041 0.96 0.000478372 0.000440048 0.0344415 0.0317424 32 2021 20 6.64007e+06 226044 554710. 1919.41 0.88 0.105249 0.0922832 22834 132086 -1 1739 16 913 1253 81585 19286 3.19457 3.19457 -113.846 -3.19457 0 0 701300. 2426.64 0.29 0.05 0.14 -1 -1 0.29 0.0183994 0.0163716 109 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.67 vpr 62.73 MiB -1 -1 0.20 18256 1 0.05 -1 -1 30328 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 24.2 MiB 0.25 921 8863 1921 5548 1394 62.7 MiB 0.08 0.00 4.43584 -138.372 -4.43584 4.43584 0.87 0.000552689 0.000508216 0.0273825 0.0252343 32 2505 23 6.64007e+06 301392 554710. 1919.41 1.11 0.10878 0.096272 22834 132086 -1 1856 19 1476 2277 135563 33667 3.29783 3.29783 -122.902 -3.29783 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.024929 0.022063 139 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 6.33 vpr 62.62 MiB -1 -1 0.17 18192 1 0.03 -1 -1 30284 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 885 17591 4750 10764 2077 62.6 MiB 0.17 0.00 4.98464 -139.028 -4.98464 4.98464 0.76 0.000569668 0.000513338 0.0550072 0.0506928 26 2611 25 6.64007e+06 389298 477104. 1650.88 3.07 0.237879 0.20789 21682 110474 -1 2067 19 1483 2362 159876 36454 3.99482 3.99482 -136.051 -3.99482 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0260659 0.0231602 134 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.13 vpr 62.11 MiB -1 -1 0.18 18156 1 0.03 -1 -1 30368 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63604 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.5 MiB 0.10 748 11118 2695 7379 1044 62.1 MiB 0.08 0.00 3.28519 -94.0444 -3.28519 3.28519 0.91 0.000409736 0.000374422 0.0273337 0.0249649 28 1695 17 6.64007e+06 263718 500653. 1732.36 0.87 0.0793249 0.0697821 21970 115934 -1 1432 19 806 1363 78609 18930 2.58757 2.58757 -89.9826 -2.58757 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0183472 0.0161503 98 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.80 vpr 62.66 MiB -1 -1 0.19 18396 1 0.03 -1 -1 30236 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 370 297 1 183 86 17 17 289 -1 unnamed_device 24.0 MiB 0.15 992 9914 2318 7193 403 62.7 MiB 0.11 0.00 4.02307 -125.622 -4.02307 4.02307 1.03 0.000571328 0.000524317 0.0334715 0.030843 32 2276 22 6.64007e+06 276276 554710. 1919.41 1.09 0.112894 0.0995349 22834 132086 -1 2014 19 1289 2276 146405 33111 3.02117 3.02117 -116.903 -3.02117 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0267568 0.0238391 133 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.53 vpr 62.71 MiB -1 -1 0.18 18296 1 0.03 -1 -1 30128 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 338 269 1 196 87 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1076 14679 4725 7906 2048 62.7 MiB 0.15 0.00 4.55604 -146.606 -4.55604 4.55604 0.87 0.000548848 0.000505903 0.0502121 0.0462288 28 2545 20 6.64007e+06 288834 500653. 1732.36 1.00 0.131548 0.116535 21970 115934 -1 2266 20 1456 2047 167475 38870 3.65563 3.65563 -137.091 -3.65563 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0273034 0.02441 138 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.22 vpr 62.39 MiB -1 -1 0.19 18280 1 0.03 -1 -1 30472 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.9 MiB 0.12 793 7443 1484 5603 356 62.4 MiB 0.07 0.00 2.85064 -101.719 -2.85064 2.85064 0.90 0.000518636 0.000476582 0.0209002 0.0192794 30 1820 20 6.64007e+06 364182 526063. 1820.29 0.90 0.0963536 0.0841839 22546 126617 -1 1601 18 995 1636 84292 20439 2.03391 2.03391 -94.6392 -2.03391 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0205492 0.0181114 110 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.84 vpr 61.81 MiB -1 -1 0.17 18004 1 0.03 -1 -1 30104 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.2 MiB 0.05 601 7249 1675 5111 463 61.8 MiB 0.06 0.00 2.38033 -78.5571 -2.38033 2.38033 0.89 0.000382039 0.000352121 0.0191909 0.01769 28 1411 21 6.64007e+06 188370 500653. 1732.36 0.87 0.0680391 0.0593337 21970 115934 -1 1240 17 615 860 62962 14943 2.19151 2.19151 -85.5337 -2.19151 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.0153889 0.013539 81 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.47 vpr 62.34 MiB -1 -1 0.19 18164 1 0.03 -1 -1 30460 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63840 31 32 291 243 1 171 83 17 17 289 -1 unnamed_device 23.9 MiB 0.25 928 14123 4909 7107 2107 62.3 MiB 0.13 0.00 4.89847 -147.53 -4.89847 4.89847 0.88 0.000449858 0.00041371 0.0485811 0.0453127 30 2053 21 6.64007e+06 251160 526063. 1820.29 0.99 0.115355 0.103282 22546 126617 -1 1815 20 1083 1623 94455 22070 3.67843 3.67843 -136.048 -3.67843 0 0 666494. 2306.21 0.26 0.06 0.11 -1 -1 0.26 0.0215904 0.0190396 128 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.43 vpr 62.54 MiB -1 -1 0.18 18280 1 0.03 -1 -1 30340 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.06 927 7007 1409 5318 280 62.5 MiB 0.07 0.00 4.20815 -131.502 -4.20815 4.20815 0.94 0.000559152 0.000514694 0.0203528 0.0186547 30 2075 21 6.64007e+06 389298 526063. 1820.29 1.02 0.0968849 0.0851919 22546 126617 -1 1916 21 1089 1828 106454 24448 3.50443 3.50443 -124.356 -3.50443 0 0 666494. 2306.21 0.29 0.07 0.12 -1 -1 0.29 0.028893 0.0258428 135 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.76 vpr 62.84 MiB -1 -1 0.23 18320 1 0.04 -1 -1 30220 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 372 300 1 204 89 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1164 13949 4120 8434 1395 62.8 MiB 0.14 0.00 4.61182 -142.538 -4.61182 4.61182 0.93 0.00054731 0.000501459 0.0425225 0.0389514 32 2487 18 6.64007e+06 313950 554710. 1919.41 1.00 0.113088 0.100269 22834 132086 -1 2218 20 1330 2129 138549 31279 3.69609 3.69609 -129.438 -3.69609 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.0274018 0.0244547 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.40 vpr 61.65 MiB -1 -1 0.17 18112 1 0.03 -1 -1 30564 -1 -1 18 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63132 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.1 MiB 0.17 372 9836 3040 4897 1899 61.7 MiB 0.06 0.00 2.3975 -64.6606 -2.3975 2.3975 0.91 0.000319842 0.000293153 0.0212496 0.0195227 32 944 28 6.64007e+06 226044 554710. 1919.41 1.06 0.067752 0.0592256 22834 132086 -1 750 18 586 841 46751 13217 2.09751 2.09751 -63.0486 -2.09751 0 0 701300. 2426.64 0.27 0.04 0.13 -1 -1 0.27 0.0137151 0.0121427 77 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.45 vpr 62.42 MiB -1 -1 0.19 17972 1 0.04 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.9 MiB 0.06 962 9571 2597 6402 572 62.4 MiB 0.10 0.00 5.07715 -127.364 -5.07715 5.07715 0.93 0.000630767 0.000585858 0.0348699 0.0323916 26 2338 25 6.64007e+06 263718 477104. 1650.88 1.14 0.122392 0.10817 21682 110474 -1 2039 20 1153 2207 145580 33465 4.26162 4.26162 -132.336 -4.26162 0 0 585099. 2024.56 0.18 0.07 0.10 -1 -1 0.18 0.0220377 0.0194535 118 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.17 vpr 61.93 MiB -1 -1 0.18 17860 1 0.03 -1 -1 30032 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 23.4 MiB 0.06 489 9374 3820 5276 278 61.9 MiB 0.06 0.00 2.56853 -74.8406 -2.56853 2.56853 0.95 0.000419199 0.000388271 0.0252558 0.0234038 28 1178 16 6.64007e+06 175812 500653. 1732.36 0.80 0.0738228 0.0652442 21970 115934 -1 1012 12 424 484 37977 9555 1.80091 1.80091 -70.4471 -1.80091 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0143596 0.0128582 79 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.16 vpr 62.47 MiB -1 -1 0.18 18392 1 0.03 -1 -1 30004 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 24.0 MiB 0.06 873 9040 2110 6495 435 62.5 MiB 0.08 0.00 4.62197 -125.344 -4.62197 4.62197 0.90 0.000472346 0.000434247 0.0223149 0.0205246 28 2052 21 6.64007e+06 376740 500653. 1732.36 0.94 0.0835417 0.0731087 21970 115934 -1 1759 19 868 1466 96462 21929 3.67563 3.67563 -115.95 -3.67563 0 0 612192. 2118.31 0.20 0.07 0.12 -1 -1 0.20 0.0255637 0.0223922 123 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.45 vpr 62.71 MiB -1 -1 0.18 18036 1 0.03 -1 -1 30372 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.1 MiB 0.06 1042 8735 1871 6045 819 62.7 MiB 0.08 0.00 3.82887 -111.523 -3.82887 3.82887 0.94 0.000469911 0.000431643 0.0221403 0.0203508 32 2132 19 6.64007e+06 389298 554710. 1919.41 0.96 0.084647 0.0745431 22834 132086 -1 1906 18 948 1685 110123 25600 2.84097 2.84097 -105.969 -2.84097 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0225041 0.0201061 128 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.19 vpr 62.42 MiB -1 -1 0.16 18416 1 0.04 -1 -1 30452 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 338 277 1 179 91 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1095 14371 4083 8488 1800 62.4 MiB 0.14 0.00 4.70658 -136.83 -4.70658 4.70658 0.78 0.000613147 0.000567992 0.0485872 0.0448754 32 2417 22 6.64007e+06 339066 554710. 1919.41 0.87 0.134205 0.1184 22834 132086 -1 2104 20 1098 1898 126946 28042 3.67843 3.67843 -127.199 -3.67843 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0238234 0.021046 126 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.33 vpr 62.18 MiB -1 -1 0.18 18312 1 0.03 -1 -1 30068 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.08 785 11260 3393 5970 1897 62.2 MiB 0.09 0.00 3.03896 -100.907 -3.03896 3.03896 0.94 0.000475488 0.000437346 0.033804 0.0311762 32 1688 17 6.64007e+06 200928 554710. 1919.41 0.95 0.0909746 0.0803633 22834 132086 -1 1515 21 808 1292 85148 19812 2.66577 2.66577 -100.118 -2.66577 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0223621 0.019704 101 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.48 vpr 62.17 MiB -1 -1 0.16 18060 1 0.03 -1 -1 30232 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.6 MiB 0.08 760 10873 2730 7151 992 62.2 MiB 0.09 0.00 3.24119 -98.8846 -3.24119 3.24119 1.00 0.000472242 0.000434001 0.0286111 0.0262608 32 1573 18 6.64007e+06 288834 554710. 1919.41 0.98 0.0844266 0.0743813 22834 132086 -1 1468 21 712 1147 74474 16528 2.68277 2.68277 -93.5695 -2.68277 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0207343 0.0182977 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.20 vpr 62.19 MiB -1 -1 0.19 18468 1 0.03 -1 -1 30168 -1 -1 23 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63684 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.6 MiB 0.06 598 14123 3741 8412 1970 62.2 MiB 0.11 0.00 3.43604 -92.6832 -3.43604 3.43604 0.91 0.000419469 0.000385066 0.0349882 0.0321713 28 1748 19 6.64007e+06 288834 500653. 1732.36 0.90 0.0874807 0.0770562 21970 115934 -1 1467 19 917 1532 94747 22954 2.72157 2.72157 -91.7129 -2.72157 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.018447 0.0162448 98 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.13 vpr 62.16 MiB -1 -1 0.18 17760 1 0.03 -1 -1 30260 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63652 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.6 MiB 0.06 729 8183 1849 5637 697 62.2 MiB 0.08 0.00 3.94895 -114.681 -3.94895 3.94895 0.99 0.000457969 0.000421949 0.0225855 0.0208198 28 1996 19 6.64007e+06 238602 500653. 1732.36 0.90 0.0907501 0.0794806 21970 115934 -1 1743 22 1231 2051 141069 33455 2.96397 2.96397 -111.361 -2.96397 0 0 612192. 2118.31 0.19 0.07 0.11 -1 -1 0.19 0.0258526 0.0225393 110 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.29 vpr 62.52 MiB -1 -1 0.18 18188 1 0.03 -1 -1 30408 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.9 MiB 0.05 868 7527 1581 5352 594 62.5 MiB 0.07 0.00 3.56847 -107.495 -3.56847 3.56847 0.93 0.000444019 0.000409077 0.0190733 0.0175582 30 1788 18 6.64007e+06 339066 526063. 1820.29 0.93 0.0763725 0.0669617 22546 126617 -1 1653 21 736 1288 67223 15752 2.91597 2.91597 -101.045 -2.91597 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0226498 0.0200348 103 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.79 vpr 62.38 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30376 -1 -1 26 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63880 29 32 291 250 1 153 87 17 17 289 -1 unnamed_device 23.9 MiB 0.14 739 9495 2355 6085 1055 62.4 MiB 0.09 0.00 3.3589 -103.891 -3.3589 3.3589 0.74 0.000616504 0.00057318 0.0328397 0.0304995 28 1829 19 6.64007e+06 326508 500653. 1732.36 0.82 0.098928 0.0870745 21970 115934 -1 1608 19 988 1478 87597 21174 2.36297 2.36297 -95.0245 -2.36297 0 0 612192. 2118.31 0.26 0.06 0.10 -1 -1 0.26 0.0237863 0.0211842 105 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.70 vpr 62.77 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30368 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 367 282 1 201 102 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1107 10336 2265 7034 1037 62.8 MiB 0.11 0.00 4.35696 -123.755 -4.35696 4.35696 0.89 0.000589298 0.000543977 0.0269816 0.0248761 26 3002 23 6.64007e+06 477204 477104. 1650.88 1.21 0.119078 0.105907 21682 110474 -1 2327 18 1242 2294 147548 33731 3.79383 3.79383 -121.551 -3.79383 0 0 585099. 2024.56 0.26 0.08 0.11 -1 -1 0.26 0.0294076 0.0264278 151 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.38 vpr 62.58 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30348 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 391 311 1 192 101 17 17 289 -1 unnamed_device 24.1 MiB 0.14 971 9971 2311 7104 556 62.6 MiB 0.10 0.00 3.87558 -129.13 -3.87558 3.87558 0.91 0.00063572 0.00058323 0.0276592 0.025364 26 2411 20 6.64007e+06 464646 477104. 1650.88 0.96 0.114952 0.10171 21682 110474 -1 1970 19 1456 2223 132324 30921 2.95297 2.95297 -118.101 -2.95297 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0303647 0.0271354 147 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.32 vpr 62.32 MiB -1 -1 0.18 18408 1 0.03 -1 -1 30180 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 279 237 1 161 82 17 17 289 -1 unnamed_device 23.8 MiB 0.26 966 12186 3700 6821 1665 62.3 MiB 0.11 0.00 4.35701 -128.732 -4.35701 4.35701 0.78 0.000453108 0.000416496 0.0351867 0.0324242 32 1982 21 6.64007e+06 238602 554710. 1919.41 0.86 0.107319 0.0941337 22834 132086 -1 1778 19 947 1367 87063 20438 3.12563 3.12563 -115.08 -3.12563 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0221358 0.0196989 112 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.55 vpr 62.55 MiB -1 -1 0.20 18472 1 0.03 -1 -1 30432 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 370 297 1 186 88 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1053 13933 4032 7624 2277 62.6 MiB 0.13 0.00 4.30797 -133.935 -4.30797 4.30797 0.93 0.00055284 0.000507421 0.0427721 0.0393716 30 2300 22 6.64007e+06 313950 526063. 1820.29 1.00 0.116614 0.103296 22546 126617 -1 1981 18 1358 2350 138922 31524 2.76797 2.76797 -112.105 -2.76797 0 0 666494. 2306.21 0.27 0.07 0.13 -1 -1 0.27 0.0251071 0.0223259 138 61 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.00 vpr 62.82 MiB -1 -1 0.22 18552 1 0.03 -1 -1 30260 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 377 302 1 233 92 17 17 289 -1 unnamed_device 24.7 MiB 0.42 1119 14375 4168 8092 2115 62.8 MiB 0.15 0.00 5.89333 -172.903 -5.89333 5.89333 0.92 0.000556664 0.000511639 0.0428613 0.0393956 32 2791 22 6.64007e+06 364182 554710. 1919.41 1.15 0.121784 0.107683 22834 132086 -1 2237 20 1962 2960 178865 44542 4.89635 4.89635 -163.394 -4.89635 0 0 701300. 2426.64 0.28 0.08 0.12 -1 -1 0.28 0.0276229 0.0245804 172 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 4.88 vpr 63.07 MiB -1 -1 0.22 18572 1 0.03 -1 -1 30592 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 31 32 383 305 1 209 90 17 17 289 -1 unnamed_device 24.6 MiB 0.38 1191 15768 5423 8594 1751 63.1 MiB 0.16 0.00 5.08361 -153.384 -5.08361 5.08361 1.00 0.000628287 0.000580098 0.0507851 0.0467964 32 2604 21 6.64007e+06 339066 554710. 1919.41 0.91 0.141777 0.12507 22834 132086 -1 2224 21 1441 2275 162619 34192 4.21688 4.21688 -143.026 -4.21688 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.0332112 0.0290563 164 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.32 vpr 62.43 MiB -1 -1 0.22 18308 1 0.03 -1 -1 30376 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63928 31 32 352 285 1 184 94 17 17 289 -1 unnamed_device 23.8 MiB 0.14 1006 12661 3249 8412 1000 62.4 MiB 0.13 0.00 4.68524 -135.636 -4.68524 4.68524 0.95 0.000562369 0.000518985 0.0351269 0.0323406 32 2309 22 6.64007e+06 389298 554710. 1919.41 1.00 0.11236 0.0991233 22834 132086 -1 2056 16 939 1609 104167 23996 3.23063 3.23063 -117.505 -3.23063 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0235371 0.021191 135 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 4.48 vpr 62.47 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30352 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 291 242 1 179 87 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1070 14679 4337 8393 1949 62.5 MiB 0.13 0.00 4.36796 -120.329 -4.36796 4.36796 0.94 0.000474711 0.000435832 0.0394547 0.0363061 32 2149 24 6.64007e+06 288834 554710. 1919.41 1.00 0.106976 0.0946215 22834 132086 -1 1948 18 937 1396 84906 19878 3.60042 3.60042 -116.004 -3.60042 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0197152 0.0175348 119 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.49 vpr 63.04 MiB -1 -1 0.23 18444 1 0.03 -1 -1 30380 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 457 356 1 223 104 17 17 289 -1 unnamed_device 24.8 MiB 0.20 1249 19868 5433 11877 2558 63.0 MiB 0.20 0.00 5.1415 -166.814 -5.1415 5.1415 0.71 0.000893137 0.000828523 0.0737947 0.068404 32 2695 21 6.64007e+06 502320 554710. 1919.41 0.89 0.179019 0.158763 22834 132086 -1 2395 19 1307 2062 115674 27211 3.90729 3.90729 -145.236 -3.90729 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0320231 0.0285468 174 87 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.24 vpr 62.05 MiB -1 -1 0.17 18152 1 0.03 -1 -1 30212 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63536 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.4 MiB 0.09 803 5025 1005 3649 371 62.0 MiB 0.05 0.00 3.83987 -104.767 -3.83987 3.83987 0.92 0.000442118 0.000407382 0.014126 0.0130576 30 1771 17 6.64007e+06 263718 526063. 1820.29 0.92 0.0678027 0.0591511 22546 126617 -1 1613 18 779 1393 81598 18704 2.73857 2.73857 -99.0848 -2.73857 0 0 666494. 2306.21 0.28 0.05 0.13 -1 -1 0.28 0.0193594 0.0171382 101 28 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.71 vpr 62.57 MiB -1 -1 0.21 18192 1 0.03 -1 -1 30100 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 337 267 1 205 88 17 17 289 -1 unnamed_device 24.0 MiB 0.27 1162 10228 2647 6642 939 62.6 MiB 0.11 0.00 5.14752 -155.108 -5.14752 5.14752 0.92 0.000531547 0.000488009 0.0305597 0.028154 26 2893 20 6.64007e+06 313950 477104. 1650.88 1.10 0.101491 0.0893248 21682 110474 -1 2405 18 1321 1946 127954 29220 4.24488 4.24488 -146.273 -4.24488 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0240634 0.0213773 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 8.18 vpr 62.60 MiB -1 -1 0.18 18360 1 0.03 -1 -1 30220 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1031 9643 2047 7145 451 62.6 MiB 0.11 0.00 4.0171 -121.518 -4.0171 4.0171 0.76 0.00058013 0.0005343 0.0290668 0.0262282 26 3065 37 6.64007e+06 414414 477104. 1650.88 4.91 0.213419 0.185499 21682 110474 -1 2269 18 1393 2526 162484 38144 2.96796 2.96796 -115.162 -2.96796 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0244286 0.0216922 131 53 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.35 vpr 62.39 MiB -1 -1 0.17 17988 1 0.03 -1 -1 30232 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.9 MiB 0.06 912 5938 1237 4353 348 62.4 MiB 0.07 0.00 4.13756 -120.743 -4.13756 4.13756 0.93 0.000471087 0.000433622 0.0169878 0.0156307 32 2068 19 6.64007e+06 301392 554710. 1919.41 0.98 0.0772601 0.0674501 22834 132086 -1 1828 21 999 1864 98700 24082 3.49423 3.49423 -117.009 -3.49423 0 0 701300. 2426.64 0.27 0.06 0.13 -1 -1 0.27 0.0222918 0.0197356 123 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.47 vpr 62.65 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30364 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 353 287 1 198 88 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1105 14713 4479 8365 1869 62.7 MiB 0.16 0.00 4.89735 -144.949 -4.89735 4.89735 0.75 0.000565615 0.000519946 0.0475866 0.0438407 32 2372 20 6.64007e+06 301392 554710. 1919.41 0.92 0.133095 0.117524 22834 132086 -1 2032 16 867 1199 84107 18398 3.51743 3.51743 -127.522 -3.51743 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0219795 0.0196392 138 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.88 vpr 62.75 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30304 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 361 291 1 185 96 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1031 9513 2066 6737 710 62.7 MiB 0.11 0.00 3.7565 -124.965 -3.7565 3.7565 0.68 0.000852492 0.000787212 0.034502 0.0319758 32 2258 20 6.64007e+06 401856 554710. 1919.41 0.85 0.114836 0.100939 22834 132086 -1 2036 18 1054 1711 100657 23819 2.98197 2.98197 -116.987 -2.98197 0 0 701300. 2426.64 0.30 0.06 0.14 -1 -1 0.30 0.0244488 0.021835 133 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.54 vpr 62.84 MiB -1 -1 0.20 18184 1 0.04 -1 -1 30336 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 382 305 1 192 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1092 11616 2944 7805 867 62.8 MiB 0.12 0.00 4.776 -145.641 -4.776 4.776 0.93 0.000605677 0.000558521 0.0320239 0.0293999 30 2383 19 6.64007e+06 464646 526063. 1820.29 1.00 0.106708 0.0941435 22546 126617 -1 2037 16 956 1502 76540 18706 3.47103 3.47103 -128.78 -3.47103 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.0237571 0.0213453 145 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.31 vpr 62.41 MiB -1 -1 0.24 18216 1 0.03 -1 -1 30320 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.8 MiB 0.06 830 7023 1481 5311 231 62.4 MiB 0.08 0.00 4.19967 -120.859 -4.19967 4.19967 0.78 0.00065843 0.000611726 0.0247863 0.0229848 30 2090 21 6.64007e+06 364182 526063. 1820.29 0.98 0.111458 0.0977494 22546 126617 -1 1637 18 960 1653 89780 21310 3.90303 3.90303 -116.463 -3.90303 0 0 666494. 2306.21 0.29 0.07 0.11 -1 -1 0.29 0.0295596 0.0262181 122 24 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.17 vpr 62.50 MiB -1 -1 0.18 18396 1 0.03 -1 -1 30220 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 319 257 1 198 88 17 17 289 -1 unnamed_device 23.9 MiB 0.21 1049 7498 1593 5357 548 62.5 MiB 0.07 0.00 5.183 -143.62 -5.183 5.183 0.83 0.000492735 0.000453316 0.0208651 0.0191854 28 2605 20 6.64007e+06 301392 500653. 1732.36 0.96 0.0908901 0.0801386 21970 115934 -1 2226 20 1280 1940 130291 31144 3.66763 3.66763 -132.564 -3.66763 0 0 612192. 2118.31 0.23 0.06 0.10 -1 -1 0.23 0.0235222 0.0209296 133 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.54 vpr 62.85 MiB -1 -1 0.21 18656 1 0.03 -1 -1 30340 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 373 299 1 202 88 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1063 10423 2679 6644 1100 62.9 MiB 0.11 0.00 5.14867 -149.951 -5.14867 5.14867 0.91 0.000571731 0.000527477 0.0327078 0.030103 32 2552 21 6.64007e+06 313950 554710. 1919.41 1.00 0.10262 0.0905707 22834 132086 -1 2355 18 1278 2080 131965 30846 4.02149 4.02149 -138.835 -4.02149 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252694 0.0225889 148 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.55 vpr 62.80 MiB -1 -1 0.20 18508 1 0.03 -1 -1 30272 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 387 315 1 189 86 17 17 289 -1 unnamed_device 24.4 MiB 0.18 999 9347 2537 5990 820 62.8 MiB 0.10 0.00 4.30607 -131.887 -4.30607 4.30607 0.90 0.000586897 0.000539927 0.031447 0.0289721 32 2413 18 6.64007e+06 276276 554710. 1919.41 0.96 0.113296 0.0996326 22834 132086 -1 2125 23 1581 2931 176996 40935 3.57042 3.57042 -125.679 -3.57042 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0305448 0.0271359 136 77 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.84 vpr 62.03 MiB -1 -1 0.16 18044 1 0.03 -1 -1 30448 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63516 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.5 MiB 0.05 707 15103 5445 7308 2350 62.0 MiB 0.12 0.00 3.43127 -100.64 -3.43127 3.43127 0.67 0.000530419 0.000488317 0.0456133 0.0423926 30 1671 23 6.64007e+06 301392 526063. 1820.29 0.89 0.113067 0.100111 22546 126617 -1 1434 19 724 1170 74656 16740 2.77677 2.77677 -95.239 -2.77677 0 0 666494. 2306.21 0.27 0.05 0.12 -1 -1 0.27 0.018587 0.0164616 97 23 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.60 MiB -1 -1 0.19 18324 1 0.03 -1 -1 30288 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 341 285 1 187 86 17 17 289 -1 unnamed_device 24.0 MiB 0.26 879 16907 6072 8286 2549 62.6 MiB 0.15 0.00 4.05536 -136.666 -4.05536 4.05536 0.92 0.000528416 0.000485706 0.0510483 0.0469577 30 2336 24 6.64007e+06 276276 526063. 1820.29 1.08 0.122794 0.108752 22546 126617 -1 1899 27 1588 2334 172460 38388 3.44717 3.44717 -125.656 -3.44717 0 0 666494. 2306.21 0.28 0.08 0.11 -1 -1 0.28 0.0301835 0.0266481 127 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.90 vpr 62.70 MiB -1 -1 0.21 18640 1 0.03 -1 -1 30464 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 387 293 1 234 93 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1391 17943 5776 10036 2131 62.7 MiB 0.19 0.00 5.4603 -163.746 -5.4603 5.4603 0.89 0.000603758 0.000554694 0.0538657 0.0495811 26 3573 27 6.64007e+06 364182 477104. 1650.88 1.19 0.139501 0.12374 21682 110474 -1 2905 20 1940 3052 241469 51702 4.81488 4.81488 -161.871 -4.81488 0 0 585099. 2024.56 0.26 0.11 0.11 -1 -1 0.26 0.037281 0.0329646 169 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.06 vpr 62.69 MiB -1 -1 0.25 18232 1 0.03 -1 -1 30416 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 340 270 1 181 96 17 17 289 -1 unnamed_device 24.1 MiB 0.15 899 8418 1747 6220 451 62.7 MiB 0.08 0.00 4.50246 -133.681 -4.50246 4.50246 0.76 0.000534378 0.00048963 0.0230116 0.0211427 30 2214 19 6.64007e+06 401856 526063. 1820.29 0.97 0.0934817 0.0822422 22546 126617 -1 1757 20 950 1554 85616 20273 3.01637 3.01637 -112.762 -3.01637 0 0 666494. 2306.21 0.21 0.06 0.12 -1 -1 0.21 0.0285736 0.024967 133 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.96 vpr 62.27 MiB -1 -1 0.17 18316 1 0.03 -1 -1 30372 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63764 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.6 MiB 0.06 644 6718 1441 4611 666 62.3 MiB 0.05 0.00 3.45804 -101.577 -3.45804 3.45804 0.80 0.000387068 0.000355447 0.015712 0.0144062 32 1582 19 6.64007e+06 326508 554710. 1919.41 0.88 0.0680166 0.0591936 22834 132086 -1 1402 20 829 1408 80771 19257 2.68577 2.68577 -97.948 -2.68577 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0213868 0.0188435 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.88 vpr 62.87 MiB -1 -1 0.20 18464 1 0.04 -1 -1 30408 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 431 332 1 235 91 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1258 17023 5454 8906 2663 62.9 MiB 0.19 0.00 6.52766 -186.909 -6.52766 6.52766 0.91 0.000582563 0.000533396 0.0573582 0.0527085 32 3014 21 6.64007e+06 339066 554710. 1919.41 1.09 0.146737 0.130074 22834 132086 -1 2506 22 1921 2798 191262 42816 5.12374 5.12374 -168.866 -5.12374 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0360765 0.0315154 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.31 vpr 62.57 MiB -1 -1 0.17 18248 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 336 268 1 174 97 17 17 289 -1 unnamed_device 23.9 MiB 0.15 911 6091 1101 4753 237 62.6 MiB 0.06 0.00 4.60401 -138.195 -4.60401 4.60401 0.92 0.000530896 0.000487062 0.0172052 0.0158524 26 2245 21 6.64007e+06 414414 477104. 1650.88 0.91 0.0872858 0.0764859 21682 110474 -1 1944 21 1349 2090 137228 31705 3.68843 3.68843 -131.905 -3.68843 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0268663 0.0238558 130 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.32 vpr 62.03 MiB -1 -1 0.19 17732 1 0.03 -1 -1 30548 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63520 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.5 MiB 0.08 820 12375 3515 6889 1971 62.0 MiB 0.09 0.00 3.58247 -102.931 -3.58247 3.58247 0.90 0.000391724 0.000359326 0.0266264 0.024391 26 1980 36 6.64007e+06 288834 477104. 1650.88 1.01 0.0950609 0.0837678 21682 110474 -1 1720 20 933 1605 104007 23557 2.73077 2.73077 -100.755 -2.73077 0 0 585099. 2024.56 0.25 0.06 0.10 -1 -1 0.25 0.0198247 0.0175852 100 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.87 vpr 62.62 MiB -1 -1 0.19 18304 1 0.03 -1 -1 30132 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1059 11573 2749 8139 685 62.6 MiB 0.12 0.00 5.58461 -136.884 -5.58461 5.58461 0.85 0.000729216 0.000676549 0.0403714 0.0374564 26 3124 35 6.64007e+06 426972 477104. 1650.88 1.69 0.151252 0.132985 21682 110474 -1 2310 23 1267 2497 172164 38173 4.78868 4.78868 -138.183 -4.78868 0 0 585099. 2024.56 0.19 0.09 0.10 -1 -1 0.19 0.0334622 0.0293207 139 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.16 vpr 62.11 MiB -1 -1 0.18 17824 1 0.03 -1 -1 30080 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63596 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.5 MiB 0.06 692 7404 1537 5210 657 62.1 MiB 0.07 0.00 3.45624 -104.571 -3.45624 3.45624 0.71 0.000567453 0.000526266 0.0268605 0.0248313 28 2023 26 6.64007e+06 251160 500653. 1732.36 1.08 0.0989815 0.0869234 21970 115934 -1 1706 20 1147 1966 122885 30365 2.83877 2.83877 -106.977 -2.83877 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.019609 0.0171827 104 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.53 vpr 62.21 MiB -1 -1 0.17 18244 1 0.03 -1 -1 30116 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.8 MiB 0.11 661 13271 3491 8020 1760 62.2 MiB 0.11 0.00 4.08278 -107.388 -4.08278 4.08278 1.00 0.000447656 0.000411076 0.0307357 0.0282508 26 1833 23 6.64007e+06 414414 477104. 1650.88 1.02 0.100262 0.088599 21682 110474 -1 1580 19 1032 1905 128209 32169 2.96917 2.96917 -101.304 -2.96917 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0217452 0.0193022 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.68 vpr 62.65 MiB -1 -1 0.22 18264 1 0.09 -1 -1 30384 -1 -1 26 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 355 287 1 198 87 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1051 14871 4721 7474 2676 62.6 MiB 0.13 0.00 4.65946 -136.547 -4.65946 4.65946 0.90 0.000553676 0.000509587 0.0446549 0.0411258 32 2369 19 6.64007e+06 326508 554710. 1919.41 0.98 0.113204 0.100385 22834 132086 -1 2097 21 1343 2027 126657 29211 3.40722 3.40722 -120.711 -3.40722 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0256469 0.0227945 139 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.40 vpr 62.54 MiB -1 -1 0.19 18252 1 0.03 -1 -1 30280 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 24.0 MiB 0.13 788 7108 1431 5495 182 62.5 MiB 0.08 0.00 4.47545 -132.712 -4.47545 4.47545 0.80 0.000641124 0.000585085 0.0278276 0.0257426 32 2038 22 6.64007e+06 301392 554710. 1919.41 1.05 0.102214 0.0903376 22834 132086 -1 1696 23 1395 2184 149392 33431 3.70083 3.70083 -125.925 -3.70083 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0273105 0.024054 130 54 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.73 vpr 62.49 MiB -1 -1 0.21 18412 1 0.03 -1 -1 30224 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 353 285 1 181 92 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1016 16652 4669 9876 2107 62.5 MiB 0.15 0.00 4.72138 -141.559 -4.72138 4.72138 0.93 0.000552845 0.000508103 0.0455529 0.0418341 32 2129 19 6.64007e+06 351624 554710. 1919.41 1.01 0.113544 0.100362 22834 132086 -1 1911 18 979 1742 105397 24110 3.62343 3.62343 -126.651 -3.62343 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0253936 0.0227673 133 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.69 vpr 62.19 MiB -1 -1 0.20 18360 1 0.03 -1 -1 30084 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 276 237 1 159 81 17 17 289 -1 unnamed_device 23.8 MiB 0.27 739 10406 2871 6114 1421 62.2 MiB 0.09 0.00 4.77715 -129.788 -4.77715 4.77715 0.92 0.000470985 0.000433673 0.0297289 0.0273748 26 2582 38 6.64007e+06 213486 477104. 1650.88 1.10 0.104592 0.0916117 21682 110474 -1 1812 20 948 1327 101507 23733 3.38623 3.38623 -118.474 -3.38623 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.022602 0.0201144 105 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.46 vpr 62.35 MiB -1 -1 0.20 18472 1 0.03 -1 -1 30380 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63848 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.8 MiB 0.26 900 13966 4576 7232 2158 62.4 MiB 0.11 0.00 3.96736 -126.928 -3.96736 3.96736 0.83 0.000439643 0.000403551 0.037272 0.0341691 32 1956 17 6.64007e+06 238602 554710. 1919.41 0.86 0.0927519 0.081879 22834 132086 -1 1769 19 1044 1552 103469 22833 2.91843 2.91843 -112.252 -2.91843 0 0 701300. 2426.64 0.25 0.07 0.14 -1 -1 0.25 0.0264828 0.0232163 113 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.72 vpr 62.44 MiB -1 -1 0.18 18424 1 0.03 -1 -1 30320 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63936 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.9 MiB 0.13 869 11759 2827 8114 818 62.4 MiB 0.10 0.00 3.56047 -98.9603 -3.56047 3.56047 0.96 0.000549451 0.000507482 0.0296014 0.0272354 26 2429 23 6.64007e+06 414414 477104. 1650.88 1.25 0.110578 0.0981553 21682 110474 -1 1855 22 1057 1926 132577 30744 2.90497 2.90497 -98.9461 -2.90497 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0265202 0.0234958 123 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.74 vpr 62.10 MiB -1 -1 0.18 18244 1 0.03 -1 -1 30388 -1 -1 35 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.7 MiB 0.12 923 12623 3556 7108 1959 62.1 MiB 0.11 0.00 4.42192 -107.107 -4.42192 4.42192 0.69 0.000608458 0.000567066 0.037676 0.0350394 26 2116 20 6.64007e+06 439530 477104. 1650.88 0.85 0.108126 0.0951923 21682 110474 -1 1810 17 888 1695 122212 27478 3.43722 3.43722 -103.037 -3.43722 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.0220413 0.0193365 115 27 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.50 vpr 62.36 MiB -1 -1 0.20 18296 1 0.03 -1 -1 30528 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 317 269 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.15 868 13152 3960 7274 1918 62.4 MiB 0.12 0.00 4.18997 -120.71 -4.18997 4.18997 0.96 0.000508573 0.000468324 0.0415695 0.0383161 30 1859 20 6.64007e+06 226044 526063. 1820.29 0.98 0.105168 0.0933792 22546 126617 -1 1604 16 950 1642 89587 20645 2.88777 2.88777 -111.889 -2.88777 0 0 666494. 2306.21 0.20 0.06 0.13 -1 -1 0.20 0.0217195 0.0190304 108 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.53 vpr 62.73 MiB -1 -1 0.21 18212 1 0.03 -1 -1 30124 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 335 282 1 184 85 17 17 289 -1 unnamed_device 24.1 MiB 0.24 936 13105 4260 6168 2677 62.7 MiB 0.12 0.00 3.98936 -131.555 -3.98936 3.98936 0.92 0.000557014 0.000512633 0.0398672 0.0366543 32 2131 17 6.64007e+06 263718 554710. 1919.41 0.99 0.103993 0.0922514 22834 132086 -1 1853 19 1146 1642 104828 24271 2.98543 2.98543 -117.374 -2.98543 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0233275 0.0207552 121 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.95 vpr 62.14 MiB -1 -1 0.20 18256 1 0.03 -1 -1 30384 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63632 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.06 1072 16295 4636 9641 2018 62.1 MiB 0.15 0.00 4.60183 -132.105 -4.60183 4.60183 0.75 0.000654319 0.000607984 0.0503151 0.0467266 32 2230 22 6.64007e+06 401856 554710. 1919.41 0.87 0.129793 0.114787 22834 132086 -1 1959 21 1046 1907 117283 27143 3.60243 3.60243 -119.613 -3.60243 0 0 701300. 2426.64 0.21 0.07 0.12 -1 -1 0.21 0.0284023 0.0248732 127 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.69 vpr 63.05 MiB -1 -1 0.20 18272 1 0.03 -1 -1 30408 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 350 275 1 209 88 17 17 289 -1 unnamed_device 24.4 MiB 0.30 1141 10618 2698 7154 766 63.1 MiB 0.12 0.00 5.38066 -169.108 -5.38066 5.38066 0.92 0.000481161 0.000440079 0.03204 0.0295215 32 2555 19 6.64007e+06 301392 554710. 1919.41 1.00 0.105872 0.0936686 22834 132086 -1 2308 18 1260 1884 113123 26422 4.32488 4.32488 -154.723 -4.32488 0 0 701300. 2426.64 0.28 0.06 0.12 -1 -1 0.28 0.0244067 0.0218597 146 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.49 vpr 62.79 MiB -1 -1 0.19 18388 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 385 308 1 185 98 17 17 289 -1 unnamed_device 24.4 MiB 0.20 1093 17423 4766 10394 2263 62.8 MiB 0.17 0.00 5.20872 -147.682 -5.20872 5.20872 0.78 0.00077597 0.000710578 0.0567087 0.0522269 32 2357 17 6.64007e+06 426972 554710. 1919.41 0.96 0.142653 0.126056 22834 132086 -1 2067 19 1046 1949 116477 27023 3.93528 3.93528 -137.446 -3.93528 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0261588 0.0231282 144 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.06 vpr 62.69 MiB -1 -1 0.19 18276 1 0.05 -1 -1 30376 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1020 5976 1067 4592 317 62.7 MiB 0.07 0.00 4.48481 -139.253 -4.48481 4.48481 0.97 0.000635609 0.000585978 0.0189637 0.0175281 26 3225 27 6.64007e+06 464646 477104. 1650.88 1.54 0.118466 0.105023 21682 110474 -1 2412 22 1513 2671 186456 41657 3.83363 3.83363 -139.275 -3.83363 0 0 585099. 2024.56 0.22 0.10 0.10 -1 -1 0.22 0.0343669 0.0300149 140 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.37 vpr 62.41 MiB -1 -1 0.16 18268 1 0.03 -1 -1 30148 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 720 9706 2873 5961 872 62.4 MiB 0.09 0.00 3.87875 -113.748 -3.87875 3.87875 0.91 0.000484364 0.000437536 0.0277191 0.0255759 26 1833 22 6.64007e+06 238602 477104. 1650.88 1.03 0.092047 0.0810946 21682 110474 -1 1598 20 955 1606 106809 25062 2.77177 2.77177 -102.35 -2.77177 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0218695 0.0193901 104 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.40 vpr 62.58 MiB -1 -1 0.18 18276 1 0.03 -1 -1 30504 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 30 32 375 299 1 187 85 17 17 289 -1 unnamed_device 23.9 MiB 0.14 943 11431 3023 6401 2007 62.6 MiB 0.11 0.00 4.78844 -139.402 -4.78844 4.78844 0.85 0.000592207 0.000534348 0.0363118 0.0330793 32 2058 21 6.64007e+06 288834 554710. 1919.41 1.03 0.109038 0.0959642 22834 132086 -1 1844 19 1245 2011 139388 30831 3.62943 3.62943 -130.398 -3.62943 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0276636 0.0246075 138 63 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.66 vpr 62.66 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30320 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 340 270 1 200 90 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1173 16170 4393 9836 1941 62.7 MiB 0.17 0.00 5.44166 -158.46 -5.44166 5.44166 0.78 0.000706572 0.000656565 0.0567245 0.0525803 26 2799 39 6.64007e+06 326508 477104. 1650.88 1.21 0.156389 0.13886 21682 110474 -1 2429 23 1503 2337 190618 41400 4.42883 4.42883 -146.892 -4.42883 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0275378 0.0242577 140 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.71 vpr 62.62 MiB -1 -1 0.21 18276 1 0.03 -1 -1 30164 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 340 275 1 195 93 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1218 15003 4568 8445 1990 62.6 MiB 0.15 0.00 5.37715 -156.36 -5.37715 5.37715 0.95 0.000711708 0.000661421 0.0526383 0.048838 30 2584 21 6.64007e+06 376740 526063. 1820.29 0.89 0.133904 0.11886 22546 126617 -1 2097 19 945 1496 90295 19909 4.17788 4.17788 -140.711 -4.17788 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0247174 0.0219826 148 47 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.70 vpr 62.54 MiB -1 -1 0.26 18276 1 0.03 -1 -1 30396 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 30 32 377 310 1 177 95 17 17 289 -1 unnamed_device 24.1 MiB 0.27 896 9167 2079 5963 1125 62.5 MiB 0.10 0.00 4.45681 -129.866 -4.45681 4.45681 0.93 0.000562877 0.000515291 0.0265629 0.0244038 32 2015 18 6.64007e+06 414414 554710. 1919.41 0.99 0.095266 0.0835817 22834 132086 -1 1763 18 1109 1886 100718 25155 3.10897 3.10897 -115.623 -3.10897 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0255876 0.0228843 135 83 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.47 vpr 62.73 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30296 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 365 294 1 185 85 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1055 11059 3307 6879 873 62.7 MiB 0.12 0.00 5.0056 -144.674 -5.0056 5.0056 0.99 0.00057261 0.000526206 0.0381634 0.0351552 32 2468 22 6.64007e+06 263718 554710. 1919.41 1.07 0.116339 0.102996 22834 132086 -1 2245 20 1235 2179 140475 31923 3.71742 3.71742 -134.735 -3.71742 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0274487 0.0244865 134 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.35 vpr 62.81 MiB -1 -1 0.27 18300 1 0.03 -1 -1 30480 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 29 32 378 310 1 177 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 991 14168 3722 8736 1710 62.8 MiB 0.14 0.00 4.90164 -138.394 -4.90164 4.90164 0.79 0.000755361 0.000700979 0.0537989 0.0498631 26 2387 22 6.64007e+06 389298 477104. 1650.88 0.84 0.143484 0.126748 21682 110474 -1 2045 17 1020 1629 107085 25041 3.64843 3.64843 -128.817 -3.64843 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0226776 0.0201448 132 85 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 5.80 vpr 62.01 MiB -1 -1 0.15 17812 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.5 MiB 0.05 698 12416 3955 6725 1736 62.0 MiB 0.10 0.00 3.88758 -112.897 -3.88758 3.88758 0.99 0.000432317 0.000398785 0.0346534 0.0319342 26 1755 21 6.64007e+06 188370 477104. 1650.88 2.34 0.164068 0.142903 21682 110474 -1 1517 19 855 1268 95146 23185 2.92697 2.92697 -106.857 -2.92697 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0230703 0.0206089 96 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.93 vpr 62.69 MiB -1 -1 0.21 18332 1 0.03 -1 -1 30300 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 373 302 1 176 96 17 17 289 -1 unnamed_device 24.1 MiB 0.26 964 13455 3168 8058 2229 62.7 MiB 0.13 0.00 4.65236 -138.008 -4.65236 4.65236 0.99 0.000592626 0.000544498 0.0395089 0.0364274 32 2017 21 6.64007e+06 401856 554710. 1919.41 1.09 0.115896 0.10273 22834 132086 -1 1740 19 1083 1884 101143 24228 3.87202 3.87202 -127.364 -3.87202 0 0 701300. 2426.64 0.31 0.06 0.13 -1 -1 0.31 0.0268722 0.0239462 132 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.71 vpr 62.70 MiB -1 -1 0.25 18388 1 0.04 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 397 314 1 196 86 17 17 289 -1 unnamed_device 24.1 MiB 0.17 1060 10103 2308 6560 1235 62.7 MiB 0.11 0.00 4.84241 -152.382 -4.84241 4.84241 0.93 0.000608829 0.00055948 0.0363061 0.0334497 32 2495 21 6.64007e+06 276276 554710. 1919.41 1.10 0.115784 0.102209 22834 132086 -1 2254 22 1652 2763 179822 40923 3.89583 3.89583 -143.25 -3.89583 0 0 701300. 2426.64 0.24 0.08 0.12 -1 -1 0.24 0.0295954 0.0261779 148 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.47 vpr 62.39 MiB -1 -1 0.17 18292 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 269 231 1 170 84 17 17 289 -1 unnamed_device 23.9 MiB 0.26 948 13992 4317 7911 1764 62.4 MiB 0.12 0.00 4.31784 -124.811 -4.31784 4.31784 0.90 0.000604159 0.000561519 0.0488914 0.0453937 32 2022 20 6.64007e+06 251160 554710. 1919.41 0.84 0.120062 0.106309 22834 132086 -1 1823 17 813 1070 69530 16455 3.21283 3.21283 -115.697 -3.21283 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0194467 0.0173709 109 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.14 vpr 62.21 MiB -1 -1 0.22 17696 1 0.03 -1 -1 30308 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.6 MiB 0.06 781 9417 2297 6451 669 62.2 MiB 0.08 0.00 3.81035 -110.01 -3.81035 3.81035 0.93 0.000450684 0.000418158 0.0271849 0.0251282 32 1683 19 6.64007e+06 263718 554710. 1919.41 0.83 0.0917141 0.0803177 22834 132086 -1 1510 18 815 1352 82685 19046 2.69877 2.69877 -97.4254 -2.69877 0 0 701300. 2426.64 0.21 0.05 0.12 -1 -1 0.21 0.0196914 0.0173249 106 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 6.75 vpr 62.86 MiB -1 -1 0.21 18304 1 0.03 -1 -1 30432 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 348 274 1 211 90 17 17 289 -1 unnamed_device 24.2 MiB 0.26 895 10542 2890 7065 587 62.9 MiB 0.13 0.00 5.11544 -156.548 -5.11544 5.11544 0.95 0.000562327 0.000516932 0.0333747 0.0302755 28 2993 23 6.64007e+06 326508 500653. 1732.36 3.08 0.181285 0.157003 21970 115934 -1 2180 20 1648 2160 143185 35099 4.29109 4.29109 -153.927 -4.29109 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0260034 0.0231616 144 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.70 vpr 62.73 MiB -1 -1 0.19 18296 1 0.03 -1 -1 30244 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 356 289 1 202 93 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1180 8283 2004 5658 621 62.7 MiB 0.09 0.00 4.91139 -150.395 -4.91139 4.91139 0.91 0.000535693 0.000488227 0.0236279 0.0217214 26 3034 22 6.64007e+06 364182 477104. 1650.88 1.14 0.114686 0.102082 21682 110474 -1 2495 20 1527 2424 163406 36512 4.38129 4.38129 -149.271 -4.38129 0 0 585099. 2024.56 0.25 0.08 0.12 -1 -1 0.25 0.0283312 0.0252784 155 56 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.82 MiB -1 -1 0.19 18096 1 0.03 -1 -1 30124 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.1 MiB 0.09 1180 11932 3220 7881 831 62.8 MiB 0.12 0.00 5.49089 -148.419 -5.49089 5.49089 0.89 0.000573086 0.000528388 0.0321216 0.0295815 26 2967 23 6.64007e+06 452088 477104. 1650.88 1.22 0.12089 0.107662 21682 110474 -1 2505 20 1408 2577 204037 42401 4.54428 4.54428 -145.87 -4.54428 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0252466 0.022503 153 3 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.62 vpr 62.51 MiB -1 -1 0.20 18204 1 0.03 -1 -1 30296 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 316 264 1 162 94 17 17 289 -1 unnamed_device 24.0 MiB 0.14 874 9892 2506 6506 880 62.5 MiB 0.09 0.00 3.51924 -104.27 -3.51924 3.51924 0.96 0.000516536 0.000475923 0.0259104 0.0238809 30 1829 20 6.64007e+06 401856 526063. 1820.29 0.99 0.0990386 0.0866831 22546 126617 -1 1618 20 1032 1862 89124 21789 2.85117 2.85117 -98.5541 -2.85117 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0235474 0.0208845 121 52 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.17 vpr 62.10 MiB -1 -1 0.18 18000 1 0.09 -1 -1 30352 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.5 MiB 0.06 565 12120 3265 7503 1352 62.1 MiB 0.08 0.00 3.49724 -93.0073 -3.49724 3.49724 0.84 0.000387578 0.000355675 0.0304561 0.028055 28 1505 22 6.64007e+06 263718 500653. 1732.36 0.86 0.0837268 0.0737452 21970 115934 -1 1323 18 932 1355 88581 21612 2.80797 2.80797 -92.6466 -2.80797 0 0 612192. 2118.31 0.22 0.05 0.12 -1 -1 0.22 0.0203731 0.0177412 97 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 7.96 vpr 62.98 MiB -1 -1 0.22 18636 1 0.04 -1 -1 30324 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.8 MiB 0.23 1325 16572 5453 8679 2440 63.0 MiB 0.18 0.00 4.38715 -140.393 -4.38715 4.38715 0.97 0.000643075 0.000592675 0.0583554 0.0537541 28 3580 19 6.64007e+06 326508 500653. 1732.36 4.36 0.245858 0.216139 21970 115934 -1 2838 21 1865 3197 230694 49914 3.94403 3.94403 -137.385 -3.94403 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0310045 0.0275663 170 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.25 vpr 62.70 MiB -1 -1 0.25 18608 1 0.04 -1 -1 30444 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 31 32 365 296 1 193 86 17 17 289 -1 unnamed_device 24.1 MiB 0.42 1050 12371 3182 7852 1337 62.7 MiB 0.12 0.00 5.43386 -156.366 -5.43386 5.43386 0.96 0.000603127 0.000556719 0.0407 0.0374572 32 2434 20 6.64007e+06 288834 554710. 1919.41 1.06 0.115648 0.102518 22834 132086 -1 2108 20 1108 1823 119185 26736 4.32628 4.32628 -145.134 -4.32628 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.0294374 0.026296 152 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.75 vpr 62.47 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30336 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 331 280 1 174 83 17 17 289 -1 unnamed_device 23.9 MiB 0.34 933 12503 3459 6938 2106 62.5 MiB 0.12 0.00 4.6127 -134.066 -4.6127 4.6127 0.93 0.000511374 0.000470634 0.037505 0.0344713 32 1988 18 6.64007e+06 238602 554710. 1919.41 0.97 0.102893 0.0908199 22834 132086 -1 1753 19 1072 1616 104632 23811 3.41722 3.41722 -124.558 -3.41722 0 0 701300. 2426.64 0.29 0.05 0.12 -1 -1 0.29 0.0220825 0.0196604 128 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.50 vpr 62.32 MiB -1 -1 0.18 18376 1 0.03 -1 -1 30360 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 1025 10744 3084 7154 506 62.3 MiB 0.10 0.00 5.21217 -134.409 -5.21217 5.21217 0.90 0.00055981 0.000515831 0.0296282 0.0272736 30 2159 18 6.64007e+06 376740 526063. 1820.29 0.95 0.100565 0.0886268 22546 126617 -1 1910 16 853 1431 84040 19166 3.71062 3.71062 -116.778 -3.71062 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0207341 0.0184792 126 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.48 vpr 62.73 MiB -1 -1 0.21 18404 1 0.03 -1 -1 30412 -1 -1 34 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 373 294 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1033 6757 1363 4872 522 62.7 MiB 0.08 0.00 5.06104 -138.95 -5.06104 5.06104 0.92 0.00064068 0.000592878 0.0195145 0.0179966 26 2666 21 6.64007e+06 426972 477104. 1650.88 0.95 0.102445 0.0904286 21682 110474 -1 2154 20 1376 2239 121072 29610 3.76882 3.76882 -128.819 -3.76882 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0278773 0.0248224 145 50 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.10 vpr 62.50 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64004 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.9 MiB 0.14 1000 10383 2504 6736 1143 62.5 MiB 0.10 0.00 3.67989 -112.635 -3.67989 3.67989 0.68 0.00065088 0.000604523 0.0357819 0.0332581 32 2032 19 6.64007e+06 389298 554710. 1919.41 0.86 0.11506 0.101323 22834 132086 -1 1843 20 966 1630 97826 22160 2.68557 2.68557 -102.222 -2.68557 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.0239729 0.0211701 124 51 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.53 vpr 62.86 MiB -1 -1 0.18 18448 1 0.03 -1 -1 30336 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 350 275 1 214 89 17 17 289 -1 unnamed_device 24.2 MiB 0.34 1181 8207 1889 5862 456 62.9 MiB 0.11 0.00 5.21333 -162.921 -5.21333 5.21333 0.90 0.000715906 0.000664194 0.0322833 0.0300135 32 2859 20 6.64007e+06 313950 554710. 1919.41 0.94 0.12462 0.109672 22834 132086 -1 2449 18 1406 2137 153976 34367 3.87609 3.87609 -142.057 -3.87609 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0273426 0.0239843 148 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 5.03 vpr 62.83 MiB -1 -1 0.18 18384 1 0.04 -1 -1 30256 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 386 307 1 195 100 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1091 17268 5141 9536 2591 62.8 MiB 0.16 0.00 4.75546 -148.32 -4.75546 4.75546 0.93 0.000570794 0.000524108 0.0481723 0.044279 26 2680 23 6.64007e+06 452088 477104. 1650.88 1.44 0.170212 0.152844 21682 110474 -1 2224 22 1316 2102 141337 32477 3.69363 3.69363 -136.797 -3.69363 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0298441 0.0263542 144 62 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.32 vpr 62.06 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30400 -1 -1 17 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63548 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.5 MiB 0.09 588 12030 3358 7039 1633 62.1 MiB 0.09 0.00 3.76255 -108.245 -3.76255 3.76255 0.92 0.000449299 0.000413529 0.0340638 0.0313661 30 1298 16 6.64007e+06 213486 526063. 1820.29 0.91 0.0866298 0.0764499 22546 126617 -1 1213 18 814 1184 79092 17906 2.64337 2.64337 -97.4669 -2.64337 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.0185128 0.0163978 91 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.81 vpr 62.48 MiB -1 -1 0.20 18400 1 0.03 -1 -1 30444 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63984 32 32 310 266 1 175 85 17 17 289 -1 unnamed_device 24.0 MiB 0.21 949 13477 3807 7672 1998 62.5 MiB 0.12 0.00 4.03956 -129.699 -4.03956 4.03956 0.91 0.000590633 0.000536271 0.0495692 0.0458687 32 2022 21 6.64007e+06 263718 554710. 1919.41 1.11 0.119972 0.106516 22834 132086 -1 1887 20 1200 1624 119095 26631 3.15283 3.15283 -117.941 -3.15283 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.0240561 0.0212058 117 58 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.69 vpr 62.51 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30356 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 23.8 MiB 0.11 995 9844 2080 6870 894 62.5 MiB 0.10 0.00 4.75944 -128.498 -4.75944 4.75944 0.97 0.000543885 0.000500933 0.0262341 0.024129 26 2505 26 6.64007e+06 464646 477104. 1650.88 1.15 0.113708 0.100375 21682 110474 -1 2118 19 1238 2253 153368 33892 3.66962 3.66962 -122.958 -3.66962 0 0 585099. 2024.56 0.25 0.07 0.10 -1 -1 0.25 0.0233035 0.0207232 129 33 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 4.71 vpr 62.10 MiB -1 -1 0.17 18484 1 0.03 -1 -1 30328 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63588 29 32 262 224 1 168 83 17 17 289 -1 unnamed_device 23.7 MiB 0.27 751 14303 4644 7433 2226 62.1 MiB 0.11 0.00 4.32884 -115.621 -4.32884 4.32884 0.90 0.000426378 0.000391722 0.0354464 0.0325435 32 1808 20 6.64007e+06 276276 554710. 1919.41 0.97 0.0953824 0.0845132 22834 132086 -1 1587 18 854 1104 80695 18693 3.21483 3.21483 -104.654 -3.21483 0 0 701300. 2426.64 0.32 0.05 0.13 -1 -1 0.32 0.0190857 0.016901 109 31 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.52 vpr 62.19 MiB -1 -1 0.23 18008 1 0.03 -1 -1 30160 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 278 238 1 149 81 17 17 289 -1 unnamed_device 23.6 MiB 0.16 868 10406 2691 6847 868 62.2 MiB 0.09 0.00 3.9428 -121.707 -3.9428 3.9428 0.91 0.000460563 0.000423639 0.0295717 0.0271931 32 1727 19 6.64007e+06 213486 554710. 1919.41 0.95 0.0858012 0.0756766 22834 132086 -1 1627 20 938 1628 102344 23870 2.71057 2.71057 -106.374 -2.71057 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0256368 0.0228754 108 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.81 vpr 62.56 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30424 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 31 32 373 300 1 181 99 17 17 289 -1 unnamed_device 23.9 MiB 0.14 875 8079 1601 6137 341 62.6 MiB 0.09 0.00 4.17918 -122.781 -4.17918 4.17918 0.92 0.000637205 0.000588806 0.0242987 0.022408 28 2470 41 6.64007e+06 452088 500653. 1732.36 1.27 0.131018 0.115538 21970 115934 -1 1833 20 1269 2071 129794 32586 3.20377 3.20377 -118.671 -3.20377 0 0 612192. 2118.31 0.25 0.11 0.12 -1 -1 0.25 0.0331464 0.0295571 136 64 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.31 vpr 62.21 MiB -1 -1 0.20 18396 1 0.03 -1 -1 30500 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63708 31 32 265 230 1 162 83 17 17 289 -1 unnamed_device 23.8 MiB 0.23 883 11423 3367 6862 1194 62.2 MiB 0.10 0.00 4.01573 -121.888 -4.01573 4.01573 0.78 0.000463336 0.000424777 0.0310173 0.0285499 26 2035 19 6.64007e+06 251160 477104. 1650.88 0.90 0.0890616 0.0786958 21682 110474 -1 1739 21 1002 1441 90401 21586 3.15983 3.15983 -115.1 -3.15983 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0223951 0.0197792 107 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.13 vpr 62.50 MiB -1 -1 0.18 18288 1 0.03 -1 -1 30036 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 349 286 1 171 96 17 17 289 -1 unnamed_device 23.9 MiB 0.14 851 8418 1678 5980 760 62.5 MiB 0.08 0.00 3.82753 -117.666 -3.82753 3.82753 0.69 0.00070883 0.000657804 0.0297825 0.0276857 28 2439 18 6.64007e+06 401856 500653. 1732.36 1.11 0.104776 0.0931696 21970 115934 -1 1911 23 1306 2321 152094 36168 2.90897 2.90897 -111.23 -2.90897 0 0 612192. 2118.31 0.25 0.09 0.12 -1 -1 0.25 0.0323306 0.0283752 127 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.54 vpr 62.82 MiB -1 -1 0.23 18488 1 0.03 -1 -1 30264 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.2 MiB 0.29 892 11111 2659 7794 658 62.8 MiB 0.13 0.00 4.34696 -134.35 -4.34696 4.34696 0.78 0.000745008 0.000688635 0.035733 0.0329327 30 2086 20 6.64007e+06 401856 526063. 1820.29 1.02 0.113786 0.100666 22546 126617 -1 1791 17 945 1349 73917 18038 3.11862 3.11862 -122.994 -3.11862 0 0 666494. 2306.21 0.25 0.05 0.12 -1 -1 0.25 0.0240297 0.0215592 138 91 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 6.44 vpr 62.26 MiB -1 -1 0.17 18444 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63756 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.6 MiB 0.20 616 7781 1621 5271 889 62.3 MiB 0.06 0.00 3.3851 -100.212 -3.3851 3.3851 0.93 0.000482015 0.000442679 0.0234569 0.021554 28 1998 29 6.64007e+06 213486 500653. 1732.36 2.93 0.156485 0.135261 21970 115934 -1 1486 20 929 1477 104881 25887 3.13537 3.13537 -103.929 -3.13537 0 0 612192. 2118.31 0.25 0.06 0.14 -1 -1 0.25 0.0255294 0.022801 104 57 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.48 vpr 62.36 MiB -1 -1 0.19 18456 1 0.03 -1 -1 30352 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 290 244 1 175 85 17 17 289 -1 unnamed_device 23.8 MiB 0.24 936 9013 2313 6000 700 62.4 MiB 0.09 0.00 4.41384 -137.504 -4.41384 4.41384 0.89 0.000476363 0.000426003 0.0245003 0.0224461 30 2092 23 6.64007e+06 263718 526063. 1820.29 0.97 0.0882293 0.077473 22546 126617 -1 1867 19 993 1485 95205 21004 3.29183 3.29183 -120.954 -3.29183 0 0 666494. 2306.21 0.29 0.06 0.13 -1 -1 0.29 0.0237983 0.0213147 117 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.57 vpr 62.59 MiB -1 -1 0.18 18232 1 0.03 -1 -1 30184 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 318 257 1 194 87 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1056 7959 1858 5419 682 62.6 MiB 0.09 0.00 4.69663 -140.702 -4.69663 4.69663 0.96 0.000533357 0.000491101 0.0248796 0.0229968 28 2474 21 6.64007e+06 288834 500653. 1732.36 0.97 0.0931791 0.0821619 21970 115934 -1 2218 21 1538 2111 146283 34369 4.02122 4.02122 -136.924 -4.02122 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0297792 0.0261185 130 30 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.51 vpr 62.43 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30296 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63928 29 32 324 268 1 168 90 17 17 289 -1 unnamed_device 23.8 MiB 0.18 961 12753 3692 7785 1276 62.4 MiB 0.11 0.00 4.75755 -125.045 -4.75755 4.75755 0.98 0.000508949 0.000468198 0.0355133 0.0326987 32 1879 16 6.64007e+06 364182 554710. 1919.41 0.98 0.0997309 0.0878924 22834 132086 -1 1728 19 697 1224 65113 15739 3.08843 3.08843 -105.724 -3.08843 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.0219132 0.019559 122 55 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 5.57 vpr 63.06 MiB -1 -1 0.21 18476 1 0.03 -1 -1 30400 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 393 312 1 213 88 17 17 289 -1 unnamed_device 24.4 MiB 0.30 849 9058 1982 6341 735 63.1 MiB 0.10 0.00 5.51792 -167.558 -5.51792 5.51792 0.88 0.000563471 0.000514544 0.0306679 0.0282059 32 2577 45 6.64007e+06 301392 554710. 1919.41 1.90 0.164794 0.144998 22834 132086 -1 1934 22 1454 2095 127085 33779 4.23468 4.23468 -150.211 -4.23468 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0295159 0.0260988 154 65 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.35 vpr 61.96 MiB -1 -1 0.17 17812 1 0.03 -1 -1 30104 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63444 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.4 MiB 0.05 584 8131 1674 5502 955 62.0 MiB 0.07 0.00 3.68846 -96.2539 -3.68846 3.68846 1.01 0.000443718 0.000410746 0.0227791 0.0210095 32 1341 20 6.64007e+06 226044 554710. 1919.41 0.97 0.0755928 0.0662721 22834 132086 -1 1154 16 557 917 51262 14320 2.60656 2.60656 -87.8774 -2.60656 0 0 701300. 2426.64 0.21 0.04 0.14 -1 -1 0.21 0.0183463 0.0161453 96 4 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 7.07 vpr 62.82 MiB -1 -1 0.22 18576 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 412 334 1 190 98 17 17 289 -1 unnamed_device 24.4 MiB 0.16 954 8873 1826 6622 425 62.8 MiB 0.10 0.00 4.24713 -140.193 -4.24713 4.24713 0.77 0.00072341 0.000670174 0.0306819 0.0283228 26 2630 41 6.64007e+06 426972 477104. 1650.88 3.90 0.246759 0.21472 21682 110474 -1 2114 22 1636 2480 165277 38603 3.87003 3.87003 -140.806 -3.87003 0 0 585099. 2024.56 0.27 0.09 0.11 -1 -1 0.27 0.0324064 0.0287674 145 90 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.49 vpr 62.37 MiB -1 -1 0.21 18384 1 0.03 -1 -1 30196 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 23.9 MiB 0.28 874 12856 4533 6666 1657 62.4 MiB 0.12 0.00 3.54047 -123.335 -3.54047 3.54047 0.89 0.000587113 0.000539312 0.0446929 0.0411114 32 1817 20 6.64007e+06 213486 554710. 1919.41 1.00 0.117634 0.104026 22834 132086 -1 1580 20 1208 1817 100778 24239 2.99097 2.99097 -122.612 -2.99097 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0254215 0.0223849 114 96 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.68 vpr 62.59 MiB -1 -1 0.25 18312 1 0.03 -1 -1 30268 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 360 293 1 179 96 17 17 289 -1 unnamed_device 24.0 MiB 0.15 1033 11265 2868 7471 926 62.6 MiB 0.11 0.00 4.43584 -135.56 -4.43584 4.43584 1.00 0.000559977 0.000516507 0.0310298 0.0285051 28 2242 12 6.64007e+06 401856 500653. 1732.36 0.95 0.0991508 0.0878739 21970 115934 -1 2027 15 862 1318 86044 19847 3.22163 3.22163 -117.968 -3.22163 0 0 612192. 2118.31 0.26 0.05 0.11 -1 -1 0.26 0.0220413 0.0198394 131 60 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.20 vpr 62.71 MiB -1 -1 0.21 18472 1 0.03 -1 -1 30476 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 396 299 1 236 91 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1320 13963 4550 7177 2236 62.7 MiB 0.16 0.00 6.49387 -193.286 -6.49387 6.49387 0.88 0.000604403 0.000553865 0.0448555 0.0412772 30 3485 22 6.64007e+06 339066 526063. 1820.29 1.40 0.129504 0.114579 22546 126617 -1 2715 20 1534 2298 173997 36446 4.99934 4.99934 -169.413 -4.99934 0 0 666494. 2306.21 0.27 0.08 0.13 -1 -1 0.27 0.0296035 0.0263272 170 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.29 vpr 62.10 MiB -1 -1 0.21 17924 1 0.03 -1 -1 30092 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 30 32 224 207 1 137 80 17 17 289 -1 unnamed_device 23.6 MiB 0.17 724 10744 2773 6965 1006 62.1 MiB 0.08 0.00 3.31307 -103.25 -3.31307 3.31307 0.97 0.000415698 0.000381335 0.0304089 0.0280592 26 1697 20 6.64007e+06 226044 477104. 1650.88 1.07 0.0877477 0.0776241 21682 110474 -1 1449 13 625 784 51448 12084 2.40517 2.40517 -96.5506 -2.40517 0 0 585099. 2024.56 0.20 0.04 0.10 -1 -1 0.20 0.014557 0.0128922 87 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.90 vpr 62.22 MiB -1 -1 0.18 18224 1 0.03 -1 -1 30456 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63712 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.6 MiB 0.10 685 8544 2127 5949 468 62.2 MiB 0.09 0.00 4.40355 -125.154 -4.40355 4.40355 0.78 0.00062679 0.00058338 0.0340489 0.0316711 30 1556 19 6.64007e+06 200928 526063. 1820.29 0.82 0.10802 0.0949983 22546 126617 -1 1335 19 701 1179 78223 17393 3.07117 3.07117 -110.206 -3.07117 0 0 666494. 2306.21 0.26 0.05 0.12 -1 -1 0.26 0.0221197 0.0196553 92 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.44 vpr 62.25 MiB -1 -1 0.20 18272 1 0.03 -1 -1 30124 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63744 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.8 MiB 0.09 882 10687 2740 7287 660 62.2 MiB 0.10 0.00 3.50309 -113.66 -3.50309 3.50309 0.90 0.000472408 0.000433718 0.0292199 0.0268429 32 1947 21 6.64007e+06 263718 554710. 1919.41 0.99 0.0941054 0.0828771 22834 132086 -1 1755 19 980 1820 117575 25878 2.73457 2.73457 -108.339 -2.73457 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0216145 0.0190907 115 34 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.59 vpr 62.00 MiB -1 -1 0.20 18048 1 0.03 -1 -1 30208 -1 -1 27 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63492 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.5 MiB 0.05 444 9966 3251 4492 2223 62.0 MiB 0.06 0.00 3.40927 -77.6354 -3.40927 3.40927 0.94 0.000365235 0.000335104 0.0218274 0.0200251 28 1450 44 6.64007e+06 339066 500653. 1732.36 1.10 0.0831722 0.0720956 21970 115934 -1 1191 19 746 1190 103009 38694 2.96017 2.96017 -81.3332 -2.96017 0 0 612192. 2118.31 0.25 0.05 0.12 -1 -1 0.25 0.0165415 0.0145823 89 29 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.31 vpr 62.71 MiB -1 -1 0.19 18296 1 0.03 -1 -1 30220 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 376 307 1 185 85 17 17 289 -1 unnamed_device 24.1 MiB 0.20 946 11431 2748 6950 1733 62.7 MiB 0.13 0.00 4.33313 -131.181 -4.33313 4.33313 0.74 0.000756891 0.000702608 0.0502561 0.0466222 32 2309 23 6.64007e+06 263718 554710. 1919.41 0.99 0.134825 0.119992 22834 132086 -1 2012 18 1103 1964 107634 25877 3.68263 3.68263 -124.945 -3.68263 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0244531 0.0217811 136 72 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.69 vpr 62.79 MiB -1 -1 0.21 18472 1 0.03 -1 -1 30288 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 409 331 1 191 98 17 17 289 -1 unnamed_device 24.2 MiB 0.18 940 9773 2306 6923 544 62.8 MiB 0.11 0.00 4.49598 -141.547 -4.49598 4.49598 0.90 0.000653287 0.000602983 0.0307654 0.0283385 30 2139 21 6.64007e+06 439530 526063. 1820.29 1.02 0.10893 0.095773 22546 126617 -1 1891 19 1291 1959 105840 25694 3.20583 3.20583 -124.668 -3.20583 0 0 666494. 2306.21 0.30 0.07 0.13 -1 -1 0.30 0.0282519 0.0251992 143 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 4.86 vpr 62.54 MiB -1 -1 0.19 18264 1 0.03 -1 -1 30040 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 354 285 1 202 94 17 17 289 -1 unnamed_device 24.0 MiB 0.39 1148 17347 5352 9497 2498 62.5 MiB 0.19 0.00 5.20258 -155.665 -5.20258 5.20258 0.89 0.0007218 0.000670177 0.0687732 0.0637192 28 2677 24 6.65987e+06 380340 500653. 1732.36 1.12 0.161122 0.144368 21970 115934 -1 2273 18 1483 2316 162138 37897 4.48817 4.48817 -150.553 -4.48817 0 0 612192. 2118.31 0.22 0.09 0.12 -1 -1 0.22 0.0292682 0.026131 152 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.84 vpr 62.68 MiB -1 -1 0.19 18164 1 0.03 -1 -1 30364 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 363 293 1 196 86 17 17 289 -1 unnamed_device 24.0 MiB 0.40 865 5945 1132 3979 834 62.7 MiB 0.07 0.00 5.09836 -146.088 -5.09836 5.09836 0.92 0.000549638 0.000505486 0.0205307 0.0189455 30 2282 23 6.65987e+06 304272 526063. 1820.29 1.06 0.0961306 0.0842875 22546 126617 -1 1733 18 1185 1767 92489 24279 4.35403 4.35403 -145.141 -4.35403 0 0 666494. 2306.21 0.27 0.06 0.13 -1 -1 0.27 0.0243722 0.0217269 140 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 4.45 vpr 62.60 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30216 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 299 247 1 188 87 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1073 15639 4872 8576 2191 62.6 MiB 0.13 0.00 4.07261 -120.811 -4.07261 4.07261 0.90 0.000477841 0.000439547 0.0427291 0.0393293 32 2267 17 6.65987e+06 291594 554710. 1919.41 0.94 0.102105 0.0905257 22834 132086 -1 1988 18 1064 1451 90156 21647 3.43231 3.43231 -115.308 -3.43231 0 0 701300. 2426.64 0.29 0.06 0.14 -1 -1 0.29 0.0253833 0.0228504 126 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.68 vpr 62.41 MiB -1 -1 0.25 18396 1 0.03 -1 -1 30256 -1 -1 27 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 29 32 308 248 1 169 88 17 17 289 -1 unnamed_device 23.8 MiB 0.10 937 15298 4951 7764 2583 62.4 MiB 0.13 0.00 4.29337 -115.569 -4.29337 4.29337 0.90 0.000468608 0.00043071 0.0401101 0.0368451 32 2130 22 6.65987e+06 342306 554710. 1919.41 1.07 0.123011 0.108471 22834 132086 -1 1819 24 1229 2414 166016 37676 3.57645 3.57645 -108.458 -3.57645 0 0 701300. 2426.64 0.30 0.08 0.14 -1 -1 0.30 0.0306673 0.0267402 126 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.55 vpr 62.57 MiB -1 -1 0.18 18292 1 0.03 -1 -1 30432 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 336 268 1 174 87 17 17 289 -1 unnamed_device 23.9 MiB 0.11 1058 13911 3755 8078 2078 62.6 MiB 0.15 0.00 4.32255 -126.417 -4.32255 4.32255 0.94 0.000551558 0.000506752 0.0424105 0.0390755 32 2392 21 6.65987e+06 291594 554710. 1919.41 1.01 0.121472 0.107437 22834 132086 -1 2200 23 1377 2711 202624 44996 3.32585 3.32585 -118.352 -3.32585 0 0 701300. 2426.64 0.30 0.09 0.14 -1 -1 0.30 0.0299393 0.026632 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.48 vpr 62.45 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30348 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 366 295 1 189 97 17 17 289 -1 unnamed_device 24.1 MiB 0.17 958 9421 2191 6624 606 62.5 MiB 0.11 0.00 3.34181 -114.642 -3.34181 3.34181 0.90 0.000594077 0.000546268 0.0352308 0.0325671 32 2177 15 6.65987e+06 418374 554710. 1919.41 0.89 0.118376 0.104035 22834 132086 -1 1905 14 1003 1666 95972 23470 2.74571 2.74571 -108.339 -2.74571 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0232129 0.0204499 141 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 4.32 vpr 61.95 MiB -1 -1 0.19 18392 1 0.03 -1 -1 30660 -1 -1 18 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63440 27 32 259 221 1 130 77 17 17 289 -1 unnamed_device 23.3 MiB 0.19 714 11813 3623 6674 1516 62.0 MiB 0.11 0.00 3.92432 -101.72 -3.92432 3.92432 0.87 0.00058641 0.000545219 0.0464958 0.0431232 32 1299 20 6.65987e+06 228204 554710. 1919.41 0.89 0.106594 0.0948866 22834 132086 -1 1197 20 596 1093 58420 13983 2.53931 2.53931 -86.7813 -2.53931 0 0 701300. 2426.64 0.22 0.05 0.13 -1 -1 0.22 0.0232263 0.0203085 94 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.52 vpr 62.23 MiB -1 -1 0.17 18060 1 0.03 -1 -1 30136 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63724 31 32 271 219 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.05 810 8614 1793 6441 380 62.2 MiB 0.08 0.00 3.36433 -97.1483 -3.36433 3.36433 1.04 0.000522661 0.000483363 0.0226305 0.0208531 32 1999 20 6.65987e+06 393018 554710. 1919.41 1.00 0.0950725 0.083376 22834 132086 -1 1719 20 1014 1827 120403 27215 2.52231 2.52231 -91.2187 -2.52231 0 0 701300. 2426.64 0.22 0.06 0.12 -1 -1 0.22 0.024915 0.0218504 115 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 4.22 vpr 62.39 MiB -1 -1 0.24 18308 1 0.03 -1 -1 30076 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 317 271 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.17 912 8092 2097 5494 501 62.4 MiB 0.09 0.00 3.4209 -115.906 -3.4209 3.4209 0.72 0.000671515 0.000624796 0.034009 0.0316228 32 1932 16 6.65987e+06 240882 554710. 1919.41 0.85 0.111373 0.098157 22834 132086 -1 1725 16 900 1321 81307 19419 2.92111 2.92111 -111.994 -2.92111 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0202788 0.0180559 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.99 vpr 62.12 MiB -1 -1 0.24 18260 1 0.05 -1 -1 30076 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 298 248 1 156 81 17 17 289 -1 unnamed_device 23.7 MiB 0.28 719 10056 2390 7132 534 62.1 MiB 0.10 0.00 3.74029 -120.95 -3.74029 3.74029 0.95 0.000502177 0.000460963 0.0308988 0.0284493 28 1934 21 6.65987e+06 215526 500653. 1732.36 1.05 0.108819 0.0958443 21970 115934 -1 1792 22 1172 1772 120345 29980 2.98171 2.98171 -117.67 -2.98171 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0290816 0.0255063 113 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 4.50 vpr 62.05 MiB -1 -1 0.18 18288 1 0.03 -1 -1 30436 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63544 30 32 303 262 1 139 79 17 17 289 -1 unnamed_device 23.7 MiB 0.29 580 9374 2318 6165 891 62.1 MiB 0.07 0.00 4.00989 -106.262 -4.00989 4.00989 0.86 0.000447816 0.000411602 0.0269281 0.0247548 32 1450 22 6.65987e+06 215526 554710. 1919.41 0.94 0.100422 0.0874588 22834 132086 -1 1270 17 636 909 53579 13960 2.81951 2.81951 -97.8804 -2.81951 0 0 701300. 2426.64 0.31 0.05 0.13 -1 -1 0.31 0.0227461 0.0199677 98 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 4.71 vpr 62.21 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30152 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 276 237 1 166 81 17 17 289 -1 unnamed_device 23.7 MiB 0.26 786 7256 1513 5550 193 62.2 MiB 0.06 0.00 3.75729 -118.293 -3.75729 3.75729 0.82 0.000381701 0.000348474 0.0177656 0.0162134 30 2178 26 6.65987e+06 215526 526063. 1820.29 1.02 0.0866477 0.0757608 22546 126617 -1 1724 20 995 1357 96858 22257 2.67471 2.67471 -103.361 -2.67471 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0244284 0.0219207 106 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.51 vpr 62.46 MiB -1 -1 0.20 18252 1 0.03 -1 -1 30216 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63956 32 32 344 272 1 202 88 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1144 13933 4321 8243 1369 62.5 MiB 0.15 0.00 4.40775 -144.129 -4.40775 4.40775 0.75 0.000696621 0.000646192 0.0553022 0.0512899 32 2387 20 6.65987e+06 304272 554710. 1919.41 1.02 0.125631 0.112184 22834 132086 -1 2129 18 1276 1948 126349 28780 3.11051 3.11051 -123.789 -3.11051 0 0 701300. 2426.64 0.32 0.07 0.14 -1 -1 0.32 0.0268229 0.0240739 139 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.57 vpr 62.62 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30280 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 363 295 1 181 94 17 17 289 -1 unnamed_device 24.0 MiB 0.22 952 10957 2661 7671 625 62.6 MiB 0.10 0.00 4.65212 -132.497 -4.65212 4.65212 0.89 0.000565852 0.000520654 0.0316656 0.0291096 32 2186 19 6.65987e+06 380340 554710. 1919.41 0.97 0.10127 0.0891925 22834 132086 -1 2055 18 1194 1942 128340 29443 3.63105 3.63105 -124.481 -3.63105 0 0 701300. 2426.64 0.30 0.07 0.14 -1 -1 0.30 0.0254128 0.0227466 133 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 4.34 vpr 62.00 MiB -1 -1 0.19 17996 1 0.03 -1 -1 30348 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63484 29 32 248 215 1 137 82 17 17 289 -1 unnamed_device 23.4 MiB 0.15 775 11118 2644 7385 1089 62.0 MiB 0.08 0.00 3.16393 -92.0469 -3.16393 3.16393 0.87 0.000413262 0.000379684 0.0278071 0.0256309 26 1770 20 6.65987e+06 266238 477104. 1650.88 0.89 0.0820746 0.0722061 21682 110474 -1 1504 18 824 1394 82557 20522 2.57751 2.57751 -89.8899 -2.57751 0 0 585099. 2024.56 0.25 0.05 0.10 -1 -1 0.25 0.0189635 0.016912 98 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.71 vpr 62.65 MiB -1 -1 0.20 18420 1 0.03 -1 -1 30304 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 370 297 1 183 85 17 17 289 -1 unnamed_device 24.0 MiB 0.47 1047 12733 3877 6886 1970 62.6 MiB 0.13 0.00 4.00819 -125.465 -4.00819 4.00819 0.80 0.000741254 0.000687148 0.0531704 0.0493331 32 2339 19 6.65987e+06 266238 554710. 1919.41 0.92 0.13078 0.116343 22834 132086 -1 2158 21 1190 2312 154136 34506 3.40071 3.40071 -120.991 -3.40071 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0307671 0.0271442 132 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.72 vpr 62.46 MiB -1 -1 0.21 18376 1 0.03 -1 -1 30096 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 338 269 1 196 85 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1072 15523 5016 8339 2168 62.5 MiB 0.14 0.00 4.31458 -139.763 -4.31458 4.31458 0.91 0.000531683 0.000490027 0.0451296 0.041513 28 2798 23 6.65987e+06 266238 500653. 1732.36 1.01 0.123948 0.110441 21970 115934 -1 2354 19 1362 1956 149118 33424 3.16577 3.16577 -127.146 -3.16577 0 0 612192. 2118.31 0.25 0.09 0.11 -1 -1 0.25 0.0363374 0.0321393 137 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.24 MiB -1 -1 0.23 18284 1 0.03 -1 -1 30268 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63736 32 32 323 276 1 153 93 17 17 289 -1 unnamed_device 23.8 MiB 0.29 861 11433 2956 7633 844 62.2 MiB 0.10 0.00 2.85064 -102.994 -2.85064 2.85064 0.90 0.000525132 0.000482846 0.0304017 0.0279847 26 2054 21 6.65987e+06 367662 477104. 1650.88 0.93 0.0948012 0.0834909 21682 110474 -1 1714 14 903 1485 95569 22010 2.03831 2.03831 -94.8303 -2.03831 0 0 585099. 2024.56 0.24 0.05 0.12 -1 -1 0.24 0.0195691 0.0175807 110 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.89 vpr 61.77 MiB -1 -1 0.16 18068 1 0.03 -1 -1 30144 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63252 30 32 222 206 1 117 77 17 17 289 -1 unnamed_device 23.4 MiB 0.15 624 5782 1334 4080 368 61.8 MiB 0.06 0.00 2.24807 -77.3192 -2.24807 2.24807 0.80 0.000419471 0.0003854 0.0210521 0.019383 32 1367 17 6.65987e+06 190170 554710. 1919.41 0.78 0.0711425 0.0622406 22834 132086 -1 1231 14 521 718 52124 12483 1.73865 1.73865 -76.1858 -1.73865 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0143313 0.0128595 81 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 4.65 vpr 62.23 MiB -1 -1 0.22 18424 1 0.03 -1 -1 30388 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 291 243 1 171 82 17 17 289 -1 unnamed_device 23.7 MiB 0.43 827 15568 4612 9306 1650 62.2 MiB 0.14 0.00 4.77154 -139.927 -4.77154 4.77154 0.91 0.000469504 0.000435144 0.0452945 0.0416945 28 2075 23 6.65987e+06 240882 500653. 1732.36 0.91 0.108279 0.0959357 21970 115934 -1 1785 20 1064 1464 94150 23780 3.73851 3.73851 -132.78 -3.73851 0 0 612192. 2118.31 0.23 0.05 0.10 -1 -1 0.23 0.0204314 0.0181564 127 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 4.07 vpr 62.60 MiB -1 -1 0.18 18188 1 0.03 -1 -1 30420 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 342 271 1 179 95 17 17 289 -1 unnamed_device 24.2 MiB 0.06 945 6791 1317 5158 316 62.6 MiB 0.07 0.00 4.14893 -130.493 -4.14893 4.14893 0.85 0.000486985 0.00044701 0.0185644 0.0170561 30 2176 21 6.65987e+06 393018 526063. 1820.29 0.88 0.0818851 0.0717836 22546 126617 -1 1849 20 1024 1651 101279 23570 3.40723 3.40723 -121.542 -3.40723 0 0 666494. 2306.21 0.29 0.07 0.13 -1 -1 0.29 0.0277645 0.0248614 135 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.75 vpr 62.67 MiB -1 -1 0.17 18480 1 0.03 -1 -1 30212 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 372 300 1 204 87 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1176 13911 3816 8065 2030 62.7 MiB 0.14 0.00 4.32644 -135.935 -4.32644 4.32644 0.90 0.000536758 0.000492262 0.0422883 0.038843 30 2785 22 6.65987e+06 291594 526063. 1820.29 1.17 0.131817 0.117655 22546 126617 -1 2302 18 1286 2013 127835 28465 3.48051 3.48051 -127.974 -3.48051 0 0 666494. 2306.21 0.19 0.08 0.14 -1 -1 0.19 0.0307137 0.0270835 142 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 4.22 vpr 61.75 MiB -1 -1 0.21 18124 1 0.03 -1 -1 30520 -1 -1 18 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63228 26 32 190 182 1 110 76 17 17 289 -1 unnamed_device 23.3 MiB 0.26 372 9836 3070 4693 2073 61.7 MiB 0.06 0.00 2.3895 -62.9737 -2.3895 2.3895 0.78 0.00033937 0.000312109 0.0227419 0.0209136 32 907 21 6.65987e+06 228204 554710. 1919.41 1.02 0.0709382 0.0623698 22834 132086 -1 681 19 505 696 33430 9738 1.95305 1.95305 -61.5923 -1.95305 0 0 701300. 2426.64 0.30 0.03 0.13 -1 -1 0.30 0.0148167 0.013148 77 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 4.60 vpr 62.19 MiB -1 -1 0.17 18064 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 285 227 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.11 967 10501 2769 7029 703 62.2 MiB 0.10 0.00 4.91554 -122.72 -4.91554 4.91554 0.95 0.000483229 0.000445175 0.0306004 0.0282423 28 2244 28 6.65987e+06 266238 500653. 1732.36 1.02 0.104917 0.0929761 21970 115934 -1 1973 19 925 1741 110068 26753 3.84577 3.84577 -121.238 -3.84577 0 0 612192. 2118.31 0.26 0.05 0.10 -1 -1 0.26 0.0204224 0.0181937 118 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 4.22 vpr 61.47 MiB -1 -1 0.15 17828 1 0.03 -1 -1 30008 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62948 32 32 173 169 1 116 78 17 17 289 -1 unnamed_device 22.9 MiB 0.04 415 10370 2763 4961 2646 61.5 MiB 0.06 0.00 2.50649 -71.6469 -2.50649 2.50649 0.94 0.000285735 0.000259777 0.0193077 0.0176508 30 1132 25 6.65987e+06 177492 526063. 1820.29 0.99 0.0685893 0.0600162 22546 126617 -1 827 15 404 449 30442 8479 1.90085 1.90085 -68.0593 -1.90085 0 0 666494. 2306.21 0.28 0.03 0.12 -1 -1 0.28 0.0123565 0.0109713 79 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 5.83 vpr 62.36 MiB -1 -1 0.19 18328 1 0.04 -1 -1 30168 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63856 32 32 300 245 1 165 94 17 17 289 -1 unnamed_device 23.7 MiB 0.10 867 9679 2178 7022 479 62.4 MiB 0.09 0.00 4.41865 -121.392 -4.41865 4.41865 0.70 0.000651346 0.000606035 0.0317781 0.0294949 26 2329 23 6.65987e+06 380340 477104. 1650.88 2.69 0.187223 0.16268 21682 110474 -1 1841 19 1014 1683 117173 28523 3.64925 3.64925 -120.114 -3.64925 0 0 585099. 2024.56 0.21 0.06 0.10 -1 -1 0.21 0.0230951 0.0204368 123 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.42 vpr 62.21 MiB -1 -1 0.20 17976 1 0.03 -1 -1 30460 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.6 MiB 0.12 1033 7655 1739 5270 646 62.2 MiB 0.07 0.00 3.58635 -107.341 -3.58635 3.58635 0.89 0.000481938 0.000441692 0.0193021 0.0177186 32 2146 16 6.65987e+06 393018 554710. 1919.41 1.00 0.0892841 0.0787272 22834 132086 -1 1990 20 1035 1834 131880 29420 2.64857 2.64857 -103.853 -2.64857 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0245508 0.0219283 128 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 6.95 vpr 62.70 MiB -1 -1 0.20 18252 1 0.03 -1 -1 30228 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 338 277 1 179 90 17 17 289 -1 unnamed_device 23.9 MiB 0.15 935 10542 2716 6648 1178 62.7 MiB 0.11 0.00 4.36243 -125.161 -4.36243 4.36243 0.87 0.000711587 0.000659197 0.0402899 0.0374586 26 2505 37 6.65987e+06 329628 477104. 1650.88 3.64 0.228207 0.199922 21682 110474 -1 2101 21 1365 2345 161949 38053 3.60239 3.60239 -122.003 -3.60239 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0256851 0.0227181 125 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 4.46 vpr 62.14 MiB -1 -1 0.16 18368 1 0.03 -1 -1 30160 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63636 32 32 284 241 1 145 80 17 17 289 -1 unnamed_device 23.7 MiB 0.05 787 11260 3658 5658 1944 62.1 MiB 0.09 0.00 2.93487 -99.6571 -2.93487 2.93487 0.98 0.000445698 0.000407628 0.0315238 0.0289419 32 1682 18 6.65987e+06 202848 554710. 1919.41 0.97 0.0908434 0.0801509 22834 132086 -1 1438 17 723 1111 68964 17263 2.41431 2.41431 -95.1973 -2.41431 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0200934 0.017952 101 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.32 vpr 61.91 MiB -1 -1 0.18 18276 1 0.03 -1 -1 30240 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63400 30 32 262 227 1 135 85 17 17 289 -1 unnamed_device 23.2 MiB 0.10 776 12175 3219 7698 1258 61.9 MiB 0.09 0.00 3.0379 -97.3625 -3.0379 3.0379 0.92 0.000449666 0.000412426 0.0316633 0.0291188 28 1771 20 6.65987e+06 291594 500653. 1732.36 0.95 0.0928668 0.0821233 21970 115934 -1 1679 22 979 1493 108179 24709 2.60445 2.60445 -98.1555 -2.60445 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0219964 0.0193215 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.84 vpr 62.02 MiB -1 -1 0.18 18336 1 0.03 -1 -1 30208 -1 -1 23 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63512 28 32 260 223 1 140 83 17 17 289 -1 unnamed_device 23.3 MiB 0.05 626 11963 3042 7355 1566 62.0 MiB 0.10 0.00 3.31478 -92.0347 -3.31478 3.31478 0.74 0.000569597 0.000529871 0.0396198 0.0367948 28 1778 19 6.65987e+06 291594 500653. 1732.36 0.81 0.108177 0.0953565 21970 115934 -1 1510 19 969 1641 112700 26694 2.77885 2.77885 -91.2197 -2.77885 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0198685 0.0175222 98 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.23 vpr 62.16 MiB -1 -1 0.16 17612 1 0.03 -1 -1 30264 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63656 32 32 253 210 1 154 83 17 17 289 -1 unnamed_device 23.7 MiB 0.11 729 7103 1637 4961 505 62.2 MiB 0.09 0.00 3.70643 -110.184 -3.70643 3.70643 0.90 0.000417896 0.000383866 0.0214122 0.0197895 30 1871 23 6.65987e+06 240882 526063. 1820.29 0.94 0.0779693 0.0681355 22546 126617 -1 1613 21 993 1651 87012 21207 2.64151 2.64151 -103.145 -2.64151 0 0 666494. 2306.21 0.27 0.05 0.13 -1 -1 0.27 0.0211226 0.0186351 110 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.47 vpr 62.16 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30436 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63656 31 32 271 231 1 148 90 17 17 289 -1 unnamed_device 23.7 MiB 0.11 614 5517 1006 3965 546 62.2 MiB 0.05 0.00 3.32595 -96.9255 -3.32595 3.32595 0.91 0.000453853 0.000418655 0.0143977 0.0132712 28 1915 22 6.65987e+06 342306 500653. 1732.36 1.11 0.0906073 0.0803975 21970 115934 -1 1475 21 996 1678 109095 28000 2.72051 2.72051 -96.5315 -2.72051 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0239234 0.0212864 103 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 5.64 vpr 62.18 MiB -1 -1 0.17 18188 1 0.03 -1 -1 30388 -1 -1 25 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63672 29 32 291 250 1 153 86 17 17 289 -1 unnamed_device 23.7 MiB 0.26 863 12938 3773 7467 1698 62.2 MiB 0.11 0.00 3.16555 -101.958 -3.16555 3.16555 0.90 0.000477282 0.000439528 0.0345244 0.0318242 26 1942 17 6.65987e+06 316950 477104. 1650.88 2.03 0.155637 0.136005 21682 110474 -1 1632 19 980 1500 100971 23831 2.31685 2.31685 -93.3214 -2.31685 0 0 585099. 2024.56 0.27 0.06 0.11 -1 -1 0.27 0.0213784 0.0190323 105 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.72 vpr 62.77 MiB -1 -1 0.21 18464 1 0.03 -1 -1 30376 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 367 282 1 201 101 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1216 15846 3922 9942 1982 62.8 MiB 0.15 0.00 3.87192 -115.022 -3.87192 3.87192 0.90 0.00056838 0.000521355 0.041543 0.0381583 32 2492 21 6.65987e+06 469086 554710. 1919.41 1.00 0.113648 0.100271 22834 132086 -1 2288 23 1204 2209 142757 32181 3.33679 3.33679 -111.79 -3.33679 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0314151 0.0279428 150 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.71 vpr 62.66 MiB -1 -1 0.22 18396 1 0.03 -1 -1 30292 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 391 311 1 192 100 17 17 289 -1 unnamed_device 24.1 MiB 0.29 918 16804 4626 9521 2657 62.7 MiB 0.16 0.00 3.76954 -123.355 -3.76954 3.76954 0.79 0.00060649 0.000557675 0.0485772 0.0444819 26 2686 24 6.65987e+06 456408 477104. 1650.88 1.26 0.151135 0.133372 21682 110474 -1 2054 21 1764 2675 177494 42615 2.87871 2.87871 -118.978 -2.87871 0 0 585099. 2024.56 0.21 0.10 0.11 -1 -1 0.21 0.0346081 0.0304571 146 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.58 vpr 62.12 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30100 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63616 31 32 279 237 1 161 80 17 17 289 -1 unnamed_device 23.6 MiB 0.29 795 7304 1575 5379 350 62.1 MiB 0.07 0.00 4.09732 -119.878 -4.09732 4.09732 0.90 0.00046851 0.000431159 0.0224067 0.0206688 28 2156 23 6.65987e+06 215526 500653. 1732.36 1.01 0.0852011 0.0746573 21970 115934 -1 1832 18 1064 1567 129708 29914 3.24291 3.24291 -115.491 -3.24291 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0214399 0.0191526 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.70 vpr 62.66 MiB -1 -1 0.22 18208 1 0.04 -1 -1 30504 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 370 297 1 186 87 17 17 289 -1 unnamed_device 24.0 MiB 0.30 960 9687 2384 6351 952 62.7 MiB 0.10 0.00 4.18671 -127.263 -4.18671 4.18671 0.90 0.000554273 0.000508142 0.0313948 0.028872 32 2186 21 6.65987e+06 304272 554710. 1919.41 1.03 0.104936 0.092688 22834 132086 -1 2000 22 1333 2433 166116 38004 2.86377 2.86377 -111.487 -2.86377 0 0 701300. 2426.64 0.29 0.08 0.12 -1 -1 0.29 0.0297418 0.0264536 137 61 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 5.02 vpr 62.63 MiB -1 -1 0.19 18412 1 0.03 -1 -1 30324 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 377 302 1 233 90 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1273 15165 4552 8275 2338 62.6 MiB 0.17 0.00 5.69001 -171.445 -5.69001 5.69001 0.96 0.000600615 0.000552829 0.0493275 0.0454733 32 2873 24 6.65987e+06 342306 554710. 1919.41 1.06 0.145773 0.128564 22834 132086 -1 2504 22 2107 3193 204699 46866 4.52669 4.52669 -157.824 -4.52669 0 0 701300. 2426.64 0.28 0.09 0.13 -1 -1 0.28 0.0303485 0.0269108 170 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 5.95 vpr 62.86 MiB -1 -1 0.19 18472 1 0.03 -1 -1 30572 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 383 305 1 210 88 17 17 289 -1 unnamed_device 24.1 MiB 1.44 1090 15493 4707 8769 2017 62.9 MiB 0.16 0.00 4.85933 -146.856 -4.85933 4.85933 0.94 0.000594177 0.000545899 0.0490069 0.0450755 32 2315 22 6.65987e+06 316950 554710. 1919.41 1.03 0.125484 0.111517 22834 132086 -1 2093 20 1344 2060 121128 28720 4.30002 4.30002 -144.213 -4.30002 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0277436 0.0247108 162 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 6.68 vpr 62.41 MiB -1 -1 0.23 18236 1 0.03 -1 -1 30444 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 352 285 1 184 92 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1049 11063 3132 7137 794 62.4 MiB 0.12 0.00 4.34966 -129.73 -4.34966 4.34966 0.98 0.000567808 0.000523742 0.0334078 0.0307982 26 2698 18 6.65987e+06 367662 477104. 1650.88 2.95 0.181407 0.158296 21682 110474 -1 2259 22 1389 2322 169819 38817 3.22765 3.22765 -120.65 -3.22765 0 0 585099. 2024.56 0.25 0.13 0.11 -1 -1 0.25 0.0332113 0.0297307 133 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 7.31 vpr 62.38 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30508 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63880 32 32 291 242 1 179 86 17 17 289 -1 unnamed_device 23.7 MiB 0.19 919 8591 2074 6189 328 62.4 MiB 0.08 0.00 4.09946 -111.918 -4.09946 4.09946 0.89 0.00048025 0.000441519 0.024256 0.0223696 26 2682 48 6.65987e+06 278916 477104. 1650.88 3.87 0.214026 0.185307 21682 110474 -1 2093 22 1427 2175 161524 38107 3.70571 3.70571 -113.754 -3.70571 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0231666 0.0205318 118 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.87 vpr 62.82 MiB -1 -1 0.23 18668 1 0.04 -1 -1 30380 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 457 356 1 223 102 17 17 289 -1 unnamed_device 24.6 MiB 0.30 1261 14144 3520 9065 1559 62.8 MiB 0.16 0.00 4.86514 -159.483 -4.86514 4.86514 0.87 0.000920036 0.000856632 0.0568358 0.0527942 28 3121 26 6.65987e+06 481764 500653. 1732.36 1.06 0.172176 0.152621 21970 115934 -1 2620 19 1480 2343 169128 37570 4.01331 4.01331 -152.21 -4.01331 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0359613 0.0322272 172 87 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 4.19 vpr 62.14 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30152 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63636 31 32 261 225 1 142 84 17 17 289 -1 unnamed_device 23.5 MiB 0.13 792 5391 1113 3866 412 62.1 MiB 0.05 0.00 3.45892 -99.4367 -3.45892 3.45892 0.87 0.000404014 0.000371186 0.0138202 0.0127212 30 1714 21 6.65987e+06 266238 526063. 1820.29 0.90 0.0687336 0.0600165 22546 126617 -1 1569 16 794 1300 77888 17751 2.66565 2.66565 -95.9742 -2.66565 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0195675 0.0174838 101 28 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 7.91 vpr 62.58 MiB -1 -1 0.19 18200 1 0.03 -1 -1 30320 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64080 31 32 337 267 1 205 86 17 17 289 -1 unnamed_device 23.9 MiB 0.26 1174 9914 2716 6202 996 62.6 MiB 0.13 0.00 4.85749 -145.079 -4.85749 4.85749 0.90 0.000544725 0.000502298 0.0322442 0.0298199 26 3352 45 6.65987e+06 291594 477104. 1650.88 4.27 0.248615 0.216169 21682 110474 -1 2617 21 1542 2186 173782 38682 3.98531 3.98531 -140.16 -3.98531 0 0 585099. 2024.56 0.25 0.11 0.10 -1 -1 0.25 0.0311835 0.0279865 142 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 6.59 vpr 62.49 MiB -1 -1 0.20 18400 1 0.03 -1 -1 30312 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 349 284 1 183 97 17 17 289 -1 unnamed_device 24.1 MiB 0.17 872 7423 1554 5596 273 62.5 MiB 0.09 0.00 3.91407 -115.681 -3.91407 3.91407 0.78 0.000733354 0.000679582 0.0267322 0.0248512 30 2384 28 6.65987e+06 418374 526063. 1820.29 3.41 0.20898 0.18307 22546 126617 -1 1735 14 825 1458 83727 20005 2.66856 2.66856 -104.865 -2.66856 0 0 666494. 2306.21 0.29 0.05 0.13 -1 -1 0.29 0.022249 0.0201498 131 53 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.30 vpr 62.21 MiB -1 -1 0.16 18080 1 0.03 -1 -1 30096 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63704 32 32 291 230 1 168 88 17 17 289 -1 unnamed_device 23.6 MiB 0.10 855 6523 1368 4938 217 62.2 MiB 0.07 0.00 3.97641 -117.731 -3.97641 3.97641 0.81 0.000645241 0.000600277 0.0239883 0.0222988 28 2358 32 6.65987e+06 304272 500653. 1732.36 1.08 0.110387 0.0971376 21970 115934 -1 2008 20 1305 2465 174971 42147 3.60245 3.60245 -123.96 -3.60245 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0234068 0.0207361 123 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.68 vpr 62.64 MiB -1 -1 0.18 18228 1 0.04 -1 -1 30436 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 353 287 1 198 86 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1095 6890 1534 4949 407 62.6 MiB 0.08 0.00 4.41337 -130.677 -4.41337 4.41337 0.92 0.000552333 0.000508375 0.0235358 0.0217184 30 2410 22 6.65987e+06 278916 526063. 1820.29 1.00 0.0975563 0.0859014 22546 126617 -1 2078 18 950 1311 82288 18997 3.16671 3.16671 -118.385 -3.16671 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0241795 0.0215448 136 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.78 vpr 62.46 MiB -1 -1 0.21 18264 1 0.03 -1 -1 30040 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 361 291 1 185 95 17 17 289 -1 unnamed_device 24.0 MiB 0.41 1015 8519 1947 6079 493 62.5 MiB 0.09 0.00 3.70469 -120.936 -3.70469 3.70469 0.84 0.000666617 0.000616077 0.0269258 0.0249114 26 2725 23 6.65987e+06 393018 477104. 1650.88 1.07 0.109052 0.0964173 21682 110474 -1 2016 18 1038 1804 116270 27311 2.85971 2.85971 -112.94 -2.85971 0 0 585099. 2024.56 0.26 0.06 0.11 -1 -1 0.26 0.0245911 0.0218716 132 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.65 vpr 62.74 MiB -1 -1 0.21 18284 1 0.03 -1 -1 30308 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 382 305 1 192 100 17 17 289 -1 unnamed_device 24.2 MiB 0.40 1095 17268 5091 9567 2610 62.7 MiB 0.19 0.01 4.49052 -137.752 -4.49052 4.49052 0.73 0.00105034 0.000919379 0.0617767 0.0571714 32 2322 20 6.65987e+06 456408 554710. 1919.41 1.05 0.13967 0.12467 22834 132086 -1 2015 19 1125 1680 115441 26530 3.10831 3.10831 -122.173 -3.10831 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0293806 0.0263407 144 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.61 vpr 62.19 MiB -1 -1 0.20 18240 1 0.03 -1 -1 30308 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 306 248 1 166 93 17 17 289 -1 unnamed_device 23.6 MiB 0.11 831 8703 1904 6510 289 62.2 MiB 0.09 0.00 3.98836 -116.458 -3.98836 3.98836 0.90 0.000529632 0.00048928 0.0233857 0.0215082 28 2330 25 6.65987e+06 367662 500653. 1732.36 1.24 0.112353 0.100119 21970 115934 -1 1900 21 1296 2193 157785 36788 3.30685 3.30685 -113.819 -3.30685 0 0 612192. 2118.31 0.26 0.07 0.12 -1 -1 0.26 0.0249253 0.0220709 122 24 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.79 vpr 62.49 MiB -1 -1 0.20 18376 1 0.03 -1 -1 30128 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 319 257 1 198 87 17 17 289 -1 unnamed_device 24.0 MiB 0.12 1096 5847 1077 4508 262 62.5 MiB 0.07 0.00 4.87249 -140.277 -4.87249 4.87249 0.69 0.000659678 0.00061151 0.0227202 0.0211265 32 2288 18 6.65987e+06 291594 554710. 1919.41 0.87 0.101651 0.088962 22834 132086 -1 2047 18 1239 1828 118250 28134 3.63577 3.63577 -128.204 -3.63577 0 0 701300. 2426.64 0.21 0.07 0.11 -1 -1 0.21 0.0253918 0.0224079 133 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.79 vpr 62.91 MiB -1 -1 0.21 18464 1 0.03 -1 -1 30284 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 373 299 1 202 86 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1053 14450 4494 7381 2575 62.9 MiB 0.15 0.00 4.75055 -139.155 -4.75055 4.75055 0.89 0.00057943 0.000532233 0.0462787 0.0424654 32 2624 22 6.65987e+06 291594 554710. 1919.41 1.07 0.12655 0.112564 22834 132086 -1 2212 21 1432 2252 166485 36424 4.09851 4.09851 -130.629 -4.09851 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0300894 0.0268547 146 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.62 vpr 62.47 MiB -1 -1 0.21 18660 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 387 315 1 189 85 17 17 289 -1 unnamed_device 24.0 MiB 0.19 892 8269 1866 5970 433 62.5 MiB 0.09 0.00 3.94229 -122.797 -3.94229 3.94229 0.94 0.000582277 0.000533187 0.0286793 0.0263297 32 2308 16 6.65987e+06 266238 554710. 1919.41 0.97 0.0991814 0.0875524 22834 132086 -1 2012 20 1487 2630 164112 39486 3.08645 3.08645 -116.239 -3.08645 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0270465 0.0240171 135 77 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.38 vpr 61.93 MiB -1 -1 0.22 18092 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63420 32 32 251 219 1 140 88 17 17 289 -1 unnamed_device 23.3 MiB 0.11 757 15103 5160 7628 2315 61.9 MiB 0.11 0.00 3.22598 -97.9932 -3.22598 3.22598 0.93 0.000448433 0.000413252 0.0357852 0.0328395 30 1751 19 6.65987e+06 304272 526063. 1820.29 0.94 0.089163 0.0786213 22546 126617 -1 1512 16 721 1176 73018 17086 2.41611 2.41611 -90.1114 -2.41611 0 0 666494. 2306.21 0.27 0.04 0.12 -1 -1 0.27 0.0176858 0.0157492 97 23 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.42 vpr 62.50 MiB -1 -1 0.19 18308 1 0.03 -1 -1 30084 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64004 32 32 341 285 1 187 84 17 17 289 -1 unnamed_device 23.7 MiB 0.16 854 11979 3325 7498 1156 62.5 MiB 0.11 0.00 4.00764 -134.08 -4.00764 4.00764 0.91 0.000500506 0.000459454 0.0351674 0.0322987 30 2116 21 6.65987e+06 253560 526063. 1820.29 0.97 0.104651 0.0923004 22546 126617 -1 1874 15 1015 1416 75233 18300 3.45817 3.45817 -132.236 -3.45817 0 0 666494. 2306.21 0.28 0.05 0.12 -1 -1 0.28 0.019813 0.0176833 125 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.29 vpr 62.54 MiB -1 -1 0.21 18720 1 0.03 -1 -1 30324 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 387 293 1 234 92 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1274 10235 2662 6652 921 62.5 MiB 0.13 0.00 5.13258 -155.287 -5.13258 5.13258 0.73 0.000649246 0.00059704 0.0353359 0.0325459 32 3058 30 6.65987e+06 354984 554710. 1919.41 1.06 0.142425 0.124813 22834 132086 -1 2600 21 1885 3037 205945 45541 3.91337 3.91337 -140.667 -3.91337 0 0 701300. 2426.64 0.21 0.09 0.12 -1 -1 0.21 0.0333416 0.0293138 168 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 4.51 vpr 62.45 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30540 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63944 32 32 340 270 1 181 95 17 17 289 -1 unnamed_device 24.0 MiB 0.26 923 6359 1257 4842 260 62.4 MiB 0.07 0.00 4.41432 -131.558 -4.41432 4.41432 0.86 0.000535388 0.00049245 0.0185006 0.0170943 28 2367 21 6.65987e+06 393018 500653. 1732.36 1.07 0.0899791 0.0789647 21970 115934 -1 1935 17 1016 1633 112083 26098 3.10331 3.10331 -119.905 -3.10331 0 0 612192. 2118.31 0.27 0.06 0.12 -1 -1 0.27 0.0228189 0.0203457 133 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 5.87 vpr 62.13 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30320 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63624 30 32 278 235 1 148 88 17 17 289 -1 unnamed_device 23.7 MiB 0.05 662 8473 1902 5447 1124 62.1 MiB 0.07 0.00 3.33678 -100.036 -3.33678 3.33678 0.87 0.000459147 0.000423026 0.0220693 0.0203537 30 1725 21 6.65987e+06 329628 526063. 1820.29 2.66 0.156704 0.13469 22546 126617 -1 1462 17 823 1428 82504 20247 2.61031 2.61031 -95.182 -2.61031 0 0 666494. 2306.21 0.21 0.06 0.11 -1 -1 0.21 0.022106 0.0193842 104 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.83 vpr 62.73 MiB -1 -1 0.21 18540 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 431 332 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1210 14939 4355 8106 2478 62.7 MiB 0.17 0.00 6.10992 -175.279 -6.10992 6.10992 0.78 0.000859324 0.000797562 0.0679025 0.0630937 32 2929 22 6.65987e+06 316950 554710. 1919.41 1.11 0.174809 0.156134 22834 132086 -1 2487 19 1549 2270 148453 34875 4.52437 4.52437 -154.781 -4.52437 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0315159 0.0282814 168 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.71 vpr 62.42 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30436 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 336 268 1 174 96 17 17 289 -1 unnamed_device 23.8 MiB 0.31 904 10389 2712 7035 642 62.4 MiB 0.10 0.00 4.42592 -132.293 -4.42592 4.42592 0.93 0.000543882 0.000500113 0.0279472 0.025697 32 2005 19 6.65987e+06 405696 554710. 1919.41 0.98 0.0942382 0.0827057 22834 132086 -1 1768 20 1064 1648 87290 22061 3.40671 3.40671 -120.624 -3.40671 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0240429 0.0213404 130 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.72 vpr 61.99 MiB -1 -1 0.18 17816 1 0.03 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63480 32 32 231 199 1 140 87 17 17 289 -1 unnamed_device 23.4 MiB 0.05 663 8535 1816 6050 669 62.0 MiB 0.07 0.00 3.21869 -93.2403 -3.21869 3.21869 0.67 0.00054612 0.000507165 0.025967 0.0241278 30 1794 24 6.65987e+06 291594 526063. 1820.29 0.89 0.0940922 0.0823325 22546 126617 -1 1375 17 756 1268 78704 19634 2.42405 2.42405 -87.4777 -2.42405 0 0 666494. 2306.21 0.29 0.05 0.12 -1 -1 0.29 0.0180272 0.0161042 100 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 6.14 vpr 62.43 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30096 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 349 273 1 191 98 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1094 11573 2846 8002 725 62.4 MiB 0.12 0.00 5.047 -126.982 -5.047 5.047 0.70 0.000572591 0.000526895 0.033928 0.0312976 26 3033 29 6.65987e+06 431052 477104. 1650.88 2.94 0.240123 0.208595 21682 110474 -1 2363 22 1482 2797 202329 47026 4.33199 4.33199 -128.758 -4.33199 0 0 585099. 2024.56 0.18 0.10 0.10 -1 -1 0.18 0.0350731 0.0309099 139 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.45 vpr 62.05 MiB -1 -1 0.18 17824 1 0.03 -1 -1 30164 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63536 32 32 247 207 1 147 84 17 17 289 -1 unnamed_device 23.4 MiB 0.10 658 7038 1455 4830 753 62.0 MiB 0.07 0.00 3.29684 -99.2989 -3.29684 3.29684 0.95 0.000430368 0.000395824 0.0193118 0.0177797 28 2169 22 6.65987e+06 253560 500653. 1732.36 1.05 0.0802172 0.0700579 21970 115934 -1 1682 21 1231 2024 130924 33315 2.73565 2.73565 -103.419 -2.73565 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0211961 0.0187293 104 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 4.27 vpr 62.18 MiB -1 -1 0.18 18140 1 0.03 -1 -1 30080 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63668 30 32 278 235 1 147 95 17 17 289 -1 unnamed_device 23.7 MiB 0.16 652 14999 3898 8981 2120 62.2 MiB 0.13 0.00 3.84026 -101.059 -3.84026 3.84026 0.87 0.000605966 0.000561852 0.0440743 0.0408311 26 1872 21 6.65987e+06 418374 477104. 1650.88 0.91 0.118312 0.104619 21682 110474 -1 1569 21 926 1674 103395 26004 2.74745 2.74745 -97.9413 -2.74745 0 0 585099. 2024.56 0.20 0.07 0.11 -1 -1 0.20 0.02504 0.0218693 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.50 vpr 62.52 MiB -1 -1 0.23 18468 1 0.03 -1 -1 30232 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 29 32 355 287 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 0.29 1012 15523 4926 8107 2490 62.5 MiB 0.16 0.00 4.24664 -124.218 -4.24664 4.24664 0.85 0.000688827 0.000639861 0.0632887 0.0587674 32 2282 19 6.65987e+06 304272 554710. 1919.41 0.90 0.143999 0.128248 22834 132086 -1 1987 20 1253 1931 128703 29725 3.06477 3.06477 -108.124 -3.06477 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0283125 0.0247977 138 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 4.75 vpr 62.48 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30324 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 358 289 1 175 88 17 17 289 -1 unnamed_device 23.8 MiB 0.20 997 13738 3661 8770 1307 62.5 MiB 0.12 0.00 4.3549 -132.453 -4.3549 4.3549 0.91 0.000555985 0.000510116 0.0417265 0.0383462 32 2157 20 6.65987e+06 304272 554710. 1919.41 1.03 0.115603 0.102583 22834 132086 -1 1902 19 1259 1897 133805 29853 3.29977 3.29977 -122.308 -3.29977 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0251766 0.0223765 130 54 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.03 vpr 62.31 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 353 285 1 181 91 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1038 14575 3612 9348 1615 62.3 MiB 0.15 0.00 4.46409 -135.318 -4.46409 4.46409 0.68 0.000703768 0.000652731 0.0536373 0.0497218 32 2348 22 6.65987e+06 342306 554710. 1919.41 0.88 0.13289 0.118019 22834 132086 -1 2126 20 1228 2088 137382 30796 3.47311 3.47311 -128.261 -3.47311 0 0 701300. 2426.64 0.31 0.07 0.14 -1 -1 0.31 0.028034 0.0250288 132 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 4.35 vpr 62.11 MiB -1 -1 0.17 18312 1 0.03 -1 -1 30228 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 276 237 1 159 80 17 17 289 -1 unnamed_device 23.6 MiB 0.27 846 7820 1845 5552 423 62.1 MiB 0.07 0.00 4.62977 -131.597 -4.62977 4.62977 0.89 0.000441537 0.000405678 0.0224933 0.0207247 30 1909 22 6.65987e+06 202848 526063. 1820.29 0.89 0.080779 0.070936 22546 126617 -1 1687 17 707 934 60758 14052 3.02351 3.02351 -112.559 -3.02351 0 0 666494. 2306.21 0.27 0.04 0.11 -1 -1 0.27 0.0195079 0.017429 103 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 4.20 vpr 62.29 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30352 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 31 32 319 272 1 168 82 17 17 289 -1 unnamed_device 23.7 MiB 0.20 962 14678 4724 7836 2118 62.3 MiB 0.13 0.00 3.69598 -121.08 -3.69598 3.69598 0.77 0.000643124 0.000596638 0.0458833 0.0422235 32 1942 18 6.65987e+06 240882 554710. 1919.41 0.84 0.118598 0.104712 22834 132086 -1 1735 18 1059 1567 98694 22942 2.90925 2.90925 -110.386 -2.90925 0 0 701300. 2426.64 0.27 0.05 0.12 -1 -1 0.27 0.0217958 0.0194033 111 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 7.29 vpr 62.43 MiB -1 -1 0.23 18280 1 0.03 -1 -1 30372 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 329 273 1 166 95 17 17 289 -1 unnamed_device 23.8 MiB 0.25 861 11975 2929 8226 820 62.4 MiB 0.13 0.00 3.34001 -95.8068 -3.34001 3.34001 0.76 0.000810645 0.000743944 0.0408199 0.0375767 26 2374 25 6.65987e+06 418374 477104. 1650.88 3.83 0.22515 0.198351 21682 110474 -1 1881 20 1210 2237 150716 35183 2.72865 2.72865 -95.625 -2.72865 0 0 585099. 2024.56 0.21 0.07 0.10 -1 -1 0.21 0.0267903 0.0233972 123 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 4.53 vpr 62.05 MiB -1 -1 0.21 18184 1 0.03 -1 -1 30360 -1 -1 35 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63544 28 32 277 229 1 155 95 17 17 289 -1 unnamed_device 23.5 MiB 0.13 923 12623 3487 7239 1897 62.1 MiB 0.10 0.00 4.05815 -100.085 -4.05815 4.05815 0.92 0.000456245 0.000418704 0.0292395 0.0269552 26 2013 36 6.65987e+06 443730 477104. 1650.88 1.10 0.110759 0.0969282 21682 110474 -1 1796 34 1519 2998 315533 114864 3.21565 3.21565 -98.0451 -3.21565 0 0 585099. 2024.56 0.26 0.14 0.11 -1 -1 0.26 0.0367406 0.0323704 115 27 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.91 vpr 62.15 MiB -1 -1 0.18 18364 1 0.03 -1 -1 30388 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 317 269 1 152 79 17 17 289 -1 unnamed_device 23.6 MiB 0.25 815 13937 5246 6335 2356 62.1 MiB 0.12 0.00 4.07397 -115.987 -4.07397 4.07397 0.90 0.000502383 0.000460876 0.0442679 0.0408092 26 2368 39 6.65987e+06 215526 477104. 1650.88 1.29 0.128736 0.113453 21682 110474 -1 1861 19 1130 2005 159384 36795 3.03911 3.03911 -112.948 -3.03911 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0223015 0.0197249 108 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 4.71 vpr 62.34 MiB -1 -1 0.18 18308 1 0.03 -1 -1 30192 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 335 282 1 184 84 17 17 289 -1 unnamed_device 23.6 MiB 0.22 969 14724 4160 8401 2163 62.3 MiB 0.14 0.00 3.82038 -130.284 -3.82038 3.82038 0.95 0.000588038 0.000540048 0.0455963 0.041916 32 2170 15 6.65987e+06 253560 554710. 1919.41 1.00 0.107378 0.0950954 22834 132086 -1 1927 18 1067 1537 105918 24521 3.25791 3.25791 -125.098 -3.25791 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0237913 0.0212474 120 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.54 vpr 62.27 MiB -1 -1 0.23 17968 1 0.03 -1 -1 30348 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 293 230 1 175 95 17 17 289 -1 unnamed_device 23.6 MiB 0.11 1068 16295 4538 9804 1953 62.3 MiB 0.14 0.00 4.27726 -124.118 -4.27726 4.27726 0.89 0.000508874 0.000468935 0.0398542 0.0367214 32 2264 25 6.65987e+06 405696 554710. 1919.41 0.99 0.1059 0.0938109 22834 132086 -1 2068 20 1068 1987 130049 29854 3.35991 3.35991 -114.605 -3.35991 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.024362 0.0217464 127 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.75 vpr 62.71 MiB -1 -1 0.20 18168 1 0.03 -1 -1 30540 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 350 275 1 209 86 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1153 8402 1956 5598 848 62.7 MiB 0.10 0.00 5.15532 -161.668 -5.15532 5.15532 0.92 0.000540548 0.000496787 0.0271563 0.0249841 32 2585 20 6.65987e+06 278916 554710. 1919.41 1.02 0.0966281 0.0849105 22834 132086 -1 2339 23 1470 2216 141127 32610 4.20951 4.20951 -149.405 -4.20951 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0288762 0.0255549 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 5.18 vpr 62.77 MiB -1 -1 0.20 18228 1 0.03 -1 -1 30216 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 385 308 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1091 17397 4924 9824 2649 62.8 MiB 0.15 0.00 5.003 -142.071 -5.003 5.003 0.90 0.000590133 0.000543291 0.0492459 0.0453219 26 2801 36 6.65987e+06 405696 477104. 1650.88 1.54 0.15743 0.140424 21682 110474 -1 2239 19 1147 2148 136151 32033 3.66583 3.66583 -131.777 -3.66583 0 0 585099. 2024.56 0.25 0.07 0.11 -1 -1 0.25 0.0279002 0.0249979 142 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 5.10 vpr 62.75 MiB -1 -1 0.20 18540 1 0.03 -1 -1 30400 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 387 309 1 190 101 17 17 289 -1 unnamed_device 24.2 MiB 0.28 1090 6446 1272 4893 281 62.8 MiB 0.08 0.00 4.26912 -136.624 -4.26912 4.26912 0.74 0.000778501 0.000722287 0.0238736 0.0221588 26 3255 40 6.65987e+06 469086 477104. 1650.88 1.78 0.127529 0.111979 21682 110474 -1 2277 20 1224 2083 155710 34981 3.36991 3.36991 -131.843 -3.36991 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0268307 0.0238356 140 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 4.40 vpr 62.00 MiB -1 -1 0.20 18396 1 0.03 -1 -1 30292 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63488 30 32 272 232 1 147 81 17 17 289 -1 unnamed_device 23.3 MiB 0.23 858 11106 2842 6749 1515 62.0 MiB 0.10 0.00 3.61906 -110.793 -3.61906 3.61906 0.91 0.000408562 0.000372294 0.0300499 0.0276766 30 1861 20 6.65987e+06 240882 526063. 1820.29 0.90 0.0859766 0.0758544 22546 126617 -1 1581 20 799 1273 70669 16439 2.45585 2.45585 -94.8069 -2.45585 0 0 666494. 2306.21 0.30 0.05 0.13 -1 -1 0.30 0.0224673 0.0200123 105 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.73 vpr 62.57 MiB -1 -1 0.19 18280 1 0.03 -1 -1 30396 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64072 30 32 375 299 1 187 83 17 17 289 -1 unnamed_device 24.1 MiB 0.30 983 13583 4344 7194 2045 62.6 MiB 0.14 0.00 4.78844 -139.067 -4.78844 4.78844 0.92 0.00054196 0.000495766 0.0452238 0.041543 32 2090 21 6.65987e+06 266238 554710. 1919.41 1.04 0.118446 0.104557 22834 132086 -1 1910 20 1191 1974 121163 28063 3.54643 3.54643 -126.462 -3.54643 0 0 701300. 2426.64 0.25 0.07 0.12 -1 -1 0.25 0.0266418 0.0236287 137 63 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.86 vpr 62.72 MiB -1 -1 0.24 18188 1 0.03 -1 -1 30228 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 340 270 1 200 88 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1116 12568 3071 7899 1598 62.7 MiB 0.12 0.00 5.00533 -148.1 -5.00533 5.00533 0.90 0.000833281 0.000780969 0.0450954 0.041862 26 2921 25 6.65987e+06 304272 477104. 1650.88 1.18 0.138078 0.122528 21682 110474 -1 2385 20 1531 2483 192718 41075 3.58051 3.58051 -129.172 -3.58051 0 0 585099. 2024.56 0.18 0.09 0.11 -1 -1 0.18 0.0286029 0.0250712 138 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.97 vpr 62.68 MiB -1 -1 0.18 18264 1 0.04 -1 -1 30216 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 340 275 1 195 91 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1080 15187 4594 8064 2529 62.7 MiB 0.14 0.00 5.08067 -147.956 -5.08067 5.08067 0.94 0.000529232 0.0004865 0.0430487 0.0396655 32 2427 22 6.65987e+06 354984 554710. 1919.41 1.06 0.118722 0.105656 22834 132086 -1 2095 18 1252 1904 120093 27649 4.04757 4.04757 -136.719 -4.04757 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.0289988 0.0259187 146 47 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 5.02 vpr 62.39 MiB -1 -1 0.25 18260 1 0.03 -1 -1 30320 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 377 310 1 177 93 17 17 289 -1 unnamed_device 24.0 MiB 1.18 989 11223 2996 7351 876 62.4 MiB 0.12 0.00 4.29269 -128.576 -4.29269 4.29269 0.70 0.000745822 0.000691096 0.0420603 0.0390198 32 2080 19 6.65987e+06 393018 554710. 1919.41 0.88 0.131599 0.116 22834 132086 -1 1913 21 1223 2013 129650 29797 2.81371 2.81371 -109.706 -2.81371 0 0 701300. 2426.64 0.29 0.07 0.12 -1 -1 0.29 0.0282297 0.0251005 133 83 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.50 vpr 62.41 MiB -1 -1 0.22 18316 1 0.03 -1 -1 30480 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 365 294 1 185 84 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1059 15273 4721 8591 1961 62.4 MiB 0.16 0.00 4.76549 -137.908 -4.76549 4.76549 0.77 0.000731063 0.000677235 0.0638907 0.0592505 32 2353 22 6.65987e+06 253560 554710. 1919.41 1.05 0.146396 0.130593 22834 132086 -1 2134 22 1393 2489 165302 36942 3.70731 3.70731 -131.997 -3.70731 0 0 701300. 2426.64 0.25 0.09 0.13 -1 -1 0.25 0.036444 0.0320379 133 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 4.28 vpr 62.68 MiB -1 -1 0.20 18524 1 0.03 -1 -1 30312 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 29 32 378 310 1 177 90 17 17 289 -1 unnamed_device 24.1 MiB 0.42 957 9336 2567 5788 981 62.7 MiB 0.10 0.00 4.45269 -125.553 -4.45269 4.45269 0.69 0.000738137 0.000682876 0.0369603 0.0342043 32 1912 16 6.65987e+06 367662 554710. 1919.41 0.83 0.119825 0.105175 22834 132086 -1 1745 18 925 1494 81547 20133 3.04431 3.04431 -109.366 -3.04431 0 0 701300. 2426.64 0.29 0.05 0.14 -1 -1 0.29 0.0244508 0.0217874 131 85 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 4.35 vpr 61.96 MiB -1 -1 0.17 17780 1 0.03 -1 -1 30428 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 243 205 1 139 79 17 17 289 -1 unnamed_device 23.4 MiB 0.10 684 12416 3704 6939 1773 62.0 MiB 0.10 0.00 3.74649 -110.459 -3.74649 3.74649 0.93 0.000418278 0.000384608 0.0332441 0.0306316 32 1546 19 6.65987e+06 190170 554710. 1919.41 0.93 0.0853866 0.075398 22834 132086 -1 1341 16 641 962 64723 15219 2.55525 2.55525 -95.8048 -2.55525 0 0 701300. 2426.64 0.31 0.04 0.14 -1 -1 0.31 0.0185254 0.0166125 96 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.61 vpr 62.49 MiB -1 -1 0.20 18400 1 0.03 -1 -1 30284 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 373 302 1 176 94 17 17 289 -1 unnamed_device 24.1 MiB 0.29 960 15004 4235 7978 2791 62.5 MiB 0.13 0.00 4.36949 -132.189 -4.36949 4.36949 0.91 0.000560055 0.000513974 0.0406539 0.0372175 32 2102 21 6.65987e+06 380340 554710. 1919.41 0.99 0.115713 0.102367 22834 132086 -1 1841 15 1041 1671 110704 25386 3.39711 3.39711 -119.941 -3.39711 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0236428 0.0213397 130 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.80 vpr 62.62 MiB -1 -1 0.18 18396 1 0.04 -1 -1 30284 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 397 314 1 196 84 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1050 14907 5385 7856 1666 62.6 MiB 0.16 0.00 4.72838 -146.592 -4.72838 4.72838 0.93 0.000619452 0.000554754 0.0519283 0.0476733 32 2413 22 6.65987e+06 253560 554710. 1919.41 1.04 0.128457 0.113405 22834 132086 -1 2187 21 1717 2818 185932 42919 3.82097 3.82097 -138.162 -3.82097 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0315395 0.0281903 147 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.64 vpr 62.21 MiB -1 -1 0.15 18420 1 0.03 -1 -1 30508 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 269 231 1 170 83 17 17 289 -1 unnamed_device 23.6 MiB 0.26 894 13403 4479 6698 2226 62.2 MiB 0.12 0.00 4.19577 -118.859 -4.19577 4.19577 0.95 0.000450037 0.000412113 0.0386373 0.0354609 28 2285 27 6.65987e+06 240882 500653. 1732.36 1.09 0.104148 0.0917753 21970 115934 -1 1875 19 1099 1460 110432 25274 2.90165 2.90165 -108.444 -2.90165 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0216178 0.0193091 111 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 4.06 vpr 61.82 MiB -1 -1 0.18 17892 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63300 31 32 245 205 1 150 84 17 17 289 -1 unnamed_device 23.1 MiB 0.10 776 8868 2239 6065 564 61.8 MiB 0.09 0.00 3.80235 -109.947 -3.80235 3.80235 0.79 0.000550755 0.000512974 0.0297705 0.0276955 26 1921 18 6.65987e+06 266238 477104. 1650.88 0.86 0.0946872 0.0832102 21682 110474 -1 1639 18 938 1580 103242 24511 2.74765 2.74765 -101.676 -2.74765 0 0 585099. 2024.56 0.24 0.05 0.11 -1 -1 0.24 0.0185128 0.0164161 106 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 4.76 vpr 62.75 MiB -1 -1 0.24 18296 1 0.03 -1 -1 30520 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 348 274 1 211 89 17 17 289 -1 unnamed_device 24.0 MiB 0.16 1094 12167 3085 7463 1619 62.8 MiB 0.12 0.00 4.97701 -158.279 -4.97701 4.97701 0.91 0.000557222 0.000513109 0.0370701 0.0341611 26 2921 22 6.65987e+06 316950 477104. 1650.88 1.24 0.111275 0.0984194 21682 110474 -1 2400 20 1597 2134 151253 34379 4.27383 4.27383 -152.006 -4.27383 0 0 585099. 2024.56 0.26 0.07 0.10 -1 -1 0.26 0.0285983 0.0256216 144 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 5.11 vpr 62.67 MiB -1 -1 0.21 18376 1 0.03 -1 -1 30268 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 356 289 1 202 92 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1053 6923 1467 5091 365 62.7 MiB 0.08 0.00 5.03847 -147.541 -5.03847 5.03847 0.91 0.00055896 0.000513648 0.0213967 0.0197326 28 3039 45 6.65987e+06 354984 500653. 1732.36 1.40 0.120779 0.105476 21970 115934 -1 2381 21 1523 2354 168531 39728 4.60637 4.60637 -147.528 -4.60637 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.030267 0.0264985 151 56 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.51 vpr 62.75 MiB -1 -1 0.21 18064 1 0.03 -1 -1 30160 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 23.9 MiB 0.07 1239 17268 4300 11396 1572 62.7 MiB 0.17 0.00 5.24834 -143.442 -5.24834 5.24834 0.74 0.000719272 0.000665497 0.0569304 0.0527656 30 2758 25 6.65987e+06 456408 526063. 1820.29 1.12 0.154953 0.137415 22546 126617 -1 2371 21 1238 2402 146964 32150 4.16083 4.16083 -133.389 -4.16083 0 0 666494. 2306.21 0.29 0.08 0.14 -1 -1 0.29 0.0301898 0.0270622 153 3 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.53 vpr 62.32 MiB -1 -1 0.21 18404 1 0.03 -1 -1 30372 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 30 32 316 264 1 162 93 17 17 289 -1 unnamed_device 23.8 MiB 0.24 853 11223 2920 7020 1283 62.3 MiB 0.10 0.00 3.39798 -101.422 -3.39798 3.39798 0.88 0.000460391 0.000421981 0.0288483 0.0264427 26 1967 22 6.65987e+06 393018 477104. 1650.88 1.04 0.10301 0.091488 21682 110474 -1 1729 16 961 1628 95098 23378 2.63771 2.63771 -95.1997 -2.63771 0 0 585099. 2024.56 0.27 0.05 0.11 -1 -1 0.27 0.0206614 0.0184798 120 52 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 4.13 vpr 61.95 MiB -1 -1 0.20 18016 1 0.03 -1 -1 30400 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63432 27 32 255 219 1 132 80 17 17 289 -1 unnamed_device 23.3 MiB 0.05 562 12120 3232 7522 1366 61.9 MiB 0.09 0.00 3.49724 -92.7291 -3.49724 3.49724 1.01 0.000431639 0.000396878 0.0329696 0.0303975 28 1529 21 6.65987e+06 266238 500653. 1732.36 0.81 0.100325 0.087841 21970 115934 -1 1294 18 890 1325 90251 22303 2.80017 2.80017 -90.9714 -2.80017 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0217138 0.0190436 97 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.75 vpr 62.71 MiB -1 -1 0.24 18624 1 0.04 -1 -1 30304 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 421 327 1 232 90 17 17 289 -1 unnamed_device 24.5 MiB 0.16 1323 15969 4617 8792 2560 62.7 MiB 0.18 0.00 4.09377 -133.735 -4.09377 4.09377 0.73 0.000814967 0.000755596 0.0669937 0.0620583 28 3743 26 6.65987e+06 329628 500653. 1732.36 1.48 0.173155 0.155428 21970 115934 -1 2967 20 1871 3167 241047 52645 3.63045 3.63045 -130.231 -3.63045 0 0 612192. 2118.31 0.26 0.10 0.11 -1 -1 0.26 0.0348282 0.0312046 170 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 5.51 vpr 62.66 MiB -1 -1 0.22 18512 1 0.03 -1 -1 30380 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 365 296 1 193 84 17 17 289 -1 unnamed_device 24.1 MiB 0.90 1078 12528 4327 6387 1814 62.7 MiB 0.12 0.00 5.17417 -151.407 -5.17417 5.17417 0.96 0.00054967 0.000504671 0.0416045 0.0382793 32 2447 22 6.65987e+06 266238 554710. 1919.41 1.07 0.122612 0.108964 22834 132086 -1 2111 22 1305 2022 134060 30532 4.37597 4.37597 -144.657 -4.37597 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0319398 0.0279202 150 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 5.39 vpr 62.32 MiB -1 -1 0.19 18376 1 0.03 -1 -1 30360 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 331 280 1 175 82 17 17 289 -1 unnamed_device 23.7 MiB 1.10 964 14856 4683 7908 2265 62.3 MiB 0.12 0.00 4.1377 -130.564 -4.1377 4.1377 0.90 0.000507646 0.000466859 0.0439357 0.0403723 32 2097 20 6.65987e+06 228204 554710. 1919.41 0.97 0.106054 0.09375 22834 132086 -1 1846 14 954 1384 96378 22459 3.24917 3.24917 -122.994 -3.24917 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0195559 0.0175419 126 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 6.00 vpr 62.35 MiB -1 -1 0.20 18144 1 0.03 -1 -1 30436 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63844 32 32 326 263 1 176 94 17 17 289 -1 unnamed_device 23.7 MiB 0.12 1012 18199 5227 11404 1568 62.3 MiB 0.16 0.00 4.85416 -126.382 -4.85416 4.85416 0.88 0.000525137 0.000483079 0.0498407 0.0456862 28 2437 22 6.65987e+06 380340 500653. 1732.36 2.65 0.217915 0.190062 21970 115934 -1 2034 19 1115 1810 125959 29672 3.38685 3.38685 -116.907 -3.38685 0 0 612192. 2118.31 0.25 0.06 0.12 -1 -1 0.25 0.0240045 0.0213172 126 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 4.52 vpr 63.04 MiB -1 -1 0.22 18624 1 0.03 -1 -1 30436 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 373 294 1 196 96 17 17 289 -1 unnamed_device 24.4 MiB 0.26 1069 18054 5191 10505 2358 63.0 MiB 0.18 0.00 4.75754 -136.396 -4.75754 4.75754 0.76 0.00074689 0.000694043 0.0658227 0.0611452 32 2292 20 6.65987e+06 418374 554710. 1919.41 0.88 0.155884 0.138491 22834 132086 -1 2130 21 1361 2390 159889 36442 3.49831 3.49831 -121.951 -3.49831 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0279145 0.0247797 144 50 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.45 vpr 62.32 MiB -1 -1 0.21 18288 1 0.03 -1 -1 30116 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 325 268 1 171 93 17 17 289 -1 unnamed_device 23.7 MiB 0.18 999 9333 2113 6300 920 62.3 MiB 0.09 0.00 3.66846 -111.209 -3.66846 3.66846 0.90 0.00051251 0.000470415 0.0246915 0.0227054 32 2223 19 6.65987e+06 393018 554710. 1919.41 0.97 0.0860611 0.0754191 22834 132086 -1 2014 19 1050 1810 119937 26955 2.77171 2.77171 -103.138 -2.77171 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0241444 0.0215042 124 51 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 4.74 vpr 62.67 MiB -1 -1 0.21 18128 1 0.04 -1 -1 30460 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 350 275 1 214 88 17 17 289 -1 unnamed_device 23.9 MiB 0.19 1084 14713 4574 7744 2395 62.7 MiB 0.14 0.00 4.85897 -149.918 -4.85897 4.85897 0.94 0.000574808 0.000529629 0.0452143 0.0415582 32 2651 20 6.65987e+06 304272 554710. 1919.41 1.09 0.124789 0.111101 22834 132086 -1 2273 16 1604 2417 153001 36045 4.03331 4.03331 -138.696 -4.03331 0 0 701300. 2426.64 0.31 0.07 0.13 -1 -1 0.31 0.0271491 0.0244539 147 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.66 vpr 62.81 MiB -1 -1 0.24 18284 1 0.03 -1 -1 30084 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 386 307 1 195 98 17 17 289 -1 unnamed_device 24.3 MiB 0.40 1057 18773 5614 10501 2658 62.8 MiB 0.16 0.00 4.57498 -141.369 -4.57498 4.57498 0.86 0.000611023 0.000558344 0.0485518 0.0445233 28 2492 21 6.65987e+06 431052 500653. 1732.36 0.97 0.128691 0.114398 21970 115934 -1 2191 20 1225 1986 145247 32358 3.23871 3.23871 -127.622 -3.23871 0 0 612192. 2118.31 0.25 0.09 0.10 -1 -1 0.25 0.0380128 0.0336317 143 62 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.33 vpr 61.81 MiB -1 -1 0.19 18248 1 0.03 -1 -1 30308 -1 -1 17 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63296 29 32 269 229 1 129 78 17 17 289 -1 unnamed_device 23.2 MiB 0.15 520 12528 3273 8240 1015 61.8 MiB 0.09 0.00 3.78218 -105.823 -3.78218 3.78218 0.92 0.000435463 0.000401157 0.0367224 0.033822 32 1388 31 6.65987e+06 215526 554710. 1919.41 1.00 0.10474 0.0925065 22834 132086 -1 1242 21 867 1261 85624 20785 2.69797 2.69797 -90.6267 -2.69797 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0251033 0.0219019 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 4.32 vpr 62.15 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30452 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 310 266 1 175 84 17 17 289 -1 unnamed_device 23.6 MiB 0.27 961 12345 3304 7210 1831 62.1 MiB 0.12 0.00 3.97227 -126.423 -3.97227 3.97227 0.80 0.000579472 0.000540532 0.0468927 0.0435334 32 1900 20 6.65987e+06 253560 554710. 1919.41 0.98 0.120721 0.107198 22834 132086 -1 1700 20 1150 1524 105139 24186 2.80217 2.80217 -108.628 -2.80217 0 0 701300. 2426.64 0.27 0.08 0.14 -1 -1 0.27 0.0294469 0.0260861 116 58 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.77 vpr 62.62 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 326 261 1 177 100 17 17 289 -1 unnamed_device 24.2 MiB 0.11 918 7988 1511 6133 344 62.6 MiB 0.08 0.00 4.586 -121.831 -4.586 4.586 0.94 0.000529108 0.000486127 0.020905 0.0192112 26 2386 24 6.65987e+06 469086 477104. 1650.88 1.31 0.114554 0.102009 21682 110474 -1 1944 22 1328 2356 148393 36774 3.67151 3.67151 -118.84 -3.67151 0 0 585099. 2024.56 0.27 0.07 0.11 -1 -1 0.27 0.0274702 0.0244441 129 33 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 5.03 vpr 62.08 MiB -1 -1 0.18 18260 1 0.03 -1 -1 30352 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63572 29 32 262 224 1 168 82 17 17 289 -1 unnamed_device 23.6 MiB 0.24 913 13076 3345 8177 1554 62.1 MiB 0.11 0.00 4.16472 -115.101 -4.16472 4.16472 0.92 0.000453132 0.000418149 0.0361913 0.0334023 24 2250 23 6.65987e+06 266238 448715. 1552.65 1.52 0.126008 0.110122 21394 104001 -1 1850 22 950 1228 87334 20291 3.27691 3.27691 -110.082 -3.27691 0 0 554710. 1919.41 0.25 0.06 0.10 -1 -1 0.25 0.0236206 0.0209113 110 31 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.35 vpr 61.93 MiB -1 -1 0.17 18240 1 0.03 -1 -1 30060 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63412 32 32 278 238 1 149 80 17 17 289 -1 unnamed_device 23.5 MiB 0.24 840 12980 3474 8543 963 61.9 MiB 0.12 0.00 3.73708 -117.005 -3.73708 3.73708 0.68 0.000612077 0.000568233 0.0438361 0.0404913 32 1947 20 6.65987e+06 202848 554710. 1919.41 1.02 0.104726 0.0930236 22834 132086 -1 1735 19 1091 1840 134680 30183 2.74771 2.74771 -107.591 -2.74771 0 0 701300. 2426.64 0.28 0.06 0.14 -1 -1 0.28 0.0202835 0.0179158 109 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.97 vpr 62.66 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30312 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 373 300 1 181 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 874 11348 2922 7210 1216 62.7 MiB 0.11 0.00 4.00794 -116.831 -4.00794 4.00794 0.68 0.000740304 0.000679275 0.0406501 0.0376446 26 2259 23 6.65987e+06 443730 477104. 1650.88 0.87 0.129462 0.114231 21682 110474 -1 1819 15 1118 1676 99167 24713 3.08237 3.08237 -110.932 -3.08237 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.02381 0.0214049 135 64 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 4.57 vpr 62.23 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30328 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63728 31 32 265 230 1 162 82 17 17 289 -1 unnamed_device 23.8 MiB 0.16 755 6846 1343 5305 198 62.2 MiB 0.07 0.00 3.8773 -116.608 -3.8773 3.8773 0.92 0.000465997 0.000431468 0.0198249 0.0183186 28 2259 29 6.65987e+06 240882 500653. 1732.36 1.04 0.0832004 0.0724363 21970 115934 -1 1814 21 1152 1682 119916 28903 3.20197 3.20197 -115.497 -3.20197 0 0 612192. 2118.31 0.28 0.06 0.10 -1 -1 0.28 0.0228527 0.0203279 108 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 4.90 vpr 62.43 MiB -1 -1 0.25 18168 1 0.03 -1 -1 30076 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 349 286 1 171 95 17 17 289 -1 unnamed_device 23.8 MiB 0.30 979 15863 4619 8770 2474 62.4 MiB 0.14 0.00 3.70512 -117.413 -3.70512 3.70512 0.94 0.000536203 0.00049196 0.0434113 0.039892 28 2358 20 6.65987e+06 393018 500653. 1732.36 1.04 0.112948 0.099789 21970 115934 -1 1963 21 1118 2028 148991 33126 2.64857 2.64857 -105.709 -2.64857 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0283036 0.0252314 126 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 5.48 vpr 62.46 MiB -1 -1 0.22 18512 1 0.03 -1 -1 30448 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 396 325 1 183 95 17 17 289 -1 unnamed_device 24.0 MiB 1.04 976 17159 4932 10231 1996 62.5 MiB 0.16 0.00 4.34696 -137.767 -4.34696 4.34696 0.97 0.000801999 0.00073218 0.0559559 0.0514939 32 1964 22 6.65987e+06 405696 554710. 1919.41 0.89 0.1437 0.127034 22834 132086 -1 1800 20 1004 1436 87987 20596 3.21083 3.21083 -126.087 -3.21083 0 0 701300. 2426.64 0.27 0.07 0.13 -1 -1 0.27 0.0310686 0.0272672 138 91 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.48 vpr 62.10 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63588 32 32 303 262 1 150 81 17 17 289 -1 unnamed_device 23.6 MiB 0.26 668 7781 1699 5777 305 62.1 MiB 0.08 0.00 3.26384 -99.6676 -3.26384 3.26384 0.92 0.000487338 0.000449239 0.0237287 0.0218511 28 2118 27 6.65987e+06 215526 500653. 1732.36 1.15 0.0929569 0.0809947 21970 115934 -1 1610 18 948 1447 105871 26670 2.63351 2.63351 -100.622 -2.63351 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0213754 0.0190298 104 57 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.42 vpr 62.18 MiB -1 -1 0.22 18276 1 0.03 -1 -1 30288 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63668 32 32 290 244 1 175 83 17 17 289 -1 unnamed_device 23.6 MiB 0.16 794 6203 1260 4522 421 62.2 MiB 0.07 0.00 4.22769 -129.19 -4.22769 4.22769 0.88 0.000475053 0.000437025 0.0185999 0.0171682 28 2549 35 6.65987e+06 240882 500653. 1732.36 1.12 0.0906993 0.0789751 21970 115934 -1 1948 19 1324 1967 156116 39298 3.04931 3.04931 -116.54 -3.04931 0 0 612192. 2118.31 0.25 0.06 0.10 -1 -1 0.25 0.0202914 0.0180441 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.40 vpr 62.29 MiB -1 -1 0.20 18264 1 0.03 -1 -1 30208 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 318 257 1 194 86 17 17 289 -1 unnamed_device 23.8 MiB 0.13 1125 13505 4132 7011 2362 62.3 MiB 0.12 0.00 4.57684 -138.254 -4.57684 4.57684 0.87 0.000405034 0.000371199 0.0371044 0.0341205 32 2396 19 6.65987e+06 278916 554710. 1919.41 0.97 0.112949 0.0998434 22834 132086 -1 2114 22 1419 2089 141704 32084 3.55145 3.55145 -125.605 -3.55145 0 0 701300. 2426.64 0.26 0.08 0.12 -1 -1 0.26 0.028831 0.0256875 130 30 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.69 vpr 62.25 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30100 -1 -1 28 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63740 29 32 324 268 1 168 89 17 17 289 -1 unnamed_device 23.6 MiB 0.37 892 10583 2550 7235 798 62.2 MiB 0.11 0.00 4.50014 -117.038 -4.50014 4.50014 0.93 0.00054339 0.000499787 0.0321491 0.0296064 32 1920 15 6.65987e+06 354984 554710. 1919.41 0.98 0.094638 0.0837694 22834 132086 -1 1755 20 813 1326 79257 19010 3.20671 3.20671 -104.14 -3.20671 0 0 701300. 2426.64 0.31 0.06 0.14 -1 -1 0.31 0.0256101 0.0227828 121 55 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.59 vpr 62.49 MiB -1 -1 0.19 18672 1 0.03 -1 -1 30492 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 393 312 1 213 87 17 17 289 -1 unnamed_device 24.3 MiB 0.28 1086 7383 1628 5394 361 62.5 MiB 0.10 0.00 5.16517 -163.631 -5.16517 5.16517 0.87 0.000582217 0.000534868 0.024373 0.0224143 32 2460 20 6.65987e+06 291594 554710. 1919.41 1.02 0.108832 0.0954225 22834 132086 -1 2190 22 1687 2488 158908 36713 3.85211 3.85211 -144.461 -3.85211 0 0 701300. 2426.64 0.31 0.08 0.13 -1 -1 0.31 0.032502 0.0290286 153 65 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 4.08 vpr 62.02 MiB -1 -1 0.17 17784 1 0.03 -1 -1 30200 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63512 31 32 229 197 1 138 81 17 17 289 -1 unnamed_device 23.5 MiB 0.09 592 6556 1291 4487 778 62.0 MiB 0.05 0.00 3.5672 -94.4593 -3.5672 3.5672 0.87 0.000394961 0.000363537 0.01674 0.0154251 32 1390 17 6.65987e+06 228204 554710. 1919.41 0.91 0.0657559 0.0576925 22834 132086 -1 1192 15 536 877 49019 13693 2.48531 2.48531 -85.8605 -2.48531 0 0 701300. 2426.64 0.30 0.04 0.13 -1 -1 0.30 0.0157572 0.0140835 96 4 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.88 vpr 62.58 MiB -1 -1 0.21 18524 1 0.03 -1 -1 30272 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 412 334 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.41 1151 14083 3602 8814 1667 62.6 MiB 0.15 0.00 4.1637 -141.581 -4.1637 4.1637 0.74 0.000623974 0.000571047 0.0509432 0.0470921 26 2889 31 6.65987e+06 418374 477104. 1650.88 1.23 0.162786 0.143471 21682 110474 -1 2342 20 1566 2305 195932 41393 3.82977 3.82977 -143.602 -3.82977 0 0 585099. 2024.56 0.25 0.08 0.10 -1 -1 0.25 0.0306531 0.0273759 144 90 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 4.55 vpr 62.27 MiB -1 -1 0.21 18412 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 23.7 MiB 0.25 838 12464 4352 6338 1774 62.3 MiB 0.13 0.00 3.54047 -123.895 -3.54047 3.54047 0.91 0.000799956 0.000735563 0.0509816 0.0469118 30 1801 21 6.65987e+06 202848 526063. 1820.29 1.00 0.135549 0.119797 22546 126617 -1 1561 17 1049 1497 77220 22366 3.01617 3.01617 -121.021 -3.01617 0 0 666494. 2306.21 0.29 0.06 0.12 -1 -1 0.29 0.0229481 0.0204338 115 96 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.69 vpr 62.54 MiB -1 -1 0.19 18260 1 0.03 -1 -1 30300 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 360 293 1 179 95 17 17 289 -1 unnamed_device 23.9 MiB 0.39 989 16079 4722 9035 2322 62.5 MiB 0.15 0.00 4.19332 -128.751 -4.19332 4.19332 0.90 0.000542566 0.000498406 0.0439523 0.040331 32 2001 19 6.65987e+06 393018 554710. 1919.41 0.89 0.11814 0.104587 22834 132086 -1 1831 15 765 1194 79013 18428 2.96011 2.96011 -111.869 -2.96011 0 0 701300. 2426.64 0.29 0.05 0.13 -1 -1 0.29 0.0219841 0.0198048 130 60 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.89 vpr 62.63 MiB -1 -1 0.22 18536 1 0.04 -1 -1 30436 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 396 299 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1359 11969 3395 7471 1103 62.6 MiB 0.15 0.00 6.16929 -186.366 -6.16929 6.16929 0.91 0.000598019 0.000548876 0.0392617 0.0361371 30 3043 24 6.65987e+06 316950 526063. 1820.29 1.10 0.127793 0.11324 22546 126617 -1 2616 22 1610 2379 143134 33077 4.59557 4.59557 -159.022 -4.59557 0 0 666494. 2306.21 0.27 0.07 0.11 -1 -1 0.27 0.0310387 0.0277487 168 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.13 vpr 61.72 MiB -1 -1 0.18 17952 1 0.03 -1 -1 30124 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63200 30 32 224 207 1 137 79 17 17 289 -1 unnamed_device 23.2 MiB 0.19 745 7177 1689 4856 632 61.7 MiB 0.06 0.00 3.31307 -103.404 -3.31307 3.31307 0.87 0.000380465 0.00035049 0.0177807 0.0164002 32 1552 15 6.65987e+06 215526 554710. 1919.41 0.83 0.0624939 0.0547734 22834 132086 -1 1358 12 498 632 51120 11733 2.18777 2.18777 -90.5544 -2.18777 0 0 701300. 2426.64 0.29 0.03 0.13 -1 -1 0.29 0.0135973 0.0122854 86 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 4.08 vpr 62.09 MiB -1 -1 0.17 18364 1 0.03 -1 -1 30288 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63576 30 32 286 239 1 134 78 17 17 289 -1 unnamed_device 23.7 MiB 0.13 650 12030 3133 7171 1726 62.1 MiB 0.11 0.00 4.01089 -115.329 -4.01089 4.01089 0.83 0.000595491 0.000553942 0.0457002 0.04252 30 1505 18 6.65987e+06 202848 526063. 1820.29 0.81 0.119042 0.1054 22546 126617 -1 1346 15 670 1074 59031 14593 2.86577 2.86577 -104.259 -2.86577 0 0 666494. 2306.21 0.27 0.04 0.13 -1 -1 0.27 0.0188156 0.0167803 92 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 4.42 vpr 62.11 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30092 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 32 32 296 247 1 157 85 17 17 289 -1 unnamed_device 23.6 MiB 0.06 882 9385 2433 6375 577 62.1 MiB 0.09 0.00 3.38183 -110.848 -3.38183 3.38183 0.92 0.000482682 0.000442059 0.0267831 0.0245828 26 2307 20 6.65987e+06 266238 477104. 1650.88 1.09 0.0898481 0.0786659 21682 110474 -1 1862 19 1207 2180 139654 32318 2.65145 2.65145 -109.223 -2.65145 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0213297 0.0187896 115 34 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.53 vpr 61.70 MiB -1 -1 0.17 18004 1 0.03 -1 -1 30272 -1 -1 27 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63180 25 32 216 194 1 122 84 17 17 289 -1 unnamed_device 23.2 MiB 0.10 449 9966 3407 4404 2155 61.7 MiB 0.07 0.00 3.08755 -73.109 -3.08755 3.08755 0.93 0.000377653 0.000346783 0.0226196 0.0208343 30 1370 31 6.65987e+06 342306 526063. 1820.29 1.12 0.0810225 0.0710956 22546 126617 -1 1021 19 627 1055 55046 15357 2.58539 2.58539 -70.2122 -2.58539 0 0 666494. 2306.21 0.26 0.04 0.12 -1 -1 0.26 0.0168676 0.0149904 89 29 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.45 vpr 62.64 MiB -1 -1 0.21 18248 1 0.03 -1 -1 30292 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 376 307 1 185 84 17 17 289 -1 unnamed_device 24.1 MiB 0.20 1061 14724 4524 7950 2250 62.6 MiB 0.14 0.00 3.87115 -126.135 -3.87115 3.87115 0.85 0.00054653 0.000501563 0.0470223 0.0431713 32 2459 20 6.65987e+06 253560 554710. 1919.41 1.00 0.116698 0.10319 22834 132086 -1 2122 18 1165 2054 141399 30794 3.20665 3.20665 -120.364 -3.20665 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0252449 0.0226017 135 72 -1 -1 -1 -1 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.75 vpr 62.88 MiB -1 -1 0.21 18512 1 0.03 -1 -1 30328 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 409 331 1 191 96 17 17 289 -1 unnamed_device 24.2 MiB 0.45 975 9075 1909 6647 519 62.9 MiB 0.09 0.00 4.32075 -139.498 -4.32075 4.32075 0.89 0.000583645 0.000534015 0.0266581 0.0245315 32 2060 21 6.65987e+06 418374 554710. 1919.41 0.97 0.100397 0.0880413 22834 132086 -1 1895 19 1113 1728 102839 24528 3.08137 3.08137 -121.753 -3.08137 0 0 701300. 2426.64 0.29 0.06 0.12 -1 -1 0.29 0.0283134 0.0252557 142 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 8.78 vpr 63.55 MiB -1 -1 0.20 18276 1 0.04 -1 -1 30184 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 354 285 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 2.74 826 9531 3925 5345 261 63.6 MiB 0.09 0.00 5.4415 -158.508 -5.4415 5.4415 0.93 0.000560077 0.000513738 0.0359216 0.033119 44 2587 28 6.95648e+06 188184 787024. 2723.27 2.44 0.180421 0.159812 27778 195446 -1 2027 21 1407 2253 188016 41389 4.59126 4.59126 -150.454 -4.59126 0 0 997811. 3452.63 0.40 0.08 0.20 -1 -1 0.40 0.0290178 0.0259157 81 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.67 vpr 63.48 MiB -1 -1 0.21 18424 1 0.03 -1 -1 30376 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65004 30 32 363 293 1 189 77 17 17 289 -1 unnamed_device 24.7 MiB 2.85 821 11487 4767 6319 401 63.5 MiB 0.11 0.00 4.63327 -139.023 -4.63327 4.63327 0.70 0.000724245 0.000672826 0.0543472 0.0504738 36 3057 29 6.95648e+06 217135 648988. 2245.63 2.76 0.220136 0.192642 26050 158493 -1 2255 22 2034 2882 282211 58571 4.87481 4.87481 -163.121 -4.87481 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0293461 0.0260943 80 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 6.68 vpr 62.92 MiB -1 -1 0.19 18320 1 0.02 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 299 247 1 182 79 17 17 289 -1 unnamed_device 24.4 MiB 1.03 882 10726 4435 6115 176 62.9 MiB 0.10 0.00 3.82865 -122.325 -3.82865 3.82865 0.71 0.000641247 0.000595516 0.0442419 0.0410929 36 2972 50 6.95648e+06 217135 648988. 2245.63 2.69 0.209957 0.183001 26050 158493 -1 2085 21 1424 1904 157818 34071 3.93132 3.93132 -130.254 -3.93132 0 0 828058. 2865.25 0.26 0.08 0.14 -1 -1 0.26 0.0289581 0.0254783 76 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 6.19 vpr 63.03 MiB -1 -1 0.20 18424 1 0.03 -1 -1 30284 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64544 29 32 308 248 1 162 80 17 17 289 -1 unnamed_device 24.6 MiB 0.38 723 14356 5004 7145 2207 63.0 MiB 0.11 0.00 4.16078 -115.782 -4.16078 4.16078 0.93 0.000478583 0.000437275 0.043807 0.0402324 40 1885 36 6.95648e+06 275038 706193. 2443.58 2.26 0.169897 0.148677 26914 176310 -1 1592 21 1427 2336 142197 38201 3.74666 3.74666 -121.752 -3.74666 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0246121 0.0218162 71 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 7.07 vpr 63.00 MiB -1 -1 0.18 18404 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 336 268 1 172 80 17 17 289 -1 unnamed_device 24.4 MiB 0.90 749 12292 4613 5164 2515 63.0 MiB 0.10 0.00 4.40715 -128.632 -4.40715 4.40715 0.91 0.000522474 0.000479831 0.0403168 0.0371184 46 2490 26 6.95648e+06 231611 828058. 2865.25 2.64 0.18938 0.167379 28066 200906 -1 1909 25 1380 2352 186265 40919 4.82586 4.82586 -139.578 -4.82586 0 0 1.01997e+06 3529.29 0.38 0.08 0.18 -1 -1 0.38 0.0284941 0.0252543 73 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 7.07 vpr 63.29 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30380 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 366 295 1 182 85 17 17 289 -1 unnamed_device 24.7 MiB 1.11 768 12919 4485 6787 1647 63.3 MiB 0.11 0.00 3.0405 -113.87 -3.0405 3.0405 0.95 0.000540452 0.000497368 0.0415501 0.0381801 38 2674 36 6.95648e+06 303989 678818. 2348.85 2.38 0.176307 0.156091 26626 170182 -1 1848 25 1601 2453 206011 46145 3.52232 3.52232 -123.052 -3.52232 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0297525 0.0261562 79 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 10.39 vpr 62.74 MiB -1 -1 0.18 18280 1 0.03 -1 -1 30644 -1 -1 13 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 27 32 259 221 1 125 72 17 17 289 -1 unnamed_device 24.3 MiB 5.16 452 7969 3251 4260 458 62.7 MiB 0.07 0.00 3.56899 -94.1044 -3.56899 3.56899 0.98 0.000443935 0.000408229 0.0268284 0.024788 36 1635 36 6.95648e+06 188184 648988. 2245.63 1.64 0.143612 0.123976 26050 158493 -1 1330 18 869 1308 110035 25676 3.09302 3.09302 -96.9052 -3.09302 0 0 828058. 2865.25 0.32 0.05 0.15 -1 -1 0.32 0.0193003 0.0171379 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 8.11 vpr 62.85 MiB -1 -1 0.19 17908 1 0.03 -1 -1 30092 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.3 MiB 0.45 666 12373 5100 6745 528 62.9 MiB 0.09 0.00 2.8601 -92.4221 -2.8601 2.8601 0.77 0.000594003 0.000550851 0.0401883 0.0373193 44 1956 32 6.95648e+06 361892 787024. 2723.27 4.31 0.245032 0.213989 27778 195446 -1 1482 18 953 1572 116172 27956 3.24842 3.24842 -102.267 -3.24842 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0198014 0.0175695 69 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 17.83 vpr 62.96 MiB -1 -1 0.25 18268 1 0.03 -1 -1 30216 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 317 271 1 163 74 17 17 289 -1 unnamed_device 24.5 MiB 2.27 588 11234 4630 5959 645 63.0 MiB 0.10 0.00 3.43049 -116.456 -3.43049 3.43049 0.93 0.000633074 0.000587863 0.0488438 0.0453503 42 2884 49 6.95648e+06 159232 744469. 2576.02 12.18 0.356834 0.312379 27202 183097 -1 1865 23 1419 1936 170053 42189 4.01756 4.01756 -132.841 -4.01756 0 0 949917. 3286.91 0.35 0.07 0.20 -1 -1 0.35 0.0242165 0.0213389 66 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.28 vpr 62.93 MiB -1 -1 0.18 18192 1 0.03 -1 -1 30176 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 298 248 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 1.16 622 12629 5382 6987 260 62.9 MiB 0.11 0.00 3.30928 -114.751 -3.30928 3.30928 0.71 0.000571134 0.000538423 0.0532527 0.0494865 38 2014 38 6.95648e+06 144757 678818. 2348.85 2.13 0.168429 0.149008 26626 170182 -1 1504 22 1277 1814 128882 28953 3.10582 3.10582 -119.059 -3.10582 0 0 902133. 3121.57 0.32 0.06 0.17 -1 -1 0.32 0.0238705 0.0211225 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 7.04 vpr 62.96 MiB -1 -1 0.20 18252 1 0.03 -1 -1 30352 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 30 32 303 262 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 2.05 475 7824 3190 4249 385 63.0 MiB 0.07 0.00 3.43453 -102.36 -3.43453 3.43453 0.69 0.000628458 0.000583652 0.0349717 0.0324957 40 1597 27 6.95648e+06 173708 706193. 2443.58 1.69 0.163697 0.142254 26914 176310 -1 1428 25 1225 1777 141484 35572 3.06022 3.06022 -113.473 -3.06022 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0268706 0.0236978 55 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 9.98 vpr 62.91 MiB -1 -1 0.17 18432 1 0.03 -1 -1 30104 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 276 237 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 1.56 640 8444 2709 4034 1701 62.9 MiB 0.07 0.00 3.41669 -115.288 -3.41669 3.41669 0.74 0.000597161 0.000554611 0.0346304 0.0322021 54 1511 29 6.95648e+06 144757 949917. 3286.91 5.31 0.188041 0.162481 29506 232905 -1 1090 21 1087 1489 104361 29222 2.94267 2.94267 -102.305 -2.94267 0 0 1.17392e+06 4061.99 0.44 0.06 0.23 -1 -1 0.44 0.0217589 0.0191962 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 8.24 vpr 63.18 MiB -1 -1 0.21 18248 1 0.03 -1 -1 30296 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 344 272 1 194 79 17 17 289 -1 unnamed_device 24.6 MiB 2.12 907 12247 3271 6962 2014 63.2 MiB 0.11 0.00 3.99843 -134.014 -3.99843 3.99843 0.85 0.000716705 0.000664981 0.0546857 0.0506438 38 2763 41 6.95648e+06 217135 678818. 2348.85 2.58 0.226028 0.197677 26626 170182 -1 2409 22 1853 2752 277052 55830 3.59291 3.59291 -134.501 -3.59291 0 0 902133. 3121.57 0.34 0.10 0.17 -1 -1 0.34 0.0277196 0.0245506 83 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 5.98 vpr 63.10 MiB -1 -1 0.21 18196 1 0.03 -1 -1 30312 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 363 295 1 174 86 17 17 289 -1 unnamed_device 24.6 MiB 0.83 823 10481 3378 5508 1595 63.1 MiB 0.10 0.00 4.48063 -137.796 -4.48063 4.48063 0.74 0.000711513 0.0006602 0.0427057 0.0396371 38 2406 33 6.95648e+06 318465 678818. 2348.85 2.15 0.207794 0.181107 26626 170182 -1 2026 19 1645 2369 215964 44090 4.00306 4.00306 -139.217 -4.00306 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0297469 0.0262005 75 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.09 vpr 62.79 MiB -1 -1 0.19 18156 1 0.03 -1 -1 30468 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 29 32 248 215 1 136 74 17 17 289 -1 unnamed_device 24.3 MiB 1.43 466 9684 3088 4807 1789 62.8 MiB 0.06 0.00 3.10275 -86.0877 -3.10275 3.10275 0.91 0.000428279 0.000394246 0.028653 0.0264107 46 1395 45 6.95648e+06 188184 828058. 2865.25 2.34 0.132741 0.11493 28066 200906 -1 892 19 821 1223 66520 18034 2.69507 2.69507 -84.944 -2.69507 0 0 1.01997e+06 3529.29 0.27 0.05 0.18 -1 -1 0.27 0.021614 0.0188605 55 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 8.93 vpr 63.29 MiB -1 -1 0.21 18252 1 0.03 -1 -1 30452 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 370 297 1 180 81 17 17 289 -1 unnamed_device 24.7 MiB 1.20 788 12681 5030 6764 887 63.3 MiB 0.11 0.00 3.0625 -114.371 -3.0625 3.0625 0.93 0.000569038 0.000523173 0.0445815 0.0410003 38 2491 47 6.95648e+06 246087 678818. 2348.85 4.25 0.199152 0.173894 26626 170182 -1 1938 25 1671 2610 207508 44448 3.38287 3.38287 -123.234 -3.38287 0 0 902133. 3121.57 0.25 0.09 0.17 -1 -1 0.25 0.0349716 0.0304647 76 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 10.98 vpr 63.22 MiB -1 -1 0.20 18300 1 0.03 -1 -1 30184 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 338 269 1 190 78 17 17 289 -1 unnamed_device 24.7 MiB 2.26 836 12528 5339 6666 523 63.2 MiB 0.10 0.00 4.46486 -139.906 -4.46486 4.46486 0.95 0.000526257 0.000482327 0.0432541 0.0398271 46 2152 22 6.95648e+06 202660 828058. 2865.25 5.11 0.212455 0.18445 28066 200906 -1 1658 23 1579 2112 139435 32844 3.51292 3.51292 -128.901 -3.51292 0 0 1.01997e+06 3529.29 0.37 0.07 0.20 -1 -1 0.37 0.0281785 0.0249844 79 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 8.21 vpr 62.83 MiB -1 -1 0.20 18320 1 0.03 -1 -1 30304 -1 -1 9 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 323 276 1 148 73 17 17 289 -1 unnamed_device 24.2 MiB 0.82 745 11777 4928 6289 560 62.8 MiB 0.11 0.00 2.28966 -95.4694 -2.28966 2.28966 0.90 0.000504367 0.000463617 0.0466911 0.0430551 38 2070 47 6.95648e+06 130281 678818. 2348.85 3.97 0.257086 0.222206 26626 170182 -1 1825 19 1289 1839 171072 33105 2.29598 2.29598 -105.244 -2.29598 0 0 902133. 3121.57 0.24 0.08 0.17 -1 -1 0.24 0.0288474 0.0253112 57 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 5.13 vpr 62.40 MiB -1 -1 0.18 18136 1 0.02 -1 -1 30120 -1 -1 10 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63896 30 32 222 206 1 116 72 17 17 289 -1 unnamed_device 23.8 MiB 0.35 461 10800 4629 5825 346 62.4 MiB 0.08 0.00 2.11601 -78.0433 -2.11601 2.11601 0.66 0.000513674 0.000476981 0.0381073 0.035396 36 1531 45 6.95648e+06 144757 648988. 2245.63 1.69 0.126584 0.111135 26050 158493 -1 1188 18 769 980 95607 20983 2.27078 2.27078 -86.4582 -2.27078 0 0 828058. 2865.25 0.33 0.05 0.16 -1 -1 0.33 0.0182778 0.0162997 44 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 8.66 vpr 62.96 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30460 -1 -1 12 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 291 243 1 169 75 17 17 289 -1 unnamed_device 24.5 MiB 2.68 789 10187 2387 7192 608 63.0 MiB 0.08 0.00 4.13347 -134.928 -4.13347 4.13347 0.95 0.000482805 0.000441926 0.0340501 0.0313037 36 2417 25 6.95648e+06 173708 648988. 2245.63 2.45 0.155894 0.136842 26050 158493 -1 2026 21 1434 1917 192389 39621 3.90812 3.90812 -146.053 -3.90812 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0276344 0.0246971 69 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 7.27 vpr 63.03 MiB -1 -1 0.20 18408 1 0.03 -1 -1 30536 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 342 271 1 173 84 17 17 289 -1 unnamed_device 24.5 MiB 0.82 652 8868 3175 4368 1325 63.0 MiB 0.07 0.00 3.70824 -121.183 -3.70824 3.70824 0.76 0.000546111 0.000500079 0.0292568 0.0269478 46 2336 37 6.95648e+06 289514 828058. 2865.25 3.12 0.171177 0.149203 28066 200906 -1 1724 30 2028 2774 205603 48578 4.01126 4.01126 -132.855 -4.01126 0 0 1.01997e+06 3529.29 0.39 0.09 0.19 -1 -1 0.39 0.0334622 0.029529 75 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 7.50 vpr 63.46 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30448 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 372 300 1 197 78 17 17 289 -1 unnamed_device 24.8 MiB 1.64 828 13358 4005 7022 2331 63.5 MiB 0.12 0.00 4.7576 -136.611 -4.7576 4.7576 0.98 0.000615133 0.000569197 0.0500654 0.0461426 44 2606 34 6.95648e+06 202660 787024. 2723.27 2.17 0.183869 0.161736 27778 195446 -1 2046 20 1584 2408 235345 49750 4.00391 4.00391 -134.097 -4.00391 0 0 997811. 3452.63 0.33 0.10 0.20 -1 -1 0.33 0.0318211 0.0279859 82 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.98 vpr 62.32 MiB -1 -1 0.17 17976 1 0.03 -1 -1 30476 -1 -1 13 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 26 32 190 182 1 104 71 17 17 289 -1 unnamed_device 23.8 MiB 0.98 312 9123 3811 4732 580 62.3 MiB 0.05 0.00 2.23646 -64.5107 -2.23646 2.23646 0.91 0.000316662 0.000290316 0.0212774 0.019526 36 1120 50 6.95648e+06 188184 648988. 2245.63 1.75 0.10867 0.0940931 26050 158493 -1 801 18 606 743 58890 15165 2.06218 2.06218 -69.721 -2.06218 0 0 828058. 2865.25 0.32 0.04 0.16 -1 -1 0.32 0.016191 0.0144503 44 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.80 vpr 62.96 MiB -1 -1 0.18 18084 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 285 227 1 161 79 17 17 289 -1 unnamed_device 24.5 MiB 0.88 670 9543 3158 4645 1740 63.0 MiB 0.08 0.00 4.56626 -117.382 -4.56626 4.56626 0.90 0.000481023 0.000441344 0.0299193 0.0275067 40 2631 34 6.95648e+06 217135 706193. 2443.58 3.41 0.161536 0.141593 26914 176310 -1 1796 21 1360 2174 198936 44721 4.11176 4.11176 -131.9 -4.11176 0 0 926341. 3205.33 0.37 0.07 0.20 -1 -1 0.37 0.0225939 0.0199729 66 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 5.19 vpr 62.39 MiB -1 -1 0.15 17648 1 0.03 -1 -1 30012 -1 -1 8 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.8 MiB 0.32 434 9906 4167 5580 159 62.4 MiB 0.06 0.00 2.18446 -71.1933 -2.18446 2.18446 0.94 0.000308697 0.000281714 0.0233398 0.021363 36 1204 31 6.95648e+06 115805 648988. 2245.63 1.56 0.0942762 0.081787 26050 158493 -1 892 22 546 603 45043 10983 1.99138 1.99138 -71.9821 -1.99138 0 0 828058. 2865.25 0.32 0.04 0.14 -1 -1 0.32 0.0165982 0.0146452 42 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 7.96 vpr 62.95 MiB -1 -1 0.23 18296 1 0.03 -1 -1 30028 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 300 245 1 165 79 17 17 289 -1 unnamed_device 24.5 MiB 0.94 867 11740 4903 6637 200 62.9 MiB 0.10 0.00 4.50901 -127.321 -4.50901 4.50901 0.71 0.000645551 0.000600422 0.0479967 0.0446304 40 2238 23 6.95648e+06 217135 706193. 2443.58 3.89 0.250636 0.217651 26914 176310 -1 2053 19 1305 2050 178621 35608 3.68871 3.68871 -124.691 -3.68871 0 0 926341. 3205.33 0.37 0.08 0.17 -1 -1 0.37 0.0273748 0.0247213 68 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 15.11 vpr 62.90 MiB -1 -1 0.16 17928 1 0.03 -1 -1 30444 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.4 MiB 0.60 667 11989 4568 6203 1218 62.9 MiB 0.09 0.00 2.9573 -100.172 -2.9573 2.9573 0.93 0.000489835 0.000449811 0.0349618 0.0321573 42 2189 28 6.95648e+06 303989 744469. 2576.02 10.99 0.301954 0.262575 27202 183097 -1 1664 24 1386 2173 178145 43821 3.22347 3.22347 -111.767 -3.22347 0 0 949917. 3286.91 0.37 0.08 0.17 -1 -1 0.37 0.0278549 0.0246905 74 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 8.93 vpr 63.20 MiB -1 -1 0.19 18372 1 0.03 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 338 277 1 172 83 17 17 289 -1 unnamed_device 24.7 MiB 0.90 817 10883 3081 7234 568 63.2 MiB 0.11 0.00 4.37923 -132.214 -4.37923 4.37923 0.77 0.000688549 0.000638075 0.0443262 0.0410866 46 2183 22 6.95648e+06 275038 828058. 2865.25 4.62 0.224916 0.195676 28066 200906 -1 1882 19 1225 1933 151476 31783 3.84516 3.84516 -129.727 -3.84516 0 0 1.01997e+06 3529.29 0.38 0.07 0.19 -1 -1 0.38 0.0248785 0.0222216 72 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.84 vpr 62.84 MiB -1 -1 0.17 18412 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 284 241 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 0.84 798 12319 4066 7178 1075 62.8 MiB 0.10 0.00 3.08875 -102.281 -3.08875 3.08875 0.74 0.000620765 0.00057751 0.0509024 0.0473583 36 2032 27 6.95648e+06 144757 648988. 2245.63 2.06 0.175646 0.153851 26050 158493 -1 1861 23 1103 1665 175357 36686 3.29562 3.29562 -118.194 -3.29562 0 0 828058. 2865.25 0.23 0.08 0.14 -1 -1 0.23 0.0281603 0.0244605 55 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 8.35 vpr 62.66 MiB -1 -1 0.18 18484 1 0.03 -1 -1 30172 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 30 32 262 227 1 134 80 17 17 289 -1 unnamed_device 24.1 MiB 0.25 474 11260 3904 5427 1929 62.7 MiB 0.08 0.00 3.37953 -95.4258 -3.37953 3.37953 0.94 0.000427425 0.000392141 0.0309683 0.0284171 42 1517 35 6.95648e+06 260562 744469. 2576.02 4.75 0.194425 0.166458 27202 183097 -1 1089 21 746 1044 79473 19438 2.73142 2.73142 -92.241 -2.73142 0 0 949917. 3286.91 0.26 0.06 0.16 -1 -1 0.26 0.0256574 0.0224237 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 9.62 vpr 62.81 MiB -1 -1 0.19 18060 1 0.03 -1 -1 30292 -1 -1 16 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 28 32 260 223 1 135 76 17 17 289 -1 unnamed_device 24.3 MiB 0.56 458 9196 2843 4647 1706 62.8 MiB 0.06 0.00 2.9532 -87.9712 -2.9532 2.9532 0.92 0.000433995 0.000399219 0.0274188 0.0252466 56 1102 22 6.95648e+06 231611 973134. 3367.25 5.49 0.15758 0.135747 29794 239141 -1 934 18 846 1303 85563 22620 2.67307 2.67307 -83.2386 -2.67307 0 0 1.19926e+06 4149.71 0.46 0.05 0.24 -1 -1 0.46 0.0210996 0.0188949 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 13.06 vpr 62.81 MiB -1 -1 0.20 17828 1 0.03 -1 -1 30208 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.3 MiB 0.55 491 8909 2630 4401 1878 62.8 MiB 0.06 0.00 3.37459 -106.492 -3.37459 3.37459 0.96 0.000437493 0.000399778 0.0275984 0.0253849 44 1751 43 6.95648e+06 144757 787024. 2723.27 8.95 0.279038 0.242081 27778 195446 -1 1143 20 1101 1547 105761 27557 2.82237 2.82237 -106.165 -2.82237 0 0 997811. 3452.63 0.37 0.06 0.20 -1 -1 0.37 0.0214027 0.0189552 58 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 8.79 vpr 62.79 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30488 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 271 231 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.41 560 10050 4028 5496 526 62.8 MiB 0.07 0.00 3.19914 -99.6907 -3.19914 3.19914 0.90 0.000434378 0.000397595 0.0267579 0.0245829 46 1593 26 6.95648e+06 275038 828058. 2865.25 4.90 0.209744 0.180751 28066 200906 -1 1253 21 944 1383 118133 33635 2.90552 2.90552 -101.228 -2.90552 0 0 1.01997e+06 3529.29 0.41 0.07 0.20 -1 -1 0.41 0.0241517 0.0215468 61 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 6.20 vpr 62.97 MiB -1 -1 0.21 18436 1 0.03 -1 -1 30408 -1 -1 12 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 291 250 1 148 73 17 17 289 -1 unnamed_device 24.4 MiB 1.15 629 12233 5311 6328 594 63.0 MiB 0.10 0.00 3.03504 -103.283 -3.03504 3.03504 0.73 0.000619277 0.000575441 0.0518015 0.0481613 36 2214 41 6.95648e+06 173708 648988. 2245.63 1.98 0.170841 0.149941 26050 158493 -1 1583 34 1241 1717 322134 157189 2.96967 2.96967 -107.504 -2.96967 0 0 828058. 2865.25 0.33 0.15 0.16 -1 -1 0.33 0.0355717 0.0313801 61 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 8.21 vpr 63.21 MiB -1 -1 0.18 18300 1 0.03 -1 -1 30472 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 367 282 1 193 85 17 17 289 -1 unnamed_device 24.6 MiB 0.92 844 13477 4316 6348 2813 63.2 MiB 0.11 0.00 4.03548 -120.669 -4.03548 4.03548 0.93 0.00057954 0.000532415 0.045642 0.0420399 38 3021 29 6.95648e+06 303989 678818. 2348.85 3.78 0.204156 0.180267 26626 170182 -1 2244 21 1609 2583 195045 43801 4.59892 4.59892 -133.905 -4.59892 0 0 902133. 3121.57 0.32 0.08 0.17 -1 -1 0.32 0.0281895 0.0250672 84 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 7.79 vpr 63.37 MiB -1 -1 0.18 18436 1 0.03 -1 -1 30360 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 391 311 1 184 88 17 17 289 -1 unnamed_device 24.7 MiB 1.12 735 14323 5482 6766 2075 63.4 MiB 0.11 0.00 3.31218 -116.99 -3.31218 3.31218 0.93 0.000596877 0.000548478 0.0470768 0.0431218 40 2593 40 6.95648e+06 347416 706193. 2443.58 3.15 0.198064 0.172762 26914 176310 -1 2033 23 1969 2815 227824 50164 3.11682 3.11682 -126.602 -3.11682 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0321733 0.028555 82 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 7.77 vpr 62.84 MiB -1 -1 0.17 18488 1 0.03 -1 -1 30104 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 279 237 1 153 74 17 17 289 -1 unnamed_device 24.1 MiB 1.73 756 6739 2920 3620 199 62.8 MiB 0.05 0.00 4.04047 -128.247 -4.04047 4.04047 0.94 0.000439981 0.000403503 0.0211643 0.0194416 46 1831 29 6.95648e+06 159232 828058. 2865.25 2.61 0.153349 0.132806 28066 200906 -1 1574 24 1266 1712 177310 35097 3.68852 3.68852 -128.119 -3.68852 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0279714 0.0244008 63 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 7.11 vpr 63.20 MiB -1 -1 0.22 18388 1 0.03 -1 -1 30544 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 370 297 1 179 79 17 17 289 -1 unnamed_device 24.6 MiB 0.88 690 11233 3998 4949 2286 63.2 MiB 0.09 0.00 3.75886 -121.403 -3.75886 3.75886 0.93 0.000551767 0.000505737 0.0399755 0.0367689 48 2102 30 6.95648e+06 231611 865456. 2994.66 2.63 0.199015 0.174001 28354 207349 -1 1571 21 1331 2024 151809 36927 3.22827 3.22827 -116.675 -3.22827 0 0 1.05005e+06 3633.38 0.42 0.07 0.20 -1 -1 0.42 0.0290929 0.0259084 76 61 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 9.82 vpr 63.57 MiB -1 -1 0.23 18540 1 0.03 -1 -1 30252 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65100 31 32 377 302 1 225 79 17 17 289 -1 unnamed_device 25.0 MiB 2.57 951 13092 5540 7040 512 63.6 MiB 0.12 0.00 5.47516 -170.564 -5.47516 5.47516 0.94 0.000566423 0.000519643 0.0470816 0.043305 50 3027 43 6.95648e+06 231611 902133. 3121.57 3.49 0.196802 0.172007 28642 213929 -1 2524 23 2100 2989 330760 70439 5.281 5.281 -178.085 -5.281 0 0 1.08113e+06 3740.92 0.42 0.12 0.21 -1 -1 0.42 0.0318984 0.0283395 97 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 8.97 vpr 63.18 MiB -1 -1 0.22 18580 1 0.03 -1 -1 30376 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 31 32 383 305 1 204 79 17 17 289 -1 unnamed_device 24.8 MiB 2.60 988 12754 4743 6080 1931 63.2 MiB 0.11 0.00 4.52202 -151.727 -4.52202 4.52202 0.92 0.000549906 0.000506568 0.0462071 0.0423747 36 3163 33 6.95648e+06 231611 648988. 2245.63 2.85 0.212294 0.187873 26050 158493 -1 2596 22 1992 2851 301136 65423 4.59916 4.59916 -161.522 -4.59916 0 0 828058. 2865.25 0.31 0.11 0.14 -1 -1 0.31 0.0329134 0.0293627 88 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 7.61 vpr 63.17 MiB -1 -1 0.22 18268 1 0.03 -1 -1 30552 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 352 285 1 177 85 17 17 289 -1 unnamed_device 24.6 MiB 1.33 777 14407 6123 7723 561 63.2 MiB 0.12 0.00 4.10748 -131.173 -4.10748 4.10748 0.96 0.000540558 0.000495611 0.0454646 0.0417818 48 2446 41 6.95648e+06 318465 865456. 2994.66 2.51 0.183887 0.163024 28354 207349 -1 2082 19 1331 2008 241151 63950 3.49632 3.49632 -130.443 -3.49632 0 0 1.05005e+06 3633.38 0.39 0.09 0.21 -1 -1 0.39 0.025692 0.0228906 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 7.42 vpr 63.02 MiB -1 -1 0.18 18192 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 291 242 1 173 78 17 17 289 -1 unnamed_device 24.6 MiB 1.48 772 10868 4143 4479 2246 63.0 MiB 0.08 0.00 4.03548 -115.263 -4.03548 4.03548 0.93 0.000464936 0.00042693 0.0320437 0.0293806 42 2518 26 6.95648e+06 202660 744469. 2576.02 2.40 0.164839 0.143862 27202 183097 -1 1970 32 1476 1985 264030 96879 3.88932 3.88932 -123.634 -3.88932 0 0 949917. 3286.91 0.36 0.12 0.16 -1 -1 0.36 0.0327735 0.0288323 71 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 10.41 vpr 63.55 MiB -1 -1 0.20 18516 1 0.04 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 457 356 1 214 86 17 17 289 -1 unnamed_device 25.0 MiB 1.63 911 12938 4611 6181 2146 63.6 MiB 0.15 0.00 4.71507 -155.232 -4.71507 4.71507 0.97 0.000883422 0.000818431 0.0673404 0.0625765 54 2402 24 6.95648e+06 318465 949917. 3286.91 4.99 0.376155 0.327541 29506 232905 -1 2083 23 1836 2660 193954 42595 4.53361 4.53361 -153.966 -4.53361 0 0 1.17392e+06 4061.99 0.43 0.09 0.22 -1 -1 0.43 0.0375985 0.0335129 93 87 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.10 vpr 63.11 MiB -1 -1 0.20 18000 1 0.03 -1 -1 30336 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 261 225 1 137 78 17 17 289 -1 unnamed_device 24.6 MiB 0.90 547 8876 3201 4413 1262 63.1 MiB 0.06 0.00 3.29541 -98.1825 -3.29541 3.29541 0.96 0.000436645 0.000400702 0.0251047 0.023085 36 1617 29 6.95648e+06 217135 648988. 2245.63 1.79 0.136378 0.119415 26050 158493 -1 1330 20 923 1333 102290 23337 3.39377 3.39377 -111.479 -3.39377 0 0 828058. 2865.25 0.30 0.05 0.16 -1 -1 0.30 0.0200635 0.0177296 56 28 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 7.22 vpr 63.26 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30160 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 337 267 1 199 78 17 17 289 -1 unnamed_device 24.7 MiB 1.50 894 14520 6369 7601 550 63.3 MiB 0.12 0.00 5.06497 -151.796 -5.06497 5.06497 0.76 0.000533339 0.000489438 0.0503856 0.0464038 48 2634 23 6.95648e+06 217135 865456. 2994.66 2.58 0.189682 0.166291 28354 207349 -1 2132 20 1461 2121 176889 38426 4.64596 4.64596 -151.624 -4.64596 0 0 1.05005e+06 3633.38 0.30 0.08 0.17 -1 -1 0.30 0.0268759 0.0239416 84 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 7.54 vpr 63.14 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30240 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 349 284 1 175 81 17 17 289 -1 unnamed_device 24.6 MiB 1.12 775 9181 3821 5035 325 63.1 MiB 0.08 0.00 3.20795 -111.611 -3.20795 3.20795 0.76 0.000723691 0.000672864 0.0399 0.0370476 48 2377 25 6.95648e+06 246087 865456. 2994.66 2.93 0.186486 0.164549 28354 207349 -1 1874 22 1517 2455 204721 44992 3.37072 3.37072 -123.464 -3.37072 0 0 1.05005e+06 3633.38 0.41 0.09 0.21 -1 -1 0.41 0.030073 0.0269603 73 53 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 6.88 vpr 63.02 MiB -1 -1 0.16 18072 1 0.03 -1 -1 30040 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 1.12 704 10744 4416 5915 413 63.0 MiB 0.08 0.00 4.49648 -123.271 -4.49648 4.49648 0.93 0.000509097 0.000469776 0.0338656 0.0312343 44 2215 28 6.95648e+06 231611 787024. 2723.27 2.26 0.146639 0.127827 27778 195446 -1 1759 21 1311 2192 188809 42527 4.16472 4.16472 -130.527 -4.16472 0 0 997811. 3452.63 0.40 0.08 0.19 -1 -1 0.40 0.0251971 0.0224245 68 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 9.44 vpr 63.22 MiB -1 -1 0.23 18192 1 0.03 -1 -1 30288 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 353 287 1 185 78 17 17 289 -1 unnamed_device 24.6 MiB 3.07 756 9706 3472 4852 1382 63.2 MiB 0.08 0.00 4.40855 -135.153 -4.40855 4.40855 0.92 0.000451525 0.000410245 0.0318997 0.0293078 44 3181 44 6.95648e+06 202660 787024. 2723.27 2.80 0.179242 0.158318 27778 195446 -1 2097 21 1627 2242 193406 45237 4.03326 4.03326 -134.536 -4.03326 0 0 997811. 3452.63 0.38 0.08 0.18 -1 -1 0.38 0.02799 0.0249095 78 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 11.56 vpr 63.21 MiB -1 -1 0.18 18280 1 0.03 -1 -1 30284 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 361 291 1 179 81 17 17 289 -1 unnamed_device 24.6 MiB 2.02 704 10581 3961 5357 1263 63.2 MiB 0.09 0.00 3.235 -113.84 -3.235 3.235 0.96 0.000547206 0.000501886 0.0374551 0.0344797 48 2336 49 6.95648e+06 246087 865456. 2994.66 5.93 0.274725 0.238009 28354 207349 -1 1637 23 1627 2461 200884 47606 3.22022 3.22022 -116.21 -3.22022 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0292971 0.0259187 75 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 10.68 vpr 63.60 MiB -1 -1 0.21 18280 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 382 305 1 184 90 17 17 289 -1 unnamed_device 25.0 MiB 1.03 773 14562 5644 6615 2303 63.6 MiB 0.11 0.00 4.29888 -138.783 -4.29888 4.29888 0.96 0.00060648 0.000549252 0.0467149 0.0428893 48 2414 39 6.95648e+06 376368 865456. 2994.66 5.88 0.338469 0.296847 28354 207349 -1 1836 19 1403 2076 158259 36524 3.59822 3.59822 -133.734 -3.59822 0 0 1.05005e+06 3633.38 0.43 0.08 0.21 -1 -1 0.43 0.0285134 0.0254865 83 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 10.00 vpr 63.04 MiB -1 -1 0.21 18168 1 0.03 -1 -1 30284 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 306 248 1 164 86 17 17 289 -1 unnamed_device 24.5 MiB 1.26 657 12749 3718 6154 2877 63.0 MiB 0.09 0.00 4.33949 -116.674 -4.33949 4.33949 0.96 0.000496214 0.000455876 0.0365583 0.0335722 46 2122 27 6.95648e+06 318465 828058. 2865.25 5.04 0.2193 0.191047 28066 200906 -1 1690 22 1239 1957 182608 53247 4.16656 4.16656 -126.359 -4.16656 0 0 1.01997e+06 3529.29 0.40 0.09 0.20 -1 -1 0.40 0.0287973 0.0256929 69 24 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 8.83 vpr 63.24 MiB -1 -1 0.17 18216 1 0.03 -1 -1 30120 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 319 257 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 2.94 755 11161 3299 5641 2221 63.2 MiB 0.08 0.00 4.21403 -126.931 -4.21403 4.21403 0.90 0.000459296 0.000419502 0.0356973 0.032808 46 1933 27 6.95648e+06 188184 828058. 2865.25 2.33 0.150245 0.1326 28066 200906 -1 1486 27 1682 2267 313864 144324 4.07372 4.07372 -131.368 -4.07372 0 0 1.01997e+06 3529.29 0.40 0.13 0.20 -1 -1 0.40 0.0311687 0.027507 79 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.81 vpr 63.28 MiB -1 -1 0.21 18656 1 0.04 -1 -1 30276 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 373 299 1 194 78 17 17 289 -1 unnamed_device 24.6 MiB 1.59 798 12196 5085 6500 611 63.3 MiB 0.10 0.00 4.51577 -141.302 -4.51577 4.51577 0.86 0.000479777 0.000438901 0.0412573 0.0378867 50 2841 44 6.95648e+06 217135 902133. 3121.57 3.81 0.204823 0.180712 28642 213929 -1 2133 25 1911 3019 289474 76174 4.40451 4.40451 -139.151 -4.40451 0 0 1.08113e+06 3740.92 0.29 0.12 0.22 -1 -1 0.29 0.0368809 0.0322518 85 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 10.13 vpr 63.27 MiB -1 -1 0.21 18656 1 0.03 -1 -1 30244 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 387 315 1 182 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 690 11813 3850 5742 2221 63.3 MiB 0.10 0.00 4.09452 -126.661 -4.09452 4.09452 0.92 0.000514295 0.000470878 0.043966 0.0403002 54 2234 41 6.95648e+06 188184 949917. 3286.91 3.80 0.256927 0.225953 29506 232905 -1 1504 21 1507 2453 159555 39112 4.27002 4.27002 -129.779 -4.27002 0 0 1.17392e+06 4061.99 0.42 0.08 0.23 -1 -1 0.42 0.029132 0.0258078 76 77 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 8.44 vpr 62.64 MiB -1 -1 0.19 18032 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 251 219 1 136 82 17 17 289 -1 unnamed_device 24.1 MiB 0.29 504 11474 3617 5403 2454 62.6 MiB 0.07 0.00 3.14908 -93.1134 -3.14908 3.14908 0.93 0.000435635 0.000399503 0.0304466 0.0280266 46 1658 27 6.95648e+06 260562 828058. 2865.25 4.75 0.154988 0.13384 28066 200906 -1 1174 18 832 1266 98895 24702 2.82837 2.82837 -94.5599 -2.82837 0 0 1.01997e+06 3529.29 0.28 0.06 0.18 -1 -1 0.28 0.0220915 0.0193176 57 23 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.70 vpr 63.18 MiB -1 -1 0.21 18260 1 0.03 -1 -1 30260 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 341 285 1 181 76 17 17 289 -1 unnamed_device 24.7 MiB 1.70 711 11916 5010 6585 321 63.2 MiB 0.12 0.00 3.75235 -135.897 -3.75235 3.75235 0.89 0.000700752 0.000650037 0.0570163 0.0529986 40 2553 48 6.95648e+06 173708 706193. 2443.58 11.46 0.357954 0.310224 26914 176310 -1 1834 31 2040 2872 344153 122996 3.45891 3.45891 -136.63 -3.45891 0 0 926341. 3205.33 0.25 0.15 0.16 -1 -1 0.25 0.0413372 0.0360261 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 27.39 vpr 63.50 MiB -1 -1 0.21 18584 1 0.04 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 387 293 1 225 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1199 14012 4660 7682 1670 63.5 MiB 0.13 0.00 4.91372 -159.538 -4.91372 4.91372 0.94 0.000586969 0.000539664 0.051104 0.047008 40 3497 43 6.95648e+06 231611 706193. 2443.58 21.61 0.323114 0.280913 26914 176310 -1 3005 22 2262 3393 347764 72024 5.10336 5.10336 -171.032 -5.10336 0 0 926341. 3205.33 0.34 0.12 0.16 -1 -1 0.34 0.0355925 0.0318551 97 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 6.37 vpr 63.09 MiB -1 -1 0.17 18224 1 0.03 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 340 270 1 175 81 17 17 289 -1 unnamed_device 24.6 MiB 0.93 1033 10231 3254 5472 1505 63.1 MiB 0.11 0.00 4.59016 -151.92 -4.59016 4.59016 0.88 0.000709837 0.000659732 0.0455648 0.0423508 36 2371 27 6.95648e+06 246087 648988. 2245.63 2.03 0.203085 0.177435 26050 158493 -1 1997 22 1428 1911 182798 47401 3.49292 3.49292 -141.689 -3.49292 0 0 828058. 2865.25 0.34 0.10 0.15 -1 -1 0.34 0.0327787 0.0294251 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 6.02 vpr 62.82 MiB -1 -1 0.20 18428 1 0.03 -1 -1 30384 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 30 32 278 235 1 143 82 17 17 289 -1 unnamed_device 24.2 MiB 0.56 583 12008 4947 6630 431 62.8 MiB 0.08 0.00 2.944 -98.4118 -2.944 2.944 0.85 0.000363709 0.000331781 0.0291942 0.0267514 36 2237 41 6.95648e+06 289514 648988. 2245.63 2.17 0.135355 0.118719 26050 158493 -1 1685 22 1264 1894 178196 40089 3.29057 3.29057 -114.266 -3.29057 0 0 828058. 2865.25 0.31 0.07 0.14 -1 -1 0.31 0.0229524 0.0202507 62 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 11.65 vpr 63.69 MiB -1 -1 0.21 18476 1 0.04 -1 -1 30396 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 431 332 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 1.92 1129 14782 6433 7988 361 63.7 MiB 0.14 0.00 5.84939 -174.305 -5.84939 5.84939 0.92 0.000613167 0.000562206 0.0578405 0.0531024 50 2913 34 6.95648e+06 217135 902133. 3121.57 6.02 0.368207 0.323718 28642 213929 -1 2455 22 2159 3172 277374 55527 5.1538 5.1538 -165.164 -5.1538 0 0 1.08113e+06 3740.92 0.42 0.11 0.22 -1 -1 0.42 0.034584 0.0309277 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 7.52 vpr 63.12 MiB -1 -1 0.27 18424 1 0.03 -1 -1 30492 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 336 268 1 169 87 17 17 289 -1 unnamed_device 24.5 MiB 1.35 676 13335 4957 6249 2129 63.1 MiB 0.09 0.00 4.62011 -128.464 -4.62011 4.62011 0.98 0.000487201 0.000446554 0.0366371 0.0335051 44 2269 34 6.95648e+06 332941 787024. 2723.27 2.45 0.18567 0.164466 27778 195446 -1 1636 20 1236 1847 147240 35270 3.89317 3.89317 -128.822 -3.89317 0 0 997811. 3452.63 0.39 0.07 0.18 -1 -1 0.39 0.0273241 0.0243987 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 7.13 vpr 62.61 MiB -1 -1 0.17 17864 1 0.03 -1 -1 30360 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 24.2 MiB 0.30 533 10509 4362 5761 386 62.6 MiB 0.07 0.00 2.9282 -92.021 -2.9282 2.9282 0.93 0.000394288 0.00036137 0.0272244 0.0249688 40 1853 44 6.95648e+06 188184 706193. 2443.58 3.39 0.1565 0.137938 26914 176310 -1 1481 35 1390 2056 188225 47518 3.39702 3.39702 -104.345 -3.39702 0 0 926341. 3205.33 0.37 0.09 0.17 -1 -1 0.37 0.0295335 0.0258474 51 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.14 vpr 63.28 MiB -1 -1 0.19 18480 1 0.03 -1 -1 30172 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 349 273 1 184 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 923 15298 6195 8436 667 63.3 MiB 0.12 0.00 4.94787 -132.081 -4.94787 4.94787 0.93 0.000541254 0.000495571 0.0448592 0.0411212 38 3061 50 6.95648e+06 347416 678818. 2348.85 2.96 0.203653 0.179906 26626 170182 -1 2245 19 1532 2790 290954 57620 4.56506 4.56506 -138.799 -4.56506 0 0 902133. 3121.57 0.35 0.10 0.17 -1 -1 0.35 0.029704 0.0267115 80 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 7.31 vpr 62.64 MiB -1 -1 0.17 17808 1 0.03 -1 -1 30056 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.1 MiB 1.23 471 10702 3246 5052 2404 62.6 MiB 0.07 0.00 2.9972 -97.7732 -2.9972 2.9972 0.95 0.000422544 0.000389408 0.0292952 0.0269586 40 1681 41 6.95648e+06 202660 706193. 2443.58 2.64 0.138368 0.119935 26914 176310 -1 1425 22 1264 1741 139292 35177 3.20427 3.20427 -117.571 -3.20427 0 0 926341. 3205.33 0.35 0.07 0.16 -1 -1 0.35 0.0216879 0.0191319 57 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 6.57 vpr 62.80 MiB -1 -1 0.20 18268 1 0.03 -1 -1 30104 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 278 235 1 144 79 17 17 289 -1 unnamed_device 24.1 MiB 0.89 565 7684 3065 4335 284 62.8 MiB 0.07 0.00 3.45473 -106.14 -3.45473 3.45473 0.96 0.000613038 0.000570326 0.0303662 0.0283107 38 1950 32 6.95648e+06 246087 678818. 2348.85 2.20 0.16753 0.145129 26626 170182 -1 1387 22 1167 1759 135973 29786 3.05892 3.05892 -108.285 -3.05892 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0218202 0.019285 60 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 21.92 vpr 63.18 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30464 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64692 29 32 355 287 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 1.67 776 11161 4775 5773 613 63.2 MiB 0.09 0.00 3.81182 -119.714 -3.81182 3.81182 0.93 0.000542913 0.000498843 0.0406533 0.0374822 44 2685 47 6.95648e+06 231611 787024. 2723.27 16.65 0.352453 0.304912 27778 195446 -1 1975 21 1684 2502 200607 43831 3.59813 3.59813 -122.671 -3.59813 0 0 997811. 3452.63 0.39 0.08 0.18 -1 -1 0.39 0.027045 0.0239588 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 7.29 vpr 63.34 MiB -1 -1 0.20 18220 1 0.03 -1 -1 30320 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 358 289 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.56 704 11948 4364 5551 2033 63.3 MiB 0.10 0.00 4.55468 -133.267 -4.55468 4.55468 0.98 0.000560646 0.000515639 0.0423391 0.0389715 42 2317 36 6.95648e+06 231611 744469. 2576.02 1.99 0.164503 0.144661 27202 183097 -1 1673 26 1691 2418 167773 41489 4.23222 4.23222 -142.661 -4.23222 0 0 949917. 3286.91 0.39 0.09 0.18 -1 -1 0.39 0.03557 0.0316552 72 54 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 8.72 vpr 63.36 MiB -1 -1 0.18 18424 1 0.03 -1 -1 30448 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 353 285 1 178 78 17 17 289 -1 unnamed_device 24.7 MiB 2.32 786 12196 5134 6667 395 63.4 MiB 0.10 0.00 4.41959 -137.927 -4.41959 4.41959 0.97 0.000572591 0.000525958 0.0449175 0.041363 40 2597 31 6.95648e+06 202660 706193. 2443.58 2.87 0.202773 0.177646 26914 176310 -1 2018 22 1583 2443 221928 47465 4.27456 4.27456 -141.815 -4.27456 0 0 926341. 3205.33 0.25 0.10 0.15 -1 -1 0.25 0.0324237 0.0283872 73 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 11.08 vpr 62.86 MiB -1 -1 0.16 18292 1 0.03 -1 -1 30016 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 276 237 1 155 74 17 17 289 -1 unnamed_device 24.2 MiB 3.35 758 11854 5230 6360 264 62.9 MiB 0.11 0.00 4.09208 -130.885 -4.09208 4.09208 0.71 0.000695439 0.000646689 0.0540671 0.0502652 52 1835 42 6.95648e+06 144757 926341. 3205.33 4.62 0.253744 0.22087 29218 227130 -1 1566 18 1055 1360 106034 23246 3.72352 3.72352 -126.007 -3.72352 0 0 1.14541e+06 3963.36 0.43 0.05 0.21 -1 -1 0.43 0.019686 0.0176154 61 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 10.40 vpr 62.91 MiB -1 -1 0.20 18344 1 0.03 -1 -1 30456 -1 -1 12 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 31 32 319 272 1 165 75 17 17 289 -1 unnamed_device 24.4 MiB 2.34 671 10661 4453 5894 314 62.9 MiB 0.08 0.00 3.79972 -122.825 -3.79972 3.79972 0.96 0.000487871 0.00044745 0.0354862 0.0326381 40 2117 31 6.95648e+06 173708 706193. 2443.58 4.50 0.230411 0.200146 26914 176310 -1 1696 22 1224 1810 149286 32007 3.74196 3.74196 -126.734 -3.74196 0 0 926341. 3205.33 0.36 0.07 0.18 -1 -1 0.36 0.0264893 0.0235179 68 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 8.39 vpr 63.34 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30376 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 30 32 329 273 1 160 84 17 17 289 -1 unnamed_device 24.9 MiB 0.85 674 10881 3907 4742 2232 63.3 MiB 0.08 0.00 3.0162 -94.3766 -3.0162 3.0162 0.89 0.000494835 0.000454056 0.0319252 0.0293877 38 2331 31 6.95648e+06 318465 678818. 2348.85 4.22 0.213531 0.18502 26626 170182 -1 1751 21 1197 1949 138272 30964 2.97867 2.97867 -102.97 -2.97867 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0264152 0.0235127 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 6.57 vpr 62.81 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30408 -1 -1 28 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 28 32 277 229 1 155 88 17 17 289 -1 unnamed_device 24.2 MiB 0.62 776 11788 2819 8132 837 62.8 MiB 0.09 0.00 3.64814 -102.196 -3.64814 3.64814 0.95 0.000445546 0.00040982 0.0294501 0.027124 38 2229 35 6.95648e+06 405319 678818. 2348.85 2.43 0.153842 0.133376 26626 170182 -1 1869 33 1402 2171 347796 149224 3.66166 3.66166 -111.163 -3.66166 0 0 902133. 3121.57 0.33 0.14 0.16 -1 -1 0.33 0.0328721 0.0289067 72 27 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.45 vpr 63.20 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30460 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 317 269 1 149 74 17 17 289 -1 unnamed_device 24.8 MiB 0.92 549 12629 5148 6195 1286 63.2 MiB 0.10 0.00 3.47909 -109.563 -3.47909 3.47909 0.96 0.000492931 0.000451408 0.0422705 0.0387766 40 1779 32 6.95648e+06 173708 706193. 2443.58 1.97 0.174873 0.151828 26914 176310 -1 1343 24 1432 1988 141161 33501 3.13192 3.13192 -112.73 -3.13192 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0258892 0.0227094 60 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 7.02 vpr 63.10 MiB -1 -1 0.18 18276 1 0.03 -1 -1 30132 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 335 282 1 178 75 17 17 289 -1 unnamed_device 24.5 MiB 1.55 641 12873 5440 6966 467 63.1 MiB 0.12 0.00 3.42769 -121.139 -3.42769 3.42769 0.70 0.000689169 0.000639585 0.0584812 0.0542963 52 1992 21 6.95648e+06 159232 926341. 3205.33 2.38 0.201328 0.176718 29218 227130 -1 1613 23 1389 2035 175292 41078 3.38663 3.38663 -124.562 -3.38663 0 0 1.14541e+06 3963.36 0.31 0.08 0.19 -1 -1 0.31 0.0308461 0.0268839 72 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 20.62 vpr 62.87 MiB -1 -1 0.18 18088 1 0.04 -1 -1 30456 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.4 MiB 0.52 710 11799 3749 5666 2384 62.9 MiB 0.08 0.00 4.65108 -122.985 -4.65108 4.65108 0.96 0.000485158 0.000443926 0.0326742 0.0299958 46 2424 30 6.95648e+06 347416 828058. 2865.25 16.59 0.303559 0.2623 28066 200906 -1 1783 21 1187 2016 205384 50350 4.00042 4.00042 -123.036 -4.00042 0 0 1.01997e+06 3529.29 0.27 0.09 0.17 -1 -1 0.27 0.0290871 0.025468 74 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 8.19 vpr 63.14 MiB -1 -1 0.17 18304 1 0.03 -1 -1 30364 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 350 275 1 196 77 17 17 289 -1 unnamed_device 24.5 MiB 1.96 831 11813 4743 6275 795 63.1 MiB 0.10 0.00 4.58977 -148.914 -4.58977 4.58977 0.96 0.000550244 0.000504805 0.0420503 0.0386384 44 2884 44 6.95648e+06 188184 787024. 2723.27 2.67 0.222044 0.19658 27778 195446 -1 2294 20 1665 2465 221344 49112 4.59581 4.59581 -154.413 -4.59581 0 0 997811. 3452.63 0.37 0.09 0.18 -1 -1 0.37 0.0288617 0.0258279 82 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 6.89 vpr 63.22 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 385 308 1 179 88 17 17 289 -1 unnamed_device 24.6 MiB 1.61 816 16468 5566 8437 2465 63.2 MiB 0.15 0.00 4.27883 -132.69 -4.27883 4.27883 0.72 0.000864773 0.000798084 0.0699869 0.064811 44 2544 22 6.95648e+06 347416 787024. 2723.27 2.01 0.195185 0.172704 27778 195446 -1 2082 20 1479 2332 241341 50966 4.09726 4.09726 -143.879 -4.09726 0 0 997811. 3452.63 0.38 0.10 0.18 -1 -1 0.38 0.0309343 0.0276348 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.39 vpr 63.37 MiB -1 -1 0.22 18196 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 387 309 1 182 87 17 17 289 -1 unnamed_device 24.7 MiB 1.16 810 13911 4952 7625 1334 63.4 MiB 0.12 0.00 4.06852 -133.682 -4.06852 4.06852 0.93 0.000587405 0.000537302 0.0443914 0.040626 42 3099 42 6.95648e+06 332941 744469. 2576.02 2.49 0.172211 0.150494 27202 183097 -1 2078 38 2462 4012 548666 217531 3.84286 3.84286 -141.145 -3.84286 0 0 949917. 3286.91 0.37 0.21 0.19 -1 -1 0.37 0.0539257 0.0472697 80 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 6.12 vpr 63.04 MiB -1 -1 0.19 18324 1 0.03 -1 -1 30164 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 30 32 272 232 1 142 74 17 17 289 -1 unnamed_device 24.5 MiB 0.89 540 8134 2607 3837 1690 63.0 MiB 0.06 0.00 3.76076 -106.203 -3.76076 3.76076 0.89 0.000415615 0.000380513 0.0239858 0.0220348 40 1646 22 6.95648e+06 173708 706193. 2443.58 1.91 0.134693 0.118315 26914 176310 -1 1285 22 1098 1716 149939 32505 3.03582 3.03582 -102.162 -3.03582 0 0 926341. 3205.33 0.33 0.07 0.16 -1 -1 0.33 0.0224434 0.0198946 57 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 8.48 vpr 63.29 MiB -1 -1 0.20 18452 1 0.03 -1 -1 30440 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 30 32 375 299 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.04 678 9356 3868 5007 481 63.3 MiB 0.08 0.00 4.36203 -133.965 -4.36203 4.36203 0.94 0.000529415 0.000484047 0.036623 0.0336857 40 2565 42 6.95648e+06 202660 706193. 2443.58 3.83 0.206568 0.180304 26914 176310 -1 1870 35 2688 3580 395177 108860 4.20576 4.20576 -141.929 -4.20576 0 0 926341. 3205.33 0.36 0.15 0.17 -1 -1 0.36 0.04053 0.0354883 76 63 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 9.77 vpr 63.32 MiB -1 -1 0.20 18188 1 0.03 -1 -1 30304 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 340 270 1 193 78 17 17 289 -1 unnamed_device 24.6 MiB 1.66 842 12030 5028 6556 446 63.3 MiB 0.12 0.00 4.9029 -146.03 -4.9029 4.9029 0.70 0.000704765 0.000654355 0.0569918 0.0529473 48 2355 34 6.95648e+06 202660 865456. 2994.66 4.92 0.289241 0.252015 28354 207349 -1 1913 25 1761 2881 220156 48068 4.16871 4.16871 -142.698 -4.16871 0 0 1.05005e+06 3633.38 0.42 0.09 0.21 -1 -1 0.42 0.0294658 0.0260083 80 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.99 vpr 63.04 MiB -1 -1 0.22 18200 1 0.03 -1 -1 30180 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 340 275 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 2.34 750 12302 5257 6526 519 63.0 MiB 0.11 0.00 5.69125 -154.683 -5.69125 5.69125 0.87 0.000704436 0.000654527 0.0561891 0.0522455 46 2411 24 6.95648e+06 202660 828058. 2865.25 2.30 0.199634 0.176027 28066 200906 -1 1821 21 1264 1891 135405 30894 4.59527 4.59527 -147.004 -4.59527 0 0 1.01997e+06 3529.29 0.39 0.07 0.20 -1 -1 0.39 0.0263075 0.0233795 79 47 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 8.27 vpr 63.34 MiB -1 -1 0.21 18280 1 0.03 -1 -1 30200 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64856 30 32 377 310 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 2.80 745 11063 3711 5149 2203 63.3 MiB 0.11 0.00 4.87546 -148.347 -4.87546 4.87546 0.95 0.000745956 0.000692689 0.047741 0.0443277 44 2370 36 6.95648e+06 303989 787024. 2723.27 1.83 0.184199 0.161304 27778 195446 -1 1790 19 1028 1574 117630 27130 4.21421 4.21421 -141.309 -4.21421 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0254287 0.0225903 74 83 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 9.51 vpr 63.31 MiB -1 -1 0.21 18484 1 0.03 -1 -1 30356 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 365 294 1 177 77 17 17 289 -1 unnamed_device 24.7 MiB 1.09 704 9368 3487 4602 1279 63.3 MiB 0.09 0.00 4.40123 -135.279 -4.40123 4.40123 0.71 0.000838188 0.000768342 0.0462298 0.0429054 50 2363 26 6.95648e+06 188184 902133. 3121.57 5.25 0.299441 0.260124 28642 213929 -1 1834 25 1636 2654 337584 116015 3.91407 3.91407 -139.218 -3.91407 0 0 1.08113e+06 3740.92 0.38 0.12 0.20 -1 -1 0.38 0.0305789 0.0271417 72 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 7.30 vpr 63.15 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30392 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 29 32 378 310 1 170 77 17 17 289 -1 unnamed_device 24.5 MiB 1.37 641 10346 4274 5371 701 63.2 MiB 0.08 0.00 4.09563 -125.168 -4.09563 4.09563 0.95 0.000541719 0.000496623 0.0377503 0.0346878 44 2147 36 6.95648e+06 231611 787024. 2723.27 2.37 0.150549 0.131274 27778 195446 -1 1428 21 1259 1870 134326 34683 3.90812 3.90812 -126.216 -3.90812 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0263636 0.0233269 73 85 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 5.35 vpr 62.84 MiB -1 -1 0.17 17852 1 0.03 -1 -1 30384 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 243 205 1 139 74 17 17 289 -1 unnamed_device 24.3 MiB 0.76 531 8754 3599 4846 309 62.8 MiB 0.07 0.00 3.56099 -105.132 -3.56099 3.56099 0.70 0.000563419 0.000523897 0.0343293 0.0319356 42 1893 27 6.95648e+06 144757 744469. 2576.02 1.68 0.135746 0.118328 27202 183097 -1 1425 21 1083 1523 134323 32590 2.99782 2.99782 -107.563 -2.99782 0 0 949917. 3286.91 0.35 0.06 0.17 -1 -1 0.35 0.0199472 0.0176615 53 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 9.11 vpr 63.09 MiB -1 -1 0.21 18256 1 0.04 -1 -1 30384 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 373 302 1 174 87 17 17 289 -1 unnamed_device 24.4 MiB 3.14 804 15255 5341 7615 2299 63.1 MiB 0.12 0.00 4.7291 -131.65 -4.7291 4.7291 0.95 0.000596735 0.000548003 0.0501897 0.0460709 44 2369 49 6.95648e+06 332941 787024. 2723.27 2.24 0.206932 0.180906 27778 195446 -1 1856 20 1185 1873 160515 35930 4.08636 4.08636 -133.726 -4.08636 0 0 997811. 3452.63 0.40 0.08 0.18 -1 -1 0.40 0.0297818 0.0266194 76 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 7.81 vpr 63.28 MiB -1 -1 0.23 18280 1 0.03 -1 -1 30372 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 397 314 1 188 77 17 17 289 -1 unnamed_device 24.6 MiB 0.77 837 8716 3541 4962 213 63.3 MiB 0.08 0.00 4.35698 -145.77 -4.35698 4.35698 0.94 0.000592963 0.000543462 0.0343823 0.031609 40 2823 37 6.95648e+06 188184 706193. 2443.58 3.46 0.210308 0.183025 26914 176310 -1 2134 25 2123 2999 254573 54896 4.39522 4.39522 -155.949 -4.39522 0 0 926341. 3205.33 0.33 0.10 0.17 -1 -1 0.33 0.0317423 0.0280505 78 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 7.51 vpr 63.09 MiB -1 -1 0.18 18264 1 0.03 -1 -1 30360 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 269 231 1 166 75 17 17 289 -1 unnamed_device 24.4 MiB 1.71 735 12083 5107 6723 253 63.1 MiB 0.09 0.00 4.05037 -123.737 -4.05037 4.05037 0.94 0.000435235 0.000398849 0.0369808 0.0340194 38 2220 47 6.95648e+06 159232 678818. 2348.85 2.39 0.169877 0.149318 26626 170182 -1 1699 20 1188 1501 127593 27591 3.35181 3.35181 -119.202 -3.35181 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0202576 0.0180286 68 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 6.93 vpr 62.71 MiB -1 -1 0.18 17848 1 0.03 -1 -1 30328 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.1 MiB 1.36 543 10956 3546 5569 1841 62.7 MiB 0.08 0.00 3.32523 -102.046 -3.32523 3.32523 0.94 0.000417468 0.000383413 0.031219 0.028733 36 1865 39 6.95648e+06 188184 648988. 2245.63 2.16 0.149333 0.129489 26050 158493 -1 1428 21 1193 1677 147215 32355 3.12117 3.12117 -110.169 -3.12117 0 0 828058. 2865.25 0.32 0.06 0.15 -1 -1 0.32 0.0205711 0.018153 57 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.36 vpr 63.27 MiB -1 -1 0.20 18316 1 0.03 -1 -1 30504 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 348 274 1 202 79 17 17 289 -1 unnamed_device 24.6 MiB 1.74 933 12754 4730 5000 3024 63.3 MiB 0.10 0.00 4.68742 -153.217 -4.68742 4.68742 0.92 0.000553773 0.000509333 0.0451723 0.0415649 44 2698 21 6.95648e+06 217135 787024. 2723.27 2.04 0.17751 0.155234 27778 195446 -1 2064 18 1681 2189 162033 36861 4.45221 4.45221 -153.473 -4.45221 0 0 997811. 3452.63 0.38 0.07 0.18 -1 -1 0.38 0.0266206 0.0239321 85 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 10.42 vpr 63.21 MiB -1 -1 0.22 18296 1 0.03 -1 -1 30300 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 356 289 1 196 78 17 17 289 -1 unnamed_device 24.6 MiB 1.29 823 12030 5052 6595 383 63.2 MiB 0.10 0.00 4.95282 -149.828 -4.95282 4.95282 0.95 0.000541601 0.000497665 0.0428123 0.039357 48 2486 24 6.95648e+06 202660 865456. 2994.66 5.43 0.232116 0.201015 28354 207349 -1 2031 31 1726 2461 360777 113808 4.55096 4.55096 -152.92 -4.55096 0 0 1.05005e+06 3633.38 0.39 0.14 0.18 -1 -1 0.39 0.0368186 0.0325637 82 56 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 6.48 vpr 63.39 MiB -1 -1 0.20 18012 1 0.03 -1 -1 30200 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.8 MiB 0.57 936 12156 5048 6539 569 63.4 MiB 0.11 0.00 4.92382 -143.608 -4.92382 4.92382 0.95 0.000551337 0.000506415 0.042285 0.0389272 42 3037 26 6.95648e+06 246087 744469. 2576.02 2.38 0.150344 0.132098 27202 183097 -1 2197 26 1837 3064 342606 97379 4.77161 4.77161 -152.745 -4.77161 0 0 949917. 3286.91 0.25 0.13 0.15 -1 -1 0.25 0.0375559 0.03285 83 3 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 9.28 vpr 63.07 MiB -1 -1 0.20 18420 1 0.03 -1 -1 30300 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64584 30 32 316 264 1 159 83 17 17 289 -1 unnamed_device 24.6 MiB 1.02 693 11963 4106 5300 2557 63.1 MiB 0.09 0.00 3.45278 -100.466 -3.45278 3.45278 0.96 0.000513846 0.000471955 0.0372539 0.0343305 38 2001 28 6.95648e+06 303989 678818. 2348.85 4.72 0.225257 0.196762 26626 170182 -1 1597 24 1517 2411 158097 35120 3.22342 3.22342 -103.783 -3.22342 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0260754 0.022943 69 52 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.93 vpr 62.90 MiB -1 -1 0.16 18272 1 0.03 -1 -1 30344 -1 -1 14 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 27 32 255 219 1 130 73 17 17 289 -1 unnamed_device 24.4 MiB 0.60 416 8585 3548 4477 560 62.9 MiB 0.06 0.00 2.9243 -87.2262 -2.9243 2.9243 0.98 0.000432801 0.000397554 0.0268373 0.0247518 42 1235 21 6.95648e+06 202660 744469. 2576.02 1.85 0.122229 0.106506 27202 183097 -1 1032 20 971 1211 87029 22902 2.94272 2.94272 -95.2323 -2.94272 0 0 949917. 3286.91 0.36 0.05 0.17 -1 -1 0.36 0.0198465 0.017554 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 23.95 vpr 63.59 MiB -1 -1 0.23 18608 1 0.04 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 421 327 1 224 80 17 17 289 -1 unnamed_device 24.9 MiB 1.39 1102 15044 5980 6904 2160 63.6 MiB 0.14 0.00 3.84665 -132.831 -3.84665 3.84665 0.90 0.000623212 0.000571211 0.0567843 0.0521137 44 3670 33 6.95648e+06 231611 787024. 2723.27 18.87 0.385677 0.337266 27778 195446 -1 2802 28 2592 4239 448388 119310 4.01462 4.01462 -145.002 -4.01462 0 0 997811. 3452.63 0.39 0.16 0.19 -1 -1 0.39 0.0395678 0.0348493 95 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 21.94 vpr 63.26 MiB -1 -1 0.20 18256 1 0.03 -1 -1 30384 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 365 296 1 190 78 17 17 289 -1 unnamed_device 24.6 MiB 5.18 1006 12362 4250 6888 1224 63.3 MiB 0.10 0.00 5.3781 -155.355 -5.3781 5.3781 0.91 0.000548044 0.000503906 0.0438809 0.0404077 42 2668 31 6.95648e+06 217135 744469. 2576.02 13.19 0.303406 0.262941 27202 183097 -1 2298 25 2116 3299 316701 61426 4.61096 4.61096 -158.103 -4.61096 0 0 949917. 3286.91 0.35 0.11 0.18 -1 -1 0.35 0.0312634 0.0276317 81 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 8.45 vpr 63.37 MiB -1 -1 0.21 18316 1 0.03 -1 -1 30528 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 331 280 1 171 75 17 17 289 -1 unnamed_device 24.9 MiB 3.56 712 8923 3676 5031 216 63.4 MiB 0.09 0.00 3.7346 -127.816 -3.7346 3.7346 0.70 0.00067619 0.000626961 0.0408057 0.0379058 38 2537 25 6.95648e+06 159232 678818. 2348.85 1.79 0.15779 0.138184 26626 170182 -1 2033 22 1591 2297 212376 46176 4.19296 4.19296 -141.786 -4.19296 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0257469 0.0228437 70 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 9.68 vpr 63.16 MiB -1 -1 0.18 18436 1 0.03 -1 -1 30336 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 326 263 1 169 86 17 17 289 -1 unnamed_device 24.7 MiB 0.37 754 14261 5947 7773 541 63.2 MiB 0.12 0.00 4.35988 -125.269 -4.35988 4.35988 0.72 0.000549373 0.000503232 0.0456939 0.041992 46 2512 44 6.95648e+06 318465 828058. 2865.25 6.14 0.325336 0.282757 28066 200906 -1 1793 22 1183 1826 140126 31861 3.61226 3.61226 -123.206 -3.61226 0 0 1.01997e+06 3529.29 0.39 0.07 0.19 -1 -1 0.39 0.0276576 0.0245948 74 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 7.00 vpr 63.38 MiB -1 -1 0.26 18236 1 0.03 -1 -1 30464 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 373 294 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.91 836 14128 4159 6910 3059 63.4 MiB 0.11 0.00 4.50675 -130.886 -4.50675 4.50675 0.93 0.000567607 0.000512659 0.0434306 0.039679 38 2741 32 6.95648e+06 361892 678818. 2348.85 2.43 0.179277 0.1563 26626 170182 -1 2052 20 1552 2384 172074 38585 4.14602 4.14602 -134.294 -4.14602 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0269852 0.0239347 83 50 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 8.18 vpr 63.21 MiB -1 -1 0.20 18212 1 0.03 -1 -1 30280 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 325 268 1 166 78 17 17 289 -1 unnamed_device 24.7 MiB 1.24 715 8544 2877 3872 1795 63.2 MiB 0.07 0.00 3.35027 -102.379 -3.35027 3.35027 0.95 0.000503573 0.000462874 0.0288114 0.0265143 38 2633 41 6.95648e+06 231611 678818. 2348.85 3.49 0.188459 0.165243 26626 170182 -1 1897 23 1489 2426 201506 43472 3.14647 3.14647 -109.753 -3.14647 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0262507 0.0231643 68 51 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 23.96 vpr 63.23 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30380 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 350 275 1 208 78 17 17 289 -1 unnamed_device 24.5 MiB 1.70 917 13856 5527 6642 1687 63.2 MiB 0.12 0.00 4.51937 -148.343 -4.51937 4.51937 0.89 0.000539163 0.000495785 0.0495401 0.0457082 44 3431 28 6.95648e+06 202660 787024. 2723.27 18.67 0.3117 0.270209 27778 195446 -1 2559 21 1936 2832 313525 66461 4.75556 4.75556 -157.616 -4.75556 0 0 997811. 3452.63 0.35 0.10 0.18 -1 -1 0.35 0.0274103 0.0244759 88 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 7.72 vpr 63.36 MiB -1 -1 0.21 18200 1 0.03 -1 -1 30288 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 386 307 1 187 82 17 17 289 -1 unnamed_device 24.7 MiB 1.09 804 10584 4356 5793 435 63.4 MiB 0.10 0.00 4.51417 -147.562 -4.51417 4.51417 0.97 0.000653144 0.000603656 0.0403907 0.0372128 40 2746 27 6.95648e+06 260562 706193. 2443.58 2.97 0.197841 0.174843 26914 176310 -1 1910 20 1476 2033 169668 38499 4.19792 4.19792 -148.671 -4.19792 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.028075 0.02495 80 62 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 10.38 vpr 62.66 MiB -1 -1 0.17 18272 1 0.03 -1 -1 30304 -1 -1 12 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 269 229 1 132 73 17 17 289 -1 unnamed_device 24.3 MiB 5.54 414 10105 3962 3901 2242 62.7 MiB 0.07 0.00 3.92822 -101.93 -3.92822 3.92822 0.93 0.00050188 0.000464084 0.033528 0.0309476 40 1436 24 6.95648e+06 173708 706193. 2443.58 1.59 0.144506 0.125284 26914 176310 -1 1243 34 1176 1500 120962 29803 3.24733 3.24733 -104.008 -3.24733 0 0 926341. 3205.33 0.36 0.08 0.18 -1 -1 0.36 0.0322745 0.0283014 53 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 6.65 vpr 63.19 MiB -1 -1 0.19 18408 1 0.03 -1 -1 30420 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 310 266 1 163 75 17 17 289 -1 unnamed_device 24.5 MiB 1.39 620 10345 3646 5288 1411 63.2 MiB 0.09 0.00 3.72515 -127.215 -3.72515 3.72515 0.71 0.000667197 0.000620218 0.0454815 0.0422435 40 2156 26 6.95648e+06 159232 706193. 2443.58 2.16 0.183968 0.1602 26914 176310 -1 1801 20 1225 1549 172383 40285 3.88512 3.88512 -138.473 -3.88512 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0225727 0.0199294 64 58 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 9.41 vpr 63.29 MiB -1 -1 0.23 18308 1 0.03 -1 -1 30404 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 326 261 1 172 86 17 17 289 -1 unnamed_device 24.7 MiB 1.01 748 11615 3856 5496 2263 63.3 MiB 0.10 0.00 4.10411 -120.963 -4.10411 4.10411 0.96 0.000543334 0.000499266 0.0361417 0.0332075 40 2871 41 6.95648e+06 332941 706193. 2443.58 4.99 0.191383 0.168616 26914 176310 -1 1987 23 1515 2353 232391 57920 4.38716 4.38716 -139.992 -4.38716 0 0 926341. 3205.33 0.37 0.10 0.18 -1 -1 0.37 0.0283544 0.0251528 77 33 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 7.45 vpr 62.81 MiB -1 -1 0.20 18216 1 0.03 -1 -1 30272 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 29 32 262 224 1 161 74 17 17 289 -1 unnamed_device 24.1 MiB 1.69 591 9994 4171 5357 466 62.8 MiB 0.09 0.00 4.06527 -116.04 -4.06527 4.06527 0.73 0.000581218 0.000538624 0.0399219 0.0371535 40 2287 32 6.95648e+06 188184 706193. 2443.58 2.69 0.171713 0.14942 26914 176310 -1 1693 18 1149 1435 125314 29692 3.54022 3.54022 -115.335 -3.54022 0 0 926341. 3205.33 0.36 0.06 0.18 -1 -1 0.36 0.01965 0.0174205 67 31 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.25 vpr 62.66 MiB -1 -1 0.21 18420 1 0.03 -1 -1 30112 -1 -1 9 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 278 238 1 144 73 17 17 289 -1 unnamed_device 24.2 MiB 1.46 609 9497 4084 5186 227 62.7 MiB 0.07 0.00 3.96096 -113.861 -3.96096 3.96096 0.91 0.00045606 0.000417573 0.0307339 0.0282665 44 1829 25 6.95648e+06 130281 787024. 2723.27 2.32 0.136944 0.119746 27778 195446 -1 1406 21 1281 1911 186230 42287 3.13062 3.13062 -111.051 -3.13062 0 0 997811. 3452.63 0.38 0.09 0.19 -1 -1 0.38 0.0259649 0.0231524 56 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.92 vpr 63.16 MiB -1 -1 0.19 18380 1 0.03 -1 -1 30296 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64680 31 32 373 300 1 174 87 17 17 289 -1 unnamed_device 24.6 MiB 1.17 767 14295 5145 7027 2123 63.2 MiB 0.12 0.00 3.44853 -115.891 -3.44853 3.44853 0.95 0.000573096 0.000525857 0.0452991 0.0416556 36 2547 40 6.95648e+06 347416 648988. 2245.63 6.23 0.260731 0.22582 26050 158493 -1 1963 23 1752 2356 223105 52307 3.64612 3.64612 -130.048 -3.64612 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0297919 0.0263765 79 64 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 8.97 vpr 62.93 MiB -1 -1 0.20 18416 1 0.04 -1 -1 30432 -1 -1 12 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 265 230 1 159 75 17 17 289 -1 unnamed_device 24.3 MiB 2.38 631 11925 4064 5891 1970 62.9 MiB 0.08 0.00 3.97747 -119.507 -3.97747 3.97747 0.95 0.000448762 0.000408746 0.0362933 0.03343 38 2213 47 6.95648e+06 173708 678818. 2348.85 3.10 0.166909 0.14647 26626 170182 -1 1607 23 1113 1586 163638 50863 3.49622 3.49622 -123.168 -3.49622 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.0240897 0.021405 64 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 11.26 vpr 63.37 MiB -1 -1 0.21 18456 1 0.03 -1 -1 30176 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 349 286 1 165 86 17 17 289 -1 unnamed_device 24.7 MiB 1.53 678 15017 5720 7175 2122 63.4 MiB 0.12 0.00 3.20268 -108.887 -3.20268 3.20268 0.95 0.000728998 0.000675656 0.0599379 0.0556422 56 1706 21 6.95648e+06 318465 973134. 3367.25 5.93 0.261662 0.228753 29794 239141 -1 1447 20 1251 1974 143156 33604 3.03987 3.03987 -110.001 -3.03987 0 0 1.19926e+06 4149.71 0.44 0.07 0.25 -1 -1 0.44 0.0255967 0.0226907 71 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 7.61 vpr 63.20 MiB -1 -1 0.21 18360 1 0.03 -1 -1 30304 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 396 325 1 176 78 17 17 289 -1 unnamed_device 24.6 MiB 2.01 662 8876 3614 4824 438 63.2 MiB 0.08 0.00 4.0342 -133.245 -4.0342 4.0342 0.70 0.000584321 0.000535529 0.0364551 0.0335721 46 2263 37 6.95648e+06 217135 828058. 2865.25 2.37 0.153781 0.134153 28066 200906 -1 1512 21 1437 1952 138860 34156 3.86602 3.86602 -136.79 -3.86602 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0307792 0.0275095 73 91 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 7.34 vpr 63.03 MiB -1 -1 0.20 18200 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 303 262 1 145 74 17 17 289 -1 unnamed_device 24.4 MiB 1.55 509 10304 4083 5484 737 63.0 MiB 0.08 0.00 2.9023 -97.3173 -2.9023 2.9023 0.92 0.000484658 0.000444274 0.0340039 0.031209 44 1935 47 6.95648e+06 144757 787024. 2723.27 2.29 0.138113 0.119822 27778 195446 -1 1385 25 1246 1925 153326 35532 3.21042 3.21042 -103.189 -3.21042 0 0 997811. 3452.63 0.37 0.07 0.17 -1 -1 0.37 0.025918 0.0228556 57 57 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 7.66 vpr 62.80 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30296 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 290 244 1 170 75 17 17 289 -1 unnamed_device 24.3 MiB 1.62 759 10819 2915 6394 1510 62.8 MiB 0.10 0.00 4.04348 -128.875 -4.04348 4.04348 0.72 0.000634106 0.000589866 0.0434448 0.0403547 38 2673 39 6.95648e+06 159232 678818. 2348.85 3.14 0.191478 0.166686 26626 170182 -1 1962 22 1475 2156 194034 41144 3.98932 3.98932 -139.116 -3.98932 0 0 902133. 3121.57 0.22 0.09 0.10 -1 -1 0.22 0.0253368 0.0223281 70 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 8.94 vpr 63.12 MiB -1 -1 0.19 18384 1 0.03 -1 -1 30172 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 318 257 1 188 78 17 17 289 -1 unnamed_device 24.6 MiB 2.60 781 10370 4130 5165 1075 63.1 MiB 0.09 0.00 4.16878 -129.099 -4.16878 4.16878 0.92 0.000508396 0.000467026 0.0352413 0.032368 40 2510 32 6.95648e+06 202660 706193. 2443.58 2.90 0.190679 0.168695 26914 176310 -1 1933 22 1658 2287 178209 40783 4.08861 4.08861 -137.289 -4.08861 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.0263588 0.0233748 79 30 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 9.54 vpr 63.13 MiB -1 -1 0.20 18388 1 0.03 -1 -1 30116 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 324 268 1 162 82 17 17 289 -1 unnamed_device 24.5 MiB 1.28 662 11118 4310 5269 1539 63.1 MiB 0.08 0.00 4.24388 -117.566 -4.24388 4.24388 0.95 0.000502943 0.000461722 0.0336989 0.0310396 44 2012 23 6.95648e+06 303989 787024. 2723.27 4.73 0.198347 0.17133 27778 195446 -1 1495 21 1065 1607 121803 30150 3.79376 3.79376 -113.335 -3.79376 0 0 997811. 3452.63 0.38 0.06 0.19 -1 -1 0.38 0.0243702 0.0215572 71 55 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 8.45 vpr 63.32 MiB -1 -1 0.21 18464 1 0.03 -1 -1 30488 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 393 312 1 206 78 17 17 289 -1 unnamed_device 24.8 MiB 1.73 835 12030 5024 6545 461 63.3 MiB 0.11 0.00 4.9402 -157.131 -4.9402 4.9402 0.96 0.000566599 0.000520377 0.0451536 0.0415263 48 2808 23 6.95648e+06 202660 865456. 2994.66 2.96 0.226335 0.201915 28354 207349 -1 2116 22 1959 2764 239519 54730 4.43051 4.43051 -160.848 -4.43051 0 0 1.05005e+06 3633.38 0.40 0.09 0.20 -1 -1 0.40 0.029424 0.0260392 89 65 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 9.61 vpr 62.64 MiB -1 -1 0.16 17964 1 0.03 -1 -1 30100 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 24.2 MiB 1.63 534 10476 4351 5783 342 62.6 MiB 0.08 0.00 3.74884 -96.385 -3.74884 3.74884 0.95 0.000408394 0.000375118 0.0293324 0.0269618 36 2100 36 6.95648e+06 188184 648988. 2245.63 4.73 0.20333 0.17551 26050 158493 -1 1464 23 979 1591 123326 27111 3.17317 3.17317 -107.689 -3.17317 0 0 828058. 2865.25 0.24 0.07 0.14 -1 -1 0.24 0.0246683 0.021475 54 4 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 8.49 vpr 63.41 MiB -1 -1 0.24 18704 1 0.03 -1 -1 30292 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 412 334 1 182 89 17 17 289 -1 unnamed_device 24.8 MiB 1.23 808 15533 3949 11126 458 63.4 MiB 0.14 0.00 3.75239 -135.532 -3.75239 3.75239 0.92 0.000799816 0.000740468 0.0625087 0.0578592 38 2676 48 6.95648e+06 361892 678818. 2348.85 3.78 0.260228 0.228469 26626 170182 -1 2002 22 1722 2306 186952 40190 4.06026 4.06026 -150.704 -4.06026 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0326309 0.029025 81 90 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 9.30 vpr 63.11 MiB -1 -1 0.21 18188 1 0.03 -1 -1 30192 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 3.63 647 11079 4614 6219 246 63.1 MiB 0.11 0.00 2.96105 -113.708 -2.96105 2.96105 0.95 0.000869166 0.000800546 0.0506969 0.0467573 38 2061 23 6.95648e+06 144757 678818. 2348.85 2.19 0.204275 0.178191 26626 170182 -1 1578 22 1485 2093 172120 37079 3.04352 3.04352 -126.596 -3.04352 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0279974 0.0246709 61 96 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 8.08 vpr 63.32 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 360 293 1 172 86 17 17 289 -1 unnamed_device 24.8 MiB 1.19 727 10670 3941 5494 1235 63.3 MiB 0.09 0.00 4.11943 -125.455 -4.11943 4.11943 0.92 0.000490971 0.000447062 0.0331434 0.0304629 40 3045 40 6.95648e+06 318465 706193. 2443.58 3.51 0.204804 0.177795 26914 176310 -1 2040 32 1407 2044 244195 77998 3.86581 3.86581 -128.806 -3.86581 0 0 926341. 3205.33 0.25 0.12 0.15 -1 -1 0.25 0.0417743 0.0362026 75 60 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 22.02 vpr 63.50 MiB -1 -1 0.20 18544 1 0.03 -1 -1 30336 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 396 299 1 224 79 17 17 289 -1 unnamed_device 25.0 MiB 2.00 1022 12247 5112 6717 418 63.5 MiB 0.13 0.00 6.05399 -174.256 -6.05399 6.05399 0.71 0.000830011 0.000766381 0.0626948 0.0581311 46 3156 47 6.95648e+06 217135 828058. 2865.25 16.56 0.38359 0.333156 28066 200906 -1 2358 24 2103 2979 256030 59142 5.21945 5.21945 -169.553 -5.21945 0 0 1.01997e+06 3529.29 0.40 0.11 0.19 -1 -1 0.40 0.0353093 0.0314677 95 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 7.43 vpr 62.59 MiB -1 -1 0.18 18056 1 0.03 -1 -1 30260 -1 -1 11 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 30 32 224 207 1 132 73 17 17 289 -1 unnamed_device 23.9 MiB 2.68 531 11017 3550 5709 1758 62.6 MiB 0.08 0.00 2.69765 -94.1883 -2.69765 2.69765 0.72 0.000519496 0.000483827 0.0394752 0.0367464 36 1644 40 6.95648e+06 159232 648988. 2245.63 1.66 0.14822 0.129284 26050 158493 -1 1380 20 877 1120 125064 25925 2.43542 2.43542 -98.7037 -2.43542 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0184412 0.0162561 52 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 6.97 vpr 62.80 MiB -1 -1 0.22 18380 1 0.03 -1 -1 30452 -1 -1 11 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64312 30 32 286 239 1 135 73 17 17 289 -1 unnamed_device 24.2 MiB 1.30 454 9193 3807 4991 395 62.8 MiB 0.07 0.00 3.70034 -111.63 -3.70034 3.70034 0.94 0.00046342 0.000425043 0.0303321 0.0278789 42 1649 46 6.95648e+06 159232 744469. 2576.02 2.20 0.131561 0.114074 27202 183097 -1 1332 26 1290 1885 233752 77040 3.17613 3.17613 -114.241 -3.17613 0 0 949917. 3286.91 0.36 0.10 0.18 -1 -1 0.36 0.0260076 0.0227354 54 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 6.98 vpr 62.79 MiB -1 -1 0.18 18424 1 0.03 -1 -1 30176 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 296 247 1 152 74 17 17 289 -1 unnamed_device 24.1 MiB 0.52 540 6894 2749 3889 256 62.8 MiB 0.07 0.00 3.0756 -105.849 -3.0756 3.0756 0.73 0.000639334 0.000593024 0.0331834 0.0309174 48 2011 30 6.95648e+06 144757 865456. 2994.66 3.17 0.171232 0.148789 28354 207349 -1 1455 25 1313 2040 177929 43319 3.68057 3.68057 -117.671 -3.68057 0 0 1.05005e+06 3633.38 0.40 0.08 0.22 -1 -1 0.40 0.027959 0.0246401 59 34 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.52 vpr 62.53 MiB -1 -1 0.20 18124 1 0.03 -1 -1 30280 -1 -1 18 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64032 25 32 216 194 1 121 75 17 17 289 -1 unnamed_device 24.0 MiB 0.48 427 8607 3186 4041 1380 62.5 MiB 0.05 0.00 3.25923 -75.6499 -3.25923 3.25923 0.87 0.000354377 0.00032464 0.0211301 0.0193827 36 1749 41 6.95648e+06 260562 648988. 2245.63 1.82 0.112643 0.0971292 26050 158493 -1 1129 17 836 1273 96980 23100 3.09412 3.09412 -83.7847 -3.09412 0 0 828058. 2865.25 0.33 0.05 0.15 -1 -1 0.33 0.0152693 0.0135162 53 29 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 8.34 vpr 63.18 MiB -1 -1 0.22 18196 1 0.03 -1 -1 30308 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 376 307 1 178 76 17 17 289 -1 unnamed_device 24.6 MiB 1.93 691 12876 3790 6759 2327 63.2 MiB 0.10 0.00 3.85562 -123.567 -3.85562 3.85562 0.89 0.00054567 0.000503119 0.0471059 0.0433716 54 1964 27 6.95648e+06 173708 949917. 3286.91 2.82 0.192683 0.170242 29506 232905 -1 1461 19 1452 2424 160831 40373 4.26202 4.26202 -126.443 -4.26202 0 0 1.17392e+06 4061.99 0.43 0.07 0.25 -1 -1 0.43 0.0269222 0.0239399 73 72 -1 -1 -1 -1 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 7.69 vpr 63.66 MiB -1 -1 0.20 18680 1 0.03 -1 -1 30372 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 409 331 1 183 80 17 17 289 -1 unnamed_device 25.1 MiB 1.07 719 10056 4152 5465 439 63.7 MiB 0.10 0.00 4.20868 -140.697 -4.20868 4.20868 0.74 0.000802792 0.000744787 0.0491357 0.045576 38 2816 48 6.95648e+06 246087 678818. 2348.85 3.51 0.20536 0.178886 26626 170182 -1 1936 20 1698 2238 181693 41509 3.74872 3.74872 -141.229 -3.74872 0 0 902133. 3121.57 0.32 0.08 0.17 -1 -1 0.32 0.0281481 0.02495 80 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 9.42 vpr 63.22 MiB -1 -1 0.21 18304 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 354 285 1 206 79 17 17 289 -1 unnamed_device 24.5 MiB 2.00 925 13599 5712 7221 666 63.2 MiB 0.12 0.00 5.03973 -148.547 -5.03973 5.03973 0.96 0.000590621 0.000543613 0.0502798 0.0463357 40 3040 27 6.99608e+06 220735 706193. 2443.58 3.83 0.202195 0.177449 26914 176310 -1 2238 18 1659 2328 176989 43126 4.85651 4.85651 -163.457 -4.85651 0 0 926341. 3205.33 0.34 0.07 0.17 -1 -1 0.34 0.0231809 0.0206033 88 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 22.45 vpr 63.23 MiB -1 -1 0.22 18248 1 0.03 -1 -1 30296 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64744 30 32 363 293 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 2.69 947 9036 3528 4833 675 63.2 MiB 0.09 0.00 5.09794 -153.24 -5.09794 5.09794 0.93 0.000575709 0.000529334 0.0367533 0.0338114 40 3606 37 6.99608e+06 250167 706193. 2443.58 16.13 0.342792 0.29921 26914 176310 -1 2493 23 2379 3554 287348 64337 5.30009 5.30009 -171.636 -5.30009 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0289425 0.0255937 99 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 8.61 vpr 62.77 MiB -1 -1 0.18 18148 1 0.03 -1 -1 30292 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 299 247 1 183 78 17 17 289 -1 unnamed_device 24.3 MiB 0.90 838 11366 4465 5588 1313 62.8 MiB 0.10 0.00 3.53589 -111.786 -3.53589 3.53589 0.94 0.000496506 0.000455143 0.0370208 0.0340547 42 2127 25 6.99608e+06 206020 744469. 2576.02 4.32 0.209309 0.182089 27202 183097 -1 1841 20 1282 1726 138145 31043 3.33691 3.33691 -113.571 -3.33691 0 0 949917. 3286.91 0.35 0.06 0.18 -1 -1 0.35 0.0229946 0.0203714 76 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.49 vpr 62.96 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30276 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 29 32 308 248 1 179 77 17 17 289 -1 unnamed_device 24.5 MiB 1.50 688 10998 4578 5788 632 63.0 MiB 0.10 0.00 4.05128 -115.844 -4.05128 4.05128 0.70 0.000643472 0.000597411 0.0465125 0.0432003 44 2374 44 6.99608e+06 235451 787024. 2723.27 1.94 0.17473 0.152624 27778 195446 -1 1620 20 1389 2191 150698 37568 3.84382 3.84382 -118.25 -3.84382 0 0 997811. 3452.63 0.36 0.07 0.17 -1 -1 0.36 0.0241744 0.0214409 78 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 11.10 vpr 62.97 MiB -1 -1 0.18 18300 1 0.03 -1 -1 30344 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 336 268 1 194 78 17 17 289 -1 unnamed_device 24.4 MiB 2.82 845 10536 4153 4899 1484 63.0 MiB 0.10 0.00 4.59275 -141.742 -4.59275 4.59275 0.98 0.000562964 0.000508635 0.0379088 0.0349393 44 3030 45 6.99608e+06 206020 787024. 2723.27 4.66 0.278549 0.241135 27778 195446 -1 2078 19 1555 2590 191502 41803 4.29951 4.29951 -145.509 -4.29951 0 0 997811. 3452.63 0.36 0.07 0.19 -1 -1 0.36 0.0237095 0.0211035 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 9.78 vpr 63.09 MiB -1 -1 0.19 18412 1 0.03 -1 -1 30352 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 366 295 1 221 81 17 17 289 -1 unnamed_device 24.4 MiB 3.52 972 12681 4858 6385 1438 63.1 MiB 0.13 0.00 3.38924 -122.219 -3.38924 3.38924 0.70 0.000733829 0.000679883 0.0593258 0.05514 46 3284 43 6.99608e+06 250167 828058. 2865.25 3.00 0.235718 0.208156 28066 200906 -1 2395 27 1888 3000 217208 50091 3.57241 3.57241 -132.058 -3.57241 0 0 1.01997e+06 3529.29 0.39 0.10 0.20 -1 -1 0.39 0.0331039 0.0291639 97 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 10.01 vpr 62.77 MiB -1 -1 0.25 18036 1 0.03 -1 -1 30596 -1 -1 15 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 27 32 259 221 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 1.93 491 10924 4290 5184 1450 62.8 MiB 0.07 0.00 3.89582 -109.26 -3.89582 3.89582 0.92 0.000423321 0.000388513 0.0323159 0.0297505 46 1453 20 6.99608e+06 220735 828058. 2865.25 4.51 0.17408 0.149793 28066 200906 -1 1186 31 1412 2203 170545 39037 3.29456 3.29456 -105.138 -3.29456 0 0 1.01997e+06 3529.29 0.38 0.08 0.19 -1 -1 0.38 0.0278109 0.0243274 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 5.83 vpr 62.59 MiB -1 -1 0.19 17816 1 0.03 -1 -1 30140 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 271 219 1 157 88 17 17 289 -1 unnamed_device 24.0 MiB 0.41 646 12568 4471 6001 2096 62.6 MiB 0.08 0.00 2.86205 -89.6785 -2.86205 2.86205 0.92 0.0004533 0.000414473 0.0318782 0.0292489 42 2024 25 6.99608e+06 367892 744469. 2576.02 2.04 0.13332 0.115792 27202 183097 -1 1512 20 1126 1888 130250 34667 2.75817 2.75817 -94.8144 -2.75817 0 0 949917. 3286.91 0.34 0.06 0.16 -1 -1 0.34 0.0204271 0.0181187 69 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 6.95 vpr 62.98 MiB -1 -1 0.23 18224 1 0.03 -1 -1 30140 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 317 271 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.10 996 6597 1763 3930 904 63.0 MiB 0.06 0.00 3.43418 -125.292 -3.43418 3.43418 0.93 0.00049842 0.00045909 0.0221551 0.020376 36 2867 42 6.99608e+06 206020 648988. 2245.63 2.35 0.137684 0.120096 26050 158493 -1 2211 21 1582 2170 190675 38580 3.20851 3.20851 -127.864 -3.20851 0 0 828058. 2865.25 0.33 0.08 0.16 -1 -1 0.33 0.0249084 0.0220873 87 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 10.85 vpr 62.86 MiB -1 -1 0.18 18408 1 0.03 -1 -1 30168 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 298 248 1 181 77 17 17 289 -1 unnamed_device 24.4 MiB 1.07 768 12465 4799 6628 1038 62.9 MiB 0.09 0.00 4.05822 -139.086 -4.05822 4.05822 0.93 0.000467256 0.000430333 0.038586 0.0354945 36 2452 46 6.99608e+06 191304 648988. 2245.63 6.40 0.237411 0.204725 26050 158493 -1 1938 21 1476 1884 165025 38355 3.47486 3.47486 -137.841 -3.47486 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.0232234 0.0206419 75 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 6.50 vpr 62.86 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30376 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 30 32 303 262 1 188 76 17 17 289 -1 unnamed_device 24.4 MiB 0.86 688 11596 4869 6191 536 62.9 MiB 0.09 0.00 3.88079 -123.458 -3.88079 3.88079 0.92 0.000487964 0.000448941 0.038118 0.0351342 42 2442 27 6.99608e+06 206020 744469. 2576.02 2.22 0.159706 0.139648 27202 183097 -1 1805 21 1464 1953 156906 37855 3.7634 3.7634 -131.529 -3.7634 0 0 949917. 3286.91 0.35 0.07 0.16 -1 -1 0.35 0.023193 0.0206293 83 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 5.76 vpr 62.91 MiB -1 -1 0.18 18268 1 0.03 -1 -1 30088 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 276 237 1 165 75 17 17 289 -1 unnamed_device 24.3 MiB 0.79 863 6237 1573 4339 325 62.9 MiB 0.07 0.00 3.25498 -118.92 -3.25498 3.25498 0.72 0.000624021 0.000581218 0.0270199 0.0252071 36 2592 31 6.99608e+06 161872 648988. 2245.63 1.86 0.131182 0.113901 26050 158493 -1 2112 20 1305 1690 156777 32271 3.06997 3.06997 -119.425 -3.06997 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.021244 0.0187071 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 7.48 vpr 62.94 MiB -1 -1 0.19 18404 1 0.03 -1 -1 30300 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 344 272 1 201 79 17 17 289 -1 unnamed_device 24.4 MiB 0.86 873 12585 5265 7003 317 62.9 MiB 0.11 0.00 3.95082 -135.525 -3.95082 3.95082 0.91 0.000580293 0.000535877 0.0449008 0.0414109 40 3058 28 6.99608e+06 220735 706193. 2443.58 3.11 0.176383 0.154252 26914 176310 -1 2279 22 1917 2815 235905 50915 3.58016 3.58016 -133.141 -3.58016 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0272039 0.0240363 87 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.94 vpr 63.16 MiB -1 -1 0.25 18404 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 363 295 1 228 81 17 17 289 -1 unnamed_device 24.5 MiB 1.50 919 12856 3600 6557 2699 63.2 MiB 0.12 0.00 4.71129 -139.414 -4.71129 4.71129 0.88 0.000722465 0.000669319 0.0555927 0.0514965 54 2383 46 6.99608e+06 250167 949917. 3286.91 3.00 0.209892 0.183385 29506 232905 -1 1802 23 2043 2734 201520 47258 4.19521 4.19521 -138.846 -4.19521 0 0 1.17392e+06 4061.99 0.31 0.10 0.22 -1 -1 0.31 0.0343914 0.0301068 97 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 8.30 vpr 62.42 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30376 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63920 29 32 248 215 1 155 74 17 17 289 -1 unnamed_device 23.9 MiB 3.28 532 10304 4052 4897 1355 62.4 MiB 0.08 0.00 3.0564 -87.6148 -3.0564 3.0564 0.70 0.000536061 0.000497887 0.0378115 0.0351784 44 1732 49 6.99608e+06 191304 787024. 2723.27 2.08 0.176965 0.15339 27778 195446 -1 1242 20 924 1304 98833 25097 2.74302 2.74302 -92.1285 -2.74302 0 0 997811. 3452.63 0.37 0.05 0.18 -1 -1 0.37 0.01928 0.0170831 64 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 8.63 vpr 63.10 MiB -1 -1 0.19 18388 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 370 297 1 222 80 17 17 289 -1 unnamed_device 24.5 MiB 1.55 1140 12464 4431 6558 1475 63.1 MiB 0.11 0.00 3.76129 -130.411 -3.76129 3.76129 0.92 0.00058285 0.000535607 0.0453747 0.0417537 40 3117 34 6.99608e+06 235451 706193. 2443.58 3.54 0.183211 0.159918 26914 176310 -1 2618 21 1917 2958 272910 57111 3.97131 3.97131 -144.29 -3.97131 0 0 926341. 3205.33 0.36 0.10 0.18 -1 -1 0.36 0.0298774 0.0265928 96 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 6.84 vpr 62.98 MiB -1 -1 0.20 18308 1 0.03 -1 -1 30120 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 338 269 1 198 79 17 17 289 -1 unnamed_device 24.5 MiB 0.86 906 13768 5796 7604 368 63.0 MiB 0.12 0.00 4.30315 -137.123 -4.30315 4.30315 0.98 0.000567952 0.000521869 0.0495666 0.0457973 40 2625 23 6.99608e+06 220735 706193. 2443.58 2.34 0.172554 0.151931 26914 176310 -1 2039 34 2075 2823 393777 152201 3.37756 3.37756 -125.366 -3.37756 0 0 926341. 3205.33 0.25 0.16 0.15 -1 -1 0.25 0.0432272 0.0375252 84 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 6.79 vpr 62.86 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30280 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 323 276 1 210 79 17 17 289 -1 unnamed_device 24.3 MiB 0.94 905 11064 3491 5867 1706 62.9 MiB 0.09 0.00 3.21889 -121.149 -3.21889 3.21889 0.95 0.000511183 0.000469399 0.0361199 0.0332201 42 2801 33 6.99608e+06 220735 744469. 2576.02 2.41 0.152399 0.132219 27202 183097 -1 2098 22 1808 2285 198495 44510 3.24402 3.24402 -129.971 -3.24402 0 0 949917. 3286.91 0.27 0.09 0.15 -1 -1 0.27 0.0289838 0.0252938 89 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 7.31 vpr 62.43 MiB -1 -1 0.18 17948 1 0.03 -1 -1 30064 -1 -1 10 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 222 206 1 131 72 17 17 289 -1 unnamed_device 23.8 MiB 2.15 630 8565 3545 4800 220 62.4 MiB 0.06 0.00 2.33546 -90.9219 -2.33546 2.33546 0.95 0.000402264 0.000369737 0.0240591 0.0221006 34 1753 44 6.99608e+06 147157 618332. 2139.56 1.78 0.133448 0.114836 25762 151098 -1 1433 16 685 760 85764 17737 2.12043 2.12043 -92.3513 -2.12043 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0151723 0.0134662 52 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 7.68 vpr 62.70 MiB -1 -1 0.16 18256 1 0.03 -1 -1 30388 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 31 32 291 243 1 171 76 17 17 289 -1 unnamed_device 24.0 MiB 2.14 783 8236 2031 5935 270 62.7 MiB 0.07 0.00 3.70832 -125.553 -3.70832 3.70832 0.98 0.000500871 0.000461165 0.0283204 0.026157 38 2456 31 6.99608e+06 191304 678818. 2348.85 2.05 0.123409 0.107866 26626 170182 -1 1955 21 1427 2034 179837 37743 3.82371 3.82371 -138.341 -3.82371 0 0 902133. 3121.57 0.35 0.08 0.17 -1 -1 0.35 0.0250333 0.0222745 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 7.59 vpr 62.93 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30552 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 342 271 1 201 84 17 17 289 -1 unnamed_device 24.4 MiB 1.51 786 12162 4998 6683 481 62.9 MiB 0.11 0.00 3.98084 -132.342 -3.98084 3.98084 0.71 0.000723841 0.000671596 0.0501252 0.0463342 42 2936 30 6.99608e+06 294314 744469. 2576.02 2.96 0.159791 0.140335 27202 183097 -1 2054 21 1791 2729 302028 80707 3.8102 3.8102 -140.886 -3.8102 0 0 949917. 3286.91 0.37 0.11 0.17 -1 -1 0.37 0.0287446 0.025561 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 10.23 vpr 63.18 MiB -1 -1 0.22 18544 1 0.04 -1 -1 30240 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 372 300 1 225 80 17 17 289 -1 unnamed_device 24.7 MiB 2.53 1267 15044 5761 7520 1763 63.2 MiB 0.13 0.00 4.6547 -145.44 -4.6547 4.6547 0.93 0.00058513 0.000538917 0.0538958 0.0496585 38 3515 25 6.99608e+06 235451 678818. 2348.85 4.18 0.204093 0.180791 26626 170182 -1 2938 22 2141 3120 303377 56654 4.18241 4.18241 -146.004 -4.18241 0 0 902133. 3121.57 0.32 0.10 0.17 -1 -1 0.32 0.0286798 0.0254077 100 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 7.50 vpr 62.25 MiB -1 -1 0.19 17988 1 0.03 -1 -1 30572 -1 -1 13 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63740 26 32 190 182 1 123 71 17 17 289 -1 unnamed_device 23.7 MiB 2.30 410 7809 3349 3986 474 62.2 MiB 0.05 0.00 2.7218 -77.6213 -2.7218 2.7218 0.94 0.000313741 0.000286298 0.0186334 0.0170723 36 1479 41 6.99608e+06 191304 648988. 2245.63 1.83 0.0954788 0.0828742 26050 158493 -1 988 20 701 779 68335 16278 2.35027 2.35027 -78.0815 -2.35027 0 0 828058. 2865.25 0.33 0.04 0.16 -1 -1 0.33 0.0157451 0.0138739 53 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 8.40 vpr 62.62 MiB -1 -1 0.19 17996 1 0.03 -1 -1 30256 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 285 227 1 162 79 17 17 289 -1 unnamed_device 24.0 MiB 1.03 705 12078 4998 6546 534 62.6 MiB 0.10 0.00 4.4821 -114.423 -4.4821 4.4821 0.92 0.000501994 0.000462102 0.0378054 0.0347955 40 2308 23 6.99608e+06 220735 706193. 2443.58 4.06 0.246048 0.213005 26914 176310 -1 1906 22 1300 2261 180088 40300 3.70166 3.70166 -122.406 -3.70166 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0235145 0.02072 66 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 5.00 vpr 62.13 MiB -1 -1 0.17 17976 1 0.03 -1 -1 30116 -1 -1 8 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63624 32 32 173 169 1 112 72 17 17 289 -1 unnamed_device 23.6 MiB 0.24 437 9906 4138 5588 180 62.1 MiB 0.08 0.00 2.06911 -68.7948 -2.06911 2.06911 0.93 0.000497133 0.000461024 0.0347569 0.0322358 34 1204 36 6.99608e+06 117725 618332. 2139.56 1.45 0.103023 0.0902684 25762 151098 -1 989 23 682 823 73580 16966 2.02348 2.02348 -75.0494 -2.02348 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0170479 0.0149284 42 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 7.78 vpr 62.77 MiB -1 -1 0.18 18248 1 0.03 -1 -1 29992 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 300 245 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.44 788 11366 4166 5016 2184 62.8 MiB 0.10 0.00 4.53824 -123.102 -4.53824 4.53824 0.72 0.000675099 0.000607357 0.0467087 0.0433818 38 2755 47 6.99608e+06 206020 678818. 2348.85 3.17 0.209121 0.182432 26626 170182 -1 1962 23 1397 2020 146825 32893 4.06311 4.06311 -129.454 -4.06311 0 0 902133. 3121.57 0.30 0.07 0.15 -1 -1 0.30 0.0251316 0.0223147 73 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 6.12 vpr 62.79 MiB -1 -1 0.17 18096 1 0.03 -1 -1 30460 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 297 233 1 170 85 17 17 289 -1 unnamed_device 24.3 MiB 0.56 753 10873 3616 5657 1600 62.8 MiB 0.08 0.00 2.84195 -96.8447 -2.84195 2.84195 0.92 0.000507979 0.000467105 0.0317979 0.0292885 38 2253 23 6.99608e+06 309029 678818. 2348.85 2.15 0.139297 0.12132 26626 170182 -1 1703 20 1321 2157 135646 31751 3.33972 3.33972 -107.715 -3.33972 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0246562 0.0217322 74 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 10.75 vpr 62.95 MiB -1 -1 0.26 18400 1 0.03 -1 -1 30344 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 338 277 1 205 79 17 17 289 -1 unnamed_device 24.4 MiB 1.57 847 10726 4408 5888 430 63.0 MiB 0.09 0.00 4.20957 -126.724 -4.20957 4.20957 0.96 0.000576298 0.000532341 0.0386453 0.0355905 54 2565 26 6.99608e+06 220735 949917. 3286.91 5.58 0.237918 0.206131 29506 232905 -1 1896 20 1511 2264 154751 35887 3.72751 3.72751 -124.004 -3.72751 0 0 1.17392e+06 4061.99 0.30 0.08 0.19 -1 -1 0.30 0.028003 0.0245576 87 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 8.58 vpr 62.80 MiB -1 -1 0.18 18436 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 284 241 1 168 76 17 17 289 -1 unnamed_device 24.2 MiB 2.56 674 9356 2869 4552 1935 62.8 MiB 0.08 0.00 3.13575 -106.549 -3.13575 3.13575 0.96 0.000486183 0.000446529 0.0314155 0.0289579 38 2552 39 6.99608e+06 176588 678818. 2348.85 2.64 0.165489 0.143939 26626 170182 -1 1759 22 1375 1949 189887 40879 3.32052 3.32052 -126.851 -3.32052 0 0 902133. 3121.57 0.33 0.07 0.16 -1 -1 0.33 0.0236325 0.0209455 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 7.21 vpr 62.51 MiB -1 -1 0.18 18384 1 0.03 -1 -1 30152 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 262 227 1 160 76 17 17 289 -1 unnamed_device 24.0 MiB 1.71 589 9996 4091 5441 464 62.5 MiB 0.09 0.00 3.70857 -108.813 -3.70857 3.70857 0.71 0.00066952 0.000622527 0.0424278 0.0394838 46 2074 49 6.99608e+06 206020 828058. 2865.25 2.24 0.186573 0.16208 28066 200906 -1 1506 20 1116 1694 127421 30809 3.35721 3.35721 -115.344 -3.35721 0 0 1.01997e+06 3529.29 0.39 0.06 0.20 -1 -1 0.39 0.0205053 0.0181022 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.58 vpr 62.98 MiB -1 -1 0.19 18252 1 0.03 -1 -1 30120 -1 -1 18 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64496 28 32 260 223 1 152 78 17 17 289 -1 unnamed_device 24.4 MiB 0.88 621 9208 3749 4985 474 63.0 MiB 0.07 0.00 3.24014 -101.609 -3.24014 3.24014 0.96 0.000473308 0.000437059 0.0274726 0.025392 36 2223 28 6.99608e+06 264882 648988. 2245.63 2.26 0.116176 0.10194 26050 158493 -1 1645 21 1184 1837 157330 34557 3.12512 3.12512 -108.722 -3.12512 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.0209968 0.0185394 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 6.20 vpr 62.77 MiB -1 -1 0.17 17744 1 0.03 -1 -1 30252 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 253 210 1 149 74 17 17 289 -1 unnamed_device 24.3 MiB 0.45 516 11079 4202 5369 1508 62.8 MiB 0.08 0.00 3.37459 -107.294 -3.37459 3.37459 0.93 0.000438321 0.000401973 0.0332877 0.0306032 42 1632 37 6.99608e+06 147157 744469. 2576.02 2.31 0.144019 0.125577 27202 183097 -1 1306 21 1155 1704 115573 29969 2.94767 2.94767 -107.768 -2.94767 0 0 949917. 3286.91 0.36 0.06 0.19 -1 -1 0.36 0.0214978 0.0189732 58 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.66 vpr 62.73 MiB -1 -1 0.17 18156 1 0.03 -1 -1 30168 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 31 32 271 231 1 165 76 17 17 289 -1 unnamed_device 24.1 MiB 1.05 676 8396 3459 4685 252 62.7 MiB 0.06 0.00 3.25548 -105.576 -3.25548 3.25548 0.92 0.000441005 0.000404988 0.0260095 0.0239156 44 2002 24 6.99608e+06 191304 787024. 2723.27 2.17 0.122147 0.105786 27778 195446 -1 1606 24 1193 1643 128255 28919 3.11892 3.11892 -106.589 -3.11892 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0241906 0.0213246 69 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.58 vpr 62.81 MiB -1 -1 0.22 18256 1 0.03 -1 -1 30544 -1 -1 15 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 29 32 291 250 1 180 76 17 17 289 -1 unnamed_device 24.3 MiB 2.92 889 11756 3248 7405 1103 62.8 MiB 0.10 0.00 2.90695 -105.014 -2.90695 2.90695 0.93 0.000456257 0.000418888 0.0369451 0.0340099 36 2352 29 6.99608e+06 220735 648988. 2245.63 2.20 0.14151 0.123109 26050 158493 -1 1975 16 1143 1508 123854 26051 2.67552 2.67552 -107.113 -2.67552 0 0 828058. 2865.25 0.31 0.06 0.16 -1 -1 0.31 0.0194333 0.0173213 77 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 10.27 vpr 63.12 MiB -1 -1 0.19 18216 1 0.03 -1 -1 30592 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 367 282 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 1.30 941 11432 4088 5131 2213 63.1 MiB 0.10 0.00 4.40712 -124.994 -4.40712 4.40712 0.97 0.000552657 0.000506953 0.0410475 0.037824 48 2810 25 6.99608e+06 235451 865456. 2994.66 5.35 0.223044 0.193255 28354 207349 -1 2068 20 1416 2337 160170 38040 4.01147 4.01147 -124.452 -4.01147 0 0 1.05005e+06 3633.38 0.40 0.07 0.20 -1 -1 0.40 0.026926 0.0239635 92 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 9.85 vpr 63.38 MiB -1 -1 0.17 18316 1 0.03 -1 -1 30472 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 391 311 1 244 83 17 17 289 -1 unnamed_device 24.9 MiB 1.39 1017 13403 4723 5972 2708 63.4 MiB 0.13 0.00 4.21676 -145.665 -4.21676 4.21676 0.80 0.000607632 0.000558937 0.0483966 0.0445152 46 3380 32 6.99608e+06 279598 828058. 2865.25 5.08 0.251936 0.219674 28066 200906 -1 2401 20 2337 3224 248743 53513 4.0676 4.0676 -147.131 -4.0676 0 0 1.01997e+06 3529.29 0.36 0.10 0.18 -1 -1 0.36 0.0301733 0.0269955 106 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 11.25 vpr 62.76 MiB -1 -1 0.18 18192 1 0.03 -1 -1 30268 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 31 32 279 237 1 157 74 17 17 289 -1 unnamed_device 24.1 MiB 1.54 893 5654 1315 4090 249 62.8 MiB 0.06 0.00 3.62727 -120.532 -3.62727 3.62727 0.93 0.000452177 0.000415585 0.0185244 0.0170962 34 2437 31 6.99608e+06 161872 618332. 2139.56 6.25 0.196972 0.16926 25762 151098 -1 2023 31 1679 2384 407763 172916 3.43981 3.43981 -126.386 -3.43981 0 0 787024. 2723.27 0.31 0.16 0.14 -1 -1 0.31 0.0337468 0.0299132 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 7.76 vpr 63.27 MiB -1 -1 0.22 18276 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 370 297 1 226 80 17 17 289 -1 unnamed_device 24.4 MiB 1.84 982 11604 4819 6273 512 63.3 MiB 0.11 0.00 3.54169 -123.265 -3.54169 3.54169 0.94 0.000538706 0.000492234 0.0422829 0.0388753 44 2806 28 6.99608e+06 250167 787024. 2723.27 2.38 0.164183 0.142721 27778 195446 -1 2145 20 1774 2516 186683 43261 3.59341 3.59341 -130.658 -3.59341 0 0 997811. 3452.63 0.34 0.08 0.16 -1 -1 0.34 0.026197 0.0233675 99 61 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 8.29 vpr 63.36 MiB -1 -1 0.20 18548 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64880 31 32 377 302 1 235 80 17 17 289 -1 unnamed_device 24.7 MiB 1.98 1028 12636 4943 6140 1553 63.4 MiB 0.12 0.00 5.24621 -164.101 -5.24621 5.24621 0.96 0.000610596 0.000561924 0.0473635 0.043609 46 3514 41 6.99608e+06 250167 828058. 2865.25 2.65 0.177988 0.155408 28066 200906 -1 2325 23 2219 3175 250299 57108 5.379 5.379 -178.34 -5.379 0 0 1.01997e+06 3529.29 0.28 0.10 0.18 -1 -1 0.28 0.0283967 0.024969 104 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 10.46 vpr 63.24 MiB -1 -1 0.21 18652 1 0.03 -1 -1 30420 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 383 305 1 233 81 17 17 289 -1 unnamed_device 24.8 MiB 3.77 968 11981 4240 5467 2274 63.2 MiB 0.11 0.00 5.19038 -164.138 -5.19038 5.19038 0.91 0.000583613 0.000535929 0.0431337 0.0397262 40 3265 28 6.99608e+06 264882 706193. 2443.58 3.13 0.175064 0.153007 26914 176310 -1 2671 21 2146 3090 310865 64075 5.32294 5.32294 -182.066 -5.32294 0 0 926341. 3205.33 0.34 0.10 0.18 -1 -1 0.34 0.028691 0.0254777 103 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 8.92 vpr 63.14 MiB -1 -1 0.21 18248 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64652 31 32 352 285 1 215 79 17 17 289 -1 unnamed_device 24.5 MiB 2.26 862 12585 5256 6762 567 63.1 MiB 0.11 0.00 3.89582 -125.985 -3.89582 3.89582 0.97 0.000577885 0.000532205 0.0463829 0.0427584 48 2811 27 6.99608e+06 235451 865456. 2994.66 2.93 0.184167 0.161798 28354 207349 -1 2136 21 1590 2142 185686 40825 3.67046 3.67046 -128.762 -3.67046 0 0 1.05005e+06 3633.38 0.41 0.09 0.20 -1 -1 0.41 0.0304832 0.0272293 93 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.62 vpr 62.81 MiB -1 -1 0.19 18244 1 0.03 -1 -1 30448 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 291 242 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.07 803 9872 4112 5444 316 62.8 MiB 0.08 0.00 3.99218 -113.879 -3.99218 3.99218 0.91 0.000506097 0.000467327 0.0323778 0.0298411 40 2658 35 6.99608e+06 206020 706193. 2443.58 3.09 0.150368 0.130753 26914 176310 -1 2038 21 1482 2042 162906 36197 3.75482 3.75482 -120.996 -3.75482 0 0 926341. 3205.33 0.36 0.07 0.18 -1 -1 0.36 0.0236098 0.020827 72 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 9.51 vpr 63.36 MiB -1 -1 0.22 18564 1 0.04 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 457 356 1 282 85 17 17 289 -1 unnamed_device 25.2 MiB 1.68 1405 9943 2847 6446 650 63.4 MiB 0.11 0.00 4.92896 -168.996 -4.92896 4.92896 0.98 0.000668806 0.000615667 0.0400298 0.0369146 40 3872 39 6.99608e+06 309029 706193. 2443.58 4.10 0.241848 0.213746 26914 176310 -1 3178 24 2656 3854 289736 59051 4.68534 4.68534 -173.111 -4.68534 0 0 926341. 3205.33 0.36 0.12 0.17 -1 -1 0.36 0.0374155 0.0331655 129 87 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 9.98 vpr 62.59 MiB -1 -1 0.19 17980 1 0.03 -1 -1 30148 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 31 32 261 225 1 158 74 17 17 289 -1 unnamed_device 24.1 MiB 3.56 544 11234 4006 5215 2013 62.6 MiB 0.08 0.00 2.9921 -96.7202 -2.9921 2.9921 0.91 0.000449609 0.000413255 0.0347371 0.0320353 40 1883 30 6.99608e+06 161872 706193. 2443.58 3.03 0.138056 0.119918 26914 176310 -1 1468 22 1348 1763 135618 34746 3.04792 3.04792 -105.71 -3.04792 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.021178 0.0186319 65 28 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 9.64 vpr 63.06 MiB -1 -1 0.22 18308 1 0.03 -1 -1 30168 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 337 267 1 200 78 17 17 289 -1 unnamed_device 24.5 MiB 0.76 912 12694 5540 6748 406 63.1 MiB 0.10 0.00 4.60267 -146.673 -4.60267 4.60267 0.92 0.000558663 0.000515881 0.0449169 0.0414098 50 2487 21 6.99608e+06 220735 902133. 3121.57 5.29 0.209147 0.18174 28642 213929 -1 1986 19 1570 2267 182293 38974 4.00941 4.00941 -138.549 -4.00941 0 0 1.08113e+06 3740.92 0.41 0.07 0.21 -1 -1 0.41 0.0238904 0.0212611 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 10.09 vpr 63.00 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30484 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 349 284 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 1.18 945 13430 5689 7174 567 63.0 MiB 0.11 0.00 3.75245 -124.97 -3.75245 3.75245 0.81 0.000568346 0.000512666 0.0485074 0.0445742 50 2594 35 6.99608e+06 220735 902133. 3121.57 5.67 0.252043 0.217893 28642 213929 -1 1971 20 1413 2162 158406 36707 3.40672 3.40672 -122.331 -3.40672 0 0 1.08113e+06 3740.92 0.41 0.07 0.20 -1 -1 0.41 0.0274234 0.0245225 91 53 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.00 vpr 62.89 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 291 230 1 166 80 17 17 289 -1 unnamed_device 24.2 MiB 0.98 690 11776 4321 5710 1745 62.9 MiB 0.10 0.00 4.31309 -119.63 -4.31309 4.31309 0.74 0.000624081 0.000579618 0.0453474 0.0421532 42 2179 38 6.99608e+06 235451 744469. 2576.02 1.79 0.163309 0.14311 27202 183097 -1 1717 21 1096 1961 163636 36389 3.68357 3.68357 -117.809 -3.68357 0 0 949917. 3286.91 0.28 0.08 0.15 -1 -1 0.28 0.0267637 0.0233544 68 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 7.21 vpr 63.18 MiB -1 -1 0.21 18188 1 0.03 -1 -1 30320 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 353 287 1 204 79 17 17 289 -1 unnamed_device 24.6 MiB 1.46 860 12585 4651 6361 1573 63.2 MiB 0.11 0.00 4.42805 -134.738 -4.42805 4.42805 0.93 0.000565272 0.000520241 0.0455645 0.0419847 42 2557 29 6.99608e+06 220735 744469. 2576.02 2.21 0.168572 0.147201 27202 183097 -1 2012 21 1392 1826 141463 31387 3.73446 3.73446 -133.77 -3.73446 0 0 949917. 3286.91 0.37 0.07 0.18 -1 -1 0.37 0.027559 0.0245091 90 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 9.87 vpr 63.27 MiB -1 -1 0.21 18260 1 0.03 -1 -1 30356 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 361 291 1 216 79 17 17 289 -1 unnamed_device 24.4 MiB 1.93 955 12923 4690 6560 1673 63.3 MiB 0.12 0.00 3.70839 -125.63 -3.70839 3.70839 0.92 0.000547132 0.000502801 0.0440904 0.0405321 40 3001 35 6.99608e+06 220735 706193. 2443.58 4.41 0.182774 0.159564 26914 176310 -1 2487 21 1774 2687 291044 76894 3.48536 3.48536 -133.184 -3.48536 0 0 926341. 3205.33 0.35 0.11 0.16 -1 -1 0.35 0.0289423 0.025764 92 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 19.54 vpr 63.08 MiB -1 -1 0.20 18196 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 382 305 1 237 80 17 17 289 -1 unnamed_device 24.6 MiB 2.74 978 13152 5506 7269 377 63.1 MiB 0.12 0.00 3.78378 -128.23 -3.78378 3.78378 0.71 0.000612564 0.000560126 0.0501886 0.0462128 42 3558 40 6.99608e+06 235451 744469. 2576.02 13.64 0.389477 0.336284 27202 183097 -1 2640 22 2047 2754 239578 52817 4.03961 4.03961 -138.003 -4.03961 0 0 949917. 3286.91 0.37 0.10 0.17 -1 -1 0.37 0.0305505 0.0271201 101 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.31 vpr 62.84 MiB -1 -1 0.18 18176 1 0.03 -1 -1 30212 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 306 248 1 178 78 17 17 289 -1 unnamed_device 24.3 MiB 1.15 740 10204 3637 4872 1695 62.8 MiB 0.09 0.00 4.49903 -121.926 -4.49903 4.49903 0.79 0.000516665 0.000475429 0.0354858 0.0326744 42 2619 30 6.99608e+06 206020 744469. 2576.02 1.99 0.1468 0.127914 27202 183097 -1 2034 20 1286 2016 157579 36031 4.15042 4.15042 -132.634 -4.15042 0 0 949917. 3286.91 0.34 0.07 0.18 -1 -1 0.34 0.0237185 0.0210492 74 24 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.89 vpr 62.93 MiB -1 -1 0.18 18308 1 0.03 -1 -1 30104 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 319 257 1 192 77 17 17 289 -1 unnamed_device 24.6 MiB 2.39 787 11161 3588 5346 2227 62.9 MiB 0.09 0.00 4.08638 -124.975 -4.08638 4.08638 0.92 0.000501287 0.000459998 0.038448 0.0354076 40 2643 24 6.99608e+06 191304 706193. 2443.58 2.98 0.151799 0.132424 26914 176310 -1 2120 21 1722 2356 200405 44042 4.00641 4.00641 -136.663 -4.00641 0 0 926341. 3205.33 0.37 0.08 0.18 -1 -1 0.37 0.0261143 0.0232149 81 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 9.22 vpr 63.03 MiB -1 -1 0.21 18552 1 0.03 -1 -1 30224 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 373 299 1 224 79 17 17 289 -1 unnamed_device 24.6 MiB 1.12 1019 12923 4941 6153 1829 63.0 MiB 0.13 0.00 4.37385 -138.003 -4.37385 4.37385 0.76 0.000767895 0.000712837 0.0612498 0.0569222 46 3121 26 6.99608e+06 235451 828058. 2865.25 4.77 0.285794 0.248553 28066 200906 -1 2305 20 1808 2815 208414 45710 3.96506 3.96506 -136.471 -3.96506 0 0 1.01997e+06 3529.29 0.40 0.08 0.20 -1 -1 0.40 0.0268728 0.0238668 99 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 10.10 vpr 63.18 MiB -1 -1 0.21 18192 1 0.03 -1 -1 30280 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 387 315 1 241 80 17 17 289 -1 unnamed_device 24.7 MiB 0.93 1065 12292 5199 6801 292 63.2 MiB 0.13 0.00 3.97712 -134.378 -3.97712 3.97712 0.82 0.000760238 0.000704947 0.0569657 0.0528092 48 3131 29 6.99608e+06 235451 865456. 2994.66 5.74 0.272679 0.237571 28354 207349 -1 2507 22 2068 3069 251067 52685 3.77681 3.77681 -133.601 -3.77681 0 0 1.05005e+06 3633.38 0.39 0.09 0.18 -1 -1 0.39 0.0282824 0.024977 104 77 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 6.97 vpr 62.57 MiB -1 -1 0.17 18008 1 0.03 -1 -1 30320 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64068 32 32 251 219 1 152 74 17 17 289 -1 unnamed_device 24.1 MiB 0.68 609 9994 4141 5511 342 62.6 MiB 0.07 0.00 3.25208 -98.689 -3.25208 3.25208 0.90 0.000426501 0.000390722 0.0296238 0.0271122 38 2153 40 6.99608e+06 147157 678818. 2348.85 2.93 0.144189 0.125934 26626 170182 -1 1536 18 1041 1406 115965 28168 2.91072 2.91072 -99.3222 -2.91072 0 0 902133. 3121.57 0.35 0.06 0.17 -1 -1 0.35 0.0192819 0.0171509 60 23 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 18.71 vpr 63.10 MiB -1 -1 0.21 18296 1 0.03 -1 -1 30056 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 341 285 1 214 79 17 17 289 -1 unnamed_device 24.4 MiB 1.01 837 8867 3217 4116 1534 63.1 MiB 0.11 0.00 4.06528 -147.024 -4.06528 4.06528 0.93 0.000696207 0.000646509 0.0454338 0.0420755 42 2997 36 6.99608e+06 220735 744469. 2576.02 14.15 0.348081 0.30022 27202 183097 -1 2142 22 2152 2892 254956 54150 4.19015 4.19015 -152.644 -4.19015 0 0 949917. 3286.91 0.36 0.09 0.18 -1 -1 0.36 0.0259788 0.0229672 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 9.26 vpr 63.19 MiB -1 -1 0.21 18736 1 0.05 -1 -1 30332 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 387 293 1 226 80 17 17 289 -1 unnamed_device 24.8 MiB 1.21 923 11776 4896 6295 585 63.2 MiB 0.11 0.00 4.78758 -149.256 -4.78758 4.78758 0.90 0.000599507 0.000551112 0.0444328 0.0409478 48 3362 35 6.99608e+06 235451 865456. 2994.66 4.46 0.196289 0.171934 28354 207349 -1 2308 22 2103 3212 257694 59964 4.90456 4.90456 -158.136 -4.90456 0 0 1.05005e+06 3633.38 0.39 0.10 0.21 -1 -1 0.39 0.030295 0.0269245 98 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 6.06 vpr 63.03 MiB -1 -1 0.18 18308 1 0.03 -1 -1 30368 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 340 270 1 203 79 17 17 289 -1 unnamed_device 24.5 MiB 0.75 852 12247 5127 6715 405 63.0 MiB 0.12 0.00 4.29215 -139.385 -4.29215 4.29215 0.85 0.000711645 0.000660818 0.0540837 0.0501323 42 2597 27 6.99608e+06 220735 744469. 2576.02 2.10 0.195158 0.171185 27202 183097 -1 2022 21 1529 2099 177041 38202 3.35751 3.35751 -132.219 -3.35751 0 0 949917. 3286.91 0.36 0.08 0.17 -1 -1 0.36 0.0258296 0.0228998 85 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 8.15 vpr 62.78 MiB -1 -1 0.20 18188 1 0.03 -1 -1 30348 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 278 235 1 166 82 17 17 289 -1 unnamed_device 24.1 MiB 1.47 651 12008 4967 6460 581 62.8 MiB 0.08 0.00 3.65345 -113.329 -3.65345 3.65345 0.92 0.000464483 0.000427392 0.0338247 0.0311313 46 1972 39 6.99608e+06 294314 828058. 2865.25 3.25 0.151492 0.131812 28066 200906 -1 1479 20 1170 1804 118310 28898 3.34801 3.34801 -114.703 -3.34801 0 0 1.01997e+06 3529.29 0.36 0.06 0.19 -1 -1 0.36 0.0207831 0.0184428 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 10.81 vpr 63.55 MiB -1 -1 0.23 18540 1 0.04 -1 -1 30416 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 431 332 1 261 82 17 17 289 -1 unnamed_device 25.0 MiB 2.12 1423 15212 5887 7111 2214 63.5 MiB 0.16 0.00 6.01298 -186.863 -6.01298 6.01298 0.69 0.00085739 0.000796893 0.0762636 0.0708614 40 4064 33 6.99608e+06 264882 706193. 2443.58 5.44 0.269312 0.236455 26914 176310 -1 3381 23 2671 4124 503579 155915 5.82819 5.82819 -194.462 -5.82819 0 0 926341. 3205.33 0.34 0.17 0.18 -1 -1 0.34 0.0349129 0.0309985 116 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 6.32 vpr 62.96 MiB -1 -1 0.22 18480 1 0.03 -1 -1 30488 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 336 268 1 199 78 17 17 289 -1 unnamed_device 24.4 MiB 0.78 905 9374 3182 4148 2044 63.0 MiB 0.10 0.00 4.80204 -144.828 -4.80204 4.80204 0.70 0.000705169 0.000655571 0.0438899 0.040798 38 2959 39 6.99608e+06 206020 678818. 2348.85 2.45 0.173247 0.151413 26626 170182 -1 2283 22 1808 2468 232036 46235 4.45325 4.45325 -150.798 -4.45325 0 0 902133. 3121.57 0.32 0.09 0.17 -1 -1 0.32 0.0266149 0.0235409 83 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.68 vpr 62.55 MiB -1 -1 0.18 17800 1 0.03 -1 -1 30384 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 231 199 1 136 77 17 17 289 -1 unnamed_device 23.9 MiB 0.26 535 10509 4368 5789 352 62.6 MiB 0.07 0.00 2.922 -91.5293 -2.922 2.922 0.86 0.000446086 0.000411908 0.0305073 0.0280932 42 1788 30 6.99608e+06 191304 744469. 2576.02 2.05 0.122343 0.106019 27202 183097 -1 1283 19 909 1383 111801 27236 3.03697 3.03697 -98.1436 -3.03697 0 0 949917. 3286.91 0.37 0.06 0.19 -1 -1 0.37 0.0189913 0.0168085 51 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.88 vpr 63.06 MiB -1 -1 0.19 18408 1 0.03 -1 -1 30144 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 349 273 1 207 80 17 17 289 -1 unnamed_device 24.5 MiB 1.26 947 15044 6497 7967 580 63.1 MiB 0.13 0.00 4.78912 -134.232 -4.78912 4.78912 0.85 0.000551613 0.000505347 0.0511245 0.0469075 44 3012 27 6.99608e+06 235451 787024. 2723.27 2.24 0.166394 0.1464 27778 195446 -1 2268 23 1670 2769 222583 48622 4.90176 4.90176 -140.733 -4.90176 0 0 997811. 3452.63 0.28 0.10 0.20 -1 -1 0.28 0.0327494 0.0286199 85 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 6.03 vpr 62.47 MiB -1 -1 0.18 17828 1 0.03 -1 -1 30084 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 32 32 247 207 1 142 78 17 17 289 -1 unnamed_device 24.0 MiB 1.12 510 10204 2772 5522 1910 62.5 MiB 0.09 0.00 2.966 -97.4119 -2.966 2.966 0.82 0.000572237 0.000532473 0.0376556 0.0350474 36 1958 39 6.99608e+06 206020 648988. 2245.63 1.63 0.146166 0.127251 26050 158493 -1 1440 19 1111 1617 116288 27262 3.19627 3.19627 -111.859 -3.19627 0 0 828058. 2865.25 0.30 0.06 0.15 -1 -1 0.30 0.0191366 0.0169184 57 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 7.04 vpr 62.73 MiB -1 -1 0.19 18264 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 278 235 1 170 75 17 17 289 -1 unnamed_device 24.1 MiB 0.74 687 11293 4742 6109 442 62.7 MiB 0.09 0.00 3.75078 -115.874 -3.75078 3.75078 0.93 0.00045789 0.000420475 0.0353845 0.0325759 38 2040 22 6.99608e+06 191304 678818. 2348.85 2.87 0.133893 0.116263 26626 170182 -1 1558 24 1279 1709 139697 30155 3.35642 3.35642 -115.674 -3.35642 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0240424 0.0210743 69 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 10.64 vpr 63.03 MiB -1 -1 0.22 18268 1 0.03 -1 -1 30228 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64544 29 32 355 287 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 2.11 994 7008 2797 3909 302 63.0 MiB 0.07 0.00 4.18292 -131.078 -4.18292 4.18292 0.96 0.000539386 0.000496341 0.0249126 0.022907 40 3441 43 6.99608e+06 264882 706193. 2443.58 4.89 0.198449 0.174418 26914 176310 -1 2812 25 2273 3321 396140 93179 3.97031 3.97031 -137.715 -3.97031 0 0 926341. 3205.33 0.36 0.14 0.18 -1 -1 0.36 0.0336256 0.0298062 97 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 7.80 vpr 63.13 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30284 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 358 289 1 217 79 17 17 289 -1 unnamed_device 24.5 MiB 1.70 931 7008 2217 3531 1260 63.1 MiB 0.07 0.00 4.25698 -140.399 -4.25698 4.25698 0.91 0.000551841 0.000506017 0.026366 0.0243567 40 2908 35 6.99608e+06 220735 706193. 2443.58 2.65 0.155191 0.134451 26914 176310 -1 2271 20 1876 2572 196396 43489 4.64031 4.64031 -157.282 -4.64031 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.025453 0.0225686 93 54 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 15.33 vpr 63.01 MiB -1 -1 0.21 18396 1 0.03 -1 -1 30248 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 353 285 1 213 79 17 17 289 -1 unnamed_device 24.4 MiB 2.67 1126 12585 4376 6061 2148 63.0 MiB 0.11 0.00 4.54997 -147.039 -4.54997 4.54997 0.94 0.000530615 0.000487913 0.0434242 0.0399605 36 3412 32 6.99608e+06 220735 648988. 2245.63 9.12 0.25873 0.223817 26050 158493 -1 2677 23 2054 2958 286675 55646 4.53411 4.53411 -157.261 -4.53411 0 0 828058. 2865.25 0.33 0.10 0.16 -1 -1 0.33 0.0284537 0.0251277 90 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 8.65 vpr 62.72 MiB -1 -1 0.15 18312 1 0.03 -1 -1 30184 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 276 237 1 163 75 17 17 289 -1 unnamed_device 24.0 MiB 2.50 661 11767 4888 6509 370 62.7 MiB 0.09 0.00 3.96872 -124.487 -3.96872 3.96872 0.91 0.000451698 0.000413517 0.0358593 0.0329727 40 2367 25 6.99608e+06 161872 706193. 2443.58 2.81 0.15281 0.132546 26914 176310 -1 1701 24 1191 1550 158482 40302 3.85076 3.85076 -127.751 -3.85076 0 0 926341. 3205.33 0.26 0.08 0.16 -1 -1 0.26 0.0283943 0.0246967 67 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 16.60 vpr 63.04 MiB -1 -1 0.19 18296 1 0.03 -1 -1 30340 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 319 272 1 200 77 17 17 289 -1 unnamed_device 24.5 MiB 0.93 794 12791 5380 7022 389 63.0 MiB 0.11 0.00 3.72927 -124.193 -3.72927 3.72927 0.95 0.000514401 0.000473263 0.0436959 0.0402383 40 2857 43 6.99608e+06 206020 706193. 2443.58 12.07 0.290997 0.251386 26914 176310 -1 2050 23 1641 2236 219529 53474 3.46811 3.46811 -129.09 -3.46811 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0257464 0.0227615 86 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 7.46 vpr 63.05 MiB -1 -1 0.18 18276 1 0.03 -1 -1 30324 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64564 30 32 329 273 1 202 81 17 17 289 -1 unnamed_device 24.5 MiB 1.46 861 13731 5139 6518 2074 63.1 MiB 0.11 0.00 3.45074 -112.678 -3.45074 3.45074 0.92 0.00051385 0.000461363 0.0431788 0.0397278 40 2887 25 6.99608e+06 279598 706193. 2443.58 2.50 0.187179 0.166803 26914 176310 -1 2147 20 1634 2378 189072 43013 3.22771 3.22771 -114.895 -3.22771 0 0 926341. 3205.33 0.34 0.08 0.19 -1 -1 0.34 0.0246405 0.0218856 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 6.26 vpr 62.69 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30340 -1 -1 17 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64192 28 32 277 229 1 170 77 17 17 289 -1 unnamed_device 24.0 MiB 0.54 723 11976 5024 6337 615 62.7 MiB 0.09 0.00 3.68935 -104.223 -3.68935 3.68935 0.91 0.000502512 0.000462885 0.0381987 0.0352125 38 2109 22 6.99608e+06 250167 678818. 2348.85 2.30 0.144519 0.126724 26626 170182 -1 1687 23 1445 2242 178128 37301 3.83422 3.83422 -111.835 -3.83422 0 0 902133. 3121.57 0.33 0.07 0.17 -1 -1 0.33 0.0224174 0.0196883 71 27 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 10.50 vpr 62.82 MiB -1 -1 0.21 18416 1 0.03 -1 -1 30368 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 30 32 317 269 1 200 77 17 17 289 -1 unnamed_device 24.3 MiB 2.21 818 11324 3148 6454 1722 62.8 MiB 0.09 0.00 4.41761 -136.631 -4.41761 4.41761 0.96 0.000808131 0.000744261 0.0389515 0.0359444 48 2009 21 6.99608e+06 220735 865456. 2994.66 4.69 0.223086 0.193271 28354 207349 -1 1545 20 1591 2114 136516 33515 3.81505 3.81505 -132.313 -3.81505 0 0 1.05005e+06 3633.38 0.39 0.07 0.21 -1 -1 0.39 0.023392 0.020714 87 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 7.10 vpr 63.20 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30128 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 335 282 1 216 78 17 17 289 -1 unnamed_device 24.6 MiB 0.78 1010 13192 5594 7383 215 63.2 MiB 0.12 0.00 3.51674 -126.355 -3.51674 3.51674 0.79 0.000676066 0.000626833 0.0567287 0.0525956 40 2849 29 6.99608e+06 206020 706193. 2443.58 3.03 0.206667 0.180873 26914 176310 -1 2440 21 1950 2665 236162 48863 3.31172 3.31172 -131.272 -3.31172 0 0 926341. 3205.33 0.35 0.09 0.16 -1 -1 0.35 0.0259927 0.0230423 93 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.73 vpr 62.73 MiB -1 -1 0.19 18044 1 0.03 -1 -1 30348 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 31 32 293 230 1 168 87 17 17 289 -1 unnamed_device 24.1 MiB 0.47 737 13911 5155 6642 2114 62.7 MiB 0.09 0.00 4.50448 -121.077 -4.50448 4.50448 0.92 0.00047822 0.000439075 0.0369929 0.0340283 44 2291 47 6.99608e+06 353176 787024. 2723.27 2.77 0.145246 0.126868 27778 195446 -1 1730 19 1112 1981 149264 33785 4.16177 4.16177 -122.23 -4.16177 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0219932 0.019458 74 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 7.79 vpr 62.96 MiB -1 -1 0.20 18476 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 350 275 1 202 78 17 17 289 -1 unnamed_device 24.4 MiB 2.43 870 10204 4231 5688 285 63.0 MiB 0.09 0.00 4.41391 -146.987 -4.41391 4.41391 0.91 0.000525961 0.000482029 0.0355111 0.0326748 42 3069 25 6.99608e+06 206020 744469. 2576.02 1.87 0.159969 0.139349 27202 183097 -1 2286 21 1843 2709 200184 44782 4.28795 4.28795 -149.677 -4.28795 0 0 949917. 3286.91 0.37 0.09 0.18 -1 -1 0.37 0.0286457 0.0255887 86 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.50 vpr 63.23 MiB -1 -1 0.19 18212 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 385 308 1 237 81 17 17 289 -1 unnamed_device 24.7 MiB 0.93 1114 14606 5637 6534 2435 63.2 MiB 0.14 0.00 5.07184 -165.984 -5.07184 5.07184 0.94 0.00061174 0.000563938 0.0544537 0.0502366 42 3677 46 6.99608e+06 250167 744469. 2576.02 2.93 0.193912 0.172118 27202 183097 -1 2596 23 2438 3473 305156 62009 4.92199 4.92199 -175.089 -4.92199 0 0 949917. 3286.91 0.36 0.11 0.17 -1 -1 0.36 0.0336343 0.0299191 102 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 6.17 vpr 63.15 MiB -1 -1 0.21 18292 1 0.03 -1 -1 30460 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 387 309 1 244 81 17 17 289 -1 unnamed_device 24.7 MiB 0.86 1042 9181 3711 5204 266 63.2 MiB 0.10 0.00 4.37608 -146.243 -4.37608 4.37608 0.70 0.000801668 0.000742178 0.0431759 0.0401094 44 3655 31 6.99608e+06 250167 787024. 2723.27 2.19 0.185881 0.16256 27778 195446 -1 2581 22 2027 2921 276823 57383 4.2831 4.2831 -151.705 -4.2831 0 0 997811. 3452.63 0.38 0.11 0.18 -1 -1 0.38 0.0330459 0.0294864 104 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 12.35 vpr 62.72 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30288 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 272 232 1 171 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 629 9713 2668 5130 1915 62.7 MiB 0.08 0.00 4.31695 -123.26 -4.31695 4.31695 0.93 0.000443806 0.000408231 0.029857 0.0275067 40 2056 28 6.99608e+06 191304 706193. 2443.58 7.83 0.207898 0.178067 26914 176310 -1 1596 20 1116 1612 128979 28791 3.61816 3.61816 -121.121 -3.61816 0 0 926341. 3205.33 0.34 0.06 0.16 -1 -1 0.34 0.0209934 0.0186864 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.15 vpr 63.03 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30412 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 375 299 1 233 80 17 17 289 -1 unnamed_device 24.6 MiB 1.19 883 12120 4402 5485 2233 63.0 MiB 0.11 0.00 5.2091 -158.73 -5.2091 5.2091 0.93 0.000545576 0.000497591 0.0433447 0.0398607 46 3183 26 6.99608e+06 264882 828058. 2865.25 3.29 0.197235 0.172649 28066 200906 -1 2139 35 2805 4012 293032 69352 5.0758 5.0758 -166.038 -5.0758 0 0 1.01997e+06 3529.29 0.39 0.12 0.20 -1 -1 0.39 0.0389885 0.0340517 104 63 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 7.92 vpr 63.18 MiB -1 -1 0.17 18472 1 0.03 -1 -1 30384 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 340 270 1 197 78 17 17 289 -1 unnamed_device 24.6 MiB 1.37 774 11698 4362 5117 2219 63.2 MiB 0.09 0.00 4.8046 -141.064 -4.8046 4.8046 0.92 0.000506073 0.000462817 0.0394515 0.0362746 48 2717 24 6.99608e+06 206020 865456. 2994.66 3.11 0.158343 0.138377 28354 207349 -1 2040 22 1728 2789 239470 56098 4.23056 4.23056 -141.928 -4.23056 0 0 1.05005e+06 3633.38 0.29 0.10 0.18 -1 -1 0.29 0.031252 0.0273227 82 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 8.85 vpr 63.02 MiB -1 -1 0.22 18244 1 0.03 -1 -1 30096 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64528 31 32 340 275 1 199 80 17 17 289 -1 unnamed_device 24.5 MiB 1.50 823 14528 6271 7657 600 63.0 MiB 0.12 0.00 5.20705 -145.134 -5.20705 5.20705 0.95 0.000568497 0.000521958 0.050215 0.0462532 40 2954 37 6.99608e+06 250167 706193. 2443.58 3.75 0.197812 0.174578 26914 176310 -1 2150 23 1582 2221 188209 41721 4.53606 4.53606 -147.154 -4.53606 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0265394 0.0236104 87 47 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 9.02 vpr 63.24 MiB -1 -1 0.22 18364 1 0.03 -1 -1 30256 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64756 30 32 377 310 1 234 81 17 17 289 -1 unnamed_device 24.8 MiB 2.17 998 14606 5036 6964 2606 63.2 MiB 0.13 0.00 4.3242 -135.128 -4.3242 4.3242 0.96 0.000600449 0.000553201 0.0518312 0.0476504 42 3804 45 6.99608e+06 279598 744469. 2576.02 3.21 0.221014 0.196136 27202 183097 -1 2719 21 2293 3147 285440 67274 4.542 4.542 -158.443 -4.542 0 0 949917. 3286.91 0.37 0.10 0.18 -1 -1 0.37 0.0272188 0.0240784 107 83 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 9.16 vpr 63.05 MiB -1 -1 0.25 18272 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 365 294 1 223 81 17 17 289 -1 unnamed_device 24.4 MiB 1.88 1170 15831 5552 8021 2258 63.1 MiB 0.13 0.00 4.80442 -153.646 -4.80442 4.80442 0.91 0.000578144 0.0005244 0.0547123 0.0502149 38 3246 40 6.99608e+06 250167 678818. 2348.85 3.69 0.199387 0.174763 26626 170182 -1 2746 26 2184 3139 323817 82005 5.28061 5.28061 -177.869 -5.28061 0 0 902133. 3121.57 0.32 0.12 0.16 -1 -1 0.32 0.0346188 0.0306633 95 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.42 vpr 63.50 MiB -1 -1 0.22 18384 1 0.03 -1 -1 30344 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65020 29 32 378 310 1 237 81 17 17 289 -1 unnamed_device 24.8 MiB 2.87 1070 13906 5389 6734 1783 63.5 MiB 0.13 0.00 3.78245 -124.642 -3.78245 3.78245 0.71 0.000732141 0.000679485 0.0610152 0.0566251 36 3468 31 6.99608e+06 294314 648988. 2245.63 2.44 0.205327 0.180338 26050 158493 -1 2699 20 2222 2879 286208 62222 3.67066 3.67066 -132.622 -3.67066 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0269262 0.0238735 109 85 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 7.13 vpr 62.68 MiB -1 -1 0.20 17844 1 0.03 -1 -1 30316 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 243 205 1 140 74 17 17 289 -1 unnamed_device 24.2 MiB 1.47 491 9374 2820 4647 1907 62.7 MiB 0.09 0.00 3.56099 -102.364 -3.56099 3.56099 0.71 0.000661597 0.000599842 0.0422659 0.0393222 50 1345 33 6.99608e+06 147157 902133. 3121.57 2.28 0.154576 0.135159 28642 213929 -1 960 18 835 1266 73238 19806 2.89537 2.89537 -97.3072 -2.89537 0 0 1.08113e+06 3740.92 0.42 0.05 0.22 -1 -1 0.42 0.0198518 0.0177484 54 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 22.94 vpr 63.30 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30440 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 373 302 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 0.80 1172 9531 3063 4611 1857 63.3 MiB 0.09 0.00 5.23038 -167.099 -5.23038 5.23038 0.93 0.000580559 0.000524532 0.0337574 0.0310509 40 3507 30 6.99608e+06 250167 706193. 2443.58 18.49 0.319195 0.278371 26914 176310 -1 2860 31 2826 3999 577483 177474 4.88674 4.88674 -170.779 -4.88674 0 0 926341. 3205.33 0.34 0.19 0.18 -1 -1 0.34 0.0385041 0.033868 100 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 22.72 vpr 63.47 MiB -1 -1 0.21 18372 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 397 314 1 249 81 17 17 289 -1 unnamed_device 25.0 MiB 1.10 1060 12506 5192 6537 777 63.5 MiB 0.12 0.00 4.95096 -169.07 -4.95096 4.95096 0.94 0.000592864 0.000543725 0.0465513 0.0427616 42 3748 45 6.99608e+06 250167 744469. 2576.02 17.95 0.381845 0.331334 27202 183097 -1 2715 22 2819 3945 351295 73954 4.52404 4.52404 -167.935 -4.52404 0 0 949917. 3286.91 0.35 0.12 0.19 -1 -1 0.35 0.0302962 0.0268546 109 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.05 vpr 62.67 MiB -1 -1 0.19 18392 1 0.03 -1 -1 30280 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 269 231 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.19 663 12241 5259 6676 306 62.7 MiB 0.09 0.00 3.88707 -116.611 -3.88707 3.88707 0.95 0.000446116 0.000409832 0.037245 0.0342535 40 2160 41 6.99608e+06 161872 706193. 2443.58 4.39 0.186076 0.159992 26914 176310 -1 1662 17 1126 1411 111818 26822 3.37001 3.37001 -116.645 -3.37001 0 0 926341. 3205.33 0.36 0.06 0.18 -1 -1 0.36 0.019816 0.0176979 69 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 8.35 vpr 62.50 MiB -1 -1 0.18 17824 1 0.03 -1 -1 30472 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 245 205 1 144 76 17 17 289 -1 unnamed_device 24.1 MiB 0.60 576 8556 2635 4197 1724 62.5 MiB 0.06 0.00 3.30733 -101.102 -3.30733 3.30733 0.93 0.000428962 0.000394448 0.0249894 0.0230392 40 1571 25 6.99608e+06 191304 706193. 2443.58 4.34 0.158086 0.135698 26914 176310 -1 1331 20 1074 1556 120424 28214 2.94647 2.94647 -108.03 -2.94647 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.019929 0.0176105 56 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 9.10 vpr 63.04 MiB -1 -1 0.20 18352 1 0.03 -1 -1 30580 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 348 274 1 208 79 17 17 289 -1 unnamed_device 24.4 MiB 0.99 869 12754 4459 5989 2306 63.0 MiB 0.10 0.00 4.59981 -149.693 -4.59981 4.59981 0.92 0.000529943 0.000487108 0.0427485 0.0393165 42 2814 24 6.99608e+06 220735 744469. 2576.02 4.68 0.240957 0.208448 27202 183097 -1 2353 20 1840 2471 217740 45571 4.36645 4.36645 -154.052 -4.36645 0 0 949917. 3286.91 0.26 0.09 0.17 -1 -1 0.26 0.0296132 0.0259849 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 7.72 vpr 63.09 MiB -1 -1 0.22 18272 1 0.03 -1 -1 30456 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 356 289 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 1.87 940 12416 5188 6985 243 63.1 MiB 0.12 0.00 4.54977 -140.907 -4.54977 4.54977 0.71 0.000720611 0.000668922 0.0560976 0.0520669 38 3484 42 6.99608e+06 220735 678818. 2348.85 2.72 0.200746 0.175811 26626 170182 -1 2321 19 1794 2436 217225 52856 4.22815 4.22815 -148.313 -4.22815 0 0 902133. 3121.57 0.33 0.08 0.16 -1 -1 0.33 0.0245872 0.0218035 95 56 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 8.23 vpr 62.92 MiB -1 -1 0.17 18048 1 0.03 -1 -1 30080 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 349 260 1 195 81 17 17 289 -1 unnamed_device 24.4 MiB 0.51 872 12156 5062 6580 514 62.9 MiB 0.11 0.00 4.64591 -137.817 -4.64591 4.64591 0.99 0.000577493 0.000531875 0.0437424 0.0403419 40 3074 37 6.99608e+06 250167 706193. 2443.58 4.20 0.214653 0.187475 26914 176310 -1 2316 24 1780 3110 271971 65131 4.86745 4.86745 -151.068 -4.86745 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0274905 0.0243402 83 3 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 9.61 vpr 62.85 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30532 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 30 32 316 264 1 197 78 17 17 289 -1 unnamed_device 24.3 MiB 1.25 830 11698 4911 6285 502 62.8 MiB 0.11 0.00 3.74623 -107.503 -3.74623 3.74623 0.89 0.000665344 0.000617387 0.0506746 0.0470875 46 2469 22 6.99608e+06 235451 828058. 2865.25 4.80 0.207317 0.180928 28066 200906 -1 2031 20 1575 2334 171994 37272 3.27647 3.27647 -110.182 -3.27647 0 0 1.01997e+06 3529.29 0.38 0.08 0.20 -1 -1 0.38 0.0263034 0.0233064 86 52 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.66 vpr 62.64 MiB -1 -1 0.18 17976 1 0.03 -1 -1 30376 -1 -1 15 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 27 32 255 219 1 145 74 17 17 289 -1 unnamed_device 24.0 MiB 1.19 509 7669 2724 3648 1297 62.6 MiB 0.06 0.00 3.48259 -102.05 -3.48259 3.48259 0.74 0.00064662 0.000601217 0.0304086 0.028304 42 1466 24 6.99608e+06 220735 744469. 2576.02 1.49 0.143616 0.124449 27202 183097 -1 1178 18 803 1228 76995 19326 3.53731 3.53731 -107.855 -3.53731 0 0 949917. 3286.91 0.35 0.04 0.17 -1 -1 0.35 0.017782 0.0158259 66 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.32 vpr 63.36 MiB -1 -1 0.22 18444 1 0.04 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 421 327 1 257 82 17 17 289 -1 unnamed_device 24.7 MiB 1.08 1230 15746 6854 8529 363 63.4 MiB 0.15 0.00 4.19054 -144.989 -4.19054 4.19054 0.94 0.000673279 0.000621874 0.0614847 0.0565397 46 3696 29 6.99608e+06 264882 828058. 2865.25 2.51 0.203709 0.178983 28066 200906 -1 2871 23 2406 3607 276534 57095 4.29751 4.29751 -149.943 -4.29751 0 0 1.01997e+06 3529.29 0.36 0.10 0.20 -1 -1 0.36 0.0328337 0.0290839 111 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.39 vpr 63.15 MiB -1 -1 0.20 18464 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 31 32 365 296 1 229 80 17 17 289 -1 unnamed_device 24.7 MiB 1.18 970 7648 1766 5271 611 63.2 MiB 0.08 0.00 5.55089 -158.936 -5.55089 5.55089 0.92 0.000555186 0.0005092 0.0282574 0.0260701 44 3212 29 6.99608e+06 250167 787024. 2723.27 2.68 0.154265 0.133893 27778 195446 -1 2250 21 2013 2894 209857 48321 4.78144 4.78144 -161.061 -4.78144 0 0 997811. 3452.63 0.34 0.10 0.17 -1 -1 0.34 0.0323654 0.0284286 100 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 6.79 vpr 62.93 MiB -1 -1 0.20 18384 1 0.03 -1 -1 30400 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 331 280 1 215 78 17 17 289 -1 unnamed_device 24.4 MiB 1.04 984 12362 5200 6901 261 62.9 MiB 0.10 0.00 4.34704 -155.732 -4.34704 4.34704 0.97 0.000498052 0.000456653 0.0400053 0.0367502 46 2801 28 6.99608e+06 206020 828058. 2865.25 2.14 0.187985 0.163705 28066 200906 -1 2135 20 1370 1712 135955 29714 3.88141 3.88141 -148.486 -3.88141 0 0 1.01997e+06 3529.29 0.38 0.07 0.20 -1 -1 0.38 0.0250719 0.0222616 91 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 9.71 vpr 63.20 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30336 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 326 263 1 197 79 17 17 289 -1 unnamed_device 24.7 MiB 0.80 810 13768 5955 7355 458 63.2 MiB 0.12 0.00 4.11318 -126.224 -4.11318 4.11318 0.97 0.00069236 0.000636482 0.049992 0.0460085 48 2277 20 6.99608e+06 220735 865456. 2994.66 5.16 0.216086 0.188489 28354 207349 -1 1933 20 1390 1953 147716 33468 3.78082 3.78082 -128.104 -3.78082 0 0 1.05005e+06 3633.38 0.42 0.07 0.21 -1 -1 0.42 0.026093 0.0231922 81 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 16.24 vpr 63.32 MiB -1 -1 0.21 18264 1 0.03 -1 -1 30352 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 373 294 1 221 80 17 17 289 -1 unnamed_device 24.6 MiB 1.66 911 12120 5043 6557 520 63.3 MiB 0.10 0.00 4.16973 -124.445 -4.16973 4.16973 0.91 0.000576747 0.000527341 0.0436812 0.0402125 42 3001 43 6.99608e+06 250167 744469. 2576.02 11.01 0.314185 0.271649 27202 183097 -1 2284 22 1914 2728 208100 47709 3.97232 3.97232 -132.419 -3.97232 0 0 949917. 3286.91 0.37 0.09 0.18 -1 -1 0.37 0.0288183 0.0255178 97 50 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 7.64 vpr 63.01 MiB -1 -1 0.20 18172 1 0.03 -1 -1 30212 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64520 30 32 325 268 1 198 79 17 17 289 -1 unnamed_device 24.4 MiB 1.92 853 8191 3286 4551 354 63.0 MiB 0.08 0.00 3.59563 -113.561 -3.59563 3.59563 0.98 0.000525796 0.000482306 0.0290077 0.0267811 42 2678 26 6.99608e+06 250167 744469. 2576.02 2.18 0.128277 0.111971 27202 183097 -1 2198 20 1548 2346 186723 40859 3.37311 3.37311 -118.812 -3.37311 0 0 949917. 3286.91 0.27 0.09 0.17 -1 -1 0.27 0.0316209 0.028001 88 51 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 27.22 vpr 63.07 MiB -1 -1 0.22 18380 1 0.03 -1 -1 30352 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 350 275 1 209 78 17 17 289 -1 unnamed_device 24.5 MiB 0.97 934 9042 3688 5047 307 63.1 MiB 0.10 0.00 4.39601 -145.17 -4.39601 4.39601 0.92 0.000723352 0.000671318 0.0446698 0.0415321 42 4135 45 6.99608e+06 206020 744469. 2576.02 22.58 0.351293 0.303397 27202 183097 -1 2771 21 2089 3119 303456 66172 5.34195 5.34195 -168.765 -5.34195 0 0 949917. 3286.91 0.37 0.10 0.18 -1 -1 0.37 0.0274852 0.0244843 88 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 9.11 vpr 63.35 MiB -1 -1 0.24 18424 1 0.03 -1 -1 30092 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 386 307 1 240 80 17 17 289 -1 unnamed_device 24.9 MiB 3.00 965 11260 4654 6213 393 63.4 MiB 0.10 0.00 3.73597 -128.871 -3.73597 3.73597 0.92 0.000577359 0.00053002 0.0415924 0.0381833 42 3604 48 6.99608e+06 235451 744469. 2576.02 2.50 0.171083 0.148993 27202 183097 -1 2541 22 2150 2904 246512 55929 3.64371 3.64371 -137.868 -3.64371 0 0 949917. 3286.91 0.35 0.10 0.16 -1 -1 0.35 0.0297873 0.0264742 103 62 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 7.40 vpr 62.60 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30484 -1 -1 14 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 269 229 1 168 75 17 17 289 -1 unnamed_device 24.0 MiB 1.66 553 10345 3346 4809 2190 62.6 MiB 0.08 0.00 4.28805 -120.257 -4.28805 4.28805 0.93 0.000454648 0.00041753 0.0323045 0.02975 44 1966 40 6.99608e+06 206020 787024. 2723.27 2.27 0.140957 0.122232 27778 195446 -1 1325 28 1459 1985 132354 32722 3.44986 3.44986 -115.694 -3.44986 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0262085 0.0229865 70 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.85 vpr 62.79 MiB -1 -1 0.20 18264 1 0.05 -1 -1 30340 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 310 266 1 182 78 17 17 289 -1 unnamed_device 24.3 MiB 2.60 793 12362 5268 6864 230 62.8 MiB 0.11 0.00 4.02018 -135.883 -4.02018 4.02018 0.72 0.00065288 0.000605675 0.05233 0.0486246 40 2369 36 6.99608e+06 206020 706193. 2443.58 4.17 0.278119 0.240381 26914 176310 -1 1913 23 1740 2411 213151 44019 3.87765 3.87765 -133.428 -3.87765 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0247827 0.021821 79 58 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.79 vpr 62.95 MiB -1 -1 0.20 18248 1 0.03 -1 -1 30348 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 326 261 1 193 78 17 17 289 -1 unnamed_device 24.4 MiB 0.99 826 12196 4442 6061 1693 62.9 MiB 0.12 0.00 4.09738 -124.458 -4.09738 4.09738 0.83 0.000682497 0.000633944 0.0574073 0.0533913 40 2795 44 6.99608e+06 220735 706193. 2443.58 3.41 0.190355 0.167004 26914 176310 -1 1943 29 1810 2700 296487 114527 3.79982 3.79982 -130.199 -3.79982 0 0 926341. 3205.33 0.34 0.13 0.18 -1 -1 0.34 0.0322419 0.028348 80 33 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.61 vpr 62.66 MiB -1 -1 0.20 18304 1 0.03 -1 -1 30292 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 262 224 1 162 74 17 17 289 -1 unnamed_device 24.1 MiB 1.15 623 8909 3777 4738 394 62.7 MiB 0.07 0.00 3.79267 -110.261 -3.79267 3.79267 0.95 0.000462773 0.000425955 0.0287967 0.0265211 42 1864 22 6.99608e+06 191304 744469. 2576.02 2.02 0.139156 0.120657 27202 183097 -1 1490 20 1140 1450 109431 25246 3.16821 3.16821 -105.165 -3.16821 0 0 949917. 3286.91 0.36 0.05 0.17 -1 -1 0.36 0.0195393 0.0172679 68 31 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 15.85 vpr 62.62 MiB -1 -1 0.20 18268 1 0.03 -1 -1 30064 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 278 238 1 178 76 17 17 289 -1 unnamed_device 24.0 MiB 0.96 747 11436 4976 6147 313 62.6 MiB 0.09 0.00 4.32795 -132.311 -4.32795 4.32795 0.92 0.000449692 0.000412732 0.0355406 0.0327092 40 2041 22 6.99608e+06 176588 706193. 2443.58 11.46 0.234968 0.202368 26914 176310 -1 1764 19 1328 1725 139708 32029 3.58916 3.58916 -132.509 -3.58916 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0207234 0.0184414 73 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 6.77 vpr 63.64 MiB -1 -1 0.26 18220 1 0.03 -1 -1 30196 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 373 300 1 231 80 17 17 289 -1 unnamed_device 25.0 MiB 1.13 925 14356 5451 6870 2035 63.6 MiB 0.14 0.00 4.44525 -144.678 -4.44525 4.44525 0.89 0.000742668 0.000687832 0.0649674 0.060306 44 2971 48 6.99608e+06 250167 787024. 2723.27 2.18 0.226725 0.198451 27778 195446 -1 2219 21 1953 2662 201700 44816 4.29945 4.29945 -149.87 -4.29945 0 0 997811. 3452.63 0.37 0.08 0.20 -1 -1 0.37 0.02844 0.0252795 102 64 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 5.96 vpr 62.78 MiB -1 -1 0.19 18440 1 0.03 -1 -1 30376 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 265 230 1 171 76 17 17 289 -1 unnamed_device 24.1 MiB 0.96 677 12236 4942 6162 1132 62.8 MiB 0.10 0.00 3.74867 -113.589 -3.74867 3.74867 0.70 0.000606124 0.000563634 0.047091 0.0438385 38 2407 35 6.99608e+06 191304 678818. 2348.85 1.89 0.153181 0.133907 26626 170182 -1 1627 19 1163 1636 130704 28157 3.16341 3.16341 -110.561 -3.16341 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0200162 0.017716 71 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 10.22 vpr 63.00 MiB -1 -1 0.21 18220 1 0.03 -1 -1 30192 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 349 286 1 207 79 17 17 289 -1 unnamed_device 24.3 MiB 1.23 1000 14275 5369 6741 2165 63.0 MiB 0.13 0.00 3.51669 -120.5 -3.51669 3.51669 0.97 0.000545129 0.000501125 0.0508931 0.0469239 40 2804 25 6.99608e+06 220735 706193. 2443.58 5.43 0.2653 0.231449 26914 176310 -1 2329 20 1447 2026 191477 38151 3.27576 3.27576 -124.153 -3.27576 0 0 926341. 3205.33 0.34 0.08 0.17 -1 -1 0.34 0.0253504 0.022578 91 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 12.37 vpr 63.49 MiB -1 -1 0.23 18576 1 0.03 -1 -1 30380 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 396 325 1 255 83 17 17 289 -1 unnamed_device 25.0 MiB 3.10 1155 14663 6188 7958 517 63.5 MiB 0.14 0.00 4.64393 -158.098 -4.64393 4.64393 0.83 0.000762774 0.00070779 0.0649546 0.0602136 52 3163 24 6.99608e+06 294314 926341. 3205.33 5.61 0.328145 0.28525 29218 227130 -1 2508 22 2326 3269 310786 61557 4.54129 4.54129 -159.654 -4.54129 0 0 1.14541e+06 3963.36 0.44 0.10 0.23 -1 -1 0.44 0.0292824 0.0259127 113 91 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.36 vpr 62.89 MiB -1 -1 0.20 18356 1 0.03 -1 -1 30348 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 303 262 1 192 76 17 17 289 -1 unnamed_device 24.4 MiB 2.25 775 10156 4187 5714 255 62.9 MiB 0.09 0.00 3.42554 -116.648 -3.42554 3.42554 0.97 0.000482474 0.000440956 0.0337335 0.0310099 40 2408 28 6.99608e+06 176588 706193. 2443.58 2.62 0.139578 0.120971 26914 176310 -1 1861 19 1564 2043 169586 37647 3.50031 3.50031 -125.098 -3.50031 0 0 926341. 3205.33 0.35 0.07 0.17 -1 -1 0.35 0.0213152 0.0188484 80 57 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 13.70 vpr 62.63 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30268 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 290 244 1 172 75 17 17 289 -1 unnamed_device 24.2 MiB 0.87 715 9871 2522 5750 1599 62.6 MiB 0.08 0.00 3.90682 -124.154 -3.90682 3.90682 0.92 0.000471024 0.000433091 0.0311551 0.0286849 40 2118 50 6.99608e+06 161872 706193. 2443.58 9.51 0.238615 0.204998 26914 176310 -1 1546 21 1375 1951 120285 31134 3.45086 3.45086 -121.088 -3.45086 0 0 926341. 3205.33 0.32 0.06 0.14 -1 -1 0.32 0.0218871 0.0193555 72 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 7.79 vpr 63.05 MiB -1 -1 0.20 18392 1 0.03 -1 -1 30180 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 318 257 1 191 78 17 17 289 -1 unnamed_device 24.5 MiB 1.81 806 10370 4256 5769 345 63.1 MiB 0.09 0.00 4.12063 -125.806 -4.12063 4.12063 0.97 0.00053081 0.000488462 0.0361718 0.0333659 40 2802 44 6.99608e+06 206020 706193. 2443.58 2.42 0.18527 0.161875 26914 176310 -1 2212 21 1782 2483 193170 43996 4.03942 4.03942 -139.072 -4.03942 0 0 926341. 3205.33 0.34 0.08 0.18 -1 -1 0.34 0.025846 0.0229919 79 30 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.91 vpr 63.02 MiB -1 -1 0.21 18280 1 0.03 -1 -1 30068 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 29 32 324 268 1 195 79 17 17 289 -1 unnamed_device 24.4 MiB 1.80 860 11233 4667 5950 616 63.0 MiB 0.11 0.00 3.78147 -112.526 -3.78147 3.78147 0.70 0.000684534 0.000635208 0.0479993 0.044632 40 2425 43 6.99608e+06 264882 706193. 2443.58 4.81 0.23034 0.200348 26914 176310 -1 1908 19 1457 2022 158673 35102 3.50111 3.50111 -109.052 -3.50111 0 0 926341. 3205.33 0.36 0.07 0.18 -1 -1 0.36 0.0237746 0.0212277 88 55 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 8.94 vpr 63.14 MiB -1 -1 0.20 18444 1 0.03 -1 -1 30416 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 393 312 1 235 81 17 17 289 -1 unnamed_device 24.6 MiB 1.67 1139 12681 5262 6918 501 63.1 MiB 0.13 0.00 5.49769 -178.53 -5.49769 5.49769 0.97 0.000626256 0.000575299 0.0488135 0.0449379 44 3424 37 6.99608e+06 250167 787024. 2723.27 3.51 0.214811 0.189771 27778 195446 -1 2683 22 2443 3701 308283 62815 4.6774 4.6774 -169.321 -4.6774 0 0 997811. 3452.63 0.40 0.12 0.20 -1 -1 0.40 0.0329421 0.0293914 105 65 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 6.51 vpr 62.39 MiB -1 -1 0.18 17848 1 0.03 -1 -1 30092 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 229 197 1 137 76 17 17 289 -1 unnamed_device 23.7 MiB 0.95 587 10476 4438 5741 297 62.4 MiB 0.07 0.00 3.45403 -92.0406 -3.45403 3.45403 0.90 0.000412883 0.00037955 0.0295606 0.0272641 38 1995 27 6.99608e+06 191304 678818. 2348.85 2.24 0.121015 0.104937 26626 170182 -1 1431 22 1146 1808 146741 32202 2.82547 2.82547 -98.1947 -2.82547 0 0 902133. 3121.57 0.34 0.06 0.17 -1 -1 0.34 0.0204575 0.0179969 54 4 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 11.25 vpr 63.45 MiB -1 -1 0.22 18532 1 0.03 -1 -1 30216 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 412 334 1 258 84 17 17 289 -1 unnamed_device 24.8 MiB 3.41 1043 15090 5384 7460 2246 63.4 MiB 0.14 0.00 4.74833 -158.465 -4.74833 4.74833 0.96 0.000594644 0.000544854 0.0537318 0.0492374 48 3605 49 6.99608e+06 294314 865456. 2994.66 4.04 0.211868 0.184881 28354 207349 -1 2368 21 2191 2700 287694 68663 4.9873 4.9873 -168.07 -4.9873 0 0 1.05005e+06 3633.38 0.41 0.10 0.21 -1 -1 0.41 0.0295535 0.0261613 116 90 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 7.65 vpr 63.26 MiB -1 -1 0.20 18264 1 0.03 -1 -1 30136 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.7 MiB 1.05 1243 11948 3932 6174 1842 63.3 MiB 0.11 0.00 4.39022 -163.291 -4.39022 4.39022 0.92 0.000546447 0.000501644 0.0425929 0.039235 38 3326 24 6.99608e+06 235451 678818. 2348.85 3.07 0.169826 0.148427 26626 170182 -1 2877 22 2782 3539 348319 66606 4.48149 4.48149 -170.274 -4.48149 0 0 902133. 3121.57 0.34 0.11 0.17 -1 -1 0.34 0.028452 0.0251588 110 96 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 7.51 vpr 63.09 MiB -1 -1 0.21 18204 1 0.03 -1 -1 30292 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 360 293 1 219 79 17 17 289 -1 unnamed_device 24.5 MiB 1.62 943 11571 4822 6284 465 63.1 MiB 0.10 0.00 3.68917 -120.78 -3.68917 3.68917 0.92 0.000553466 0.000508886 0.0410225 0.0377732 44 2906 26 6.99608e+06 220735 787024. 2723.27 2.30 0.164384 0.143702 27778 195446 -1 2079 18 1497 1955 139511 33407 3.48081 3.48081 -124.535 -3.48081 0 0 997811. 3452.63 0.40 0.07 0.20 -1 -1 0.40 0.0262211 0.0234766 94 60 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.84 vpr 63.23 MiB -1 -1 0.22 18576 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 396 299 1 228 79 17 17 289 -1 unnamed_device 24.8 MiB 1.14 984 11571 4450 5727 1394 63.2 MiB 0.12 0.00 5.93064 -168.994 -5.93064 5.93064 0.70 0.00067663 0.000624681 0.0524225 0.0485903 44 3256 30 6.99608e+06 220735 787024. 2723.27 2.31 0.183004 0.161506 27778 195446 -1 2391 23 2279 3367 236634 53847 5.13416 5.13416 -165.789 -5.13416 0 0 997811. 3452.63 0.39 0.10 0.19 -1 -1 0.39 0.0329535 0.0292896 98 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 5.89 vpr 62.33 MiB -1 -1 0.18 18048 1 0.03 -1 -1 30112 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 224 207 1 132 74 17 17 289 -1 unnamed_device 23.7 MiB 0.75 449 10769 3021 6028 1720 62.3 MiB 0.07 0.00 2.78575 -94.7661 -2.78575 2.78575 0.94 0.000377591 0.000346081 0.029072 0.0268026 42 1202 23 6.99608e+06 176588 744469. 2576.02 1.79 0.0928054 0.0808339 27202 183097 -1 1027 19 670 856 66571 16434 2.56272 2.56272 -91.4455 -2.56272 0 0 949917. 3286.91 0.30 0.04 0.18 -1 -1 0.30 0.0163066 0.0142871 53 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 11.86 vpr 62.62 MiB -1 -1 0.20 18328 1 0.03 -1 -1 30428 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 286 239 1 157 76 17 17 289 -1 unnamed_device 24.0 MiB 3.85 635 8556 3694 4561 301 62.6 MiB 0.07 0.00 3.79502 -117.432 -3.79502 3.79502 0.92 0.000478253 0.000438844 0.0283762 0.0261304 40 1873 44 6.99608e+06 206020 706193. 2443.58 4.58 0.209522 0.180244 26914 176310 -1 1500 18 1154 1706 151886 36069 3.07646 3.07646 -118.515 -3.07646 0 0 926341. 3205.33 0.34 0.06 0.17 -1 -1 0.34 0.0193852 0.0171405 68 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 7.19 vpr 62.81 MiB -1 -1 0.20 18416 1 0.03 -1 -1 30032 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 296 247 1 182 81 17 17 289 -1 unnamed_device 24.3 MiB 0.66 745 10756 3701 5259 1796 62.8 MiB 0.08 0.00 3.68644 -120.453 -3.68644 3.68644 0.91 0.000483573 0.000444236 0.0320994 0.0295827 46 2274 27 6.99608e+06 250167 828058. 2865.25 3.04 0.142254 0.123666 28066 200906 -1 1818 21 1379 2147 194317 44810 3.54672 3.54672 -123.118 -3.54672 0 0 1.01997e+06 3529.29 0.37 0.08 0.20 -1 -1 0.37 0.0237165 0.0209102 78 34 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 6.25 vpr 62.32 MiB -1 -1 0.23 18000 1 0.03 -1 -1 30196 -1 -1 16 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 25 32 216 194 1 136 73 17 17 289 -1 unnamed_device 23.9 MiB 1.23 529 9649 3987 4965 697 62.3 MiB 0.07 0.00 3.34779 -78.1264 -3.34779 3.34779 0.91 0.000523138 0.000487249 0.0331139 0.0307481 36 1649 38 6.99608e+06 235451 648988. 2245.63 1.58 0.142775 0.123639 26050 158493 -1 1166 20 796 1081 73858 17455 2.72502 2.72502 -78.8811 -2.72502 0 0 828058. 2865.25 0.33 0.04 0.16 -1 -1 0.33 0.0177555 0.0156662 59 29 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 12.28 vpr 63.22 MiB -1 -1 0.21 18264 1 0.03 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 376 307 1 234 81 17 17 289 -1 unnamed_device 24.7 MiB 3.55 1054 8656 3245 4768 643 63.2 MiB 0.09 0.00 4.05906 -133.149 -4.05906 4.05906 0.95 0.000564379 0.000517649 0.0313731 0.0288576 40 3768 46 6.99608e+06 250167 706193. 2443.58 5.16 0.184866 0.160672 26914 176310 -1 2950 18 1962 2803 269061 59974 4.29522 4.29522 -148.309 -4.29522 0 0 926341. 3205.33 0.35 0.09 0.17 -1 -1 0.35 0.0245162 0.0217751 103 72 -1 -1 -1 -1 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 10.84 vpr 63.38 MiB -1 -1 0.22 18744 1 0.03 -1 -1 30316 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64900 31 32 409 331 1 258 82 17 17 289 -1 unnamed_device 24.8 MiB 2.98 1127 9872 4010 5529 333 63.4 MiB 0.10 0.00 4.48803 -146.589 -4.48803 4.48803 0.93 0.000587682 0.0005394 0.0371001 0.0341733 40 3765 50 6.99608e+06 279598 706193. 2443.58 4.23 0.231902 0.201177 26914 176310 -1 2709 37 2619 3634 587894 220034 4.24945 4.24945 -155.312 -4.24945 0 0 926341. 3205.33 0.31 0.21 0.12 -1 -1 0.31 0.0449449 0.0392802 117 90 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_001.v common 15.34 vpr 62.94 MiB -1 -1 0.36 18696 14 0.33 -1 -1 32776 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 277 309 1 203 83 17 17 289 -1 unnamed_device 24.3 MiB 2.00 1200 14123 4211 7443 2469 62.9 MiB 0.15 0.00 8.48111 -174.272 -8.48111 8.48111 0.85 0.000949394 0.000871194 0.0781736 0.0720532 34 3554 23 6.79088e+06 255968 618332. 2139.56 9.39 0.374793 0.326711 25102 150614 -1 3029 18 1442 4014 257524 60480 7.35086 7.35086 -165.107 -7.35086 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0336109 0.0301477 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 8.93 vpr 62.67 MiB -1 -1 0.33 18388 14 0.38 -1 -1 32772 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 272 304 1 194 81 17 17 289 -1 unnamed_device 24.0 MiB 2.92 1041 12506 3388 6981 2137 62.7 MiB 0.12 0.00 7.55088 -152.933 -7.55088 7.55088 0.93 0.000696639 0.00063839 0.0548633 0.0503565 34 3233 30 6.79088e+06 255968 618332. 2139.56 2.07 0.193898 0.169577 25102 150614 -1 2525 27 1424 4032 241027 54940 7.39641 7.39641 -154.009 -7.39641 0 0 787024. 2723.27 0.22 0.12 0.14 -1 -1 0.22 0.0481583 0.0420022 125 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 12.57 vpr 62.73 MiB -1 -1 0.29 18360 11 0.29 -1 -1 32772 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 280 312 1 193 83 17 17 289 -1 unnamed_device 24.2 MiB 3.29 1174 9623 2464 5833 1326 62.7 MiB 0.10 0.00 6.66938 -147.636 -6.66938 6.66938 0.70 0.000895834 0.000822117 0.0524861 0.0485753 36 3300 49 6.79088e+06 255968 648988. 2245.63 5.91 0.368496 0.319955 25390 158009 -1 2822 17 1334 3986 232048 51490 6.19364 6.19364 -147.954 -6.19364 0 0 828058. 2865.25 0.32 0.09 0.15 -1 -1 0.32 0.0312922 0.0280534 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 7.56 vpr 62.67 MiB -1 -1 0.31 18332 12 0.43 -1 -1 32656 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 275 307 1 202 85 17 17 289 -1 unnamed_device 24.1 MiB 1.40 1140 13849 4119 7829 1901 62.7 MiB 0.13 0.00 7.24573 -145.062 -7.24573 7.24573 0.94 0.000733335 0.000670678 0.0589222 0.0540625 38 3002 18 6.79088e+06 323328 678818. 2348.85 2.14 0.197112 0.174825 25966 169698 -1 2383 16 1192 3427 168788 38367 6.49468 6.49468 -139.374 -6.49468 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.0315492 0.0284518 136 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 8.43 vpr 62.92 MiB -1 -1 0.33 18472 13 0.34 -1 -1 32712 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 302 334 1 234 86 17 17 289 -1 unnamed_device 24.5 MiB 2.05 1308 9536 2519 6199 818 62.9 MiB 0.10 0.00 8.29941 -174.684 -8.29941 8.29941 0.91 0.000788379 0.000724023 0.0435183 0.0400472 36 3968 35 6.79088e+06 296384 648988. 2245.63 2.43 0.225391 0.199818 25390 158009 -1 3369 18 1652 4138 273723 60728 7.13591 7.13591 -165.794 -7.13591 0 0 828058. 2865.25 0.31 0.11 0.16 -1 -1 0.31 0.0378683 0.0341145 152 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 11.23 vpr 62.87 MiB -1 -1 0.34 18616 13 0.32 -1 -1 32708 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 292 324 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 2.01 1207 10163 2849 5374 1940 62.9 MiB 0.10 0.00 7.60457 -158.151 -7.60457 7.60457 0.94 0.0007386 0.00066833 0.0462943 0.0424544 40 3274 25 6.79088e+06 255968 706193. 2443.58 5.21 0.287823 0.250036 26254 175826 -1 2798 18 1326 3952 219021 49241 6.33367 6.33367 -144.75 -6.33367 0 0 926341. 3205.33 0.36 0.10 0.17 -1 -1 0.36 0.0351863 0.0315219 137 198 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 6.72 vpr 62.26 MiB -1 -1 0.28 18008 12 0.26 -1 -1 32624 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63752 27 32 229 261 1 168 80 17 17 289 -1 unnamed_device 23.6 MiB 1.74 859 8680 2413 5503 764 62.3 MiB 0.08 0.00 6.99932 -125.75 -6.99932 6.99932 0.91 0.000564303 0.00051675 0.0335951 0.0309194 30 2390 31 6.79088e+06 282912 556674. 1926.21 1.26 0.120521 0.105945 24526 138013 -1 1954 15 1002 2230 109541 26910 5.65673 5.65673 -117.344 -5.65673 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0250426 0.0226341 106 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 12.03 vpr 62.18 MiB -1 -1 0.32 18448 12 0.25 -1 -1 32852 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 229 261 1 188 80 17 17 289 -1 unnamed_device 23.7 MiB 3.44 1041 12120 4682 6151 1287 62.2 MiB 0.11 0.00 6.42294 -136.515 -6.42294 6.42294 0.81 0.000752343 0.00069601 0.0575801 0.0532165 52 2409 26 6.79088e+06 229024 926341. 3205.33 4.73 0.369065 0.318684 28558 226646 -1 2144 15 971 2533 146432 32720 5.40264 5.40264 -125.093 -5.40264 0 0 1.14541e+06 3963.36 0.41 0.06 0.23 -1 -1 0.41 0.0245928 0.0221549 106 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 8.66 vpr 62.32 MiB -1 -1 0.35 18504 12 0.22 -1 -1 32604 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 235 267 1 194 83 17 17 289 -1 unnamed_device 23.9 MiB 3.51 1112 8543 2303 4599 1641 62.3 MiB 0.08 0.00 6.92467 -146.156 -6.92467 6.92467 0.70 0.000743985 0.000687307 0.0386428 0.0358107 38 2928 24 6.79088e+06 269440 678818. 2348.85 1.90 0.189329 0.164645 25966 169698 -1 2434 18 1148 2890 158628 36102 6.12648 6.12648 -142.526 -6.12648 0 0 902133. 3121.57 0.24 0.08 0.14 -1 -1 0.24 0.0306089 0.0269918 113 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 8.14 vpr 62.32 MiB -1 -1 0.29 18236 13 0.25 -1 -1 32692 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 250 282 1 182 79 17 17 289 -1 unnamed_device 24.0 MiB 2.32 1044 5825 1272 4307 246 62.3 MiB 0.07 0.00 7.71708 -165.102 -7.71708 7.71708 0.79 0.000859594 0.00078262 0.0321846 0.029797 38 2866 31 6.79088e+06 202080 678818. 2348.85 2.17 0.209251 0.181378 25966 169698 -1 2322 17 1121 2684 145404 33670 6.70957 6.70957 -157.411 -6.70957 0 0 902133. 3121.57 0.34 0.07 0.16 -1 -1 0.34 0.0299724 0.0269696 106 156 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 6.81 vpr 62.35 MiB -1 -1 0.29 18252 12 0.24 -1 -1 32448 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63848 30 32 216 248 1 161 79 17 17 289 -1 unnamed_device 24.0 MiB 2.01 926 7008 1689 4680 639 62.4 MiB 0.06 0.00 7.21324 -147.642 -7.21324 7.21324 0.93 0.000587694 0.000540736 0.0269782 0.0248423 30 2578 44 6.79088e+06 229024 556674. 1926.21 1.13 0.119457 0.104411 24526 138013 -1 2027 17 881 2080 117822 27063 6.27979 6.27979 -141.995 -6.27979 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0269549 0.0237761 96 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 10.81 vpr 62.38 MiB -1 -1 0.30 18080 12 0.19 -1 -1 32804 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 236 268 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 2.94 1082 9181 2345 5797 1039 62.4 MiB 0.08 0.00 6.01027 -147.531 -6.01027 6.01027 0.92 0.000573496 0.000524279 0.03427 0.0314372 44 2574 17 6.79088e+06 229024 787024. 2723.27 4.10 0.220563 0.191493 27118 194962 -1 2158 14 891 2314 126078 29049 5.35651 5.35651 -139.215 -5.35651 0 0 997811. 3452.63 0.37 0.06 0.19 -1 -1 0.37 0.0234223 0.0211511 101 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 8.88 vpr 63.06 MiB -1 -1 0.33 18604 13 0.25 -1 -1 32728 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 283 315 1 215 84 17 17 289 -1 unnamed_device 24.4 MiB 2.38 1306 7038 1688 4711 639 63.1 MiB 0.08 0.00 8.03011 -168.791 -8.03011 8.03011 0.95 0.000702735 0.000644563 0.03297 0.0302699 36 3499 23 6.79088e+06 269440 648988. 2245.63 2.58 0.19648 0.171412 25390 158009 -1 2970 18 1334 3439 210239 46542 6.81035 6.81035 -158.868 -6.81035 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0346029 0.0311335 134 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 9.16 vpr 62.92 MiB -1 -1 0.34 18664 14 0.40 -1 -1 32752 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 303 335 1 230 86 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1416 7079 1642 5037 400 62.9 MiB 0.08 0.00 8.75222 -185.44 -8.75222 8.75222 0.93 0.000752705 0.000688627 0.0338023 0.0309318 30 3987 30 6.79088e+06 296384 556674. 1926.21 2.79 0.161693 0.142171 24526 138013 -1 3086 21 1537 3895 209296 47411 7.92696 7.92696 -180.675 -7.92696 0 0 706193. 2443.58 0.27 0.10 0.14 -1 -1 0.27 0.0399573 0.0357562 151 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 8.32 vpr 62.29 MiB -1 -1 0.24 18104 11 0.21 -1 -1 32584 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 29 32 225 257 1 176 82 17 17 289 -1 unnamed_device 24.0 MiB 2.94 1026 7024 1624 4287 1113 62.3 MiB 0.06 0.00 6.6829 -137.714 -6.6829 6.6829 0.92 0.000558847 0.000511844 0.0260507 0.0239362 34 2879 22 6.79088e+06 282912 618332. 2139.56 1.71 0.122056 0.106214 25102 150614 -1 2308 16 1104 2675 155425 35123 5.77854 5.77854 -131.805 -5.77854 0 0 787024. 2723.27 0.33 0.07 0.16 -1 -1 0.33 0.0265592 0.023965 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 8.88 vpr 62.84 MiB -1 -1 0.31 18508 12 0.36 -1 -1 32820 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 301 333 1 221 88 17 17 289 -1 unnamed_device 24.4 MiB 1.78 1310 12763 3534 7319 1910 62.8 MiB 0.13 0.00 7.16817 -158.635 -7.16817 7.16817 0.94 0.000836433 0.00077132 0.0578179 0.0531602 38 3518 24 6.79088e+06 323328 678818. 2348.85 3.01 0.247903 0.218809 25966 169698 -1 2821 18 1476 4588 235361 53321 6.16568 6.16568 -149.194 -6.16568 0 0 902133. 3121.57 0.35 0.10 0.17 -1 -1 0.35 0.0388282 0.0352035 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 11.10 vpr 62.95 MiB -1 -1 0.30 18524 14 0.32 -1 -1 32716 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 277 309 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 2.92 1313 8723 2298 6119 306 62.9 MiB 0.10 0.00 8.13104 -170.503 -8.13104 8.13104 0.93 0.0009192 0.000846853 0.0500971 0.0462642 38 3781 50 6.79088e+06 255968 678818. 2348.85 4.18 0.285475 0.248538 25966 169698 -1 2875 25 1389 4010 323964 110156 6.84955 6.84955 -159.968 -6.84955 0 0 902133. 3121.57 0.35 0.14 0.17 -1 -1 0.35 0.0425978 0.0379299 126 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 7.34 vpr 62.29 MiB -1 -1 0.36 18396 12 0.21 -1 -1 32388 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63788 32 32 227 259 1 172 79 17 17 289 -1 unnamed_device 23.6 MiB 2.13 1050 9374 2716 5861 797 62.3 MiB 0.09 0.00 7.14943 -160.299 -7.14943 7.14943 0.94 0.000615753 0.000554986 0.0376878 0.0345822 30 2886 39 6.79088e+06 202080 556674. 1926.21 1.47 0.137534 0.121201 24526 138013 -1 2328 16 951 2435 136571 30880 5.84017 5.84017 -150.015 -5.84017 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.025057 0.0225202 105 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 7.41 vpr 61.95 MiB -1 -1 0.25 17764 10 0.12 -1 -1 32220 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63432 30 32 175 207 1 133 75 17 17 289 -1 unnamed_device 23.3 MiB 2.49 831 7975 2137 5194 644 61.9 MiB 0.06 0.00 4.79706 -119.036 -4.79706 4.79706 0.93 0.00044405 0.00040806 0.0242589 0.0223164 34 1949 15 6.79088e+06 175136 618332. 2139.56 1.51 0.0890605 0.0777441 25102 150614 -1 1693 15 654 1480 92283 21060 4.29242 4.29242 -117.549 -4.29242 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0182702 0.0164477 66 87 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 8.09 vpr 62.46 MiB -1 -1 0.28 18228 13 0.23 -1 -1 32584 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63960 31 32 231 263 1 186 81 17 17 289 -1 unnamed_device 24.1 MiB 2.67 1018 10756 3186 5324 2246 62.5 MiB 0.09 0.00 7.66004 -158.967 -7.66004 7.66004 0.93 0.000580598 0.000531365 0.039933 0.0366366 34 3030 24 6.79088e+06 242496 618332. 2139.56 1.78 0.14366 0.125512 25102 150614 -1 2377 18 1208 2790 167634 38290 6.67042 6.67042 -151.876 -6.67042 0 0 787024. 2723.27 0.23 0.08 0.13 -1 -1 0.23 0.0289579 0.0259784 107 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 8.44 vpr 63.02 MiB -1 -1 0.32 18652 13 0.37 -1 -1 32932 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 304 336 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 2.21 1313 10315 2856 6290 1169 63.0 MiB 0.11 0.00 7.47852 -163.761 -7.47852 7.47852 0.89 0.000761103 0.000697037 0.0469801 0.0430461 38 3725 30 6.79088e+06 282912 678818. 2348.85 2.37 0.210338 0.184049 25966 169698 -1 2935 18 1520 4375 223078 49882 6.63122 6.63122 -156.792 -6.63122 0 0 902133. 3121.57 0.32 0.10 0.17 -1 -1 0.32 0.0369113 0.0331941 143 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 10.95 vpr 62.97 MiB -1 -1 0.33 18596 13 0.35 -1 -1 32464 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 288 320 1 216 85 17 17 289 -1 unnamed_device 24.4 MiB 2.88 1396 13105 3760 7294 2051 63.0 MiB 0.13 0.00 7.56118 -168.622 -7.56118 7.56118 0.91 0.000702048 0.000644964 0.0555327 0.0509067 36 4126 50 6.79088e+06 282912 648988. 2245.63 3.36 0.297912 0.258741 25390 158009 -1 3483 74 3010 10558 2399960 1291181 6.91399 6.91399 -166.275 -6.91399 0 0 828058. 2865.25 0.32 0.84 0.15 -1 -1 0.32 0.105274 0.0920367 141 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 7.03 vpr 61.82 MiB -1 -1 0.23 17836 9 0.12 -1 -1 32460 -1 -1 18 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63304 26 32 152 184 1 122 76 17 17 289 -1 unnamed_device 23.2 MiB 1.32 658 7116 2577 3138 1401 61.8 MiB 0.06 0.00 4.92929 -93.1038 -4.92929 4.92929 0.70 0.000525454 0.000488302 0.0263648 0.024504 34 1634 17 6.79088e+06 242496 618332. 2139.56 2.64 0.164331 0.141155 25102 150614 -1 1459 17 582 1372 88057 19437 4.44343 4.44343 -93.0168 -4.44343 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0182573 0.0163326 67 76 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 18.37 vpr 62.90 MiB -1 -1 0.29 18392 13 0.37 -1 -1 32708 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 287 319 1 214 87 17 17 289 -1 unnamed_device 24.3 MiB 1.87 1303 13911 3831 7698 2382 62.9 MiB 0.14 0.00 8.27554 -169.54 -8.27554 8.27554 0.92 0.000749699 0.000689348 0.0572435 0.0522874 36 4067 42 6.79088e+06 309856 648988. 2245.63 12.63 0.41466 0.360061 25390 158009 -1 3316 19 1554 4275 279543 60499 7.63368 7.63368 -166.973 -7.63368 0 0 828058. 2865.25 0.32 0.11 0.15 -1 -1 0.32 0.036117 0.0323711 136 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 7.39 vpr 61.64 MiB -1 -1 0.21 17764 8 0.11 -1 -1 32124 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63116 32 32 154 186 1 126 75 17 17 289 -1 unnamed_device 23.1 MiB 2.29 650 7185 1746 4717 722 61.6 MiB 0.05 0.00 4.16702 -95.4775 -4.16702 4.16702 0.91 0.000375581 0.000344199 0.0192669 0.0176826 34 1944 21 6.79088e+06 148192 618332. 2139.56 1.76 0.112733 0.0983718 25102 150614 -1 1712 17 708 1603 102167 23320 3.62662 3.62662 -96.4288 -3.62662 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0176114 0.0157235 60 60 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 19.67 vpr 62.56 MiB -1 -1 0.30 18348 15 0.28 -1 -1 32716 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 254 286 1 202 82 17 17 289 -1 unnamed_device 24.1 MiB 2.07 1241 4710 909 3488 313 62.6 MiB 0.06 0.00 8.6614 -176.248 -8.6614 8.6614 0.72 0.00100959 0.000934205 0.0278668 0.0258325 32 4085 46 6.79088e+06 242496 586450. 2029.24 14.19 0.362201 0.31422 24814 144142 -1 3135 30 1473 4173 472876 172855 7.27251 7.27251 -170.447 -7.27251 0 0 744469. 2576.02 0.30 0.18 0.14 -1 -1 0.30 0.0461343 0.0408969 121 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 9.91 vpr 62.70 MiB -1 -1 0.30 18344 13 0.30 -1 -1 32768 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 260 292 1 195 82 17 17 289 -1 unnamed_device 24.2 MiB 2.41 1132 11118 3595 5694 1829 62.7 MiB 0.10 0.00 7.01886 -151.319 -7.01886 7.01886 0.94 0.000636746 0.000583436 0.0452902 0.041552 40 3321 21 6.79088e+06 242496 706193. 2443.58 3.56 0.195444 0.171152 26254 175826 -1 2824 18 1278 3714 237114 51740 6.20488 6.20488 -147.623 -6.20488 0 0 926341. 3205.33 0.34 0.09 0.18 -1 -1 0.34 0.0309059 0.0277054 117 166 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 7.38 vpr 62.79 MiB -1 -1 0.30 18188 13 0.34 -1 -1 32788 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 279 311 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 1.81 1327 8092 1764 5104 1224 62.8 MiB 0.09 0.00 7.94214 -171.305 -7.94214 7.94214 0.69 0.00090197 0.000835195 0.0456003 0.0422665 38 3417 21 6.79088e+06 242496 678818. 2348.85 1.99 0.193218 0.169542 25966 169698 -1 2742 25 1253 3687 331893 130701 6.90983 6.90983 -163.146 -6.90983 0 0 902133. 3121.57 0.34 0.15 0.16 -1 -1 0.34 0.0427226 0.037804 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 14.69 vpr 62.56 MiB -1 -1 0.25 18136 12 0.21 -1 -1 32684 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 238 270 1 186 80 17 17 289 -1 unnamed_device 23.9 MiB 2.51 977 11088 4157 5492 1439 62.6 MiB 0.09 0.00 6.83134 -154.124 -6.83134 6.83134 0.91 0.000584072 0.00053386 0.040968 0.0375276 36 3021 45 6.79088e+06 215552 648988. 2245.63 8.54 0.314281 0.271992 25390 158009 -1 2248 15 1075 2512 150383 35066 6.24064 6.24064 -150.201 -6.24064 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.024319 0.0219157 103 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 10.03 vpr 62.39 MiB -1 -1 0.26 18092 11 0.19 -1 -1 32636 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 213 245 1 164 80 17 17 289 -1 unnamed_device 23.8 MiB 2.21 831 9368 3815 5302 251 62.4 MiB 0.08 0.00 6.26518 -134.378 -6.26518 6.26518 0.90 0.000539014 0.000493542 0.0329516 0.0302222 40 2287 22 6.79088e+06 242496 706193. 2443.58 4.20 0.17982 0.155863 26254 175826 -1 1983 17 919 2262 135901 32171 5.69238 5.69238 -132.23 -5.69238 0 0 926341. 3205.33 0.36 0.06 0.17 -1 -1 0.36 0.0239154 0.0214692 95 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 7.16 vpr 62.25 MiB -1 -1 0.27 18080 11 0.22 -1 -1 32840 -1 -1 21 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63740 28 32 227 259 1 171 81 17 17 289 -1 unnamed_device 23.6 MiB 1.94 887 4981 1150 3615 216 62.2 MiB 0.06 0.00 6.73536 -131.115 -6.73536 6.73536 0.96 0.000749122 0.000693634 0.0262978 0.0244117 34 2428 16 6.79088e+06 282912 618332. 2139.56 1.52 0.142155 0.123738 25102 150614 -1 2361 17 997 2632 160845 36552 5.99343 5.99343 -130.899 -5.99343 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0258531 0.0232632 109 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 10.90 vpr 62.55 MiB -1 -1 0.24 17888 12 0.26 -1 -1 32688 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64048 32 32 274 306 1 209 81 17 17 289 -1 unnamed_device 24.0 MiB 2.68 1030 11106 3225 5695 2186 62.5 MiB 0.12 0.00 6.88848 -158.105 -6.88848 6.88848 0.74 0.000987903 0.000921015 0.0624382 0.0578567 40 2827 28 6.79088e+06 229024 706193. 2443.58 4.81 0.324073 0.282034 26254 175826 -1 2445 17 1346 3203 187198 43206 5.98999 5.98999 -149.521 -5.98999 0 0 926341. 3205.33 0.36 0.08 0.17 -1 -1 0.36 0.0302099 0.0271325 119 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 10.60 vpr 62.35 MiB -1 -1 0.26 18128 12 0.20 -1 -1 32752 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63844 31 32 237 269 1 176 80 17 17 289 -1 unnamed_device 24.0 MiB 2.86 844 13496 3879 7699 1918 62.3 MiB 0.12 0.00 6.87864 -138.662 -6.87864 6.87864 0.96 0.000588425 0.000537895 0.051745 0.0475024 38 2827 42 6.79088e+06 229024 678818. 2348.85 3.90 0.298219 0.256957 25966 169698 -1 2137 20 1140 2879 144993 35603 6.10748 6.10748 -138.829 -6.10748 0 0 902133. 3121.57 0.35 0.07 0.17 -1 -1 0.35 0.0301204 0.026932 101 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 7.34 vpr 62.31 MiB -1 -1 0.29 18124 10 0.17 -1 -1 32728 -1 -1 17 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63808 29 32 220 252 1 166 78 17 17 289 -1 unnamed_device 23.7 MiB 1.92 995 8046 2054 5506 486 62.3 MiB 0.07 0.00 6.16888 -134.071 -6.16888 6.16888 0.94 0.000556765 0.000507825 0.0309319 0.0283018 34 2497 17 6.79088e+06 229024 618332. 2139.56 1.79 0.145699 0.126685 25102 150614 -1 2234 15 877 2453 146240 32961 5.36338 5.36338 -128.917 -5.36338 0 0 787024. 2723.27 0.31 0.06 0.14 -1 -1 0.31 0.0246958 0.0224227 103 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 9.29 vpr 63.11 MiB -1 -1 0.35 18864 13 0.38 -1 -1 32908 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 315 347 1 232 85 17 17 289 -1 unnamed_device 24.4 MiB 2.30 1366 6409 1425 4059 925 63.1 MiB 0.08 0.00 8.09066 -166.557 -8.09066 8.09066 0.97 0.000820917 0.000749639 0.0341033 0.0313928 34 3912 39 6.79088e+06 282912 618332. 2139.56 2.87 0.263718 0.229928 25102 150614 -1 3156 24 1876 5713 380162 80178 7.04981 7.04981 -159.187 -7.04981 0 0 787024. 2723.27 0.31 0.14 0.14 -1 -1 0.31 0.0495023 0.0442254 149 221 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 9.45 vpr 62.78 MiB -1 -1 0.33 19032 14 0.42 -1 -1 33368 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 282 314 1 225 82 17 17 289 -1 unnamed_device 24.2 MiB 2.73 1410 14500 4472 7875 2153 62.8 MiB 0.16 0.00 7.75965 -172.67 -7.75965 7.75965 0.70 0.000999993 0.000927743 0.0839007 0.0777517 36 4268 31 6.79088e+06 242496 648988. 2245.63 2.99 0.276991 0.244121 25390 158009 -1 3518 20 1710 4708 319536 68330 7.02749 7.02749 -173.319 -7.02749 0 0 828058. 2865.25 0.31 0.12 0.16 -1 -1 0.31 0.0377838 0.0338245 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 10.41 vpr 62.38 MiB -1 -1 0.27 18436 12 0.20 -1 -1 32376 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63880 31 32 241 273 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 2.31 998 11402 3354 6097 1951 62.4 MiB 0.10 0.00 7.09988 -153.854 -7.09988 7.09988 0.94 0.000597278 0.000546137 0.0456697 0.0419237 38 2528 18 6.79088e+06 215552 678818. 2348.85 4.36 0.214881 0.186882 25966 169698 -1 2103 20 943 2512 132249 29686 6.15793 6.15793 -142.655 -6.15793 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0286652 0.0255703 101 150 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 10.39 vpr 62.98 MiB -1 -1 0.35 18620 12 0.36 -1 -1 32748 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 307 339 1 226 87 17 17 289 -1 unnamed_device 24.6 MiB 2.97 1359 6231 1346 4416 469 63.0 MiB 0.08 0.00 7.65151 -160.422 -7.65151 7.65151 0.93 0.000769008 0.000705216 0.0305899 0.0282145 40 3408 25 6.79088e+06 323328 706193. 2443.58 3.35 0.234493 0.206142 26254 175826 -1 3206 19 1556 4772 286571 62088 6.50931 6.50931 -148.986 -6.50931 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0384653 0.0345094 146 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 10.03 vpr 62.79 MiB -1 -1 0.34 18876 14 0.44 -1 -1 32724 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 293 325 1 209 85 17 17 289 -1 unnamed_device 24.1 MiB 1.61 1193 5665 1093 3974 598 62.8 MiB 0.07 0.00 8.28837 -165.331 -8.28837 8.28837 0.77 0.000975106 0.000902628 0.0334666 0.0310286 38 2997 31 6.79088e+06 296384 678818. 2348.85 4.64 0.285896 0.248664 25966 169698 -1 2583 15 1251 3490 164947 39201 7.55106 7.55106 -159.649 -7.55106 0 0 902133. 3121.57 0.23 0.08 0.16 -1 -1 0.23 0.0340029 0.0301829 142 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 9.05 vpr 62.91 MiB -1 -1 0.34 18856 13 0.34 -1 -1 32900 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 276 308 1 215 86 17 17 289 -1 unnamed_device 24.2 MiB 2.64 1189 5189 1012 3920 257 62.9 MiB 0.06 0.00 8.65671 -167.943 -8.65671 8.65671 0.93 0.000698145 0.000640036 0.0242497 0.0223632 36 3760 43 6.79088e+06 309856 648988. 2245.63 2.48 0.180934 0.158185 25390 158009 -1 2818 17 1374 3427 195736 45159 7.43696 7.43696 -157.265 -7.43696 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0324019 0.0291591 136 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 11.39 vpr 62.71 MiB -1 -1 0.32 18512 13 0.33 -1 -1 32768 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 269 301 1 204 84 17 17 289 -1 unnamed_device 24.1 MiB 2.44 1217 13077 3680 7087 2310 62.7 MiB 0.13 0.00 7.80928 -160.261 -7.80928 7.80928 0.90 0.000704567 0.000646382 0.0569819 0.0521567 46 3018 15 6.79088e+06 282912 828058. 2865.25 4.95 0.291771 0.254282 27406 200422 -1 2518 17 1143 3298 175215 38610 6.96798 6.96798 -147.305 -6.96798 0 0 1.01997e+06 3529.29 0.38 0.08 0.18 -1 -1 0.38 0.034657 0.0312906 125 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 10.19 vpr 62.48 MiB -1 -1 0.27 18260 12 0.22 -1 -1 32928 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 264 296 1 184 80 17 17 289 -1 unnamed_device 23.9 MiB 2.55 916 13324 4298 7153 1873 62.5 MiB 0.15 0.00 6.70425 -141.753 -6.70425 6.70425 0.92 0.000847511 0.000784609 0.0772376 0.0714464 38 2573 21 6.79088e+06 215552 678818. 2348.85 3.85 0.291793 0.254383 25966 169698 -1 2090 16 1116 3013 144284 35256 5.86813 5.86813 -134.881 -5.86813 0 0 902133. 3121.57 0.32 0.07 0.16 -1 -1 0.32 0.0277886 0.025149 111 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 8.75 vpr 63.10 MiB -1 -1 0.38 19304 14 0.47 -1 -1 32780 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 324 356 1 241 85 17 17 289 -1 unnamed_device 24.6 MiB 1.43 1571 12919 3579 7237 2103 63.1 MiB 0.15 0.00 8.5825 -180.126 -8.5825 8.5825 0.77 0.00106175 0.000981287 0.0800676 0.0739964 38 4356 38 6.79088e+06 282912 678818. 2348.85 3.05 0.300549 0.263706 25966 169698 -1 3441 26 1731 5280 487058 182183 7.061 7.061 -169.503 -7.061 0 0 902133. 3121.57 0.34 0.19 0.17 -1 -1 0.34 0.0495799 0.0441302 159 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 9.00 vpr 62.41 MiB -1 -1 0.26 18048 11 0.25 -1 -1 32352 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 31 32 249 281 1 186 79 17 17 289 -1 unnamed_device 24.0 MiB 2.81 1073 6501 1499 4640 362 62.4 MiB 0.08 0.00 6.42637 -139.096 -6.42637 6.42637 0.71 0.000927008 0.000864493 0.0362538 0.0336001 40 2801 27 6.79088e+06 215552 706193. 2443.58 2.69 0.215823 0.187243 26254 175826 -1 2535 17 1259 3428 202037 45445 5.60634 5.60634 -134.553 -5.60634 0 0 926341. 3205.33 0.25 0.09 0.15 -1 -1 0.25 0.0313984 0.0276778 112 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 13.44 vpr 62.80 MiB -1 -1 0.32 18608 13 0.34 -1 -1 33136 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 31 32 284 316 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 2.13 1076 5303 1019 4187 97 62.8 MiB 0.07 0.00 8.03811 -165.365 -8.03811 8.03811 0.94 0.000709303 0.000639541 0.0262712 0.0238543 36 3456 44 6.79088e+06 269440 648988. 2245.63 7.37 0.38684 0.340101 25390 158009 -1 2708 15 1224 3784 223949 51489 7.09671 7.09671 -159.521 -7.09671 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0336918 0.0306256 137 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 9.33 vpr 62.96 MiB -1 -1 0.30 18768 12 0.34 -1 -1 32868 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 303 335 1 212 85 17 17 289 -1 unnamed_device 24.3 MiB 2.47 1229 8269 1949 5817 503 63.0 MiB 0.09 0.00 7.09992 -154.886 -7.09992 7.09992 0.96 0.000791318 0.000725994 0.0403295 0.0370601 40 3274 49 6.79088e+06 282912 706193. 2443.58 2.76 0.291047 0.251552 26254 175826 -1 2887 29 1356 4456 393458 145740 6.33018 6.33018 -149.572 -6.33018 0 0 926341. 3205.33 0.33 0.16 0.18 -1 -1 0.33 0.0490561 0.043459 146 209 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 7.90 vpr 62.68 MiB -1 -1 0.34 18380 13 0.33 -1 -1 32760 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 272 304 1 200 86 17 17 289 -1 unnamed_device 24.1 MiB 1.64 1166 5945 1195 4546 204 62.7 MiB 0.06 0.00 8.15537 -168.597 -8.15537 8.15537 0.91 0.00071315 0.000649979 0.0275123 0.0252868 36 3355 45 6.79088e+06 296384 648988. 2245.63 2.38 0.212318 0.184685 25390 158009 -1 2751 19 1264 3466 207686 47059 6.84611 6.84611 -155.652 -6.84611 0 0 828058. 2865.25 0.31 0.09 0.15 -1 -1 0.31 0.0358768 0.0323893 131 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 10.08 vpr 62.58 MiB -1 -1 0.33 18568 13 0.22 -1 -1 33220 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 271 303 1 212 82 17 17 289 -1 unnamed_device 24.0 MiB 2.98 1291 6668 1628 4315 725 62.6 MiB 0.07 0.00 7.6093 -161.643 -7.6093 7.6093 0.91 0.000621166 0.00056403 0.0273237 0.0250383 36 3473 39 6.79088e+06 242496 648988. 2245.63 3.36 0.216849 0.190789 25390 158009 -1 2858 25 1323 3486 233661 57331 6.67381 6.67381 -155.703 -6.67381 0 0 828058. 2865.25 0.32 0.11 0.15 -1 -1 0.32 0.0393925 0.0349267 124 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 10.27 vpr 62.90 MiB -1 -1 0.32 18464 12 0.32 -1 -1 32952 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 288 320 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.92 1264 13077 4245 6963 1869 62.9 MiB 0.14 0.00 7.48863 -164.662 -7.48863 7.48863 0.76 0.000799164 0.000718037 0.0647696 0.0596014 38 3838 35 6.79088e+06 269440 678818. 2348.85 4.69 0.358291 0.310532 25966 169698 -1 2743 17 1344 4273 223844 49882 6.33367 6.33367 -151.948 -6.33367 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0333786 0.030035 140 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 9.24 vpr 62.87 MiB -1 -1 0.33 18868 13 0.39 -1 -1 33312 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 306 338 1 225 84 17 17 289 -1 unnamed_device 24.4 MiB 2.05 1308 7404 1742 4872 790 62.9 MiB 0.08 0.00 7.79737 -172.677 -7.79737 7.79737 0.90 0.000810084 0.000729896 0.0366692 0.0336782 36 3953 30 6.79088e+06 269440 648988. 2245.63 3.26 0.208632 0.184755 25390 158009 -1 3188 17 1484 4150 255403 56392 6.72081 6.72081 -163.473 -6.72081 0 0 828058. 2865.25 0.33 0.10 0.15 -1 -1 0.33 0.0364992 0.0329327 145 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 8.54 vpr 62.78 MiB -1 -1 0.28 18132 14 0.37 -1 -1 32864 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 262 294 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 1.89 1134 12528 3689 7280 1559 62.8 MiB 0.11 0.00 8.14516 -169.239 -8.14516 8.14516 0.92 0.000688999 0.00063069 0.0509954 0.0467402 34 3413 34 6.79088e+06 269440 618332. 2139.56 2.71 0.224965 0.19735 25102 150614 -1 2677 22 1517 4335 240301 54474 7.13591 7.13591 -160.278 -7.13591 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0357308 0.0317727 125 168 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 9.65 vpr 62.83 MiB -1 -1 0.31 18496 13 0.35 -1 -1 32888 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 291 323 1 214 85 17 17 289 -1 unnamed_device 24.2 MiB 2.71 1230 12547 3334 7250 1963 62.8 MiB 0.13 0.00 8.09269 -160.616 -8.09269 8.09269 0.78 0.000772699 0.000698396 0.0565389 0.0516601 36 3887 45 6.79088e+06 282912 648988. 2245.63 3.33 0.297486 0.258398 25390 158009 -1 3180 19 1837 5091 339886 75902 7.01056 7.01056 -157.194 -7.01056 0 0 828058. 2865.25 0.32 0.12 0.16 -1 -1 0.32 0.0381917 0.0344274 136 197 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 8.49 vpr 62.82 MiB -1 -1 0.34 18592 13 0.34 -1 -1 32824 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 31 32 302 334 1 224 84 17 17 289 -1 unnamed_device 24.3 MiB 2.27 1194 6855 1560 4961 334 62.8 MiB 0.09 0.00 7.84076 -167.565 -7.84076 7.84076 0.92 0.000789724 0.000728657 0.035543 0.0326905 46 2960 34 6.79088e+06 282912 828058. 2865.25 2.22 0.218074 0.190368 27406 200422 -1 2581 17 1303 3736 192862 44702 6.65923 6.65923 -154.25 -6.65923 0 0 1.01997e+06 3529.29 0.30 0.09 0.21 -1 -1 0.30 0.0376055 0.033252 144 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 13.15 vpr 62.95 MiB -1 -1 0.31 18892 12 0.30 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 308 340 1 225 85 17 17 289 -1 unnamed_device 24.3 MiB 1.97 1311 5851 1203 3709 939 62.9 MiB 0.07 0.00 7.71669 -163.184 -7.71669 7.71669 0.93 0.000767847 0.000703049 0.0288068 0.0265466 36 3875 47 6.79088e+06 282912 648988. 2245.63 7.23 0.383783 0.331499 25390 158009 -1 3345 20 1711 4811 373306 101241 6.84257 6.84257 -161.084 -6.84257 0 0 828058. 2865.25 0.32 0.14 0.15 -1 -1 0.32 0.0406522 0.0365912 147 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 7.18 vpr 62.09 MiB -1 -1 0.22 18084 11 0.17 -1 -1 32600 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 216 248 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.60 1005 10702 3112 6246 1344 62.1 MiB 0.10 0.00 6.21064 -136.494 -6.21064 6.21064 0.94 0.0005714 0.000526748 0.0405806 0.0373485 38 2387 19 6.79088e+06 188608 678818. 2348.85 1.91 0.133338 0.117733 25966 169698 -1 2062 13 791 2003 111530 25629 5.40258 5.40258 -130.636 -5.40258 0 0 902133. 3121.57 0.34 0.05 0.17 -1 -1 0.34 0.0212614 0.0193363 91 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 8.51 vpr 62.55 MiB -1 -1 0.30 18164 13 0.27 -1 -1 32868 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 254 286 1 197 84 17 17 289 -1 unnamed_device 24.0 MiB 2.30 1176 10515 2869 6205 1441 62.6 MiB 0.10 0.00 7.53642 -162.326 -7.53642 7.53642 0.95 0.000683046 0.000627384 0.0440642 0.040343 34 3604 48 6.79088e+06 269440 618332. 2139.56 2.33 0.233274 0.203277 25102 150614 -1 2936 22 1414 3682 243616 53708 6.49822 6.49822 -161.045 -6.49822 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0361562 0.032355 118 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 11.02 vpr 63.22 MiB -1 -1 0.37 19224 14 0.57 -1 -1 32860 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 338 370 1 251 88 17 17 289 -1 unnamed_device 24.4 MiB 1.58 1606 14908 4178 8064 2666 63.2 MiB 0.17 0.00 9.30628 -185.251 -9.30628 9.30628 0.70 0.000945807 0.000869166 0.0906968 0.083925 40 4467 40 6.79088e+06 323328 706193. 2443.58 5.20 0.417667 0.374765 26254 175826 -1 3724 35 1844 5383 630733 257863 8.31416 8.31416 -180.08 -8.31416 0 0 926341. 3205.33 0.30 0.26 0.18 -1 -1 0.30 0.0749422 0.0654553 171 244 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 8.87 vpr 62.73 MiB -1 -1 0.34 18576 13 0.37 -1 -1 32712 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 271 303 1 215 85 17 17 289 -1 unnamed_device 24.1 MiB 2.02 1373 5107 1065 3575 467 62.7 MiB 0.06 0.00 7.99662 -176.141 -7.99662 7.99662 0.94 0.000708723 0.000646005 0.0236771 0.0218015 38 3640 25 6.79088e+06 282912 678818. 2348.85 2.84 0.160784 0.139898 25966 169698 -1 2846 16 1317 3515 198314 43155 7.08552 7.08552 -170.462 -7.08552 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0354463 0.0321852 134 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 9.30 vpr 62.41 MiB -1 -1 0.34 18272 11 0.20 -1 -1 32728 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 224 256 1 163 79 17 17 289 -1 unnamed_device 23.8 MiB 0.91 913 8698 3216 4702 780 62.4 MiB 0.08 0.00 6.69153 -142.001 -6.69153 6.69153 0.97 0.000596337 0.000548013 0.0345195 0.0317702 36 2585 25 6.79088e+06 229024 648988. 2245.63 4.50 0.22758 0.198198 25390 158009 -1 2155 30 1224 3849 404658 168161 6.16557 6.16557 -137.396 -6.16557 0 0 828058. 2865.25 0.32 0.16 0.16 -1 -1 0.32 0.0374094 0.0330318 101 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 9.83 vpr 63.35 MiB -1 -1 0.38 19368 15 0.66 -1 -1 32900 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 351 383 1 259 89 17 17 289 -1 unnamed_device 24.6 MiB 1.34 1499 13751 3607 8212 1932 63.3 MiB 0.15 0.00 9.45131 -196.491 -9.45131 9.45131 0.90 0.000903301 0.000827559 0.0679525 0.0622055 38 4283 49 6.79088e+06 336800 678818. 2348.85 4.10 0.380556 0.33563 25966 169698 -1 3256 18 1773 4898 239338 54871 8.26721 8.26721 -182.774 -8.26721 0 0 902133. 3121.57 0.32 0.10 0.15 -1 -1 0.32 0.0412835 0.0373537 179 257 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 7.08 vpr 62.72 MiB -1 -1 0.32 18664 13 0.36 -1 -1 32796 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 297 329 1 217 84 17 17 289 -1 unnamed_device 24.3 MiB 1.38 1327 7221 1806 4907 508 62.7 MiB 0.09 0.00 8.09861 -175.276 -8.09861 8.09861 0.93 0.00104012 0.000965989 0.043784 0.0405273 34 3715 20 6.79088e+06 269440 618332. 2139.56 1.74 0.205202 0.179027 25102 150614 -1 2969 18 1424 3772 219070 48614 7.08901 7.08901 -169.078 -7.08901 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.0387971 0.0350132 139 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 6.48 vpr 62.59 MiB -1 -1 0.23 17944 11 0.17 -1 -1 32692 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 231 263 1 165 77 17 17 289 -1 unnamed_device 24.0 MiB 1.25 1048 9368 2840 4823 1705 62.6 MiB 0.09 0.00 6.8184 -143.52 -6.8184 6.8184 0.70 0.000717359 0.000661063 0.0460117 0.0425864 30 2846 50 6.79088e+06 175136 556674. 1926.21 2.10 0.171573 0.150731 24526 138013 -1 2348 20 938 2439 208524 64465 6.07177 6.07177 -142.376 -6.07177 0 0 706193. 2443.58 0.28 0.09 0.14 -1 -1 0.28 0.0284107 0.0253755 94 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 7.65 vpr 62.82 MiB -1 -1 0.36 18496 12 0.37 -1 -1 32748 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 305 337 1 217 84 17 17 289 -1 unnamed_device 24.4 MiB 1.43 1273 3744 682 2956 106 62.8 MiB 0.05 0.00 7.80662 -164.116 -7.80662 7.80662 0.94 0.00075529 0.00068995 0.020582 0.0189355 38 3356 33 6.79088e+06 269440 678818. 2348.85 2.22 0.210817 0.181852 25966 169698 -1 2827 18 1353 4312 221467 48814 6.63466 6.63466 -154.008 -6.63466 0 0 902133. 3121.57 0.34 0.09 0.16 -1 -1 0.34 0.0352798 0.0316601 146 211 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 7.51 vpr 62.34 MiB -1 -1 0.30 17988 12 0.25 -1 -1 32604 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 243 275 1 187 82 17 17 289 -1 unnamed_device 23.9 MiB 1.56 1093 11296 2879 6424 1993 62.3 MiB 0.10 0.00 7.38808 -154.548 -7.38808 7.38808 0.91 0.000604587 0.000554092 0.0428281 0.0393487 36 3035 30 6.79088e+06 242496 648988. 2245.63 2.23 0.178496 0.156375 25390 158009 -1 2613 17 1114 2911 181352 41281 6.38057 6.38057 -146.95 -6.38057 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.027817 0.0251064 113 149 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 15.42 vpr 62.37 MiB -1 -1 0.27 18308 12 0.23 -1 -1 32628 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 30 32 228 260 1 166 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 829 8191 1875 6055 261 62.4 MiB 0.08 0.00 7.82373 -148.45 -7.82373 7.82373 0.92 0.000582235 0.000534092 0.0317303 0.0291032 32 2850 28 6.79088e+06 229024 586450. 2029.24 10.44 0.296717 0.25914 24814 144142 -1 2095 15 914 2469 133071 32790 6.75996 6.75996 -146.511 -6.75996 0 0 744469. 2576.02 0.28 0.06 0.15 -1 -1 0.28 0.0241945 0.021787 106 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 15.82 vpr 62.70 MiB -1 -1 0.33 18772 12 0.35 -1 -1 33396 -1 -1 26 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 29 32 275 307 1 201 87 17 17 289 -1 unnamed_device 24.1 MiB 1.95 1310 7383 1809 4748 826 62.7 MiB 0.08 0.00 7.48697 -145.09 -7.48697 7.48697 0.71 0.000937666 0.00086754 0.0403246 0.0373196 34 3611 45 6.79088e+06 350272 618332. 2139.56 10.14 0.376375 0.327403 25102 150614 -1 2931 34 1360 4248 535227 235887 6.66688 6.66688 -140.163 -6.66688 0 0 787024. 2723.27 0.32 0.22 0.15 -1 -1 0.32 0.0561582 0.0497547 140 190 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 7.09 vpr 62.98 MiB -1 -1 0.33 18432 13 0.45 -1 -1 32812 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 330 362 1 257 87 17 17 289 -1 unnamed_device 24.5 MiB 0.97 1469 6615 1348 4384 883 63.0 MiB 0.09 0.00 7.94883 -165.303 -7.94883 7.94883 0.70 0.0010629 0.00098176 0.0422342 0.0391218 34 4182 50 6.79088e+06 309856 618332. 2139.56 2.49 0.256799 0.223793 25102 150614 -1 3404 21 1965 4685 295948 65765 6.96366 6.96366 -167.706 -6.96366 0 0 787024. 2723.27 0.30 0.11 0.15 -1 -1 0.30 0.0423991 0.0380635 160 236 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 10.45 vpr 62.70 MiB -1 -1 0.33 18616 12 0.28 -1 -1 33076 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 290 322 1 218 84 17 17 289 -1 unnamed_device 24.0 MiB 1.48 1369 7770 1945 5143 682 62.7 MiB 0.08 0.00 7.82957 -168.971 -7.82957 7.82957 0.88 0.000701138 0.000635888 0.0329552 0.0301859 38 3308 45 6.79088e+06 269440 678818. 2348.85 5.10 0.301814 0.263676 25966 169698 -1 2946 20 1739 5129 290366 62094 6.79916 6.79916 -161.955 -6.79916 0 0 902133. 3121.57 0.35 0.11 0.16 -1 -1 0.35 0.0381744 0.0341899 140 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 7.71 vpr 62.13 MiB -1 -1 0.27 18200 12 0.19 -1 -1 32676 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63624 32 32 214 246 1 160 79 17 17 289 -1 unnamed_device 23.6 MiB 2.45 827 5825 1179 4572 74 62.1 MiB 0.06 0.00 7.39828 -145.899 -7.39828 7.39828 0.92 0.000548403 0.000502569 0.0216258 0.0198357 34 2413 18 6.79088e+06 202080 618332. 2139.56 1.69 0.114393 0.0995938 25102 150614 -1 2025 16 912 2440 144297 33397 6.37287 6.37287 -143.747 -6.37287 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0236319 0.021217 93 120 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 8.37 vpr 62.31 MiB -1 -1 0.29 18160 12 0.29 -1 -1 32584 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63804 31 32 244 276 1 178 82 17 17 289 -1 unnamed_device 23.7 MiB 1.79 989 11830 4101 6106 1623 62.3 MiB 0.10 0.00 7.24523 -149.288 -7.24523 7.24523 0.93 0.000635878 0.000582351 0.0443875 0.0406846 36 3095 24 6.79088e+06 255968 648988. 2245.63 2.76 0.184166 0.161036 25390 158009 -1 2477 16 1111 3086 201293 45203 6.09963 6.09963 -143.195 -6.09963 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0275985 0.0249509 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 7.14 vpr 62.59 MiB -1 -1 0.30 18400 11 0.25 -1 -1 32696 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64088 30 32 276 308 1 190 82 17 17 289 -1 unnamed_device 24.0 MiB 1.88 1062 11296 3634 5901 1761 62.6 MiB 0.12 0.00 6.89956 -139.068 -6.89956 6.89956 0.72 0.00070145 0.000641302 0.060606 0.0560271 36 3150 46 6.79088e+06 269440 648988. 2245.63 1.89 0.226299 0.197479 25390 158009 -1 2487 16 1100 3253 182689 42057 5.78197 5.78197 -131.586 -5.78197 0 0 828058. 2865.25 0.23 0.08 0.13 -1 -1 0.23 0.0321349 0.0283863 125 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 10.01 vpr 62.50 MiB -1 -1 0.26 18352 11 0.26 -1 -1 32640 -1 -1 19 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63996 28 32 253 285 1 176 79 17 17 289 -1 unnamed_device 24.0 MiB 1.59 1034 10388 3390 5543 1455 62.5 MiB 0.10 0.00 6.39394 -127.87 -6.39394 6.39394 0.97 0.000725916 0.000644791 0.0467759 0.0430573 38 2774 25 6.79088e+06 255968 678818. 2348.85 4.40 0.290877 0.250661 25966 169698 -1 2275 32 1497 5235 518792 221634 5.60285 5.60285 -122.875 -5.60285 0 0 902133. 3121.57 0.32 0.20 0.17 -1 -1 0.32 0.0461009 0.0406109 116 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 9.35 vpr 62.32 MiB -1 -1 0.35 18352 13 0.21 -1 -1 32472 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 30 32 235 267 1 172 80 17 17 289 -1 unnamed_device 23.9 MiB 2.35 1069 10744 3320 5344 2080 62.3 MiB 0.10 0.00 7.007 -145.297 -7.007 7.007 0.92 0.000616778 0.000564544 0.0427333 0.0392757 30 3512 38 6.79088e+06 242496 556674. 1926.21 3.22 0.144672 0.127552 24526 138013 -1 2473 16 1122 3044 172020 39077 6.3268 6.3268 -142.889 -6.3268 0 0 706193. 2443.58 0.29 0.07 0.14 -1 -1 0.29 0.0268867 0.0240889 108 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 9.33 vpr 62.72 MiB -1 -1 0.32 18392 12 0.25 -1 -1 32364 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 2.60 1181 11474 3011 6873 1590 62.7 MiB 0.12 0.00 7.19453 -164.62 -7.19453 7.19453 0.91 0.000911209 0.00083497 0.0608804 0.0563904 36 3146 33 6.79088e+06 242496 648988. 2245.63 2.81 0.248214 0.218085 25390 158009 -1 2735 17 1221 3161 203368 44685 6.29442 6.29442 -153.617 -6.29442 0 0 828058. 2865.25 0.33 0.08 0.17 -1 -1 0.33 0.0312315 0.0281678 120 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 7.68 vpr 63.02 MiB -1 -1 0.30 18500 13 0.37 -1 -1 32892 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 278 310 1 200 84 17 17 289 -1 unnamed_device 24.5 MiB 2.02 1196 12528 3337 7297 1894 63.0 MiB 0.12 0.00 8.59275 -169.25 -8.59275 8.59275 0.92 0.000738027 0.000674719 0.0549285 0.0504171 30 3445 28 6.79088e+06 282912 556674. 1926.21 1.85 0.163786 0.145096 24526 138013 -1 2737 15 1314 3497 185103 42238 7.51535 7.51535 -164.152 -7.51535 0 0 706193. 2443.58 0.22 0.08 0.13 -1 -1 0.22 0.0319428 0.0282766 137 187 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 7.50 vpr 62.95 MiB -1 -1 0.33 18640 14 0.32 -1 -1 32896 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 290 322 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.41 1146 5574 1039 4449 86 62.9 MiB 0.08 0.00 8.72598 -178.523 -8.72598 8.72598 0.94 0.000802345 0.000737633 0.0348408 0.0321578 44 2984 34 6.79088e+06 269440 787024. 2723.27 2.27 0.196012 0.172432 27118 194962 -1 2272 13 1068 3202 158676 37137 7.64066 7.64066 -166.762 -7.64066 0 0 997811. 3452.63 0.39 0.07 0.19 -1 -1 0.39 0.0282525 0.0256427 132 196 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.50 vpr 62.86 MiB -1 -1 0.33 18768 14 0.29 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 2.67 1230 8656 2011 5349 1296 62.9 MiB 0.10 0.00 8.05712 -162.43 -8.05712 8.05712 0.70 0.000915275 0.000846462 0.0488855 0.0453141 34 3501 22 6.79088e+06 229024 618332. 2139.56 2.40 0.221884 0.193679 25102 150614 -1 2882 19 1478 4279 254219 56809 7.01061 7.01061 -156.944 -7.01061 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.033403 0.0298472 122 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 26.39 vpr 63.03 MiB -1 -1 0.35 18900 13 0.39 -1 -1 33248 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 296 328 1 223 86 17 17 289 -1 unnamed_device 24.5 MiB 2.29 1412 5945 1208 4509 228 63.0 MiB 0.07 0.00 8.26127 -169.83 -8.26127 8.26127 0.91 0.000789205 0.000711266 0.0292044 0.0267825 38 4061 49 6.79088e+06 296384 678818. 2348.85 20.17 0.429314 0.369276 25966 169698 -1 3054 18 1468 4194 243072 53943 7.25008 7.25008 -161.713 -7.25008 0 0 902133. 3121.57 0.25 0.11 0.17 -1 -1 0.25 0.0409283 0.0361058 144 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 10.97 vpr 62.31 MiB -1 -1 0.27 18188 13 0.24 -1 -1 32628 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63808 30 32 234 266 1 175 80 17 17 289 -1 unnamed_device 23.9 MiB 2.49 994 9024 2062 6050 912 62.3 MiB 0.09 0.00 7.09997 -149.654 -7.09997 7.09997 0.69 0.000780439 0.00072261 0.0442466 0.041014 34 2920 39 6.79088e+06 242496 618332. 2139.56 5.29 0.294921 0.255945 25102 150614 -1 2327 16 1113 2873 157544 36140 6.24408 6.24408 -142.611 -6.24408 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0252262 0.0226754 104 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 11.22 vpr 62.86 MiB -1 -1 0.35 18804 13 0.57 -1 -1 32512 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 291 323 1 225 84 17 17 289 -1 unnamed_device 24.4 MiB 2.19 1348 12894 3597 7190 2107 62.9 MiB 0.13 0.00 8.17676 -167.864 -8.17676 8.17676 0.92 0.000778162 0.000714319 0.0592963 0.0544819 40 3421 20 6.79088e+06 296384 706193. 2443.58 4.87 0.295216 0.257323 26254 175826 -1 3054 20 1551 4278 230843 52233 7.15617 7.15617 -160.57 -7.15617 0 0 926341. 3205.33 0.35 0.10 0.17 -1 -1 0.35 0.0382391 0.0341618 145 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 7.77 vpr 62.61 MiB -1 -1 0.35 18628 14 0.40 -1 -1 32864 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 274 306 1 205 82 17 17 289 -1 unnamed_device 24.1 MiB 1.80 1204 12542 3557 7512 1473 62.6 MiB 0.14 0.00 8.33107 -176.562 -8.33107 8.33107 0.69 0.00110373 0.00101196 0.0703722 0.0650064 42 3240 25 6.79088e+06 242496 744469. 2576.02 2.27 0.226915 0.199359 26542 182613 -1 2718 28 1215 3707 390491 157605 7.50843 7.50843 -169.791 -7.50843 0 0 949917. 3286.91 0.35 0.17 0.18 -1 -1 0.35 0.0456934 0.0405128 128 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.77 vpr 62.79 MiB -1 -1 0.33 18600 13 0.29 -1 -1 32884 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 266 298 1 196 82 17 17 289 -1 unnamed_device 24.3 MiB 1.81 1125 9516 2594 5042 1880 62.8 MiB 0.11 0.00 7.45922 -159.332 -7.45922 7.45922 0.70 0.000891689 0.000828052 0.053174 0.0493046 36 3216 28 6.79088e+06 255968 648988. 2245.63 2.62 0.246864 0.215066 25390 158009 -1 2740 19 1292 3478 212276 46752 6.87063 6.87063 -154.539 -6.87063 0 0 828058. 2865.25 0.28 0.09 0.14 -1 -1 0.28 0.0336517 0.0301958 124 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 9.57 vpr 62.73 MiB -1 -1 0.32 18444 13 0.28 -1 -1 32944 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 266 298 1 199 81 17 17 289 -1 unnamed_device 24.1 MiB 2.12 1137 12856 4036 7043 1777 62.7 MiB 0.12 0.00 7.52397 -147.14 -7.52397 7.52397 0.91 0.000667147 0.000608669 0.0529178 0.0483407 36 3458 47 6.79088e+06 255968 648988. 2245.63 3.64 0.229518 0.199899 25390 158009 -1 2745 19 1247 3357 208545 46767 6.80797 6.80797 -144.078 -6.80797 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0309557 0.0276605 121 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 10.67 vpr 63.01 MiB -1 -1 0.32 18504 14 0.45 -1 -1 32864 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 310 342 1 231 85 17 17 289 -1 unnamed_device 24.6 MiB 1.97 1451 10687 2741 6315 1631 63.0 MiB 0.12 0.00 8.72215 -179.517 -8.72215 8.72215 0.91 0.000797597 0.000733242 0.0516074 0.047343 40 4139 45 6.79088e+06 282912 706193. 2443.58 4.64 0.310954 0.27546 26254 175826 -1 3495 17 1556 4529 283982 61708 8.05226 8.05226 -177.031 -8.05226 0 0 926341. 3205.33 0.36 0.11 0.17 -1 -1 0.36 0.0381025 0.0345073 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 10.96 vpr 63.08 MiB -1 -1 0.32 18584 11 0.36 -1 -1 32796 -1 -1 23 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64592 29 32 262 294 1 201 84 17 17 289 -1 unnamed_device 24.5 MiB 2.64 1069 9783 2744 5515 1524 63.1 MiB 0.10 0.00 7.52622 -141.496 -7.52622 7.52622 0.93 0.000731747 0.000669292 0.0430224 0.0396007 42 2664 17 6.79088e+06 309856 744469. 2576.02 4.26 0.254601 0.222062 26542 182613 -1 2359 16 1197 3475 182796 42397 6.29442 6.29442 -130.592 -6.29442 0 0 949917. 3286.91 0.40 0.08 0.19 -1 -1 0.40 0.0327711 0.0297252 136 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 9.00 vpr 62.27 MiB -1 -1 0.26 18088 13 0.20 -1 -1 32636 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63768 32 32 222 254 1 182 78 17 17 289 -1 unnamed_device 23.8 MiB 3.47 943 8212 2080 5932 200 62.3 MiB 0.08 0.00 7.06068 -160.405 -7.06068 7.06068 0.80 0.000592712 0.000543175 0.0321672 0.0295739 40 2594 33 6.79088e+06 188608 706193. 2443.58 2.24 0.163109 0.141727 26254 175826 -1 2269 17 1154 2590 157482 36931 6.15454 6.15454 -152.4 -6.15454 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0256021 0.0229769 98 128 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 8.18 vpr 62.63 MiB -1 -1 0.32 18532 14 0.31 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 267 299 1 200 81 17 17 289 -1 unnamed_device 24.2 MiB 2.17 1207 6731 1642 4519 570 62.6 MiB 0.07 0.00 8.29812 -170.987 -8.29812 8.29812 0.93 0.000706103 0.000647411 0.0305307 0.0280162 36 3039 20 6.79088e+06 229024 648988. 2245.63 2.16 0.17637 0.153241 25390 158009 -1 2721 15 1109 3031 188735 41594 7.55106 7.55106 -165.336 -7.55106 0 0 828058. 2865.25 0.31 0.08 0.16 -1 -1 0.31 0.0289594 0.0261998 122 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 22.30 vpr 63.17 MiB -1 -1 0.34 18972 15 0.53 -1 -1 32880 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 334 366 1 254 87 17 17 289 -1 unnamed_device 24.6 MiB 1.95 1316 11223 3211 6360 1652 63.2 MiB 0.12 0.00 9.24101 -186.679 -9.24101 9.24101 0.91 0.000851645 0.000780783 0.055128 0.0505164 42 3711 20 6.79088e+06 309856 744469. 2576.02 16.00 0.435408 0.378951 26542 182613 -1 3090 37 2071 6119 753772 310871 8.27064 8.27064 -180.019 -8.27064 0 0 949917. 3286.91 0.26 0.28 0.18 -1 -1 0.26 0.0744131 0.0649053 163 240 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 13.24 vpr 62.20 MiB -1 -1 0.27 18004 11 0.22 -1 -1 32732 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63692 32 32 220 252 1 168 79 17 17 289 -1 unnamed_device 23.6 MiB 2.07 817 7008 1491 5366 151 62.2 MiB 0.07 0.00 6.91752 -143.632 -6.91752 6.91752 0.93 0.00054959 0.000502928 0.0267282 0.0245799 34 2714 47 6.79088e+06 202080 618332. 2139.56 7.56 0.239344 0.20604 25102 150614 -1 2153 18 997 2627 158029 36379 6.00462 6.00462 -141.222 -6.00462 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0249219 0.0222545 97 126 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 8.20 vpr 62.39 MiB -1 -1 0.26 18164 12 0.23 -1 -1 33040 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 193 80 17 17 289 -1 unnamed_device 24.0 MiB 1.88 1059 6100 1333 4406 361 62.4 MiB 0.07 0.00 6.68467 -150.19 -6.68467 6.68467 0.94 0.000646186 0.000590185 0.0272186 0.0250095 36 3260 32 6.79088e+06 229024 648988. 2245.63 2.61 0.201084 0.174032 25390 158009 -1 2741 21 1389 3766 230564 51717 6.07604 6.07604 -146.81 -6.07604 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0311693 0.027738 112 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 7.72 vpr 62.78 MiB -1 -1 0.37 18556 12 0.39 -1 -1 32716 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 300 332 1 219 83 17 17 289 -1 unnamed_device 24.4 MiB 1.54 1274 6023 1243 4416 364 62.8 MiB 0.08 0.00 7.44946 -160.947 -7.44946 7.44946 0.99 0.00083408 0.000768313 0.0326771 0.0300901 34 3606 22 6.79088e+06 255968 618332. 2139.56 2.15 0.180524 0.158187 25102 150614 -1 2972 18 1447 4280 241051 56365 6.58771 6.58771 -157.789 -6.58771 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0368941 0.0331634 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 17.49 vpr 62.70 MiB -1 -1 0.31 18572 12 0.31 -1 -1 32784 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 271 303 1 209 82 17 17 289 -1 unnamed_device 24.1 MiB 2.49 1256 11652 3336 6758 1558 62.7 MiB 0.12 0.00 7.26447 -155.226 -7.26447 7.26447 0.93 0.000721175 0.000661998 0.0516217 0.0474838 36 4201 44 6.79088e+06 242496 648988. 2245.63 10.97 0.338977 0.295314 25390 158009 -1 3279 27 1617 4914 472879 143803 6.45897 6.45897 -156.082 -6.45897 0 0 828058. 2865.25 0.33 0.17 0.16 -1 -1 0.33 0.0452081 0.0403009 130 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 8.11 vpr 63.37 MiB -1 -1 0.32 18884 14 0.59 -1 -1 32876 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 327 359 1 233 86 17 17 289 -1 unnamed_device 24.7 MiB 2.06 1311 5567 1101 4179 287 63.4 MiB 0.08 0.00 9.37625 -182.592 -9.37625 9.37625 0.70 0.00107387 0.000989485 0.0369883 0.0342768 36 3904 20 6.79088e+06 296384 648988. 2245.63 2.35 0.254102 0.220752 25390 158009 -1 3349 19 1737 5187 310549 70230 8.01661 8.01661 -171.118 -8.01661 0 0 828058. 2865.25 0.30 0.11 0.14 -1 -1 0.30 0.0386979 0.0348859 167 233 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 8.20 vpr 62.45 MiB -1 -1 0.29 18312 12 0.27 -1 -1 32700 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1038 11631 4130 5622 1879 62.4 MiB 0.10 0.00 7.09222 -139.67 -7.09222 7.09222 0.87 0.00068724 0.000619698 0.0454288 0.0417039 36 3287 50 6.79088e+06 255968 648988. 2245.63 2.79 0.217616 0.190278 25390 158009 -1 2548 17 1161 3428 213050 47469 6.32248 6.32248 -136.365 -6.32248 0 0 828058. 2865.25 0.32 0.08 0.14 -1 -1 0.32 0.0296115 0.0265807 121 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 7.28 vpr 62.45 MiB -1 -1 0.28 18076 11 0.23 -1 -1 32728 -1 -1 19 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63944 27 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.8 MiB 2.59 836 12362 3373 7574 1415 62.4 MiB 0.10 0.00 7.24312 -129.617 -7.24312 7.24312 0.93 0.000554496 0.000506579 0.0461496 0.0423387 30 2248 26 6.79088e+06 255968 556674. 1926.21 1.09 0.125485 0.110743 24526 138013 -1 1895 15 862 2117 104629 25215 6.67032 6.67032 -127.143 -6.67032 0 0 706193. 2443.58 0.28 0.05 0.13 -1 -1 0.28 0.0226841 0.020435 104 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 10.22 vpr 63.36 MiB -1 -1 0.34 19368 13 0.56 -1 -1 32840 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 380 412 1 276 90 17 17 289 -1 unnamed_device 24.8 MiB 2.08 1548 9135 2246 6246 643 63.4 MiB 0.12 0.00 8.07817 -163.002 -8.07817 8.07817 0.92 0.000925836 0.000844738 0.0489419 0.0447218 38 5159 48 6.79088e+06 350272 678818. 2348.85 3.83 0.29459 0.257593 25966 169698 -1 4012 23 2373 7378 442185 93082 7.21077 7.21077 -160.118 -7.21077 0 0 902133. 3121.57 0.34 0.15 0.15 -1 -1 0.34 0.0537651 0.0479781 188 286 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 12.34 vpr 62.79 MiB -1 -1 0.34 18768 14 0.33 -1 -1 32752 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 277 309 1 197 85 17 17 289 -1 unnamed_device 24.2 MiB 2.22 1216 5665 1120 3933 612 62.8 MiB 0.06 0.00 8.1916 -166.036 -8.1916 8.1916 0.94 0.000699667 0.000641068 0.0253644 0.0233576 30 3673 38 6.79088e+06 296384 556674. 1926.21 6.31 0.273661 0.23655 24526 138013 -1 2691 17 1263 3374 177157 40948 7.1786 7.1786 -159.83 -7.1786 0 0 706193. 2443.58 0.20 0.09 0.13 -1 -1 0.20 0.0353285 0.0312303 130 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 7.71 vpr 62.44 MiB -1 -1 0.29 18368 12 0.22 -1 -1 32428 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 229 261 1 174 82 17 17 289 -1 unnamed_device 23.8 MiB 2.07 1069 7736 1622 5709 405 62.4 MiB 0.07 0.00 7.30616 -155.25 -7.30616 7.30616 0.93 0.000586381 0.000526148 0.0292525 0.0269057 36 2843 26 6.79088e+06 242496 648988. 2245.63 1.96 0.162404 0.141893 25390 158009 -1 2382 18 1009 2530 154358 35020 6.40057 6.40057 -149.937 -6.40057 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.0272136 0.0243734 109 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 7.89 vpr 62.68 MiB -1 -1 0.31 18328 13 0.37 -1 -1 32816 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 263 295 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.75 1256 6846 1513 4068 1265 62.7 MiB 0.07 0.00 8.39101 -170.885 -8.39101 8.39101 0.89 0.000750408 0.000689168 0.0327814 0.0302346 34 3452 26 6.79088e+06 242496 618332. 2139.56 2.50 0.213662 0.185798 25102 150614 -1 2878 20 1208 3267 216114 46701 7.17511 7.17511 -165.26 -7.17511 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0340317 0.0304302 128 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 9.38 vpr 63.28 MiB -1 -1 0.32 19024 13 0.41 -1 -1 32884 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64800 31 32 321 353 1 241 87 17 17 289 -1 unnamed_device 24.8 MiB 2.14 1444 6039 1232 4262 545 63.3 MiB 0.07 0.00 7.26103 -154.941 -7.26103 7.26103 0.94 0.000804749 0.000736268 0.0305802 0.0281272 38 4542 50 6.79088e+06 323328 678818. 2348.85 3.20 0.238115 0.207076 25966 169698 -1 3378 19 1821 5285 311400 69414 6.33023 6.33023 -149.095 -6.33023 0 0 902133. 3121.57 0.32 0.12 0.17 -1 -1 0.32 0.0414425 0.0370971 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.78 vpr 62.89 MiB -1 -1 0.29 18488 11 0.32 -1 -1 32700 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 287 319 1 201 84 17 17 289 -1 unnamed_device 24.2 MiB 2.08 1252 8136 2096 4731 1309 62.9 MiB 0.08 0.00 7.13827 -144.758 -7.13827 7.13827 0.90 0.000743614 0.000681139 0.0373579 0.0343612 36 3283 20 6.79088e+06 296384 648988. 2245.63 2.86 0.194872 0.169836 25390 158009 -1 2877 19 1276 3948 242954 52761 6.12992 6.12992 -137.635 -6.12992 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0346909 0.0311072 141 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 9.43 vpr 63.06 MiB -1 -1 0.32 18704 15 0.44 -1 -1 32880 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 296 328 1 220 86 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1398 5000 1022 3623 355 63.1 MiB 0.06 0.00 8.64473 -188.25 -8.64473 8.64473 0.93 0.000767289 0.000702146 0.0247909 0.0227671 40 3355 32 6.79088e+06 296384 706193. 2443.58 3.32 0.224042 0.19452 26254 175826 -1 2950 28 1294 4282 451818 182546 7.55461 7.55461 -172.33 -7.55461 0 0 926341. 3205.33 0.36 0.18 0.18 -1 -1 0.36 0.0479167 0.0425083 147 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 8.53 vpr 62.79 MiB -1 -1 0.33 19096 13 0.42 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 285 317 1 217 85 17 17 289 -1 unnamed_device 24.2 MiB 2.54 1264 9385 2386 5811 1188 62.8 MiB 0.11 0.00 8.01335 -174.221 -8.01335 8.01335 0.72 0.000962683 0.000889147 0.0531753 0.0491125 36 3607 27 6.79088e+06 282912 648988. 2245.63 2.16 0.216254 0.189222 25390 158009 -1 2878 18 1430 4179 220789 51581 7.21431 7.21431 -169.644 -7.21431 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0352893 0.031515 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 8.80 vpr 62.43 MiB -1 -1 0.27 18008 12 0.26 -1 -1 32720 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63924 29 32 239 271 1 185 79 17 17 289 -1 unnamed_device 24.1 MiB 2.07 1082 7177 1879 4686 612 62.4 MiB 0.07 0.00 7.46481 -154.166 -7.46481 7.46481 0.91 0.000607967 0.000557624 0.0296571 0.0273055 38 2730 27 6.79088e+06 242496 678818. 2348.85 3.03 0.174597 0.152428 25966 169698 -1 2280 16 1197 2964 157668 36113 6.25871 6.25871 -141.46 -6.25871 0 0 902133. 3121.57 0.32 0.07 0.17 -1 -1 0.32 0.0267541 0.0240431 111 154 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 7.12 vpr 62.39 MiB -1 -1 0.27 18500 11 0.20 -1 -1 32692 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 32 32 235 267 1 172 78 17 17 289 -1 unnamed_device 23.8 MiB 1.79 795 3896 739 3108 49 62.4 MiB 0.04 0.00 6.53043 -137.046 -6.53043 6.53043 0.84 0.00055009 0.000500792 0.0160897 0.0148312 36 2639 49 6.79088e+06 188608 648988. 2245.63 1.91 0.136594 0.118764 25390 158009 -1 2035 16 1082 2590 153324 41983 5.86813 5.86813 -140.011 -5.86813 0 0 828058. 2865.25 0.23 0.07 0.13 -1 -1 0.23 0.0269654 0.0238294 98 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 7.18 vpr 62.98 MiB -1 -1 0.30 18264 13 0.39 -1 -1 32828 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 31 32 294 326 1 212 84 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1198 13077 3554 7195 2328 63.0 MiB 0.13 0.00 8.26103 -160.93 -8.26103 8.26103 0.70 0.000959406 0.000885136 0.0718872 0.0663778 34 3601 43 6.79088e+06 282912 618332. 2139.56 2.40 0.301497 0.262648 25102 150614 -1 3018 19 1681 5026 320277 68980 7.1863 7.1863 -154.987 -7.1863 0 0 787024. 2723.27 0.31 0.11 0.15 -1 -1 0.31 0.0358435 0.0321035 143 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 7.41 vpr 62.28 MiB -1 -1 0.29 18496 10 0.21 -1 -1 33076 -1 -1 17 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63776 29 32 219 251 1 163 78 17 17 289 -1 unnamed_device 23.7 MiB 2.43 954 8046 2043 4866 1137 62.3 MiB 0.07 0.00 6.11522 -126.764 -6.11522 6.11522 0.92 0.000546902 0.000500395 0.0306966 0.0281948 30 2468 23 6.79088e+06 229024 556674. 1926.21 1.38 0.109356 0.0963962 24526 138013 -1 2106 17 967 2467 126790 28864 5.15193 5.15193 -122.814 -5.15193 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0241945 0.0216428 101 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 9.09 vpr 62.41 MiB -1 -1 0.30 18116 14 0.24 -1 -1 32520 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 239 271 1 184 82 17 17 289 -1 unnamed_device 23.8 MiB 3.51 1162 8092 2174 5283 635 62.4 MiB 0.08 0.00 7.73405 -163.867 -7.73405 7.73405 0.84 0.00063611 0.000583833 0.0314827 0.028894 36 2886 23 6.79088e+06 242496 648988. 2245.63 2.13 0.169077 0.148008 25390 158009 -1 2458 16 1063 2846 170368 38750 6.99942 6.99942 -159.063 -6.99942 0 0 828058. 2865.25 0.32 0.07 0.15 -1 -1 0.32 0.025978 0.0233677 110 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 9.21 vpr 62.75 MiB -1 -1 0.34 18392 13 0.35 -1 -1 32960 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 266 298 1 209 83 17 17 289 -1 unnamed_device 24.1 MiB 3.19 1137 9083 2001 6216 866 62.8 MiB 0.10 0.00 8.08721 -167.06 -8.08721 8.08721 0.79 0.000880156 0.000813777 0.0481686 0.0446092 44 3009 31 6.79088e+06 269440 787024. 2723.27 2.10 0.230295 0.200715 27118 194962 -1 2661 15 1178 3055 186220 41205 6.97485 6.97485 -159.045 -6.97485 0 0 997811. 3452.63 0.38 0.08 0.19 -1 -1 0.38 0.0288145 0.026065 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 9.74 vpr 62.25 MiB -1 -1 0.27 18008 12 0.19 -1 -1 32688 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 31 32 225 257 1 172 80 17 17 289 -1 unnamed_device 23.7 MiB 4.30 1082 7476 1931 4630 915 62.3 MiB 0.07 0.00 6.65573 -144.442 -6.65573 6.65573 0.91 0.000559473 0.000513207 0.027813 0.0255458 34 2733 25 6.79088e+06 229024 618332. 2139.56 1.86 0.132792 0.115807 25102 150614 -1 2335 17 1128 2808 161808 36257 5.74283 5.74283 -138.491 -5.74283 0 0 787024. 2723.27 0.32 0.07 0.14 -1 -1 0.32 0.025611 0.0230853 99 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 16.04 vpr 62.64 MiB -1 -1 0.30 18608 12 0.26 -1 -1 32936 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 32 32 288 320 1 203 82 17 17 289 -1 unnamed_device 24.1 MiB 2.42 1119 6134 1379 4379 376 62.6 MiB 0.07 0.00 7.01038 -154.061 -7.01038 7.01038 0.90 0.000712978 0.000653405 0.0291071 0.0267523 34 3311 47 6.79088e+06 242496 618332. 2139.56 9.88 0.309925 0.266544 25102 150614 -1 2725 17 1276 3641 215066 48485 6.07958 6.07958 -149.641 -6.07958 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0366667 0.0331074 130 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 10.22 vpr 62.75 MiB -1 -1 0.33 18504 13 0.38 -1 -1 32792 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64260 31 32 282 314 1 212 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 1249 12503 3919 6242 2342 62.8 MiB 0.13 0.00 7.84749 -165.919 -7.84749 7.84749 0.94 0.000723857 0.000655277 0.0581262 0.0531614 40 3057 25 6.79088e+06 269440 706193. 2443.58 4.73 0.287735 0.250087 26254 175826 -1 2812 18 1286 3755 217406 48604 6.89412 6.89412 -158.373 -6.89412 0 0 926341. 3205.33 0.36 0.09 0.16 -1 -1 0.36 0.0349155 0.0314226 143 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 15.68 vpr 62.43 MiB -1 -1 0.26 18384 11 0.22 -1 -1 32668 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 233 265 1 183 80 17 17 289 -1 unnamed_device 23.7 MiB 2.45 975 11260 3989 5096 2175 62.4 MiB 0.10 0.00 6.23648 -144.813 -6.23648 6.23648 0.93 0.000589034 0.000537835 0.0426305 0.0390411 34 3281 44 6.79088e+06 215552 618332. 2139.56 9.57 0.295841 0.256494 25102 150614 -1 2587 18 1413 3678 230062 52485 5.5714 5.5714 -143.91 -5.5714 0 0 787024. 2723.27 0.31 0.08 0.14 -1 -1 0.31 0.0269465 0.0240967 106 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 10.24 vpr 62.48 MiB -1 -1 0.32 18368 13 0.28 -1 -1 32688 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 254 286 1 188 79 17 17 289 -1 unnamed_device 23.9 MiB 3.14 1138 8360 2130 5255 975 62.5 MiB 0.08 0.00 7.72657 -166.89 -7.72657 7.72657 0.93 0.000665811 0.000610941 0.0367096 0.0337299 38 3065 46 6.79088e+06 202080 678818. 2348.85 3.25 0.210491 0.183052 25966 169698 -1 2590 15 1182 3141 185601 42452 6.83149 6.83149 -159.702 -6.83149 0 0 902133. 3121.57 0.34 0.08 0.16 -1 -1 0.34 0.0280473 0.025386 113 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 9.86 vpr 62.64 MiB -1 -1 0.30 18448 13 0.33 -1 -1 32768 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 285 317 1 214 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 1313 11963 3400 6650 1913 62.6 MiB 0.12 0.00 7.85887 -174.519 -7.85887 7.85887 0.92 0.000723423 0.000663013 0.051854 0.0475982 30 4568 41 6.79088e+06 255968 556674. 1926.21 4.34 0.207725 0.182187 24526 138013 -1 3314 37 2252 6875 999408 364248 7.16049 7.16049 -172.992 -7.16049 0 0 706193. 2443.58 0.29 0.31 0.13 -1 -1 0.29 0.0548914 0.0483358 136 191 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 10.20 vpr 62.48 MiB -1 -1 0.30 18340 11 0.25 -1 -1 33380 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63984 29 32 243 275 1 184 80 17 17 289 -1 unnamed_device 24.1 MiB 2.57 1115 11432 3871 5660 1901 62.5 MiB 0.10 0.00 6.26054 -131.434 -6.26054 6.26054 0.92 0.000637572 0.000580413 0.0449877 0.041299 32 3450 38 6.79088e+06 255968 586450. 2029.24 3.80 0.211524 0.185208 24814 144142 -1 2759 29 1359 4135 503533 219937 5.38344 5.38344 -128.617 -5.38344 0 0 744469. 2576.02 0.30 0.18 0.14 -1 -1 0.30 0.0401545 0.0352924 116 158 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 8.70 vpr 63.20 MiB -1 -1 0.37 19156 14 0.42 -1 -1 33280 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 318 350 1 238 87 17 17 289 -1 unnamed_device 24.7 MiB 1.90 1385 10647 2557 6767 1323 63.2 MiB 0.12 0.00 8.80331 -192.733 -8.80331 8.80331 0.95 0.000875937 0.000803326 0.0555745 0.0512055 30 3986 28 6.79088e+06 309856 556674. 1926.21 2.67 0.196692 0.173874 24526 138013 -1 3287 25 1652 4416 358935 112256 7.64841 7.64841 -182.338 -7.64841 0 0 706193. 2443.58 0.29 0.14 0.13 -1 -1 0.29 0.0468679 0.041524 159 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 8.33 vpr 62.17 MiB -1 -1 0.25 18064 12 0.20 -1 -1 32596 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63660 31 32 222 254 1 188 82 17 17 289 -1 unnamed_device 23.5 MiB 2.49 1086 12186 3312 7382 1492 62.2 MiB 0.11 0.00 6.63439 -153.849 -6.63439 6.63439 0.70 0.00071765 0.000664552 0.0526725 0.0487687 36 2846 49 6.79088e+06 255968 648988. 2245.63 2.41 0.228161 0.199226 25390 158009 -1 2437 33 1072 2571 376675 195933 5.95079 5.95079 -144.138 -5.95079 0 0 828058. 2865.25 0.32 0.16 0.15 -1 -1 0.32 0.0386622 0.0340308 106 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 9.17 vpr 62.73 MiB -1 -1 0.35 18964 13 0.38 -1 -1 32760 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 282 314 1 211 84 17 17 289 -1 unnamed_device 24.2 MiB 1.85 1327 11796 3119 6792 1885 62.7 MiB 0.12 0.00 8.16138 -171.4 -8.16138 8.16138 0.92 0.000719375 0.000648264 0.0507161 0.0462105 36 3956 26 6.79088e+06 269440 648988. 2245.63 3.44 0.236832 0.207523 25390 158009 -1 3187 17 1433 4001 259798 57176 7.16403 7.16403 -164.055 -7.16403 0 0 828058. 2865.25 0.32 0.10 0.15 -1 -1 0.32 0.0325979 0.0292985 136 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 7.58 vpr 62.49 MiB -1 -1 0.36 18660 13 0.23 -1 -1 32480 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63988 32 32 238 270 1 180 84 17 17 289 -1 unnamed_device 23.8 MiB 1.44 1047 11613 3365 5842 2406 62.5 MiB 0.10 0.00 7.82359 -169.628 -7.82359 7.82359 0.94 0.000621893 0.000571276 0.043279 0.0397169 34 2917 35 6.79088e+06 269440 618332. 2139.56 2.24 0.219758 0.191225 25102 150614 -1 2615 29 1144 2872 308053 119343 6.96366 6.96366 -168.165 -6.96366 0 0 787024. 2723.27 0.32 0.13 0.15 -1 -1 0.32 0.0372144 0.0328699 107 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 8.43 vpr 62.79 MiB -1 -1 0.33 18620 12 0.28 -1 -1 32756 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 269 301 1 190 83 17 17 289 -1 unnamed_device 24.3 MiB 2.01 1272 8543 2219 5545 779 62.8 MiB 0.08 0.00 7.47927 -162.601 -7.47927 7.47927 0.92 0.000673041 0.000614387 0.0362025 0.0331875 30 3408 29 6.79088e+06 255968 556674. 1926.21 2.55 0.144967 0.127153 24526 138013 -1 2718 21 1487 4408 233239 51727 6.49119 6.49119 -152.452 -6.49119 0 0 706193. 2443.58 0.29 0.10 0.13 -1 -1 0.29 0.0362875 0.0323234 128 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 11.12 vpr 63.34 MiB -1 -1 0.37 19416 15 0.61 -1 -1 33132 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 350 382 1 256 89 17 17 289 -1 unnamed_device 24.7 MiB 1.49 1539 10979 3042 6587 1350 63.3 MiB 0.14 0.00 9.52142 -198.607 -9.52142 9.52142 0.93 0.000929602 0.000846144 0.0579536 0.0531094 40 3981 34 6.79088e+06 336800 706193. 2443.58 5.18 0.36752 0.31908 26254 175826 -1 3630 18 1831 5571 321249 71704 8.30641 8.30641 -186.762 -8.30641 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.043445 0.0392231 183 256 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 6.10 vpr 62.07 MiB -1 -1 0.24 17804 10 0.12 -1 -1 32588 -1 -1 11 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63564 30 32 174 206 1 133 73 17 17 289 -1 unnamed_device 23.4 MiB 1.66 627 9953 2899 5238 1816 62.1 MiB 0.08 0.00 4.79366 -113.325 -4.79366 4.79366 0.69 0.000611219 0.000552495 0.040939 0.0379968 34 1806 22 6.79088e+06 148192 618332. 2139.56 1.45 0.158892 0.138309 25102 150614 -1 1545 19 753 1638 89570 22707 4.46806 4.46806 -114.237 -4.46806 0 0 787024. 2723.27 0.31 0.05 0.15 -1 -1 0.31 0.0202048 0.0179771 65 86 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.08 vpr 62.48 MiB -1 -1 0.27 18200 13 0.21 -1 -1 32776 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63984 30 32 228 260 1 176 79 17 17 289 -1 unnamed_device 23.8 MiB 1.73 1062 12416 3908 6746 1762 62.5 MiB 0.10 0.00 7.81527 -160.852 -7.81527 7.81527 0.91 0.000496334 0.000454449 0.0459563 0.0421367 34 2798 28 6.79088e+06 229024 618332. 2139.56 1.71 0.152407 0.135043 25102 150614 -1 2416 18 1048 2611 156418 34671 6.83498 6.83498 -156.877 -6.83498 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0271021 0.0243576 103 140 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.58 vpr 63.04 MiB -1 -1 0.29 18464 12 0.25 -1 -1 32664 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 264 296 1 200 82 17 17 289 -1 unnamed_device 24.3 MiB 2.11 1159 7736 1879 5232 625 63.0 MiB 0.09 0.00 7.13237 -158.608 -7.13237 7.13237 0.89 0.000908974 0.000842372 0.0422264 0.0391491 34 3393 22 6.79088e+06 242496 618332. 2139.56 2.82 0.2217 0.194334 25102 150614 -1 2708 28 1675 4296 402761 135185 6.16568 6.16568 -154.573 -6.16568 0 0 787024. 2723.27 0.22 0.16 0.14 -1 -1 0.22 0.0469648 0.0408325 117 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 5.49 vpr 62.24 MiB -1 -1 0.26 18016 9 0.16 -1 -1 32440 -1 -1 18 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63732 25 32 183 215 1 134 75 17 17 289 -1 unnamed_device 23.7 MiB 0.85 683 6711 1744 4492 475 62.2 MiB 0.08 0.00 5.04099 -94.9896 -5.04099 5.04099 0.75 0.000736324 0.000676289 0.0347012 0.0319251 28 2230 24 6.79088e+06 242496 531479. 1839.03 1.42 0.122122 0.107444 23950 126010 -1 1901 18 885 2477 160823 36744 4.52189 4.52189 -101.908 -4.52189 0 0 648988. 2245.63 0.28 0.07 0.13 -1 -1 0.28 0.0233805 0.0208706 86 110 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 8.80 vpr 62.78 MiB -1 -1 0.34 18604 12 0.33 -1 -1 32948 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 300 332 1 226 85 17 17 289 -1 unnamed_device 24.1 MiB 2.02 1287 10501 2542 6098 1861 62.8 MiB 0.11 0.00 7.44518 -164.845 -7.44518 7.44518 0.97 0.000773113 0.000709914 0.0479065 0.0440197 44 3363 28 6.79088e+06 282912 787024. 2723.27 2.61 0.198554 0.174825 27118 194962 -1 2847 17 1472 4058 228464 50700 6.41977 6.41977 -157.388 -6.41977 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.033861 0.030414 143 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 16.76 vpr 62.88 MiB -1 -1 0.36 19120 13 0.39 -1 -1 32716 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 31 32 290 322 1 215 85 17 17 289 -1 unnamed_device 24.4 MiB 2.35 1313 6409 1340 4499 570 62.9 MiB 0.07 0.00 8.4064 -173.711 -8.4064 8.4064 0.68 0.000773755 0.000710694 0.0311119 0.0286577 32 3849 49 6.79088e+06 296384 586450. 2029.24 10.58 0.373109 0.324684 24814 144142 -1 3135 16 1379 3947 242503 54516 7.719 7.719 -169.153 -7.719 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.0337108 0.0304165 147 199 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 8.73 vpr 62.97 MiB -1 -1 0.21 18324 1 0.03 -1 -1 30396 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 354 285 1 207 90 17 17 289 -1 unnamed_device 24.3 MiB 4.00 991 16773 4981 8552 3240 63.0 MiB 0.15 0.00 5.46262 -158.993 -5.46262 5.46262 0.94 0.000543364 0.000488362 0.0481903 0.0443013 30 2828 34 6.87369e+06 363320 556674. 1926.21 1.30 0.149292 0.13115 25186 138497 -1 1951 21 1455 2342 135152 34327 4.306 4.306 -144.582 -4.306 0 0 706193. 2443.58 0.21 0.08 0.12 -1 -1 0.21 0.029533 0.025773 142 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 8.87 vpr 63.06 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 30 32 363 293 1 200 86 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1105 15395 5029 8642 1724 63.1 MiB 0.14 0.00 4.6569 -139.628 -4.6569 4.6569 0.97 0.000534729 0.000490994 0.0467849 0.0429949 34 2695 25 6.87369e+06 335372 618332. 2139.56 1.72 0.163693 0.142562 25762 151098 -1 2197 22 1654 2507 193950 43200 4.24636 4.24636 -143.231 -4.24636 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0275301 0.0242885 141 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 8.31 vpr 62.73 MiB -1 -1 0.20 18412 1 0.03 -1 -1 30284 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 24.2 MiB 3.22 973 9571 2499 6619 453 62.7 MiB 0.09 0.00 4.36457 -122.38 -4.36457 4.36457 0.99 0.000454751 0.000414591 0.0271673 0.024924 34 2322 20 6.87369e+06 293451 618332. 2139.56 1.59 0.126951 0.109756 25762 151098 -1 2012 17 1182 1625 111835 26801 3.67436 3.67436 -120.859 -3.67436 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.020418 0.0180815 124 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 6.12 vpr 62.60 MiB -1 -1 0.21 18416 1 0.03 -1 -1 30284 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 308 248 1 172 90 17 17 289 -1 unnamed_device 24.1 MiB 1.24 962 13557 3889 7576 2092 62.6 MiB 0.14 0.00 4.63038 -127.857 -4.63038 4.63038 0.91 0.000445092 0.000402489 0.0495769 0.0459703 34 2156 21 6.87369e+06 405241 618332. 2139.56 1.37 0.176419 0.153855 25762 151098 -1 1820 24 1397 2685 178804 41405 3.6601 3.6601 -117.964 -3.6601 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0259061 0.0226506 124 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.97 vpr 62.91 MiB -1 -1 0.19 18368 1 0.03 -1 -1 30392 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 336 268 1 181 91 17 17 289 -1 unnamed_device 24.3 MiB 1.64 1039 17023 5711 8892 2420 62.9 MiB 0.15 0.00 4.54412 -133.694 -4.54412 4.54412 0.95 0.000512852 0.00046912 0.0460693 0.0420378 34 2591 23 6.87369e+06 377294 618332. 2139.56 1.74 0.160028 0.139073 25762 151098 -1 2220 23 1597 3133 228664 51110 3.4505 3.4505 -125.872 -3.4505 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0259995 0.0228081 131 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 5.58 vpr 63.05 MiB -1 -1 0.20 18392 1 0.03 -1 -1 30292 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 366 295 1 189 94 17 17 289 -1 unnamed_device 24.5 MiB 1.43 1055 17134 4716 10280 2138 63.1 MiB 0.15 0.00 3.30607 -118.576 -3.30607 3.30607 0.89 0.000572998 0.000525559 0.0488894 0.0448968 30 2419 18 6.87369e+06 419215 556674. 1926.21 0.97 0.120104 0.106482 25186 138497 -1 1992 20 1192 2027 120521 27314 2.73471 2.73471 -114.003 -2.73471 0 0 706193. 2443.58 0.27 0.07 0.14 -1 -1 0.27 0.0254076 0.0224561 136 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 7.78 vpr 62.53 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30632 -1 -1 19 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 27 32 259 221 1 141 78 17 17 289 -1 unnamed_device 23.8 MiB 2.83 598 11532 3252 7421 859 62.5 MiB 0.10 0.00 3.87934 -104.974 -3.87934 3.87934 0.96 0.000427602 0.000392384 0.032205 0.029626 34 1497 24 6.87369e+06 265503 618332. 2139.56 1.54 0.121918 0.105568 25762 151098 -1 1287 18 953 1602 85380 22033 2.92396 2.92396 -98.9741 -2.92396 0 0 787024. 2723.27 0.23 0.06 0.15 -1 -1 0.23 0.0213646 0.0186532 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 6.11 vpr 62.63 MiB -1 -1 0.19 18088 1 0.03 -1 -1 30160 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64132 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 24.0 MiB 1.07 978 15431 4433 8823 2175 62.6 MiB 0.13 0.00 3.50695 -106.713 -3.50695 3.50695 0.97 0.000441497 0.000405185 0.0354616 0.0326145 34 2082 21 6.87369e+06 447163 618332. 2139.56 1.52 0.1323 0.115503 25762 151098 -1 1854 20 977 1717 122343 26763 2.57636 2.57636 -96.7503 -2.57636 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0211767 0.01863 119 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 7.56 vpr 62.55 MiB -1 -1 0.21 18308 1 0.03 -1 -1 30096 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 317 271 1 175 80 17 17 289 -1 unnamed_device 24.0 MiB 2.86 916 12980 4301 6644 2035 62.6 MiB 0.12 0.00 3.30197 -112.934 -3.30197 3.30197 0.73 0.000656486 0.000609729 0.0521891 0.0484932 34 2192 21 6.87369e+06 237555 618332. 2139.56 1.46 0.17431 0.152487 25762 151098 -1 1936 18 1092 1608 122351 28010 3.3068 3.3068 -124.322 -3.3068 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0207374 0.0182478 113 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 9.22 vpr 62.51 MiB -1 -1 0.19 18404 1 0.03 -1 -1 30184 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 298 248 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 4.17 944 11432 3128 6967 1337 62.5 MiB 0.10 0.00 4.11183 -135.597 -4.11183 4.11183 0.97 0.00043579 0.000398794 0.033074 0.0304309 34 2063 20 6.87369e+06 223581 618332. 2139.56 1.57 0.137055 0.119979 25762 151098 -1 1886 18 1148 1905 158016 35295 2.95396 2.95396 -120.687 -2.95396 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0204882 0.0180698 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 8.22 vpr 62.57 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30312 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 303 262 1 148 78 17 17 289 -1 unnamed_device 24.0 MiB 3.66 698 4228 848 3032 348 62.6 MiB 0.05 0.00 4.05863 -116.721 -4.05863 4.05863 0.75 0.000724855 0.000666782 0.0158652 0.014604 34 1788 20 6.87369e+06 223581 618332. 2139.56 1.63 0.123568 0.107401 25762 151098 -1 1574 19 926 1521 98732 23286 2.85216 2.85216 -106.256 -2.85216 0 0 787024. 2723.27 0.26 0.06 0.14 -1 -1 0.26 0.0209917 0.0183804 98 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 7.93 vpr 62.41 MiB -1 -1 0.18 18292 1 0.03 -1 -1 30044 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.9 MiB 2.92 793 8131 1974 5384 773 62.4 MiB 0.08 0.00 3.6704 -113.179 -3.6704 3.6704 0.98 0.00044838 0.000413095 0.0239288 0.0220654 34 1974 23 6.87369e+06 237555 618332. 2139.56 1.55 0.121241 0.10481 25762 151098 -1 1726 17 899 1285 87628 20887 3.16791 3.16791 -115.412 -3.16791 0 0 787024. 2723.27 0.33 0.05 0.15 -1 -1 0.33 0.020885 0.0187121 107 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 9.38 vpr 62.77 MiB -1 -1 0.19 18332 1 0.04 -1 -1 30244 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 4.20 837 15063 3948 9014 2101 62.8 MiB 0.14 0.00 4.17399 -130.445 -4.17399 4.17399 0.89 0.000444468 0.000406113 0.0441788 0.0406516 36 2576 31 6.87369e+06 321398 648988. 2245.63 1.77 0.170728 0.149739 26050 158493 -1 2115 19 1765 2717 193883 48484 3.62551 3.62551 -133.641 -3.62551 0 0 828058. 2865.25 0.32 0.08 0.15 -1 -1 0.32 0.0258259 0.0230754 142 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 7.80 vpr 62.90 MiB -1 -1 0.20 18288 1 0.04 -1 -1 30360 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 363 295 1 181 95 17 17 289 -1 unnamed_device 24.3 MiB 3.02 872 16727 4869 9293 2565 62.9 MiB 0.17 0.00 4.77648 -139.073 -4.77648 4.77648 0.97 0.000564603 0.000518639 0.0528097 0.0486078 30 2490 24 6.87369e+06 433189 556674. 1926.21 1.19 0.135636 0.12033 25186 138497 -1 1883 19 1342 2199 140123 33008 4.01576 4.01576 -135.5 -4.01576 0 0 706193. 2443.58 0.30 0.07 0.14 -1 -1 0.30 0.024558 0.0217232 133 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 6.44 vpr 62.41 MiB -1 -1 0.18 17900 1 0.03 -1 -1 30380 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 29 32 248 215 1 142 80 17 17 289 -1 unnamed_device 24.0 MiB 2.04 782 10916 2876 6758 1282 62.4 MiB 0.08 0.00 3.26207 -99.6514 -3.26207 3.26207 0.96 0.000390751 0.000357461 0.027572 0.0253556 32 1855 24 6.87369e+06 265503 586450. 2029.24 1.00 0.0824413 0.0722502 25474 144626 -1 1578 21 879 1356 88158 21174 2.95731 2.95731 -100.063 -2.95731 0 0 744469. 2576.02 0.32 0.06 0.15 -1 -1 0.32 0.0209409 0.0184641 94 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.60 vpr 62.94 MiB -1 -1 0.21 18280 1 0.03 -1 -1 30288 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 370 297 1 191 88 17 17 289 -1 unnamed_device 24.4 MiB 2.31 1043 16273 5726 7876 2671 62.9 MiB 0.16 0.00 3.8137 -126.628 -3.8137 3.8137 0.75 0.000728261 0.000674021 0.0640963 0.0593989 32 2907 44 6.87369e+06 335372 586450. 2029.24 1.15 0.183569 0.161734 25474 144626 -1 2129 22 1593 2762 197192 46625 3.35021 3.35021 -124.007 -3.35021 0 0 744469. 2576.02 0.31 0.09 0.13 -1 -1 0.31 0.0281913 0.0246982 135 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 9.96 vpr 62.86 MiB -1 -1 0.19 18356 1 0.03 -1 -1 30108 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 338 269 1 204 85 17 17 289 -1 unnamed_device 24.4 MiB 4.84 1087 9571 2614 6264 693 62.9 MiB 0.10 0.00 4.17947 -136.952 -4.17947 4.17947 0.94 0.000610178 0.000564544 0.0295042 0.0271799 34 2486 22 6.87369e+06 293451 618332. 2139.56 1.65 0.155902 0.136746 25762 151098 -1 2205 23 1435 2128 158845 35674 2.99631 2.99631 -118.95 -2.99631 0 0 787024. 2723.27 0.32 0.08 0.14 -1 -1 0.32 0.0274267 0.0242509 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 7.27 vpr 62.68 MiB -1 -1 0.17 18236 1 0.03 -1 -1 30284 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 323 276 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 2.44 699 8993 2148 6078 767 62.7 MiB 0.09 0.00 3.09156 -107.654 -3.09156 3.09156 0.95 0.00067472 0.000626473 0.031682 0.0293921 34 1849 22 6.87369e+06 391268 618332. 2139.56 1.52 0.1393 0.120947 25762 151098 -1 1525 21 1026 1682 105377 25970 2.18787 2.18787 -97.3898 -2.18787 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.023502 0.0205767 109 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.88 vpr 62.10 MiB -1 -1 0.17 18184 1 0.03 -1 -1 30204 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63588 30 32 222 206 1 117 76 17 17 289 -1 unnamed_device 23.5 MiB 0.65 552 9196 3320 4707 1169 62.1 MiB 0.06 0.00 2.58823 -85.0004 -2.58823 2.58823 0.95 0.000386492 0.000354441 0.0236208 0.0217415 30 1296 20 6.87369e+06 195634 556674. 1926.21 0.92 0.0714714 0.062557 25186 138497 -1 1079 19 533 777 51739 12120 1.94352 1.94352 -83.1698 -1.94352 0 0 706193. 2443.58 0.30 0.04 0.14 -1 -1 0.30 0.0173415 0.0152182 71 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 9.71 vpr 62.68 MiB -1 -1 0.18 18284 1 0.03 -1 -1 30452 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 31 32 291 243 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 3.28 952 10940 3346 6666 928 62.7 MiB 0.11 0.00 5.00887 -150.561 -5.00887 5.00887 0.74 0.000684016 0.000637155 0.0400268 0.0370485 36 2050 41 6.87369e+06 265503 648988. 2245.63 3.33 0.236115 0.203739 26050 158493 -1 1883 23 1144 1693 113869 27664 4.03806 4.03806 -144.813 -4.03806 0 0 828058. 2865.25 0.33 0.07 0.16 -1 -1 0.33 0.0239669 0.0209664 116 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.60 vpr 62.88 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30324 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 342 271 1 181 99 17 17 289 -1 unnamed_device 24.3 MiB 1.05 1087 17427 4758 10581 2088 62.9 MiB 0.14 0.00 4.24609 -138.045 -4.24609 4.24609 0.94 0.000538791 0.000493607 0.0450423 0.0412069 32 2338 22 6.87369e+06 489084 586450. 2029.24 1.05 0.114017 0.100235 25474 144626 -1 2018 20 1263 1975 129246 29138 3.4115 3.4115 -128.259 -3.4115 0 0 744469. 2576.02 0.33 0.07 0.15 -1 -1 0.33 0.028625 0.0254017 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 7.89 vpr 62.93 MiB -1 -1 0.23 18572 1 0.03 -1 -1 30400 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 372 300 1 206 86 17 17 289 -1 unnamed_device 24.3 MiB 2.55 1158 12938 3721 7732 1485 62.9 MiB 0.13 0.00 4.29925 -134.625 -4.29925 4.29925 0.98 0.000595223 0.000547774 0.0423914 0.0389705 34 2723 22 6.87369e+06 307425 618332. 2139.56 1.71 0.168932 0.147735 25762 151098 -1 2307 17 1332 2176 174839 37737 3.65736 3.65736 -130.994 -3.65736 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0233399 0.0206215 142 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 6.47 vpr 62.12 MiB -1 -1 0.15 18116 1 0.03 -1 -1 30588 -1 -1 17 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63612 26 32 190 182 1 108 75 17 17 289 -1 unnamed_device 23.5 MiB 2.15 354 9555 3920 4765 870 62.1 MiB 0.06 0.00 2.60613 -72.0813 -2.60613 2.60613 0.97 0.000352119 0.000323682 0.0210558 0.019282 30 1232 32 6.87369e+06 237555 556674. 1926.21 0.99 0.0703423 0.0612674 25186 138497 -1 874 22 615 899 53669 14593 2.25347 2.25347 -72.1647 -2.25347 0 0 706193. 2443.58 0.30 0.04 0.13 -1 -1 0.30 0.0161291 0.0141705 67 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 6.26 vpr 62.61 MiB -1 -1 0.20 18028 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.0 MiB 1.22 1058 9111 2260 6245 606 62.6 MiB 0.09 0.00 4.50666 -128.623 -4.50666 4.50666 0.93 0.000476817 0.000439261 0.024636 0.0226817 34 2266 26 6.87369e+06 321398 618332. 2139.56 1.58 0.140658 0.121824 25762 151098 -1 2045 21 1290 2322 172554 38975 3.8174 3.8174 -127.822 -3.8174 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0262661 0.0233883 119 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.74 vpr 61.96 MiB -1 -1 0.15 17808 1 0.03 -1 -1 30092 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63448 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.5 MiB 0.52 446 9836 2914 4955 1967 62.0 MiB 0.06 0.00 2.58823 -76.6987 -2.58823 2.58823 0.99 0.000296575 0.00027058 0.0207008 0.0189365 28 1281 34 6.87369e+06 167686 531479. 1839.03 0.93 0.0693975 0.0605876 24610 126494 -1 1087 18 611 732 64057 17772 1.89957 1.89957 -77.9358 -1.89957 0 0 648988. 2245.63 0.26 0.04 0.12 -1 -1 0.26 0.0132403 0.0116654 65 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.41 vpr 62.67 MiB -1 -1 0.20 18372 1 0.03 -1 -1 30044 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 300 245 1 169 94 17 17 289 -1 unnamed_device 24.2 MiB 1.07 1001 15430 4006 9830 1594 62.7 MiB 0.14 0.00 4.66212 -132.229 -4.66212 4.66212 0.75 0.000629795 0.00058451 0.0485885 0.0450734 32 2244 25 6.87369e+06 419215 586450. 2029.24 0.93 0.133771 0.118149 25474 144626 -1 1840 19 872 1396 92087 20677 3.6308 3.6308 -121.798 -3.6308 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0227221 0.020207 120 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 5.76 vpr 62.66 MiB -1 -1 0.18 18096 1 0.03 -1 -1 30432 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1076 17591 5379 9750 2462 62.7 MiB 0.16 0.00 3.49633 -112.341 -3.49633 3.49633 0.70 0.000642713 0.000595687 0.056058 0.0519494 34 2244 18 6.87369e+06 433189 618332. 2139.56 1.34 0.181108 0.158724 25762 151098 -1 1949 21 1145 2076 114649 28025 2.82496 2.82496 -105.607 -2.82496 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0249505 0.0220486 130 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 7.80 vpr 62.82 MiB -1 -1 0.19 18228 1 0.04 -1 -1 30300 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 338 277 1 186 92 17 17 289 -1 unnamed_device 24.3 MiB 2.17 1002 15824 5356 7353 3115 62.8 MiB 0.12 0.00 4.71758 -131.299 -4.71758 4.71758 0.98 0.000549798 0.000495071 0.0436658 0.0401033 34 2670 20 6.87369e+06 391268 618332. 2139.56 1.99 0.188635 0.168006 25762 151098 -1 2049 19 1277 2263 165916 38693 3.70416 3.70416 -123.858 -3.70416 0 0 787024. 2723.27 0.31 0.08 0.16 -1 -1 0.31 0.0245422 0.0216905 131 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 5.91 vpr 62.42 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30092 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 284 241 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.15 723 7304 1770 4913 621 62.4 MiB 0.08 0.00 3.24007 -108.229 -3.24007 3.24007 0.76 0.00061912 0.00057339 0.0290331 0.0269052 34 1848 21 6.87369e+06 223581 618332. 2139.56 1.54 0.130989 0.113765 25762 151098 -1 1576 23 942 1661 112566 25723 2.66866 2.66866 -104.598 -2.66866 0 0 787024. 2723.27 0.34 0.07 0.16 -1 -1 0.34 0.0250179 0.0220309 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 5.73 vpr 62.30 MiB -1 -1 0.20 18004 1 0.03 -1 -1 30080 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63792 30 32 262 227 1 138 88 17 17 289 -1 unnamed_device 23.8 MiB 1.31 669 13738 3602 8368 1768 62.3 MiB 0.13 0.00 3.22907 -99.5149 -3.22907 3.22907 1.02 0.000470399 0.000431793 0.0439846 0.0404799 30 1623 18 6.87369e+06 363320 556674. 1926.21 1.03 0.107951 0.0960493 25186 138497 -1 1326 21 858 1419 92180 21062 2.71316 2.71316 -92.9909 -2.71316 0 0 706193. 2443.58 0.21 0.06 0.13 -1 -1 0.21 0.0243193 0.0210704 97 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 5.71 vpr 62.38 MiB -1 -1 0.19 18316 1 0.03 -1 -1 30144 -1 -1 18 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 28 32 260 223 1 140 78 17 17 289 -1 unnamed_device 23.9 MiB 1.06 758 11698 3516 6781 1401 62.4 MiB 0.09 0.00 3.63766 -102.515 -3.63766 3.63766 1.07 0.000430744 0.00039811 0.0310479 0.0285522 32 1836 29 6.87369e+06 251529 586450. 2029.24 1.04 0.0929464 0.0817038 25474 144626 -1 1522 21 936 1721 109342 25647 2.92831 2.92831 -100.53 -2.92831 0 0 744469. 2576.02 0.30 0.06 0.14 -1 -1 0.30 0.0195783 0.0171097 95 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.01 vpr 62.32 MiB -1 -1 0.19 17912 1 0.03 -1 -1 30308 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.86 760 11106 3371 5478 2257 62.3 MiB 0.08 0.00 4.03537 -119.574 -4.03537 4.03537 0.90 0.000392829 0.000359746 0.0277312 0.0254122 32 1910 22 6.87369e+06 237555 586450. 2029.24 0.93 0.0802228 0.0706582 25474 144626 -1 1584 22 1107 1860 121303 28881 2.77366 2.77366 -109.989 -2.77366 0 0 744469. 2576.02 0.28 0.06 0.13 -1 -1 0.28 0.019416 0.0170057 101 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 5.42 vpr 62.47 MiB -1 -1 0.20 18200 1 0.03 -1 -1 30524 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 31 32 271 231 1 149 89 17 17 289 -1 unnamed_device 23.9 MiB 1.08 713 5831 1066 4417 348 62.5 MiB 0.06 0.00 3.5993 -106.942 -3.5993 3.5993 0.92 0.000443437 0.000407781 0.0146419 0.0134571 28 2011 22 6.87369e+06 363320 531479. 1839.03 1.05 0.0777515 0.0680675 24610 126494 -1 1688 22 1170 1950 134126 33030 3.01056 3.01056 -109.307 -3.01056 0 0 648988. 2245.63 0.26 0.07 0.11 -1 -1 0.26 0.0225039 0.0198141 102 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 8.32 vpr 62.66 MiB -1 -1 0.19 18176 1 0.03 -1 -1 30484 -1 -1 25 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 291 250 1 154 86 17 17 289 -1 unnamed_device 24.3 MiB 3.71 706 8402 1995 5635 772 62.7 MiB 0.08 0.00 3.04756 -96.0841 -3.04756 3.04756 1.00 0.000469111 0.000420224 0.0231297 0.0212327 30 1803 22 6.87369e+06 349346 556674. 1926.21 1.00 0.0867918 0.0757589 25186 138497 -1 1489 21 913 1418 77368 19017 2.25817 2.25817 -91.9004 -2.25817 0 0 706193. 2443.58 0.30 0.07 0.14 -1 -1 0.30 0.0295516 0.0258006 106 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 9.01 vpr 63.00 MiB -1 -1 0.20 18388 1 0.03 -1 -1 30440 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 367 282 1 201 104 17 17 289 -1 unnamed_device 24.4 MiB 4.26 1199 12548 3440 7715 1393 63.0 MiB 0.13 0.00 4.16289 -124.152 -4.16289 4.16289 0.98 0.000626427 0.00057752 0.0335717 0.0308527 32 2848 24 6.87369e+06 558954 586450. 2029.24 1.12 0.115012 0.101174 25474 144626 -1 2319 22 1340 2629 170271 38955 3.4898 3.4898 -121.63 -3.4898 0 0 744469. 2576.02 0.32 0.10 0.14 -1 -1 0.32 0.039208 0.0347531 156 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 9.14 vpr 62.94 MiB -1 -1 0.22 18216 1 0.03 -1 -1 30256 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 391 311 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 3.80 1019 17476 4989 10107 2380 62.9 MiB 0.15 0.00 3.96554 -133.621 -3.96554 3.96554 0.98 0.000633302 0.000582272 0.0479079 0.0438798 34 2284 20 6.87369e+06 531006 618332. 2139.56 1.69 0.175779 0.153153 25762 151098 -1 1856 20 1285 2176 130632 30011 2.75666 2.75666 -114.188 -2.75666 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0291664 0.0259021 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.58 vpr 62.74 MiB -1 -1 0.20 18384 1 0.03 -1 -1 30192 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 24.2 MiB 2.46 811 8306 2170 5113 1023 62.7 MiB 0.08 0.00 4.07373 -119.929 -4.07373 4.07373 1.00 0.000494175 0.000454747 0.0249873 0.023041 34 2073 18 6.87369e+06 251529 618332. 2139.56 1.66 0.127445 0.110711 25762 151098 -1 1771 19 1225 1772 135745 32508 3.16561 3.16561 -117.013 -3.16561 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0200217 0.0176161 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 8.62 vpr 63.04 MiB -1 -1 0.23 18356 1 0.03 -1 -1 30556 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 370 297 1 187 89 17 17 289 -1 unnamed_device 24.5 MiB 3.28 977 12959 4558 6216 2185 63.0 MiB 0.12 0.00 3.77586 -121.537 -3.77586 3.77586 0.97 0.000545299 0.000498841 0.0383713 0.0351952 34 2687 23 6.87369e+06 363320 618332. 2139.56 1.72 0.160376 0.139576 25762 151098 -1 2113 20 1463 2522 165893 39284 3.04456 3.04456 -114.52 -3.04456 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0256061 0.0225708 136 61 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 8.38 vpr 63.00 MiB -1 -1 0.22 18452 1 0.03 -1 -1 30356 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 377 302 1 237 88 17 17 289 -1 unnamed_device 24.4 MiB 3.47 1217 9058 2366 5991 701 63.0 MiB 0.11 0.00 5.67608 -170.045 -5.67608 5.67608 0.72 0.000733324 0.000679741 0.0376434 0.0349553 34 3142 36 6.87369e+06 349346 618332. 2139.56 1.77 0.211009 0.184045 25762 151098 -1 2646 20 1854 2780 222974 50363 4.98909 4.98909 -169.55 -4.98909 0 0 787024. 2723.27 0.33 0.10 0.16 -1 -1 0.33 0.030132 0.0267789 159 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 9.37 vpr 63.11 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30428 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64628 31 32 383 305 1 212 90 17 17 289 -1 unnamed_device 24.4 MiB 4.25 930 10341 2765 6600 976 63.1 MiB 0.13 0.00 5.24874 -156.327 -5.24874 5.24874 0.77 0.000772367 0.000712222 0.0432509 0.0400422 34 2564 26 6.87369e+06 377294 618332. 2139.56 1.69 0.162383 0.142372 25762 151098 -1 2054 19 1573 2415 154073 38633 4.80245 4.80245 -154.221 -4.80245 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0251959 0.022227 152 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 7.57 vpr 63.12 MiB -1 -1 0.21 18304 1 0.03 -1 -1 30364 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 352 285 1 186 88 17 17 289 -1 unnamed_device 24.4 MiB 3.48 890 9838 2427 6571 840 63.1 MiB 0.11 0.00 4.12463 -126.459 -4.12463 4.12463 0.76 0.000719652 0.000667453 0.0401861 0.0373582 32 2778 24 6.87369e+06 349346 586450. 2029.24 0.98 0.134108 0.118013 25474 144626 -1 2117 23 1534 2606 173836 42353 3.22761 3.22761 -120.811 -3.22761 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0294598 0.0259967 131 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.45 vpr 62.66 MiB -1 -1 0.18 18288 1 0.03 -1 -1 30340 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 291 242 1 183 84 17 17 289 -1 unnamed_device 24.2 MiB 3.25 1030 14907 5658 7296 1953 62.7 MiB 0.13 0.00 4.31305 -116.7 -4.31305 4.31305 0.99 0.000470002 0.000430227 0.0416128 0.0381797 34 2336 24 6.87369e+06 279477 618332. 2139.56 1.65 0.150175 0.131018 25762 151098 -1 1982 23 1286 1941 131058 31659 3.85476 3.85476 -118.117 -3.85476 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0246495 0.0215931 119 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 9.36 vpr 63.56 MiB -1 -1 0.22 18572 1 0.04 -1 -1 30452 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 457 356 1 225 102 17 17 289 -1 unnamed_device 24.9 MiB 4.29 1252 19142 5218 11863 2061 63.6 MiB 0.20 0.00 4.94161 -161.682 -4.94161 4.94161 0.98 0.000706831 0.000651364 0.0581446 0.0533581 26 3560 45 6.87369e+06 531006 503264. 1741.40 1.48 0.178153 0.156613 24322 120374 -1 2924 24 1994 3149 246374 55136 4.48206 4.48206 -165.54 -4.48206 0 0 618332. 2139.56 0.25 0.11 0.11 -1 -1 0.25 0.0386469 0.0339967 173 87 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 6.01 vpr 62.33 MiB -1 -1 0.20 18100 1 0.03 -1 -1 30104 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 261 225 1 148 85 17 17 289 -1 unnamed_device 24.0 MiB 1.98 665 8827 1886 5968 973 62.3 MiB 0.08 0.00 3.55895 -103.54 -3.55895 3.55895 0.75 0.000680229 0.000631641 0.0331284 0.0306995 32 1829 47 6.87369e+06 307425 586450. 2029.24 0.96 0.125862 0.109418 25474 144626 -1 1531 22 1095 1946 124247 29558 2.88326 2.88326 -101.085 -2.88326 0 0 744469. 2576.02 0.32 0.07 0.14 -1 -1 0.32 0.0218565 0.0191017 96 28 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 7.47 vpr 62.93 MiB -1 -1 0.19 18308 1 0.03 -1 -1 30160 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.4 MiB 2.85 1143 8780 2224 5686 870 62.9 MiB 0.09 0.00 4.84783 -148.334 -4.84783 4.84783 0.95 0.000534038 0.000489564 0.0265904 0.0245082 30 2974 22 6.87369e+06 321398 556674. 1926.21 1.20 0.10878 0.0962993 25186 138497 -1 2276 20 1319 1963 128114 29110 3.90446 3.90446 -137.638 -3.90446 0 0 706193. 2443.58 0.29 0.07 0.13 -1 -1 0.29 0.0271884 0.024216 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.81 vpr 62.95 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30272 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 349 284 1 183 96 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1092 15207 4580 7502 3125 63.0 MiB 0.14 0.00 3.6664 -115.914 -3.6664 3.6664 1.00 0.000547292 0.000501471 0.043157 0.039766 30 2573 46 6.87369e+06 447163 556674. 1926.21 1.39 0.167009 0.148651 25186 138497 -1 2104 22 1306 2375 155359 38292 2.88001 2.88001 -108.543 -2.88001 0 0 706193. 2443.58 0.28 0.08 0.14 -1 -1 0.28 0.0262169 0.0230507 132 53 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.25 vpr 62.61 MiB -1 -1 0.19 18220 1 0.03 -1 -1 30140 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 24.2 MiB 0.84 951 7326 1464 5460 402 62.6 MiB 0.08 0.00 4.18575 -127.803 -4.18575 4.18575 0.74 0.000631853 0.000585564 0.0256459 0.02374 34 2318 19 6.87369e+06 363320 618332. 2139.56 1.40 0.152609 0.131796 25762 151098 -1 2055 20 1139 2195 138429 32937 3.5901 3.5901 -123.275 -3.5901 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0226366 0.0200492 123 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 8.92 vpr 62.90 MiB -1 -1 0.20 18268 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 353 287 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 3.64 1138 14072 4363 7314 2395 62.9 MiB 0.14 0.00 5.07875 -152.281 -5.07875 5.07875 0.98 0.000565251 0.000520244 0.0433108 0.039877 34 2595 20 6.87369e+06 307425 618332. 2139.56 1.62 0.16416 0.144172 25762 151098 -1 2243 22 1182 1648 135600 29421 3.3392 3.3392 -126.8 -3.3392 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0272449 0.0240521 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 9.11 vpr 62.92 MiB -1 -1 0.22 18308 1 0.03 -1 -1 30308 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 361 291 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 3.77 892 17835 6311 8192 3332 62.9 MiB 0.14 0.00 3.76804 -119.452 -3.76804 3.76804 0.95 0.000555206 0.000508051 0.0462982 0.0424309 34 2380 24 6.87369e+06 447163 618332. 2139.56 1.74 0.182605 0.160351 25762 151098 -1 1882 24 1412 2563 167527 39977 3.27791 3.27791 -116.101 -3.27791 0 0 787024. 2723.27 0.30 0.09 0.16 -1 -1 0.30 0.0320793 0.0286001 136 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 9.20 vpr 63.12 MiB -1 -1 0.21 18256 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 382 305 1 193 99 17 17 289 -1 unnamed_device 24.4 MiB 3.77 941 16971 5230 8707 3034 63.1 MiB 0.16 0.00 4.11773 -131.819 -4.11773 4.11773 0.99 0.000597755 0.00055029 0.047848 0.0439138 34 2674 23 6.87369e+06 489084 618332. 2139.56 1.87 0.197305 0.174143 25762 151098 -1 2058 16 1377 2159 144475 35012 3.22691 3.22691 -118.419 -3.22691 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0224719 0.0198629 144 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 4.79 vpr 62.76 MiB -1 -1 0.24 18420 1 0.03 -1 -1 30212 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 248 1 170 97 17 17 289 -1 unnamed_device 24.3 MiB 0.78 948 15415 4265 8583 2567 62.8 MiB 0.14 0.00 4.39109 -128.888 -4.39109 4.39109 0.75 0.000647809 0.000595324 0.0485918 0.0450613 28 2367 23 6.87369e+06 461137 531479. 1839.03 0.93 0.133289 0.117514 24610 126494 -1 2046 20 1275 2112 142129 33336 3.8174 3.8174 -127.295 -3.8174 0 0 648988. 2245.63 0.24 0.08 0.13 -1 -1 0.24 0.0257652 0.0226576 124 24 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 6.84 vpr 62.95 MiB -1 -1 0.19 18380 1 0.03 -1 -1 30092 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.4 MiB 2.11 981 12560 3220 7625 1715 62.9 MiB 0.12 0.00 4.75658 -136.53 -4.75658 4.75658 0.83 0.00051011 0.000468794 0.0372033 0.0342693 34 2511 36 6.87369e+06 307425 618332. 2139.56 1.58 0.187322 0.162836 25762 151098 -1 2087 20 1453 2177 145742 34227 3.96996 3.96996 -132.418 -3.96996 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0236143 0.0208249 135 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 8.04 vpr 63.09 MiB -1 -1 0.22 18460 1 0.03 -1 -1 30372 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 31 32 373 299 1 204 85 17 17 289 -1 unnamed_device 24.5 MiB 2.55 1089 11617 3558 6983 1076 63.1 MiB 0.12 0.00 4.74348 -142.628 -4.74348 4.74348 0.97 0.000655489 0.000604274 0.038175 0.0351395 34 2881 26 6.87369e+06 307425 618332. 2139.56 1.87 0.19214 0.169873 25762 151098 -1 2357 21 1550 2714 218077 49315 3.88006 3.88006 -138.665 -3.88006 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0273606 0.0240694 141 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 8.61 vpr 63.09 MiB -1 -1 0.22 18388 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 387 315 1 194 85 17 17 289 -1 unnamed_device 24.5 MiB 3.25 1081 14779 5269 7600 1910 63.1 MiB 0.14 0.00 4.3693 -135.724 -4.3693 4.3693 0.98 0.000592376 0.000545043 0.0493834 0.0453882 34 2844 22 6.87369e+06 293451 618332. 2139.56 1.70 0.182316 0.160016 25762 151098 -1 2346 20 1480 2699 198768 45119 3.68246 3.68246 -135.288 -3.68246 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.026924 0.0237223 135 77 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.48 vpr 62.57 MiB -1 -1 0.20 17952 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 251 219 1 141 86 17 17 289 -1 unnamed_device 24.1 MiB 0.89 779 13883 3395 9668 820 62.6 MiB 0.11 0.00 3.5583 -108.13 -3.5583 3.5583 0.96 0.000431869 0.000395942 0.0334856 0.0307642 32 1788 23 6.87369e+06 307425 586450. 2029.24 1.11 0.0944392 0.0829205 25474 144626 -1 1567 21 944 1550 107010 25425 2.84396 2.84396 -102.876 -2.84396 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0204141 0.0178989 93 23 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 7.52 vpr 62.84 MiB -1 -1 0.21 18496 1 0.03 -1 -1 30140 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 341 285 1 188 82 17 17 289 -1 unnamed_device 24.4 MiB 2.25 963 13432 4412 7074 1946 62.8 MiB 0.13 0.00 3.7434 -132.085 -3.7434 3.7434 0.97 0.000532813 0.000488543 0.0419715 0.0385291 34 2560 21 6.87369e+06 251529 618332. 2139.56 1.69 0.153625 0.133376 25762 151098 -1 2119 22 1453 2073 170992 37336 3.2445 3.2445 -128.782 -3.2445 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0259243 0.0227876 124 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 8.93 vpr 63.25 MiB -1 -1 0.21 18660 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 387 293 1 236 88 17 17 289 -1 unnamed_device 24.8 MiB 3.32 1271 11983 3961 5911 2111 63.2 MiB 0.14 0.00 5.44288 -158.174 -5.44288 5.44288 0.97 0.000584573 0.000536331 0.0395619 0.0363722 34 3461 29 6.87369e+06 335372 618332. 2139.56 1.98 0.164585 0.144483 25762 151098 -1 2630 19 1879 2915 196618 48465 4.4956 4.4956 -151.623 -4.4956 0 0 787024. 2723.27 0.31 0.09 0.14 -1 -1 0.31 0.0303915 0.0271159 166 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 7.55 vpr 62.88 MiB -1 -1 0.20 18280 1 0.03 -1 -1 30536 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 340 270 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 3.52 1044 14048 3802 8919 1327 62.9 MiB 0.13 0.00 4.31147 -138.564 -4.31147 4.31147 0.71 0.0007074 0.0006585 0.0468337 0.0434539 28 2459 22 6.87369e+06 475111 531479. 1839.03 0.99 0.13696 0.121047 24610 126494 -1 2172 19 1440 2320 154102 35903 3.00996 3.00996 -125.335 -3.00996 0 0 648988. 2245.63 0.27 0.08 0.12 -1 -1 0.27 0.0258263 0.0230079 137 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.92 vpr 62.74 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30356 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64248 30 32 278 235 1 150 87 17 17 289 -1 unnamed_device 24.2 MiB 0.87 643 13911 3216 9368 1327 62.7 MiB 0.11 0.00 3.6213 -108.932 -3.6213 3.6213 0.73 0.000587354 0.000546052 0.0448561 0.0416173 28 2018 28 6.87369e+06 349346 531479. 1839.03 1.13 0.128408 0.112953 24610 126494 -1 1688 23 1361 2173 155815 38664 3.01626 3.01626 -112.771 -3.01626 0 0 648988. 2245.63 0.25 0.07 0.13 -1 -1 0.25 0.023231 0.0203331 104 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 11.92 vpr 63.46 MiB -1 -1 0.22 18568 1 0.04 -1 -1 30544 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 431 332 1 239 89 17 17 289 -1 unnamed_device 24.7 MiB 6.41 1320 13157 3582 8208 1367 63.5 MiB 0.14 0.00 5.88501 -173.819 -5.88501 5.88501 0.95 0.000650305 0.000597787 0.044922 0.0413382 34 3270 37 6.87369e+06 349346 618332. 2139.56 1.87 0.176593 0.15445 25762 151098 -1 2762 20 1874 2865 232696 51863 4.8662 4.8662 -167.348 -4.8662 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0349038 0.0311015 171 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 8.30 vpr 62.77 MiB -1 -1 0.18 18368 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 336 268 1 182 99 17 17 289 -1 unnamed_device 24.2 MiB 3.82 982 19023 5630 11222 2171 62.8 MiB 0.15 0.00 4.64628 -141.602 -4.64628 4.64628 0.93 0.000541886 0.000498248 0.0485503 0.0446278 28 2418 21 6.87369e+06 489084 531479. 1839.03 1.01 0.118838 0.105117 24610 126494 -1 2135 24 1772 2972 203029 46863 3.8534 3.8534 -133.661 -3.8534 0 0 648988. 2245.63 0.27 0.09 0.12 -1 -1 0.27 0.026986 0.0235764 135 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 5.35 vpr 62.27 MiB -1 -1 0.19 17796 1 0.03 -1 -1 30372 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.8 MiB 0.88 766 11398 3000 7253 1145 62.3 MiB 0.09 0.00 3.5954 -102.128 -3.5954 3.5954 0.97 0.000411474 0.000375288 0.0257327 0.0236497 26 2056 24 6.87369e+06 335372 503264. 1741.40 1.07 0.0912166 0.0796266 24322 120374 -1 1726 21 1041 1696 132795 31393 3.16091 3.16091 -109.621 -3.16091 0 0 618332. 2139.56 0.26 0.06 0.12 -1 -1 0.26 0.0192699 0.0168332 94 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 7.28 vpr 62.91 MiB -1 -1 0.20 18380 1 0.03 -1 -1 30108 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 349 273 1 191 101 17 17 289 -1 unnamed_device 24.2 MiB 2.64 1098 18666 5476 10496 2694 62.9 MiB 0.17 0.00 5.27722 -139.12 -5.27722 5.27722 0.96 0.000689395 0.000637071 0.0549557 0.0505577 32 2659 28 6.87369e+06 517032 586450. 2029.24 1.02 0.139829 0.123414 25474 144626 -1 2121 19 1186 2347 148541 34332 4.20965 4.20965 -132.347 -4.20965 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0297617 0.0262827 145 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.73 vpr 62.29 MiB -1 -1 0.18 17888 1 0.03 -1 -1 30164 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.8 MiB 0.95 805 14303 4969 7161 2173 62.3 MiB 0.12 0.00 3.6144 -113.068 -3.6144 3.6144 0.83 0.00044511 0.000409027 0.0383453 0.0352265 34 1982 21 6.87369e+06 265503 618332. 2139.56 1.46 0.131798 0.114965 25762 151098 -1 1762 20 1123 2058 156239 34422 2.76566 2.76566 -108.297 -2.76566 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.019595 0.0172052 98 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 6.98 vpr 62.59 MiB -1 -1 0.19 18412 1 0.03 -1 -1 30032 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64088 30 32 278 235 1 151 96 17 17 289 -1 unnamed_device 23.9 MiB 2.78 838 14988 4128 9396 1464 62.6 MiB 0.13 0.00 3.91538 -116.007 -3.91538 3.91538 0.73 0.000474862 0.000436089 0.0378548 0.0347753 28 2006 22 6.87369e+06 475111 531479. 1839.03 1.03 0.0969122 0.0853218 24610 126494 -1 1859 22 1326 2387 178090 40419 3.04726 3.04726 -110.555 -3.04726 0 0 648988. 2245.63 0.26 0.07 0.12 -1 -1 0.26 0.0218218 0.0191817 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 8.72 vpr 62.79 MiB -1 -1 0.26 18260 1 0.03 -1 -1 30456 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 29 32 355 287 1 200 85 17 17 289 -1 unnamed_device 24.2 MiB 3.92 1022 14221 4941 6601 2679 62.8 MiB 0.14 0.00 4.14789 -124.13 -4.14789 4.14789 0.79 0.000696609 0.000645207 0.0550685 0.0510573 34 2467 22 6.87369e+06 335372 618332. 2139.56 1.52 0.200403 0.175221 25762 151098 -1 2126 20 1616 2489 172740 40401 3.09131 3.09131 -116.143 -3.09131 0 0 787024. 2723.27 0.23 0.09 0.14 -1 -1 0.23 0.0294738 0.025692 138 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 7.08 vpr 62.79 MiB -1 -1 0.20 18260 1 0.03 -1 -1 30332 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 358 289 1 183 90 17 17 289 -1 unnamed_device 24.3 MiB 2.25 981 14964 4061 9219 1684 62.8 MiB 0.14 0.00 4.38015 -143.22 -4.38015 4.38015 0.92 0.000569391 0.000523473 0.0459173 0.0422021 34 2202 22 6.87369e+06 363320 618332. 2139.56 1.42 0.188319 0.163745 25762 151098 -1 1857 22 1312 2096 143880 33607 3.68116 3.68116 -133.693 -3.68116 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0265122 0.0232421 132 54 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 6.24 vpr 62.93 MiB -1 -1 0.20 18496 1 0.03 -1 -1 30476 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 353 285 1 188 91 17 17 289 -1 unnamed_device 24.3 MiB 2.13 1048 11719 3049 7703 967 62.9 MiB 0.12 0.00 4.78763 -143.617 -4.78763 4.78763 0.79 0.000775808 0.000723983 0.0451052 0.041852 32 2530 27 6.87369e+06 377294 586450. 2029.24 0.98 0.136788 0.120351 25474 144626 -1 2121 20 1385 2422 162877 37880 3.70216 3.70216 -134.423 -3.70216 0 0 744469. 2576.02 0.21 0.08 0.13 -1 -1 0.21 0.0289096 0.0251742 133 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 8.38 vpr 62.59 MiB -1 -1 0.18 18296 1 0.03 -1 -1 30168 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 24.1 MiB 3.80 879 8529 2069 5850 610 62.6 MiB 0.09 0.00 4.78272 -134.878 -4.78272 4.78272 0.74 0.000607473 0.000564355 0.0325466 0.0302279 34 2101 19 6.87369e+06 209608 618332. 2139.56 1.50 0.142836 0.124821 25762 151098 -1 1829 16 844 1171 87857 20233 3.40117 3.40117 -120.269 -3.40117 0 0 787024. 2723.27 0.31 0.05 0.16 -1 -1 0.31 0.0184863 0.0164364 103 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 8.37 vpr 62.60 MiB -1 -1 0.20 18312 1 0.03 -1 -1 30476 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 319 272 1 176 80 17 17 289 -1 unnamed_device 23.9 MiB 3.33 834 6960 1607 4728 625 62.6 MiB 0.08 0.00 3.80246 -121.175 -3.80246 3.80246 0.91 0.000495 0.000454939 0.02203 0.020215 34 2233 31 6.87369e+06 237555 618332. 2139.56 1.66 0.13408 0.115284 25762 151098 -1 1917 20 1255 1840 136769 31379 3.1942 3.1942 -121.715 -3.1942 0 0 787024. 2723.27 0.31 0.07 0.14 -1 -1 0.31 0.0229323 0.0202475 114 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.92 vpr 62.87 MiB -1 -1 0.25 18288 1 0.03 -1 -1 30440 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 30 32 329 273 1 167 96 17 17 289 -1 unnamed_device 24.3 MiB 2.47 921 12141 3304 7964 873 62.9 MiB 0.12 0.00 3.48905 -102.447 -3.48905 3.48905 0.96 0.00067591 0.000624568 0.0401012 0.0370446 26 2381 24 6.87369e+06 475111 503264. 1741.40 1.21 0.124181 0.109621 24322 120374 -1 2038 23 1333 2700 193304 43347 3.14486 3.14486 -106.037 -3.14486 0 0 618332. 2139.56 0.26 0.09 0.13 -1 -1 0.26 0.0304266 0.0263821 124 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 6.54 vpr 62.55 MiB -1 -1 0.20 18164 1 0.03 -1 -1 30420 -1 -1 35 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64048 28 32 277 229 1 156 95 17 17 289 -1 unnamed_device 23.9 MiB 2.25 887 17159 5443 8925 2791 62.5 MiB 0.13 0.00 4.16979 -108.155 -4.16979 4.16979 0.92 0.000690885 0.000636358 0.0386739 0.035372 28 2127 27 6.87369e+06 489084 531479. 1839.03 0.98 0.0987016 0.0869463 24610 126494 -1 1874 23 1214 2213 165610 37217 3.5461 3.5461 -107.791 -3.5461 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.026417 0.0229028 117 27 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.85 vpr 62.68 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30456 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 30 32 317 269 1 155 79 17 17 289 -1 unnamed_device 24.1 MiB 2.66 720 7853 2018 5047 788 62.7 MiB 0.08 0.00 4.09699 -121.029 -4.09699 4.09699 0.82 0.000633852 0.000589176 0.0319538 0.0297166 28 2211 21 6.87369e+06 237555 531479. 1839.03 0.96 0.111427 0.0974442 24610 126494 -1 1850 18 1294 2184 147278 35382 3.22456 3.22456 -122.784 -3.22456 0 0 648988. 2245.63 0.28 0.07 0.13 -1 -1 0.28 0.0225176 0.0199845 105 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.21 vpr 62.69 MiB -1 -1 0.20 18184 1 0.03 -1 -1 30136 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 335 282 1 189 81 17 17 289 -1 unnamed_device 24.4 MiB 2.71 1031 14256 4617 7292 2347 62.7 MiB 0.11 0.00 3.6774 -127.4 -3.6774 3.6774 0.78 0.000672752 0.000624956 0.0380439 0.0351619 34 2394 20 6.87369e+06 237555 618332. 2139.56 1.44 0.159681 0.139039 25762 151098 -1 2065 20 1323 1942 144975 33020 3.12161 3.12161 -122.534 -3.12161 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0253845 0.0224304 122 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.54 vpr 62.77 MiB -1 -1 0.21 18056 1 0.03 -1 -1 30312 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.3 MiB 0.98 1006 10105 2485 6935 685 62.8 MiB 0.09 0.00 4.52456 -130.912 -4.52456 4.52456 0.95 0.000484533 0.000445361 0.0256788 0.0235805 26 2875 23 6.87369e+06 433189 503264. 1741.40 1.28 0.0932991 0.0818835 24322 120374 -1 2327 19 1282 2206 194474 41354 3.9217 3.9217 -129.893 -3.9217 0 0 618332. 2139.56 0.19 0.08 0.11 -1 -1 0.19 0.0245266 0.0215713 129 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 9.41 vpr 62.96 MiB -1 -1 0.20 18160 1 0.03 -1 -1 30572 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.4 MiB 3.80 1030 16023 4465 9060 2498 63.0 MiB 0.16 0.00 4.80948 -150.045 -4.80948 4.80948 0.96 0.000583385 0.000538151 0.0497544 0.0458206 34 3186 32 6.87369e+06 321398 618332. 2139.56 1.99 0.17761 0.155131 25762 151098 -1 2387 23 1918 2899 214980 51211 4.17556 4.17556 -145.117 -4.17556 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.0284693 0.0248635 147 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 9.85 vpr 63.16 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30376 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 385 308 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 4.85 992 11004 2505 7094 1405 63.2 MiB 0.10 0.00 5.358 -156.897 -5.358 5.358 0.96 0.000591961 0.000543631 0.031597 0.0290181 30 2877 24 6.87369e+06 503058 556674. 1926.21 1.52 0.122105 0.10784 25186 138497 -1 2002 23 1283 2303 125778 31088 4.10065 4.10065 -142.7 -4.10065 0 0 706193. 2443.58 0.29 0.07 0.14 -1 -1 0.29 0.0293466 0.0258814 147 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 9.09 vpr 62.96 MiB -1 -1 0.21 18308 1 0.03 -1 -1 30388 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 387 309 1 192 105 17 17 289 -1 unnamed_device 24.4 MiB 4.01 1067 14184 3960 9254 970 63.0 MiB 0.14 0.00 4.55456 -143.325 -4.55456 4.55456 0.92 0.000579707 0.000531989 0.0363214 0.033267 28 2936 24 6.87369e+06 572927 531479. 1839.03 1.64 0.119461 0.104967 24610 126494 -1 2543 21 1751 3115 248068 58294 3.9597 3.9597 -144.725 -3.9597 0 0 648988. 2245.63 0.25 0.09 0.13 -1 -1 0.25 0.0272756 0.0240057 148 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 7.62 vpr 62.38 MiB -1 -1 0.18 18476 1 0.03 -1 -1 30200 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 272 232 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 3.07 842 13261 4606 6728 1927 62.4 MiB 0.12 0.00 4.07653 -124.408 -4.07653 4.07653 0.79 0.000615102 0.000556962 0.0503717 0.0468682 34 2032 23 6.87369e+06 237555 618332. 2139.56 1.38 0.17118 0.149563 25762 151098 -1 1629 20 952 1650 105096 24631 2.97696 2.97696 -112.789 -2.97696 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0202131 0.0177626 99 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 9.31 vpr 63.20 MiB -1 -1 0.22 18296 1 0.03 -1 -1 30416 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64712 30 32 375 299 1 188 84 17 17 289 -1 unnamed_device 24.8 MiB 4.02 1040 10332 2707 6497 1128 63.2 MiB 0.11 0.00 4.61482 -143.916 -4.61482 4.61482 0.95 0.000557761 0.00051244 0.0346641 0.0318621 34 2462 23 6.87369e+06 307425 618332. 2139.56 1.76 0.165761 0.144322 25762 151098 -1 2153 21 1529 2503 198043 43558 3.7513 3.7513 -138.634 -3.7513 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0260215 0.0229449 136 63 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.44 vpr 63.15 MiB -1 -1 0.20 18376 1 0.03 -1 -1 30388 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.4 MiB 3.28 994 8535 2039 6107 389 63.1 MiB 0.09 0.00 5.21006 -151.071 -5.21006 5.21006 0.93 0.000535321 0.00049409 0.0258445 0.0237717 34 2790 23 6.87369e+06 321398 618332. 2139.56 1.73 0.137161 0.118671 25762 151098 -1 2260 20 1445 2437 200263 45447 4.04406 4.04406 -140.612 -4.04406 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0241808 0.0213574 140 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 7.47 vpr 62.81 MiB -1 -1 0.21 18380 1 0.03 -1 -1 30144 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 31 32 340 275 1 201 91 17 17 289 -1 unnamed_device 24.2 MiB 2.72 1089 16207 4865 8603 2739 62.8 MiB 0.15 0.00 5.3663 -151.531 -5.3663 5.3663 0.84 0.00065703 0.000604423 0.0576003 0.0534193 34 2515 22 6.87369e+06 391268 618332. 2139.56 1.58 0.1873 0.164434 25762 151098 -1 2093 20 1293 2104 138984 32657 4.281 4.281 -141.015 -4.281 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0241339 0.0213199 141 47 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 8.86 vpr 62.90 MiB -1 -1 0.21 18268 1 0.03 -1 -1 30212 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 377 310 1 181 93 17 17 289 -1 unnamed_device 24.3 MiB 4.25 902 15003 4201 8477 2325 62.9 MiB 0.14 0.00 4.69758 -137.432 -4.69758 4.69758 0.92 0.000566045 0.000520391 0.0434762 0.0399428 28 2717 27 6.87369e+06 433189 531479. 1839.03 1.28 0.121592 0.106883 24610 126494 -1 2126 22 1533 2598 214396 50988 3.71216 3.71216 -123.278 -3.71216 0 0 648988. 2245.63 0.19 0.10 0.11 -1 -1 0.19 0.0310126 0.0270424 136 83 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.27 vpr 62.98 MiB -1 -1 0.23 18288 1 0.03 -1 -1 30300 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 365 294 1 187 85 17 17 289 -1 unnamed_device 24.5 MiB 3.02 1057 15709 4238 9990 1481 63.0 MiB 0.16 0.00 4.73658 -142.328 -4.73658 4.73658 0.94 0.00054638 0.00050187 0.0490855 0.0450903 34 2679 20 6.87369e+06 293451 618332. 2139.56 1.69 0.163394 0.142307 25762 151098 -1 2321 23 1681 3049 216145 50383 3.98176 3.98176 -143.127 -3.98176 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0274721 0.0240844 132 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 8.12 vpr 63.08 MiB -1 -1 0.22 18244 1 0.03 -1 -1 30392 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 29 32 378 310 1 179 90 17 17 289 -1 unnamed_device 24.6 MiB 3.15 980 14361 3795 8758 1808 63.1 MiB 0.13 0.00 4.08063 -123.956 -4.08063 4.08063 0.91 0.00055098 0.000505341 0.0426439 0.0391954 34 2063 21 6.87369e+06 405241 618332. 2139.56 1.56 0.15813 0.137983 25762 151098 -1 1763 19 1068 1862 112291 26746 2.80401 2.80401 -107.247 -2.80401 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0243745 0.0215467 132 85 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 5.12 vpr 62.66 MiB -1 -1 0.17 17908 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 24.2 MiB 0.80 762 13381 3888 7655 1838 62.7 MiB 0.11 0.00 4.08063 -121.878 -4.08063 4.08063 0.94 0.000440237 0.000403508 0.0345293 0.0317282 30 1753 24 6.87369e+06 237555 556674. 1926.21 0.99 0.0913307 0.0803988 25186 138497 -1 1475 16 699 1012 58829 14121 2.80671 2.80671 -106.483 -2.80671 0 0 706193. 2443.58 0.29 0.04 0.14 -1 -1 0.29 0.0165591 0.0146573 96 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 9.30 vpr 62.96 MiB -1 -1 0.21 18472 1 0.03 -1 -1 30252 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 373 302 1 184 98 17 17 289 -1 unnamed_device 24.5 MiB 5.05 1078 12698 2986 8362 1350 63.0 MiB 0.12 0.00 4.62608 -141.267 -4.62608 4.62608 0.92 0.000563171 0.000517554 0.034521 0.0315786 30 2506 24 6.87369e+06 475111 556674. 1926.21 1.08 0.107178 0.0937885 25186 138497 -1 2052 20 1183 2080 122141 28584 3.6918 3.6918 -130.183 -3.6918 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0287919 0.0251048 137 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 9.59 vpr 63.13 MiB -1 -1 0.21 18412 1 0.03 -1 -1 30276 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 397 314 1 197 85 17 17 289 -1 unnamed_device 24.5 MiB 4.81 998 8827 2077 6176 574 63.1 MiB 0.11 0.00 4.56982 -152.779 -4.56982 4.56982 0.84 0.0006402 0.000588561 0.0326414 0.0300964 34 2683 23 6.87369e+06 293451 618332. 2139.56 1.61 0.186153 0.161105 25762 151098 -1 2243 21 1735 2924 207771 47462 3.8824 3.8824 -150.666 -3.8824 0 0 787024. 2723.27 0.31 0.09 0.16 -1 -1 0.31 0.0287087 0.0253915 142 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.58 vpr 62.53 MiB -1 -1 0.21 18264 1 0.03 -1 -1 30340 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 269 231 1 170 80 17 17 289 -1 unnamed_device 24.0 MiB 3.17 877 12464 4060 6378 2026 62.5 MiB 0.11 0.00 4.35092 -123.721 -4.35092 4.35092 0.73 0.000577897 0.00053719 0.0448916 0.0417576 34 2279 29 6.87369e+06 223581 618332. 2139.56 1.44 0.176816 0.154183 25762 151098 -1 1920 22 1001 1313 102228 23653 3.2062 3.2062 -117.239 -3.2062 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0221194 0.0194803 106 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 5.05 vpr 62.55 MiB -1 -1 0.22 17808 1 0.03 -1 -1 30512 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 24.1 MiB 0.84 831 12143 3710 6458 1975 62.6 MiB 0.10 0.00 4.08753 -121.46 -4.08753 4.08753 0.90 0.000439534 0.000403929 0.0311201 0.0286704 28 2124 17 6.87369e+06 279477 531479. 1839.03 0.94 0.0833765 0.0734135 24610 126494 -1 1907 20 1180 1932 139782 31454 3.28891 3.28891 -120.778 -3.28891 0 0 648988. 2245.63 0.27 0.06 0.13 -1 -1 0.27 0.020082 0.0177196 99 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 9.12 vpr 63.15 MiB -1 -1 0.22 18184 1 0.03 -1 -1 30352 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.5 MiB 3.64 1048 14871 5310 7645 1916 63.2 MiB 0.14 0.00 4.74578 -148.239 -4.74578 4.74578 0.98 0.000562386 0.000515663 0.0457185 0.041963 36 2817 24 6.87369e+06 321398 648988. 2245.63 1.85 0.166097 0.145214 26050 158493 -1 2448 22 1891 2596 227657 50808 4.31066 4.31066 -151.984 -4.31066 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0266293 0.023477 145 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 7.99 vpr 62.73 MiB -1 -1 0.21 18252 1 0.03 -1 -1 30312 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 356 289 1 202 91 17 17 289 -1 unnamed_device 24.2 MiB 3.06 1156 10291 2704 7024 563 62.7 MiB 0.11 0.00 5.18474 -149.951 -5.18474 5.18474 0.84 0.000594683 0.000546448 0.0311573 0.0287056 34 2682 41 6.87369e+06 377294 618332. 2139.56 1.57 0.179496 0.155424 25762 151098 -1 2180 22 1386 2142 135329 35537 4.8355 4.8355 -148.267 -4.8355 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0258041 0.0227283 142 56 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.43 vpr 62.89 MiB -1 -1 0.20 18108 1 0.03 -1 -1 30296 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.3 MiB 1.01 1079 20284 6521 10124 3639 62.9 MiB 0.18 0.00 5.37378 -147.82 -5.37378 5.37378 0.95 0.000571289 0.000527948 0.0524755 0.0482132 30 3023 31 6.87369e+06 503058 556674. 1926.21 1.90 0.139322 0.122867 25186 138497 -1 2085 21 1291 2437 138623 33500 4.25585 4.25585 -141.062 -4.25585 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0267673 0.0234895 157 3 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 7.33 vpr 62.76 MiB -1 -1 0.19 18308 1 0.03 -1 -1 30408 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 30 32 316 264 1 165 96 17 17 289 -1 unnamed_device 24.3 MiB 2.91 927 17397 5065 9948 2384 62.8 MiB 0.14 0.00 3.60295 -108.088 -3.60295 3.60295 0.94 0.000488965 0.000447082 0.0430026 0.0395387 28 2151 19 6.87369e+06 475111 531479. 1839.03 1.05 0.108127 0.0956338 24610 126494 -1 1919 20 1417 2497 170198 40638 2.92096 2.92096 -104.717 -2.92096 0 0 648988. 2245.63 0.27 0.07 0.12 -1 -1 0.27 0.0228046 0.0201263 119 52 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 6.06 vpr 62.34 MiB -1 -1 0.19 18200 1 0.03 -1 -1 30488 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 27 32 255 219 1 139 80 17 17 289 -1 unnamed_device 23.9 MiB 1.15 651 12980 3995 7984 1001 62.3 MiB 0.09 0.00 3.6605 -100.499 -3.6605 3.6605 0.94 0.000429871 0.000393575 0.0341685 0.0314513 34 1644 21 6.87369e+06 293451 618332. 2139.56 1.52 0.122538 0.106658 25762 151098 -1 1427 22 975 1523 104549 23631 3.05561 3.05561 -99.1102 -3.05561 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0203434 0.0177782 96 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 9.97 vpr 63.56 MiB -1 -1 0.23 18484 1 0.04 -1 -1 30316 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 421 327 1 233 88 17 17 289 -1 unnamed_device 24.9 MiB 4.58 1305 7498 1697 5254 547 63.6 MiB 0.09 0.00 4.4144 -140.878 -4.4144 4.4144 0.94 0.000625021 0.000574443 0.0270737 0.0249452 34 3438 24 6.87369e+06 335372 618332. 2139.56 1.81 0.161219 0.13931 25762 151098 -1 2893 23 1860 3153 237693 54269 4.02706 4.02706 -143.444 -4.02706 0 0 787024. 2723.27 0.30 0.10 0.15 -1 -1 0.30 0.0315745 0.0277747 165 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 13.39 vpr 63.04 MiB -1 -1 0.24 18588 1 0.03 -1 -1 30328 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 31 32 365 296 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 5.80 1074 15151 5128 7714 2309 63.0 MiB 0.14 0.00 5.62787 -168.35 -5.62787 5.62787 0.93 0.000523286 0.000479283 0.0477875 0.0438334 36 2460 39 6.87369e+06 307425 648988. 2245.63 4.06 0.223098 0.19309 26050 158493 -1 2192 24 1758 2752 197763 47821 4.6006 4.6006 -155.693 -4.6006 0 0 828058. 2865.25 0.31 0.08 0.15 -1 -1 0.31 0.0275746 0.0242096 139 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 10.53 vpr 62.69 MiB -1 -1 0.19 18148 1 0.03 -1 -1 30452 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 331 280 1 185 82 17 17 289 -1 unnamed_device 24.2 MiB 5.18 919 12720 5050 5541 2129 62.7 MiB 0.12 0.00 4.44674 -144.261 -4.44674 4.44674 0.98 0.000521387 0.000478419 0.0403302 0.0370371 34 2529 25 6.87369e+06 251529 618332. 2139.56 1.78 0.163103 0.141914 25762 151098 -1 2070 22 1656 2424 186778 42635 3.72966 3.72966 -139.673 -3.72966 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0266344 0.0235951 118 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.77 vpr 62.81 MiB -1 -1 0.20 18388 1 0.03 -1 -1 30280 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 326 263 1 176 97 17 17 289 -1 unnamed_device 24.3 MiB 1.36 976 10753 2429 7569 755 62.8 MiB 0.10 0.00 5.00965 -138.522 -5.00965 5.00965 0.92 0.000528862 0.000485629 0.0276327 0.0253814 32 2523 24 6.87369e+06 461137 586450. 2029.24 1.05 0.0968915 0.0848413 25474 144626 -1 2024 23 1174 1822 131120 29793 3.598 3.598 -122.993 -3.598 0 0 744469. 2576.02 0.29 0.07 0.14 -1 -1 0.29 0.0251769 0.022051 129 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.43 vpr 63.03 MiB -1 -1 0.21 18228 1 0.03 -1 -1 30372 -1 -1 34 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 373 294 1 197 97 17 17 289 -1 unnamed_device 24.4 MiB 2.48 1013 10087 2314 7206 567 63.0 MiB 0.10 0.00 4.42234 -128.528 -4.42234 4.42234 0.76 0.000760322 0.000705207 0.0362463 0.0335429 26 2600 22 6.87369e+06 475111 503264. 1741.40 0.88 0.126618 0.111141 24322 120374 -1 2239 21 1469 2346 163117 38005 3.66536 3.66536 -129.934 -3.66536 0 0 618332. 2139.56 0.24 0.07 0.12 -1 -1 0.24 0.0265475 0.0234259 149 50 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 7.37 vpr 62.82 MiB -1 -1 0.24 18248 1 0.03 -1 -1 30124 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 30 32 325 268 1 172 93 17 17 289 -1 unnamed_device 24.3 MiB 2.59 789 16473 4509 9304 2660 62.8 MiB 0.14 0.00 3.6543 -102.402 -3.6543 3.6543 0.97 0.000500046 0.000458801 0.0416626 0.0380998 30 2403 31 6.87369e+06 433189 556674. 1926.21 1.21 0.122003 0.107586 25186 138497 -1 1692 21 1163 2079 118397 30989 2.84601 2.84601 -99.6498 -2.84601 0 0 706193. 2443.58 0.29 0.06 0.13 -1 -1 0.29 0.0229489 0.0201956 124 51 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 9.39 vpr 63.22 MiB -1 -1 0.21 18300 1 0.03 -1 -1 30416 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64740 32 32 350 275 1 216 86 17 17 289 -1 unnamed_device 24.4 MiB 4.00 1043 7835 1690 4990 1155 63.2 MiB 0.08 0.00 4.80948 -147.863 -4.80948 4.80948 0.92 0.000554897 0.000509596 0.0254672 0.0234741 38 2758 24 6.87369e+06 307425 678818. 2348.85 1.94 0.146036 0.126461 26626 170182 -1 2286 21 1725 2702 176685 43882 3.97676 3.97676 -143.812 -3.97676 0 0 902133. 3121.57 0.32 0.08 0.17 -1 -1 0.32 0.0258805 0.0228615 148 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 9.04 vpr 62.97 MiB -1 -1 0.20 18216 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 386 307 1 196 100 17 17 289 -1 unnamed_device 24.4 MiB 3.92 1116 17964 5292 9872 2800 63.0 MiB 0.18 0.00 4.13563 -137.404 -4.13563 4.13563 0.81 0.000733067 0.000677005 0.0631271 0.0584139 34 2447 20 6.87369e+06 503058 618332. 2139.56 1.53 0.208723 0.183308 25762 151098 -1 2015 19 1342 2139 137929 32482 3.06531 3.06531 -122.758 -3.06531 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0287946 0.0256927 147 62 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.93 vpr 62.39 MiB -1 -1 0.19 18392 1 0.03 -1 -1 30280 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63892 29 32 269 229 1 150 80 17 17 289 -1 unnamed_device 23.9 MiB 2.13 703 14184 4182 7144 2858 62.4 MiB 0.11 0.00 3.92008 -117.095 -3.92008 3.92008 0.74 0.000588003 0.000546297 0.0515165 0.0478129 32 1613 15 6.87369e+06 265503 586450. 2029.24 0.87 0.118733 0.105422 25474 144626 -1 1408 18 1077 1587 95325 23248 2.94596 2.94596 -107.914 -2.94596 0 0 744469. 2576.02 0.23 0.06 0.13 -1 -1 0.23 0.0217143 0.0189448 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 7.23 vpr 62.66 MiB -1 -1 0.20 18288 1 0.03 -1 -1 30340 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 32 32 310 266 1 176 81 17 17 289 -1 unnamed_device 24.1 MiB 1.99 745 10056 2219 6943 894 62.7 MiB 0.08 0.00 4.29715 -118.471 -4.29715 4.29715 0.97 0.000520357 0.000478505 0.0291071 0.0266997 34 2295 22 6.87369e+06 237555 618332. 2139.56 1.67 0.158515 0.137402 25762 151098 -1 1815 21 1130 1591 136903 31824 3.426 3.426 -121.689 -3.426 0 0 787024. 2723.27 0.33 0.07 0.16 -1 -1 0.33 0.0235926 0.0207565 112 58 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.12 vpr 62.88 MiB -1 -1 0.19 18384 1 0.03 -1 -1 30388 -1 -1 39 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 326 261 1 178 102 17 17 289 -1 unnamed_device 24.3 MiB 1.95 902 19380 5589 10619 3172 62.9 MiB 0.17 0.00 4.58512 -127.193 -4.58512 4.58512 0.70 0.000679327 0.000630236 0.0540069 0.0497965 30 2365 22 6.87369e+06 544980 556674. 1926.21 1.13 0.139403 0.124151 25186 138497 -1 1716 22 1241 2354 128386 30446 3.5538 3.5538 -120.664 -3.5538 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0306463 0.02678 135 33 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 8.53 vpr 62.54 MiB -1 -1 0.20 18272 1 0.03 -1 -1 30372 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 4.06 749 6788 1524 4749 515 62.5 MiB 0.06 0.00 4.6958 -121.206 -4.6958 4.6958 0.97 0.000449312 0.000414095 0.0192312 0.0177238 30 1952 20 6.87369e+06 265503 556674. 1926.21 1.03 0.0802067 0.0705442 25186 138497 -1 1612 16 830 1112 65319 16469 3.46886 3.46886 -112.916 -3.46886 0 0 706193. 2443.58 0.29 0.05 0.13 -1 -1 0.29 0.0178434 0.0158211 107 31 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 8.45 vpr 62.49 MiB -1 -1 0.18 18012 1 0.03 -1 -1 30228 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 278 238 1 158 79 17 17 289 -1 unnamed_device 24.0 MiB 3.41 866 13092 4214 7388 1490 62.5 MiB 0.10 0.00 4.09853 -129.916 -4.09853 4.09853 0.95 0.000450303 0.00041192 0.0370297 0.0340392 34 2042 20 6.87369e+06 209608 618332. 2139.56 1.58 0.130986 0.113593 25762 151098 -1 1778 19 1272 2164 162508 35773 2.87996 2.87996 -113.908 -2.87996 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0214632 0.0189643 101 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 8.85 vpr 62.98 MiB -1 -1 0.22 18332 1 0.03 -1 -1 30372 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 373 300 1 185 100 17 17 289 -1 unnamed_device 24.3 MiB 3.16 1039 12628 3304 8275 1049 63.0 MiB 0.12 0.00 4.00054 -129.166 -4.00054 4.00054 0.88 0.000590474 0.000542344 0.0345448 0.0316076 28 2393 42 6.87369e+06 517032 531479. 1839.03 2.55 0.245556 0.213705 24610 126494 -1 2072 19 1556 2430 149543 36874 2.96296 2.96296 -119.531 -2.96296 0 0 648988. 2245.63 0.25 0.07 0.13 -1 -1 0.25 0.0247034 0.0217726 141 64 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 8.91 vpr 62.52 MiB -1 -1 0.20 18200 1 0.03 -1 -1 30428 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64016 31 32 265 230 1 169 80 17 17 289 -1 unnamed_device 24.0 MiB 3.83 739 6272 1406 4366 500 62.5 MiB 0.06 0.00 3.6584 -112.307 -3.6584 3.6584 0.97 0.000439638 0.000403714 0.0177083 0.0162957 34 2044 28 6.87369e+06 237555 618332. 2139.56 1.60 0.113247 0.0973846 25762 151098 -1 1693 19 1118 1602 109538 26544 2.96331 2.96331 -108.384 -2.96331 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0257924 0.0228062 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 7.15 vpr 62.84 MiB -1 -1 0.22 18300 1 0.03 -1 -1 30196 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 349 286 1 177 95 17 17 289 -1 unnamed_device 24.3 MiB 3.10 994 15431 4930 8161 2340 62.8 MiB 0.14 0.00 3.71714 -116.274 -3.71714 3.71714 0.74 0.000837487 0.000770358 0.0534313 0.0495527 28 2468 19 6.87369e+06 433189 531479. 1839.03 1.06 0.141048 0.125159 24610 126494 -1 2208 23 1274 2119 169182 37510 3.07961 3.07961 -114.324 -3.07961 0 0 648988. 2245.63 0.19 0.08 0.11 -1 -1 0.19 0.0308696 0.0266773 129 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 8.96 vpr 62.93 MiB -1 -1 0.23 18540 1 0.03 -1 -1 30324 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 31 32 396 325 1 185 95 17 17 289 -1 unnamed_device 24.3 MiB 3.93 961 16511 5552 8275 2684 62.9 MiB 0.15 0.00 3.7214 -123.871 -3.7214 3.7214 0.96 0.000608333 0.000555211 0.0512196 0.0470155 30 2253 32 6.87369e+06 447163 556674. 1926.21 1.47 0.171908 0.153475 25186 138497 -1 1722 20 1533 2326 127313 31294 2.93501 2.93501 -117.678 -2.93501 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0276996 0.0243898 137 91 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 8.16 vpr 62.41 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 303 262 1 154 80 17 17 289 -1 unnamed_device 23.9 MiB 3.02 737 5584 1099 4145 340 62.4 MiB 0.06 0.00 3.6034 -109.653 -3.6034 3.6034 1.01 0.000489315 0.000449652 0.0182905 0.0168275 34 1886 21 6.87369e+06 223581 618332. 2139.56 1.59 0.118978 0.102166 25762 151098 -1 1695 23 1030 1632 113542 27383 3.07561 3.07561 -111.941 -3.07561 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0238002 0.0208962 99 57 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 9.13 vpr 62.45 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30256 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.8 MiB 1.95 952 10940 2740 7203 997 62.5 MiB 0.10 0.00 4.25609 -132.381 -4.25609 4.25609 0.98 0.000473798 0.000433863 0.030045 0.0276021 42 2243 22 6.87369e+06 251529 744469. 2576.02 3.63 0.193271 0.167796 27202 183097 -1 2085 19 1226 1880 153170 34101 3.0839 3.0839 -120.097 -3.0839 0 0 949917. 3286.91 0.26 0.07 0.16 -1 -1 0.26 0.0243734 0.0212581 114 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 8.10 vpr 62.83 MiB -1 -1 0.16 18268 1 0.03 -1 -1 30204 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 318 257 1 197 86 17 17 289 -1 unnamed_device 24.3 MiB 3.11 1054 12749 3289 7313 2147 62.8 MiB 0.12 0.00 4.80313 -136.884 -4.80313 4.80313 0.83 0.000678522 0.000630135 0.0480022 0.0445788 34 2549 23 6.87369e+06 307425 618332. 2139.56 1.60 0.167742 0.147051 25762 151098 -1 2225 20 1488 2102 146556 33256 3.91876 3.91876 -132.994 -3.91876 0 0 787024. 2723.27 0.33 0.07 0.15 -1 -1 0.33 0.0240358 0.0212034 132 30 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 7.73 vpr 62.60 MiB -1 -1 0.21 18392 1 0.03 -1 -1 30120 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 324 268 1 169 90 17 17 289 -1 unnamed_device 24.2 MiB 3.32 910 8331 2069 5702 560 62.6 MiB 0.08 0.00 4.10263 -113.755 -4.10263 4.10263 0.96 0.000504962 0.000455494 0.0226075 0.0207866 26 2245 29 6.87369e+06 405241 503264. 1741.40 0.96 0.0934614 0.0814692 24322 120374 -1 1902 17 1016 1797 118954 28645 3.32521 3.32521 -112.908 -3.32521 0 0 618332. 2139.56 0.27 0.06 0.12 -1 -1 0.27 0.0244582 0.0218314 123 55 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.44 vpr 63.04 MiB -1 -1 0.22 18440 1 0.04 -1 -1 30564 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 393 312 1 215 86 17 17 289 -1 unnamed_device 24.4 MiB 3.85 1103 15395 4881 8425 2089 63.0 MiB 0.16 0.00 5.21806 -166.108 -5.21806 5.21806 1.01 0.000602123 0.000553771 0.0525324 0.0482524 34 2869 22 6.87369e+06 307425 618332. 2139.56 1.83 0.205079 0.181129 25762 151098 -1 2402 20 1566 2409 195750 43224 4.09716 4.09716 -152.331 -4.09716 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.0299439 0.0265748 151 65 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 5.33 vpr 62.28 MiB -1 -1 0.19 17852 1 0.03 -1 -1 30204 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63776 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.82 761 8164 2247 5336 581 62.3 MiB 0.08 0.00 3.6213 -109.656 -3.6213 3.6213 0.90 0.000422886 0.000390407 0.0223604 0.0206609 34 1718 18 6.87369e+06 237555 618332. 2139.56 1.33 0.127896 0.110351 25762 151098 -1 1493 19 745 1160 76299 17776 2.57441 2.57441 -97.855 -2.57441 0 0 787024. 2723.27 0.30 0.05 0.15 -1 -1 0.30 0.0181199 0.0159495 92 4 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.86 vpr 63.03 MiB -1 -1 0.24 18640 1 0.04 -1 -1 30204 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 412 334 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.24 1098 17883 5450 10197 2236 63.0 MiB 0.16 0.00 4.40215 -147.898 -4.40215 4.40215 0.73 0.000781202 0.00072353 0.0637928 0.059005 34 2564 21 6.87369e+06 489084 618332. 2139.56 1.42 0.218747 0.191569 25762 151098 -1 2165 18 1316 1941 132214 30270 3.87076 3.87076 -140.813 -3.87076 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0257571 0.022755 145 90 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 10.60 vpr 62.84 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30132 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.4 MiB 5.22 884 12808 4071 7270 1467 62.8 MiB 0.11 0.00 3.7416 -133.639 -3.7416 3.7416 1.02 0.000518925 0.000473076 0.0432361 0.039571 34 2183 21 6.87369e+06 223581 618332. 2139.56 1.72 0.176017 0.153866 25762 151098 -1 1785 21 1350 1962 156838 33963 3.09651 3.09651 -128.533 -3.09651 0 0 787024. 2723.27 0.33 0.07 0.14 -1 -1 0.33 0.0280568 0.0247984 114 96 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 8.91 vpr 62.84 MiB -1 -1 0.21 18376 1 0.03 -1 -1 30492 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 360 293 1 182 96 17 17 289 -1 unnamed_device 24.3 MiB 3.50 1035 16083 4540 9099 2444 62.8 MiB 0.14 0.00 4.13563 -128.556 -4.13563 4.13563 1.01 0.00051971 0.000474481 0.0435765 0.0399014 34 2260 25 6.87369e+06 447163 618332. 2139.56 1.68 0.173673 0.151819 25762 151098 -1 1929 17 981 1588 107390 24090 2.98701 2.98701 -111.824 -2.98701 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0241479 0.0215244 134 60 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 9.69 vpr 63.08 MiB -1 -1 0.18 18684 1 0.03 -1 -1 30428 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 396 299 1 240 89 17 17 289 -1 unnamed_device 24.6 MiB 4.84 1287 13355 3699 8482 1174 63.1 MiB 0.15 0.00 5.89739 -178.153 -5.89739 5.89739 1.01 0.000667403 0.000616488 0.0454889 0.0417105 30 3132 24 6.87369e+06 349346 556674. 1926.21 1.15 0.144678 0.128746 25186 138497 -1 2431 22 1816 2892 196741 44670 4.7438 4.7438 -161.916 -4.7438 0 0 706193. 2443.58 0.31 0.09 0.13 -1 -1 0.31 0.0317631 0.0280728 171 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 6.36 vpr 62.21 MiB -1 -1 0.20 18032 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63708 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.6 MiB 1.54 701 8879 2399 5497 983 62.2 MiB 0.06 0.00 3.00866 -95.1783 -3.00866 3.00866 0.94 0.000407271 0.000374703 0.0230319 0.0211904 34 1601 19 6.87369e+06 209608 618332. 2139.56 1.43 0.102317 0.0884055 25762 151098 -1 1449 16 728 977 75498 17481 2.43377 2.43377 -94.8584 -2.43377 0 0 787024. 2723.27 0.30 0.04 0.15 -1 -1 0.30 0.0152873 0.0134897 81 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 5.83 vpr 62.48 MiB -1 -1 0.19 18416 1 0.03 -1 -1 30428 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63984 30 32 286 239 1 151 81 17 17 289 -1 unnamed_device 23.9 MiB 1.34 780 10931 2920 7179 832 62.5 MiB 0.10 0.00 4.09289 -125.17 -4.09289 4.09289 1.01 0.000458406 0.000422347 0.0347456 0.0319963 30 1832 21 6.87369e+06 265503 556674. 1926.21 0.97 0.111073 0.097533 25186 138497 -1 1484 19 812 1262 82398 18839 2.96331 2.96331 -113.015 -2.96331 0 0 706193. 2443.58 0.24 0.06 0.14 -1 -1 0.24 0.0239841 0.0208838 105 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 4.92 vpr 62.64 MiB -1 -1 0.17 18408 1 0.03 -1 -1 30172 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 296 247 1 158 87 17 17 289 -1 unnamed_device 24.0 MiB 0.90 823 13335 3842 8129 1364 62.6 MiB 0.12 0.00 3.6323 -119.992 -3.6323 3.6323 0.74 0.000637717 0.000592915 0.0465876 0.0432255 32 2217 24 6.87369e+06 321398 586450. 2029.24 0.95 0.130966 0.115497 25474 144626 -1 1825 20 1191 2125 157059 35877 2.94931 2.94931 -115.521 -2.94931 0 0 744469. 2576.02 0.32 0.07 0.14 -1 -1 0.32 0.024716 0.021848 109 34 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 5.49 vpr 62.26 MiB -1 -1 0.17 17940 1 0.03 -1 -1 30196 -1 -1 29 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63752 25 32 216 194 1 123 86 17 17 289 -1 unnamed_device 23.8 MiB 0.90 478 11804 3373 6324 2107 62.3 MiB 0.08 0.00 3.5473 -82.0121 -3.5473 3.5473 1.01 0.000344884 0.000314331 0.0242002 0.0220992 32 1261 26 6.87369e+06 405241 586450. 2029.24 1.06 0.079309 0.0696522 25474 144626 -1 1063 16 564 1052 72351 17864 2.73901 2.73901 -76.2404 -2.73901 0 0 744469. 2576.02 0.32 0.04 0.14 -1 -1 0.32 0.0148464 0.0131475 87 29 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 8.73 vpr 62.98 MiB -1 -1 0.23 18320 1 0.03 -1 -1 30284 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 376 307 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 3.27 1101 11796 3845 6942 1009 63.0 MiB 0.12 0.00 4.3434 -133.109 -4.3434 4.3434 0.96 0.000580448 0.000534556 0.0399466 0.0367769 34 2647 25 6.87369e+06 279477 618332. 2139.56 1.73 0.168923 0.146964 25762 151098 -1 2306 21 1432 2533 177488 39810 3.72146 3.72146 -132.436 -3.72146 0 0 787024. 2723.27 0.33 0.08 0.15 -1 -1 0.33 0.0304772 0.0270498 133 72 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 9.14 vpr 63.04 MiB -1 -1 0.24 18732 1 0.04 -1 -1 30344 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 409 331 1 193 94 17 17 289 -1 unnamed_device 24.4 MiB 3.63 1005 17347 4974 10720 1653 63.0 MiB 0.17 0.00 4.12463 -135.699 -4.12463 4.12463 1.01 0.000604155 0.000552371 0.0542267 0.04965 34 2358 23 6.87369e+06 433189 618332. 2139.56 1.73 0.206681 0.182501 25762 151098 -1 2100 23 1783 2852 185900 42968 3.46616 3.46616 -131.753 -3.46616 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0325734 0.0288774 143 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 8.58 vpr 62.87 MiB -1 -1 0.19 18284 1 0.03 -1 -1 30292 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 354 285 1 223 88 17 17 289 -1 unnamed_device 24.3 MiB 3.06 1161 17053 5989 8608 2456 62.9 MiB 0.17 0.00 5.4505 -158.266 -5.4505 5.4505 1.04 0.000560398 0.000513535 0.0510723 0.0468946 34 2762 27 6.89349e+06 338252 618332. 2139.56 1.73 0.18419 0.162255 25762 151098 -1 2379 19 1519 2224 164781 37029 4.40829 4.40829 -149.204 -4.40829 0 0 787024. 2723.27 0.34 0.08 0.13 -1 -1 0.34 0.0286336 0.0256276 149 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 10.08 vpr 62.77 MiB -1 -1 0.20 18372 1 0.04 -1 -1 30528 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 363 293 1 229 88 17 17 289 -1 unnamed_device 24.3 MiB 1.91 1183 17053 6028 7314 3711 62.8 MiB 0.14 0.00 4.96382 -147.599 -4.96382 4.96382 0.94 0.00056877 0.000524297 0.0486377 0.0446691 36 3068 43 6.89349e+06 366440 648988. 2245.63 4.63 0.287847 0.251051 26050 158493 -1 2421 23 2148 3169 266082 56927 4.45493 4.45493 -144.69 -4.45493 0 0 828058. 2865.25 0.23 0.11 0.14 -1 -1 0.23 0.0343242 0.0299333 157 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.84 vpr 62.48 MiB -1 -1 0.20 18292 1 0.03 -1 -1 30288 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 299 247 1 190 85 17 17 289 -1 unnamed_device 23.8 MiB 2.25 1005 8641 2306 5994 341 62.5 MiB 0.09 0.00 4.21693 -118.79 -4.21693 4.21693 0.74 0.000626056 0.000579471 0.0321247 0.0296623 34 2357 24 6.89349e+06 295971 618332. 2139.56 1.44 0.157326 0.136459 25762 151098 -1 2019 20 1205 1725 120272 27258 3.6263 3.6263 -115.309 -3.6263 0 0 787024. 2723.27 0.23 0.07 0.14 -1 -1 0.23 0.0269226 0.0235077 125 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 8.56 vpr 62.54 MiB -1 -1 0.20 18424 1 0.03 -1 -1 30240 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 308 248 1 195 85 17 17 289 -1 unnamed_device 23.9 MiB 1.98 1042 11245 2935 7152 1158 62.5 MiB 0.10 0.00 4.87453 -132.17 -4.87453 4.87453 0.94 0.00048723 0.000447714 0.0316121 0.0290888 36 2348 33 6.89349e+06 338252 648988. 2245.63 3.07 0.236519 0.206006 26050 158493 -1 2131 22 1357 2271 160452 36428 3.9709 3.9709 -126.982 -3.9709 0 0 828058. 2865.25 0.35 0.09 0.16 -1 -1 0.35 0.0316701 0.0282835 134 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 7.46 vpr 62.62 MiB -1 -1 0.21 18156 1 0.03 -1 -1 30424 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 336 268 1 212 87 17 17 289 -1 unnamed_device 24.1 MiB 1.79 1138 14679 5112 7369 2198 62.6 MiB 0.15 0.00 5.26431 -151.77 -5.26431 5.26431 0.96 0.000536794 0.000493441 0.0456475 0.0420987 34 2976 24 6.89349e+06 324158 618332. 2139.56 2.01 0.178814 0.157107 25762 151098 -1 2486 21 1675 3002 235279 51686 4.19399 4.19399 -143.55 -4.19399 0 0 787024. 2723.27 0.33 0.09 0.15 -1 -1 0.33 0.0267137 0.0235626 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 8.43 vpr 62.73 MiB -1 -1 0.21 18352 1 0.03 -1 -1 30268 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 366 295 1 231 97 17 17 289 -1 unnamed_device 24.1 MiB 2.65 1321 18079 5361 9939 2779 62.7 MiB 0.17 0.00 4.04936 -131.962 -4.04936 4.04936 1.02 0.000556607 0.000507789 0.0500723 0.0459092 34 3379 21 6.89349e+06 465097 618332. 2139.56 1.93 0.207241 0.1836 25762 151098 -1 2680 20 1644 2722 189636 42924 3.60325 3.60325 -132.256 -3.60325 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0258007 0.0227522 162 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 6.30 vpr 62.19 MiB -1 -1 0.19 18392 1 0.03 -1 -1 30600 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63680 27 32 259 221 1 160 80 17 17 289 -1 unnamed_device 23.7 MiB 1.21 839 11260 3450 5917 1893 62.2 MiB 0.09 0.00 4.19007 -114.449 -4.19007 4.19007 1.00 0.000375241 0.000344648 0.0288543 0.0264381 34 1869 21 6.89349e+06 295971 618332. 2139.56 1.67 0.135114 0.118154 25762 151098 -1 1679 19 1135 1636 136566 29464 2.95216 2.95216 -103.43 -2.95216 0 0 787024. 2723.27 0.25 0.07 0.16 -1 -1 0.25 0.0218085 0.0189661 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 6.90 vpr 62.38 MiB -1 -1 0.18 18124 1 0.03 -1 -1 30244 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 271 219 1 164 95 17 17 289 -1 unnamed_device 23.8 MiB 0.88 949 9383 2442 6271 670 62.4 MiB 0.08 0.00 3.43417 -103.803 -3.43417 3.43417 0.72 0.000635478 0.000589428 0.02829 0.0262137 30 2218 23 6.89349e+06 451003 556674. 1926.21 2.95 0.211098 0.182778 25186 138497 -1 1809 18 912 1692 101839 23048 2.50021 2.50021 -95.9864 -2.50021 0 0 706193. 2443.58 0.27 0.06 0.14 -1 -1 0.27 0.0229247 0.0199601 119 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 7.55 vpr 62.63 MiB -1 -1 0.22 18280 1 0.03 -1 -1 30168 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 31 32 317 271 1 207 82 17 17 289 -1 unnamed_device 24.2 MiB 2.17 1057 11652 3291 6897 1464 62.6 MiB 0.11 0.00 3.72781 -126.045 -3.72781 3.72781 1.02 0.000481892 0.000434186 0.0338599 0.0309964 34 2379 24 6.89349e+06 267783 618332. 2139.56 1.64 0.126574 0.111376 25762 151098 -1 2214 21 1590 2172 175858 38501 2.99541 2.99541 -121.24 -2.99541 0 0 787024. 2723.27 0.34 0.08 0.15 -1 -1 0.34 0.0255227 0.0224518 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 8.01 vpr 62.40 MiB -1 -1 0.24 18276 1 0.03 -1 -1 30112 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 298 248 1 185 82 17 17 289 -1 unnamed_device 23.9 MiB 2.60 828 7914 1799 5700 415 62.4 MiB 0.09 0.00 4.03358 -129.578 -4.03358 4.03358 1.00 0.000494326 0.00045328 0.0239759 0.0220616 34 2269 20 6.89349e+06 253689 618332. 2139.56 1.73 0.131154 0.11331 25762 151098 -1 1923 19 1206 1620 107287 26680 3.13581 3.13581 -123.074 -3.13581 0 0 787024. 2723.27 0.35 0.07 0.15 -1 -1 0.35 0.026876 0.0241171 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 7.89 vpr 62.43 MiB -1 -1 0.24 18200 1 0.03 -1 -1 30564 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63924 30 32 303 262 1 191 83 17 17 289 -1 unnamed_device 23.8 MiB 2.57 926 14123 4183 7803 2137 62.4 MiB 0.12 0.00 4.47797 -129.601 -4.47797 4.47797 0.99 0.000507471 0.000467646 0.0387733 0.0354375 34 2151 19 6.89349e+06 295971 618332. 2139.56 1.66 0.132808 0.116489 25762 151098 -1 1799 20 1274 1698 123533 28104 3.456 3.456 -119.191 -3.456 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0222508 0.0195608 124 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.80 vpr 62.28 MiB -1 -1 0.18 18208 1 0.03 -1 -1 30100 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63776 32 32 276 237 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 1.86 952 13206 3630 8318 1258 62.3 MiB 0.12 0.00 3.6807 -113.75 -3.6807 3.6807 0.86 0.00069993 0.000651316 0.0492724 0.0457144 34 2150 26 6.89349e+06 239595 618332. 2139.56 1.56 0.1487 0.130212 25762 151098 -1 1881 21 1017 1387 93977 22383 2.88961 2.88961 -110.952 -2.88961 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0207153 0.0181095 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 8.20 vpr 62.65 MiB -1 -1 0.20 18264 1 0.03 -1 -1 30444 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 344 272 1 209 87 17 17 289 -1 unnamed_device 24.2 MiB 2.53 1096 16791 5267 9304 2220 62.7 MiB 0.15 0.00 4.09068 -133.499 -4.09068 4.09068 1.03 0.000563787 0.000518872 0.0475017 0.0434794 34 2677 31 6.89349e+06 324158 618332. 2139.56 1.90 0.203429 0.179779 25762 151098 -1 2287 18 1601 2508 190294 42207 3.08476 3.08476 -120.84 -3.08476 0 0 787024. 2723.27 0.34 0.08 0.15 -1 -1 0.34 0.0277691 0.0249662 143 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 8.05 vpr 62.91 MiB -1 -1 0.21 18288 1 0.03 -1 -1 30456 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 363 295 1 232 88 17 17 289 -1 unnamed_device 24.4 MiB 2.21 1098 13348 3832 7332 2184 62.9 MiB 0.13 0.00 5.44961 -153.357 -5.44961 5.44961 0.96 0.000584575 0.000535665 0.0411761 0.037804 36 2880 47 6.89349e+06 338252 648988. 2245.63 2.22 0.194523 0.169628 26050 158493 -1 2356 21 1891 2637 197455 47125 4.74699 4.74699 -157.727 -4.74699 0 0 828058. 2865.25 0.33 0.08 0.15 -1 -1 0.33 0.0260194 0.022981 153 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 7.47 vpr 62.17 MiB -1 -1 0.19 18004 1 0.03 -1 -1 30352 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63664 29 32 248 215 1 160 79 17 17 289 -1 unnamed_device 23.8 MiB 2.27 831 9374 2437 5969 968 62.2 MiB 0.08 0.00 3.17792 -97.7522 -3.17792 3.17792 1.04 0.000418288 0.000383316 0.0243123 0.0223075 34 1826 21 6.89349e+06 253689 618332. 2139.56 1.61 0.12159 0.105847 25762 151098 -1 1596 19 938 1325 89623 21453 2.59761 2.59761 -93.1236 -2.59761 0 0 787024. 2723.27 0.32 0.05 0.14 -1 -1 0.32 0.0182557 0.0161399 102 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 8.35 vpr 62.80 MiB -1 -1 0.21 18216 1 0.03 -1 -1 30364 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 370 297 1 234 88 17 17 289 -1 unnamed_device 24.3 MiB 2.70 1293 12568 3874 7582 1112 62.8 MiB 0.13 0.00 4.1299 -137.165 -4.1299 4.1299 1.03 0.000623907 0.00057009 0.039406 0.036115 34 3075 24 6.89349e+06 338252 618332. 2139.56 1.89 0.187921 0.165732 25762 151098 -1 2637 19 1820 2879 198379 45498 3.58805 3.58805 -136.623 -3.58805 0 0 787024. 2723.27 0.34 0.09 0.15 -1 -1 0.34 0.0310875 0.0277042 159 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 7.57 vpr 62.80 MiB -1 -1 0.22 18280 1 0.03 -1 -1 30028 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 338 269 1 205 86 17 17 289 -1 unnamed_device 24.4 MiB 2.33 1050 11237 3157 6324 1756 62.8 MiB 0.11 0.00 4.12104 -133.15 -4.12104 4.12104 0.98 0.000545494 0.000502204 0.034906 0.0321121 34 2496 21 6.89349e+06 310065 618332. 2139.56 1.67 0.153499 0.133133 25762 151098 -1 2187 19 1311 1982 148834 32899 3.02016 3.02016 -119.486 -3.02016 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0242828 0.0214499 142 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.61 vpr 62.54 MiB -1 -1 0.18 18416 1 0.03 -1 -1 30392 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 323 276 1 215 85 17 17 289 -1 unnamed_device 24.1 MiB 2.07 1106 9943 2735 6276 932 62.5 MiB 0.10 0.00 3.55425 -126.676 -3.55425 3.55425 0.77 0.000664091 0.000617684 0.037306 0.0346077 34 2624 22 6.89349e+06 295971 618332. 2139.56 1.56 0.169065 0.147907 25762 151098 -1 2247 22 1457 1945 140412 31793 2.93426 2.93426 -120.26 -2.93426 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0286077 0.0248486 131 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 6.19 vpr 62.07 MiB -1 -1 0.18 17940 1 0.03 -1 -1 30120 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63556 30 32 222 206 1 140 77 17 17 289 -1 unnamed_device 23.5 MiB 1.20 750 8227 2512 4388 1327 62.1 MiB 0.06 0.00 2.66469 -91.1536 -2.66469 2.66469 1.01 0.000352425 0.000322071 0.020088 0.0183767 34 1498 18 6.89349e+06 211408 618332. 2139.56 1.50 0.101035 0.0873279 25762 151098 -1 1321 16 577 647 47347 10787 2.15017 2.15017 -87.6014 -2.15017 0 0 787024. 2723.27 0.33 0.04 0.15 -1 -1 0.33 0.0154036 0.0136877 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 7.53 vpr 62.41 MiB -1 -1 0.18 18264 1 0.03 -1 -1 30468 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 291 243 1 179 82 17 17 289 -1 unnamed_device 23.9 MiB 2.55 945 9338 2566 6202 570 62.4 MiB 0.09 0.00 4.75752 -142.801 -4.75752 4.75752 0.94 0.000481793 0.000443399 0.0273395 0.0251871 34 2274 26 6.89349e+06 267783 618332. 2139.56 1.61 0.108955 0.0947447 25762 151098 -1 1873 21 1112 1773 125325 29028 3.4445 3.4445 -127.829 -3.4445 0 0 787024. 2723.27 0.23 0.07 0.14 -1 -1 0.23 0.0259167 0.0225661 117 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 6.59 vpr 62.59 MiB -1 -1 0.19 18160 1 0.03 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 342 271 1 207 98 17 17 289 -1 unnamed_device 24.1 MiB 1.32 1106 14498 3974 9407 1117 62.6 MiB 0.15 0.00 4.73843 -148.84 -4.73843 4.73843 1.00 0.000715415 0.000662694 0.0491126 0.0456082 34 2632 31 6.89349e+06 479191 618332. 2139.56 1.54 0.206179 0.180018 25762 151098 -1 2192 22 1507 2259 164967 36246 3.86294 3.86294 -137.428 -3.86294 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0303629 0.0264358 151 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 6.25 vpr 62.83 MiB -1 -1 0.26 18640 1 0.05 -1 -1 30308 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 372 300 1 229 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1263 9303 2806 5911 586 62.8 MiB 0.11 0.00 4.4892 -137.729 -4.4892 4.4892 0.77 0.00075047 0.000697923 0.0401726 0.0372967 34 3052 25 6.89349e+06 324158 618332. 2139.56 1.69 0.207639 0.181053 25762 151098 -1 2533 21 1826 2869 217958 46729 3.6235 3.6235 -133.018 -3.6235 0 0 787024. 2723.27 0.35 0.10 0.16 -1 -1 0.35 0.0341782 0.0305257 155 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 6.52 vpr 62.02 MiB -1 -1 0.20 18124 1 0.03 -1 -1 30548 -1 -1 18 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63512 26 32 190 182 1 126 76 17 17 289 -1 unnamed_device 23.5 MiB 1.49 418 9996 4123 4950 923 62.0 MiB 0.06 0.00 2.70371 -73.2251 -2.70371 2.70371 0.96 0.000339065 0.000311768 0.0230766 0.0212648 36 1129 18 6.89349e+06 253689 648988. 2245.63 1.59 0.094601 0.0821951 26050 158493 -1 1018 17 668 824 63687 16035 1.88975 1.88975 -66.6868 -1.88975 0 0 828058. 2865.25 0.34 0.04 0.15 -1 -1 0.34 0.0144333 0.012806 75 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 6.53 vpr 62.52 MiB -1 -1 0.19 18120 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 285 227 1 169 87 17 17 289 -1 unnamed_device 24.0 MiB 1.10 1037 13527 3557 8136 1834 62.5 MiB 0.12 0.00 4.54937 -129.45 -4.54937 4.54937 1.05 0.000410178 0.000374679 0.0399155 0.0367513 34 2293 21 6.89349e+06 324158 618332. 2139.56 1.74 0.158204 0.139051 25762 151098 -1 2072 18 1038 1885 137876 30347 3.48895 3.48895 -119.83 -3.48895 0 0 787024. 2723.27 0.33 0.07 0.14 -1 -1 0.33 0.0228588 0.0203855 119 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 5.21 vpr 61.80 MiB -1 -1 0.16 17840 1 0.03 -1 -1 30216 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63280 32 32 173 169 1 114 76 17 17 289 -1 unnamed_device 23.3 MiB 0.41 387 9836 3174 4591 2071 61.8 MiB 0.06 0.00 2.35942 -72.6422 -2.35942 2.35942 0.96 0.000333324 0.000305879 0.0212777 0.0194897 34 1243 29 6.89349e+06 169126 618332. 2139.56 1.46 0.0932649 0.0803263 25762 151098 -1 911 15 553 699 46373 13106 2.02876 2.02876 -71.0593 -2.02876 0 0 787024. 2723.27 0.33 0.03 0.14 -1 -1 0.33 0.0122997 0.0109191 65 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 7.12 vpr 62.50 MiB -1 -1 0.18 18408 1 0.03 -1 -1 30016 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 300 245 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 2.04 1049 14175 4566 7521 2088 62.5 MiB 0.14 0.00 4.89708 -136.784 -4.89708 4.89708 0.87 0.000646809 0.000601152 0.0538084 0.0499183 34 2324 25 6.89349e+06 281877 618332. 2139.56 1.56 0.196548 0.172234 25762 151098 -1 1992 19 1047 1545 118255 25906 3.75936 3.75936 -122.153 -3.75936 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0220543 0.0194117 125 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 7.26 vpr 62.34 MiB -1 -1 0.20 18116 1 0.03 -1 -1 30380 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 297 233 1 177 95 17 17 289 -1 unnamed_device 23.8 MiB 0.88 982 15863 4499 9572 1792 62.3 MiB 0.15 0.00 3.4448 -108.59 -3.4448 3.4448 1.02 0.000492672 0.0004534 0.0393819 0.0361274 28 2548 27 6.89349e+06 436909 531479. 1839.03 2.68 0.181795 0.158206 24610 126494 -1 2164 22 1332 2319 157410 37713 2.77285 2.77285 -107.441 -2.77285 0 0 648988. 2245.63 0.29 0.09 0.13 -1 -1 0.29 0.02973 0.0264136 130 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 10.91 vpr 62.63 MiB -1 -1 0.21 18288 1 0.03 -1 -1 30396 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 338 277 1 215 87 17 17 289 -1 unnamed_device 24.2 MiB 2.56 1071 15639 5177 7703 2759 62.6 MiB 0.14 0.00 4.83798 -133.537 -4.83798 4.83798 0.96 0.000545422 0.000501191 0.0459471 0.0422255 38 2568 21 6.89349e+06 324158 678818. 2348.85 4.73 0.251203 0.222191 26626 170182 -1 2218 21 1472 2238 168188 36151 3.74036 3.74036 -126.172 -3.74036 0 0 902133. 3121.57 0.36 0.08 0.16 -1 -1 0.36 0.0292865 0.0260052 142 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 7.39 vpr 62.39 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30172 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 32 32 284 241 1 177 81 17 17 289 -1 unnamed_device 23.8 MiB 2.06 990 13381 4387 7225 1769 62.4 MiB 0.12 0.00 3.7357 -124.935 -3.7357 3.7357 1.03 0.000425192 0.000388291 0.0368306 0.0337832 34 2228 22 6.89349e+06 239595 618332. 2139.56 1.68 0.15605 0.137287 25762 151098 -1 1832 20 1129 1670 111139 26061 3.05656 3.05656 -119.272 -3.05656 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0227486 0.0201537 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 7.05 vpr 62.34 MiB -1 -1 0.20 17960 1 0.03 -1 -1 30200 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 30 32 262 227 1 161 79 17 17 289 -1 unnamed_device 23.9 MiB 1.71 909 12754 4897 5949 1908 62.3 MiB 0.10 0.00 4.01762 -115.9 -4.01762 4.01762 0.97 0.000441633 0.000404344 0.035329 0.0324715 34 2250 24 6.89349e+06 239595 618332. 2139.56 1.89 0.153196 0.134907 25762 151098 -1 1846 20 943 1496 112568 27303 3.21355 3.21355 -109.832 -3.21355 0 0 787024. 2723.27 0.34 0.06 0.14 -1 -1 0.34 0.021882 0.0194236 104 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 6.41 vpr 62.36 MiB -1 -1 0.17 18340 1 0.03 -1 -1 30096 -1 -1 20 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63852 28 32 260 223 1 163 80 17 17 289 -1 unnamed_device 23.9 MiB 1.64 770 10744 2793 6819 1132 62.4 MiB 0.09 0.00 4.27226 -116.484 -4.27226 4.27226 0.77 0.000568963 0.000529163 0.0380859 0.0353803 34 2151 23 6.89349e+06 281877 618332. 2139.56 1.62 0.156786 0.136371 25762 151098 -1 1759 19 1212 2038 161756 40149 3.21315 3.21315 -110.323 -3.21315 0 0 787024. 2723.27 0.34 0.07 0.14 -1 -1 0.34 0.022263 0.0198247 107 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.52 vpr 62.18 MiB -1 -1 0.19 17932 1 0.03 -1 -1 30440 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63672 32 32 253 210 1 156 81 17 17 289 -1 unnamed_device 23.4 MiB 0.78 762 11106 3345 5408 2353 62.2 MiB 0.09 0.00 3.95122 -118.483 -3.95122 3.95122 1.03 0.000436015 0.000401695 0.0289999 0.0265888 32 1985 20 6.89349e+06 239595 586450. 2029.24 1.08 0.0924436 0.0817468 25474 144626 -1 1662 18 1061 1772 118466 28384 3.05266 3.05266 -111.793 -3.05266 0 0 744469. 2576.02 0.32 0.06 0.14 -1 -1 0.32 0.0201509 0.0178423 101 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 7.37 vpr 62.27 MiB -1 -1 0.18 17980 1 0.03 -1 -1 30172 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 271 231 1 172 81 17 17 289 -1 unnamed_device 23.8 MiB 2.03 947 14081 4218 7922 1941 62.3 MiB 0.12 0.00 3.58045 -111.985 -3.58045 3.58045 1.01 0.000455607 0.000418862 0.0391731 0.0359871 34 2214 22 6.89349e+06 253689 618332. 2139.56 1.69 0.158491 0.13873 25762 151098 -1 1873 18 941 1489 112608 25327 2.88716 2.88716 -110.28 -2.88716 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0198334 0.0176009 108 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 7.18 vpr 62.61 MiB -1 -1 0.20 18232 1 0.03 -1 -1 30376 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 29 32 291 250 1 185 83 17 17 289 -1 unnamed_device 24.0 MiB 2.18 967 13763 3852 8263 1648 62.6 MiB 0.11 0.00 3.56757 -107.571 -3.56757 3.56757 0.96 0.000473761 0.000435767 0.0378669 0.0348299 34 2032 16 6.89349e+06 310065 618332. 2139.56 1.50 0.133327 0.115851 25762 151098 -1 1857 22 1162 1597 121690 28449 2.66166 2.66166 -101.063 -2.66166 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0230266 0.0201678 120 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 7.80 vpr 62.66 MiB -1 -1 0.23 18264 1 0.03 -1 -1 30540 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 367 282 1 224 89 17 17 289 -1 unnamed_device 24.1 MiB 2.06 1340 9395 2079 6207 1109 62.7 MiB 0.10 0.00 4.57545 -132.533 -4.57545 4.57545 1.01 0.000673239 0.000622975 0.0316919 0.0291661 34 3076 24 6.89349e+06 352346 618332. 2139.56 1.85 0.15971 0.141812 25762 151098 -1 2691 30 1595 2838 415929 178622 3.97856 3.97856 -133.619 -3.97856 0 0 787024. 2723.27 0.34 0.19 0.14 -1 -1 0.34 0.044667 0.0398355 159 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 8.26 vpr 62.91 MiB -1 -1 0.19 18476 1 0.04 -1 -1 30356 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 391 311 1 250 88 17 17 289 -1 unnamed_device 24.2 MiB 2.43 1272 11983 3218 7752 1013 62.9 MiB 0.13 0.00 4.72237 -154.591 -4.72237 4.72237 0.95 0.000600697 0.000553383 0.0398695 0.0366729 36 3210 47 6.89349e+06 338252 648988. 2245.63 2.33 0.210734 0.183194 26050 158493 -1 2827 22 2350 3271 298299 68594 4.07495 4.07495 -151.993 -4.07495 0 0 828058. 2865.25 0.23 0.12 0.16 -1 -1 0.23 0.0347958 0.0304507 168 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 6.79 vpr 62.38 MiB -1 -1 0.19 18276 1 0.03 -1 -1 30172 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 31 32 279 237 1 167 81 17 17 289 -1 unnamed_device 23.9 MiB 1.43 841 12681 4546 5579 2556 62.4 MiB 0.10 0.00 4.0919 -121.826 -4.0919 4.0919 0.99 0.000460119 0.00042295 0.0345828 0.0317441 34 2101 28 6.89349e+06 253689 618332. 2139.56 1.79 0.151967 0.133591 25762 151098 -1 1706 19 966 1463 126608 27418 3.21935 3.21935 -112.14 -3.21935 0 0 787024. 2723.27 0.32 0.06 0.15 -1 -1 0.32 0.0199167 0.0175166 109 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 8.46 vpr 63.29 MiB -1 -1 0.21 18392 1 0.03 -1 -1 30420 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 31 32 370 297 1 235 88 17 17 289 -1 unnamed_device 24.6 MiB 2.64 1305 10618 3120 6525 973 63.3 MiB 0.12 0.00 4.27101 -135.48 -4.27101 4.27101 1.10 0.000598546 0.000556056 0.038256 0.0352664 34 3002 24 6.89349e+06 352346 618332. 2139.56 1.90 0.199341 0.176256 25762 151098 -1 2613 21 1698 2487 196846 43541 3.7124 3.7124 -133.037 -3.7124 0 0 787024. 2723.27 0.34 0.09 0.14 -1 -1 0.34 0.0317573 0.0283774 160 61 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 8.65 vpr 63.09 MiB -1 -1 0.22 18692 1 0.03 -1 -1 30300 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 31 32 377 302 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 3.30 1252 16858 5939 8225 2694 63.1 MiB 0.18 0.00 5.45066 -163.759 -5.45066 5.45066 0.85 0.000747312 0.000692972 0.0675955 0.0626647 34 3341 29 6.89349e+06 352346 618332. 2139.56 1.78 0.209785 0.184756 25762 151098 -1 2662 23 2037 3066 279102 58052 4.60038 4.60038 -155.657 -4.60038 0 0 787024. 2723.27 0.22 0.11 0.14 -1 -1 0.22 0.0342158 0.0298701 163 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 10.81 vpr 62.92 MiB -1 -1 0.22 18448 1 0.04 -1 -1 30428 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 383 305 1 240 88 17 17 289 -1 unnamed_device 24.4 MiB 2.72 1213 15688 5612 7679 2397 62.9 MiB 0.17 0.00 5.84064 -169.918 -5.84064 5.84064 1.05 0.000610537 0.000560573 0.0533059 0.0490136 40 2623 22 6.89349e+06 352346 706193. 2443.58 4.08 0.295029 0.260792 26914 176310 -1 2476 24 1814 2824 200461 46850 4.68828 4.68828 -158.13 -4.68828 0 0 926341. 3205.33 0.41 0.11 0.17 -1 -1 0.41 0.0371997 0.0332488 166 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 7.36 vpr 62.72 MiB -1 -1 0.20 18184 1 0.04 -1 -1 30432 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 352 285 1 223 87 17 17 289 -1 unnamed_device 24.2 MiB 2.40 1263 9879 2667 6477 735 62.7 MiB 0.12 0.00 4.11004 -128.233 -4.11004 4.11004 0.79 0.000724193 0.000672195 0.039623 0.0367556 34 2902 21 6.89349e+06 338252 618332. 2139.56 1.54 0.157391 0.138319 25762 151098 -1 2544 22 1701 2478 184821 41914 3.15806 3.15806 -118.918 -3.15806 0 0 787024. 2723.27 0.35 0.09 0.16 -1 -1 0.35 0.0330002 0.0293611 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 7.46 vpr 62.45 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30296 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 291 242 1 188 84 17 17 289 -1 unnamed_device 23.8 MiB 2.24 1023 13992 4497 7044 2451 62.5 MiB 0.13 0.00 4.45885 -119.521 -4.45885 4.45885 0.99 0.000494015 0.000457883 0.0396546 0.0364841 34 2427 19 6.89349e+06 281877 618332. 2139.56 1.64 0.143637 0.125302 25762 151098 -1 2093 21 1112 1621 124545 27372 3.7986 3.7986 -120.226 -3.7986 0 0 787024. 2723.27 0.32 0.07 0.16 -1 -1 0.32 0.0230987 0.0203281 120 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.68 vpr 63.23 MiB -1 -1 0.22 18572 1 0.04 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 457 356 1 296 95 17 17 289 -1 unnamed_device 24.7 MiB 2.74 1484 18239 5692 9124 3423 63.2 MiB 0.19 0.00 5.31607 -168.894 -5.31607 5.31607 1.03 0.000771432 0.000709049 0.0664471 0.061092 36 4031 30 6.89349e+06 436909 648988. 2245.63 3.02 0.270647 0.240303 26050 158493 -1 3260 20 2552 3776 298910 66467 4.44244 4.44244 -160.78 -4.44244 0 0 828058. 2865.25 0.32 0.12 0.16 -1 -1 0.32 0.0332693 0.0294965 203 87 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 7.32 vpr 62.27 MiB -1 -1 0.19 17984 1 0.03 -1 -1 30176 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 261 225 1 171 81 17 17 289 -1 unnamed_device 23.8 MiB 1.96 846 14606 5266 7102 2238 62.3 MiB 0.11 0.00 3.7437 -110.334 -3.7437 3.7437 1.06 0.000414516 0.000379894 0.0378489 0.0346741 34 2112 31 6.89349e+06 253689 618332. 2139.56 1.65 0.152286 0.133472 25762 151098 -1 1866 23 1208 1685 121963 28333 2.92916 2.92916 -108.2 -2.92916 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.023789 0.0208975 106 28 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.66 vpr 62.71 MiB -1 -1 0.21 18304 1 0.03 -1 -1 30236 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 337 267 1 207 86 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1166 14639 3979 9152 1508 62.7 MiB 0.14 0.00 4.78472 -144.026 -4.78472 4.78472 1.05 0.000506161 0.000462278 0.0455221 0.0416979 30 2873 22 6.89349e+06 324158 556674. 1926.21 1.23 0.136042 0.121663 25186 138497 -1 2298 18 1267 2011 140907 30722 3.7785 3.7785 -134.678 -3.7785 0 0 706193. 2443.58 0.30 0.07 0.13 -1 -1 0.30 0.0251434 0.0224163 140 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 8.32 vpr 62.80 MiB -1 -1 0.21 18156 1 0.03 -1 -1 30328 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 349 284 1 222 87 17 17 289 -1 unnamed_device 24.3 MiB 2.60 1247 9495 2379 6397 719 62.8 MiB 0.11 0.00 4.43179 -132.548 -4.43179 4.43179 1.08 0.000644781 0.000592694 0.0333868 0.0306615 34 3091 27 6.89349e+06 324158 618332. 2139.56 1.89 0.17347 0.152378 25762 151098 -1 2716 19 1507 2425 171216 38284 3.97325 3.97325 -131.768 -3.97325 0 0 787024. 2723.27 0.34 0.08 0.14 -1 -1 0.34 0.0279554 0.0249527 149 53 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 5.53 vpr 62.44 MiB -1 -1 0.19 18112 1 0.03 -1 -1 30100 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 291 230 1 175 90 17 17 289 -1 unnamed_device 23.9 MiB 0.69 983 11748 2712 8028 1008 62.4 MiB 0.10 0.00 4.26729 -129.037 -4.26729 4.26729 1.05 0.00044738 0.000410459 0.0306592 0.0281142 30 2359 20 6.89349e+06 366440 556674. 1926.21 1.15 0.11157 0.0992463 25186 138497 -1 2080 23 1168 2312 157273 35494 3.5399 3.5399 -124.689 -3.5399 0 0 706193. 2443.58 0.31 0.08 0.14 -1 -1 0.31 0.0257909 0.0225458 123 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 8.15 vpr 62.63 MiB -1 -1 0.20 18472 1 0.04 -1 -1 30216 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 353 287 1 220 87 17 17 289 -1 unnamed_device 24.2 MiB 2.19 1053 12951 4521 6182 2248 62.6 MiB 0.13 0.00 4.44301 -128.576 -4.44301 4.44301 1.06 0.000582751 0.000539652 0.0407627 0.0374858 34 2958 41 6.89349e+06 324158 618332. 2139.56 2.13 0.162965 0.143153 25762 151098 -1 2298 29 1979 2903 326327 111738 3.00506 3.00506 -116.464 -3.00506 0 0 787024. 2723.27 0.33 0.14 0.15 -1 -1 0.33 0.0379704 0.0336246 148 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.89 vpr 62.82 MiB -1 -1 0.20 18212 1 0.03 -1 -1 30276 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 361 291 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 2.46 1202 11788 3122 7816 850 62.8 MiB 0.11 0.00 4.19329 -133.825 -4.19329 4.19329 0.98 0.000516073 0.000475525 0.0348475 0.0319557 36 2808 22 6.89349e+06 338252 648988. 2245.63 1.76 0.185616 0.161355 26050 158493 -1 2521 21 1644 2499 208256 44561 3.5733 3.5733 -128.39 -3.5733 0 0 828058. 2865.25 0.33 0.09 0.16 -1 -1 0.33 0.0273498 0.024109 154 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 7.83 vpr 62.93 MiB -1 -1 0.21 18264 1 0.04 -1 -1 30280 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 382 305 1 243 90 17 17 289 -1 unnamed_device 24.4 MiB 2.16 1324 15969 4574 9361 2034 62.9 MiB 0.17 0.00 4.16268 -137.652 -4.16268 4.16268 1.08 0.000586171 0.00053853 0.0502357 0.0461408 34 3043 22 6.89349e+06 366440 618332. 2139.56 1.83 0.200539 0.176912 25762 151098 -1 2581 20 1819 2600 184728 42118 3.39665 3.39665 -132.989 -3.39665 0 0 787024. 2723.27 0.33 0.09 0.14 -1 -1 0.33 0.0301937 0.0268808 164 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.70 vpr 62.38 MiB -1 -1 0.19 18240 1 0.03 -1 -1 30360 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 306 248 1 188 85 17 17 289 -1 unnamed_device 24.1 MiB 2.10 1043 15337 4572 8852 1913 62.4 MiB 0.14 0.00 4.60527 -135.983 -4.60527 4.60527 0.77 0.000645712 0.000598342 0.0569815 0.052829 34 2375 25 6.89349e+06 295971 618332. 2139.56 1.49 0.196363 0.171629 25762 151098 -1 2063 20 1044 1624 120817 26970 3.86286 3.86286 -128.916 -3.86286 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0279534 0.0243523 128 24 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 7.27 vpr 62.75 MiB -1 -1 0.20 18276 1 0.03 -1 -1 30064 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 319 257 1 203 86 17 17 289 -1 unnamed_device 24.0 MiB 2.01 999 13883 3878 7792 2213 62.8 MiB 0.13 0.00 4.84598 -138.728 -4.84598 4.84598 0.80 0.000507954 0.000466164 0.0408774 0.0375687 34 2512 20 6.89349e+06 310065 618332. 2139.56 1.83 0.169325 0.148567 25762 151098 -1 2175 23 1492 2204 150954 34605 3.7213 3.7213 -127.978 -3.7213 0 0 787024. 2723.27 0.35 0.08 0.14 -1 -1 0.35 0.0302916 0.0269236 135 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 10.03 vpr 62.82 MiB -1 -1 0.22 18640 1 0.03 -1 -1 30248 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 373 299 1 227 87 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1200 9111 2304 5966 841 62.8 MiB 0.11 0.00 4.69282 -141.391 -4.69282 4.69282 0.99 0.000604634 0.000557242 0.0301275 0.0277305 36 2961 20 6.89349e+06 338252 648988. 2245.63 4.47 0.221046 0.191521 26050 158493 -1 2588 19 1640 2613 198426 44629 3.76586 3.76586 -131.314 -3.76586 0 0 828058. 2865.25 0.36 0.09 0.15 -1 -1 0.36 0.0312409 0.0279586 156 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 11.34 vpr 62.93 MiB -1 -1 0.22 18460 1 0.03 -1 -1 30356 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 387 315 1 249 89 17 17 289 -1 unnamed_device 24.2 MiB 3.24 1343 12167 3516 8024 627 62.9 MiB 0.13 0.00 4.50405 -138.501 -4.50405 4.50405 1.00 0.000590097 0.000541147 0.0390502 0.0358098 34 3721 27 6.89349e+06 352346 618332. 2139.56 4.39 0.255123 0.220045 25762 151098 -1 3040 22 2109 3083 232187 50251 3.99926 3.99926 -140.882 -3.99926 0 0 787024. 2723.27 0.32 0.10 0.15 -1 -1 0.32 0.0293488 0.0258867 166 77 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 7.01 vpr 62.19 MiB -1 -1 0.19 18040 1 0.03 -1 -1 30352 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63684 32 32 251 219 1 156 79 17 17 289 -1 unnamed_device 23.7 MiB 1.97 626 7008 1670 4854 484 62.2 MiB 0.07 0.00 3.61459 -104.917 -3.61459 3.61459 0.78 0.000464026 0.000425669 0.0207311 0.0190919 34 1974 21 6.89349e+06 211408 618332. 2139.56 1.76 0.117016 0.100764 25762 151098 -1 1538 17 992 1487 97011 25631 2.63651 2.63651 -98.5395 -2.63651 0 0 787024. 2723.27 0.35 0.06 0.15 -1 -1 0.35 0.0200887 0.017808 96 23 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 8.77 vpr 62.76 MiB -1 -1 0.25 18304 1 0.03 -1 -1 30232 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 341 285 1 219 84 17 17 289 -1 unnamed_device 24.3 MiB 1.57 1155 12345 3444 6961 1940 62.8 MiB 0.13 0.00 4.26535 -147.353 -4.26535 4.26535 0.72 0.000683658 0.000633973 0.048976 0.0453818 36 2707 22 6.89349e+06 281877 648988. 2245.63 3.83 0.235617 0.204528 26050 158493 -1 2384 20 1831 2453 213374 43896 3.511 3.511 -140.408 -3.511 0 0 828058. 2865.25 0.35 0.09 0.16 -1 -1 0.35 0.0271632 0.0241669 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 7.88 vpr 62.79 MiB -1 -1 0.22 18644 1 0.03 -1 -1 30376 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 387 293 1 237 89 17 17 289 -1 unnamed_device 24.2 MiB 2.30 1356 17711 6423 8690 2598 62.8 MiB 0.19 0.00 5.51412 -162.32 -5.51412 5.51412 0.75 0.000751116 0.000694834 0.0706179 0.0652995 34 3456 41 6.89349e+06 352346 618332. 2139.56 2.30 0.243955 0.214285 25762 151098 -1 2786 20 1790 2816 195895 45433 4.7992 4.7992 -156.745 -4.7992 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.034413 0.0308484 168 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 7.73 vpr 62.53 MiB -1 -1 0.20 18192 1 0.03 -1 -1 30380 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 340 270 1 212 86 17 17 289 -1 unnamed_device 23.9 MiB 2.21 1176 13694 3960 8110 1624 62.5 MiB 0.14 0.00 4.43296 -141.765 -4.43296 4.43296 0.97 0.000531883 0.000488504 0.0412844 0.0379454 34 2794 24 6.89349e+06 310065 618332. 2139.56 1.85 0.156999 0.138943 25762 151098 -1 2398 20 1532 2266 184180 39618 3.14271 3.14271 -123.789 -3.14271 0 0 787024. 2723.27 0.39 0.09 0.15 -1 -1 0.39 0.0315419 0.0280937 144 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 6.25 vpr 62.40 MiB -1 -1 0.19 18196 1 0.03 -1 -1 30344 -1 -1 27 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 278 235 1 175 89 17 17 289 -1 unnamed_device 23.8 MiB 1.32 953 10979 2941 7323 715 62.4 MiB 0.11 0.00 4.13238 -125.523 -4.13238 4.13238 0.98 0.0006274 0.000582138 0.0316077 0.0290708 34 2277 19 6.89349e+06 380534 618332. 2139.56 1.44 0.157648 0.136643 25762 151098 -1 1940 20 1192 1925 150142 33480 3.66455 3.66455 -123.395 -3.66455 0 0 787024. 2723.27 0.23 0.07 0.14 -1 -1 0.23 0.0247216 0.0214606 118 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 13.04 vpr 63.41 MiB -1 -1 0.26 18580 1 0.04 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 431 332 1 270 91 17 17 289 -1 unnamed_device 24.8 MiB 3.76 1587 13555 4266 6864 2425 63.4 MiB 0.19 0.00 6.66529 -189.759 -6.66529 6.66529 1.01 0.000690325 0.000631769 0.0583795 0.0540104 40 3208 21 6.89349e+06 380534 706193. 2443.58 5.35 0.301466 0.262945 26914 176310 -1 3113 22 2118 3403 289818 61229 5.22024 5.22024 -173.781 -5.22024 0 0 926341. 3205.33 0.34 0.11 0.18 -1 -1 0.34 0.032814 0.0290689 188 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 6.40 vpr 62.91 MiB -1 -1 0.20 18368 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 336 268 1 205 85 17 17 289 -1 unnamed_device 24.5 MiB 1.60 1084 14035 4347 7601 2087 62.9 MiB 0.12 0.00 4.71732 -146.054 -4.71732 4.71732 0.87 0.000494834 0.000453187 0.0403168 0.0370182 34 2478 21 6.89349e+06 295971 618332. 2139.56 1.58 0.175278 0.153007 25762 151098 -1 2116 22 1540 2230 158633 36201 3.8894 3.8894 -135.145 -3.8894 0 0 787024. 2723.27 0.23 0.09 0.14 -1 -1 0.23 0.030946 0.0269784 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.94 vpr 62.09 MiB -1 -1 0.17 17700 1 0.03 -1 -1 30348 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63580 32 32 231 199 1 142 88 17 17 289 -1 unnamed_device 23.5 MiB 0.54 733 14713 4574 7961 2178 62.1 MiB 0.12 0.00 3.6346 -103.696 -3.6346 3.6346 0.67 0.000401431 0.000368782 0.0368139 0.0340666 34 1717 19 6.89349e+06 338252 618332. 2139.56 1.56 0.124488 0.109248 25762 151098 -1 1593 20 847 1600 125586 28173 2.80501 2.80501 -99.0938 -2.80501 0 0 787024. 2723.27 0.33 0.06 0.15 -1 -1 0.33 0.0192573 0.0168429 94 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.29 vpr 62.70 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30092 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 349 273 1 214 87 17 17 289 -1 unnamed_device 24.2 MiB 2.26 1286 14679 3997 8814 1868 62.7 MiB 0.14 0.00 5.36187 -142.911 -5.36187 5.36187 0.98 0.000540404 0.000496784 0.0442708 0.0407465 34 3001 21 6.89349e+06 324158 618332. 2139.56 1.70 0.142678 0.125323 25762 151098 -1 2578 20 1309 2409 208195 44276 4.28015 4.28015 -138.083 -4.28015 0 0 787024. 2723.27 0.34 0.09 0.15 -1 -1 0.34 0.0309893 0.027708 149 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 5.36 vpr 62.21 MiB -1 -1 0.20 17728 1 0.03 -1 -1 30080 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 247 207 1 153 83 17 17 289 -1 unnamed_device 23.5 MiB 0.80 839 14303 4497 7906 1900 62.2 MiB 0.11 0.00 3.56945 -113.475 -3.56945 3.56945 0.85 0.00055488 0.000516204 0.046026 0.0427566 34 1967 21 6.89349e+06 267783 618332. 2139.56 1.34 0.153374 0.134152 25762 151098 -1 1716 20 962 1738 124693 27011 2.77386 2.77386 -108.685 -2.77386 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.018306 0.016012 98 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 6.22 vpr 62.37 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30320 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63864 30 32 278 235 1 175 82 17 17 289 -1 unnamed_device 23.9 MiB 1.54 765 9872 2693 6531 648 62.4 MiB 0.10 0.00 4.06868 -115.875 -4.06868 4.06868 0.74 0.000469167 0.00043219 0.0284077 0.0261388 34 2049 20 6.89349e+06 281877 618332. 2139.56 1.59 0.104504 0.0910933 25762 151098 -1 1773 20 1211 1743 124227 29927 3.16966 3.16966 -111.99 -3.16966 0 0 787024. 2723.27 0.29 0.06 0.16 -1 -1 0.29 0.0201207 0.0176637 113 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 11.87 vpr 62.58 MiB -1 -1 0.20 18260 1 0.03 -1 -1 30352 -1 -1 26 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64080 29 32 355 287 1 224 87 17 17 289 -1 unnamed_device 24.1 MiB 3.64 1238 16215 4925 9204 2086 62.6 MiB 0.18 0.00 4.47797 -134.56 -4.47797 4.47797 1.06 0.000646891 0.000593059 0.0574466 0.052819 38 2572 28 6.89349e+06 366440 678818. 2348.85 4.30 0.279619 0.241616 26626 170182 -1 2338 17 1341 1985 121106 27404 3.52495 3.52495 -125.527 -3.52495 0 0 902133. 3121.57 0.35 0.06 0.17 -1 -1 0.35 0.0224048 0.0198795 154 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 9.26 vpr 62.73 MiB -1 -1 0.18 18172 1 0.03 -1 -1 30452 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 358 289 1 230 86 17 17 289 -1 unnamed_device 24.3 MiB 2.08 1158 9158 2522 5945 691 62.7 MiB 0.11 0.00 5.08364 -155.965 -5.08364 5.08364 0.89 0.000646524 0.00059479 0.0342706 0.0315319 36 2973 25 6.89349e+06 310065 648988. 2245.63 3.82 0.214469 0.185292 26050 158493 -1 2562 22 1591 2376 159889 37362 4.46765 4.46765 -150.99 -4.46765 0 0 828058. 2865.25 0.36 0.09 0.15 -1 -1 0.36 0.0336031 0.0299815 151 54 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.87 vpr 62.68 MiB -1 -1 0.19 18332 1 0.03 -1 -1 30416 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 353 285 1 228 87 17 17 289 -1 unnamed_device 24.2 MiB 1.91 1179 9495 2108 6587 800 62.7 MiB 0.11 0.00 5.42099 -154.483 -5.42099 5.42099 0.73 0.000659798 0.000607974 0.0379895 0.0352422 34 3134 49 6.89349e+06 324158 618332. 2139.56 1.76 0.153477 0.134012 25762 151098 -1 2754 20 1747 2687 201357 45457 4.61995 4.61995 -158.269 -4.61995 0 0 787024. 2723.27 0.30 0.08 0.14 -1 -1 0.30 0.0238296 0.0209965 150 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 6.00 vpr 62.34 MiB -1 -1 0.19 18260 1 0.03 -1 -1 30072 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 276 237 1 165 79 17 17 289 -1 unnamed_device 23.9 MiB 1.96 809 7684 1992 5210 482 62.3 MiB 0.08 0.00 4.51797 -123.273 -4.51797 4.51797 0.87 0.000593099 0.000551963 0.0288487 0.0268431 30 2237 24 6.89349e+06 211408 556674. 1926.21 0.90 0.101287 0.0886885 25186 138497 -1 1774 18 900 1288 91307 20980 3.18905 3.18905 -113.358 -3.18905 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0216582 0.0188615 105 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 6.59 vpr 62.44 MiB -1 -1 0.17 18272 1 0.03 -1 -1 30304 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 31 32 319 272 1 203 83 17 17 289 -1 unnamed_device 23.8 MiB 1.79 1070 14483 4888 7061 2534 62.4 MiB 0.12 0.00 3.67535 -124.357 -3.67535 3.67535 0.84 0.000484024 0.000443083 0.041139 0.0377115 34 2663 25 6.89349e+06 281877 618332. 2139.56 1.61 0.129136 0.11217 25762 151098 -1 2222 22 1553 2158 169158 37984 3.16276 3.16276 -124.917 -3.16276 0 0 787024. 2723.27 0.34 0.08 0.17 -1 -1 0.34 0.0273649 0.0240445 131 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 7.13 vpr 62.63 MiB -1 -1 0.22 18404 1 0.04 -1 -1 30460 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64132 30 32 329 273 1 213 88 17 17 289 -1 unnamed_device 24.2 MiB 2.35 978 15493 5829 7048 2616 62.6 MiB 0.13 0.00 3.74244 -106.797 -3.74244 3.74244 0.82 0.000519087 0.000478206 0.0435539 0.040112 36 2477 25 6.89349e+06 366440 648988. 2245.63 1.53 0.173831 0.150799 26050 158493 -1 2076 25 1614 2415 180418 42233 3.08456 3.08456 -107.623 -3.08456 0 0 828058. 2865.25 0.28 0.08 0.14 -1 -1 0.28 0.0256262 0.0224524 142 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 5.81 vpr 62.55 MiB -1 -1 0.17 18256 1 0.03 -1 -1 30544 -1 -1 23 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 28 32 277 229 1 171 83 17 17 289 -1 unnamed_device 24.0 MiB 1.47 909 14123 3981 8851 1291 62.6 MiB 0.12 0.00 4.4511 -113.633 -4.4511 4.4511 0.67 0.000589468 0.000548537 0.0485951 0.0452059 34 2151 24 6.89349e+06 324158 618332. 2139.56 1.45 0.165157 0.144144 25762 151098 -1 1843 20 1067 1920 140983 31909 3.56926 3.56926 -109.305 -3.56926 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0211212 0.0185435 119 27 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 7.77 vpr 62.82 MiB -1 -1 0.20 18260 1 0.03 -1 -1 30388 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 30 32 317 269 1 202 83 17 17 289 -1 unnamed_device 24.0 MiB 2.70 1061 15203 4868 8207 2128 62.8 MiB 0.13 0.00 4.60916 -138.593 -4.60916 4.60916 0.86 0.000484088 0.000443993 0.0436458 0.0399893 34 2592 39 6.89349e+06 295971 618332. 2139.56 1.73 0.153484 0.133641 25762 151098 -1 2202 20 1490 2113 163415 35327 3.83665 3.83665 -135.176 -3.83665 0 0 787024. 2723.27 0.33 0.07 0.15 -1 -1 0.33 0.0230146 0.0203064 130 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 7.25 vpr 62.85 MiB -1 -1 0.18 18256 1 0.03 -1 -1 30300 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 335 282 1 222 84 17 17 289 -1 unnamed_device 24.4 MiB 2.32 1154 13443 3441 8088 1914 62.8 MiB 0.13 0.00 4.07374 -139.312 -4.07374 4.07374 0.90 0.000509009 0.000468014 0.0398322 0.0366696 34 2777 48 6.89349e+06 281877 618332. 2139.56 1.66 0.15532 0.135102 25762 151098 -1 2322 20 1464 1966 142661 31569 3.0788 3.0788 -125.608 -3.0788 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0264032 0.0229425 138 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 4.92 vpr 62.57 MiB -1 -1 0.17 18076 1 0.03 -1 -1 30420 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 293 230 1 175 94 17 17 289 -1 unnamed_device 24.0 MiB 0.75 955 9679 2173 6860 646 62.6 MiB 0.11 0.00 4.69362 -132.871 -4.69362 4.69362 0.85 0.000695525 0.000640906 0.0287801 0.0265826 30 2522 22 6.89349e+06 436909 556674. 1926.21 1.02 0.111662 0.0980146 25186 138497 -1 1987 18 919 1672 119220 26827 3.39635 3.39635 -119.763 -3.39635 0 0 706193. 2443.58 0.23 0.06 0.13 -1 -1 0.23 0.0224693 0.0195783 129 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 7.55 vpr 62.76 MiB -1 -1 0.20 18284 1 0.03 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 350 275 1 214 87 17 17 289 -1 unnamed_device 24.3 MiB 2.28 941 15063 4400 7415 3248 62.8 MiB 0.13 0.00 4.82162 -147.572 -4.82162 4.82162 0.91 0.000534396 0.000487122 0.0424273 0.0388124 36 2848 25 6.89349e+06 324158 648988. 2245.63 2.00 0.166395 0.146074 26050 158493 -1 2218 18 1577 2418 175721 42381 4.2969 4.2969 -143.119 -4.2969 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0254541 0.0222584 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 9.57 vpr 62.96 MiB -1 -1 0.22 18284 1 0.03 -1 -1 30284 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 385 308 1 244 91 17 17 289 -1 unnamed_device 24.4 MiB 2.10 1350 12331 3666 6215 2450 63.0 MiB 0.13 0.00 5.44225 -166.483 -5.44225 5.44225 0.90 0.000578541 0.000531767 0.0381865 0.0351524 36 3207 23 6.89349e+06 380534 648988. 2245.63 4.13 0.249374 0.216588 26050 158493 -1 2614 21 1937 2799 248854 53802 4.54175 4.54175 -156.109 -4.54175 0 0 828058. 2865.25 0.22 0.10 0.13 -1 -1 0.22 0.0300573 0.0261413 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 7.82 vpr 62.87 MiB -1 -1 0.25 18300 1 0.03 -1 -1 30348 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 387 309 1 248 90 17 17 289 -1 unnamed_device 24.3 MiB 2.37 1256 15366 4541 7767 3058 62.9 MiB 0.15 0.00 4.55797 -146.919 -4.55797 4.55797 0.92 0.00056322 0.000518528 0.046988 0.0431783 34 3546 28 6.89349e+06 366440 618332. 2139.56 1.95 0.180874 0.160824 25762 151098 -1 2661 23 1904 2852 240337 52266 3.72215 3.72215 -140.246 -3.72215 0 0 787024. 2723.27 0.28 0.09 0.14 -1 -1 0.28 0.028409 0.0252335 164 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 7.32 vpr 62.28 MiB -1 -1 0.19 18300 1 0.03 -1 -1 30240 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63776 30 32 272 232 1 176 83 17 17 289 -1 unnamed_device 23.7 MiB 2.28 896 15383 5005 7997 2381 62.3 MiB 0.12 0.00 4.16933 -123.957 -4.16933 4.16933 0.94 0.000463866 0.000427817 0.0405924 0.0373422 34 2173 30 6.89349e+06 295971 618332. 2139.56 1.65 0.140864 0.122912 25762 151098 -1 1978 18 1118 1600 135323 28715 2.81776 2.81776 -108.036 -2.81776 0 0 787024. 2723.27 0.30 0.06 0.15 -1 -1 0.30 0.0188809 0.0168117 112 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 9.99 vpr 63.16 MiB -1 -1 0.21 18248 1 0.03 -1 -1 30408 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64680 30 32 375 299 1 236 88 17 17 289 -1 unnamed_device 24.5 MiB 3.00 1198 5938 1274 4302 362 63.2 MiB 0.06 0.00 5.49187 -164.452 -5.49187 5.49187 0.79 0.000502698 0.000448217 0.0182086 0.0167796 36 2797 31 6.89349e+06 366440 648988. 2245.63 3.85 0.182531 0.156914 26050 158493 -1 2485 21 1900 2656 221189 47024 4.31115 4.31115 -151.385 -4.31115 0 0 828058. 2865.25 0.29 0.08 0.15 -1 -1 0.29 0.0247891 0.0217725 162 63 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 7.05 vpr 62.63 MiB -1 -1 0.20 18176 1 0.03 -1 -1 30448 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 340 270 1 204 87 17 17 289 -1 unnamed_device 24.2 MiB 1.73 1140 15255 5147 8101 2007 62.6 MiB 0.14 0.00 5.21835 -154.719 -5.21835 5.21835 0.93 0.000550608 0.000506849 0.0457119 0.0420735 34 2696 20 6.89349e+06 324158 618332. 2139.56 1.78 0.15719 0.137708 25762 151098 -1 2451 23 1549 2596 236256 50165 3.8486 3.8486 -134.908 -3.8486 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0272282 0.0239183 139 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 10.09 vpr 62.58 MiB -1 -1 0.21 18408 1 0.03 -1 -1 30208 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 31 32 340 275 1 211 86 17 17 289 -1 unnamed_device 24.2 MiB 2.17 1179 13505 4412 7143 1950 62.6 MiB 0.13 0.00 4.98904 -144.643 -4.98904 4.98904 0.93 0.000542502 0.000498762 0.0415007 0.0382224 40 2652 21 6.89349e+06 324158 706193. 2443.58 4.34 0.202772 0.177385 26914 176310 -1 2445 21 1365 2122 196889 41136 4.31935 4.31935 -141.118 -4.31935 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0242097 0.0213694 142 47 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 9.45 vpr 62.95 MiB -1 -1 0.22 18292 1 0.03 -1 -1 30100 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 30 32 377 310 1 239 88 17 17 289 -1 unnamed_device 24.4 MiB 2.46 1244 15103 4566 8211 2326 62.9 MiB 0.16 0.00 4.69488 -139.913 -4.69488 4.69488 0.76 0.000742282 0.000688618 0.0603715 0.0559622 38 2723 23 6.89349e+06 366440 678818. 2348.85 3.74 0.250249 0.218147 26626 170182 -1 2355 23 1756 2607 182748 39794 3.59269 3.59269 -130.92 -3.59269 0 0 902133. 3121.57 0.31 0.08 0.16 -1 -1 0.31 0.0265258 0.023323 162 83 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 8.34 vpr 62.75 MiB -1 -1 0.20 18400 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 365 294 1 230 87 17 17 289 -1 unnamed_device 24.2 MiB 3.20 1232 16599 5975 8052 2572 62.8 MiB 0.14 0.00 5.50928 -158.621 -5.50928 5.50928 0.83 0.000491214 0.000450861 0.043227 0.0396086 34 3042 44 6.89349e+06 324158 618332. 2139.56 1.92 0.198836 0.173702 25762 151098 -1 2562 19 1674 2524 175422 39750 4.50065 4.50065 -154.065 -4.50065 0 0 787024. 2723.27 0.29 0.07 0.13 -1 -1 0.29 0.0243861 0.0217246 155 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.65 vpr 62.87 MiB -1 -1 0.22 18180 1 0.03 -1 -1 30392 -1 -1 30 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64380 29 32 378 310 1 247 91 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1305 10699 2770 6940 989 62.9 MiB 0.11 0.00 4.6273 -137.721 -4.6273 4.6273 0.91 0.000512129 0.000471157 0.0299151 0.0274334 34 2910 41 6.89349e+06 422815 618332. 2139.56 1.66 0.153397 0.132899 25762 151098 -1 2459 19 1592 2200 154199 35502 3.73346 3.73346 -131.687 -3.73346 0 0 787024. 2723.27 0.28 0.07 0.14 -1 -1 0.28 0.0230864 0.0204194 166 85 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.44 vpr 62.23 MiB -1 -1 0.16 17848 1 0.03 -1 -1 30380 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 243 205 1 149 81 17 17 289 -1 unnamed_device 23.6 MiB 0.69 779 13381 4026 7576 1779 62.2 MiB 0.12 0.00 4.15903 -123.364 -4.15903 4.15903 0.75 0.000572557 0.000533097 0.044251 0.0411288 30 1811 19 6.89349e+06 239595 556674. 1926.21 0.84 0.10904 0.0966362 25186 138497 -1 1542 20 745 1194 79326 18467 2.80671 2.80671 -105.542 -2.80671 0 0 706193. 2443.58 0.27 0.04 0.13 -1 -1 0.27 0.0164082 0.0144281 96 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 8.33 vpr 63.11 MiB -1 -1 0.19 18224 1 0.03 -1 -1 30240 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 373 302 1 241 89 17 17 289 -1 unnamed_device 24.3 MiB 1.89 1363 14741 4757 7501 2483 63.1 MiB 0.15 0.00 5.7749 -170.63 -5.7749 5.7749 0.70 0.000745283 0.000691332 0.0591189 0.0548403 34 3044 22 6.89349e+06 352346 618332. 2139.56 3.40 0.289308 0.251066 25762 151098 -1 2596 22 1585 2304 183307 39843 4.28199 4.28199 -151.092 -4.28199 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0268003 0.0235777 156 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 8.79 vpr 63.23 MiB -1 -1 0.19 18496 1 0.03 -1 -1 30416 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 397 314 1 256 89 17 17 289 -1 unnamed_device 24.6 MiB 3.65 1408 14543 4021 8480 2042 63.2 MiB 0.14 0.00 5.38563 -175.555 -5.38563 5.38563 0.83 0.00056873 0.000523813 0.0424237 0.0389278 34 3410 26 6.89349e+06 352346 618332. 2139.56 1.79 0.169725 0.148363 25762 151098 -1 2917 21 2106 2991 239796 52425 4.56995 4.56995 -170.916 -4.56995 0 0 787024. 2723.27 0.30 0.11 0.15 -1 -1 0.30 0.0320129 0.0284645 171 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 7.49 vpr 62.33 MiB -1 -1 0.21 18224 1 0.03 -1 -1 30280 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63824 32 32 269 231 1 172 82 17 17 289 -1 unnamed_device 23.9 MiB 3.00 833 8448 2039 5944 465 62.3 MiB 0.08 0.00 4.14342 -115.158 -4.14342 4.14342 0.76 0.000578641 0.000538506 0.0292558 0.0271896 34 2057 21 6.89349e+06 253689 618332. 2139.56 1.30 0.141993 0.122988 25762 151098 -1 1813 20 1073 1444 101217 23629 2.88816 2.88816 -104.228 -2.88816 0 0 787024. 2723.27 0.28 0.05 0.14 -1 -1 0.28 0.0178292 0.015702 108 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 5.29 vpr 62.16 MiB -1 -1 0.16 17736 1 0.03 -1 -1 30448 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63652 31 32 245 205 1 153 83 17 17 289 -1 unnamed_device 23.5 MiB 0.77 851 11783 3652 6352 1779 62.2 MiB 0.10 0.00 4.15709 -122.39 -4.15709 4.15709 0.95 0.000444339 0.000407653 0.0303442 0.0278235 32 1997 19 6.89349e+06 281877 586450. 2029.24 1.06 0.0833759 0.0729743 25474 144626 -1 1787 19 1045 1703 132076 28773 2.86611 2.86611 -109.172 -2.86611 0 0 744469. 2576.02 0.31 0.06 0.14 -1 -1 0.31 0.0184531 0.0161478 99 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 6.53 vpr 62.75 MiB -1 -1 0.20 18208 1 0.03 -1 -1 30560 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 348 274 1 215 87 17 17 289 -1 unnamed_device 24.3 MiB 2.13 1128 5463 1080 3935 448 62.7 MiB 0.08 0.00 4.60732 -147.469 -4.60732 4.60732 0.69 0.000827431 0.000763127 0.0246371 0.0228472 34 2696 23 6.89349e+06 324158 618332. 2139.56 1.51 0.162337 0.140369 25762 151098 -1 2460 20 1713 2468 177022 39522 3.8036 3.8036 -143.512 -3.8036 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0238845 0.0209981 145 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 7.05 vpr 62.71 MiB -1 -1 0.19 18256 1 0.03 -1 -1 30244 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 356 289 1 224 87 17 17 289 -1 unnamed_device 24.2 MiB 2.12 1149 15639 4916 8896 1827 62.7 MiB 0.15 0.00 4.95049 -142.516 -4.95049 4.95049 0.92 0.000576832 0.000531269 0.05345 0.0492802 36 2468 30 6.89349e+06 324158 648988. 2245.63 1.73 0.210172 0.183063 26050 158493 -1 2263 18 1385 1976 158502 36492 4.16779 4.16779 -138.206 -4.16779 0 0 828058. 2865.25 0.31 0.06 0.15 -1 -1 0.31 0.0217076 0.0192133 149 56 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 8.76 vpr 62.71 MiB -1 -1 0.20 17896 1 0.03 -1 -1 30308 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 349 260 1 204 100 17 17 289 -1 unnamed_device 24.2 MiB 0.85 1164 18660 4771 12167 1722 62.7 MiB 0.19 0.00 5.17601 -145.908 -5.17601 5.17601 0.99 0.000595445 0.000544683 0.0500629 0.0458183 28 3255 45 6.89349e+06 507378 531479. 1839.03 4.36 0.247017 0.217737 24610 126494 -1 2642 21 1760 3300 300500 68897 4.60864 4.60864 -151.489 -4.60864 0 0 648988. 2245.63 0.24 0.10 0.12 -1 -1 0.24 0.0257561 0.0226324 157 3 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.70 vpr 62.64 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30292 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 30 32 316 264 1 208 87 17 17 289 -1 unnamed_device 24.2 MiB 1.32 1063 8727 2092 6073 562 62.6 MiB 0.09 0.00 3.88834 -114.425 -3.88834 3.88834 0.68 0.000641871 0.00059602 0.0310416 0.0288187 34 2553 23 6.89349e+06 352346 618332. 2139.56 1.51 0.145237 0.126138 25762 151098 -1 2173 21 1600 2354 161753 36576 2.993 2.993 -106.385 -2.993 0 0 787024. 2723.27 0.29 0.05 0.14 -1 -1 0.29 0.0174982 0.0153757 136 52 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 6.90 vpr 62.34 MiB -1 -1 0.18 18296 1 0.03 -1 -1 30340 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63836 27 32 255 219 1 162 79 17 17 289 -1 unnamed_device 23.9 MiB 1.57 671 12416 5199 6032 1185 62.3 MiB 0.09 0.00 4.37503 -112.665 -4.37503 4.37503 0.99 0.000447937 0.000412391 0.0345055 0.0317209 34 1998 42 6.89349e+06 281877 618332. 2139.56 1.95 0.126451 0.110365 25762 151098 -1 1463 20 1089 1615 119543 28991 3.7526 3.7526 -110.573 -3.7526 0 0 787024. 2723.27 0.27 0.05 0.13 -1 -1 0.27 0.0178021 0.0156207 106 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 8.52 vpr 63.43 MiB -1 -1 0.23 18572 1 0.03 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 421 327 1 271 91 17 17 289 -1 unnamed_device 24.6 MiB 3.32 1548 10495 2998 6825 672 63.4 MiB 0.12 0.00 4.58631 -145.891 -4.58631 4.58631 0.87 0.000625826 0.000577051 0.0334225 0.0307171 34 3948 27 6.89349e+06 380534 618332. 2139.56 1.77 0.147292 0.129305 25762 151098 -1 3242 22 2298 3600 260073 58112 4.33045 4.33045 -149.337 -4.33045 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0294843 0.0260343 185 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 7.27 vpr 62.72 MiB -1 -1 0.20 18452 1 0.03 -1 -1 30468 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 365 296 1 233 87 17 17 289 -1 unnamed_device 24.2 MiB 2.20 1076 15639 5741 7479 2419 62.7 MiB 0.13 0.00 5.4794 -158.779 -5.4794 5.4794 0.85 0.000522864 0.00048058 0.0418588 0.0384769 34 3283 45 6.89349e+06 338252 618332. 2139.56 1.83 0.163883 0.144278 25762 151098 -1 2284 23 1886 2692 186447 45025 4.37949 4.37949 -148.656 -4.37949 0 0 787024. 2723.27 0.32 0.08 0.15 -1 -1 0.32 0.0273968 0.0240376 155 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.86 vpr 62.66 MiB -1 -1 0.17 18400 1 0.04 -1 -1 30364 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 331 280 1 221 85 17 17 289 -1 unnamed_device 24.2 MiB 2.55 1166 15523 4854 8569 2100 62.7 MiB 0.14 0.00 4.30939 -141.47 -4.30939 4.30939 0.95 0.000511096 0.000468915 0.045562 0.0417292 34 2759 21 6.89349e+06 295971 618332. 2139.56 1.75 0.168367 0.146402 25762 151098 -1 2395 19 1536 2046 152871 34184 3.9072 3.9072 -144.506 -3.9072 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0216126 0.018999 137 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 10.04 vpr 62.60 MiB -1 -1 0.23 18248 1 0.03 -1 -1 30420 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 326 263 1 203 85 17 17 289 -1 unnamed_device 23.9 MiB 2.41 1094 11617 2997 7709 911 62.6 MiB 0.12 0.00 5.20986 -144.706 -5.20986 5.20986 0.93 0.0005215 0.000478844 0.0352592 0.0324174 36 2326 33 6.89349e+06 295971 648988. 2245.63 3.94 0.209608 0.182045 26050 158493 -1 2073 19 1123 1710 134950 30156 3.76036 3.76036 -130.206 -3.76036 0 0 828058. 2865.25 0.34 0.07 0.16 -1 -1 0.34 0.0243281 0.0215525 135 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 6.60 vpr 62.79 MiB -1 -1 0.19 18548 1 0.03 -1 -1 30436 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 373 294 1 231 89 17 17 289 -1 unnamed_device 24.3 MiB 2.11 1250 13751 4489 7484 1778 62.8 MiB 0.15 0.00 4.48785 -130.629 -4.48785 4.48785 0.70 0.000731567 0.000677288 0.0536505 0.0497197 34 2903 39 6.89349e+06 366440 618332. 2139.56 1.53 0.21605 0.188159 25762 151098 -1 2478 19 1710 2616 170677 39784 3.7324 3.7324 -128.245 -3.7324 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0240101 0.0212775 163 50 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 7.21 vpr 62.77 MiB -1 -1 0.19 18444 1 0.03 -1 -1 30100 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 30 32 325 268 1 210 86 17 17 289 -1 unnamed_device 24.3 MiB 2.23 1146 9158 2597 5794 767 62.8 MiB 0.09 0.00 4.26851 -119.64 -4.26851 4.26851 0.88 0.000508849 0.000451132 0.0268056 0.0245958 34 2847 36 6.89349e+06 338252 618332. 2139.56 1.65 0.147766 0.128292 25762 151098 -1 2450 21 1353 2257 163594 36350 3.498 3.498 -118.93 -3.498 0 0 787024. 2723.27 0.30 0.07 0.14 -1 -1 0.30 0.023582 0.0207457 140 51 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 7.33 vpr 62.91 MiB -1 -1 0.20 18360 1 0.04 -1 -1 30292 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 350 275 1 215 86 17 17 289 -1 unnamed_device 24.4 MiB 2.46 1212 14828 4814 7843 2171 62.9 MiB 0.16 0.00 4.88838 -154.361 -4.88838 4.88838 0.74 0.000833529 0.000782012 0.0608548 0.0564444 34 3137 24 6.89349e+06 310065 618332. 2139.56 1.66 0.178948 0.157399 25762 151098 -1 2587 22 1694 2803 262927 54215 4.40496 4.40496 -149.137 -4.40496 0 0 787024. 2723.27 0.33 0.10 0.15 -1 -1 0.33 0.0289873 0.0255526 148 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 8.72 vpr 62.77 MiB -1 -1 0.21 18416 1 0.03 -1 -1 30080 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 386 307 1 246 90 17 17 289 -1 unnamed_device 24.2 MiB 3.19 1282 15969 5653 7267 3049 62.8 MiB 0.16 0.00 4.10098 -137.106 -4.10098 4.10098 0.97 0.000586539 0.000534456 0.052274 0.0478163 34 3419 38 6.89349e+06 366440 618332. 2139.56 1.94 0.234051 0.204409 25762 151098 -1 2589 21 1888 2658 190913 45892 3.23101 3.23101 -129.371 -3.23101 0 0 787024. 2723.27 0.30 0.09 0.14 -1 -1 0.30 0.0277467 0.0245313 167 62 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 6.22 vpr 62.37 MiB -1 -1 0.18 18200 1 0.03 -1 -1 30288 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63864 29 32 269 229 1 173 81 17 17 289 -1 unnamed_device 23.9 MiB 1.53 640 9706 2308 6853 545 62.4 MiB 0.08 0.00 4.18793 -120.962 -4.18793 4.18793 0.91 0.000400269 0.000367896 0.026027 0.0239346 34 1659 20 6.89349e+06 281877 618332. 2139.56 1.44 0.113589 0.0987242 25762 151098 -1 1347 20 1058 1491 89960 22622 2.95416 2.95416 -103.227 -2.95416 0 0 787024. 2723.27 0.28 0.05 0.14 -1 -1 0.28 0.0176926 0.0155138 110 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 6.32 vpr 62.53 MiB -1 -1 0.19 18204 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64032 32 32 310 266 1 200 84 17 17 289 -1 unnamed_device 23.9 MiB 1.36 1151 15456 4811 8697 1948 62.5 MiB 0.13 0.00 4.32729 -137.057 -4.32729 4.32729 0.91 0.000487276 0.000447123 0.0422723 0.0388275 34 2781 28 6.89349e+06 281877 618332. 2139.56 1.62 0.124187 0.108825 25762 151098 -1 2379 21 1506 2096 173408 37338 3.67755 3.67755 -130.845 -3.67755 0 0 787024. 2723.27 0.29 0.07 0.14 -1 -1 0.29 0.0223528 0.0197389 125 58 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 8.56 vpr 62.52 MiB -1 -1 0.19 18268 1 0.03 -1 -1 30504 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 326 261 1 204 85 17 17 289 -1 unnamed_device 24.1 MiB 1.46 1140 13477 4008 7256 2213 62.5 MiB 0.13 0.00 4.87863 -139.65 -4.87863 4.87863 0.85 0.000438004 0.000400664 0.0415985 0.0382602 36 2569 22 6.89349e+06 310065 648988. 2245.63 3.74 0.202227 0.175299 26050 158493 -1 2179 20 1340 2198 168979 37426 3.87186 3.87186 -131.125 -3.87186 0 0 828058. 2865.25 0.34 0.07 0.16 -1 -1 0.34 0.0239996 0.0212312 137 33 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 7.60 vpr 62.26 MiB -1 -1 0.18 18156 1 0.03 -1 -1 30376 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63756 29 32 262 224 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 3.23 743 7992 1817 5819 356 62.3 MiB 0.07 0.00 4.21347 -111.925 -4.21347 4.21347 0.89 0.000391709 0.000360071 0.0212998 0.0195967 30 2121 33 6.89349e+06 267783 556674. 1926.21 1.16 0.0855808 0.0747866 25186 138497 -1 1734 19 961 1330 97844 23122 2.9715 2.9715 -103.215 -2.9715 0 0 706193. 2443.58 0.28 0.08 0.13 -1 -1 0.28 0.0241424 0.0210174 108 31 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 6.77 vpr 62.27 MiB -1 -1 0.17 18380 1 0.03 -1 -1 30100 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63760 32 32 278 238 1 182 82 17 17 289 -1 unnamed_device 23.8 MiB 1.99 963 11652 3141 7413 1098 62.3 MiB 0.09 0.00 4.14413 -129.495 -4.14413 4.14413 0.82 0.000392441 0.000359567 0.0295385 0.0271645 34 2446 46 6.89349e+06 253689 618332. 2139.56 1.72 0.14338 0.124578 25762 151098 -1 2053 19 1380 1948 159118 33876 3.12046 3.12046 -120.361 -3.12046 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0231628 0.020176 114 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 7.19 vpr 62.71 MiB -1 -1 0.19 18288 1 0.03 -1 -1 30340 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 373 300 1 236 89 17 17 289 -1 unnamed_device 24.2 MiB 2.04 1148 8801 2055 6262 484 62.7 MiB 0.10 0.00 4.66911 -146.299 -4.66911 4.66911 0.90 0.000573158 0.000527304 0.0275575 0.0253712 34 2919 46 6.89349e+06 366440 618332. 2139.56 1.80 0.165078 0.142601 25762 151098 -1 2509 21 1920 2679 198881 45735 3.85055 3.85055 -139.212 -3.85055 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0295299 0.0262785 160 64 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 7.03 vpr 62.32 MiB -1 -1 0.18 18152 1 0.03 -1 -1 30300 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63820 31 32 265 230 1 175 80 17 17 289 -1 unnamed_device 23.9 MiB 2.15 799 6960 1451 5242 267 62.3 MiB 0.06 0.00 3.55845 -110.116 -3.55845 3.55845 0.91 0.000421502 0.000387294 0.0185591 0.0170641 34 2234 29 6.89349e+06 239595 618332. 2139.56 1.66 0.119978 0.103925 25762 151098 -1 1900 22 1364 1953 170877 37471 2.88741 2.88741 -105.556 -2.88741 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0248832 0.0216055 108 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.94 vpr 62.77 MiB -1 -1 0.19 18184 1 0.03 -1 -1 30000 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 349 286 1 221 86 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1229 13883 4377 7381 2125 62.8 MiB 0.12 0.00 4.30445 -130.63 -4.30445 4.30445 0.84 0.000510118 0.000468344 0.0396219 0.0363965 34 2932 24 6.89349e+06 310065 618332. 2139.56 1.50 0.144521 0.126229 25762 151098 -1 2466 20 1338 1954 135803 30794 3.23235 3.23235 -121.469 -3.23235 0 0 787024. 2723.27 0.32 0.07 0.17 -1 -1 0.32 0.0264799 0.0235335 146 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 7.17 vpr 62.96 MiB -1 -1 0.19 18564 1 0.03 -1 -1 30348 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 396 325 1 259 89 17 17 289 -1 unnamed_device 24.3 MiB 2.13 1410 16127 5422 8584 2121 63.0 MiB 0.10 0.00 4.86804 -156.439 -4.86804 4.86804 0.83 0.000338063 0.000311236 0.0293447 0.0270219 34 3740 44 6.89349e+06 366440 618332. 2139.56 1.74 0.177442 0.156312 25762 151098 -1 3002 22 2192 3134 249861 53480 4.28884 4.28884 -160.942 -4.28884 0 0 787024. 2723.27 0.29 0.10 0.13 -1 -1 0.29 0.0290551 0.0258001 167 91 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 7.44 vpr 62.57 MiB -1 -1 0.17 18264 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 303 262 1 200 82 17 17 289 -1 unnamed_device 23.9 MiB 2.76 1102 7914 1891 5147 876 62.6 MiB 0.07 0.00 3.8031 -118.938 -3.8031 3.8031 0.87 0.000459007 0.000421861 0.0225477 0.0207284 34 2578 21 6.89349e+06 253689 618332. 2139.56 1.53 0.121587 0.105506 25762 151098 -1 2208 21 1389 1918 153761 32845 2.94211 2.94211 -117.737 -2.94211 0 0 787024. 2723.27 0.28 0.06 0.13 -1 -1 0.28 0.0215507 0.019005 124 57 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 6.12 vpr 62.40 MiB -1 -1 0.17 18276 1 0.03 -1 -1 30288 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 290 244 1 177 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 807 8448 2163 5780 505 62.4 MiB 0.08 0.00 4.17839 -126.972 -4.17839 4.17839 0.88 0.000449537 0.000414848 0.0234182 0.021532 34 2250 26 6.89349e+06 253689 618332. 2139.56 1.61 0.126698 0.109835 25762 151098 -1 1971 20 1312 1989 146876 34601 3.14346 3.14346 -119.849 -3.14346 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0207704 0.0182986 115 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 7.13 vpr 62.86 MiB -1 -1 0.18 18272 1 0.03 -1 -1 30240 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 318 257 1 198 86 17 17 289 -1 unnamed_device 24.2 MiB 2.04 1027 14828 4768 7813 2247 62.9 MiB 0.12 0.00 4.90028 -135.696 -4.90028 4.90028 0.93 0.000514082 0.000472268 0.0415514 0.0381876 34 2489 21 6.89349e+06 310065 618332. 2139.56 1.59 0.151312 0.132646 25762 151098 -1 2147 21 1135 1634 111668 26282 3.89876 3.89876 -133.035 -3.89876 0 0 787024. 2723.27 0.29 0.06 0.14 -1 -1 0.29 0.0227805 0.0202231 133 30 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 6.48 vpr 62.64 MiB -1 -1 0.19 18424 1 0.03 -1 -1 30284 -1 -1 25 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 29 32 324 268 1 207 86 17 17 289 -1 unnamed_device 24.2 MiB 2.20 1109 14639 4187 8652 1800 62.6 MiB 0.12 0.00 4.08804 -114.007 -4.08804 4.08804 0.84 0.000468227 0.000430817 0.0380185 0.0349586 30 2421 25 6.89349e+06 352346 556674. 1926.21 0.99 0.104182 0.0918359 25186 138497 -1 2027 20 1092 1557 101389 22884 3.32475 3.32475 -110.151 -3.32475 0 0 706193. 2443.58 0.27 0.06 0.13 -1 -1 0.27 0.022255 0.0196299 138 55 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 9.64 vpr 62.74 MiB -1 -1 0.26 18512 1 0.03 -1 -1 30460 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 393 312 1 243 88 17 17 289 -1 unnamed_device 24.3 MiB 2.25 1260 16078 5801 8535 1742 62.7 MiB 0.16 0.00 5.65598 -180.247 -5.65598 5.65598 0.86 0.000574681 0.000527216 0.0485539 0.0445918 36 3271 29 6.89349e+06 338252 648988. 2245.63 3.96 0.239562 0.207961 26050 158493 -1 2890 20 1858 2902 264777 56251 4.63338 4.63338 -165.533 -4.63338 0 0 828058. 2865.25 0.30 0.09 0.15 -1 -1 0.30 0.0289271 0.0257814 166 65 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 5.20 vpr 62.06 MiB -1 -1 0.15 17780 1 0.03 -1 -1 30096 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63548 31 32 229 197 1 143 80 17 17 289 -1 unnamed_device 23.5 MiB 0.64 765 8164 2211 5437 516 62.1 MiB 0.07 0.00 3.49795 -107.657 -3.49795 3.49795 0.88 0.000409505 0.000377836 0.0206104 0.0189637 34 1770 20 6.89349e+06 239595 618332. 2139.56 1.39 0.0993918 0.0859147 25762 151098 -1 1582 20 841 1308 94499 21618 2.53636 2.53636 -96.9699 -2.53636 0 0 787024. 2723.27 0.28 0.05 0.14 -1 -1 0.28 0.0175015 0.0153368 92 4 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 7.34 vpr 63.01 MiB -1 -1 0.20 18456 1 0.03 -1 -1 30436 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 412 334 1 269 91 17 17 289 -1 unnamed_device 24.6 MiB 2.14 1449 14167 4014 7626 2527 63.0 MiB 0.15 0.00 5.78233 -180.669 -5.78233 5.78233 0.88 0.000582848 0.000534216 0.0424646 0.0390457 34 3585 32 6.89349e+06 380534 618332. 2139.56 1.88 0.182181 0.159325 25762 151098 -1 2909 20 2063 2716 206088 45650 4.91694 4.91694 -175.562 -4.91694 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0316081 0.0276181 175 90 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.84 vpr 62.84 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30220 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 376 318 1 259 87 17 17 289 -1 unnamed_device 24.2 MiB 2.57 1300 9495 2262 6592 641 62.8 MiB 0.10 0.00 4.81994 -164.712 -4.81994 4.81994 0.90 0.000552259 0.000508383 0.0294524 0.0271034 36 3256 25 6.89349e+06 324158 648988. 2245.63 1.88 0.150309 0.130396 26050 158493 -1 2627 21 2499 3110 239344 52484 4.17813 4.17813 -156.419 -4.17813 0 0 828058. 2865.25 0.30 0.09 0.15 -1 -1 0.30 0.0257971 0.0227087 160 96 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 6.68 vpr 62.81 MiB -1 -1 0.20 18156 1 0.03 -1 -1 30432 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 360 293 1 227 86 17 17 289 -1 unnamed_device 24.2 MiB 2.16 1234 15017 4303 8531 2183 62.8 MiB 0.15 0.00 4.10098 -126.009 -4.10098 4.10098 0.71 0.000652729 0.000600346 0.0618322 0.0573726 34 2773 33 6.89349e+06 310065 618332. 2139.56 1.54 0.198118 0.174212 25762 151098 -1 2316 22 1623 2203 173441 38430 3.10581 3.10581 -118.485 -3.10581 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0262232 0.0230925 152 60 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 8.45 vpr 62.95 MiB -1 -1 0.19 18536 1 0.03 -1 -1 30496 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 396 299 1 241 90 17 17 289 -1 unnamed_device 24.3 MiB 2.93 1279 16170 5076 8373 2721 62.9 MiB 0.17 0.00 5.8006 -172.976 -5.8006 5.8006 0.80 0.000644339 0.000594843 0.0518591 0.0477334 34 3243 21 6.89349e+06 366440 618332. 2139.56 2.16 0.202425 0.179566 25762 151098 -1 2612 21 1843 3007 254135 54260 4.63765 4.63765 -156.342 -4.63765 0 0 787024. 2723.27 0.29 0.09 0.14 -1 -1 0.29 0.0281083 0.0249615 172 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.74 vpr 62.15 MiB -1 -1 0.18 18036 1 0.03 -1 -1 30052 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 224 207 1 137 77 17 17 289 -1 unnamed_device 23.6 MiB 0.81 775 6434 1498 4493 443 62.1 MiB 0.06 0.00 3.08622 -96.4372 -3.08622 3.08622 0.92 0.000376472 0.000346097 0.0172899 0.0159646 30 1655 23 6.89349e+06 211408 556674. 1926.21 0.96 0.0670644 0.0582863 25186 138497 -1 1548 16 662 874 63994 14007 2.32501 2.32501 -94.7646 -2.32501 0 0 706193. 2443.58 0.21 0.04 0.13 -1 -1 0.21 0.0150161 0.0131741 82 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 8.69 vpr 62.38 MiB -1 -1 0.24 18320 1 0.03 -1 -1 30428 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63872 30 32 286 239 1 176 82 17 17 289 -1 unnamed_device 23.8 MiB 1.41 965 13610 5107 7005 1498 62.4 MiB 0.12 0.00 4.62117 -141.292 -4.62117 4.62117 0.93 0.000491882 0.00045108 0.0394117 0.0362264 36 2109 21 6.89349e+06 281877 648988. 2245.63 3.78 0.169988 0.147671 26050 158493 -1 1924 19 1190 1786 153618 32319 3.51775 3.51775 -129.102 -3.51775 0 0 828058. 2865.25 0.30 0.06 0.15 -1 -1 0.30 0.0196873 0.0173992 119 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.68 vpr 62.51 MiB -1 -1 0.18 18296 1 0.03 -1 -1 30080 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 296 247 1 187 82 17 17 289 -1 unnamed_device 23.9 MiB 2.05 1149 10406 3059 5866 1481 62.5 MiB 0.10 0.00 4.19289 -140.143 -4.19289 4.19289 0.79 0.000621635 0.000577373 0.0387412 0.0359274 34 2793 23 6.89349e+06 253689 618332. 2139.56 1.44 0.137071 0.119857 25762 151098 -1 2282 21 1426 2569 184086 41503 3.5312 3.5312 -140.475 -3.5312 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0224781 0.0197809 120 34 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 8.52 vpr 62.15 MiB -1 -1 0.16 17932 1 0.03 -1 -1 30192 -1 -1 21 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63640 25 32 216 194 1 138 78 17 17 289 -1 unnamed_device 23.5 MiB 1.32 538 11200 3798 4353 3049 62.1 MiB 0.07 0.00 3.6656 -83.8355 -3.6656 3.6656 0.92 0.000366881 0.000337817 0.0252878 0.0232655 36 1510 21 6.89349e+06 295971 648988. 2245.63 3.97 0.150264 0.129779 26050 158493 -1 1147 14 611 962 66345 16998 2.72886 2.72886 -78.385 -2.72886 0 0 828058. 2865.25 0.30 0.04 0.15 -1 -1 0.30 0.0130133 0.011546 92 29 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.99 vpr 63.02 MiB -1 -1 0.19 18272 1 0.03 -1 -1 30296 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 376 307 1 242 87 17 17 289 -1 unnamed_device 24.4 MiB 2.64 1224 10455 2606 6691 1158 63.0 MiB 0.11 0.00 4.36555 -131.719 -4.36555 4.36555 0.89 0.000579313 0.000528535 0.0338083 0.0309779 36 3291 27 6.89349e+06 324158 648988. 2245.63 2.04 0.166711 0.145868 26050 158493 -1 2707 22 2014 3070 225714 50742 3.62156 3.62156 -128.975 -3.62156 0 0 828058. 2865.25 0.29 0.08 0.14 -1 -1 0.29 0.0251693 0.0221841 161 72 -1 -1 -1 -1 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 7.97 vpr 63.14 MiB -1 -1 0.28 18676 1 0.11 -1 -1 30212 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 409 331 1 264 92 17 17 289 -1 unnamed_device 24.5 MiB 2.51 1242 10442 2632 6826 984 63.1 MiB 0.11 0.00 4.77028 -152.218 -4.77028 4.77028 0.89 0.000593517 0.000545527 0.0305511 0.0280342 34 3226 39 6.89349e+06 408721 618332. 2139.56 1.81 0.17525 0.153096 25762 151098 -1 2505 24 2216 3153 238609 53012 4.11054 4.11054 -149.067 -4.11054 0 0 787024. 2723.27 0.33 0.11 0.15 -1 -1 0.33 0.0344643 0.0303002 179 90 -1 -1 -1 -1 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt index 88295e998b9..2eb7efe1c70 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 11.93 vpr 65.76 MiB -1 -1 0.78 21736 3 0.47 -1 -1 36920 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67340 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.14 538 74923 23743 38186 12994 65.8 MiB 0.44 0.00 1.85836 -118.859 -1.85836 1.85836 0.84 0.000408519 0.000364671 0.184671 0.181849 48 1120 12 5.66058e+06 4.21279e+06 394078. 2736.65 2.57 0.568796 0.558488 13382 75762 -1 1135 9 413 643 29837 9031 1.90517 1.90517 -131.612 -1.90517 -1.14837 -0.298787 503207. 3494.49 0.23 0.30 0.20 -1 -1 0.23 0.291907 0.29099 0.01054 0.2563 0.08194 0.6618 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 27.94 vpr 68.73 MiB -1 -1 1.81 26840 15 1.79 -1 -1 38032 -1 -1 41 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70380 162 96 1009 950 1 703 304 16 16 256 mult_36 auto 30.6 MiB 0.50 5227 78921 22014 50546 6361 68.7 MiB 0.94 0.01 21.1088 -1572.42 -21.1088 21.1088 1.81 0.0013239 0.00120799 0.360424 0.349771 46 11694 25 1.21132e+07 4.18965e+06 727248. 2840.81 9.09 1.89864 1.86775 24972 144857 -1 9825 16 3189 6463 1052158 265115 22.5834 22.5834 -1743.32 -22.5834 0 0 934704. 3651.19 0.66 0.81 0.69 -1 -1 0.66 0.191856 0.186748 0.007573 0.3608 0.01692 0.6223 -k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 971.39 vpr 417.21 MiB -1 -1 136.56 351828 123 163.84 -1 -1 82460 -1 -1 1358 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 427224 114 102 21994 21904 1 11874 1627 50 50 2500 memory auto 194.6 MiB 40.69 156844 1044212 377727 645941 20544 417.2 MiB 50.77 0.52 78.9156 -53096.5 -78.9156 78.9156 55.59 0.0726829 0.0689205 7.9984 7.08451 90 237837 41 1.47946e+08 1.01019e+08 1.49211e+07 5968.42 321.09 28.7799 25.2504 333772 3118116 -1 214457 20 45318 170990 10540927 1886623 78.9114 78.9114 -67440.7 -78.9114 -14.3667 -0.295467 1.86646e+07 7465.86 17.49 10.34 5.27 -1 -1 17.49 4.79057 4.32098 0.08049 0.4194 0.01155 0.5691 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 14.90 vpr 65.43 MiB -1 -1 1.16 21432 3 0.22 -1 -1 37072 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66996 99 130 344 474 1 226 298 12 12 144 clb auto 26.9 MiB 0.26 629 72933 24501 35348 13084 65.4 MiB 0.72 0.00 1.87772 -119.549 -1.87772 1.87772 1.14 0.000479167 0.00042192 0.212818 0.209003 44 1500 15 5.66058e+06 4.21279e+06 360780. 2505.42 5.58 1.12644 1.10872 13094 71552 -1 1272 11 403 626 28515 8379 1.88524 1.88524 -136.944 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.41 0.04 0.19 -1 -1 0.41 0.0274683 0.0265622 0.01202 0.2318 0.0696 0.6986 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 40.08 vpr 69.02 MiB -1 -1 1.40 26524 15 1.73 -1 -1 38204 -1 -1 40 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70672 162 96 1009 950 1 703 303 16 16 256 mult_36 auto 30.8 MiB 1.35 5429 85731 25421 52883 7427 69.0 MiB 1.27 0.01 20.9899 -1533.86 -20.9899 20.9899 2.08 0.00121353 0.00108507 0.507519 0.481322 50 12052 37 1.21132e+07 4.13576e+06 780512. 3048.87 19.61 2.10484 1.8922 25484 153448 -1 10094 17 3136 6091 944877 237338 22.9092 22.9092 -1705.45 -22.9092 0 0 1.00276e+06 3917.05 0.78 0.57 0.44 -1 -1 0.78 0.125277 0.122118 0.007901 0.3567 0.01597 0.6273 -k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 920.00 vpr 427.51 MiB -1 -1 139.70 351276 123 168.15 -1 -1 82008 -1 -1 1278 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437768 114 102 21994 21904 1 11394 1547 50 50 2500 memory auto 193.8 MiB 84.56 155462 967391 346358 602799 18234 427.5 MiB 46.41 0.37 79.1658 -49689.3 -79.1658 79.1658 56.74 0.103633 0.0992122 8.06245 6.91846 96 240817 38 1.47946e+08 9.67069e+07 1.58254e+07 6330.17 228.24 30.7597 26.6251 343768 3324272 -1 213621 20 46955 176640 11088774 1958407 81.0653 81.0653 -60662.6 -81.0653 -20.9911 -0.197508 1.97871e+07 7914.84 17.55 10.21 6.24 -1 -1 17.55 4.84567 4.57718 0.08295 0.4232 0.01129 0.5655 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.43 MiB -1 -1 1.16 21736 3 0.65 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67000 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.53 538 74923 23743 38186 12994 65.4 MiB 1.07 0.00 1.85836 -118.859 -1.85836 1.85836 1.33 0.000186152 0.000164307 0.172613 0.16947 44 1225 10 5.66058e+06 4.21279e+06 377431. 2621.05 5.28 0.585898 0.568378 13584 76382 -1 1026 7 371 587 21190 6589 1.9572 1.9572 -129.175 -1.9572 -1.32765 -0.320482 492119. 3417.49 0.49 0.04 0.36 -1 -1 0.49 0.238059 0.0128334 0.01016 0.2377 0.08 0.6823 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 58.79 vpr 68.94 MiB -1 -1 1.73 26836 15 1.23 -1 -1 38508 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70596 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 3.88 5395 81543 23350 50681 7512 68.9 MiB 1.53 0.00 20.8098 -1508.89 -20.8098 20.8098 1.91 0.000558472 0.000495563 0.368414 0.35917 56 12401 28 1.21132e+07 3.97408e+06 911589. 3560.89 34.45 2.04765 2.00047 27484 183688 -1 9683 17 3070 6168 1098441 282892 22.0044 22.0044 -1619.24 -22.0044 0 0 1.16227e+06 4540.11 1.03 0.87 0.39 -1 -1 1.03 0.312795 0.305315 0.008246 0.3685 0.01686 0.6146 -k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1573.89 vpr 455.68 MiB -1 -1 141.95 352652 123 167.28 -1 -1 82160 -1 -1 1291 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 466612 114 102 21994 21904 1 12048 1560 50 50 2500 memory auto 192.1 MiB 646.85 163983 969268 328314 619639 21315 455.7 MiB 44.23 0.44 79.6079 -54089.1 -79.6079 79.6079 55.73 0.115444 0.110958 6.94791 5.93632 100 236092 23 1.47946e+08 9.74075e+07 1.70584e+07 6823.36 367.16 19.4598 16.8584 363360 3730996 -1 215771 19 40895 156451 9739432 1761939 80.7225 80.7225 -67991.3 -80.7225 -19.0561 -0.29436 2.14473e+07 8578.92 8.23 4.07 2.89 -1 -1 8.23 2.15856 1.98292 0.08741 0.4253 0.01135 0.5634 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 13.14 vpr 65.50 MiB -1 -1 0.91 21736 3 0.32 -1 -1 37224 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.27 629 72933 24501 35348 13084 65.5 MiB 0.46 0.00 1.87772 -119.549 -1.87772 1.87772 1.34 0.000461057 0.000414004 0.168372 0.164632 34 1558 17 5.66058e+06 4.21279e+06 307677. 2136.65 3.61 0.731952 0.716879 12584 59343 -1 1425 11 394 640 30288 9228 2.15283 2.15283 -138.724 -2.15283 -0.152537 -0.0520174 377431. 2621.05 0.42 0.43 0.18 -1 -1 0.42 0.0171947 0.0162506 0.01078 0.2391 0.06093 0.6999 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 49.71 vpr 68.93 MiB -1 -1 1.12 26684 15 1.28 -1 -1 38208 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70580 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.9 MiB 4.72 5395 81543 23350 50681 7512 68.9 MiB 1.19 0.01 20.8098 -1508.89 -20.8098 20.8098 2.07 0.00131862 0.00119429 0.27794 0.267234 56 12691 45 1.21132e+07 3.97408e+06 911589. 3560.89 25.18 2.24193 2.17 27484 183688 -1 9721 17 3144 6378 1106486 283876 22.1411 22.1411 -1617.04 -22.1411 0 0 1.16227e+06 4540.11 1.14 0.77 0.35 -1 -1 1.14 0.125803 0.121804 0.008525 0.3564 0.01622 0.6273 -k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1437.01 vpr 446.18 MiB -1 -1 148.65 351224 123 169.85 -1 -1 82612 -1 -1 1201 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 456884 114 102 21994 21904 1 11290 1470 50 50 2500 memory auto 191.0 MiB 648.45 148158 912165 314749 574211 23205 446.2 MiB 41.39 0.31 79.4554 -51068 -79.4554 79.4554 57.06 0.0584539 0.0538898 7.36841 6.01039 92 223660 32 1.47946e+08 9.25569e+07 1.59225e+07 6369.02 195.34 24.4233 20.6408 350868 3451476 -1 200356 21 40851 161569 10051585 1827302 79.5633 79.5633 -65693.9 -79.5633 -41.7379 -0.295467 2.01686e+07 8067.44 13.73 6.98 4.95 -1 -1 13.73 3.92051 3.55382 0.08666 0.4013 0.0114 0.5873 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 15.04 vpr 65.53 MiB -1 -1 0.81 21736 3 0.09 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67100 99 130 344 474 1 224 298 12 12 144 clb auto 27.2 MiB 0.97 549 73928 23829 36791 13308 65.5 MiB 0.52 0.00 1.8401 -118.152 -1.8401 1.8401 1.13 0.000186215 0.000161836 0.0287834 0.025549 34 1372 17 5.66058e+06 4.21279e+06 320229. 2223.82 4.56 0.455391 0.445202 13004 62563 -1 1233 15 463 706 34457 11587 1.99839 1.99839 -140.337 -1.99839 -0.526504 -0.320482 391831. 2721.05 0.46 0.04 0.15 -1 -1 0.46 0.0182445 0.0171197 0.009937 0.244 0.07196 0.684 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 41.84 vpr 69.40 MiB -1 -1 1.22 26688 15 2.05 -1 -1 38352 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71064 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 3.56 5371 88564 26733 54405 7426 69.4 MiB 1.60 0.01 20.9753 -1548.5 -20.9753 20.9753 2.39 0.00142561 0.00128936 0.187074 0.175506 46 12058 27 1.21132e+07 3.97408e+06 791147. 3090.42 16.13 0.952523 0.920295 26792 163197 -1 10037 19 3263 6488 1051073 260909 22.1926 22.1926 -1736.57 -22.1926 0 0 1.01637e+06 3970.19 1.20 1.06 0.35 -1 -1 1.20 0.234786 0.23044 0.008092 0.3537 0.01628 0.63 -k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1667.34 vpr 498.08 MiB -1 -1 144.32 350948 123 172.00 -1 -1 82156 -1 -1 1277 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 510036 114 102 21994 21904 1 11867 1546 50 50 2500 memory auto 191.2 MiB 797.15 164477 984396 341560 619558 23278 480.8 MiB 43.60 0.39 81.3796 -51372.9 -81.3796 81.3796 64.66 0.0580813 0.0538211 7.45432 6.37272 100 240715 32 1.47946e+08 9.6653e+07 1.76909e+07 7076.35 287.93 19.8524 17.0744 373728 3941812 -1 214762 21 37798 149570 9908123 1796529 82.1147 82.1147 -65653.6 -82.1147 -27.1769 -0.293253 2.21802e+07 8872.08 8.04 3.84 2.85 -1 -1 8.04 2.10564 1.93225 0.09065 0.4176 0.01141 0.571 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.54 vpr 65.28 MiB -1 -1 0.81 21584 3 0.87 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 66844 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.24 613 74923 25398 37402 12123 65.3 MiB 0.23 0.00 1.839 -119.464 -1.839 1.839 1.08 0.0004368 0.00039467 0.0297252 0.0265196 50 1247 9 5.66058e+06 4.21279e+06 440062. 3055.98 6.47 0.558669 0.547423 14436 87570 -1 1189 7 289 409 21086 6553 1.98899 1.98899 -140.896 -1.98899 -1.29567 -0.29768 564899. 3922.91 0.72 0.03 0.08 -1 -1 0.72 0.00982496 0.0093716 0.01164 0.2334 0.07046 0.6962 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 49.11 vpr 69.34 MiB -1 -1 1.01 26676 15 1.07 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71000 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 31.2 MiB 4.48 5371 88564 26733 54405 7426 69.3 MiB 2.30 0.00 20.9753 -1548.5 -20.9753 20.9753 2.26 0.000601515 0.000520993 0.886993 0.76491 46 11676 22 1.21132e+07 3.97408e+06 791147. 3090.42 23.41 1.73898 1.5887 26792 163197 -1 10085 19 3292 6578 1048327 260277 22.2433 22.2433 -1672.58 -22.2433 0 0 1.01637e+06 3970.19 0.99 0.71 0.17 -1 -1 0.99 0.401058 0.396803 0.008387 0.342 0.01567 0.6423 -k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1633.80 vpr 496.20 MiB -1 -1 147.19 352640 123 168.91 -1 -1 82564 -1 -1 1182 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 508112 114 102 21994 21904 1 10940 1451 50 50 2500 memory auto 191.6 MiB 877.79 154452 888239 304307 561658 22274 481.8 MiB 37.23 0.30 78.2539 -52586.4 -78.2539 78.2539 58.97 0.0684197 0.0639946 6.31801 5.30985 98 229563 46 1.47946e+08 9.15329e+07 1.74237e+07 6969.48 192.91 20.0051 17.0121 371232 3885440 -1 203027 22 36338 146810 9236519 1669830 79.2502 79.2502 -62195.8 -79.2502 -16.5833 -0.293253 2.19566e+07 8782.65 8.00 3.87 2.70 -1 -1 8.00 2.15194 1.96794 0.09196 0.4057 0.01158 0.5827 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 16.91 vpr 65.74 MiB -1 -1 0.87 21888 3 0.25 -1 -1 36784 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67316 99 130 344 474 1 226 298 12 12 144 clb auto 27.0 MiB 0.74 538 74923 23743 38186 12994 65.7 MiB 0.46 0.00 1.85836 -118.859 -1.85836 1.85836 1.25 0.00044323 0.00039874 0.0833149 0.0794368 44 1213 11 5.66058e+06 4.21279e+06 360780. 2505.42 6.90 0.345088 0.171848 13094 71552 -1 1006 9 361 566 21966 6628 1.95498 1.95498 -124.29 -1.95498 -1.3969 -0.320482 470765. 3269.20 0.34 0.20 0.23 -1 -1 0.34 0.193415 0.193005 0.0101 0.2387 0.07992 0.6814 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 47.92 vpr 68.84 MiB -1 -1 0.99 26840 15 1.36 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70492 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.7 MiB 3.23 5580 88564 28209 53179 7176 68.8 MiB 1.44 0.00 21.167 -1577.48 -21.167 21.167 2.90 0.000553365 0.00049063 0.333332 0.322203 52 12084 35 1.21132e+07 3.97408e+06 805949. 3148.24 22.47 2.73815 2.21138 25992 162577 -1 10001 21 3150 6471 953126 250011 22.6633 22.6633 -1754.49 -22.6633 0 0 1.06067e+06 4143.25 1.21 1.18 0.67 -1 -1 1.21 0.232977 0.228467 0.007879 0.3702 0.0172 0.6126 -k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1418.28 vpr 470.36 MiB -1 -1 145.00 351576 123 171.93 -1 -1 82612 -1 -1 1315 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481648 114 102 21994 21904 1 12069 1584 50 50 2500 memory auto 192.3 MiB 494.09 161733 1035344 376809 638291 20244 426.2 MiB 47.71 0.39 79.7884 -52633 -79.7884 79.7884 51.20 0.0795758 0.073882 7.82214 6.15179 100 239535 23 1.47946e+08 9.8701e+07 1.63173e+07 6526.93 333.66 33.9002 28.5792 351264 3480436 -1 216591 19 45827 171695 10458335 1849574 80.5324 80.5324 -65613.9 -80.5324 -28.5065 -0.295467 2.05845e+07 8233.80 17.07 8.12 5.20 -1 -1 17.07 4.09986 3.75578 0.08432 0.4351 0.01143 0.5535 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 16.83 vpr 65.55 MiB -1 -1 0.83 21736 3 0.19 -1 -1 36916 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67124 99 130 344 474 1 226 298 12 12 144 clb auto 27.1 MiB 0.46 629 72933 24501 35348 13084 65.6 MiB 0.48 0.00 1.87772 -119.549 -1.87772 1.87772 1.04 0.000452653 0.00040623 0.174031 0.170487 44 1518 15 5.66058e+06 4.21279e+06 360780. 2505.42 6.14 1.10383 1.08443 13094 71552 -1 1281 11 402 620 30031 8814 1.88524 1.88524 -135.78 -1.88524 -0.676272 -0.265573 470765. 3269.20 0.44 0.03 0.20 -1 -1 0.44 0.0156127 0.0147278 0.01213 0.2346 0.06899 0.6964 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 46.26 vpr 68.68 MiB -1 -1 1.55 26524 15 1.10 -1 -1 38504 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70332 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 30.6 MiB 3.51 5580 88564 28209 53179 7176 68.7 MiB 1.17 0.01 21.167 -1577.48 -21.167 21.167 2.19 0.00115365 0.00103787 0.263251 0.254836 52 11848 29 1.21132e+07 3.97408e+06 805949. 3148.24 19.66 1.68755 1.64436 25992 162577 -1 10011 19 3121 6382 869066 230925 22.6666 22.6666 -1713.82 -22.6666 0 0 1.06067e+06 4143.25 1.22 1.09 0.49 -1 -1 1.22 0.362726 0.358428 0.008166 0.3564 0.01659 0.627 -k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1328.64 vpr 427.14 MiB -1 -1 142.77 350980 123 176.23 -1 -1 82612 -1 -1 1230 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 437396 114 102 21994 21904 1 11404 1499 50 50 2500 memory auto 192.8 MiB 529.83 147778 953324 346443 585551 21330 427.1 MiB 40.69 0.27 78.2524 -50084.1 -78.2524 78.2524 54.46 0.0277941 0.0234826 7.20707 6.24514 92 230324 36 1.47946e+08 9.41199e+07 1.52089e+07 6083.58 204.30 25.2542 21.7376 338772 3221652 -1 204378 20 45281 171417 10544859 1903351 77.7124 77.7124 -63142.5 -77.7124 -11.6434 -0.17368 1.93279e+07 7731.17 17.86 9.85 5.34 -1 -1 17.86 4.98385 4.62141 0.08373 0.4084 0.01162 0.5799 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 13.89 vpr 65.46 MiB -1 -1 1.17 21584 3 0.36 -1 -1 36936 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67028 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.57 639 73928 23996 36536 13396 65.5 MiB 0.70 0.00 1.839 -119.624 -1.839 1.839 1.17 0.000186206 0.00016243 0.0288122 0.0256314 46 1373 14 5.66058e+06 4.21279e+06 378970. 2631.74 2.82 0.363528 0.315944 13238 73581 -1 1270 10 404 640 27867 7804 1.92827 1.92827 -132.912 -1.92827 -1.34165 -0.320482 486261. 3376.82 0.64 0.03 0.16 -1 -1 0.64 0.0169172 0.0159901 0.01068 0.2679 0.07864 0.6535 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 45.63 vpr 68.88 MiB -1 -1 1.14 26840 15 1.36 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70528 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 30.7 MiB 3.31 5491 86558 27021 52195 7342 68.9 MiB 1.25 0.34 20.8422 -1499.39 -20.8422 20.8422 2.21 0.00126488 0.00115014 0.355281 0.343671 52 12476 25 1.21132e+07 3.97408e+06 805949. 3148.24 21.70 2.51603 2.46771 25992 162577 -1 9995 18 3172 6560 1017823 266673 22.9367 22.9367 -1682.08 -22.9367 0 0 1.06067e+06 4143.25 1.26 0.80 0.64 -1 -1 1.26 0.072601 0.068555 0.00792 0.3643 0.01693 0.6188 -k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1479.70 vpr 470.31 MiB -1 -1 146.52 350988 123 170.60 -1 -1 82460 -1 -1 1303 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 481600 114 102 21994 21904 1 12000 1572 50 50 2500 memory auto 192.2 MiB 511.84 161777 1024804 369415 632178 23211 426.2 MiB 45.74 0.52 79.8923 -52835.3 -79.8923 79.8923 53.16 0.0653945 0.0613355 7.28465 5.98334 102 240718 39 1.47946e+08 9.80543e+07 1.66061e+07 6642.43 398.17 36.5754 31.2569 353764 3530188 -1 218796 20 45896 172140 11008942 1948718 82.1463 82.1463 -66824.1 -82.1463 -47.1487 -0.200829 2.08230e+07 8329.19 10.19 5.12 3.00 -1 -1 10.19 2.57727 2.35988 0.08548 0.4322 0.01138 0.5564 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 17.72 vpr 65.50 MiB -1 -1 0.83 21584 3 0.17 -1 -1 37220 -1 -1 68 99 1 0 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67076 99 130 344 474 1 224 298 12 12 144 clb auto 27.0 MiB 0.26 640 74923 24032 38029 12862 65.5 MiB 0.43 0.00 1.85836 -119.386 -1.85836 1.85836 1.19 0.000427283 0.000383087 0.120511 0.0306172 48 1330 15 5.66058e+06 4.21279e+06 394078. 2736.65 6.99 0.537171 0.439507 13382 75762 -1 1278 9 390 592 29773 8505 1.97104 1.97104 -133.596 -1.97104 -0.999065 -0.298787 503207. 3494.49 0.58 0.11 0.14 -1 -1 0.58 0.10463 0.103805 0.0119 0.2454 0.07017 0.6845 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 42.62 vpr 69.23 MiB -1 -1 1.12 26524 15 1.65 -1 -1 38200 -1 -1 37 162 0 5 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70892 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 31.0 MiB 4.17 5491 86558 27021 52195 7342 69.2 MiB 1.25 0.09 20.8422 -1499.39 -20.8422 20.8422 1.99 0.000650897 0.000577386 0.516363 0.50516 50 12593 36 1.21132e+07 3.97408e+06 780512. 3048.87 18.20 1.59155 1.53776 25484 153448 -1 9868 18 3208 6547 956943 250643 22.4753 22.4753 -1640.64 -22.4753 0 0 1.00276e+06 3917.05 1.19 1.66 0.25 -1 -1 1.19 0.973698 0.35489 0.008176 0.3414 0.01571 0.6429 -k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1450.83 vpr 451.48 MiB -1 -1 145.88 351092 123 171.94 -1 -1 82308 -1 -1 1214 114 45 8 success v8.0.0-10948-g76f6d280f release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-02T13:50:03 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 462320 114 102 21994 21904 1 11183 1483 50 50 2500 memory auto 191.6 MiB 562.84 147783 922860 327293 577723 17844 426.0 MiB 38.37 0.28 78.8747 -50577.6 -78.8747 78.8747 49.09 0.0250041 0.0209632 7.20624 5.97775 98 225377 21 1.47946e+08 9.32575e+07 1.60641e+07 6425.63 317.00 34.1863 29.5372 348768 3430976 -1 200896 21 42829 165324 9641173 1718310 79.0088 79.0088 -60411.8 -79.0088 -30.4278 -0.295467 2.03677e+07 8147.07 14.76 6.23 4.38 -1 -1 14.76 3.1241 2.84352 0.08621 0.4138 0.01162 0.5746 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.88 vpr 64.26 MiB -1 -1 0.38 18696 3 0.10 -1 -1 33220 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65804 99 130 344 474 1 226 298 12 12 144 clb auto 25.4 MiB 0.08 563 73928 24584 37285 12059 64.3 MiB 0.21 0.00 1.84343 -119.666 -1.84343 1.84343 0.34 0.000872039 0.000813285 0.0694108 0.0648037 46 1240 14 5.66058e+06 4.21279e+06 378970. 2631.74 0.87 0.200948 0.183937 13238 73581 -1 1152 10 424 658 26760 8051 1.93542 1.93542 -128.416 -1.93542 -1.24591 -0.322548 486261. 3376.82 0.14 0.04 0.08 -1 -1 0.14 0.0253339 0.0234756 0.01031 0.2526 0.08084 0.6666 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.73 vpr 67.68 MiB -1 -1 0.62 23664 15 0.44 -1 -1 34660 -1 -1 41 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69304 162 96 1009 950 1 703 304 16 16 256 mult_36 auto 29.5 MiB 0.28 5489 87089 24841 54671 7577 67.7 MiB 0.55 0.01 21.068 -1604.09 -21.068 21.068 0.69 0.00251657 0.00233638 0.230831 0.214549 44 12540 30 1.21132e+07 4.18965e+06 694168. 2711.59 3.65 0.89376 0.82565 24716 140770 -1 9905 20 3146 6436 1039550 268513 22.5137 22.5137 -1770.56 -22.5137 0 0 904549. 3533.39 0.30 0.43 0.16 -1 -1 0.30 0.157976 0.147282 0.007534 0.3561 0.01654 0.6273 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 541.24 vpr 463.76 MiB -1 -1 82.72 351404 123 81.39 -1 -1 78580 -1 -1 1358 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 474892 114 102 21994 21904 1 11874 1627 50 50 2500 memory auto 193.3 MiB 20.83 156844 1044212 377727 645941 20544 463.8 MiB 29.07 0.29 78.9156 -53096.5 -78.9156 78.9156 27.54 0.0834365 0.0749465 8.32953 6.99409 88 236618 43 1.47946e+08 1.01019e+08 1.46563e+07 5862.50 203.78 34.8142 28.6794 331272 3068748 -1 213183 20 44904 169641 10667643 1912698 78.7835 78.7835 -66686.2 -78.7835 -14.3316 -0.293253 1.83775e+07 7351.00 9.40 7.30 3.74 -1 -1 9.40 4.0402 3.44328 0.08004 0.4159 0.01159 0.5725 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.87 vpr 63.94 MiB -1 -1 0.36 18816 3 0.10 -1 -1 33224 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65476 99 130 344 474 1 226 298 12 12 144 clb auto 25.7 MiB 0.08 607 70943 22177 35616 13150 63.9 MiB 0.24 0.00 1.84343 -120.24 -1.84343 1.84343 0.35 0.00125922 0.00118844 0.0955586 0.0902612 44 1392 11 5.66058e+06 4.21279e+06 360780. 2505.42 0.83 0.266218 0.243618 13094 71552 -1 1244 8 392 622 25725 7395 1.90731 1.90731 -134.803 -1.90731 -0.326375 -0.101702 470765. 3269.20 0.14 0.04 0.08 -1 -1 0.14 0.0221159 0.0206213 0.0119 0.2316 0.06924 0.6991 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 11.08 vpr 67.61 MiB -1 -1 0.62 23716 15 0.43 -1 -1 34604 -1 -1 40 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69236 162 96 1009 950 1 703 303 16 16 256 mult_36 auto 29.4 MiB 0.37 5433 85731 26592 51154 7985 67.6 MiB 0.61 0.01 20.9718 -1532.75 -20.9718 20.9718 0.56 0.0032365 0.00302245 0.29989 0.281264 48 12059 50 1.21132e+07 4.13576e+06 756778. 2956.16 3.93 1.07301 0.992693 25228 149258 -1 9748 16 3049 5832 921056 236008 22.4188 22.4188 -1616.47 -22.4188 0 0 968034. 3781.38 0.32 0.35 0.16 -1 -1 0.32 0.126651 0.118866 0.007905 0.3476 0.01643 0.636 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 520.20 vpr 463.73 MiB -1 -1 84.29 351940 123 78.14 -1 -1 78820 -1 -1 1278 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 474864 114 102 21994 21904 1 11394 1547 50 50 2500 memory auto 193.3 MiB 38.40 155462 967391 346358 602799 18234 463.7 MiB 28.51 0.26 79.1658 -49689.3 -79.1658 79.1658 27.56 0.0695112 0.0544212 7.94026 6.48194 94 234140 24 1.47946e+08 9.67069e+07 1.55181e+07 6207.23 166.38 32.7744 26.8877 341268 3271592 -1 211375 21 43108 165502 10804147 1940202 80.9919 80.9919 -63610.4 -80.9919 -25.0553 -0.199574 1.95446e+07 7817.85 10.04 7.68 4.17 -1 -1 10.04 4.26057 3.6442 0.08258 0.42 0.01131 0.5687 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.96 vpr 64.25 MiB -1 -1 0.39 18792 3 0.10 -1 -1 33228 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65788 99 130 344 474 1 226 298 12 12 144 clb auto 25.6 MiB 0.17 573 73928 24663 36417 12848 64.2 MiB 0.20 0.00 1.84675 -122.028 -1.84675 1.84675 0.36 0.000832797 0.000775468 0.0666435 0.0619662 34 1451 13 5.66058e+06 4.21279e+06 307677. 2136.65 1.79 0.485361 0.441998 12584 59343 -1 1205 9 412 627 28801 9640 1.93771 1.93771 -136.37 -1.93771 -0.597404 -0.296573 377431. 2621.05 0.12 0.04 0.06 -1 -1 0.12 0.0246896 0.0229487 0.01008 0.2345 0.07172 0.6938 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 17.52 vpr 67.84 MiB -1 -1 0.62 23720 15 0.43 -1 -1 34600 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69468 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 29.7 MiB 1.15 5468 81543 23821 50149 7573 67.8 MiB 0.60 0.01 20.8891 -1501.85 -20.8891 20.8891 0.66 0.00344855 0.00323643 0.281643 0.263553 56 11865 28 1.21132e+07 3.97408e+06 911589. 3560.89 9.27 1.09333 1.00806 27484 183688 -1 9575 13 2859 5692 930412 242216 22.719 22.719 -1701.82 -22.719 0 0 1.16227e+06 4540.11 0.39 0.35 0.20 -1 -1 0.39 0.121639 0.114485 0.008069 0.3677 0.01667 0.6156 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 897.20 vpr 497.97 MiB -1 -1 83.94 352192 123 79.44 -1 -1 78776 -1 -1 1291 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 509924 114 102 21994 21904 1 12048 1560 50 50 2500 memory auto 191.3 MiB 305.37 163983 969268 328314 619639 21315 494.4 MiB 30.98 0.26 79.6079 -54089.1 -79.6079 79.6079 31.92 0.0736499 0.0662074 8.66188 7.24488 98 238811 50 1.47946e+08 9.74075e+07 1.67994e+07 6719.74 270.29 29.034 24.1282 360864 3674624 -1 215729 19 41192 156342 9879252 1778237 80.9012 80.9012 -68136 -80.9012 -20.8287 -0.293253 2.12220e+07 8488.81 6.58 5.88 3.40 -1 -1 6.58 3.17184 2.75271 0.087 0.4232 0.01136 0.5654 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.66 vpr 64.23 MiB -1 -1 0.38 18732 3 0.10 -1 -1 33220 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65768 99 130 344 474 1 226 298 12 12 144 clb auto 25.6 MiB 0.11 597 70943 22334 35504 13105 64.2 MiB 0.19 0.00 1.86464 -118.998 -1.86464 1.86464 0.34 0.000831325 0.000778619 0.0616346 0.0575394 36 1499 20 5.66058e+06 4.21279e+06 320299. 2224.30 1.59 0.305476 0.278163 12728 62292 -1 1216 9 381 620 26334 8193 1.85983 1.85983 -134.63 -1.85983 -0.250994 -0.0982328 396063. 2750.44 0.12 0.04 0.07 -1 -1 0.12 0.0231886 0.021464 0.01205 0.2214 0.06355 0.715 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 15.28 vpr 68.23 MiB -1 -1 0.64 23488 15 0.45 -1 -1 34672 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69872 162 96 1009 950 1 715 300 16 16 256 mult_36 auto 30.0 MiB 1.55 5468 81543 23821 50149 7573 68.2 MiB 0.56 0.01 20.8891 -1501.85 -20.8891 20.8891 0.75 0.00259853 0.00241451 0.241329 0.225082 56 11591 27 1.21132e+07 3.97408e+06 911589. 3560.89 6.90 1.05287 0.974146 27484 183688 -1 9547 15 2837 5676 953560 246620 22.7301 22.7301 -1662.72 -22.7301 0 0 1.16227e+06 4540.11 0.36 0.33 0.19 -1 -1 0.36 0.121157 0.113906 0.008365 0.3551 0.01607 0.6288 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 917.13 vpr 494.93 MiB -1 -1 83.30 352188 123 81.67 -1 -1 78612 -1 -1 1201 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 506808 114 102 21994 21904 1 11290 1470 50 50 2500 memory auto 191.7 MiB 281.49 148158 912165 314749 574211 23205 494.9 MiB 32.93 0.29 79.4554 -51068 -79.4554 79.4554 28.20 0.0765723 0.0687629 9.36763 7.7247 92 227126 45 1.47946e+08 9.25569e+07 1.59225e+07 6369.02 312.76 31.7866 26.2875 350868 3451476 -1 200356 21 40851 161569 10051585 1827302 79.5633 79.5633 -65693.9 -79.5633 -41.7379 -0.295467 2.01686e+07 8067.44 6.17 6.11 3.12 -1 -1 6.17 3.40476 2.94352 0.08666 0.4013 0.0114 0.5873 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 6.00 vpr 63.52 MiB -1 -1 0.42 18128 3 0.50 -1 -1 33204 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65040 99 130 344 474 1 224 298 12 12 144 clb auto 25.0 MiB 0.19 597 73928 23615 36969 13344 63.5 MiB 0.21 0.00 1.84896 -120.674 -1.84896 1.84896 0.39 0.000858521 0.000801942 0.0679726 0.0634396 34 1523 11 5.66058e+06 4.21279e+06 320229. 2223.82 0.84 0.273198 0.248947 13004 62563 -1 1403 7 408 642 34144 10902 1.98659 1.98659 -142.223 -1.98659 -0.181239 -0.099927 391831. 2721.05 0.13 0.04 0.07 -1 -1 0.13 0.021064 0.0196853 0.01022 0.2629 0.06981 0.6673 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 14.04 vpr 67.52 MiB -1 -1 0.68 23060 15 0.67 -1 -1 34676 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69144 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 29.4 MiB 1.09 5371 88564 26733 54405 7426 67.5 MiB 0.59 0.01 20.9753 -1548.5 -20.9753 20.9753 0.76 0.00269682 0.0025056 0.247165 0.22997 44 13358 43 1.21132e+07 3.97408e+06 756265. 2954.16 4.87 1.02733 0.947506 26536 158550 -1 10010 20 3135 6334 1029689 256935 22.1896 22.1896 -1678.38 -22.1896 0 0 982941. 3839.61 0.33 0.37 0.16 -1 -1 0.33 0.136253 0.126841 0.008021 0.3479 0.01587 0.6362 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 987.69 vpr 534.66 MiB -1 -1 83.17 351840 123 79.38 -1 -1 78740 -1 -1 1277 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 547488 114 102 21994 21904 1 11867 1546 50 50 2500 memory auto 190.2 MiB 384.06 160378 984396 344421 616223 23752 534.7 MiB 34.59 0.28 80.9049 -51468.8 -80.9049 80.9049 38.13 0.0675014 0.0604701 8.63489 6.98166 96 240803 39 1.47946e+08 9.6653e+07 1.71713e+07 6868.52 265.05 27.1875 22.4631 366232 3764912 -1 211482 20 38239 149129 10077163 1854638 82.9634 82.9634 -66074 -82.9634 -13.1442 -0.29436 2.13622e+07 8544.87 6.78 6.18 3.41 -1 -1 6.78 3.34595 2.90603 0.08927 0.4102 0.01145 0.5783 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 7.04 vpr 63.69 MiB -1 -1 0.43 18192 3 0.50 -1 -1 33296 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 99 130 344 474 1 224 298 12 12 144 clb auto 25.2 MiB 0.13 550 75918 24172 38060 13686 63.7 MiB 0.21 0.00 1.84896 -120.816 -1.84896 1.84896 0.38 0.000839643 0.000784246 0.068434 0.0638785 42 1311 24 5.66058e+06 4.21279e+06 375846. 2610.04 1.89 0.369675 0.334716 13720 75108 -1 1065 10 391 605 24195 7322 1.97154 1.97154 -132.767 -1.97154 -1.5352 -0.31945 470559. 3267.77 0.11 0.05 0.08 -1 -1 0.11 0.0314507 0.0290754 0.01143 0.217 0.06896 0.7141 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 13.45 vpr 67.50 MiB -1 -1 0.70 23032 15 0.65 -1 -1 34660 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69116 162 96 1009 950 1 708 300 16 16 256 mult_36 auto 29.3 MiB 1.05 5371 88564 26733 54405 7426 67.5 MiB 0.65 0.01 20.9753 -1548.5 -20.9753 20.9753 0.62 0.00336458 0.00315674 0.318119 0.298105 44 13066 50 1.21132e+07 3.97408e+06 756265. 2954.16 4.61 1.11081 1.02699 26536 158550 -1 9981 17 3112 6294 1006092 249435 22.2553 22.2553 -1672.81 -22.2553 0 0 982941. 3839.61 0.31 0.33 0.16 -1 -1 0.31 0.120365 0.112709 0.008302 0.3359 0.01529 0.6488 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1382.55 vpr 543.73 MiB -1 -1 84.29 351612 123 80.99 -1 -1 78704 -1 -1 1182 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 556780 114 102 21994 21904 1 10940 1451 50 50 2500 memory auto 191.3 MiB 416.38 152398 896450 312099 564011 20340 543.7 MiB 32.95 0.30 78.5932 -50687.6 -78.5932 78.5932 37.01 0.087119 0.0778994 9.76396 8.10767 90 240402 47 1.47946e+08 9.15329e+07 1.62125e+07 6485.01 632.49 36.2439 29.9877 356236 3531108 -1 203532 21 37919 153928 10895955 1967094 80.9184 80.9184 -62853.9 -80.9184 -16.1829 -0.293253 2.01810e+07 8072.38 6.01 5.94 3.04 -1 -1 6.01 3.20839 2.77526 0.08894 0.3889 0.01156 0.5995 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 7.10 vpr 63.44 MiB -1 -1 0.42 18016 3 0.50 -1 -1 33140 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64960 99 130 344 474 1 226 298 12 12 144 clb auto 24.8 MiB 0.17 563 73928 24584 37285 12059 63.4 MiB 0.20 0.00 1.84343 -119.666 -1.84343 1.84343 0.34 0.000848342 0.000791016 0.0667615 0.0623327 46 1193 12 5.66058e+06 4.21279e+06 378970. 2631.74 1.94 0.244518 0.221312 13238 73581 -1 1143 13 458 708 32275 9767 1.95232 1.95232 -130.919 -1.95232 -1.24591 -0.322548 486261. 3376.82 0.14 0.05 0.09 -1 -1 0.14 0.0304007 0.0280644 0.0103 0.2503 0.08027 0.6695 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.30 vpr 67.05 MiB -1 -1 0.74 23020 15 0.61 -1 -1 34668 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 68664 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 28.9 MiB 0.94 5545 88564 26522 54572 7470 67.1 MiB 0.57 0.01 21.0026 -1588.29 -21.0026 21.0026 0.69 0.0024918 0.00230272 0.236762 0.219739 52 12210 43 1.21132e+07 3.97408e+06 805949. 3148.24 4.53 1.11445 1.0285 25992 162577 -1 9909 18 3176 6485 953917 256361 22.7411 22.7411 -1746.68 -22.7411 0 0 1.06067e+06 4143.25 0.32 0.33 0.18 -1 -1 0.32 0.126028 0.117922 0.007826 0.3676 0.01712 0.6153 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 859.54 vpr 461.29 MiB -1 -1 84.52 351948 123 86.19 -1 -1 78640 -1 -1 1315 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 472360 114 102 21994 21904 1 12069 1584 50 50 2500 memory auto 190.7 MiB 213.65 161733 1035344 376809 638291 20244 461.3 MiB 29.53 0.22 79.7884 -52633 -79.7884 79.7884 23.74 0.0650488 0.0576133 8.51972 7.06191 100 237530 37 1.47946e+08 9.8701e+07 1.63173e+07 6526.93 325.13 31.7171 26.2844 351264 3480436 -1 215618 18 44895 169459 10173508 1795327 80.6148 80.6148 -66091.5 -80.6148 -29.2011 -0.29436 2.05845e+07 8233.80 6.55 5.96 3.44 -1 -1 6.55 3.12925 2.70792 0.0842 0.4345 0.01142 0.5541 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.90 vpr 63.46 MiB -1 -1 0.48 18252 3 0.50 -1 -1 33152 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64980 99 130 344 474 1 226 298 12 12 144 clb auto 25.0 MiB 0.11 607 70943 22177 35616 13150 63.5 MiB 0.20 0.00 1.84343 -120.24 -1.84343 1.84343 0.34 0.000857875 0.000800518 0.0650041 0.0606518 44 1391 8 5.66058e+06 4.21279e+06 360780. 2505.42 0.83 0.230563 0.209054 13094 71552 -1 1273 8 378 602 25925 7381 1.90731 1.90731 -133.387 -1.90731 -0.326375 -0.101702 470765. 3269.20 0.14 0.04 0.08 -1 -1 0.14 0.0225952 0.0210889 0.01196 0.2318 0.0689 0.6993 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 13.00 vpr 67.32 MiB -1 -1 0.69 22928 15 0.71 -1 -1 34636 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 68940 162 96 1009 950 1 711 300 16 16 256 mult_36 auto 29.1 MiB 1.24 5545 88564 26522 54572 7470 67.3 MiB 0.68 0.01 21.0026 -1588.29 -21.0026 21.0026 0.55 0.00329926 0.00307941 0.327632 0.306881 52 11954 32 1.21132e+07 3.97408e+06 805949. 3148.24 3.99 1.08071 0.999051 25992 162577 -1 9804 19 3164 6380 921102 248553 22.624 22.624 -1733.92 -22.624 0 0 1.06067e+06 4143.25 0.34 0.35 0.18 -1 -1 0.34 0.136369 0.127033 0.008147 0.3537 0.01653 0.6297 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 796.04 vpr 460.04 MiB -1 -1 83.66 351648 123 85.38 -1 -1 78684 -1 -1 1230 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 471084 114 102 21994 21904 1 11404 1499 50 50 2500 memory auto 190.9 MiB 196.73 147778 953324 346443 585551 21330 460.0 MiB 29.42 0.19 78.2524 -50084.1 -78.2524 78.2524 26.93 0.0619115 0.054198 8.62592 7.10968 92 231346 47 1.47946e+08 9.41199e+07 1.52089e+07 6083.58 270.91 33.5075 27.7033 338772 3221652 -1 204378 20 45281 171417 10544859 1903351 77.7124 77.7124 -63142.5 -77.7124 -11.6434 -0.17368 1.93279e+07 7731.17 6.80 7.26 3.44 -1 -1 6.80 4.09654 3.49071 0.08373 0.4084 0.01162 0.5799 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 7.31 vpr 63.41 MiB -1 -1 0.42 18112 3 0.50 -1 -1 33236 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 99 130 344 474 1 224 298 12 12 144 clb auto 25.0 MiB 0.17 547 73928 24178 36490 13260 63.4 MiB 0.21 0.00 1.84453 -118.844 -1.84453 1.84453 0.34 0.00082074 0.000766517 0.0666538 0.0621757 54 1259 19 5.66058e+06 4.21279e+06 434679. 3018.61 2.12 0.307926 0.278975 13954 85374 -1 1083 9 368 609 30132 8656 1.97107 1.97107 -129.656 -1.97107 -0.665798 -0.29436 565229. 3925.20 0.16 0.04 0.10 -1 -1 0.16 0.0231441 0.0214142 0.01039 0.2548 0.08477 0.6604 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 12.95 vpr 67.26 MiB -1 -1 0.75 23188 15 0.66 -1 -1 34752 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 68872 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 29.1 MiB 1.00 5461 86558 27105 52382 7071 67.3 MiB 0.58 0.01 20.7466 -1487.87 -20.7466 20.7466 0.68 0.00250808 0.00232543 0.237767 0.22078 50 12065 25 1.21132e+07 3.97408e+06 780512. 3048.87 4.13 0.783271 0.722187 25484 153448 -1 9954 16 3308 6762 986080 245266 22.4289 22.4289 -1655.76 -22.4289 0 0 1.00276e+06 3917.05 0.30 0.33 0.17 -1 -1 0.30 0.117516 0.110215 0.007929 0.3572 0.01615 0.6266 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 831.04 vpr 460.60 MiB -1 -1 84.52 351944 123 72.44 -1 -1 78800 -1 -1 1303 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 471652 114 102 21994 21904 1 12000 1572 50 50 2500 memory auto 190.2 MiB 205.48 161777 1024804 369415 632178 23211 460.6 MiB 26.30 0.21 79.8923 -52835.3 -79.8923 79.8923 24.01 0.0630277 0.0552548 7.99795 6.74232 102 238655 43 1.47946e+08 9.80543e+07 1.66061e+07 6642.43 320.90 32.4193 26.9336 353764 3530188 -1 218766 20 45943 171832 11196725 1980860 82.0921 82.0921 -66700.8 -82.0921 -43.9872 -0.296573 2.08230e+07 8329.19 6.72 6.53 3.40 -1 -1 6.72 3.37237 2.91475 0.08542 0.4319 0.01138 0.5567 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.88 vpr 63.53 MiB -1 -1 0.43 18192 3 0.50 -1 -1 33216 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65056 99 130 344 474 1 224 298 12 12 144 clb auto 25.0 MiB 0.12 568 75918 25541 36849 13528 63.5 MiB 0.25 0.00 1.84343 -118.123 -1.84343 1.84343 0.27 0.00126853 0.00119923 0.101369 0.0958408 48 1216 14 5.66058e+06 4.21279e+06 394078. 2736.65 0.86 0.350138 0.321876 13382 75762 -1 1154 10 412 640 32375 9804 1.97487 1.97487 -127.686 -1.97487 -0.761118 -0.29768 503207. 3494.49 0.14 0.04 0.08 -1 -1 0.14 0.0255721 0.0237417 0.01148 0.2197 0.07199 0.7083 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 16.18 vpr 67.23 MiB -1 -1 0.71 23124 15 0.70 -1 -1 34660 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 68840 162 96 1009 950 1 710 300 16 16 256 mult_36 auto 29.1 MiB 1.07 5461 86558 27106 52381 7071 67.2 MiB 0.60 0.01 20.7466 -1487.99 -20.7466 20.7466 0.73 0.00268747 0.00248908 0.255175 0.236231 52 11741 21 1.21132e+07 3.97408e+06 805949. 3148.24 7.16 1.32442 1.22062 25992 162577 -1 9626 17 3046 6163 926290 232327 22.1528 22.1528 -1641.34 -22.1528 0 0 1.06067e+06 4143.25 0.32 0.34 0.17 -1 -1 0.32 0.130874 0.122624 0.00834 0.3477 0.01645 0.6358 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 752.32 vpr 462.07 MiB -1 -1 83.06 351580 123 82.94 -1 -1 78684 -1 -1 1214 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 473164 114 102 21994 21904 1 11183 1483 50 50 2500 memory auto 191.3 MiB 244.18 147783 922860 327293 577723 17844 462.1 MiB 26.87 0.20 78.8747 -50577.6 -78.8747 78.8747 24.93 0.0642509 0.0565564 8.42246 6.98986 94 225130 31 1.47946e+08 9.32575e+07 1.55181e+07 6207.23 189.42 28.1715 23.3073 341268 3271592 -1 202427 21 43364 166923 10811741 1940871 78.9677 78.9677 -60667.7 -78.9677 -27.1167 -0.29436 1.95446e+07 7817.85 6.56 6.89 3.32 -1 -1 6.56 3.69733 3.17467 0.08509 0.4058 0.01169 0.5826 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt index 8157d1a7724..70899f46854 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1/vpr_reg_mcnc_equiv/config/golden_results.txt @@ -1,20 +1,20 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_N10_40nm.xml alu4.pre-vpr.blif common 7.21 vpr 65.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66652 14 8 926 934 0 478 118 12 12 144 clb auto 27.6 MiB 0.39 4805 7921 1196 6264 461 65.1 MiB 0.16 0.00 4.7509 -33.2503 -4.7509 nan 0.36 0.00190138 0.00162009 0.0688365 0.0606739 74 6597 21 5.3894e+06 5.17382e+06 608941. 4228.75 4.36 0.724831 0.62564 14184 119952 -1 6717 44 4137 20437 842824 113986 4.58526 nan -32.9374 -4.58526 0 0 758555. 5267.75 0.15 0.25 0.07 -1 -1 0.15 0.111914 0.0993596 -k6_N10_40nm.xml apex2.pre-vpr.blif common 11.41 vpr 67.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68692 39 3 1113 1117 0 655 156 13 13 169 clb auto 29.4 MiB 0.52 7970 14402 2695 10284 1423 67.1 MiB 0.31 0.01 5.67046 -16.7656 -5.67046 nan 0.44 0.00272498 0.0023725 0.117567 0.10279 74 12212 25 6.52117e+06 6.14392e+06 728195. 4308.85 7.04 1.29022 1.10763 16710 144151 -1 12100 18 6056 29564 1238130 177195 5.46327 nan -16.0252 -5.46327 0 0 906856. 5366.01 0.29 0.45 0.14 -1 -1 0.29 0.156952 0.142444 -k6_N10_40nm.xml apex4.pre-vpr.blif common 7.42 vpr 65.21 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66780 9 19 897 916 0 536 123 12 12 144 clb auto 27.4 MiB 0.43 6343 9578 1685 7369 524 65.2 MiB 0.20 0.01 4.76124 -79.5577 -4.76124 nan 0.35 0.00213426 0.00181729 0.0770497 0.0677823 62 10552 34 5.3894e+06 5.11993e+06 523024. 3632.11 4.01 0.784997 0.679634 13040 101000 -1 9514 34 6114 31519 1235789 184059 5.08979 nan -80.98 -5.08979 0 0 643745. 4470.45 0.22 0.52 0.10 -1 -1 0.22 0.192852 0.171041 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 8.34 vpr 66.71 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68312 263 197 1372 1603 1 490 554 17 17 289 io auto 28.7 MiB 0.31 4429 175652 50348 113731 11573 66.7 MiB 0.75 0.02 2.82334 -708.457 -2.82334 2.82334 0.85 0.00300682 0.00269253 0.247317 0.22094 34 7778 18 1.21262e+07 5.06604e+06 661981. 2290.59 3.56 0.96314 0.863927 21366 128092 -1 7371 18 2453 11694 676065 127375 3.03973 3.03973 -763.206 -3.03973 0 0 811075. 2806.49 0.32 0.31 0.12 -1 -1 0.32 0.139942 0.127415 -k6_N10_40nm.xml clma.pre-vpr.blif common 36.92 vpr 100.13 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102536 383 82 3674 4077 1 2327 845 22 22 484 clb auto 53.8 MiB 1.83 30495 408131 149393 204426 54312 91.0 MiB 4.41 0.03 8.38463 -355.215 -8.38463 8.38463 1.59 0.00553376 0.00482363 1.10718 0.941379 86 48680 35 2.15576e+07 2.04797e+07 2.58188e+06 5334.46 19.54 3.95042 3.31869 52488 536144 -1 43642 27 20275 90858 4018144 545419 8.17711 8.17711 -353.933 -8.17711 0 0 3.23937e+06 6692.90 0.78 1.10 0.32 -1 -1 0.78 0.412432 0.36509 -k6_N10_40nm.xml des.pre-vpr.blif common 7.33 vpr 64.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66380 256 245 954 1199 0 610 600 18 18 324 io auto 26.8 MiB 0.24 4908 149811 41746 100723 7342 64.8 MiB 0.56 0.01 3.98472 -745.824 -3.98472 nan 0.95 0.002533 0.00233963 0.161563 0.149504 32 8452 46 1.37969e+07 5.33551e+06 718733. 2218.31 2.56 0.640485 0.5926 23676 138656 -1 7309 16 2635 6179 382431 81452 4.25723 nan -787.373 -4.25723 0 0 879796. 2715.42 0.36 0.21 0.13 -1 -1 0.36 0.106126 0.0991908 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 5.71 vpr 65.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67064 64 39 1371 1410 1 553 200 12 12 144 clb auto 27.6 MiB 0.34 3782 22392 4498 16716 1178 65.5 MiB 0.25 0.01 5.76255 -1080.02 -5.76255 5.76255 0.36 0.00236145 0.00203563 0.102983 0.0912687 46 5161 24 5.3894e+06 5.22772e+06 394751. 2741.33 1.69 0.633809 0.550745 11608 77537 -1 5089 24 3148 10672 380947 63653 5.40496 5.40496 -1070.98 -5.40496 0 0 505417. 3509.84 0.17 0.25 0.07 -1 -1 0.17 0.142657 0.127941 -k6_N10_40nm.xml dsip.pre-vpr.blif common 9.03 vpr 66.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68208 229 197 1370 1567 1 535 521 16 16 256 io auto 28.7 MiB 0.32 4249 145076 42098 96002 6976 66.6 MiB 0.69 0.01 2.82038 -687.741 -2.82038 2.82038 0.71 0.00278869 0.00251961 0.222451 0.198857 34 7820 28 1.05632e+07 5.11993e+06 580208. 2266.44 4.63 0.965895 0.865428 18880 112045 -1 7420 18 2762 9849 588259 120916 2.94626 2.94626 -745.332 -2.94626 0 0 710900. 2776.95 0.27 0.28 0.10 -1 -1 0.27 0.137157 0.125437 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 25.44 vpr 78.20 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80080 131 114 3421 3535 1 1217 475 18 18 324 clb auto 41.1 MiB 0.96 11435 128263 36626 85751 5886 78.2 MiB 1.31 0.02 7.47596 -4443.09 -7.47596 7.47596 0.95 0.00614289 0.00546322 0.48079 0.413918 50 20115 48 1.37969e+07 1.23956e+07 1.02665e+06 3168.68 12.14 2.63609 2.25374 27232 203968 -1 16697 23 7740 32519 1480622 220162 7.27428 7.27428 -4524.79 -7.27428 0 0 1.31637e+06 4062.87 0.50 0.76 0.20 -1 -1 0.50 0.391654 0.347969 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 36.12 vpr 85.68 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87736 10 10 2659 2669 0 1417 322 20 20 400 clb auto 45.3 MiB 1.53 26735 58781 15782 41072 1927 82.0 MiB 1.36 0.02 6.79311 -65.8142 -6.79311 nan 1.26 0.00790626 0.00655989 0.45956 0.389002 98 46081 40 1.74617e+07 1.6276e+07 2.35420e+06 5885.50 26.21 3.66603 3.08292 46488 495728 -1 40094 26 13124 79778 4200582 472080 6.72249 nan -64.7071 -6.72249 0 0 2.96690e+06 7417.26 0.70 0.97 0.30 -1 -1 0.70 0.301 0.268194 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 8.16 vpr 63.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65440 8 63 761 824 0 443 149 11 11 121 clb auto 26.1 MiB 0.33 4420 9999 1667 7706 626 63.9 MiB 0.15 0.00 4.13681 -180.38 -4.13681 nan 0.29 0.00162574 0.00140448 0.0573666 0.0510513 68 6844 29 4.36541e+06 4.20373e+06 471571. 3897.28 5.40 0.972863 0.839418 11382 90811 -1 6299 27 3950 17583 680545 104378 4.04861 nan -185.982 -4.04861 0 0 579861. 4792.24 0.19 0.31 0.09 -1 -1 0.19 0.131733 0.118193 -k6_N10_40nm.xml frisc.pre-vpr.blif common 27.72 vpr 78.53 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80412 20 116 3175 3291 1 1254 376 18 18 324 clb auto 41.2 MiB 0.96 14937 83092 21035 56910 5147 78.5 MiB 1.17 0.02 9.37137 -4836.23 -9.37137 9.37137 0.99 0.00592225 0.00528715 0.438554 0.382925 66 23239 30 1.37969e+07 1.29346e+07 1.36437e+06 4211.00 13.84 3.3299 2.8475 30784 270180 -1 20879 24 8723 36885 1817074 266114 9.12568 9.12568 -4847.74 -9.12568 0 0 1.68162e+06 5190.19 0.59 0.84 0.27 -1 -1 0.59 0.397344 0.351977 -k6_N10_40nm.xml misex3.pre-vpr.blif common 7.60 vpr 64.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66280 14 14 828 842 0 488 115 12 12 144 clb auto 26.9 MiB 0.36 4941 5695 788 4522 385 64.7 MiB 0.13 0.00 4.69826 -60.2129 -4.69826 nan 0.36 0.00170664 0.00147133 0.0572936 0.0509496 54 8009 47 5.3894e+06 4.68878e+06 451357. 3134.42 4.30 0.924117 0.797498 12324 89954 -1 7171 21 4179 17710 662276 104535 4.54449 nan -60.4911 -4.54449 0 0 586610. 4073.68 0.19 0.29 0.09 -1 -1 0.19 0.124236 0.112554 -k6_N10_40nm.xml pdc.pre-vpr.blif common 29.89 vpr 82.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84912 16 40 2839 2879 0 1501 363 20 20 400 clb auto 46.4 MiB 1.31 24796 68945 17552 48401 2992 82.9 MiB 1.38 0.02 7.00232 -251.23 -7.00232 nan 1.21 0.00652942 0.00561975 0.453795 0.382384 80 44574 39 1.74617e+07 1.65455e+07 1.96642e+06 4916.06 16.16 3.20485 2.70123 41700 405380 -1 36503 18 12436 74071 3266555 428458 6.7432 nan -249.933 -6.7432 0 0 2.46811e+06 6170.27 0.94 1.30 0.42 -1 -1 0.94 0.437431 0.392854 -k6_N10_40nm.xml s298.pre-vpr.blif common 4.64 vpr 63.79 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65316 4 6 726 732 1 378 87 11 11 121 clb auto 26.1 MiB 0.30 3693 3735 430 3194 111 63.8 MiB 0.10 0.00 6.30858 -51.7143 -6.30858 6.30858 0.27 0.00174803 0.00148525 0.0451667 0.0404791 44 6200 32 4.36541e+06 4.14984e+06 309216. 2555.51 1.64 0.405195 0.352697 9582 61621 -1 5457 22 3588 18601 711043 111359 6.51519 6.51519 -54.7562 -6.51519 0 0 401578. 3318.83 0.12 0.26 0.06 -1 -1 0.12 0.106611 0.0963338 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 31.21 vpr 87.25 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89348 39 304 4677 4982 1 2229 711 22 22 484 clb auto 50.4 MiB 1.17 15892 248127 72238 162853 13036 87.3 MiB 2.40 0.03 5.02641 -3215.78 -5.02641 5.02641 1.57 0.00844683 0.00754098 0.749422 0.648136 44 24233 33 2.15576e+07 1.9833e+07 1.41060e+06 2914.46 7.76 3.1785 2.75583 39444 288878 -1 21443 23 12112 33710 1370500 248738 5.15976 5.15976 -3289.71 -5.15976 0 0 1.82601e+06 3772.76 0.73 0.91 0.28 -1 -1 0.73 0.543496 0.483827 -k6_N10_40nm.xml seq.pre-vpr.blif common 7.61 vpr 65.78 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67356 41 35 1006 1041 0 588 179 13 13 169 clb auto 28.2 MiB 0.47 6846 17819 3270 12655 1894 65.8 MiB 0.27 0.01 4.96104 -139.99 -4.96104 nan 0.43 0.00209503 0.00179479 0.0985096 0.0867435 56 12202 44 6.52117e+06 5.55108e+06 559864. 3312.80 3.70 0.750444 0.65127 14694 110679 -1 10652 23 5478 25529 1041333 159644 4.77402 nan -140.731 -4.77402 0 0 714795. 4229.55 0.24 0.41 0.11 -1 -1 0.24 0.151125 0.136708 -k6_N10_40nm.xml spla.pre-vpr.blif common 29.32 vpr 77.64 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79508 16 46 2232 2278 0 1154 307 18 18 324 clb auto 40.3 MiB 1.01 17066 52057 12539 36561 2957 77.6 MiB 0.98 0.02 6.1923 -216.925 -6.1923 nan 0.96 0.00511679 0.00441538 0.341779 0.291619 70 29237 30 1.37969e+07 1.3204e+07 1.42834e+06 4408.47 18.56 3.25549 2.73837 31752 286880 -1 25273 21 9773 55725 2341275 316396 6.1326 nan -216.962 -6.1326 0 0 1.78317e+06 5503.60 0.64 1.01 0.30 -1 -1 0.64 0.364275 0.325415 -k6_N10_40nm.xml tseng.pre-vpr.blif common 6.63 vpr 66.31 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:20 gh-actions-runner-vtr-auto-spawned49 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67900 52 122 1461 1583 1 509 284 13 13 169 clb auto 28.5 MiB 0.29 3129 40403 8633 29315 2455 66.3 MiB 0.30 0.01 5.00636 -1311.79 -5.00636 5.00636 0.45 0.00228655 0.00204201 0.110733 0.0982164 32 5107 32 6.52117e+06 5.92834e+06 352895. 2088.14 2.83 0.847248 0.735343 12174 67024 -1 4717 29 2763 8262 352580 70758 4.58906 4.58906 -1300.62 -4.58906 0 0 431135. 2551.09 0.16 0.23 0.06 -1 -1 0.16 0.140174 0.124654 +k6_N10_40nm.xml alu4.pre-vpr.blif common 8.59 vpr 62.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64452 14 8 926 934 0 478 118 12 12 144 clb auto 25.3 MiB 0.39 4861 7632 1203 5895 534 62.9 MiB 0.19 0.01 4.81129 -34.1057 -4.81129 nan 0.36 0.00279759 0.00249652 0.0936766 0.0856656 46 7231 38 5.3894e+06 5.17382e+06 394751. 2741.33 4.97 1.15882 0.997714 11608 77537 -1 6595 28 4058 16664 540701 92262 4.80486 nan -34.1889 -4.80486 0 0 505417. 3509.84 0.16 0.35 0.08 -1 -1 0.16 0.173018 0.155629 +k6_N10_40nm.xml apex2.pre-vpr.blif common 12.22 vpr 64.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66540 39 3 1113 1117 0 655 156 13 13 169 clb auto 27.2 MiB 0.53 7848 14402 2649 10506 1247 65.0 MiB 0.44 0.01 5.87593 -17.0535 -5.87593 nan 0.45 0.00371158 0.00334925 0.20704 0.180311 62 12749 40 6.52117e+06 6.14392e+06 625464. 3700.97 7.57 1.77726 1.52715 15366 121367 -1 11821 23 6604 31705 1246490 182417 5.81821 nan -16.7076 -5.81821 0 0 769731. 4554.62 0.20 0.52 0.12 -1 -1 0.20 0.186243 0.165655 +k6_N10_40nm.xml apex4.pre-vpr.blif common 10.79 vpr 63.49 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65012 9 19 897 916 0 536 123 12 12 144 clb auto 25.6 MiB 0.42 6367 10188 1820 7797 571 63.5 MiB 0.27 0.01 4.88521 -80.8415 -4.88521 nan 0.38 0.0029092 0.0024994 0.121746 0.10704 66 10539 41 5.3894e+06 5.11993e+06 560347. 3891.30 7.05 1.60323 1.37924 13468 108906 -1 9283 23 5485 27663 1064675 156764 4.65429 nan -79.0523 -4.65429 0 0 691600. 4802.78 0.23 0.52 0.11 -1 -1 0.23 0.201356 0.180663 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 8.78 vpr 64.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65960 263 197 1372 1603 1 490 554 17 17 289 io auto 26.6 MiB 0.28 4178 159734 45914 103901 9919 64.4 MiB 0.80 0.02 2.70925 -671.72 -2.70925 2.70925 0.64 0.00454988 0.00424048 0.325256 0.301305 34 7557 39 1.21262e+07 5.06604e+06 661981. 2290.59 4.15 1.50144 1.37287 21366 128092 -1 7059 18 2466 10935 583644 114043 2.85657 2.85657 -752.661 -2.85657 0 0 811075. 2806.49 0.21 0.36 0.11 -1 -1 0.21 0.188031 0.172895 +k6_N10_40nm.xml clma.pre-vpr.blif common 47.41 vpr 98.73 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 101104 383 82 3674 4077 1 2327 845 22 22 484 clb auto 51.6 MiB 1.58 30536 404138 145984 204912 53242 88.9 MiB 5.06 0.04 8.28648 -342.814 -8.28648 8.28648 1.70 0.0123395 0.0109536 1.56064 1.28155 92 45121 29 2.15576e+07 2.04797e+07 2.73869e+06 5658.45 25.82 6.71475 5.66419 54420 571420 -1 43376 29 19558 86867 3860017 513016 7.95314 7.95314 -345.544 -7.95314 0 0 3.45136e+06 7130.90 0.97 1.98 0.50 -1 -1 0.97 0.773271 0.68384 +k6_N10_40nm.xml des.pre-vpr.blif common 10.22 vpr 62.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63920 256 245 954 1199 0 610 600 18 18 324 io auto 24.4 MiB 0.26 5201 152340 42475 102399 7466 62.4 MiB 0.66 0.01 4.01708 -735.869 -4.01708 nan 0.98 0.00351085 0.0033269 0.225891 0.211203 34 8241 27 1.37969e+07 5.33551e+06 748928. 2311.50 5.21 1.17492 1.09347 24000 145208 -1 7511 17 2653 6680 385709 78794 4.12548 nan -759.699 -4.12548 0 0 917842. 2832.85 0.35 0.23 0.14 -1 -1 0.35 0.119453 0.111957 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 7.44 vpr 63.54 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65064 64 39 1371 1410 1 553 200 12 12 144 clb auto 25.8 MiB 0.33 3676 26480 5493 19478 1509 63.5 MiB 0.34 0.01 5.67908 -1077.43 -5.67908 5.67908 0.35 0.00320154 0.00294495 0.163464 0.147039 38 5312 30 5.3894e+06 5.22772e+06 334593. 2323.56 3.16 1.26636 1.10234 10892 65896 -1 4681 24 3118 10062 332682 58566 5.25636 5.25636 -1066.77 -5.25636 0 0 421775. 2928.99 0.15 0.28 0.06 -1 -1 0.15 0.171151 0.15259 +k6_N10_40nm.xml dsip.pre-vpr.blif common 11.97 vpr 64.23 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65768 229 197 1370 1567 1 535 521 16 16 256 io auto 26.4 MiB 0.36 4350 153456 43659 102077 7720 64.2 MiB 0.86 0.02 2.80678 -681.737 -2.80678 2.80678 0.80 0.00429912 0.0037047 0.330187 0.293637 38 7633 19 1.05632e+07 5.11993e+06 632420. 2470.39 6.81 1.79586 1.6101 19644 126006 -1 7305 17 2918 10969 578645 115697 2.91527 2.91527 -741.719 -2.91527 0 0 795593. 3107.78 0.30 0.38 0.12 -1 -1 0.30 0.199751 0.181044 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 22.52 vpr 76.04 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 77860 131 114 3421 3535 1 1217 475 18 18 324 clb auto 38.8 MiB 1.05 11347 120855 33486 81237 6132 76.0 MiB 1.65 0.03 7.13553 -4320.98 -7.13553 7.13553 1.04 0.0157682 0.0130711 0.765201 0.648615 48 19982 50 1.37969e+07 1.23956e+07 993200. 3065.43 7.91 3.39621 2.92745 26908 198320 -1 16973 26 8483 39234 1744343 258077 7.66136 7.66136 -4653.26 -7.66136 0 0 1.27511e+06 3935.53 0.47 1.14 0.18 -1 -1 0.47 0.623834 0.541478 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 29.48 vpr 79.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 81736 10 10 2659 2669 0 1417 322 20 20 400 clb auto 43.3 MiB 1.29 26765 54369 14249 38293 1827 79.8 MiB 1.61 0.03 6.86168 -66.9094 -6.86168 nan 1.40 0.0117621 0.0093817 0.651267 0.521536 94 46016 47 1.74617e+07 1.6276e+07 2.27873e+06 5696.83 16.53 3.88978 3.23956 45288 471832 -1 39438 22 11954 73222 3569257 422550 6.88723 nan -65.8735 -6.88723 0 0 2.85166e+06 7129.14 0.80 1.52 0.54 -1 -1 0.80 0.487085 0.432967 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 7.46 vpr 61.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63320 8 63 761 824 0 443 149 11 11 121 clb auto 24.2 MiB 0.32 4365 10393 1634 8064 695 61.8 MiB 0.18 0.01 3.97055 -176.997 -3.97055 nan 0.28 0.00220612 0.00195982 0.0805865 0.0718875 48 7082 46 4.36541e+06 4.20373e+06 335787. 2775.10 4.50 1.12531 0.972983 9822 65237 -1 6729 28 4991 22770 866459 146568 4.58986 nan -193.081 -4.58986 0 0 429749. 3551.64 0.14 0.42 0.06 -1 -1 0.14 0.167847 0.149016 +k6_N10_40nm.xml frisc.pre-vpr.blif common 25.41 vpr 76.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 77940 20 116 3175 3291 1 1254 376 18 18 324 clb auto 39.0 MiB 1.05 14685 80380 20907 54421 5052 76.1 MiB 1.25 0.02 9.24379 -4776.02 -9.24379 9.24379 1.02 0.007331 0.00666111 0.521833 0.453647 62 23090 37 1.37969e+07 1.29346e+07 1.27511e+06 3935.53 10.02 3.64755 3.16723 29816 251192 -1 20677 21 8763 36307 1741171 258132 9.01491 9.01491 -4759.53 -9.01491 0 0 1.56830e+06 4840.43 0.57 1.02 0.24 -1 -1 0.57 0.536292 0.47813 +k6_N10_40nm.xml misex3.pre-vpr.blif common 6.02 vpr 62.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 14 14 828 842 0 488 115 12 12 144 clb auto 24.6 MiB 0.37 4935 5695 744 4551 400 62.5 MiB 0.14 0.01 4.79249 -61.804 -4.79249 nan 0.37 0.00231334 0.00205683 0.0666548 0.0610058 54 7604 31 5.3894e+06 4.68878e+06 451357. 3134.42 2.39 0.663527 0.579566 12324 89954 -1 6845 22 4062 16390 568848 90964 4.68218 nan -60.5547 -4.68218 0 0 586610. 4073.68 0.19 0.36 0.09 -1 -1 0.19 0.170785 0.154865 +k6_N10_40nm.xml pdc.pre-vpr.blif common 45.15 vpr 82.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 83964 16 40 2839 2879 0 1501 363 20 20 400 clb auto 44.2 MiB 1.10 25014 66357 17421 46037 2899 80.6 MiB 1.57 0.03 6.83699 -247.117 -6.83699 nan 1.31 0.00934645 0.00826743 0.593356 0.483121 82 42830 39 1.74617e+07 1.65455e+07 2.00877e+06 5021.92 30.86 5.98909 4.90053 42096 413520 -1 38130 22 13860 81299 3800886 488665 6.71184 nan -247.972 -6.71184 0 0 2.51236e+06 6280.89 0.83 1.61 0.47 -1 -1 0.83 0.571168 0.508974 +k6_N10_40nm.xml s298.pre-vpr.blif common 5.49 vpr 61.41 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62884 4 6 726 732 1 378 87 11 11 121 clb auto 23.7 MiB 0.32 3710 3735 467 3148 120 61.4 MiB 0.12 0.00 6.30076 -51.2059 -6.30076 6.30076 0.29 0.0021729 0.00193498 0.0645013 0.05845 42 5925 39 4.36541e+06 4.14984e+06 295967. 2446.01 2.21 0.702325 0.616901 9342 57501 -1 5240 20 3648 17740 624970 99961 6.23714 6.23714 -51.9411 -6.23714 0 0 370932. 3065.56 0.12 0.32 0.05 -1 -1 0.12 0.149465 0.134899 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 40.50 vpr 84.91 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 86944 39 304 4677 4982 1 2229 711 22 22 484 clb auto 48.0 MiB 1.21 16114 235439 69717 153572 12150 84.9 MiB 2.59 0.04 5.15754 -3222.7 -5.15754 5.15754 1.32 0.0124216 0.0114465 0.95521 0.843864 46 23557 28 2.15576e+07 1.9833e+07 1.47372e+06 3044.87 17.91 6.41623 5.48749 39928 297508 -1 21848 20 12048 33140 1389867 248384 5.26639 5.26639 -3309.97 -5.26639 0 0 1.89173e+06 3908.53 0.75 1.15 0.27 -1 -1 0.75 0.704088 0.628236 +k6_N10_40nm.xml seq.pre-vpr.blif common 9.31 vpr 63.61 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65140 41 35 1006 1041 0 588 179 13 13 169 clb auto 25.9 MiB 0.39 6757 18323 3346 13019 1958 63.6 MiB 0.30 0.01 4.73381 -138.546 -4.73381 nan 0.33 0.00313405 0.00280267 0.134903 0.121621 54 11881 46 6.52117e+06 5.55108e+06 539739. 3193.72 5.18 1.28303 1.11662 14526 108005 -1 10157 29 6206 29234 1118957 171309 4.75759 nan -139.997 -4.75759 0 0 701340. 4149.94 0.23 0.54 0.11 -1 -1 0.23 0.209169 0.185413 +k6_N10_40nm.xml spla.pre-vpr.blif common 22.87 vpr 75.30 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 77108 16 46 2232 2278 0 1154 307 18 18 324 clb auto 38.1 MiB 1.02 16779 48952 11697 35209 2046 75.3 MiB 1.20 0.02 6.08527 -208.77 -6.08527 nan 0.98 0.00919675 0.00740756 0.505345 0.417851 66 27990 40 1.37969e+07 1.3204e+07 1.36437e+06 4211.00 11.01 3.18315 2.66093 30784 270180 -1 24982 26 10258 57102 2418263 320767 6.07089 nan -212.873 -6.07089 0 0 1.68162e+06 5190.19 0.64 1.38 0.26 -1 -1 0.64 0.531679 0.46563 +k6_N10_40nm.xml tseng.pre-vpr.blif common 7.20 vpr 63.89 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65428 52 122 1461 1583 1 509 284 13 13 169 clb auto 26.0 MiB 0.31 3113 40403 8942 28841 2620 63.9 MiB 0.38 0.01 5.05358 -1317.46 -5.05358 5.05358 0.44 0.00390695 0.0034328 0.178131 0.160278 30 4903 26 6.52117e+06 5.92834e+06 338182. 2001.08 2.92 1.16251 1.02297 12006 64407 -1 4475 24 2689 8005 295215 59880 5.2333 5.2333 -1302.14 -5.2333 0 0 415024. 2455.76 0.15 0.24 0.06 -1 -1 0.15 0.148592 0.134136 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt index 18e7b6ae191..879d1055d43 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/arithmetic_tasks/multless_consts/config/golden_results.txt @@ -1,1025 +1,1025 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time num_le num_luts num_add_blocks max_add_chain_length num_sub_blocks max_sub_chain_length -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 4.76 vpr 62.50 MiB 0.02 6740 -1 -1 14 0.24 -1 -1 32952 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.63 0.000911572 0.000845455 0.0421278 0.0389893 28 3693 28 6.55708e+06 313430 500653. 1732.36 1.79 0.162717 0.142573 21310 115450 -1 3181 20 1654 5188 314521 70762 7.3219 7.3219 -163.86 -7.3219 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037161 0.0324187 186 186 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 4.52 vpr 62.45 MiB 0.03 6716 -1 -1 14 0.29 -1 -1 32772 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1292 15824 4267 9033 2524 62.4 MiB 0.15 0.00 8.12966 -162.719 -8.12966 8.12966 0.66 0.000907128 0.000840271 0.0750926 0.0696213 30 3485 28 6.55708e+06 361650 526063. 1820.29 1.22 0.194161 0.171438 21886 126133 -1 2805 18 1296 3712 184432 43269 7.1187 7.1187 -155.263 -7.1187 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0341478 0.0299947 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.29 vpr 62.25 MiB 0.05 6840 -1 -1 11 0.22 -1 -1 32672 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 23.8 MiB 0.32 1266 13157 3416 7667 2074 62.3 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.63 0.000893199 0.000827038 0.0631231 0.0583866 36 3746 35 6.55708e+06 301375 612192. 2118.31 4.11 0.262229 0.228441 22750 144809 -1 3090 21 1352 4535 306541 80605 6.05052 6.05052 -138.923 -6.05052 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0390401 0.0341413 180 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 6.75 vpr 62.76 MiB 0.02 6756 -1 -1 12 0.33 -1 -1 32892 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1320 8130 2002 5291 837 62.8 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.63 0.00093371 0.000839328 0.0402817 0.0372852 36 3542 23 6.55708e+06 349595 612192. 2118.31 3.73 0.224209 0.194478 22750 144809 -1 3059 17 1320 4139 245035 54560 6.78704 6.78704 -139.257 -6.78704 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0327015 0.0287213 185 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.15 vpr 62.83 MiB 0.02 6628 -1 -1 13 0.30 -1 -1 32868 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.41 1568 9951 2486 6481 984 62.8 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.65 0.00103523 0.000958016 0.0514817 0.0476022 30 4458 47 6.55708e+06 385760 526063. 1820.29 1.87 0.214298 0.187068 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0402365 0.0353162 223 223 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 5.58 vpr 63.07 MiB 0.05 6688 -1 -1 12 0.28 -1 -1 32676 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.2 MiB 0.47 1500 9773 2280 6498 995 63.1 MiB 0.10 0.00 7.53766 -152.093 -7.53766 7.53766 0.65 0.000958635 0.000887576 0.0456729 0.0422471 36 3688 23 6.55708e+06 409870 612192. 2118.31 2.27 0.236012 0.205012 22750 144809 -1 3225 15 1319 4177 239203 54214 6.91184 6.91184 -150.91 -6.91184 0 0 782063. 2706.10 0.20 0.09 0.12 -1 -1 0.20 0.0322298 0.0285026 209 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.58 vpr 62.11 MiB 0.02 6492 -1 -1 12 0.18 -1 -1 32272 -1 -1 27 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1024 5945 1385 4013 547 62.1 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.63 0.000568799 0.00052082 0.0237947 0.0220379 28 3014 27 6.55708e+06 325485 500653. 1732.36 1.80 0.119129 0.10371 21310 115450 -1 2471 17 1100 3184 192242 43720 6.17638 6.17638 -122.787 -6.17638 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.025201 0.0221632 136 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 4.42 vpr 62.32 MiB 0.05 6772 -1 -1 11 0.18 -1 -1 32816 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.24 1220 9679 2547 5973 1159 62.3 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.62 0.000848956 0.00078669 0.0435893 0.0403683 30 3114 33 6.55708e+06 337540 526063. 1820.29 1.46 0.168525 0.148065 21886 126133 -1 2648 14 1146 3627 182841 42517 5.46178 5.46178 -127.489 -5.46178 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0268312 0.0236665 175 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 4.59 vpr 62.18 MiB 0.04 6788 -1 -1 12 0.17 -1 -1 32448 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.6 MiB 0.31 1146 12373 3633 6385 2355 62.2 MiB 0.11 0.00 7.00181 -148.703 -7.00181 7.00181 0.64 0.000750915 0.000694775 0.0508621 0.0470599 28 3391 24 6.55708e+06 301375 500653. 1732.36 1.65 0.148228 0.130496 21310 115450 -1 2708 18 1148 2832 193593 43225 6.33838 6.33838 -146.498 -6.33838 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0288059 0.0253076 145 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.22 vpr 62.32 MiB 0.03 6548 -1 -1 13 0.21 -1 -1 32768 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63812 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1098 10979 3065 6306 1608 62.3 MiB 0.10 0.00 7.23855 -159.771 -7.23855 7.23855 0.63 0.000817545 0.000758341 0.0485073 0.044869 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.152677 0.133991 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0295727 0.0259776 162 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 4.49 vpr 62.00 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32736 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1073 8868 2309 4974 1585 62.0 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.67 0.000702278 0.000650303 0.0365744 0.033886 28 2862 44 6.55708e+06 265210 500653. 1732.36 1.53 0.148597 0.129912 21310 115450 -1 2498 16 977 2436 149415 34745 6.47024 6.47024 -144.559 -6.47024 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0242107 0.0213057 132 129 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 4.81 vpr 61.96 MiB 0.02 6584 -1 -1 12 0.17 -1 -1 32800 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63452 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 971 12175 3572 6038 2565 62.0 MiB 0.11 0.00 6.75009 -143.946 -6.75009 6.75009 0.63 0.000733129 0.000679315 0.0494691 0.045705 36 2632 22 6.55708e+06 253155 612192. 2118.31 1.99 0.192827 0.168024 22750 144809 -1 2147 14 895 2464 130147 31127 5.82038 5.82038 -139.659 -5.82038 0 0 782063. 2706.10 0.21 0.06 0.13 -1 -1 0.21 0.0231096 0.0204691 138 133 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 5.18 vpr 62.76 MiB 0.05 6736 -1 -1 13 0.29 -1 -1 32892 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1456 5419 862 4216 341 62.8 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.64 0.000982983 0.000909746 0.0287289 0.0266188 28 4018 41 6.55708e+06 361650 500653. 1732.36 1.85 0.181383 0.157595 21310 115450 -1 3487 18 1567 4568 296201 66664 7.0809 7.0809 -157.254 -7.0809 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.037686 0.0331274 212 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 9.87 vpr 62.88 MiB 0.03 6776 -1 -1 14 0.32 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.64 0.00098071 0.000906993 0.0396785 0.0367267 30 3773 20 6.55708e+06 349595 526063. 1820.29 6.54 0.286875 0.248245 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0373031 0.0327956 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.71 vpr 62.11 MiB 0.02 6536 -1 -1 11 0.22 -1 -1 32408 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63596 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1095 15366 4454 8585 2327 62.1 MiB 0.13 0.00 6.42654 -129.9 -6.42654 6.42654 0.66 0.000754213 0.000693132 0.0639594 0.0592358 28 3139 21 6.55708e+06 349595 500653. 1732.36 1.73 0.155457 0.137734 21310 115450 -1 2830 20 1432 4043 278896 69092 5.81012 5.81012 -131.609 -5.81012 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0308411 0.0270245 160 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 8.12 vpr 62.80 MiB 0.05 6748 -1 -1 12 0.27 -1 -1 32884 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64308 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.53 1497 7523 1547 5261 715 62.8 MiB 0.08 0.00 7.78498 -159.33 -7.78498 7.78498 0.64 0.000995265 0.000918752 0.0381691 0.0352965 36 3844 37 6.55708e+06 409870 612192. 2118.31 4.65 0.275563 0.239664 22750 144809 -1 3492 17 1523 4766 293540 65007 6.8013 6.8013 -151.57 -6.8013 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0364182 0.0321835 213 212 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 4.84 vpr 62.89 MiB 0.02 6736 -1 -1 13 0.25 -1 -1 32744 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1448 9075 2050 5697 1328 62.9 MiB 0.10 0.00 8.28129 -168.719 -8.28129 8.28129 0.64 0.00101741 0.000942053 0.046806 0.0433115 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.66 0.182792 0.16007 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.22 0.09 0.12 -1 -1 0.22 0.0379165 0.033406 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 4.54 vpr 62.10 MiB 0.04 6492 -1 -1 12 0.17 -1 -1 32592 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.49 1089 8402 1864 6112 426 62.1 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.63 0.000749562 0.000693343 0.0363037 0.0335967 28 3024 19 6.55708e+06 265210 500653. 1732.36 1.42 0.125465 0.110246 21310 115450 -1 2550 16 1033 2869 170747 40245 6.2029 6.2029 -151.096 -6.2029 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0263692 0.0232836 139 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 3.76 vpr 61.68 MiB 0.04 6356 -1 -1 10 0.10 -1 -1 32304 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63160 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.2 MiB 0.14 786 5244 1130 3909 205 61.7 MiB 0.05 0.00 5.1986 -117.15 -5.1986 5.1986 0.64 0.000568228 0.000528103 0.0193127 0.0179301 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.12 0.0866695 0.0754284 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0241224 0.0209538 96 88 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 5.35 vpr 62.18 MiB 0.02 6612 -1 -1 13 0.17 -1 -1 32636 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1123 5079 946 3658 475 62.2 MiB 0.06 0.00 7.44701 -156.373 -7.44701 7.44701 0.64 0.000748003 0.000693257 0.0227339 0.0210382 26 3256 40 6.55708e+06 289320 477104. 1650.88 2.47 0.13633 0.118525 21022 109990 -1 2517 19 1006 2610 161976 37475 6.69638 6.69638 -154.813 -6.69638 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0288565 0.0253292 139 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 5.53 vpr 62.69 MiB 0.02 6668 -1 -1 13 0.28 -1 -1 32824 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.0 MiB 0.33 1494 10031 2522 6626 883 62.7 MiB 0.10 0.00 7.77584 -154.394 -7.77584 7.77584 0.67 0.000760707 0.000693863 0.0394374 0.0359732 28 4288 44 6.55708e+06 373705 500653. 1732.36 2.34 0.194262 0.168915 21310 115450 -1 3706 21 2129 6858 440821 99786 6.7621 6.7621 -155.774 -6.7621 0 0 612192. 2118.31 0.18 0.14 0.10 -1 -1 0.18 0.0414711 0.0363462 208 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 7.44 vpr 62.77 MiB 0.02 6740 -1 -1 13 0.29 -1 -1 33280 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.0 MiB 0.45 1626 7973 1601 5735 637 62.8 MiB 0.09 0.00 7.9648 -163.763 -7.9648 7.9648 0.64 0.000959812 0.000888632 0.0378658 0.0350273 34 4543 38 6.55708e+06 409870 585099. 2024.56 3.93 0.253937 0.220003 22462 138074 -1 3646 28 1614 5176 556730 217601 6.9607 6.9607 -155.121 -6.9607 0 0 742403. 2568.87 0.20 0.23 0.13 -1 -1 0.20 0.0632518 0.0560076 207 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 3.66 vpr 61.45 MiB 0.02 6316 -1 -1 9 0.09 -1 -1 32220 -1 -1 21 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62928 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 23.0 MiB 0.29 710 10557 2762 6888 907 61.5 MiB 0.07 0.00 4.66154 -94.5374 -4.66154 4.66154 0.66 0.000591432 0.000550371 0.0339111 0.0315476 28 1909 33 6.55708e+06 253155 500653. 1732.36 1.00 0.110688 0.0969159 21310 115450 -1 1723 14 613 1618 108492 24712 4.12668 4.12668 -93.2747 -4.12668 0 0 612192. 2118.31 0.16 0.03 0.07 -1 -1 0.16 0.00926188 0.00831013 83 73 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 6.68 vpr 62.79 MiB 0.02 6612 -1 -1 13 0.31 -1 -1 32676 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1530 4780 793 3650 337 62.8 MiB 0.06 0.00 7.84695 -156.636 -7.84695 7.84695 0.65 0.00098049 0.000906089 0.0279149 0.0258923 26 4457 46 6.55708e+06 361650 477104. 1650.88 3.15 0.186585 0.162037 21022 109990 -1 3674 77 4873 15394 2166006 1013891 6.8431 6.8431 -156.396 -6.8431 0 0 585099. 2024.56 0.18 0.69 0.08 -1 -1 0.18 0.130392 0.112362 211 210 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 3.73 vpr 61.49 MiB 0.02 6296 -1 -1 8 0.09 -1 -1 31108 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 62964 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 22.9 MiB 0.22 436 8831 2193 4716 1922 61.5 MiB 0.06 0.00 4.66158 -87.3613 -4.66158 4.66158 0.66 0.000512117 0.000476279 0.0275763 0.025635 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.11 0.10112 0.0883793 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.18 0.04 0.11 -1 -1 0.18 0.0149569 0.0131562 77 61 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.46 vpr 62.53 MiB 0.03 6736 -1 -1 15 0.23 -1 -1 33240 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.9 MiB 0.20 1127 8999 2110 5455 1434 62.5 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.71 0.000840897 0.000779905 0.0417058 0.0386975 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.45 0.159054 0.139405 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0330986 0.0289932 161 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 7.59 vpr 62.84 MiB 0.05 6548 -1 -1 12 0.24 -1 -1 32752 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 1426 7871 1871 5355 645 62.8 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.68 0.000987461 0.000913708 0.0405558 0.0374732 34 3985 37 6.55708e+06 373705 585099. 2024.56 4.30 0.373319 0.321778 22462 138074 -1 3469 18 1513 4862 300913 67896 6.49978 6.49978 -149.655 -6.49978 0 0 742403. 2568.87 0.20 0.11 0.13 -1 -1 0.20 0.0378 0.0332635 218 215 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 10.43 vpr 62.62 MiB 0.02 6724 -1 -1 13 0.26 -1 -1 32836 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1403 8993 2077 6178 738 62.6 MiB 0.10 0.00 7.73601 -160.617 -7.73601 7.73601 0.63 0.000932834 0.000852773 0.0437932 0.040496 30 3593 32 6.55708e+06 337540 526063. 1820.29 7.35 0.276862 0.239839 21886 126133 -1 3072 18 1384 4308 205516 48866 6.67144 6.67144 -155.896 -6.67144 0 0 666494. 2306.21 0.19 0.09 0.12 -1 -1 0.19 0.0353125 0.0309999 196 195 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 4.25 vpr 62.32 MiB 0.03 6480 -1 -1 12 0.17 -1 -1 32336 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63816 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.7 MiB 0.20 1093 9158 2327 6239 592 62.3 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.66 0.000762234 0.000702162 0.0402733 0.0372186 28 3047 45 6.55708e+06 265210 500653. 1732.36 1.41 0.160538 0.140399 21310 115450 -1 2474 19 1018 2717 197086 59712 5.83566 5.83566 -141.372 -5.83566 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0297925 0.026162 146 145 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 3.67 vpr 61.88 MiB 0.04 6508 -1 -1 11 0.16 -1 -1 32688 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63364 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.5 MiB 0.18 1045 6781 1469 4387 925 61.9 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.63 0.000689475 0.000639119 0.0278034 0.0257913 30 2354 17 6.55708e+06 277265 526063. 1820.29 0.91 0.103511 0.0909063 21886 126133 -1 2021 12 791 2190 98726 24085 5.56972 5.56972 -126.582 -5.56972 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0200318 0.0178077 128 125 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.30 vpr 62.13 MiB 0.04 6516 -1 -1 11 0.16 -1 -1 32636 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63620 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.62 0.000727551 0.000674546 0.035076 0.0325199 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.35 0.149491 0.130269 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.18 0.11 0.11 -1 -1 0.18 0.0371363 0.0324386 142 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 3.89 vpr 62.67 MiB 0.04 6516 -1 -1 12 0.20 -1 -1 32492 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 1327 6716 1263 5020 433 62.7 MiB 0.07 0.00 7.20375 -160.021 -7.20375 7.20375 0.63 0.000861993 0.000799266 0.0312838 0.0289936 30 3050 19 6.55708e+06 337540 526063. 1820.29 0.99 0.122561 0.107355 21886 126133 -1 2691 19 1273 3474 162936 39368 6.22984 6.22984 -154.18 -6.22984 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0340653 0.0298833 180 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 3.96 vpr 62.15 MiB 0.02 6544 -1 -1 11 0.17 -1 -1 32764 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.27 1072 4244 722 3315 207 62.1 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.63 0.000768605 0.000711708 0.0208966 0.0193635 28 2847 26 6.55708e+06 277265 500653. 1732.36 1.10 0.119701 0.104074 21310 115450 -1 2367 22 1328 3668 183355 45773 5.95786 5.95786 -137.356 -5.95786 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0342294 0.0299412 147 147 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.72 vpr 62.05 MiB 0.04 6612 -1 -1 10 0.14 -1 -1 32692 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63536 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.23 967 12733 4051 6442 2240 62.0 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.63 0.000725097 0.000671423 0.0527031 0.0487447 32 2471 22 6.55708e+06 289320 554710. 1919.41 0.84 0.140261 0.123877 22174 131602 -1 2206 14 801 2338 151536 34935 5.30638 5.30638 -118.227 -5.30638 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0230223 0.0203407 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 5.81 vpr 63.01 MiB 0.05 6944 -1 -1 13 0.32 -1 -1 33412 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.32 1621 5869 1104 4212 553 63.0 MiB 0.04 0.00 7.46683 -155.207 -7.46683 7.46683 0.63 0.000476956 0.000437109 0.0159413 0.0146369 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.53 0.14845 0.129059 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0379468 0.0335009 239 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 6.66 vpr 62.67 MiB 0.02 6720 -1 -1 13 0.28 -1 -1 32972 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1508 8283 1888 5355 1040 62.7 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.63 0.000975472 0.00090224 0.0422161 0.0389818 36 3925 27 6.55708e+06 349595 612192. 2118.31 3.42 0.254466 0.220908 22750 144809 -1 3320 18 1479 5044 281064 62523 7.1599 7.1599 -166.383 -7.1599 0 0 782063. 2706.10 0.21 0.11 0.13 -1 -1 0.21 0.0372485 0.0327661 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 5.09 vpr 62.34 MiB 0.04 6620 -1 -1 12 0.15 -1 -1 32752 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.28 1096 12568 3446 6926 2196 62.3 MiB 0.11 0.00 6.66868 -144.132 -6.66868 6.66868 0.64 0.000738521 0.0006831 0.0506349 0.0467321 36 2895 29 6.55708e+06 301375 612192. 2118.31 2.11 0.207701 0.181103 22750 144809 -1 2369 14 1000 2801 155714 35509 5.70218 5.70218 -135.308 -5.70218 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0234613 0.0207376 150 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 5.58 vpr 62.84 MiB 0.05 6712 -1 -1 12 0.26 -1 -1 33112 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1489 8977 2020 5913 1044 62.8 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.66 0.00100419 0.000931709 0.0352035 0.0324236 36 3566 22 6.55708e+06 409870 612192. 2118.31 2.46 0.232694 0.201434 22750 144809 -1 3177 15 1286 3966 226508 50828 7.1965 7.1965 -161.557 -7.1965 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0338183 0.0299356 219 219 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.28 vpr 62.64 MiB 0.05 6936 -1 -1 14 0.36 -1 -1 33216 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.0 MiB 0.21 1460 6211 1289 4295 627 62.6 MiB 0.07 0.00 8.35283 -161.679 -8.35283 8.35283 0.65 0.000956704 0.0008874 0.0328082 0.03042 30 3894 50 6.55708e+06 337540 526063. 1820.29 2.11 0.189678 0.16467 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0350292 0.0308772 194 193 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 4.00 vpr 62.37 MiB 0.04 6896 -1 -1 13 0.28 -1 -1 32820 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 23.8 MiB 0.21 1364 9271 2151 5683 1437 62.4 MiB 0.10 0.00 7.40806 -157.551 -7.40806 7.40806 0.55 0.000899304 0.000831062 0.044975 0.0415022 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.18 0.162745 0.142374 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0320359 0.0281335 181 180 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.96 vpr 62.67 MiB 0.05 6692 -1 -1 12 0.25 -1 -1 32892 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 23.9 MiB 0.48 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.63 0.000911643 0.000843971 0.0637128 0.0589754 34 4200 50 6.55708e+06 361650 585099. 2024.56 3.58 0.302333 0.263807 22462 138074 -1 3213 21 1381 4314 250002 57093 6.05052 6.05052 -141.872 -6.05052 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0387178 0.0338767 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 3.81 vpr 62.56 MiB 0.04 6828 -1 -1 12 0.17 -1 -1 32920 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1252 8278 1977 5044 1257 62.6 MiB 0.08 0.00 7.19338 -143.847 -7.19338 7.19338 0.65 0.000835498 0.000774578 0.0387252 0.035867 30 3079 17 6.55708e+06 289320 526063. 1820.29 0.92 0.133688 0.117273 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298981 0.0262802 172 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.65 vpr 62.80 MiB 0.05 6932 -1 -1 14 0.43 -1 -1 32476 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.4 MiB 0.34 1757 10673 2583 7118 972 62.8 MiB 0.12 0.00 8.08019 -170.094 -8.08019 8.08019 0.64 0.00107206 0.000991306 0.0553479 0.0511759 38 4328 19 6.55708e+06 409870 638502. 2209.35 3.16 0.269697 0.235114 23326 155178 -1 3689 18 1672 5907 302681 66882 7.0815 7.0815 -159.011 -7.0815 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0418706 0.0369416 245 245 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 4.29 vpr 62.25 MiB 0.04 6604 -1 -1 11 0.20 -1 -1 32528 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.7 MiB 0.23 1212 8009 2047 5116 846 62.2 MiB 0.08 0.00 6.43815 -136.573 -6.43815 6.43815 0.64 0.000811093 0.000752324 0.0362993 0.0336181 30 3062 33 6.55708e+06 313430 526063. 1820.29 1.28 0.151057 0.131804 21886 126133 -1 2590 18 1146 3284 165082 37542 5.53052 5.53052 -131.48 -5.53052 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0307915 0.0270527 160 155 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 6.19 vpr 62.52 MiB 0.04 6688 -1 -1 13 0.30 -1 -1 32744 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 23.9 MiB 0.37 1339 4512 785 3381 346 62.5 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.63 0.000896123 0.000819016 0.0233624 0.0216121 36 3361 29 6.55708e+06 325485 612192. 2118.31 3.06 0.212056 0.182395 22750 144809 -1 2821 16 1119 3725 204036 46190 7.0815 7.0815 -147.855 -7.0815 0 0 782063. 2706.10 0.21 0.08 0.08 -1 -1 0.21 0.0311296 0.0274297 177 177 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.07 vpr 62.84 MiB 0.05 6692 -1 -1 12 0.23 -1 -1 32896 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.2 MiB 0.35 1513 7973 1697 5548 728 62.8 MiB 0.09 0.00 7.05697 -153.444 -7.05697 7.05697 0.63 0.000992776 0.000918071 0.0392452 0.0363086 34 4231 45 6.55708e+06 409870 585099. 2024.56 2.87 0.275637 0.238104 22462 138074 -1 3578 28 1731 6789 581214 199837 6.38158 6.38158 -150.391 -6.38158 0 0 742403. 2568.87 0.20 0.19 0.12 -1 -1 0.20 0.0532504 0.0463601 227 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 9.01 vpr 62.64 MiB 0.04 6728 -1 -1 13 0.24 -1 -1 32968 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.2 MiB 0.18 1286 13340 3362 8056 1922 62.6 MiB 0.13 0.00 7.57452 -156.038 -7.57452 7.57452 0.63 0.000908581 0.000842402 0.0614507 0.0568175 28 3767 45 6.55708e+06 337540 500653. 1732.36 5.94 0.350158 0.303313 21310 115450 -1 3132 28 1519 4299 373726 132229 6.63024 6.63024 -153.52 -6.63024 0 0 612192. 2118.31 0.17 0.14 0.11 -1 -1 0.17 0.0471903 0.0410931 184 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 9.48 vpr 62.50 MiB 0.06 6808 -1 -1 13 0.25 -1 -1 32740 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1203 12563 3367 6823 2373 62.5 MiB 0.12 0.00 7.77281 -162.033 -7.77281 7.77281 0.63 0.000870649 0.000805904 0.0589842 0.0544377 30 2961 38 6.55708e+06 301375 526063. 1820.29 6.35 0.300193 0.260036 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0281982 0.0249356 175 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 6.53 vpr 62.76 MiB 0.04 6800 -1 -1 12 0.29 -1 -1 32708 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.0 MiB 0.59 1416 10679 2747 6565 1367 62.8 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.66 0.00108601 0.00100035 0.0539988 0.0498462 36 3519 46 6.55708e+06 373705 612192. 2118.31 3.04 0.288389 0.250122 22750 144809 -1 2974 16 1200 4296 232211 52518 6.01898 6.01898 -141.834 -6.01898 0 0 782063. 2706.10 0.20 0.09 0.13 -1 -1 0.20 0.0338705 0.0298649 205 204 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.82 vpr 62.63 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 32708 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1584 11223 2635 7117 1471 62.6 MiB 0.12 0.00 7.96921 -159.229 -7.96921 7.96921 0.64 0.000967061 0.000895486 0.0557484 0.051563 36 3876 21 6.55708e+06 349595 612192. 2118.31 3.68 0.253433 0.220653 22750 144809 -1 3352 17 1445 4276 256567 56929 7.1201 7.1201 -153.032 -7.1201 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0350936 0.0309186 205 205 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 5.39 vpr 62.41 MiB 0.02 6708 -1 -1 14 0.28 -1 -1 32860 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1228 9197 2464 5958 775 62.4 MiB 0.10 0.00 7.91369 -163.421 -7.91369 7.91369 0.66 0.000869014 0.000796924 0.0469801 0.0434289 28 3563 32 6.55708e+06 301375 500653. 1732.36 2.10 0.168672 0.1478 21310 115450 -1 3051 21 1512 4831 274990 63994 7.14824 7.14824 -160.088 -7.14824 0 0 612192. 2118.31 0.20 0.11 0.12 -1 -1 0.20 0.0365672 0.0319997 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 5.60 vpr 62.56 MiB 0.03 6772 -1 -1 13 0.27 -1 -1 32804 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.0 MiB 0.50 1537 7336 1683 5066 587 62.6 MiB 0.08 0.00 8.38432 -170.174 -8.38432 8.38432 0.66 0.00107264 0.00100343 0.0368505 0.0340221 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.27 0.178969 0.15636 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0326727 0.0288024 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.05 vpr 62.67 MiB 0.05 6744 -1 -1 13 0.28 -1 -1 33100 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1531 8951 1993 6087 871 62.7 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.63 0.000995902 0.000921594 0.0454643 0.041904 30 3859 27 6.55708e+06 385760 526063. 1820.29 1.85 0.175429 0.1535 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0318034 0.0281455 221 220 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 6.72 vpr 62.93 MiB 0.05 6728 -1 -1 12 0.30 -1 -1 32668 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.4 MiB 0.40 1599 7323 1463 5208 652 62.9 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.63 0.00102005 0.000941953 0.0379666 0.0350937 36 4072 27 6.55708e+06 385760 612192. 2118.31 3.42 0.236312 0.204878 22750 144809 -1 3352 17 1551 4973 264330 61331 6.8843 6.8843 -158.012 -6.8843 0 0 782063. 2706.10 0.21 0.10 0.13 -1 -1 0.21 0.0369305 0.0325417 231 230 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 3.89 vpr 61.92 MiB 0.04 6508 -1 -1 11 0.15 -1 -1 32360 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.5 MiB 0.20 1043 10883 2916 6057 1910 61.9 MiB 0.10 0.00 5.95009 -133.303 -5.95009 5.95009 0.63 0.000684026 0.000632855 0.0443481 0.0409612 30 2668 32 6.55708e+06 229045 526063. 1820.29 0.98 0.142295 0.124386 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.18 0.06 0.13 -1 -1 0.18 0.025023 0.0219396 127 122 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 4.73 vpr 62.25 MiB 0.04 6520 -1 -1 13 0.19 -1 -1 32868 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1281 6211 1217 4524 470 62.3 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.63 0.000805651 0.000747502 0.0283327 0.0262887 28 3459 26 6.55708e+06 325485 500653. 1732.36 1.63 0.126889 0.110711 21310 115450 -1 3044 23 1179 3248 221073 50907 6.82684 6.82684 -159.687 -6.82684 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0360988 0.0314731 156 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 6.18 vpr 62.86 MiB 0.05 6944 -1 -1 14 0.44 -1 -1 32916 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.6 MiB 0.36 1818 9380 1999 6471 910 62.9 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.63 0.00114881 0.00106353 0.0505866 0.0467001 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.69 0.218196 0.191133 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.14 0.11 -1 -1 0.19 0.0478678 0.0425258 267 267 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 6.31 vpr 63.19 MiB 0.04 6620 -1 -1 13 0.33 -1 -1 32792 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.7 MiB 0.46 1477 8735 1981 6002 752 63.2 MiB 0.10 0.00 7.79483 -168.531 -7.79483 7.79483 0.63 0.00102872 0.00095177 0.0468266 0.0431886 26 4757 42 6.55708e+06 373705 477104. 1650.88 2.87 0.213452 0.186126 21022 109990 -1 3635 37 1743 4947 476492 172939 6.74984 6.74984 -161.687 -6.74984 0 0 585099. 2024.56 0.17 0.19 0.10 -1 -1 0.17 0.0692161 0.0601008 224 224 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 4.75 vpr 62.11 MiB 0.03 6560 -1 -1 11 0.17 -1 -1 32772 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63604 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.20 916 9943 3248 5072 1623 62.1 MiB 0.09 0.00 6.47975 -131.851 -6.47975 6.47975 0.66 0.000731304 0.000676574 0.0431961 0.0398932 36 2386 24 6.55708e+06 277265 612192. 2118.31 1.78 0.189 0.164258 22750 144809 -1 1953 16 887 2571 135686 32427 5.54018 5.54018 -123.221 -5.54018 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.026683 0.0235345 137 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 7.53 vpr 62.97 MiB 0.05 7068 -1 -1 15 0.45 -1 -1 32884 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1670 7867 1614 5465 788 63.0 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.65 0.00107842 0.000996852 0.0428172 0.0395571 36 4552 44 6.55708e+06 397815 612192. 2118.31 4.01 0.316407 0.275579 22750 144809 -1 3787 21 2018 6815 375358 85536 7.67329 7.67329 -171.304 -7.67329 0 0 782063. 2706.10 0.20 0.13 0.13 -1 -1 0.20 0.0473525 0.0415923 241 241 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 14.44 vpr 62.79 MiB 0.05 6732 -1 -1 13 0.32 -1 -1 33264 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.0 MiB 0.43 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.64 0.000978501 0.000906426 0.0628185 0.0581343 38 3720 24 6.55708e+06 349595 638502. 2209.35 10.95 0.430567 0.373341 23326 155178 -1 2846 17 1323 3926 193252 45298 7.0025 7.0025 -149.156 -7.0025 0 0 851065. 2944.86 0.22 0.09 0.13 -1 -1 0.22 0.0356639 0.0314547 207 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.30 MiB 0.04 6488 -1 -1 11 0.14 -1 -1 32656 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.8 MiB 0.23 1161 6718 1477 4583 658 62.3 MiB 0.07 0.00 6.62468 -135.028 -6.62468 6.62468 0.64 0.00073168 0.000678159 0.0279979 0.0259334 28 3179 30 6.55708e+06 289320 500653. 1732.36 1.52 0.127649 0.111375 21310 115450 -1 2732 20 1110 3078 249082 79074 6.09938 6.09938 -138.109 -6.09938 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0298159 0.0261519 149 144 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 9.24 vpr 62.73 MiB 0.05 6868 -1 -1 12 0.29 -1 -1 32776 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.65 0.000977688 0.000903307 0.0435449 0.0402436 34 3975 42 6.55708e+06 373705 585099. 2024.56 5.95 0.38864 0.334264 22462 138074 -1 3408 21 1468 4452 271452 60248 6.59444 6.59444 -149.82 -6.59444 0 0 742403. 2568.87 0.20 0.11 0.12 -1 -1 0.20 0.0419011 0.0367126 217 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.03 vpr 62.36 MiB 0.02 6588 -1 -1 12 0.20 -1 -1 32380 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.63 0.000837982 0.000777388 0.0275411 0.0256044 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.10 0.12738 0.111337 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0303534 0.0267501 164 159 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 3.84 vpr 62.02 MiB 0.03 6564 -1 -1 12 0.18 -1 -1 32668 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.6 MiB 0.22 998 6383 1524 4361 498 62.0 MiB 0.07 0.00 7.15324 -144.822 -7.15324 7.15324 0.64 0.00076182 0.000706224 0.0302407 0.0279842 28 2443 17 6.55708e+06 253155 500653. 1732.36 0.97 0.117351 0.10289 21310 115450 -1 2221 21 890 2542 144249 33719 6.51204 6.51204 -140.888 -6.51204 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.03172 0.0277692 139 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 12.15 vpr 62.66 MiB 0.03 6820 -1 -1 12 0.33 -1 -1 32768 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.26 1315 14583 4048 7926 2609 62.7 MiB 0.15 0.00 7.005 -132.757 -7.005 7.005 0.63 0.000962425 0.000889088 0.0733817 0.0677962 30 3666 44 6.55708e+06 385760 526063. 1820.29 8.98 0.364866 0.316603 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0345851 0.0304227 208 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 4.66 vpr 63.11 MiB 0.04 6732 -1 -1 14 0.31 -1 -1 32948 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.47 1622 11046 2782 7202 1062 63.1 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.63 0.00102748 0.00095163 0.0566707 0.0524257 30 4187 27 6.55708e+06 385760 526063. 1820.29 1.29 0.178305 0.15718 21886 126133 -1 3343 18 1685 4777 229368 53349 7.21136 7.21136 -165.703 -7.21136 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0408506 0.0359528 227 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 4.98 vpr 62.54 MiB 0.02 6736 -1 -1 12 0.24 -1 -1 32888 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.0 MiB 0.38 1318 5191 912 3744 535 62.5 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.63 0.000935331 0.000863766 0.0272598 0.0252337 28 3868 27 6.55708e+06 325485 500653. 1732.36 1.84 0.153948 0.134193 21310 115450 -1 3223 18 1659 5094 315415 70126 6.55124 6.55124 -152.734 -6.55124 0 0 612192. 2118.31 0.21 0.11 0.11 -1 -1 0.21 0.0346751 0.030565 192 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 4.03 vpr 62.02 MiB 0.02 6580 -1 -1 12 0.13 -1 -1 32752 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63512 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1100 6615 1512 4600 503 62.0 MiB 0.06 0.00 6.69922 -140.427 -6.69922 6.69922 0.64 0.000703776 0.000652206 0.0269216 0.0249271 30 2478 18 6.55708e+06 277265 526063. 1820.29 1.13 0.114916 0.100558 21886 126133 -1 2223 17 844 2545 122053 29057 5.85958 5.85958 -134.543 -5.85958 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0256924 0.0225684 133 127 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.30 vpr 62.24 MiB 0.04 6560 -1 -1 12 0.23 -1 -1 32340 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63736 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1148 11398 2849 6739 1810 62.2 MiB 0.11 0.00 7.39043 -143.264 -7.39043 7.39043 0.63 0.000835345 0.000773965 0.0530799 0.049195 28 3477 38 6.55708e+06 301375 500653. 1732.36 2.15 0.178693 0.156617 21310 115450 -1 2746 20 1328 3866 226239 54192 6.4825 6.4825 -142.699 -6.4825 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.0349132 0.0305764 170 170 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 5.25 vpr 62.42 MiB 0.04 6736 -1 -1 11 0.19 -1 -1 32932 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1267 6723 1289 4852 582 62.4 MiB 0.07 0.00 6.0378 -125.718 -6.0378 6.0378 0.63 0.000893289 0.00082792 0.0328412 0.0304201 28 3807 32 6.55708e+06 337540 500653. 1732.36 2.25 0.156894 0.136707 21310 115450 -1 3191 21 1678 5748 373702 80485 5.69192 5.69192 -132.007 -5.69192 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0373179 0.0325781 189 189 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.13 vpr 62.41 MiB 0.02 6792 -1 -1 11 0.23 -1 -1 32780 -1 -1 28 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.33 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.63 0.000843271 0.000781816 0.0642843 0.0595487 38 2640 22 6.55708e+06 337540 638502. 2209.35 2.04 0.228428 0.199243 23326 155178 -1 2512 16 1076 3436 166755 38643 5.62118 5.62118 -114.287 -5.62118 0 0 851065. 2944.86 0.21 0.04 0.09 -1 -1 0.21 0.0179725 0.0162048 171 169 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 4.19 vpr 62.08 MiB 0.04 6568 -1 -1 13 0.18 -1 -1 32644 -1 -1 25 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63572 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.5 MiB 0.42 1112 5463 1180 3669 614 62.1 MiB 0.06 0.00 7.87624 -151.634 -7.87624 7.87624 0.64 0.000721543 0.000667534 0.0220921 0.0203786 30 2565 19 6.55708e+06 301375 526063. 1820.29 1.13 0.105113 0.0920041 21886 126133 -1 2212 14 872 2355 114212 26889 6.8803 6.8803 -142.823 -6.8803 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0235665 0.0208631 142 135 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 3.94 vpr 62.60 MiB 0.24 6632 -1 -1 12 0.21 -1 -1 32500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1245 6211 1266 4515 430 62.6 MiB 0.07 0.00 7.2362 -155.292 -7.2362 7.2362 0.63 0.000867828 0.000804009 0.0304375 0.0282454 30 3044 16 6.55708e+06 325485 526063. 1820.29 0.94 0.12793 0.11183 21886 126133 -1 2579 17 1186 3221 154686 37072 6.38924 6.38924 -147.46 -6.38924 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0315858 0.0277797 180 175 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 4.95 vpr 62.57 MiB 0.02 6832 -1 -1 13 0.32 -1 -1 32780 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1187 15843 5382 8046 2415 62.6 MiB 0.15 0.00 7.69912 -151.004 -7.69912 7.69912 0.63 0.000920329 0.00085195 0.073505 0.0679805 32 3890 40 6.55708e+06 361650 554710. 1919.41 1.66 0.21641 0.190665 22174 131602 -1 3026 22 1746 5358 342109 79126 6.9215 6.9215 -149.417 -6.9215 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0408985 0.0356324 195 192 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 4.58 vpr 62.86 MiB 0.02 6644 -1 -1 14 0.28 -1 -1 32756 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64364 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1371 16295 4299 9326 2670 62.9 MiB 0.16 0.00 7.90558 -162.398 -7.90558 7.90558 0.63 0.00100236 0.000927732 0.0798324 0.0738648 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.40 0.225615 0.198937 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.20 0.09 0.12 -1 -1 0.20 0.0377738 0.033258 215 214 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 6.79 vpr 62.65 MiB 0.02 6696 -1 -1 14 0.26 -1 -1 32732 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.0 MiB 0.49 1364 9067 2106 6307 654 62.6 MiB 0.10 0.00 7.8859 -150.917 -7.8859 7.8859 0.63 0.000920831 0.000849217 0.0446599 0.0412789 36 3364 28 6.55708e+06 325485 612192. 2118.31 3.49 0.245341 0.213756 22750 144809 -1 3007 18 1223 4136 234389 53065 6.6399 6.6399 -143.555 -6.6399 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0344779 0.0303371 183 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 5.58 vpr 62.44 MiB 0.05 6648 -1 -1 13 0.34 -1 -1 33204 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1350 6211 1219 4577 415 62.4 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.64 0.000950398 0.00088083 0.033529 0.0310655 36 3253 20 6.55708e+06 325485 612192. 2118.31 2.23 0.215458 0.186842 22750 144809 -1 2796 16 1241 3854 246490 70969 6.8797 6.8797 -146.954 -6.8797 0 0 782063. 2706.10 0.21 0.10 0.12 -1 -1 0.21 0.0305154 0.0272715 195 194 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 4.15 vpr 62.05 MiB 0.02 6536 -1 -1 13 0.20 -1 -1 32772 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63540 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1092 10670 2647 6412 1611 62.1 MiB 0.09 0.00 7.9674 -161.443 -7.9674 7.9674 0.63 0.000739961 0.000684278 0.0446374 0.0412826 32 2870 34 6.55708e+06 289320 554710. 1919.41 1.18 0.148636 0.130384 22174 131602 -1 2503 15 952 2360 174427 41477 6.98624 6.98624 -151.984 -6.98624 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0250927 0.0221699 146 142 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.01 vpr 62.96 MiB 0.04 6712 -1 -1 13 0.44 -1 -1 32868 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.3 MiB 0.31 1304 7653 1748 5033 872 63.0 MiB 0.09 0.00 8.34953 -161.953 -8.34953 8.34953 0.64 0.00148578 0.00136169 0.0410987 0.0380415 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.64 0.163888 0.14354 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0383337 0.033676 208 206 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.12 vpr 62.82 MiB 0.04 6824 -1 -1 14 0.31 -1 -1 31508 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1332 7336 1480 5450 406 62.8 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.65 0.000912859 0.000846309 0.0356172 0.0329015 28 3869 50 6.55708e+06 361650 500653. 1732.36 2.51 0.18401 0.160108 21310 115450 -1 3312 59 3355 11627 1396668 594014 7.22158 7.22158 -165.843 -7.22158 0 0 612192. 2118.31 0.17 0.43 0.08 -1 -1 0.17 0.0895655 0.0768268 184 182 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 5.26 vpr 62.84 MiB 0.02 6768 -1 -1 12 0.25 -1 -1 32924 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.64 0.000954078 0.000884846 0.0323466 0.0299406 34 3727 35 6.55708e+06 385760 585099. 2024.56 2.23 0.241323 0.208752 22462 138074 -1 3257 17 1353 4070 243878 54829 7.0769 7.0769 -153.016 -7.0769 0 0 742403. 2568.87 0.20 0.09 0.12 -1 -1 0.20 0.0341754 0.0301016 203 202 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 4.69 vpr 62.68 MiB 0.04 6812 -1 -1 13 0.23 -1 -1 32808 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.23 1315 6522 1420 4675 427 62.7 MiB 0.07 0.00 7.42898 -137.517 -7.42898 7.42898 0.63 0.000883382 0.000818644 0.0327075 0.0302532 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.69 0.137371 0.120492 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0319055 0.0280749 186 185 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 11.44 vpr 62.93 MiB 0.03 6740 -1 -1 14 0.36 -1 -1 32908 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.49 1483 8199 1652 5918 629 62.9 MiB 0.10 0.00 8.85275 -170.114 -8.85275 8.85275 0.62 0.00101573 0.000935747 0.0435958 0.0403868 28 4521 37 6.55708e+06 385760 500653. 1732.36 8.01 0.399432 0.345288 21310 115450 -1 3801 21 1703 5128 320201 72469 7.66262 7.66262 -166.899 -7.66262 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.0426671 0.0374235 220 216 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 5.23 vpr 62.53 MiB 0.02 6840 -1 -1 11 0.27 -1 -1 32908 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1183 4512 917 3199 396 62.5 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.67 0.000704895 0.000639451 0.0234754 0.0217469 28 3440 40 6.55708e+06 349595 500653. 1732.36 2.10 0.1519 0.131482 21310 115450 -1 2817 26 1197 3892 395829 159184 6.11164 6.11164 -132.051 -6.11164 0 0 612192. 2118.31 0.22 0.15 0.10 -1 -1 0.22 0.0383427 0.0338582 174 174 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.74 vpr 62.01 MiB 0.04 6512 -1 -1 13 0.15 -1 -1 32648 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63500 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.28 1098 6999 1531 4700 768 62.0 MiB 0.09 0.00 7.85907 -167.622 -7.85907 7.85907 0.63 0.00126489 0.00117239 0.0377926 0.034943 26 3154 29 6.55708e+06 277265 477104. 1650.88 1.85 0.137495 0.120587 21022 109990 -1 2672 19 1204 2963 191796 45593 6.5197 6.5197 -157.748 -6.5197 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.02897 0.0254386 142 131 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 4.94 vpr 62.51 MiB 0.02 6692 -1 -1 14 0.30 -1 -1 32772 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1308 7027 1497 5027 503 62.5 MiB 0.08 0.00 8.02087 -160.438 -8.02087 8.02087 0.64 0.000895879 0.000822624 0.0354911 0.0328273 28 3737 36 6.55708e+06 325485 500653. 1732.36 1.86 0.163509 0.142313 21310 115450 -1 3207 21 1605 4752 274452 62236 7.1599 7.1599 -156.902 -7.1599 0 0 612192. 2118.31 0.25 0.12 0.12 -1 -1 0.25 0.0416046 0.0365153 183 179 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.21 vpr 62.84 MiB 0.02 6732 -1 -1 15 0.42 -1 -1 33144 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.3 MiB 0.58 1579 7323 1484 5148 691 62.8 MiB 0.09 0.00 9.31018 -193.267 -9.31018 9.31018 0.65 0.00104453 0.000967957 0.0407113 0.0376537 28 4344 42 6.55708e+06 385760 500653. 1732.36 1.66 0.198383 0.173159 21310 115450 -1 3724 18 1666 4513 251464 59186 8.13481 8.13481 -184.204 -8.13481 0 0 612192. 2118.31 0.17 0.10 0.10 -1 -1 0.17 0.0391995 0.0345258 228 228 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 4.88 vpr 62.09 MiB 0.03 6664 -1 -1 11 0.17 -1 -1 32612 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63576 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.59 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.64 0.000704369 0.000652459 0.0288596 0.0267233 38 2286 15 6.55708e+06 265210 638502. 2209.35 1.67 0.159935 0.13858 23326 155178 -1 2053 17 798 2444 119607 27783 5.83204 5.83204 -129.113 -5.83204 0 0 851065. 2944.86 0.22 0.06 0.13 -1 -1 0.22 0.0253795 0.022281 126 124 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 10.68 vpr 62.31 MiB 0.05 6488 -1 -1 12 0.24 -1 -1 32564 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63808 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.7 MiB 0.36 1155 8207 1978 5141 1088 62.3 MiB 0.10 0.00 7.38032 -154.384 -7.38032 7.38032 0.63 0.000795518 0.000737807 0.0461021 0.0429769 40 2525 16 6.55708e+06 313430 666494. 2306.21 7.52 0.319559 0.276084 23614 160646 -1 2436 15 988 2915 152941 35751 6.47024 6.47024 -145.36 -6.47024 0 0 872365. 3018.56 0.22 0.07 0.14 -1 -1 0.22 0.0272887 0.024086 157 153 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 6.04 vpr 62.81 MiB 0.06 6656 -1 -1 12 0.32 -1 -1 32876 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.1 MiB 0.45 1424 7439 1505 5396 538 62.8 MiB 0.11 0.00 7.41461 -164.576 -7.41461 7.41461 0.73 0.000996995 0.000919504 0.051374 0.0476477 28 4519 45 6.55708e+06 373705 500653. 1732.36 2.47 0.212758 0.186348 21310 115450 -1 3481 18 1714 5153 317181 70391 6.7249 6.7249 -164.1 -6.7249 0 0 612192. 2118.31 0.17 0.11 0.10 -1 -1 0.17 0.0374782 0.0329476 209 207 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 4.82 vpr 62.64 MiB 0.04 6656 -1 -1 12 0.26 -1 -1 32960 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 23.9 MiB 0.55 1429 8579 2186 5781 612 62.6 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.66 0.000899436 0.000833432 0.040738 0.0377066 30 3708 20 6.55708e+06 337540 526063. 1820.29 1.45 0.152667 0.134183 21886 126133 -1 3055 18 1323 4149 205466 48529 6.62964 6.62964 -153.129 -6.62964 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0353409 0.0311607 186 184 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 5.74 vpr 63.05 MiB 0.02 6788 -1 -1 14 0.48 -1 -1 33388 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.27 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.64 0.00113794 0.00102892 0.0742777 0.0686806 38 3905 20 6.55708e+06 421925 638502. 2209.35 2.29 0.285914 0.250365 23326 155178 -1 3322 17 1561 4973 239144 54910 7.28776 7.28776 -161.226 -7.28776 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0391986 0.0346062 241 239 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 4.87 vpr 62.30 MiB 0.02 6708 -1 -1 11 0.23 -1 -1 32444 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 23.9 MiB 0.57 1210 13157 4017 6643 2497 62.3 MiB 0.12 0.00 6.86503 -131.636 -6.86503 6.86503 0.68 0.000861997 0.000798509 0.0613439 0.0567996 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.44 0.188284 0.165574 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0302565 0.026676 176 173 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.49 vpr 61.92 MiB 0.02 6504 -1 -1 11 0.19 -1 -1 32408 -1 -1 25 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63404 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.4 MiB 0.29 858 9234 2019 6554 661 61.9 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.79 0.000716243 0.000664189 0.0397719 0.0368491 28 2584 24 6.55708e+06 301375 500653. 1732.36 1.16 0.120316 0.106681 21310 115450 -1 2127 23 1370 3807 202400 48141 5.45152 5.45152 -113.59 -5.45152 0 0 612192. 2118.31 0.21 0.09 0.10 -1 -1 0.21 0.0301293 0.0266312 138 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 9.34 vpr 63.04 MiB 0.03 6980 -1 -1 13 0.54 -1 -1 32888 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.8 MiB 0.32 1915 8888 1943 6342 603 63.0 MiB 0.11 0.00 7.96961 -161.89 -7.96961 7.96961 0.65 0.00120778 0.00111628 0.0480526 0.0443725 36 5494 32 6.55708e+06 482200 612192. 2118.31 5.76 0.319339 0.277987 22750 144809 -1 4157 17 1833 6325 347640 77835 7.03004 7.03004 -153.974 -7.03004 0 0 782063. 2706.10 0.21 0.12 0.13 -1 -1 0.21 0.0434667 0.0383805 280 279 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.90 vpr 62.43 MiB 0.03 6836 -1 -1 14 0.31 -1 -1 33400 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1307 6821 1398 4713 710 62.4 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.71 0.000878922 0.00081404 0.0349227 0.0323696 28 3653 27 6.55708e+06 313430 500653. 1732.36 2.57 0.153636 0.135104 21310 115450 -1 3148 17 1242 3485 216176 48959 7.69016 7.69016 -161.531 -7.69016 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0317754 0.0279348 178 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 5.13 vpr 62.01 MiB 0.06 6484 -1 -1 12 0.20 -1 -1 32304 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.5 MiB 0.45 1197 8251 1803 5271 1177 62.0 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.64 0.000746662 0.000691107 0.0335085 0.0310046 28 3416 42 6.55708e+06 325485 500653. 1732.36 1.85 0.151532 0.132604 21310 115450 -1 2803 16 1165 3279 221762 49308 6.61598 6.61598 -159.032 -6.61598 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.0249639 0.0224962 144 134 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 9.98 vpr 62.35 MiB 0.02 6780 -1 -1 13 0.28 -1 -1 32744 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 23.9 MiB 0.40 1296 6623 1420 4442 761 62.4 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.69 0.000971325 0.000889427 0.035415 0.0325059 30 3458 27 6.55708e+06 301375 526063. 1820.29 6.71 0.267236 0.230739 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0305594 0.026957 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 6.21 vpr 62.98 MiB 0.02 6844 -1 -1 13 0.34 -1 -1 33368 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1675 5723 977 4473 273 63.0 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.71 0.000808246 0.000739602 0.0264645 0.0242867 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.45 0.181906 0.159695 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0388471 0.0343277 235 234 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 4.91 vpr 62.62 MiB 0.02 6640 -1 -1 11 0.23 -1 -1 32884 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1363 8827 2077 5986 764 62.6 MiB 0.06 0.00 7.0834 -142.912 -7.0834 7.0834 0.62 0.000436483 0.000402726 0.0218388 0.0200895 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.75 0.13045 0.113486 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0320649 0.0288437 199 199 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 7.10 vpr 62.83 MiB 0.03 6740 -1 -1 15 0.32 -1 -1 32936 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.31 1473 9543 2499 5737 1307 62.8 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.65 0.000963107 0.00088708 0.0484339 0.0447229 36 3930 43 6.55708e+06 349595 612192. 2118.31 3.84 0.278441 0.241763 22750 144809 -1 3220 17 1436 4374 250082 56644 7.80835 7.80835 -172.133 -7.80835 0 0 782063. 2706.10 0.20 0.10 0.13 -1 -1 0.20 0.0352606 0.0310257 203 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.66 vpr 62.60 MiB 0.02 6668 -1 -1 13 0.32 -1 -1 32952 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1528 11922 3138 7505 1279 62.6 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.64 0.00101178 0.000935502 0.0593763 0.0548676 34 4013 32 6.55708e+06 385760 585099. 2024.56 2.46 0.279384 0.242796 22462 138074 -1 3427 17 1435 4402 258242 57834 6.85276 6.85276 -157.073 -6.85276 0 0 742403. 2568.87 0.27 0.10 0.14 -1 -1 0.27 0.0374917 0.0330817 217 217 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 7.10 vpr 62.14 MiB 0.02 6600 -1 -1 12 0.21 -1 -1 32340 -1 -1 29 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63628 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.6 MiB 0.44 1144 6321 1459 4287 575 62.1 MiB 0.07 0.00 6.98904 -150.776 -6.98904 6.98904 0.64 0.000777179 0.00072137 0.0269759 0.0250142 30 2863 42 6.55708e+06 349595 526063. 1820.29 4.00 0.241644 0.209494 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0264391 0.0233918 159 151 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 10.08 vpr 61.95 MiB 0.02 6680 -1 -1 11 0.18 -1 -1 32504 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.4 MiB 0.37 1041 8402 1813 6153 436 61.9 MiB 0.08 0.00 6.97021 -142.93 -6.97021 6.97021 0.65 0.00073734 0.000683055 0.0353529 0.0327063 30 2905 24 6.55708e+06 265210 526063. 1820.29 7.02 0.220582 0.190696 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0251092 0.0221089 138 137 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.45 vpr 62.65 MiB 0.02 6684 -1 -1 13 0.30 -1 -1 32756 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.0 MiB 0.35 1528 7975 1701 5466 808 62.6 MiB 0.09 0.00 8.19329 -167.366 -8.19329 8.19329 0.69 0.000955143 0.000883771 0.0391456 0.0361949 28 4213 29 6.55708e+06 373705 500653. 1732.36 2.22 0.171767 0.150128 21310 115450 -1 3366 17 1498 4604 263771 59764 7.34424 7.34424 -163.794 -7.34424 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.037373 0.032921 204 203 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 5.58 vpr 61.96 MiB 0.02 6568 -1 -1 10 0.17 -1 -1 32764 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63444 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.5 MiB 0.21 1030 5107 1053 3581 473 62.0 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.63 0.000724127 0.000671014 0.0231606 0.0214633 26 3016 46 6.55708e+06 289320 477104. 1650.88 2.79 0.140875 0.122289 21022 109990 -1 2373 19 1107 3180 197521 45332 5.45152 5.45152 -125.81 -5.45152 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0281723 0.0246893 138 136 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 5.59 vpr 62.17 MiB 0.02 6656 -1 -1 14 0.18 -1 -1 32692 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63664 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.6 MiB 0.45 1019 11203 3089 5915 2199 62.2 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.64 0.000775238 0.000716406 0.0470527 0.0435112 28 3519 29 6.55708e+06 289320 500653. 1732.36 2.46 0.159999 0.140997 21310 115450 -1 2590 22 1381 4103 241007 57254 7.4813 7.4813 -165.085 -7.4813 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.0350871 0.0307997 149 146 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 5.62 vpr 62.78 MiB 0.04 6760 -1 -1 12 0.33 -1 -1 32840 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1351 11891 3061 6959 1871 62.8 MiB 0.12 0.00 7.58423 -159.03 -7.58423 7.58423 0.63 0.000961983 0.000886965 0.0588962 0.0543274 36 3367 18 6.55708e+06 349595 612192. 2118.31 2.43 0.246747 0.215187 22750 144809 -1 2996 17 1263 4054 221348 50956 6.38924 6.38924 -147.781 -6.38924 0 0 782063. 2706.10 0.21 0.09 0.12 -1 -1 0.21 0.0342994 0.0301751 201 201 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.50 vpr 62.11 MiB 0.02 6644 -1 -1 12 0.15 -1 -1 32392 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63600 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1079 5567 1026 4331 210 62.1 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.67 0.000623329 0.000568003 0.0243021 0.0225048 28 3150 46 6.55708e+06 277265 500653. 1732.36 1.60 0.142242 0.123578 21310 115450 -1 2686 18 989 2588 183878 45305 6.22018 6.22018 -144.568 -6.22018 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0272408 0.0239668 141 138 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 4.73 vpr 62.62 MiB 0.02 6844 -1 -1 12 0.22 -1 -1 32700 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.2 MiB 0.27 1263 7843 1830 5405 608 62.6 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.64 0.000898875 0.000832249 0.0383897 0.0354925 28 3643 19 6.55708e+06 325485 500653. 1732.36 1.72 0.14975 0.131128 21310 115450 -1 2975 24 1345 4339 429136 160252 6.03324 6.03324 -147.066 -6.03324 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0439523 0.0382702 188 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 10.71 vpr 62.55 MiB 0.02 6780 -1 -1 13 0.27 -1 -1 33028 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 23.9 MiB 0.28 1349 6509 1390 4237 882 62.6 MiB 0.07 0.00 7.60996 -160.091 -7.60996 7.60996 0.63 0.000893594 0.000827738 0.0317426 0.0293922 28 4174 46 6.55708e+06 349595 500653. 1732.36 7.51 0.352884 0.302938 21310 115450 -1 3442 36 1483 4579 649016 276569 6.5197 6.5197 -157.574 -6.5197 0 0 612192. 2118.31 0.20 0.23 0.11 -1 -1 0.20 0.058293 0.0504437 179 178 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.14 vpr 62.15 MiB 0.04 6528 -1 -1 11 0.16 -1 -1 32324 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.6 MiB 0.23 1256 8251 2031 5471 749 62.1 MiB 0.08 0.00 6.67834 -143.715 -6.67834 6.67834 0.64 0.000792608 0.000735385 0.0349008 0.0323788 28 3436 25 6.55708e+06 325485 500653. 1732.36 1.28 0.136913 0.120487 21310 115450 -1 3020 19 1259 4025 242298 55462 5.95224 5.95224 -142.267 -5.95224 0 0 612192. 2118.31 0.17 0.09 0.11 -1 -1 0.17 0.0298066 0.0261791 148 143 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.86 vpr 62.21 MiB 0.02 6492 -1 -1 13 0.20 -1 -1 32452 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.24 1339 8047 1963 5261 823 62.2 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.64 0.000846725 0.000784054 0.0366124 0.0338966 28 3857 33 6.55708e+06 325485 500653. 1732.36 1.87 0.155823 0.135952 21310 115450 -1 3031 30 1465 4214 436287 168804 6.9195 6.9195 -159.011 -6.9195 0 0 612192. 2118.31 0.17 0.16 0.10 -1 -1 0.17 0.0468029 0.0405681 167 165 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 5.68 vpr 62.52 MiB 0.04 6772 -1 -1 13 0.26 -1 -1 32808 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.18 1276 15187 4382 8407 2398 62.5 MiB 0.15 0.00 7.99583 -160.474 -7.99583 7.99583 0.65 0.000907748 0.00084118 0.0713909 0.0660637 36 3413 20 6.55708e+06 325485 612192. 2118.31 2.59 0.24837 0.217297 22750 144809 -1 2918 17 1346 4006 219400 51325 7.09316 7.09316 -153.316 -7.09316 0 0 782063. 2706.10 0.21 0.09 0.13 -1 -1 0.21 0.0326906 0.0287648 184 183 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.95 vpr 62.22 MiB 0.04 6872 -1 -1 11 0.24 -1 -1 32716 -1 -1 28 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63716 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.32 1142 12761 3414 7382 1965 62.2 MiB 0.12 0.00 6.37111 -124.414 -6.37111 6.37111 0.64 0.000808228 0.000747209 0.0527179 0.0482621 36 2747 19 6.55708e+06 337540 612192. 2118.31 1.81 0.20936 0.181625 22750 144809 -1 2404 16 957 3014 161389 37175 5.85132 5.85132 -121.991 -5.85132 0 0 782063. 2706.10 0.20 0.07 0.13 -1 -1 0.20 0.027754 0.0243508 162 160 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 4.54 vpr 63.13 MiB 0.02 6760 -1 -1 14 0.35 -1 -1 33556 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.38 1569 9951 2260 6812 879 63.1 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.63 0.0010227 0.000946832 0.0507044 0.0468561 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.35 0.185312 0.162365 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0381553 0.0336846 225 222 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 4.91 vpr 62.10 MiB 0.02 6564 -1 -1 12 0.19 -1 -1 32512 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.43 1144 6619 1429 4488 702 62.1 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.64 0.000739445 0.00068451 0.0268686 0.02487 36 2680 25 6.55708e+06 337540 612192. 2118.31 1.78 0.176467 0.152667 22750 144809 -1 2409 14 987 2636 153022 35561 6.03324 6.03324 -139.316 -6.03324 0 0 782063. 2706.10 0.21 0.07 0.13 -1 -1 0.21 0.0237312 0.0209983 145 139 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 5.43 vpr 62.62 MiB 0.02 6852 -1 -1 13 0.34 -1 -1 32880 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 23.9 MiB 0.39 1396 7843 1736 5120 987 62.6 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.58 0.00103015 0.000957193 0.0386503 0.0357159 28 3900 43 6.55708e+06 325485 500653. 1732.36 2.23 0.180634 0.15731 21310 115450 -1 3286 21 1503 4699 370705 97066 6.8823 6.8823 -150.837 -6.8823 0 0 612192. 2118.31 0.17 0.12 0.10 -1 -1 0.17 0.038469 0.0336339 189 188 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.12 vpr 61.99 MiB 0.05 6544 -1 -1 13 0.22 -1 -1 32832 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63476 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.4 MiB 0.36 1076 10583 2933 6087 1563 62.0 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.65 0.000747898 0.000692173 0.0431559 0.0399264 28 3369 28 6.55708e+06 301375 500653. 1732.36 1.99 0.148937 0.131212 21310 115450 -1 2712 22 1331 3578 210486 49292 6.87064 6.87064 -160.132 -6.87064 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0331016 0.0289265 146 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 7.32 vpr 62.36 MiB 0.03 6740 -1 -1 12 0.21 -1 -1 32900 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1148 5517 1034 4096 387 62.4 MiB 0.06 0.00 7.36755 -151.17 -7.36755 7.36755 0.66 0.000993175 0.000915804 0.0281481 0.0261209 30 2794 18 6.55708e+06 313430 526063. 1820.29 4.29 0.234482 0.201916 21886 126133 -1 2452 16 1021 3422 165754 38479 6.5237 6.5237 -142.626 -6.5237 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0304638 0.0267292 172 171 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.78 vpr 63.07 MiB 0.03 6896 -1 -1 15 0.49 -1 -1 32836 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.9 MiB 0.31 1759 9998 2422 6696 880 63.1 MiB 0.14 0.00 8.78932 -180.299 -8.78932 8.78932 0.64 0.00112224 0.00103771 0.0649369 0.0598937 36 4483 32 6.55708e+06 409870 612192. 2118.31 4.20 0.312555 0.272257 22750 144809 -1 3842 20 2164 7171 393829 87274 7.72935 7.72935 -170.09 -7.72935 0 0 782063. 2706.10 0.21 0.14 0.13 -1 -1 0.21 0.0473715 0.0417671 250 250 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 3.81 vpr 61.55 MiB 0.02 6444 -1 -1 10 0.09 -1 -1 31968 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63028 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.1 MiB 0.31 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.63 0.000561989 0.000522243 0.0325528 0.0301338 28 1925 17 6.55708e+06 192880 500653. 1732.36 1.05 0.0960395 0.0843475 21310 115450 -1 1696 14 643 1545 95317 22323 4.72266 4.72266 -118.396 -4.72266 0 0 612192. 2118.31 0.17 0.05 0.10 -1 -1 0.17 0.0174701 0.0153802 92 85 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.03 vpr 62.40 MiB 0.02 6524 -1 -1 13 0.18 -1 -1 32544 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.8 MiB 0.18 1069 6415 1411 4237 767 62.4 MiB 0.06 0.00 7.77311 -151.473 -7.77311 7.77311 0.63 0.000752674 0.000698341 0.0264341 0.0244626 28 2954 45 6.55708e+06 349595 500653. 1732.36 1.20 0.144514 0.125828 21310 115450 -1 2445 29 961 2684 276871 103199 6.8385 6.8385 -148.047 -6.8385 0 0 612192. 2118.31 0.18 0.12 0.10 -1 -1 0.18 0.0412877 0.0360205 150 141 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 4.77 vpr 62.38 MiB 0.04 6520 -1 -1 12 0.21 -1 -1 32516 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63872 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1241 11223 2642 6703 1878 62.4 MiB 0.11 0.00 6.72746 -150.964 -6.72746 6.72746 0.63 0.000841141 0.000779116 0.0520145 0.0481425 34 3118 16 6.55708e+06 277265 585099. 2024.56 1.80 0.209822 0.182621 22462 138074 -1 2784 18 1234 3555 200327 47240 6.06278 6.06278 -146.84 -6.06278 0 0 742403. 2568.87 0.20 0.08 0.12 -1 -1 0.20 0.0312523 0.0274015 167 167 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 5.09 vpr 61.95 MiB 0.02 6552 -1 -1 9 0.13 -1 -1 32508 -1 -1 25 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63432 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.4 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.07 0.00 5.60806 -104.508 -5.60806 5.60806 0.67 0.000469714 0.000429671 0.0288376 0.0264435 26 2429 32 6.55708e+06 301375 477104. 1650.88 2.39 0.115528 0.100615 21022 109990 -1 2030 21 959 2849 201894 44162 5.05372 5.05372 -102.414 -5.05372 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0255648 0.0222381 112 111 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 7.94 vpr 62.73 MiB 0.05 6656 -1 -1 12 0.26 -1 -1 32744 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.2 MiB 0.55 1640 5273 863 4118 292 62.7 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.64 0.000983417 0.000902618 0.0264788 0.0245066 36 4101 31 6.55708e+06 409870 612192. 2118.31 4.44 0.242036 0.209418 22750 144809 -1 3664 27 1663 4868 389419 120702 6.6811 6.6811 -162.861 -6.6811 0 0 782063. 2706.10 0.20 0.15 0.13 -1 -1 0.20 0.0493503 0.0430863 209 208 -1 -1 -1 -1 -fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 6.33 vpr 62.79 MiB 0.04 6724 -1 -1 14 0.31 -1 -1 32944 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1228 13340 3394 7367 2579 62.8 MiB 0.14 0.00 8.33716 -163.889 -8.33716 8.33716 0.64 0.000984721 0.000903453 0.0664498 0.0612243 38 3334 33 6.55708e+06 349595 638502. 2209.35 2.88 0.287428 0.250907 23326 155178 -1 2567 15 1241 3638 169276 42191 7.26282 7.26282 -154.559 -7.26282 0 0 851065. 2944.86 0.21 0.08 0.11 -1 -1 0.21 0.0325453 0.0287779 204 204 -1 -1 -1 -1 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.83 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30832 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.12 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.64 0.000827988 0.000767268 0.064469 0.0596802 32 2653 22 6.64007e+06 452088 554710. 1919.41 0.96 0.162961 0.14444 22834 132086 -1 2063 20 1737 2888 190251 43596 3.62623 3.62623 -138.638 -3.62623 0 0 701300. 2426.64 0.19 0.09 0.10 -1 -1 0.19 0.0316439 0.0275912 153 96 32 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.67 vpr 62.99 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30636 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.3 MiB 0.19 873 12919 4129 6395 2395 63.0 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.64 0.000764562 0.000709835 0.0559314 0.0519323 32 2348 20 6.64007e+06 288834 554710. 1919.41 0.86 0.144281 0.127743 22834 132086 -1 1994 22 1856 3093 219120 49732 3.70343 3.70343 -133.099 -3.70343 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324432 0.0282045 142 91 30 30 89 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.58 vpr 62.97 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30500 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1003 9675 2005 7104 566 63.0 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000742313 0.000689013 0.0347448 0.0322428 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.87 0.129417 0.113479 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0267707 0.0234137 142 65 54 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 3.69 vpr 62.72 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30508 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.7 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.64 0.000688526 0.000639881 0.042101 0.0390755 26 2405 19 6.64007e+06 301392 477104. 1650.88 1.03 0.127391 0.112594 21682 110474 -1 2136 21 1720 2916 197802 44415 3.71763 3.71763 -133.945 -3.71763 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0281545 0.0245736 138 34 87 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.62 vpr 62.80 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30368 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.2 MiB 0.11 849 15017 4515 8552 1950 62.8 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.63 0.000698925 0.00064501 0.0620162 0.057641 32 2360 21 6.64007e+06 276276 554710. 1919.41 0.90 0.149161 0.132535 22834 132086 -1 1907 22 1808 3168 189233 46987 3.49503 3.49503 -134.831 -3.49503 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0324253 0.0284015 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.66 vpr 62.93 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30516 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1024 19142 5848 10342 2952 62.9 MiB 0.18 0.00 3.5603 -122.153 -3.5603 3.5603 0.66 0.000769856 0.000712554 0.0637324 0.0590922 32 2260 24 6.64007e+06 489762 554710. 1919.41 0.86 0.157237 0.139232 22834 132086 -1 1964 21 1392 2247 141883 33754 2.95797 2.95797 -118.183 -2.95797 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0317082 0.0276797 156 64 63 32 63 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.37 vpr 62.18 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30580 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.6 MiB 0.10 722 12923 4015 7171 1737 62.2 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.63 0.00056724 0.000527573 0.0454016 0.0422238 32 1657 16 6.64007e+06 251160 554710. 1919.41 0.76 0.107912 0.0956302 22834 132086 -1 1469 18 836 1477 106951 23765 2.89177 2.89177 -98.2789 -2.89177 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0209956 0.0182635 96 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.11 vpr 62.89 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30240 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.09 948 16081 4441 8879 2761 62.9 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.63 0.000668355 0.00062178 0.0508719 0.0473057 28 2371 22 6.64007e+06 426972 500653. 1732.36 0.92 0.133171 0.118063 21970 115934 -1 1925 20 1174 1957 131265 29413 2.65357 2.65357 -104.231 -2.65357 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0260766 0.0227478 140 4 115 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.41 vpr 62.50 MiB 0.05 7008 -1 -1 1 0.03 -1 -1 30228 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.6 MiB 0.15 706 7820 1805 5417 598 62.5 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.63 0.000657452 0.000610882 0.0320631 0.0298232 28 1873 21 6.64007e+06 213486 500653. 1732.36 0.74 0.108945 0.095574 21970 115934 -1 1617 19 763 1280 81950 19016 2.76197 2.76197 -100.334 -2.76197 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0250137 0.0218173 106 85 0 0 84 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 4.24 vpr 62.62 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30336 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.64 0.000648222 0.000603082 0.0421452 0.0392251 32 2057 20 6.64007e+06 213486 554710. 1919.41 0.83 0.117423 0.103772 22834 132086 -1 1852 18 1316 2016 140487 32575 2.99897 2.99897 -124.432 -2.99897 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0244739 0.0213861 121 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.37 vpr 62.62 MiB 0.03 6856 -1 -1 1 0.03 -1 -1 30176 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 23.9 MiB 0.14 822 14012 5060 7295 1657 62.6 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.65 0.000642683 0.000596339 0.0547004 0.0508058 28 1767 16 6.64007e+06 226044 500653. 1732.36 0.76 0.12621 0.112089 21970 115934 -1 1573 18 969 1421 92248 21186 2.81677 2.81677 -113.582 -2.81677 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.0236129 0.0206423 110 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.42 vpr 62.62 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30528 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.6 MiB 0.09 0.00 3.52209 -114.564 -3.52209 3.52209 0.67 0.00065979 0.00061293 0.0329072 0.0305616 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.80 0.109337 0.095981 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0226312 0.0197843 114 65 25 25 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.76 vpr 62.99 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 0.21 893 19448 6133 10048 3267 63.0 MiB 0.20 0.00 3.56129 -122.026 -3.56129 3.56129 0.55 0.000759823 0.000705655 0.0745375 0.0692153 32 2222 23 6.64007e+06 426972 554710. 1919.41 0.91 0.165859 0.147789 22834 132086 -1 2011 22 1725 2969 222324 48004 2.95177 2.95177 -118.25 -2.95177 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0317495 0.0277204 145 58 64 32 57 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.30 vpr 63.09 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1031 17036 4693 9820 2523 63.1 MiB 0.16 0.00 4.31123 -147.759 -4.31123 4.31123 0.63 0.000774397 0.000719396 0.0598716 0.0555632 26 2990 23 6.64007e+06 452088 477104. 1650.88 1.57 0.155599 0.137807 21682 110474 -1 2394 21 1911 2966 220188 47262 3.77463 3.77463 -148.098 -3.77463 0 0 585099. 2024.56 0.16 0.11 0.10 -1 -1 0.16 0.0365356 0.0318073 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.38 vpr 62.15 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30596 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.5 MiB 0.11 800 8852 2481 5509 862 62.1 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.64 0.000579514 0.000539613 0.0317105 0.0295349 32 1672 20 6.64007e+06 238602 554710. 1919.41 0.78 0.0960878 0.0845963 22834 132086 -1 1514 21 1053 1801 110250 26011 2.54257 2.54257 -96.4201 -2.54257 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0241147 0.0210077 108 29 58 29 24 24 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.72 vpr 62.97 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30480 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1068 13316 3890 7652 1774 63.0 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.64 0.000770659 0.000715805 0.0558149 0.0517676 32 2326 21 6.64007e+06 276276 554710. 1919.41 0.88 0.146298 0.129498 22834 132086 -1 2017 21 1648 2871 181984 40905 2.89497 2.89497 -119.923 -2.89497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0315044 0.027501 147 63 64 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.66 vpr 62.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30236 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.2 MiB 0.17 964 16340 5208 8057 3075 62.8 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.63 0.000743354 0.000689953 0.0548368 0.0508881 34 2358 39 6.64007e+06 452088 585099. 2024.56 1.92 0.221119 0.192919 23122 138558 -1 1857 19 1329 2031 152578 34666 2.94817 2.94817 -116.958 -2.94817 0 0 742403. 2568.87 0.21 0.07 0.12 -1 -1 0.21 0.0282365 0.0247067 144 57 64 32 56 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.41 vpr 62.73 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30108 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.0 MiB 0.15 919 13487 3473 7992 2022 62.7 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.64 0.000675201 0.000627262 0.0440963 0.0409032 26 2137 22 6.64007e+06 389298 477104. 1650.88 0.78 0.129117 0.114143 21682 110474 -1 1871 18 1080 1737 126057 27332 2.24871 2.24871 -99.3708 -2.24871 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0253755 0.0222945 119 65 29 29 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.25 vpr 61.81 MiB 0.04 6652 -1 -1 1 0.03 -1 -1 30140 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63296 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.03 670 10835 3352 6011 1472 61.8 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.64 0.000508569 0.000473794 0.035256 0.0328355 32 1416 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0935044 0.0824858 22834 132086 -1 1287 20 611 946 71968 16043 1.88191 1.88191 -81.4038 -1.88191 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0201169 0.0174276 85 34 24 24 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.44 vpr 62.73 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.7 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.63 0.000662025 0.000615316 0.048875 0.0454405 32 2029 16 6.64007e+06 213486 554710. 1919.41 0.80 0.121788 0.108011 22834 132086 -1 1646 16 773 1135 78390 18880 3.47243 3.47243 -118.543 -3.47243 0 0 701300. 2426.64 0.19 0.05 0.12 -1 -1 0.19 0.0220441 0.0193532 113 64 31 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.63 vpr 62.93 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30216 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.4 MiB 0.09 885 17732 4998 9545 3189 62.9 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.65 0.000725514 0.000673601 0.0579985 0.0538142 32 2479 24 6.64007e+06 452088 554710. 1919.41 0.87 0.147005 0.130259 22834 132086 -1 2081 21 1750 2593 199818 46979 3.97923 3.97923 -143.012 -3.97923 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0301692 0.0263673 147 34 91 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.77 vpr 63.39 MiB 0.04 7132 -1 -1 1 0.04 -1 -1 30840 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.21 960 11288 2842 7087 1359 63.4 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.63 0.000845384 0.000785564 0.04286 0.039765 30 2640 22 6.64007e+06 477204 526063. 1820.29 0.91 0.143047 0.125515 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.20 0.08 0.14 -1 -1 0.20 0.0354752 0.0308318 150 124 0 0 125 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.24 vpr 61.77 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30520 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63248 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.63 0.000439838 0.000408942 0.0307856 0.0286255 28 1145 19 6.64007e+06 213486 500653. 1732.36 0.74 0.0820588 0.0724596 21970 115934 -1 967 19 642 945 56994 15211 2.12231 2.12231 -72.5879 -2.12231 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170694 0.0149113 77 30 26 26 22 22 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.59 vpr 62.85 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30076 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.2 MiB 0.10 990 12749 4130 6257 2362 62.8 MiB 0.13 0.00 4.45633 -140.507 -4.45633 4.45633 0.67 0.000691454 0.000643358 0.0491148 0.0457345 32 2561 21 6.64007e+06 276276 554710. 1919.41 0.89 0.131861 0.116928 22834 132086 -1 2064 19 1599 2771 182290 42264 3.83383 3.83383 -140.702 -3.83383 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0267335 0.0233777 138 3 122 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.30 vpr 61.88 MiB 0.02 6636 -1 -1 1 0.03 -1 -1 30564 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63368 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.05 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.63 0.000470605 0.000437815 0.0328069 0.0305017 28 1546 20 6.64007e+06 163254 500653. 1732.36 0.89 0.0877241 0.0775743 21970 115934 -1 1327 18 595 751 61018 14471 1.90111 1.90111 -83.0742 -1.90111 0 0 612192. 2118.31 0.17 0.04 0.10 -1 -1 0.17 0.0170371 0.014911 81 3 53 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.62 vpr 63.03 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.10 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.65 0.000738556 0.000686526 0.0504071 0.046727 32 2560 22 6.64007e+06 439530 554710. 1919.41 0.94 0.138704 0.122631 22834 132086 -1 2110 23 1975 3163 220921 51060 3.77763 3.77763 -140.866 -3.77763 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0322818 0.028112 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.79 vpr 62.74 MiB 0.05 6836 -1 -1 1 0.03 -1 -1 30280 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 23.9 MiB 0.09 1019 8796 1857 6524 415 62.7 MiB 0.11 0.00 3.60659 -123.354 -3.60659 3.60659 0.68 0.000697109 0.00064849 0.0302687 0.0279192 26 3249 33 6.64007e+06 464646 477104. 1650.88 2.12 0.127266 0.11105 21682 110474 -1 2352 21 1646 2647 212748 50416 2.98917 2.98917 -123.331 -2.98917 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0285418 0.0249149 152 3 124 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 3.61 vpr 63.16 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.5 MiB 0.10 1069 18901 5689 10576 2636 63.2 MiB 0.18 0.00 4.16036 -141.868 -4.16036 4.16036 0.65 0.000778214 0.000721261 0.065092 0.0603558 32 2736 22 6.64007e+06 464646 554710. 1919.41 0.86 0.14307 0.127528 22834 132086 -1 2230 22 1870 2980 198864 45462 3.74943 3.74943 -140.268 -3.74943 0 0 701300. 2426.64 0.19 0.09 0.08 -1 -1 0.19 0.0326697 0.028514 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.49 vpr 62.38 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30176 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.9 MiB 0.07 857 10572 2555 6423 1594 62.4 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.68 0.000619284 0.000575848 0.0398414 0.0370536 32 1869 19 6.64007e+06 200928 554710. 1919.41 0.84 0.111502 0.0985515 22834 132086 -1 1748 19 1022 1690 122468 27827 2.85797 2.85797 -110.414 -2.85797 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0303854 0.0265291 107 34 54 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.50 vpr 62.38 MiB 0.04 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63876 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.05 824 11806 3275 6761 1770 62.4 MiB 0.11 0.00 3.4951 -114.009 -3.4951 3.4951 0.63 0.00061495 0.000572089 0.0435388 0.0405159 32 1835 21 6.64007e+06 238602 554710. 1919.41 0.88 0.124794 0.109885 22834 132086 -1 1652 22 1274 1894 134685 30348 3.05317 3.05317 -114.65 -3.05317 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0262761 0.0228717 115 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.38 vpr 62.25 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30344 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63748 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 658 7132 1686 4570 876 62.3 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.64 0.000580304 0.000539058 0.0259747 0.0241387 32 1851 20 6.64007e+06 251160 554710. 1919.41 0.81 0.0959523 0.083993 22834 132086 -1 1598 19 1106 1844 115295 28057 2.89677 2.89677 -103.792 -2.89677 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0224452 0.0195602 107 34 56 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.50 vpr 62.68 MiB 0.03 6780 -1 -1 1 0.02 -1 -1 30508 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 24.0 MiB 0.07 802 15390 5648 7380 2362 62.7 MiB 0.14 0.00 3.5251 -121.985 -3.5251 3.5251 0.63 0.000611879 0.000568595 0.0550573 0.0511471 32 2003 23 6.64007e+06 226044 554710. 1919.41 0.83 0.12968 0.115178 22834 132086 -1 1819 24 1658 2643 190883 43645 3.16717 3.16717 -124.476 -3.16717 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0283485 0.0246472 125 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.40 vpr 62.66 MiB 0.03 6836 -1 -1 1 0.03 -1 -1 30260 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.64 0.000563076 0.000523775 0.0305503 0.028373 28 2025 20 6.64007e+06 389298 500653. 1732.36 0.89 0.103193 0.0906019 21970 115934 -1 1816 18 1196 2011 129020 30030 2.78577 2.78577 -113.339 -2.78577 0 0 612192. 2118.31 0.16 0.04 0.07 -1 -1 0.16 0.0127998 0.011364 119 34 61 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.38 vpr 62.62 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30228 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.08 877 15824 4460 9332 2032 62.6 MiB 0.13 0.00 2.80466 -91.9047 -2.80466 2.80466 0.63 0.000626684 0.000581866 0.0501112 0.0464827 26 2073 22 6.64007e+06 389298 477104. 1650.88 0.82 0.123948 0.109521 21682 110474 -1 1837 21 1137 1801 136044 29396 2.24571 2.24571 -93.806 -2.24571 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0258751 0.0225273 110 61 29 29 57 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.57 vpr 63.00 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30412 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.7 MiB 0.17 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.63 0.000829408 0.000770382 0.0631875 0.0586163 28 3347 24 6.64007e+06 514878 500653. 1732.36 1.80 0.167466 0.148182 21970 115934 -1 2788 20 1833 3123 251482 51823 3.78863 3.78863 -146.904 -3.78863 0 0 612192. 2118.31 0.17 0.10 0.11 -1 -1 0.17 0.032658 0.0285599 181 29 128 32 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.39 vpr 63.21 MiB 0.03 7012 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.68 0.000782207 0.000720146 0.0432372 0.0401145 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.85 0.134641 0.118638 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0292772 0.0256438 154 65 62 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.49 vpr 62.80 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30404 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.20 803 9407 2189 6388 830 62.8 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.63 0.000688313 0.000639344 0.0332064 0.0308694 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.78 0.110984 0.0971906 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.18 0.06 0.10 -1 -1 0.18 0.024241 0.0211499 114 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.59 vpr 63.04 MiB 0.02 7152 -1 -1 1 0.03 -1 -1 30404 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1052 11799 3060 6831 1908 63.0 MiB 0.12 0.00 3.64847 -119.816 -3.64847 3.64847 0.65 0.000748906 0.000695833 0.0485682 0.0451458 32 2372 21 6.64007e+06 301392 554710. 1919.41 0.85 0.137505 0.121475 22834 132086 -1 2152 22 1630 2766 200395 43135 2.95497 2.95497 -115.859 -2.95497 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0318861 0.0278132 149 64 60 30 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.72 vpr 63.07 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30568 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.30 953 7835 1760 5704 371 63.1 MiB 0.10 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.00083531 0.00077671 0.0375823 0.0349464 32 2549 24 6.64007e+06 288834 554710. 1919.41 0.88 0.138421 0.121042 22834 132086 -1 2131 20 1265 2184 169313 37652 3.92448 3.92448 -137.591 -3.92448 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0328164 0.0285762 150 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.71 vpr 63.10 MiB 0.03 7280 -1 -1 1 0.03 -1 -1 30364 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.4 MiB 0.14 955 10859 3044 7047 768 63.1 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.60 0.000775991 0.00072066 0.0473001 0.0439536 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.81 0.138565 0.122326 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0273593 0.0240681 144 90 31 31 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.62 vpr 62.91 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30360 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.2 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.63 0.000749334 0.000695992 0.0552679 0.0511571 26 2560 22 6.64007e+06 439530 477104. 1650.88 0.87 0.144642 0.127847 21682 110474 -1 2192 17 1506 2552 161287 36406 2.88517 2.88517 -115.985 -2.88517 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0262977 0.0230402 148 64 60 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.63 vpr 63.08 MiB 0.04 7020 -1 -1 1 0.04 -1 -1 30920 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.63 0.000765917 0.000710766 0.0367901 0.0341209 32 2829 21 6.64007e+06 464646 554710. 1919.41 0.92 0.124704 0.109783 22834 132086 -1 2047 21 1912 2990 184288 44236 3.83663 3.83663 -143.573 -3.83663 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0311987 0.0272495 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 3.81 vpr 63.03 MiB 0.03 7284 -1 -1 1 0.05 -1 -1 30632 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1205 17356 4219 10649 2488 63.0 MiB 0.21 0.00 4.21478 -145.938 -4.21478 4.21478 0.64 0.000930411 0.000865548 0.0711812 0.0658242 32 2779 22 6.64007e+06 527436 554710. 1919.41 0.89 0.180042 0.159148 22834 132086 -1 2473 21 1994 3105 215922 46353 3.69883 3.69883 -141.768 -3.69883 0 0 701300. 2426.64 0.20 0.11 0.12 -1 -1 0.20 0.0446948 0.0392437 186 96 62 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.50 vpr 62.66 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30640 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.7 MiB 0.07 0.00 3.7665 -117.146 -3.7665 3.7665 0.69 0.000286358 0.000263769 0.0238656 0.0220173 32 1931 27 6.64007e+06 226044 554710. 1919.41 0.83 0.104369 0.090779 22834 132086 -1 1477 19 1272 1994 124192 30557 3.17137 3.17137 -113.403 -3.17137 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0253339 0.0222428 116 34 62 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.57 vpr 63.09 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30460 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.10 910 7386 1527 5477 382 63.1 MiB 0.09 0.00 4.20356 -136.322 -4.20356 4.20356 0.63 0.000763323 0.000708838 0.0265754 0.0246692 32 2713 25 6.64007e+06 477204 554710. 1919.41 0.94 0.120099 0.104933 22834 132086 -1 2059 21 1727 2677 163665 39572 3.75443 3.75443 -140.956 -3.75443 0 0 701300. 2426.64 0.22 0.08 0.12 -1 -1 0.22 0.0310919 0.0271511 152 64 62 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.52 vpr 63.15 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30580 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.3 MiB 0.13 994 14048 3500 8468 2080 63.1 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.64 0.000755328 0.000701354 0.0499884 0.046411 32 2435 23 6.64007e+06 426972 554710. 1919.41 0.78 0.128398 0.113773 22834 132086 -1 1988 20 1561 2703 161852 38060 2.87477 2.87477 -111.216 -2.87477 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0300424 0.0262219 149 63 62 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.77 vpr 62.80 MiB 0.08 6964 -1 -1 1 0.03 -1 -1 30340 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.8 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.67 0.000708092 0.000658265 0.0587861 0.0546481 32 2624 22 6.64007e+06 276276 554710. 1919.41 0.91 0.144924 0.128805 22834 132086 -1 2280 22 1962 3452 237199 51269 3.51823 3.51823 -140.15 -3.51823 0 0 701300. 2426.64 0.19 0.09 0.13 -1 -1 0.19 0.0303339 0.0265041 151 3 128 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.71 vpr 63.12 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30404 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1044 15603 4218 9336 2049 63.1 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.65 0.00079638 0.00073909 0.0566774 0.0525784 32 2394 19 6.64007e+06 439530 554710. 1919.41 0.89 0.146532 0.129754 22834 132086 -1 2155 20 1417 2140 146036 32428 2.75357 2.75357 -116.259 -2.75357 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0307139 0.0267276 146 96 25 25 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.13 vpr 63.18 MiB 0.02 6944 -1 -1 1 0.04 -1 -1 30304 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.18 1017 12791 3286 8285 1220 63.2 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.63 0.000767519 0.000713288 0.0442653 0.041 26 2568 45 6.64007e+06 464646 477104. 1650.88 1.45 0.163008 0.142866 21682 110474 -1 2041 18 1085 1861 116887 27939 3.01517 3.01517 -119.008 -3.01517 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0278299 0.0243714 148 61 64 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.80 vpr 63.08 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30504 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.75 0.000597611 0.000546728 0.0584572 0.0538865 32 2414 19 6.64007e+06 489762 554710. 1919.41 0.91 0.157983 0.139518 22834 132086 -1 2030 19 1627 2567 155424 34286 2.92977 2.92977 -118.103 -2.92977 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0294464 0.025815 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.65 vpr 62.77 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1032 14906 4320 9186 1400 62.8 MiB 0.19 0.00 4.18856 -144.112 -4.18856 4.18856 0.65 0.000743603 0.000691214 0.0630334 0.058403 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.87 0.149447 0.132686 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.18 0.07 0.12 -1 -1 0.18 0.0290211 0.025396 152 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.44 vpr 62.96 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30804 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.2 MiB 0.14 1016 12153 3010 8355 788 63.0 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.67 0.000767544 0.00071225 0.0419196 0.0388259 26 2842 35 6.64007e+06 489762 477104. 1650.88 1.58 0.151455 0.132609 21682 110474 -1 2351 23 1965 3168 258496 55718 4.00703 4.00703 -153.109 -4.00703 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.032679 0.0284541 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.16 vpr 63.34 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30496 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.21 1141 13095 3356 8753 986 63.3 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.65 0.000823597 0.000764662 0.0501666 0.0465596 28 3011 22 6.64007e+06 452088 500653. 1732.36 1.29 0.153533 0.135155 21970 115934 -1 2441 19 1347 2389 166478 37353 3.63142 3.63142 -132.908 -3.63142 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0306034 0.0266151 147 122 0 0 122 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.68 vpr 63.04 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.0 MiB 0.17 0.00 4.34993 -137.194 -4.34993 4.34993 0.65 0.000808182 0.000750404 0.0722198 0.0671163 32 2657 20 6.64007e+06 276276 554710. 1919.41 0.88 0.1671 0.14872 22834 132086 -1 2343 20 1753 3189 207209 46843 3.53723 3.53723 -138.101 -3.53723 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0313887 0.0273473 151 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.45 vpr 62.77 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30592 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.1 MiB 0.07 928 8735 1852 5986 897 62.8 MiB 0.09 0.00 3.50687 -122.364 -3.50687 3.50687 0.65 0.000641009 0.00059443 0.0290733 0.0270114 28 2197 22 6.64007e+06 389298 500653. 1732.36 0.88 0.107981 0.0947505 21970 115934 -1 1974 21 1245 2029 149817 32809 2.81757 2.81757 -118.189 -2.81757 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0260214 0.0226763 125 34 63 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.54 vpr 62.83 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30492 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.18 885 10406 2864 6861 681 62.8 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.64 0.000713908 0.00066341 0.0442174 0.0411126 26 2358 26 6.64007e+06 226044 477104. 1650.88 0.88 0.134775 0.11876 21682 110474 -1 1927 19 1289 2091 156950 34653 2.95817 2.95817 -120.516 -2.95817 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0265461 0.0231568 121 94 0 0 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.98 vpr 63.09 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30728 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1352 17606 4821 10688 2097 63.1 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.66 0.00114974 0.00105947 0.0671496 0.0622668 32 3451 24 6.64007e+06 527436 554710. 1919.41 1.01 0.181008 0.159999 22834 132086 -1 2773 25 2794 4611 301436 68682 4.71148 4.71148 -173.943 -4.71148 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.041696 0.0362943 189 65 96 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.62 vpr 63.14 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30472 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.5 MiB 0.15 1055 17857 5354 10411 2092 63.1 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.67 0.000736211 0.000681833 0.0619367 0.0573078 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.83 0.138497 0.1235 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0278644 0.0244341 148 34 92 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.63 vpr 62.66 MiB 0.03 6776 -1 -1 1 0.05 -1 -1 30392 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 23.9 MiB 0.08 853 17523 5443 9889 2191 62.7 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.67 0.000617041 0.000573917 0.0540711 0.0501917 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.79 0.128338 0.11395 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.18 0.06 0.12 -1 -1 0.18 0.0259534 0.0225771 116 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.02 vpr 63.23 MiB 0.05 7236 -1 -1 1 0.04 -1 -1 31060 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1192 13629 3357 8864 1408 63.2 MiB 0.15 0.00 4.97469 -167.233 -4.97469 4.97469 0.64 0.000749041 0.000687645 0.0457609 0.0419029 32 2825 26 6.64007e+06 565110 554710. 1919.41 0.97 0.140448 0.123463 22834 132086 -1 2520 19 2221 3364 236931 51052 4.66249 4.66249 -167.914 -4.66249 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0430907 0.0382662 188 127 32 32 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.57 vpr 62.96 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30496 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1027 16762 4357 10483 1922 63.0 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.64 0.000744244 0.000691356 0.0561498 0.0520468 28 2563 23 6.64007e+06 477204 500653. 1732.36 0.88 0.145637 0.128935 21970 115934 -1 2190 18 1638 2336 148667 35003 3.78563 3.78563 -146.904 -3.78563 0 0 612192. 2118.31 0.17 0.08 0.07 -1 -1 0.17 0.0273898 0.0240398 153 34 96 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.37 vpr 62.43 MiB 0.05 6732 -1 -1 1 0.03 -1 -1 30456 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 23.9 MiB 0.08 882 11046 2802 6952 1292 62.4 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.66 0.000622511 0.000579542 0.0328011 0.0303732 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.77 0.10487 0.0921965 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.21 0.03 0.12 -1 -1 0.21 0.0133288 0.0118575 124 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.10 vpr 62.99 MiB 0.07 7144 -1 -1 1 0.04 -1 -1 30820 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.6 MiB 0.13 1334 20347 5362 13158 1827 63.0 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.65 0.000853648 0.000793136 0.0720922 0.0669924 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.15 0.183167 0.162815 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.12 -1 -1 0.20 0.0369691 0.0323422 190 34 128 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.58 vpr 62.29 MiB 0.07 6792 -1 -1 1 0.03 -1 -1 30344 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.8 MiB 0.09 623 13731 4925 6406 2400 62.3 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.65 0.000612175 0.000569632 0.0501907 0.0467109 32 2131 28 6.64007e+06 213486 554710. 1919.41 0.85 0.129947 0.115061 22834 132086 -1 1574 21 1421 2211 152899 38828 3.12337 3.12337 -121.185 -3.12337 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.025148 0.0219274 121 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.47 vpr 62.39 MiB 0.02 6960 -1 -1 1 0.02 -1 -1 30264 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 23.8 MiB 0.12 855 13939 4099 8667 1173 62.4 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.68 0.000617153 0.000574394 0.0427663 0.0397175 28 1888 22 6.64007e+06 401856 500653. 1732.36 0.84 0.11942 0.105586 21970 115934 -1 1648 20 1061 1675 103903 23626 2.67537 2.67537 -107.352 -2.67537 0 0 612192. 2118.31 0.17 0.06 0.07 -1 -1 0.17 0.0243286 0.0211553 114 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.72 vpr 62.89 MiB 0.05 7284 -1 -1 1 0.03 -1 -1 30348 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.2 MiB 0.17 1003 12839 3224 8329 1286 62.9 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.65 0.00074837 0.000695401 0.0470527 0.0436914 26 2529 22 6.64007e+06 426972 477104. 1650.88 0.86 0.124505 0.110345 21682 110474 -1 2071 20 1299 2285 152984 35357 3.26257 3.26257 -111.797 -3.26257 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0327536 0.0285784 134 88 29 29 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.68 vpr 63.05 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30604 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64564 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.4 MiB 0.13 937 11048 2797 7564 687 63.1 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.65 0.000770568 0.000715458 0.0477968 0.0444019 32 2378 24 6.64007e+06 276276 554710. 1919.41 0.93 0.143628 0.126722 22834 132086 -1 1913 20 1846 2737 184305 42609 3.70463 3.70463 -144.609 -3.70463 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0311277 0.0271736 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 3.99 vpr 62.91 MiB 0.05 6940 -1 -1 1 0.03 -1 -1 30604 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 1070 15876 4480 9346 2050 62.9 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.65 0.00077803 0.000722073 0.0584984 0.054275 32 2697 38 6.64007e+06 452088 554710. 1919.41 1.02 0.169838 0.149849 22834 132086 -1 2357 23 1964 3118 203984 45384 3.74343 3.74343 -146.156 -3.74343 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0408059 0.0354159 154 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.61 vpr 62.73 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30484 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.0 MiB 0.13 863 8856 1892 6516 448 62.7 MiB 0.09 0.00 3.4749 -121.747 -3.4749 3.4749 0.73 0.000523797 0.000479742 0.0263443 0.0241591 32 2048 21 6.64007e+06 401856 554710. 1919.41 0.87 0.106752 0.0930891 22834 132086 -1 1770 21 1312 1966 141543 31639 2.81757 2.81757 -118.495 -2.81757 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.027379 0.0238337 122 65 32 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.55 vpr 62.72 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.18 821 8336 2395 4162 1779 62.7 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.66 0.000676986 0.000628888 0.0351132 0.0326137 32 1980 18 6.64007e+06 213486 554710. 1919.41 0.84 0.112517 0.0988879 22834 132086 -1 1698 20 1021 1924 118875 28006 2.81257 2.81257 -111.355 -2.81257 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0267366 0.0232606 109 90 0 0 89 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.95 vpr 62.90 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30452 -1 -1 35 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 985 17635 4923 10695 2017 62.9 MiB 0.17 0.00 3.4529 -110.073 -3.4529 3.4529 0.63 0.000731009 0.000679685 0.0603311 0.0560557 26 2781 31 6.64007e+06 439530 477104. 1650.88 1.16 0.156345 0.138282 21682 110474 -1 2209 19 1288 2084 156039 35007 3.32077 3.32077 -114.565 -3.32077 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0272597 0.0238228 139 60 60 30 57 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.95 vpr 62.59 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30404 -1 -1 32 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.0 MiB 0.09 939 14996 4215 8524 2257 62.6 MiB 0.15 0.00 4.39198 -124.88 -4.39198 4.39198 0.63 0.000671121 0.000624858 0.0557517 0.0517479 26 2459 28 6.64007e+06 401856 477104. 1650.88 1.30 0.145199 0.128587 21682 110474 -1 2067 21 1446 2305 167074 36170 3.49342 3.49342 -124.283 -3.49342 0 0 585099. 2024.56 0.16 0.08 0.10 -1 -1 0.16 0.0280153 0.0244488 134 34 84 28 28 28 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.56 vpr 62.64 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30160 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.16 846 13731 4520 7348 1863 62.6 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.63 0.000646424 0.000600523 0.0531668 0.0493664 32 1980 19 6.64007e+06 238602 554710. 1919.41 0.84 0.125645 0.111563 22834 132086 -1 1833 19 1281 2117 166359 34749 2.79857 2.79857 -112.22 -2.79857 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.024408 0.02127 114 63 30 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.41 vpr 62.66 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30296 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.0 MiB 0.18 892 11281 2807 6986 1488 62.7 MiB 0.09 0.00 3.6865 -117.315 -3.6865 3.6865 0.66 0.000704124 0.000654464 0.0352036 0.0326278 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.78 0.115932 0.101943 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0259568 0.0226832 114 91 0 0 91 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.65 vpr 62.98 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30196 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.63 0.000692597 0.000643647 0.0598423 0.0555476 32 2557 23 6.64007e+06 464646 554710. 1919.41 0.86 0.143978 0.127856 22834 132086 -1 2240 22 1758 2905 201607 43266 3.79083 3.79083 -138.426 -3.79083 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.029593 0.0258547 152 4 124 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.05 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30756 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.2 MiB 0.18 0.00 4.17032 -143.358 -4.17032 4.17032 0.68 0.000778162 0.000722385 0.0652289 0.060448 32 2589 21 6.64007e+06 452088 554710. 1919.41 0.99 0.166826 0.147689 22834 132086 -1 2194 20 1794 3027 196961 43307 3.60543 3.60543 -140.13 -3.60543 0 0 701300. 2426.64 0.19 0.09 0.15 -1 -1 0.19 0.0302731 0.0264379 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.63 vpr 63.15 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.2 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.63 0.000774015 0.000718395 0.0561187 0.0520202 32 2670 22 6.64007e+06 452088 554710. 1919.41 0.90 0.149258 0.13207 22834 132086 -1 2302 21 1837 3000 195990 44276 3.51102 3.51102 -141.251 -3.51102 0 0 701300. 2426.64 0.19 0.09 0.09 -1 -1 0.19 0.0318266 0.0277727 153 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.74 vpr 62.99 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30432 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.3 MiB 0.13 963 9146 1745 6045 1356 63.0 MiB 0.09 0.00 4.17056 -135.219 -4.17056 4.17056 0.64 0.000767842 0.000712195 0.0323649 0.0300307 30 3028 24 6.64007e+06 477204 526063. 1820.29 1.07 0.126742 0.111113 22546 126617 -1 2028 23 1431 2380 136097 32965 3.75963 3.75963 -135.899 -3.75963 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0333563 0.0291114 149 65 60 30 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.47 vpr 62.51 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 840 12856 4254 6466 2136 62.5 MiB 0.12 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.000615101 0.000571826 0.0475663 0.0442057 32 2099 22 6.64007e+06 238602 554710. 1919.41 0.82 0.12201 0.10804 22834 132086 -1 1829 20 1172 1889 131683 29255 2.80657 2.80657 -112.754 -2.80657 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0243759 0.0212663 113 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.80 vpr 62.90 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30412 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.1 MiB 0.15 996 13127 3599 7422 2106 62.9 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.66 0.000742573 0.000689672 0.0539589 0.0501115 26 2579 31 6.64007e+06 301392 477104. 1650.88 1.09 0.152751 0.134862 21682 110474 -1 2334 19 1796 2622 198891 44787 3.99103 3.99103 -143.687 -3.99103 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0282203 0.0247192 146 63 60 30 60 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.65 vpr 62.90 MiB 0.05 7216 -1 -1 1 0.05 -1 -1 30892 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1061 10232 2187 7405 640 62.9 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.64 0.000853651 0.000792068 0.0386711 0.0358428 26 3037 26 6.64007e+06 514878 477104. 1650.88 1.80 0.151419 0.132609 21682 110474 -1 2509 21 1963 3341 242639 52518 3.75743 3.75743 -148.153 -3.75743 0 0 585099. 2024.56 0.16 0.10 0.10 -1 -1 0.16 0.0340566 0.0294936 156 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.74 vpr 63.16 MiB 0.04 7164 -1 -1 1 0.03 -1 -1 30424 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.12 924 14769 3776 9247 1746 63.2 MiB 0.15 0.00 4.18868 -135.93 -4.18868 4.18868 0.63 0.000808375 0.00074977 0.056086 0.05202 32 2392 24 6.64007e+06 414414 554710. 1919.41 1.02 0.146397 0.130052 22834 132086 -1 2012 21 1598 2593 166572 39257 3.87983 3.87983 -137.068 -3.87983 0 0 701300. 2426.64 0.19 0.08 0.13 -1 -1 0.19 0.0322025 0.0281177 148 94 31 31 93 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.65 vpr 63.08 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30472 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.4 MiB 0.17 973 15004 4033 8498 2473 63.1 MiB 0.19 0.00 3.6693 -113.052 -3.6693 3.6693 0.66 0.000902613 0.000830107 0.066143 0.0609115 32 2183 19 6.64007e+06 401856 554710. 1919.41 0.88 0.15026 0.133376 22834 132086 -1 1932 19 1262 1989 126618 29154 2.95897 2.95897 -111.901 -2.95897 0 0 701300. 2426.64 0.19 0.07 0.08 -1 -1 0.19 0.0291805 0.025582 138 92 26 26 90 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.90 vpr 63.02 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30708 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.3 MiB 0.26 1125 9725 2385 6614 726 63.0 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.64 0.00061603 0.000562602 0.0406824 0.0376346 30 2849 27 6.64007e+06 276276 526063. 1820.29 0.96 0.141329 0.124128 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.19 0.10 0.12 -1 -1 0.19 0.035455 0.030982 155 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.80 vpr 62.78 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30308 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.2 MiB 0.14 964 18079 5189 10710 2180 62.8 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.64 0.000818081 0.000764168 0.0615371 0.0568908 32 2101 19 6.64007e+06 452088 554710. 1919.41 0.96 0.153241 0.135526 22834 132086 -1 1883 20 1524 2476 156946 35882 2.77777 2.77777 -104.196 -2.77777 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0252811 0.0223443 136 88 26 26 85 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.65 vpr 62.30 MiB 0.04 6792 -1 -1 1 0.35 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63800 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 23.9 MiB 0.04 799 9356 2113 6168 1075 62.3 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.63 0.000614909 0.000572495 0.0348496 0.0324662 32 1948 20 6.64007e+06 213486 554710. 1919.41 0.79 0.10577 0.0932244 22834 132086 -1 1750 19 1232 1899 126310 28603 2.77657 2.77657 -118.657 -2.77657 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0235451 0.0205916 115 3 96 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.96 vpr 63.06 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30572 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.25 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.64 0.000779233 0.000722929 0.0600044 0.055631 28 2813 26 6.64007e+06 439530 500653. 1732.36 1.12 0.158203 0.140112 21970 115934 -1 2251 21 1739 2732 190047 43250 3.96783 3.96783 -151.999 -3.96783 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0315336 0.0275113 152 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.77 vpr 63.05 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1054 17367 5167 10302 1898 63.1 MiB 0.10 0.00 4.21976 -145.962 -4.21976 4.21976 0.70 0.000343248 0.00031599 0.0333551 0.0307199 32 2466 19 6.64007e+06 288834 554710. 1919.41 0.86 0.123921 0.10848 22834 132086 -1 2099 24 1954 3202 220211 52156 3.73283 3.73283 -145.571 -3.73283 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0352269 0.0306761 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 3.93 vpr 62.50 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30396 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 23.8 MiB 0.15 691 7975 1531 6145 299 62.5 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.65 0.000551682 0.00050898 0.0247783 0.0228674 26 2376 30 6.64007e+06 376740 477104. 1650.88 1.43 0.107754 0.0942095 21682 110474 -1 1799 21 931 1589 135156 31641 3.04137 3.04137 -113.414 -3.04137 0 0 585099. 2024.56 0.16 0.04 0.06 -1 -1 0.16 0.0140691 0.0124427 112 55 32 32 54 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.52 vpr 62.27 MiB 0.05 6848 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 653 13381 4684 6039 2658 62.3 MiB 0.13 0.00 3.5533 -116.629 -3.5533 3.5533 0.63 0.000612246 0.000569386 0.0501599 0.0466494 32 1990 24 6.64007e+06 226044 554710. 1919.41 0.83 0.123736 0.109539 22834 132086 -1 1552 22 1482 2306 159992 38871 3.12257 3.12257 -114.217 -3.12257 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.0261753 0.0227956 118 4 93 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.77 vpr 62.85 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30500 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 927 16303 4785 8793 2725 62.8 MiB 0.16 0.00 4.16476 -135.871 -4.16476 4.16476 0.64 0.000765219 0.000710821 0.0577329 0.0535618 32 2289 21 6.64007e+06 414414 554710. 1919.41 0.84 0.144242 0.127709 22834 132086 -1 1962 21 1526 2229 163809 36851 3.63083 3.63083 -130.968 -3.63083 0 0 701300. 2426.64 0.28 0.05 0.13 -1 -1 0.28 0.0187321 0.0167692 139 59 60 32 58 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.20 MiB 0.02 7112 -1 -1 1 0.03 -1 -1 30336 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.5 MiB 0.11 1051 17397 5163 9750 2484 63.2 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.63 0.000874693 0.00081956 0.0653336 0.0605845 26 2942 23 6.64007e+06 401856 477104. 1650.88 1.37 0.161089 0.14288 21682 110474 -1 2421 24 1751 2823 219825 47629 4.07122 4.07122 -137.457 -4.07122 0 0 585099. 2024.56 0.20 0.10 0.11 -1 -1 0.20 0.0351537 0.0305773 136 88 28 28 88 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 3.84 vpr 62.85 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30584 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1159 10441 2545 7247 649 62.8 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.71 0.000792931 0.000736999 0.0382021 0.0354709 32 3157 23 6.64007e+06 464646 554710. 1919.41 1.04 0.136474 0.120295 22834 132086 -1 2694 22 2236 3465 258000 58733 4.57049 4.57049 -165.739 -4.57049 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0350806 0.0307806 179 3 156 32 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.12 vpr 62.81 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30524 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.2 MiB 0.15 813 9732 2096 6039 1597 62.8 MiB 0.08 0.00 3.7815 -111.41 -3.7815 3.7815 0.63 0.000715746 0.000664134 0.0343126 0.0318428 28 2429 27 6.64007e+06 426972 500653. 1732.36 1.48 0.130716 0.114564 21970 115934 -1 1829 16 1219 1940 129190 32839 3.22357 3.22357 -115.42 -3.22357 0 0 612192. 2118.31 0.17 0.06 0.11 -1 -1 0.17 0.0246781 0.0217498 138 59 60 30 56 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.47 vpr 62.21 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.64 0.000439955 0.000403615 0.0404621 0.0373668 32 1668 31 6.64007e+06 263718 554710. 1919.41 0.91 0.115974 0.101693 22834 132086 -1 1283 22 1233 1718 140097 33637 3.01217 3.01217 -100.001 -3.01217 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0241623 0.0209504 107 34 54 27 27 27 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.32 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1462 20856 5895 12562 2399 63.3 MiB 0.23 0.00 4.52196 -148.077 -4.52196 4.52196 0.64 0.000911176 0.000845836 0.0772459 0.0714878 30 3394 22 6.64007e+06 527436 526063. 1820.29 1.03 0.18576 0.164578 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.18 0.10 0.11 -1 -1 0.18 0.0366714 0.0319264 186 95 62 31 95 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.84 vpr 63.11 MiB 0.05 7136 -1 -1 1 0.03 -1 -1 30536 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.23 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.64 0.00082973 0.00077044 0.060554 0.0562332 32 2535 22 6.64007e+06 276276 554710. 1919.41 0.91 0.157879 0.139453 22834 132086 -1 2164 23 1704 2834 207148 46985 3.90803 3.90803 -142.039 -3.90803 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035985 0.0312398 145 124 0 0 124 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.59 vpr 62.72 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30380 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.1 MiB 0.22 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.66 0.000696569 0.000647021 0.0501565 0.0465973 32 1930 19 6.64007e+06 200928 554710. 1919.41 0.83 0.132349 0.117476 22834 132086 -1 1766 17 866 1435 105106 23689 2.68397 2.68397 -111.92 -2.68397 0 0 701300. 2426.64 0.19 0.06 0.15 -1 -1 0.19 0.0237604 0.020748 108 89 0 0 89 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 4.17 vpr 62.86 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30460 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.2 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.65 0.000728743 0.000677377 0.0644208 0.0598041 28 3262 26 6.64007e+06 414414 500653. 1732.36 1.44 0.158692 0.140857 21970 115934 -1 2289 22 1533 2367 185651 40701 3.82863 3.82863 -139.017 -3.82863 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0309427 0.0269668 147 34 90 30 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.69 vpr 62.98 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30752 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.12 1135 20076 5790 11566 2720 63.0 MiB 0.20 0.00 4.51716 -144.659 -4.51716 4.51716 0.65 0.000987666 0.000911618 0.0748152 0.0694554 32 2682 21 6.64007e+06 477204 554710. 1919.41 0.89 0.179385 0.158802 22834 132086 -1 2345 21 1959 3025 199966 45675 3.76363 3.76363 -141.716 -3.76363 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0342205 0.0297936 173 64 87 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.21 vpr 62.93 MiB 0.04 7132 -1 -1 1 0.03 -1 -1 30400 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.07 923 11484 2608 8162 714 62.9 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.67 0.00072196 0.000670654 0.0402824 0.0373785 26 3004 29 6.64007e+06 426972 477104. 1650.88 1.62 0.129164 0.113641 21682 110474 -1 2178 23 1626 2810 207598 58583 3.20956 3.20956 -113.499 -3.20956 0 0 585099. 2024.56 0.16 0.09 0.10 -1 -1 0.16 0.0315296 0.0274364 135 61 58 30 58 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.81 vpr 62.67 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30516 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1008 13516 3637 9135 744 62.7 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.65 0.000781943 0.000725876 0.0450655 0.041736 28 2725 41 6.64007e+06 539994 500653. 1732.36 1.10 0.160164 0.140458 21970 115934 -1 2180 23 1991 3355 215719 50623 4.06023 4.06023 -151.409 -4.06023 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0340321 0.0296331 158 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.29 vpr 62.99 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30496 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.3 MiB 0.14 988 17184 5218 8807 3159 63.0 MiB 0.18 0.00 3.62559 -123.648 -3.62559 3.62559 0.69 0.000781233 0.000724812 0.0666394 0.0618203 28 2973 24 6.64007e+06 502320 500653. 1732.36 1.32 0.16354 0.144196 21970 115934 -1 2384 28 1835 3069 283651 69499 2.85477 2.85477 -118.877 -2.85477 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.0385387 0.0334723 157 65 63 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.50 vpr 62.46 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63964 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.5 MiB 0.07 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000456864 0.00041738 0.0472114 0.0436413 28 1653 18 6.64007e+06 226044 500653. 1732.36 0.95 0.102083 0.0907808 21970 115934 -1 1340 20 951 1382 103480 24834 2.76877 2.76877 -101.536 -2.76877 0 0 612192. 2118.31 0.17 0.06 0.10 -1 -1 0.17 0.023585 0.0204936 95 34 58 29 29 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.47 vpr 62.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30084 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.8 MiB 0.16 857 11783 4174 5528 2081 62.7 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.63 0.000771003 0.000724295 0.0463133 0.0430175 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.82 0.121351 0.107278 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0207409 0.0182056 112 82 0 0 82 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.78 vpr 62.84 MiB 0.02 7016 -1 -1 1 0.05 -1 -1 30432 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1100 13261 3564 8068 1629 62.8 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.65 0.000728323 0.000676865 0.0446827 0.041501 28 2902 24 6.64007e+06 477204 500653. 1732.36 1.01 0.134972 0.119033 21970 115934 -1 2347 21 1741 2957 217722 47682 4.15823 4.15823 -146.533 -4.15823 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0298906 0.0261146 151 34 93 31 31 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.69 vpr 62.64 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30372 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.9 MiB 0.17 620 10442 2502 7352 588 62.6 MiB 0.09 0.00 3.6803 -100.526 -3.6803 3.6803 0.65 0.000602596 0.00056042 0.0324745 0.0301407 26 1894 33 6.64007e+06 389298 477104. 1650.88 1.11 0.115906 0.101214 21682 110474 -1 1565 19 1094 1826 124281 30136 3.00217 3.00217 -104.425 -3.00217 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0225636 0.0195846 108 56 29 29 52 26 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.62 vpr 62.75 MiB 0.02 6772 -1 -1 1 0.05 -1 -1 30300 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.14 691 13906 4599 7385 1922 62.8 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.66 0.000646162 0.000600867 0.0536383 0.0499105 32 2039 20 6.64007e+06 213486 554710. 1919.41 0.86 0.131636 0.116643 22834 132086 -1 1713 21 1506 2361 165680 38086 2.94997 2.94997 -120.716 -2.94997 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0264044 0.0230142 118 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 4.84 vpr 62.97 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.12 999 13261 3446 8635 1180 63.0 MiB 0.13 0.00 3.5665 -119.865 -3.5665 3.5665 0.67 0.000753069 0.000700131 0.0460652 0.0427129 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.82 0.132461 0.116739 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0281434 0.0246253 144 64 58 31 62 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.51 vpr 62.57 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30344 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 869 9368 2508 6076 784 62.6 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.64 0.000628762 0.000585022 0.0368969 0.0343516 32 1935 19 6.64007e+06 213486 554710. 1919.41 0.81 0.111414 0.0982209 22834 132086 -1 1719 17 952 1622 113176 24724 2.74877 2.74877 -108.146 -2.74877 0 0 701300. 2426.64 0.20 0.06 0.15 -1 -1 0.20 0.0236052 0.0205975 106 55 31 31 53 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 3.95 vpr 62.85 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.0 MiB 0.14 879 9865 2512 6573 780 62.8 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.70 0.000747709 0.000694802 0.0357745 0.0332191 28 2622 27 6.64007e+06 414414 500653. 1732.36 1.18 0.130126 0.114437 21970 115934 -1 2063 19 1195 1930 145176 33616 2.81577 2.81577 -115.32 -2.81577 0 0 612192. 2118.31 0.18 0.07 0.11 -1 -1 0.18 0.0291816 0.0255959 137 65 52 26 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 3.74 vpr 63.13 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30428 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.25 875 10540 2287 7686 567 63.1 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.64 0.000791213 0.000734819 0.0389231 0.0361057 30 2033 25 6.64007e+06 464646 526063. 1820.29 0.89 0.137661 0.120894 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0298256 0.0260566 149 93 31 31 92 31 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.57 vpr 62.71 MiB 0.04 6920 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.0 MiB 0.15 816 8626 2345 5890 391 62.7 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.64 0.000663626 0.000616966 0.0346069 0.0321608 32 2043 18 6.64007e+06 226044 554710. 1919.41 0.87 0.115809 0.101231 22834 132086 -1 1845 21 1249 2000 141324 31653 2.66557 2.66557 -108.527 -2.66557 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0291058 0.0254055 115 61 32 32 60 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.62 vpr 62.65 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30188 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.17 920 11296 3024 7326 946 62.7 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.66 0.000672425 0.000624742 0.045022 0.0418272 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.82 0.124642 0.110364 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.19 0.07 0.12 -1 -1 0.19 0.0273739 0.0238382 121 63 32 32 62 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.50 vpr 62.93 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30768 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1027 12240 2965 8371 904 62.9 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.63 0.000773013 0.000717401 0.0422635 0.0391933 32 2501 30 6.64007e+06 477204 554710. 1919.41 0.76 0.108207 0.0959152 22834 132086 -1 2171 23 1912 2837 202861 47065 3.85083 3.85083 -143.515 -3.85083 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333425 0.0290399 156 65 64 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.66 vpr 63.04 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30516 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.18 0.00 3.7925 -111.563 -3.7925 3.7925 0.64 0.000732658 0.000681636 0.063549 0.0589393 32 2199 23 6.64007e+06 426972 554710. 1919.41 0.83 0.1556 0.137191 22834 132086 -1 1981 19 1093 1758 104957 25144 2.95816 2.95816 -108.852 -2.95816 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0286238 0.0250386 135 62 56 29 58 29 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.85 vpr 62.89 MiB 0.02 7196 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 62.9 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000852686 0.000790953 0.0352488 0.0327114 32 2670 31 6.64007e+06 489762 554710. 1919.41 0.95 0.148463 0.129517 22834 132086 -1 2193 22 1887 2961 206683 48439 3.78263 3.78263 -144.873 -3.78263 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0353782 0.0306721 158 127 0 0 128 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.37 vpr 62.15 MiB 0.05 6740 -1 -1 1 0.03 -1 -1 30504 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 23.6 MiB 0.08 804 11948 3966 6404 1578 62.1 MiB 0.10 0.00 3.08296 -103.61 -3.08296 3.08296 0.65 0.000573544 0.000534111 0.0418632 0.0389878 32 1812 20 6.64007e+06 213486 554710. 1919.41 0.77 0.108873 0.0963511 22834 132086 -1 1658 21 936 1522 120337 26812 2.64977 2.64977 -103.007 -2.64977 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0236629 0.0205892 106 4 85 31 0 0 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.84 vpr 62.84 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30548 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.2 MiB 0.13 998 18111 4956 10747 2408 62.8 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.65 0.000775327 0.000719281 0.0645162 0.059778 26 2698 30 6.64007e+06 439530 477104. 1650.88 1.22 0.16459 0.145722 21682 110474 -1 2193 22 1711 2442 188382 41624 3.86503 3.86503 -141.25 -3.86503 0 0 585099. 2024.56 0.16 0.05 0.06 -1 -1 0.16 0.0179052 0.0158423 144 92 28 28 92 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.66 vpr 63.04 MiB 0.04 6944 -1 -1 1 0.04 -1 -1 30116 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.3 MiB 0.29 734 13381 4309 7077 1995 63.0 MiB 0.13 0.00 3.54047 -121.881 -3.54047 3.54047 0.64 0.000715267 0.000663699 0.0573444 0.0532458 28 2004 19 6.64007e+06 213486 500653. 1732.36 0.82 0.143448 0.127503 21970 115934 -1 1702 21 1319 1931 136314 31674 2.93317 2.93317 -118.594 -2.93317 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0294383 0.02566 114 96 0 0 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.63 vpr 62.95 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30316 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1102 9501 2041 6911 549 63.0 MiB 0.11 0.00 3.5841 -124.322 -3.5841 3.5841 0.65 0.000770066 0.000715436 0.0340486 0.0316187 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.86 0.134402 0.117752 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0283215 0.024894 151 65 61 32 64 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.13 vpr 63.33 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30936 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 24.9 MiB 0.22 1244 16489 4012 10933 1544 63.3 MiB 0.19 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.00092804 0.000862132 0.0701169 0.065029 26 3486 28 6.64007e+06 565110 477104. 1650.88 2.17 0.188052 0.165947 21682 110474 -1 2801 20 2309 3669 268544 57523 4.93289 4.93289 -177.122 -4.93289 0 0 585099. 2024.56 0.18 0.11 0.08 -1 -1 0.18 0.0361165 0.031558 188 96 64 32 96 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.31 vpr 62.08 MiB 0.03 6784 -1 -1 1 0.03 -1 -1 30148 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63568 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.08 483 10509 2545 7262 702 62.1 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.65 0.00052924 0.000492155 0.0358284 0.0333551 28 1397 23 6.64007e+06 188370 500653. 1732.36 0.77 0.10014 0.0880357 21970 115934 -1 1101 21 700 949 70065 18239 2.15451 2.15451 -81.4168 -2.15451 0 0 612192. 2118.31 0.17 0.05 0.11 -1 -1 0.17 0.0216446 0.0187493 83 56 0 0 53 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.17 MiB 0.03 6956 -1 -1 1 0.03 -1 -1 30372 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63660 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.5 MiB 0.08 793 10388 3558 5136 1694 62.2 MiB 0.07 0.00 3.6815 -114.291 -3.6815 3.6815 0.73 0.000616805 0.000573515 0.0283126 0.0262449 32 1615 19 6.64007e+06 213486 554710. 1919.41 0.78 0.100509 0.0881538 22834 132086 -1 1552 20 976 1458 122741 26899 2.79377 2.79377 -111.518 -2.79377 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0245803 0.0214329 97 34 60 30 30 30 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.66 vpr 62.61 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30044 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.9 MiB 0.11 798 13966 5020 6560 2386 62.6 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.64 0.000646211 0.000600452 0.0530012 0.0492348 32 2382 23 6.64007e+06 226044 554710. 1919.41 0.93 0.131792 0.116789 22834 132086 -1 2012 22 1558 2776 205096 46469 3.13717 3.13717 -121.476 -3.13717 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0274288 0.0238717 126 34 64 32 32 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.42 vpr 62.14 MiB 0.03 6916 -1 -1 1 0.03 -1 -1 30436 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.05 678 12127 3168 7672 1287 62.1 MiB 0.10 0.00 3.4089 -91.215 -3.4089 3.4089 0.63 0.000762538 0.000708997 0.0339782 0.0316566 26 1687 20 6.64007e+06 426972 477104. 1650.88 0.94 0.0971062 0.0853718 21682 110474 -1 1503 22 1109 1705 121476 27048 2.84297 2.84297 -92.6359 -2.84297 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0233551 0.0201962 103 34 50 25 25 25 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.77 vpr 62.98 MiB 0.05 7008 -1 -1 1 0.04 -1 -1 30548 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1064 14828 5337 7470 2021 63.0 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.64 0.000802022 0.000744616 0.0656436 0.0609464 32 2475 24 6.64007e+06 276276 554710. 1919.41 0.90 0.163639 0.14489 22834 132086 -1 2138 21 1584 2860 180041 40448 3.64943 3.64943 -135.607 -3.64943 0 0 701300. 2426.64 0.27 0.07 0.12 -1 -1 0.27 0.0268572 0.023701 149 94 32 32 94 32 -fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.45 vpr 63.04 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30364 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.4 MiB 0.17 786 10336 2273 7345 718 63.0 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.64 0.00101929 0.000933286 0.0378106 0.0349707 28 2510 49 6.64007e+06 489762 500653. 1732.36 1.71 0.165672 0.144622 21970 115934 -1 2001 20 1659 2542 175227 43871 3.38857 3.38857 -131.818 -3.38857 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0304777 0.0266013 148 94 29 29 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.78 vpr 62.67 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30620 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.5 MiB 0.21 984 7523 1506 5708 309 62.7 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.64 0.000809792 0.000752004 0.0300029 0.02782 32 3159 26 6.65987e+06 431052 554710. 1919.41 1.08 0.132418 0.11575 22834 132086 -1 2393 24 2181 3497 314439 71144 3.62831 3.62831 -137.513 -3.62831 0 0 701300. 2426.64 0.18 0.09 0.08 -1 -1 0.18 0.0304517 0.0265385 151 96 32 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.70 vpr 62.96 MiB 0.05 7108 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.2 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.08 0.00 4.33507 -129.747 -4.33507 4.33507 0.65 0.000344815 0.000317708 0.0257176 0.0237632 32 2540 23 6.65987e+06 266238 554710. 1919.41 0.82 0.117595 0.102598 22834 132086 -1 2229 21 1810 2983 230738 52421 3.74791 3.74791 -132.865 -3.74791 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0312099 0.027203 140 91 30 30 89 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.73 vpr 62.88 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30404 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.63 0.000743191 0.000689694 0.0571518 0.0530765 28 2534 22 6.65987e+06 431052 500653. 1732.36 1.05 0.145688 0.129103 21970 115934 -1 2229 23 1555 2594 226838 48017 3.07945 3.07945 -122.96 -3.07945 0 0 612192. 2118.31 0.19 0.09 0.11 -1 -1 0.19 0.0324746 0.0282694 141 65 54 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.40 vpr 62.63 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30444 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.11 793 11603 2857 6819 1927 62.6 MiB 0.07 0.00 4.2977 -123.649 -4.2977 4.2977 0.71 0.000696309 0.000647326 0.0241568 0.022322 34 2278 23 6.65987e+06 278916 585099. 2024.56 1.67 0.154266 0.133557 23122 138558 -1 1874 23 1766 3075 212229 53283 3.76071 3.76071 -127.817 -3.76071 0 0 742403. 2568.87 0.20 0.09 0.13 -1 -1 0.20 0.0328465 0.0287523 138 34 87 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 4.02 vpr 62.72 MiB 0.05 6980 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.1 MiB 0.19 1026 15456 4961 8586 1909 62.7 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.64 0.000738993 0.000686648 0.0653041 0.060671 32 2926 21 6.65987e+06 253560 554710. 1919.41 0.92 0.15429 0.137314 22834 132086 -1 2415 23 2233 4058 303013 70469 3.94283 3.94283 -149.271 -3.94283 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0341645 0.0298938 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 3.79 vpr 62.69 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.20 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.65 0.000769948 0.000712758 0.0338278 0.0313746 32 2567 26 6.65987e+06 469086 554710. 1919.41 0.86 0.12975 0.113679 22834 132086 -1 2120 21 1394 2236 167076 38664 2.81951 2.81951 -117.088 -2.81951 0 0 701300. 2426.64 0.22 0.08 0.13 -1 -1 0.22 0.0318188 0.0278025 154 64 63 32 63 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.60 vpr 61.91 MiB 0.04 6892 -1 -1 1 0.03 -1 -1 30808 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63392 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.3 MiB 0.18 580 13026 4344 6329 2353 61.9 MiB 0.12 0.00 3.7565 -98.351 -3.7565 3.7565 0.75 0.000567201 0.000527919 0.0509653 0.047448 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.78 0.115784 0.102776 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0205585 0.0180041 96 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.62 vpr 62.64 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30228 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.1 MiB 0.14 1006 10170 2426 6636 1108 62.6 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.65 0.000676177 0.000628649 0.0347205 0.032285 28 2449 18 6.65987e+06 418374 500653. 1732.36 0.90 0.111753 0.0985446 21970 115934 -1 2162 20 1186 2060 136992 31700 2.86711 2.86711 -105.656 -2.86711 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0263728 0.0230883 139 4 115 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.66 vpr 62.41 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.7 MiB 0.27 870 11571 3268 6617 1686 62.4 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.67 0.000664646 0.000617713 0.04847 0.0450797 32 1812 21 6.65987e+06 202848 554710. 1919.41 0.78 0.126011 0.111481 22834 132086 -1 1693 20 859 1399 94469 22459 2.57725 2.57725 -100.922 -2.57725 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0262122 0.0228715 105 85 0 0 84 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 5.16 vpr 62.44 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30464 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 642 11432 4032 4649 2751 62.4 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.63 0.000655871 0.000609079 0.0453333 0.0421093 36 2032 39 6.65987e+06 202848 612192. 2118.31 2.24 0.191647 0.166991 23410 145293 -1 1496 21 1311 2124 144443 38300 2.94877 2.94877 -111.707 -2.94877 0 0 782063. 2706.10 0.21 0.08 0.13 -1 -1 0.21 0.0275798 0.0241721 121 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.88 vpr 62.64 MiB 0.04 7012 -1 -1 1 0.03 -1 -1 30184 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.64 0.00065046 0.000604685 0.0468917 0.0436505 32 1689 20 6.65987e+06 215526 554710. 1919.41 0.87 0.130299 0.115416 22834 132086 -1 1543 23 1224 1807 117625 27755 2.81677 2.81677 -109.376 -2.81677 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0293567 0.0254978 110 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.70 vpr 62.42 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30484 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.7 MiB 0.25 841 11223 2602 8034 587 62.4 MiB 0.11 0.00 3.27957 -108.894 -3.27957 3.27957 0.65 0.000659311 0.000611112 0.0378672 0.0351403 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.87 0.118192 0.104153 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0249791 0.0218061 114 65 25 25 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 3.99 vpr 62.78 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.0 MiB 0.36 1002 18711 5900 10256 2555 62.8 MiB 0.18 0.00 3.50686 -122.446 -3.50686 3.50686 0.65 0.000750831 0.000696554 0.0677127 0.0627021 32 2409 24 6.65987e+06 405696 554710. 1919.41 0.93 0.158304 0.140707 22834 132086 -1 2111 23 1820 3075 229039 52037 2.99617 2.99617 -117.527 -2.99617 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0317277 0.0276627 143 58 64 32 57 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.43 vpr 62.46 MiB 0.02 6996 -1 -1 1 0.04 -1 -1 30576 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.0 MiB 0.29 942 7973 1567 6126 280 62.5 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.87 0.000618028 0.000567462 0.0256015 0.0235677 32 2790 25 6.65987e+06 431052 554710. 1919.41 1.04 0.119624 0.104685 22834 132086 -1 2276 23 2165 3419 261059 61100 3.55651 3.55651 -137.405 -3.55651 0 0 701300. 2426.64 0.21 0.10 0.13 -1 -1 0.21 0.0344855 0.0301231 156 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.60 vpr 62.16 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.65 0.000583404 0.000543612 0.0265262 0.0247235 28 1802 20 6.65987e+06 228204 500653. 1732.36 0.79 0.0947739 0.083094 21970 115934 -1 1532 22 1092 1831 123922 29554 2.64859 2.64859 -92.89 -2.64859 0 0 612192. 2118.31 0.24 0.08 0.12 -1 -1 0.24 0.0356502 0.0314816 107 29 58 29 24 24 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 4.50 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1074 13992 4161 7846 1985 62.9 MiB 0.14 0.00 3.5141 -125.301 -3.5141 3.5141 0.88 0.000597023 0.00054735 0.0487722 0.044764 32 2631 22 6.65987e+06 253560 554710. 1919.41 1.03 0.125802 0.111277 22834 132086 -1 2365 20 1746 3076 245530 55788 3.19431 3.19431 -129.28 -3.19431 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0319986 0.02813 146 63 64 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.46 vpr 62.90 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30296 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 934 18323 6450 8556 3317 62.9 MiB 0.15 0.00 3.6343 -123.732 -3.6343 3.6343 0.64 0.000727331 0.000672626 0.0640976 0.0595207 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.49 0.164195 0.146008 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.18 0.07 0.09 -1 -1 0.18 0.027872 0.0245105 142 57 64 32 56 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.53 vpr 62.79 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30056 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.19 832 15430 4777 8349 2304 62.8 MiB 0.14 0.00 2.83964 -101.748 -2.83964 2.83964 0.63 0.000679661 0.000630926 0.0514787 0.0477813 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.77 0.125249 0.111012 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.18 0.05 0.11 -1 -1 0.18 0.0235774 0.0206696 118 65 29 29 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.45 vpr 61.64 MiB 0.02 6648 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63120 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.2 MiB 0.12 661 10835 3152 6204 1479 61.6 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000601778 0.00055492 0.0354827 0.0330116 28 1412 25 6.65987e+06 190170 500653. 1732.36 0.75 0.0987736 0.0869962 21970 115934 -1 1317 18 590 894 65454 14803 1.64045 1.64045 -76.6109 -1.64045 0 0 612192. 2118.31 0.18 0.05 0.11 -1 -1 0.18 0.018376 0.0159886 85 34 24 24 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.65 vpr 62.57 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.20 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.64 0.000659835 0.000613017 0.0578196 0.0537615 32 1948 20 6.65987e+06 202848 554710. 1919.41 0.81 0.137082 0.121579 22834 132086 -1 1755 18 938 1411 113590 25356 2.87625 2.87625 -113.945 -2.87625 0 0 701300. 2426.64 0.20 0.06 0.12 -1 -1 0.20 0.0238189 0.0208769 113 64 31 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.59 vpr 62.84 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30340 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.12 0.00 3.9823 -134.861 -3.9823 3.9823 0.65 0.000718081 0.000664225 0.0428026 0.0397435 26 2573 27 6.65987e+06 431052 477104. 1650.88 0.98 0.136722 0.120444 21682 110474 -1 2275 22 1713 2482 195861 44433 3.85911 3.85911 -139.785 -3.85911 0 0 585099. 2024.56 0.20 0.09 0.11 -1 -1 0.20 0.0320781 0.0280901 145 34 91 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 3.94 vpr 62.72 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.30 1084 15644 4587 8678 2379 62.7 MiB 0.15 0.00 3.46744 -121.209 -3.46744 3.46744 0.67 0.000843363 0.000783129 0.0608548 0.0565342 32 2893 24 6.65987e+06 456408 554710. 1919.41 0.94 0.166898 0.147133 22834 132086 -1 2304 23 1666 2527 192489 43026 3.41005 3.41005 -122.544 -3.41005 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0377261 0.0328294 149 124 0 0 125 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.28 vpr 61.62 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63096 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.0 MiB 0.15 410 10345 3142 6004 1199 61.6 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.63 0.000440883 0.00040938 0.0303597 0.0282489 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.71 0.0830307 0.0732116 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.18 0.04 0.14 -1 -1 0.18 0.0157633 0.0137968 77 30 26 26 22 22 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.52 vpr 62.74 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30128 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 23.9 MiB 0.13 1123 11064 3077 6737 1250 62.7 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.60 0.000690645 0.000642303 0.0442303 0.0411699 32 2636 25 6.65987e+06 253560 554710. 1919.41 0.89 0.1307 0.115484 22834 132086 -1 2340 20 1634 2768 224801 50413 3.87397 3.87397 -136.212 -3.87397 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0290035 0.0255074 137 3 122 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.40 vpr 61.63 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30376 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63108 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.0 MiB 0.04 594 8553 1943 6358 252 61.6 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.69 0.000467776 0.000435397 0.0271284 0.0252266 28 1546 23 6.65987e+06 164814 500653. 1732.36 0.90 0.092641 0.081581 21970 115934 -1 1328 13 597 780 61409 14459 1.92605 1.92605 -82.4093 -1.92605 0 0 612192. 2118.31 0.17 0.04 0.11 -1 -1 0.17 0.0141677 0.0125464 81 3 53 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.71 vpr 62.89 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.07 1112 19189 6002 11213 1974 62.9 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.64 0.000735489 0.000682684 0.0695124 0.0644878 32 2640 23 6.65987e+06 418374 554710. 1919.41 0.92 0.158962 0.141374 22834 132086 -1 2332 22 1852 2869 241884 52982 3.64237 3.64237 -140.833 -3.64237 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0342125 0.0300857 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 3.72 vpr 62.70 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30112 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.15 1134 16059 4004 10217 1838 62.7 MiB 0.15 0.00 3.38184 -119.391 -3.38184 3.38184 0.66 0.000545831 0.000501028 0.050128 0.0465176 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.88 0.135047 0.119558 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.18 0.08 0.11 -1 -1 0.18 0.0291351 0.0254669 150 3 124 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.37 vpr 62.63 MiB 0.02 6936 -1 -1 1 0.04 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1120 14463 4038 8924 1501 62.6 MiB 0.16 0.00 3.91784 -136.256 -3.91784 3.91784 0.64 0.000938635 0.000872578 0.0545017 0.0506019 28 2877 24 6.65987e+06 443730 500653. 1732.36 1.29 0.153439 0.13593 21970 115934 -1 2382 24 1982 3438 253080 56365 3.39471 3.39471 -133.611 -3.39471 0 0 612192. 2118.31 0.20 0.11 0.13 -1 -1 0.20 0.0380745 0.0332444 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.52 vpr 62.19 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30164 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.08 0.00 2.8895 -100.047 -2.8895 2.8895 0.66 0.000616876 0.00057359 0.0325978 0.0303512 28 1959 23 6.65987e+06 190170 500653. 1732.36 0.81 0.107934 0.0949648 21970 115934 -1 1794 18 1044 1689 131849 30152 2.80591 2.80591 -104.879 -2.80591 0 0 612192. 2118.31 0.24 0.06 0.10 -1 -1 0.24 0.0230211 0.0201368 106 34 54 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.74 vpr 62.43 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30240 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 832 12156 3666 7026 1464 62.4 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.66 0.000613693 0.000570723 0.045411 0.0422522 32 1928 21 6.65987e+06 240882 554710. 1919.41 0.82 0.119352 0.105675 22834 132086 -1 1714 20 1246 1787 142322 32113 3.15837 3.15837 -116.08 -3.15837 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0245931 0.021542 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.72 vpr 62.18 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30468 -1 -1 20 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63672 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.7 MiB 0.12 590 7820 1903 5456 461 62.2 MiB 0.08 0.00 3.4309 -99.7277 -3.4309 3.4309 0.66 0.000586781 0.000546298 0.0287992 0.0267962 32 1923 46 6.65987e+06 253560 554710. 1919.41 1.05 0.115158 0.100443 22834 132086 -1 1563 21 1210 2013 140180 35724 3.03717 3.03717 -103.663 -3.03717 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0243158 0.0211755 107 34 56 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.61 vpr 62.44 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30512 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63936 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.65 0.000614104 0.000571435 0.0433436 0.0403278 32 2225 24 6.65987e+06 228204 554710. 1919.41 0.94 0.12409 0.109888 22834 132086 -1 1782 23 1492 2350 178530 44000 2.96911 2.96911 -119.443 -2.96911 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0261458 0.0229299 125 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.40 vpr 62.27 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30328 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63760 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.08 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.76 0.000632262 0.000587894 0.0367419 0.0341078 26 2453 37 6.65987e+06 393018 477104. 1650.88 1.46 0.127783 0.111946 21682 110474 -1 2003 21 1417 2331 202054 46827 2.68725 2.68725 -109.634 -2.68725 0 0 585099. 2024.56 0.16 0.08 0.06 -1 -1 0.16 0.0256641 0.0223509 119 34 61 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.55 vpr 62.50 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30236 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.7 MiB 0.19 717 8047 1725 5786 536 62.5 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.64 0.000486762 0.000446094 0.0271978 0.0251921 32 1839 18 6.65987e+06 380340 554710. 1919.41 0.82 0.0964644 0.0844708 22834 132086 -1 1669 19 980 1637 120360 28146 2.35685 2.35685 -88.7849 -2.35685 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0254877 0.0223402 109 61 29 29 57 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.24 vpr 62.72 MiB 0.05 7180 -1 -1 1 0.05 -1 -1 30560 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.4 MiB 0.28 1246 13117 3185 8526 1406 62.7 MiB 0.15 0.00 4.16036 -141.523 -4.16036 4.16036 0.65 0.000837396 0.000779058 0.0485236 0.0451188 26 4082 47 6.65987e+06 494442 477104. 1650.88 3.31 0.187362 0.164646 21682 110474 -1 3177 19 1946 3416 372770 77973 4.23023 4.23023 -159.822 -4.23023 0 0 585099. 2024.56 0.17 0.12 0.10 -1 -1 0.17 0.0327446 0.0288259 179 29 128 32 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.68 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1041 9447 2232 6542 673 62.9 MiB 0.11 0.00 3.5061 -122.514 -3.5061 3.5061 0.67 0.000775963 0.00071838 0.03559 0.0329359 32 2399 23 6.65987e+06 443730 554710. 1919.41 0.88 0.127609 0.111981 22834 132086 -1 2100 19 1680 2488 167224 38451 2.91297 2.91297 -119.551 -2.91297 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0296716 0.0260214 152 65 62 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.42 vpr 62.61 MiB 0.05 6992 -1 -1 1 0.04 -1 -1 30508 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 23.8 MiB 0.32 709 5599 957 4403 239 62.6 MiB 0.07 0.00 3.18838 -103.883 -3.18838 3.18838 0.68 0.000684041 0.000636138 0.0218387 0.0202942 26 2166 21 6.65987e+06 354984 477104. 1650.88 1.52 0.107343 0.0935397 21682 110474 -1 1792 22 1145 1768 127720 30506 2.62025 2.62025 -105.449 -2.62025 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0287437 0.0249188 113 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.80 vpr 62.71 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30528 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1062 14541 4862 7202 2477 62.7 MiB 0.15 0.00 3.4921 -118.867 -3.4921 3.4921 0.66 0.00069921 0.000645777 0.0620453 0.0576392 32 2506 18 6.65987e+06 266238 554710. 1919.41 0.84 0.147518 0.131138 22834 132086 -1 2153 22 1746 2876 203886 45580 2.77657 2.77657 -113.826 -2.77657 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0325776 0.0285071 148 64 60 30 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 3.82 vpr 63.00 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30504 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.31 1075 7953 1851 5455 647 63.0 MiB 0.10 0.00 4.84238 -140.996 -4.84238 4.84238 0.64 0.000833417 0.000774336 0.0388296 0.0360857 30 2507 19 6.65987e+06 266238 526063. 1820.29 0.89 0.129577 0.11403 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0303767 0.0266649 149 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.76 vpr 62.91 MiB 0.03 7192 -1 -1 1 0.05 -1 -1 30392 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.2 MiB 0.38 977 8868 2457 6032 379 62.9 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.64 0.000772969 0.00071824 0.0399795 0.0371651 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.131159 0.115448 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0262971 0.0231833 143 90 31 31 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.26 vpr 62.64 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30412 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1043 11922 3052 7896 974 62.6 MiB 0.15 0.00 3.40784 -114.93 -3.40784 3.40784 0.67 0.000764538 0.000709662 0.0495888 0.0458193 26 2879 21 6.65987e+06 418374 477104. 1650.88 1.27 0.138671 0.122224 21682 110474 -1 2395 22 1670 2857 240790 52788 3.04605 3.04605 -117.63 -3.04605 0 0 585099. 2024.56 0.18 0.11 0.10 -1 -1 0.18 0.0374524 0.0326004 146 64 60 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.65 vpr 62.65 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30844 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.12 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.64 0.000769042 0.000714512 0.036182 0.0336156 30 2568 27 6.65987e+06 443730 526063. 1820.29 0.92 0.134481 0.118161 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.20 0.08 0.13 -1 -1 0.20 0.0330949 0.0289531 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.09 vpr 63.06 MiB 0.04 7268 -1 -1 1 0.04 -1 -1 30632 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.30 1177 18648 4595 11838 2215 63.1 MiB 0.21 0.00 4.0593 -137.323 -4.0593 4.0593 0.64 0.000907617 0.000842397 0.0730646 0.0677843 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.04 0.18259 0.161712 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.039302 0.034334 184 96 62 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.42 vpr 62.54 MiB 0.03 6832 -1 -1 1 0.02 -1 -1 30660 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.8 MiB 0.12 685 11806 2914 7153 1739 62.5 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.60 0.000627651 0.000583741 0.0454916 0.0423698 32 2030 23 6.65987e+06 228204 554710. 1919.41 0.85 0.122125 0.108067 22834 132086 -1 1720 20 1444 2314 171957 40640 2.89571 2.89571 -110.456 -2.89571 0 0 701300. 2426.64 0.19 0.07 0.10 -1 -1 0.19 0.0250079 0.0218439 116 34 62 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.16 vpr 62.51 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.1 MiB 0.27 976 9675 2155 7053 467 62.5 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.68 0.000757609 0.000704246 0.0349931 0.0325048 28 2661 22 6.65987e+06 456408 500653. 1732.36 1.30 0.128477 0.112874 21970 115934 -1 2381 22 1770 2817 206479 46730 3.78351 3.78351 -140.301 -3.78351 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0323436 0.0282261 150 64 62 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.72 vpr 62.96 MiB 0.05 6932 -1 -1 1 0.03 -1 -1 30564 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.1 MiB 0.12 1040 11641 3109 7665 867 63.0 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.66 0.000763023 0.000708828 0.0428777 0.0397849 28 2759 23 6.65987e+06 418374 500653. 1732.36 1.05 0.140709 0.123982 21970 115934 -1 2418 19 1528 2752 203891 46139 3.01511 3.01511 -114.853 -3.01511 0 0 612192. 2118.31 0.17 0.09 0.08 -1 -1 0.17 0.0292194 0.0256143 148 63 62 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.03 vpr 62.44 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30560 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 853 8685 1897 5601 1187 62.4 MiB 0.09 0.00 4.14936 -138.467 -4.14936 4.14936 0.66 0.000714112 0.00066334 0.0356344 0.0330795 32 3554 31 6.65987e+06 253560 554710. 1919.41 1.21 0.119221 0.104964 22834 132086 -1 2386 25 2378 4190 332456 84115 4.09903 4.09903 -156.436 -4.09903 0 0 701300. 2426.64 0.19 0.12 0.12 -1 -1 0.19 0.0341263 0.0300601 150 3 128 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.90 vpr 62.91 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30408 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.1 MiB 0.30 1097 11798 3144 7589 1065 62.9 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.64 0.000789388 0.000732844 0.0449829 0.0416769 32 2610 28 6.65987e+06 431052 554710. 1919.41 0.95 0.143859 0.126648 22834 132086 -1 2261 27 1678 2335 173585 40549 2.96105 2.96105 -114.853 -2.96105 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0423671 0.036921 145 96 25 25 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.83 vpr 62.57 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30476 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.29 1042 7623 1446 5778 399 62.6 MiB 0.09 0.00 3.5841 -121.365 -3.5841 3.5841 0.64 0.000765022 0.000709614 0.0282191 0.0262215 32 2739 23 6.65987e+06 443730 554710. 1919.41 0.90 0.121539 0.106139 22834 132086 -1 2392 19 1560 2652 190760 44720 2.90297 2.90297 -122.101 -2.90297 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0298541 0.0262543 146 61 64 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 3.73 vpr 62.61 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30424 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.59 0.000775195 0.000719231 0.0661715 0.0612942 32 2579 24 6.65987e+06 469086 554710. 1919.41 0.89 0.169748 0.150184 22834 132086 -1 2255 22 1703 2645 189718 44615 2.89571 2.89571 -116.083 -2.89571 0 0 701300. 2426.64 0.22 0.09 0.12 -1 -1 0.22 0.034144 0.029891 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.57 vpr 62.43 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63924 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.07 1049 17883 5721 9099 3063 62.4 MiB 0.17 0.00 4.02327 -139.097 -4.02327 4.02327 0.60 0.00074002 0.000684777 0.0617647 0.0573754 32 2663 21 6.65987e+06 443730 554710. 1919.41 0.91 0.150493 0.133842 22834 132086 -1 2226 24 2120 3395 255918 56744 3.76057 3.76057 -141.06 -3.76057 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0356784 0.0310904 150 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 3.93 vpr 62.58 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30716 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.65 0.000781284 0.000725712 0.060515 0.0561538 32 2565 23 6.65987e+06 469086 554710. 1919.41 0.91 0.156774 0.1388 22834 132086 -1 2227 23 1969 2975 232242 51504 3.47391 3.47391 -136.763 -3.47391 0 0 701300. 2426.64 0.28 0.09 0.12 -1 -1 0.28 0.0299453 0.0264942 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 3.89 vpr 62.74 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30476 -1 -1 34 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.5 MiB 0.38 1081 15859 4297 9232 2330 62.7 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.66 0.000818516 0.000758987 0.0615839 0.0570575 28 2788 21 6.65987e+06 431052 500653. 1732.36 0.91 0.159928 0.141205 21970 115934 -1 2458 19 1249 2286 169784 37981 3.26585 3.26585 -124.218 -3.26585 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.0313545 0.0273084 145 122 0 0 122 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.84 vpr 62.99 MiB 0.04 7116 -1 -1 1 0.03 -1 -1 30492 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1088 15822 4733 9518 1571 63.0 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.63 0.000816562 0.000758681 0.073541 0.0683868 32 2771 23 6.65987e+06 253560 554710. 1919.41 0.91 0.173218 0.153771 22834 132086 -1 2366 23 1879 3439 266431 58862 3.31985 3.31985 -126.958 -3.31985 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0375222 0.0328049 149 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 4.34 vpr 62.48 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30608 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.7 MiB 0.07 798 8401 2034 5819 548 62.5 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.63 0.000654809 0.000602127 0.0276186 0.0256554 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.83 0.102596 0.0900605 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0261568 0.0228501 124 34 63 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.74 vpr 62.69 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30348 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 912 11830 3154 7792 884 62.7 MiB 0.13 0.00 3.41618 -118.934 -3.41618 3.41618 0.65 0.000701766 0.000650887 0.0499572 0.0463826 32 2244 21 6.65987e+06 228204 554710. 1919.41 0.85 0.134778 0.119009 22834 132086 -1 1981 21 1461 2255 169368 38765 2.90671 2.90671 -119.433 -2.90671 0 0 701300. 2426.64 0.21 0.08 0.12 -1 -1 0.21 0.029552 0.0257673 121 94 0 0 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.89 vpr 63.05 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30780 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.9 MiB 0.15 1362 14988 3862 9734 1392 63.1 MiB 0.14 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000735348 0.000674342 0.0409575 0.0376465 32 3224 27 6.65987e+06 507120 554710. 1919.41 1.03 0.153144 0.133909 22834 132086 -1 2751 22 2503 4010 283300 66669 4.33277 4.33277 -161.853 -4.33277 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0379304 0.0330853 187 65 96 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.72 vpr 62.70 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30320 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.1 MiB 0.22 954 14567 4735 7432 2400 62.7 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.64 0.000733427 0.000681526 0.0519425 0.0482695 32 2533 23 6.65987e+06 393018 554710. 1919.41 0.94 0.140451 0.124348 22834 132086 -1 2059 21 1528 2303 169248 38838 3.12437 3.12437 -119.393 -3.12437 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0306468 0.0268595 146 34 92 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.43 vpr 62.32 MiB 0.06 6772 -1 -1 1 0.03 -1 -1 30300 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.7 MiB 0.08 839 17066 5534 9253 2279 62.3 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.63 0.000624954 0.000582346 0.053231 0.0494946 32 1859 23 6.65987e+06 380340 554710. 1919.41 0.80 0.126959 0.112552 22834 132086 -1 1702 23 1302 1955 146836 32807 2.86197 2.86197 -108.341 -2.86197 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0272575 0.0236996 115 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.28 vpr 63.07 MiB 0.03 7440 -1 -1 1 0.04 -1 -1 30928 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.53 1333 18829 5161 11634 2034 63.1 MiB 0.21 0.00 4.64147 -157.361 -4.64147 4.64147 0.63 0.000952758 0.000882584 0.0748397 0.0693026 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.03 0.190972 0.169073 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0389888 0.0340168 186 127 32 32 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.71 vpr 62.50 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.1 MiB 0.25 1044 16340 4500 10034 1806 62.5 MiB 0.15 0.00 4.15932 -143.209 -4.15932 4.15932 0.64 0.000742717 0.000689388 0.0550826 0.0511361 28 2433 22 6.65987e+06 456408 500653. 1732.36 0.87 0.145136 0.128588 21970 115934 -1 2180 17 1424 2121 146529 32775 3.65243 3.65243 -141.715 -3.65243 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0264479 0.0232405 151 34 96 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.58 vpr 62.54 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30308 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.7 MiB 0.08 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.64 0.000509563 0.000466631 0.0413225 0.0383061 28 2223 23 6.65987e+06 393018 500653. 1732.36 0.98 0.116584 0.102947 21970 115934 -1 1831 21 1390 2227 153616 36621 2.84077 2.84077 -115.671 -2.84077 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0259409 0.0226801 123 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.74 vpr 62.88 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30776 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.14 1337 12702 3419 8223 1060 62.9 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.65 0.000858617 0.000798689 0.0470784 0.0437851 30 3011 23 6.65987e+06 519798 526063. 1820.29 0.93 0.14967 0.131835 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.18 0.09 0.11 -1 -1 0.18 0.0354023 0.0309891 188 34 128 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.65 vpr 62.32 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.8 MiB 0.15 852 11260 3935 5447 1878 62.3 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.64 0.00063525 0.000582271 0.0426567 0.0396897 32 2124 48 6.65987e+06 202848 554710. 1919.41 0.96 0.140232 0.12312 22834 132086 -1 1841 20 1442 2283 176605 41279 2.97497 2.97497 -120.041 -2.97497 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0246848 0.0215664 121 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.62 vpr 62.19 MiB 0.05 6880 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63684 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.6 MiB 0.18 707 8073 1842 5622 609 62.2 MiB 0.09 0.00 3.47387 -110.471 -3.47387 3.47387 0.66 0.000624242 0.000581123 0.0244039 0.0225586 28 1935 20 6.65987e+06 393018 500653. 1732.36 0.81 0.0966993 0.0845194 21970 115934 -1 1767 22 1242 2031 144987 33596 3.08337 3.08337 -113.04 -3.08337 0 0 612192. 2118.31 0.17 0.07 0.11 -1 -1 0.17 0.0267687 0.0233655 113 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 4.58 vpr 62.66 MiB 0.02 7248 -1 -1 1 0.03 -1 -1 30360 -1 -1 33 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.0 MiB 0.27 964 15856 4550 8712 2594 62.7 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000751214 0.000698151 0.0576721 0.0535069 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.84 0.159025 0.140483 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0282237 0.0247772 133 88 29 29 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.65 vpr 62.90 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30704 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.12 1002 7770 1874 5369 527 62.9 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.64 0.000766236 0.000710834 0.0351693 0.032663 32 2537 20 6.65987e+06 253560 554710. 1919.41 0.90 0.125729 0.110466 22834 132086 -1 2176 22 2024 3071 255718 55324 3.65137 3.65137 -141.337 -3.65137 0 0 701300. 2426.64 0.19 0.10 0.14 -1 -1 0.19 0.0330931 0.0289263 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.06 vpr 62.55 MiB 0.02 7124 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.38 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.64 0.000769709 0.00071392 0.0689799 0.0639557 28 2638 22 6.65987e+06 431052 500653. 1732.36 1.04 0.16362 0.14536 21970 115934 -1 2257 21 1827 3045 224896 49721 3.64537 3.64537 -141.068 -3.64537 0 0 612192. 2118.31 0.17 0.09 0.07 -1 -1 0.17 0.0326348 0.0286053 152 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.58 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30604 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.7 MiB 0.21 697 8614 1900 5780 934 62.6 MiB 0.09 0.00 3.41884 -113.998 -3.41884 3.41884 0.64 0.000678438 0.00062919 0.0298938 0.0277444 32 1903 25 6.65987e+06 380340 554710. 1919.41 0.91 0.119155 0.104234 22834 132086 -1 1650 21 1314 2100 163030 37783 2.73351 2.73351 -110.442 -2.73351 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0280949 0.0245343 120 65 32 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.77 vpr 62.59 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 23.9 MiB 0.30 800 12464 4465 5577 2422 62.6 MiB 0.14 0.00 3.46898 -107.312 -3.46898 3.46898 0.77 0.000677636 0.000629193 0.0620627 0.0576711 32 1982 23 6.65987e+06 215526 554710. 1919.41 0.83 0.143619 0.12746 22834 132086 -1 1706 23 1257 2236 164644 38181 2.72145 2.72145 -105.174 -2.72145 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0297124 0.0258183 109 90 0 0 89 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 4.22 vpr 62.69 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30420 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.0 MiB 0.20 996 12623 3384 8308 931 62.7 MiB 0.13 0.00 3.33164 -109.888 -3.33164 3.33164 0.64 0.000725495 0.000673787 0.0466242 0.0432373 26 2507 31 6.65987e+06 418374 477104. 1650.88 1.42 0.14643 0.128923 21682 110474 -1 2108 20 1410 2286 169057 38285 2.93891 2.93891 -110.732 -2.93891 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0301378 0.0264004 137 60 60 30 57 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.56 vpr 62.57 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30324 -1 -1 31 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 23.9 MiB 0.10 995 16207 5283 8775 2149 62.6 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.64 0.000665842 0.000619186 0.0554609 0.0515575 28 2478 21 6.65987e+06 393018 500653. 1732.36 0.88 0.132921 0.118081 21970 115934 -1 2142 21 1586 2579 196030 44322 3.61951 3.61951 -125.511 -3.61951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0286154 0.0250244 133 34 84 28 28 28 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.84 vpr 62.43 MiB 0.04 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63928 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.7 MiB 0.36 727 13152 3808 7208 2136 62.4 MiB 0.12 0.00 3.5343 -112.204 -3.5343 3.5343 0.65 0.000544335 0.000489546 0.047606 0.043977 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.83 0.124699 0.110026 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.21 0.05 0.12 -1 -1 0.21 0.0230428 0.0202149 114 63 30 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.80 vpr 62.54 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30392 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 23.8 MiB 0.30 910 8164 2057 5403 704 62.5 MiB 0.08 0.00 3.44398 -109.924 -3.44398 3.44398 0.79 0.000553097 0.000506008 0.0290293 0.0266783 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.83 0.110159 0.0962057 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0276936 0.0242626 113 91 0 0 91 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.08 vpr 62.70 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30204 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.12 0.00 4.17558 -139.576 -4.17558 4.17558 0.70 0.000693696 0.000644473 0.0410847 0.0381683 28 3033 20 6.65987e+06 443730 500653. 1732.36 1.24 0.1286 0.113996 21970 115934 -1 2518 20 1591 2583 178706 40894 3.86583 3.86583 -142.772 -3.86583 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0260032 0.023028 150 4 124 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 3.95 vpr 62.57 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30568 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1037 13598 4125 8601 872 62.6 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.65 0.000780035 0.000723919 0.0522642 0.0485146 28 2566 22 6.65987e+06 431052 500653. 1732.36 1.18 0.142535 0.12639 21970 115934 -1 2237 22 1900 3264 213746 49904 3.83557 3.83557 -144.415 -3.83557 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0335775 0.0294161 153 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 4.37 vpr 62.46 MiB 0.04 7000 -1 -1 1 0.04 -1 -1 30540 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.0 MiB 0.28 1033 10448 2380 7653 415 62.5 MiB 0.12 0.00 4.16458 -142.258 -4.16458 4.16458 0.65 0.000781082 0.000725478 0.0399336 0.0369548 28 3079 34 6.65987e+06 431052 500653. 1732.36 1.49 0.149414 0.130886 21970 115934 -1 2507 19 1655 2786 262515 56729 3.74643 3.74643 -145.697 -3.74643 0 0 612192. 2118.31 0.18 0.10 0.11 -1 -1 0.18 0.03088 0.0270837 151 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 3.77 vpr 62.55 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.25 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.66 0.000771741 0.000716852 0.0320121 0.0296859 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.127245 0.111684 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0358447 0.0315433 148 65 60 30 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.98 vpr 62.46 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.6 MiB 0.21 656 10400 2388 7389 623 62.5 MiB 0.10 0.00 3.50927 -110.79 -3.50927 3.50927 0.69 0.000616738 0.000573255 0.0391656 0.0364384 28 2173 45 6.65987e+06 228204 500653. 1732.36 1.09 0.136403 0.119444 21970 115934 -1 1733 19 1122 1722 145710 34964 2.94117 2.94117 -111.592 -2.94117 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0257346 0.0226014 112 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.96 vpr 62.67 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30340 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.0 MiB 0.24 986 11613 3437 7269 907 62.7 MiB 0.12 0.00 4.19776 -134.76 -4.19776 4.19776 0.80 0.000568302 0.000521081 0.0391176 0.0359418 32 2227 20 6.65987e+06 278916 554710. 1919.41 0.90 0.126895 0.111177 22834 132086 -1 1981 21 1830 2779 183909 44052 3.48043 3.48043 -130.387 -3.48043 0 0 701300. 2426.64 0.26 0.08 0.13 -1 -1 0.26 0.0274918 0.0239688 145 63 60 30 60 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.07 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 0.29 1052 13117 2855 8842 1420 62.8 MiB 0.13 0.00 3.91498 -132.986 -3.91498 3.91498 0.77 0.000866717 0.000806091 0.0500562 0.0465014 32 2892 25 6.65987e+06 494442 554710. 1919.41 0.93 0.156748 0.137793 22834 132086 -1 2368 26 2349 3841 315590 72302 3.48885 3.48885 -136.913 -3.48885 0 0 701300. 2426.64 0.18 0.07 0.08 -1 -1 0.18 0.0219432 0.0192119 154 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 3.94 vpr 62.67 MiB 0.06 7112 -1 -1 1 0.03 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.66 0.00079337 0.000736257 0.0368721 0.034059 28 2624 22 6.65987e+06 393018 500653. 1732.36 1.11 0.132776 0.116623 21970 115934 -1 2246 21 1597 2678 187978 43614 3.63731 3.63731 -136.375 -3.63731 0 0 612192. 2118.31 0.17 0.08 0.10 -1 -1 0.17 0.0327955 0.0286431 146 94 31 31 93 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.85 vpr 62.86 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30524 -1 -1 30 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.30 967 14375 3613 8859 1903 62.9 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.68 0.000584347 0.000535331 0.0433938 0.0398308 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.98 0.135747 0.119321 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.18 0.06 0.11 -1 -1 0.18 0.0291872 0.0256149 136 92 26 26 90 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.59 MiB 0.02 7036 -1 -1 1 0.04 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.2 MiB 0.20 1103 13477 4009 7448 2020 62.6 MiB 0.15 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000777769 0.000721767 0.0599668 0.0556484 32 2896 23 6.65987e+06 266238 554710. 1919.41 0.99 0.154185 0.136688 22834 132086 -1 2579 21 2140 3741 291243 66104 3.63437 3.63437 -143.781 -3.63437 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.0300984 0.0268261 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.67 vpr 62.71 MiB 0.03 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64220 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.1 MiB 0.18 870 10463 2796 6767 900 62.7 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.64 0.000732665 0.000680718 0.0378185 0.0350861 32 2139 21 6.65987e+06 431052 554710. 1919.41 0.92 0.127319 0.11168 22834 132086 -1 1844 20 1455 2365 152099 36368 2.78971 2.78971 -101.199 -2.78971 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0288492 0.0251964 134 88 26 26 85 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.52 vpr 62.36 MiB 0.04 6668 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.6 MiB 0.07 838 13496 3888 8529 1079 62.4 MiB 0.14 0.00 3.5031 -123.339 -3.5031 3.5031 0.63 0.000632506 0.000588509 0.0582954 0.0541751 32 2175 23 6.65987e+06 202848 554710. 1919.41 0.90 0.138823 0.123251 22834 132086 -1 1922 21 1409 2175 179699 42101 3.03597 3.03597 -124.718 -3.03597 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0259233 0.0226952 116 3 96 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.91 vpr 62.55 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.64 0.00077494 0.000719046 0.0607549 0.0563711 32 2598 23 6.65987e+06 418374 554710. 1919.41 0.91 0.154999 0.137458 22834 132086 -1 2227 23 1905 2820 231870 51574 3.71343 3.71343 -140.761 -3.71343 0 0 701300. 2426.64 0.19 0.10 0.13 -1 -1 0.19 0.0358873 0.031491 150 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 3.70 vpr 62.58 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64080 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.2 MiB 0.25 1026 16081 4881 8736 2464 62.6 MiB 0.17 0.00 4.23393 -146.239 -4.23393 4.23393 0.66 0.000785494 0.000730031 0.0706725 0.0656835 32 2633 23 6.65987e+06 266238 554710. 1919.41 0.91 0.165428 0.147229 22834 132086 -1 2317 22 2154 3204 249005 56890 3.78577 3.78577 -146.946 -3.78577 0 0 701300. 2426.64 0.18 0.06 0.08 -1 -1 0.18 0.0186745 0.0166259 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.25 vpr 62.53 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30396 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 24.0 MiB 0.23 688 16683 5557 7719 3407 62.5 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.63 0.000640246 0.000594417 0.0531823 0.0493856 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.44 0.141197 0.124598 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0236755 0.02091 111 55 32 32 54 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.42 vpr 62.25 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30452 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63744 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.8 MiB 0.11 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.63 0.000598508 0.000556982 0.0487316 0.0453454 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.82 0.12063 0.106926 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0224695 0.0197176 118 4 93 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.75 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30340 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.1 MiB 0.29 900 5133 854 4121 158 62.7 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.70 0.00074276 0.000690529 0.0198711 0.0184988 32 2321 22 6.65987e+06 405696 554710. 1919.41 0.90 0.109385 0.0954485 22834 132086 -1 2047 20 1627 2428 176062 41067 3.44137 3.44137 -129.288 -3.44137 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0292306 0.0255387 138 59 60 32 58 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.91 vpr 62.55 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30348 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.2 MiB 0.31 879 9892 2434 7009 449 62.6 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.71 0.000760257 0.00070598 0.0385376 0.0357803 28 2733 50 6.65987e+06 380340 500653. 1732.36 1.85 0.163268 0.142533 21970 115934 -1 2243 22 1484 2459 195085 46378 3.73551 3.73551 -129.827 -3.73551 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0328959 0.0286655 134 88 28 28 88 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.60 vpr 62.65 MiB 0.03 7076 -1 -1 1 0.03 -1 -1 30420 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.4 MiB 0.07 1224 16515 4921 9863 1731 62.6 MiB 0.18 0.00 4.82096 -159.28 -4.82096 4.82096 0.86 0.000789401 0.000733334 0.0620433 0.0577253 34 3026 21 6.65987e+06 443730 585099. 2024.56 1.54 0.2139 0.188256 23122 138558 -1 2568 21 1918 3176 250539 52985 4.19882 4.19882 -151.411 -4.19882 0 0 742403. 2568.87 0.20 0.10 0.12 -1 -1 0.20 0.0335672 0.0295164 177 3 156 32 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.08 vpr 62.96 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30604 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 1012 13726 3606 8436 1684 63.0 MiB 0.14 0.00 3.638 -113.448 -3.638 3.638 0.72 0.000717173 0.00066628 0.0500269 0.0464165 32 2171 21 6.65987e+06 405696 554710. 1919.41 0.83 0.13402 0.118516 22834 132086 -1 1915 20 1631 2551 180244 41966 2.84971 2.84971 -109.081 -2.84971 0 0 701300. 2426.64 0.20 0.08 0.14 -1 -1 0.20 0.0305698 0.0267863 136 59 60 30 56 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.68 vpr 62.10 MiB 0.13 6940 -1 -1 1 0.03 -1 -1 30616 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63592 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.7 MiB 0.12 768 12754 4322 6521 1911 62.1 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.71 0.000570125 0.000530457 0.0463313 0.0431254 32 1581 21 6.65987e+06 253560 554710. 1919.41 0.82 0.115739 0.10254 22834 132086 -1 1433 23 1214 1756 132146 29899 2.73377 2.73377 -94.2996 -2.73377 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0257384 0.0223532 107 34 54 27 27 27 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 3.99 vpr 63.14 MiB 0.03 7208 -1 -1 1 0.03 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 25.0 MiB 0.20 1366 15232 4128 9656 1448 63.1 MiB 0.17 0.00 4.15924 -136.806 -4.15924 4.15924 0.65 0.000911491 0.000845869 0.0601603 0.0557784 32 3584 25 6.65987e+06 507120 554710. 1919.41 0.99 0.174145 0.153625 22834 132086 -1 3035 24 2566 4598 357869 79783 3.55211 3.55211 -136.902 -3.55211 0 0 701300. 2426.64 0.19 0.13 0.12 -1 -1 0.19 0.0419947 0.0365706 184 95 62 31 95 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.94 vpr 62.96 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 30508 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.1 MiB 0.33 999 12894 3350 8149 1395 63.0 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000827225 0.000768524 0.061338 0.0569738 32 2741 23 6.65987e+06 266238 554710. 1919.41 0.93 0.165957 0.146737 22834 132086 -1 2317 24 1711 2732 234323 52414 3.53211 3.53211 -138.535 -3.53211 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0378688 0.0329122 144 124 0 0 124 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.63 vpr 62.44 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30408 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 23.7 MiB 0.28 739 9540 2469 6056 1015 62.4 MiB 0.10 0.00 3.43298 -108.977 -3.43298 3.43298 0.65 0.000687752 0.00063842 0.0408523 0.0379745 28 1956 23 6.65987e+06 202848 500653. 1732.36 0.82 0.124396 0.10963 21970 115934 -1 1674 23 1158 1842 135729 31491 2.79871 2.79871 -108.503 -2.79871 0 0 612192. 2118.31 0.17 0.07 0.10 -1 -1 0.17 0.0303661 0.0264474 109 89 0 0 89 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.71 vpr 62.81 MiB 0.04 6984 -1 -1 1 0.03 -1 -1 30356 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.10 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.66 0.000735788 0.000675958 0.0553791 0.0513525 28 2607 21 6.65987e+06 405696 500653. 1732.36 0.89 0.135215 0.120206 21970 115934 -1 2268 18 1229 1834 137234 31081 3.73357 3.73357 -136.434 -3.73357 0 0 612192. 2118.31 0.22 0.07 0.12 -1 -1 0.22 0.0274774 0.0241803 146 34 90 30 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 62.79 MiB 0.05 7264 -1 -1 1 0.04 -1 -1 30696 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.5 MiB 0.19 1167 13551 3218 9177 1156 62.8 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.64 0.000848186 0.000789199 0.0549963 0.0511091 32 2713 24 6.65987e+06 456408 554710. 1919.41 0.93 0.163067 0.143863 22834 132086 -1 2354 20 1809 2707 183152 42780 3.47391 3.47391 -134.888 -3.47391 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0347798 0.0304362 171 64 87 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.25 vpr 62.77 MiB 0.04 7100 -1 -1 1 0.03 -1 -1 30352 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.13 1070 11111 2802 7426 883 62.8 MiB 0.12 0.00 3.62941 -110.797 -3.62941 3.62941 0.65 0.000857112 0.000795438 0.0424953 0.039394 26 2917 46 6.65987e+06 418374 477104. 1650.88 1.51 0.155949 0.137077 21682 110474 -1 2268 20 1350 2350 175706 39238 3.03591 3.03591 -113.061 -3.03591 0 0 585099. 2024.56 0.19 0.08 0.12 -1 -1 0.19 0.030515 0.0266624 134 61 58 30 58 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.88 vpr 62.75 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30548 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.5 MiB 0.24 1074 12606 3053 8336 1217 62.8 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.64 0.000614404 0.000562704 0.0362254 0.0332797 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.95 0.127185 0.111662 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.03022 0.0266813 157 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.69 vpr 62.73 MiB 0.05 7056 -1 -1 1 0.03 -1 -1 30588 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.23 985 6766 1235 5165 366 62.7 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.63 0.000773145 0.000717771 0.0250353 0.0232608 28 2716 20 6.65987e+06 481764 500653. 1732.36 0.92 0.114102 0.0998578 21970 115934 -1 2273 25 1643 2601 201975 45674 3.03105 3.03105 -121.513 -3.03105 0 0 612192. 2118.31 0.17 0.09 0.10 -1 -1 0.17 0.0363592 0.0316636 155 65 63 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.48 vpr 62.05 MiB 0.05 6828 -1 -1 1 0.03 -1 -1 30396 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63544 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.6 MiB 0.12 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.63 0.000604967 0.000562887 0.0491863 0.0457977 32 1548 18 6.65987e+06 202848 554710. 1919.41 0.81 0.119128 0.105751 22834 132086 -1 1380 20 1033 1432 118502 30030 2.93997 2.93997 -103.913 -2.93997 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0249219 0.0217023 93 34 58 29 29 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.66 vpr 62.62 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30104 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.29 872 14431 4553 8297 1581 62.6 MiB 0.13 0.00 3.69338 -109.525 -3.69338 3.69338 0.63 0.000660775 0.000613853 0.0563316 0.0523415 32 1973 19 6.65987e+06 215526 554710. 1919.41 0.83 0.13128 0.116497 22834 132086 -1 1854 20 1065 1531 133239 29874 2.84891 2.84891 -108.08 -2.84891 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0264976 0.0231307 111 82 0 0 82 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 3.76 vpr 62.64 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30516 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 23.9 MiB 0.14 973 15876 4279 9893 1704 62.6 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.63 0.000728302 0.000676688 0.0525022 0.0488075 32 2717 32 6.65987e+06 469086 554710. 1919.41 1.00 0.151572 0.133861 22834 132086 -1 2119 22 1651 2817 240632 52983 4.03591 4.03591 -134.706 -4.03591 0 0 701300. 2426.64 0.19 0.11 0.12 -1 -1 0.19 0.0350059 0.0306611 150 34 93 31 31 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.91 vpr 62.12 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30404 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.6 MiB 0.23 621 11063 2736 7707 620 62.1 MiB 0.10 0.00 3.58224 -95.8028 -3.58224 3.58224 0.63 0.000605527 0.000562235 0.0346882 0.0321968 26 2024 33 6.65987e+06 393018 477104. 1650.88 1.27 0.118873 0.104088 21682 110474 -1 1674 18 1026 1648 126714 31105 2.84965 2.84965 -102.399 -2.84965 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0219865 0.0191452 108 56 29 29 52 26 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 4.13 vpr 62.52 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30304 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.63 0.000610626 0.000564725 0.0323803 0.0301423 34 2038 19 6.65987e+06 202848 585099. 2024.56 1.39 0.157163 0.13684 23122 138558 -1 1693 20 1188 1991 143700 33185 2.69057 2.69057 -114.046 -2.69057 0 0 742403. 2568.87 0.22 0.07 0.13 -1 -1 0.22 0.0258694 0.0225794 119 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.68 vpr 62.90 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30392 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.12 0.00 3.4951 -117.77 -3.4951 3.4951 0.64 0.000752967 0.000699691 0.0418998 0.0388398 26 2363 24 6.65987e+06 456408 477104. 1650.88 0.89 0.133025 0.117097 21682 110474 -1 1972 20 1501 2192 155454 35024 2.96717 2.96717 -116.356 -2.96717 0 0 585099. 2024.56 0.16 0.07 0.10 -1 -1 0.16 0.0296007 0.0258956 142 64 58 31 62 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.57 vpr 62.34 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30416 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.6 MiB 0.29 876 12923 4161 7145 1617 62.3 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.63 0.00062587 0.000581747 0.0500737 0.0465781 32 1966 17 6.65987e+06 202848 554710. 1919.41 0.78 0.118923 0.105555 22834 132086 -1 1763 18 947 1577 128871 29335 2.82865 2.82865 -105.492 -2.82865 0 0 701300. 2426.64 0.19 0.06 0.12 -1 -1 0.19 0.0237348 0.0208426 105 55 31 31 53 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.06 vpr 62.87 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30468 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.22 929 17616 5738 7949 3929 62.9 MiB 0.14 0.00 3.3979 -111.1 -3.3979 3.3979 0.64 0.00072904 0.000675678 0.0616225 0.0571556 34 2394 47 6.65987e+06 405696 585099. 2024.56 2.15 0.235012 0.205197 23122 138558 -1 1902 21 1261 2178 173221 40874 2.77097 2.77097 -108.435 -2.77097 0 0 742403. 2568.87 0.20 0.08 0.08 -1 -1 0.20 0.0303433 0.0265266 136 65 52 26 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.05 vpr 62.86 MiB 0.05 7196 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 0.59 965 17427 4981 9867 2579 62.9 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.63 0.00079254 0.00073174 0.0634381 0.0587876 28 2286 21 6.65987e+06 456408 500653. 1732.36 0.85 0.155751 0.138019 21970 115934 -1 2030 20 1604 2453 162483 37951 2.86597 2.86597 -114.396 -2.86597 0 0 612192. 2118.31 0.17 0.08 0.11 -1 -1 0.17 0.0314744 0.0275111 148 93 31 31 92 31 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.52 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30532 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.7 MiB 0.16 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.63 0.000660513 0.000613665 0.0456212 0.042431 32 2079 23 6.65987e+06 228204 554710. 1919.41 0.84 0.126086 0.111347 22834 132086 -1 1682 21 1281 2024 144082 32797 2.54625 2.54625 -101.627 -2.54625 0 0 701300. 2426.64 0.19 0.07 0.12 -1 -1 0.19 0.0271744 0.0236712 115 61 32 32 60 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.83 vpr 62.71 MiB 0.04 6944 -1 -1 1 0.02 -1 -1 30124 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.26 667 7380 1595 4913 872 62.7 MiB 0.04 0.00 3.38184 -112.707 -3.38184 3.38184 0.65 0.000301478 0.000276528 0.0141537 0.0130409 32 2345 42 6.65987e+06 228204 554710. 1919.41 1.10 0.114005 0.0983365 22834 132086 -1 1734 21 1338 2119 160376 40566 3.13031 3.13031 -121.901 -3.13031 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0274993 0.0239719 121 63 32 32 62 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.86 vpr 62.61 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30700 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.19 1042 12164 2979 8000 1185 62.6 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.71 0.000776565 0.000721736 0.0437191 0.0405644 28 2653 23 6.65987e+06 456408 500653. 1732.36 0.97 0.138141 0.121793 21970 115934 -1 2326 19 1747 2644 196290 44306 3.79251 3.79251 -139.52 -3.79251 0 0 612192. 2118.31 0.17 0.10 0.12 -1 -1 0.17 0.0363539 0.0317408 154 65 64 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.82 vpr 62.65 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30500 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.2 MiB 0.22 968 17313 5602 9212 2499 62.6 MiB 0.16 0.00 3.57304 -105.57 -3.57304 3.57304 0.64 0.00071024 0.00065969 0.0651758 0.0605399 32 2179 18 6.65987e+06 405696 554710. 1919.41 0.83 0.148835 0.132522 22834 132086 -1 1914 22 1155 1764 120739 28797 2.81671 2.81671 -102.996 -2.81671 0 0 701300. 2426.64 0.23 0.07 0.08 -1 -1 0.23 0.0307303 0.0268374 133 62 56 29 58 29 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.89 vpr 62.77 MiB 0.02 7296 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.4 MiB 0.33 1004 11616 2968 7911 737 62.8 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.64 0.000862851 0.00080114 0.0467395 0.0432985 32 2756 22 6.65987e+06 469086 554710. 1919.41 0.87 0.148171 0.12994 22834 132086 -1 2253 23 2018 3108 233635 55239 3.53331 3.53331 -136.937 -3.53331 0 0 701300. 2426.64 0.19 0.10 0.12 -1 -1 0.19 0.0377371 0.0328529 156 127 0 0 128 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.35 vpr 62.12 MiB 0.02 6728 -1 -1 1 0.03 -1 -1 30284 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63612 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.7 MiB 0.10 715 5825 1215 4401 209 62.1 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.65 0.000696113 0.000640247 0.0224785 0.0209462 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.78 0.0883915 0.0772869 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.13 -1 -1 0.19 0.0230888 0.0201077 105 4 85 31 0 0 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 3.78 vpr 62.89 MiB 0.02 7192 -1 -1 1 0.03 -1 -1 30380 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64400 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.1 MiB 0.18 948 20077 6167 11074 2836 62.9 MiB 0.19 0.00 4.10497 -133.778 -4.10497 4.10497 0.66 0.00077987 0.000723377 0.0754877 0.0700117 32 2340 22 6.65987e+06 418374 554710. 1919.41 0.87 0.181481 0.161103 22834 132086 -1 2046 19 1554 2231 168485 38319 3.46417 3.46417 -126.787 -3.46417 0 0 701300. 2426.64 0.19 0.08 0.12 -1 -1 0.19 0.0301345 0.0264543 142 92 28 28 92 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.98 vpr 62.72 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30196 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.22 805 9196 3450 4876 870 62.7 MiB 0.10 0.00 3.54047 -120.422 -3.54047 3.54047 0.63 0.000719555 0.000666722 0.0421606 0.0391707 30 2070 21 6.65987e+06 202848 526063. 1820.29 1.15 0.133195 0.117825 22546 126617 -1 1714 18 1177 1730 137693 31307 2.74077 2.74077 -114.698 -2.74077 0 0 666494. 2306.21 0.18 0.07 0.11 -1 -1 0.18 0.0262375 0.0230395 115 96 0 0 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.83 vpr 62.61 MiB 0.05 7032 -1 -1 1 0.03 -1 -1 30428 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1002 18111 5520 9663 2928 62.6 MiB 0.17 0.00 3.45184 -118.995 -3.45184 3.45184 0.63 0.000771318 0.000714881 0.063436 0.0588405 32 2572 22 6.65987e+06 443730 554710. 1919.41 0.86 0.149075 0.132635 22834 132086 -1 2094 23 1557 2215 177177 40693 2.81651 2.81651 -115.248 -2.81651 0 0 701300. 2426.64 0.19 0.09 0.14 -1 -1 0.19 0.0348295 0.0305177 149 65 61 32 64 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 5.70 vpr 62.95 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30784 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 24.7 MiB 0.32 1201 15034 3694 9653 1687 63.0 MiB 0.16 0.00 4.6905 -158.567 -4.6905 4.6905 0.63 0.000917083 0.000850746 0.058484 0.0543283 26 3501 45 6.65987e+06 545154 477104. 1650.88 2.73 0.206556 0.181139 21682 110474 -1 2898 27 2771 4256 347098 74743 4.67831 4.67831 -171.071 -4.67831 0 0 585099. 2024.56 0.16 0.13 0.10 -1 -1 0.16 0.0455005 0.0394765 186 96 64 32 96 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.61 vpr 61.98 MiB 0.04 6768 -1 -1 1 0.03 -1 -1 30168 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63468 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.5 MiB 0.21 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.63 0.00052958 0.000493126 0.0358871 0.0334003 26 1551 21 6.65987e+06 190170 477104. 1650.88 1.00 0.100383 0.0883961 21682 110474 -1 1190 20 763 1050 82475 20160 1.84185 1.84185 -76.8325 -1.84185 0 0 585099. 2024.56 0.17 0.05 0.10 -1 -1 0.17 0.0222499 0.0193469 83 56 0 0 53 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.41 vpr 62.14 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63632 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.7 MiB 0.09 758 10536 3415 5493 1628 62.1 MiB 0.10 0.00 3.52904 -110.224 -3.52904 3.52904 0.63 0.000615174 0.000572003 0.0412953 0.0384438 32 1744 20 6.65987e+06 202848 554710. 1919.41 0.80 0.114729 0.101274 22834 132086 -1 1542 19 962 1393 111108 25419 2.75277 2.75277 -105.134 -2.75277 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0312569 0.0274112 96 34 60 30 30 30 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.56 vpr 62.54 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30096 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 23.7 MiB 0.10 856 9872 2316 7018 538 62.5 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.64 0.000646025 0.000600739 0.0380562 0.0354195 32 2373 21 6.65987e+06 228204 554710. 1919.41 0.86 0.114652 0.101149 22834 132086 -1 2064 21 1593 2821 225167 51580 2.94077 2.94077 -120.048 -2.94077 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0268309 0.0234654 126 34 64 32 32 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.22 vpr 62.23 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30428 -1 -1 34 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.08 696 13351 3608 8032 1711 62.2 MiB 0.11 0.00 3.32684 -88.9535 -3.32684 3.32684 0.64 0.000533747 0.000496456 0.038792 0.0360852 26 1641 17 6.65987e+06 431052 477104. 1650.88 0.73 0.0992142 0.0876063 21682 110474 -1 1556 20 1028 1580 111486 25927 2.73151 2.73151 -90.8715 -2.73151 0 0 585099. 2024.56 0.16 0.06 0.10 -1 -1 0.16 0.0214542 0.0186141 103 34 50 25 25 25 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.72 vpr 63.24 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 877 14541 4608 7775 2158 63.2 MiB 0.18 0.00 4.02035 -125.217 -4.02035 4.02035 0.63 0.000806725 0.000749157 0.0773694 0.0718484 32 2783 25 6.65987e+06 253560 554710. 1919.41 0.95 0.176376 0.156834 22834 132086 -1 2179 22 1803 3238 235220 56628 3.66425 3.66425 -124.906 -3.66425 0 0 701300. 2426.64 0.19 0.05 0.13 -1 -1 0.19 0.0189049 0.0167551 147 94 32 32 94 32 -fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 3.68 vpr 62.57 MiB 0.05 7220 -1 -1 1 0.03 -1 -1 30288 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64072 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.2 MiB 0.16 938 18660 5414 10450 2796 62.6 MiB 0.17 0.00 3.4903 -116.326 -3.4903 3.4903 0.63 0.000778371 0.000721938 0.0656141 0.0607971 32 2461 21 6.65987e+06 469086 554710. 1919.41 0.87 0.158441 0.140268 22834 132086 -1 2049 22 1978 3083 228662 51829 2.90817 2.90817 -112.877 -2.90817 0 0 701300. 2426.64 0.19 0.09 0.12 -1 -1 0.19 0.0333193 0.0290693 146 94 29 29 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 6.14 vpr 63.51 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30664 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 24.9 MiB 0.91 758 13949 4789 6835 2325 63.5 MiB 0.12 0.00 3.74419 -135.496 -3.74419 3.74419 0.66 0.000805874 0.00074779 0.0601069 0.0557882 58 1960 26 6.95648e+06 361892 997811. 3452.63 2.30 0.229723 0.200369 30370 251734 -1 1690 21 1723 2709 199283 47430 4.12556 4.12556 -141.742 -4.12556 0 0 1.25153e+06 4330.55 0.30 0.09 0.21 -1 -1 0.30 0.0340263 0.0297076 84 96 32 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 8.39 vpr 63.55 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30672 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.6 MiB 1.97 807 12716 4975 6082 1659 63.5 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.65 0.000757224 0.00070248 0.0629915 0.058513 48 2407 29 6.95648e+06 202660 865456. 2994.66 3.58 0.225398 0.197257 28354 207349 -1 1927 25 1932 2902 324926 79990 3.92522 3.92522 -137.188 -3.92522 0 0 1.05005e+06 3633.38 0.26 0.17 0.17 -1 -1 0.26 0.0506675 0.0438814 76 91 30 30 89 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 16.23 vpr 63.44 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 24.6 MiB 0.72 1022 7103 1835 4569 699 63.4 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.66 0.000740139 0.00068768 0.0322411 0.0299829 40 2728 21 6.95648e+06 275038 706193. 2443.58 12.69 0.331362 0.285048 26914 176310 -1 2485 24 1665 2605 297469 57129 3.85496 3.85496 -146.999 -3.85496 0 0 926341. 3205.33 0.24 0.12 0.16 -1 -1 0.24 0.0388303 0.0338927 77 65 54 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.12 vpr 63.36 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.6 MiB 0.37 752 10672 3799 5216 1657 63.4 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.65 0.00068378 0.000635503 0.0472427 0.043968 44 2696 27 6.95648e+06 231611 787024. 2723.27 2.01 0.186442 0.162797 27778 195446 -1 1855 24 1855 2771 237865 52045 3.87386 3.87386 -139.274 -3.87386 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0322562 0.0281657 75 34 87 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 6.62 vpr 63.43 MiB 0.06 6972 -1 -1 1 0.03 -1 -1 30316 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.8 MiB 0.65 716 9857 3295 4764 1798 63.4 MiB 0.10 0.00 3.66789 -133.791 -3.66789 3.66789 0.65 0.000746485 0.000693313 0.0481862 0.0448464 56 2163 40 6.95648e+06 188184 973134. 3367.25 3.10 0.229883 0.200875 29794 239141 -1 1657 23 2013 3439 281000 66532 3.88776 3.88776 -137.518 -3.88776 0 0 1.19926e+06 4149.71 0.29 0.10 0.20 -1 -1 0.29 0.0331287 0.0289903 78 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 14.94 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30428 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.8 MiB 0.39 727 15003 5272 7155 2576 63.7 MiB 0.12 0.00 3.0985 -114.166 -3.0985 3.0985 0.66 0.000774594 0.000718145 0.0578677 0.0536952 46 2435 46 6.95648e+06 419795 828058. 2865.25 11.80 0.38416 0.332084 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0302881 0.0264798 89 64 63 32 63 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.41 vpr 62.94 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30604 -1 -1 14 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.4 MiB 3.54 451 8433 2993 4087 1353 62.9 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.66 0.000575449 0.000535949 0.0335818 0.0312904 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.25 0.167617 0.145119 26914 176310 -1 1023 20 874 1371 101922 24751 2.85837 2.85837 -94.676 -2.85837 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0228175 0.0198745 54 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 5.77 vpr 63.07 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.6 MiB 0.48 722 11088 4563 6076 449 63.1 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.65 0.0008327 0.000776 0.0504746 0.0469401 46 2382 26 6.95648e+06 246087 828058. 2865.25 2.56 0.188363 0.164698 28066 200906 -1 1894 23 1388 1873 161200 37361 2.94563 2.94563 -111.672 -2.94563 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297735 0.0260166 77 4 115 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 11.46 vpr 62.98 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30232 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 1.54 523 9994 2759 5612 1623 63.0 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.65 0.000653658 0.000606421 0.0444859 0.041304 40 1829 42 6.95648e+06 159232 706193. 2443.58 7.27 0.33491 0.287725 26914 176310 -1 1508 28 1092 1638 211555 63072 3.68972 3.68972 -118.397 -3.68972 0 0 926341. 3205.33 0.23 0.11 0.12 -1 -1 0.23 0.0420189 0.0363805 57 85 0 0 84 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 6.09 vpr 62.93 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30356 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.91 638 10614 4216 4843 1555 62.9 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.65 0.000650113 0.000603717 0.0478757 0.0445693 38 2080 35 6.95648e+06 144757 678818. 2348.85 2.52 0.189557 0.165527 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0273877 0.0239382 62 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.11 vpr 63.25 MiB 0.02 6916 -1 -1 1 0.05 -1 -1 30132 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 1.59 651 11079 4648 6085 346 63.3 MiB 0.10 0.00 3.1095 -111.937 -3.1095 3.1095 0.72 0.000647361 0.000601785 0.050373 0.0469555 38 1744 25 6.95648e+06 173708 678818. 2348.85 1.77 0.173707 0.151984 26626 170182 -1 1430 20 1303 1735 125454 27661 2.98057 2.98057 -114.755 -2.98057 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0259027 0.022618 60 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 5.32 vpr 63.51 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30448 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.6 MiB 0.81 540 10476 4331 5741 404 63.5 MiB 0.09 0.00 2.9793 -106.716 -2.9793 2.9793 0.65 0.00065639 0.0006096 0.045402 0.0422115 50 1707 47 6.95648e+06 173708 902133. 3121.57 1.77 0.176299 0.153697 28642 213929 -1 1579 19 1147 1619 156011 39166 2.88957 2.88957 -115.614 -2.88957 0 0 1.08113e+06 3740.92 0.26 0.07 0.18 -1 -1 0.26 0.0253947 0.0221734 60 65 25 25 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.13 vpr 63.41 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30256 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.5 MiB 1.27 751 11803 3277 6504 2022 63.4 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.67 0.00075595 0.000702005 0.0501366 0.0466012 44 2514 37 6.95648e+06 303989 787024. 2723.27 3.03 0.216096 0.188407 27778 195446 -1 1869 20 1592 2389 201553 44970 3.67437 3.67437 -133.251 -3.67437 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0303115 0.0265731 79 58 64 32 57 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.54 vpr 63.62 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.7 MiB 0.99 832 16371 6652 7990 1729 63.6 MiB 0.14 0.00 3.72719 -138.885 -3.72719 3.72719 0.65 0.000777053 0.00072101 0.0662595 0.0614675 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.75 0.252121 0.220571 26914 176310 -1 2281 20 2007 2799 309109 71324 4.39516 4.39516 -161.353 -4.39516 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0312666 0.0273574 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 5.55 vpr 62.80 MiB 0.05 6920 -1 -1 1 0.03 -1 -1 30684 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.05 465 11234 4544 5569 1121 62.8 MiB 0.10 0.00 3.14676 -95.8879 -3.14676 3.14676 0.67 0.000686511 0.000638323 0.048916 0.0455068 46 1613 28 6.95648e+06 188184 828058. 2865.25 1.83 0.168088 0.14664 28066 200906 -1 1222 27 1160 1713 134878 32035 3.03062 3.03062 -101.451 -3.03062 0 0 1.01997e+06 3529.29 0.25 0.07 0.14 -1 -1 0.25 0.0290433 0.0251649 58 29 58 29 24 24 -fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.52 vpr 63.73 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.63 807 11813 5009 6533 271 63.7 MiB 0.13 0.00 3.1505 -120.688 -3.1505 3.1505 0.65 0.00141771 0.00131534 0.0670848 0.0623275 46 2437 23 6.95648e+06 188184 828058. 2865.25 2.02 0.219232 0.192434 28066 200906 -1 1906 25 2005 3150 253327 54546 3.15412 3.15412 -125.802 -3.15412 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0364726 0.0317591 77 63 64 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.81 vpr 63.80 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30244 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.9 MiB 1.39 707 11064 3419 5711 1934 63.8 MiB 0.11 0.00 3.0804 -113.837 -3.0804 3.0804 0.67 0.000744491 0.000689519 0.0507175 0.0470672 46 2393 47 6.95648e+06 289514 828058. 2865.25 2.76 0.226558 0.197194 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.24 0.07 0.11 -1 -1 0.24 0.029687 0.025994 78 57 64 32 56 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.34 vpr 63.28 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30204 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.4 MiB 0.80 574 10698 2981 5511 2206 63.3 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.66 0.000667806 0.000619429 0.0414783 0.0385373 48 1509 24 6.95648e+06 289514 865456. 2994.66 1.82 0.174657 0.151996 28354 207349 -1 1322 21 1199 1662 152817 37624 2.58543 2.58543 -100.095 -2.58543 0 0 1.05005e+06 3633.38 0.26 0.07 0.17 -1 -1 0.26 0.0275562 0.0239977 67 65 29 29 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.50 vpr 62.52 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30208 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.0 MiB 0.36 450 11098 4789 5936 373 62.5 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.65 0.00050213 0.000467251 0.0394933 0.0367878 36 1377 32 6.95648e+06 144757 648988. 2245.63 1.61 0.146611 0.12761 26050 158493 -1 1138 20 738 953 94219 20604 2.10138 2.10138 -84.8654 -2.10138 0 0 828058. 2865.25 0.21 0.05 0.14 -1 -1 0.21 0.0205962 0.0179419 45 34 24 24 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 7.08 vpr 63.29 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30412 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.4 MiB 1.09 525 9374 3845 5090 439 63.3 MiB 0.10 0.00 3.8254 -127.041 -3.8254 3.8254 0.71 0.000807564 0.000751147 0.0493322 0.0459326 46 1860 48 6.95648e+06 159232 828058. 2865.25 3.12 0.217029 0.189114 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.032612 0.0283618 61 64 31 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 6.34 vpr 63.50 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30236 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.7 MiB 0.40 664 13663 4054 7770 1839 63.5 MiB 0.14 0.00 3.70954 -128.174 -3.70954 3.70954 0.65 0.000729895 0.000678103 0.0673952 0.0626513 46 2326 31 6.95648e+06 303989 828058. 2865.25 3.14 0.224234 0.196772 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0307136 0.026939 81 34 91 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 6.54 vpr 63.84 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30612 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.1 MiB 1.10 791 14779 5223 7361 2195 63.8 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.65 0.000845583 0.000784988 0.0639627 0.0593862 48 2442 23 6.95648e+06 390843 865456. 2994.66 2.57 0.233281 0.203625 28354 207349 -1 1936 24 1566 2374 223232 50475 4.21506 4.21506 -137.225 -4.21506 0 0 1.05005e+06 3633.38 0.26 0.10 0.17 -1 -1 0.26 0.0382407 0.0332439 85 124 0 0 125 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 5.22 vpr 62.28 MiB 0.04 6764 -1 -1 1 0.03 -1 -1 30720 -1 -1 13 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63776 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 23.8 MiB 0.87 348 7809 2770 3912 1127 62.3 MiB 0.06 0.00 2.19726 -66.8557 -2.19726 2.19726 0.65 0.000520141 0.00048389 0.0290685 0.0270564 46 937 48 6.95648e+06 188184 828058. 2865.25 1.73 0.133386 0.115596 28066 200906 -1 700 16 585 711 35618 10755 2.09953 2.09953 -64.2894 -2.09953 0 0 1.01997e+06 3529.29 0.25 0.04 0.18 -1 -1 0.25 0.0167711 0.014753 44 30 26 26 22 22 -fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 7.00 vpr 63.44 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30144 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.7 MiB 0.80 737 10316 4241 5568 507 63.4 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.66 0.000691905 0.000643038 0.0481539 0.0448461 48 2419 30 6.95648e+06 173708 865456. 2994.66 3.10 0.195138 0.170797 28354 207349 -1 1970 49 3641 5913 1247564 597467 4.02741 4.02741 -146.507 -4.02741 0 0 1.05005e+06 3633.38 0.26 0.36 0.17 -1 -1 0.26 0.0574908 0.0496754 74 3 122 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 4.47 vpr 62.67 MiB 0.04 6676 -1 -1 1 0.03 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.29 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.67 0.000466282 0.000432898 0.032831 0.0305024 34 1791 46 6.95648e+06 115805 618332. 2139.56 1.60 0.145898 0.126962 25762 151098 -1 1578 15 672 845 101336 20530 2.29898 2.29898 -94.9582 -2.29898 0 0 787024. 2723.27 0.20 0.05 0.14 -1 -1 0.20 0.0155766 0.0137291 44 3 53 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.42 vpr 63.35 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30624 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.7 MiB 0.50 827 16371 5667 8716 1988 63.4 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.68 0.000751139 0.000696051 0.0639691 0.0592373 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.07 0.219677 0.192122 26914 176310 -1 2306 28 2333 3677 611276 186684 4.54726 4.54726 -161.071 -4.54726 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0385571 0.0335002 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 7.64 vpr 63.39 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30172 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.6 MiB 0.33 985 13754 4254 7657 1843 63.4 MiB 0.12 0.00 3.0955 -119.852 -3.0955 3.0955 0.65 0.000701636 0.000651792 0.0488406 0.0453699 36 2880 44 6.95648e+06 405319 648988. 2245.63 4.57 0.209521 0.182849 26050 158493 -1 2276 19 1555 2177 205823 40914 3.09187 3.09187 -128.104 -3.09187 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0270326 0.0237357 87 3 124 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 5.96 vpr 63.64 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30584 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.7 MiB 0.33 789 18308 6099 10070 2139 63.6 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.67 0.000771296 0.000714486 0.0732736 0.067875 46 2780 28 6.95648e+06 405319 828058. 2865.25 2.84 0.238946 0.209821 28066 200906 -1 2019 22 1957 3119 228267 50402 4.02846 4.02846 -146.936 -4.02846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338506 0.0295608 87 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 6.42 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.72 541 9374 3087 4731 1556 63.0 MiB 0.10 0.00 2.8982 -102.358 -2.8982 2.8982 0.67 0.000735864 0.000691673 0.0512937 0.0477817 38 2009 38 6.95648e+06 144757 678818. 2348.85 3.03 0.1926 0.168113 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0276089 0.0240681 57 34 54 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.14 vpr 62.84 MiB 0.04 6860 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.2 MiB 0.55 571 8444 3466 4635 343 62.8 MiB 0.08 0.00 3.1175 -112.058 -3.1175 3.1175 0.67 0.000615567 0.00057243 0.0357287 0.033258 40 1947 30 6.95648e+06 173708 706193. 2443.58 1.94 0.169244 0.146684 26914 176310 -1 1462 22 1368 1858 147173 34387 3.36447 3.36447 -118.852 -3.36447 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.026427 0.0230086 60 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.35 vpr 62.91 MiB 0.05 6900 -1 -1 1 0.03 -1 -1 30368 -1 -1 13 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.3 MiB 0.55 505 10257 3681 4972 1604 62.9 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.66 0.000581545 0.000540482 0.0414812 0.0386228 44 1727 27 6.95648e+06 188184 787024. 2723.27 2.12 0.163838 0.142439 27778 195446 -1 1150 19 1026 1535 102002 25239 3.07097 3.07097 -99.8006 -3.07097 0 0 997811. 3452.63 0.26 0.06 0.17 -1 -1 0.26 0.0226589 0.0197483 61 34 56 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.17 vpr 63.01 MiB 0.02 6748 -1 -1 1 0.03 -1 -1 30308 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.23 703 9374 3895 5319 160 63.0 MiB 0.09 0.00 2.93285 -116.414 -2.93285 2.93285 0.66 0.000612187 0.000569167 0.0392736 0.0365728 44 2101 25 6.95648e+06 144757 787024. 2723.27 2.18 0.163883 0.142867 27778 195446 -1 1725 23 1661 2370 207803 42982 3.06662 3.06662 -125.546 -3.06662 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.029518 0.025764 64 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.13 vpr 63.23 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.5 MiB 0.16 623 13443 5605 7395 443 63.2 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.66 0.000629843 0.000585072 0.0486487 0.0452508 44 2077 38 6.95648e+06 303989 787024. 2723.27 2.24 0.186596 0.162701 27778 195446 -1 1485 21 1308 2020 167131 38664 3.03252 3.03252 -115.524 -3.03252 0 0 997811. 3452.63 0.26 0.08 0.19 -1 -1 0.26 0.0275901 0.0240641 68 34 61 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.44 vpr 63.10 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30220 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.6 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.66 0.000624575 0.000580017 0.0399226 0.0371231 46 1411 35 6.95648e+06 260562 828058. 2865.25 2.05 0.176321 0.153225 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268241 0.0233241 64 61 29 29 57 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 17.92 vpr 63.83 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30568 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.74 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.66 0.000827677 0.000767647 0.0605035 0.0562107 50 2802 35 6.95648e+06 405319 902133. 3121.57 14.31 0.416063 0.360027 28642 213929 -1 2332 25 2175 3439 375097 108678 4.03032 4.03032 -146.333 -4.03032 0 0 1.08113e+06 3740.92 0.27 0.13 0.18 -1 -1 0.27 0.0393316 0.0343178 100 29 128 32 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.45 vpr 63.75 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30400 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 24.9 MiB 0.93 786 12739 3070 7853 1816 63.7 MiB 0.12 0.00 3.0804 -115.407 -3.0804 3.0804 0.65 0.000781296 0.000723929 0.051149 0.0475119 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.70 0.212018 0.185059 26914 176310 -1 2064 29 2165 3168 424279 118679 3.42677 3.42677 -132.58 -3.42677 0 0 926341. 3205.33 0.23 0.14 0.15 -1 -1 0.23 0.0410768 0.0356608 87 65 62 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 5.70 vpr 63.34 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.4 MiB 1.06 525 12362 5188 6715 459 63.3 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.65 0.000675989 0.000627411 0.0529355 0.0492012 50 1653 27 6.95648e+06 217135 902133. 3121.57 1.90 0.18966 0.165633 28642 213929 -1 1365 15 974 1392 100457 25026 3.30467 3.30467 -110.851 -3.30467 0 0 1.08113e+06 3740.92 0.26 0.05 0.18 -1 -1 0.26 0.0216951 0.0190699 62 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.50 vpr 63.64 MiB 0.02 7168 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.53 965 12791 5492 6957 342 63.6 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.65 0.000746072 0.000692342 0.0614204 0.0570389 38 2599 23 6.95648e+06 202660 678818. 2348.85 2.34 0.211149 0.185007 26626 170182 -1 2274 19 1642 2425 231061 46047 3.19222 3.19222 -127.52 -3.19222 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0288782 0.0253066 79 64 60 30 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.87 vpr 63.90 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.12 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.65 0.00084012 0.000780514 0.0592324 0.0550615 44 2926 36 6.95648e+06 202660 787024. 2723.27 2.96 0.23878 0.207589 27778 195446 -1 2025 23 1537 2329 224354 48388 4.76041 4.76041 -155.232 -4.76041 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0371166 0.0322964 78 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.36 vpr 63.68 MiB 0.02 7256 -1 -1 1 0.03 -1 -1 30460 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.42 775 10476 3672 5136 1668 63.7 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.65 0.000768648 0.000713199 0.053456 0.0496077 44 2669 43 6.95648e+06 188184 787024. 2723.27 2.17 0.22894 0.199259 27778 195446 -1 1914 26 1364 2112 181850 37955 4.40171 4.40171 -141.943 -4.40171 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0378706 0.0329743 76 90 31 31 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 6.66 vpr 63.59 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30500 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.7 MiB 0.84 864 15493 5631 7761 2101 63.6 MiB 0.14 0.00 3.1285 -114.829 -3.1285 3.1285 0.67 0.000780585 0.000723274 0.0646432 0.0600666 38 2848 26 6.95648e+06 361892 678818. 2348.85 3.13 0.221189 0.193855 26626 170182 -1 2191 21 1803 2729 221783 46022 3.43477 3.43477 -128.897 -3.43477 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0313667 0.0274556 85 64 60 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.53 vpr 63.87 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30680 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65400 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 25.0 MiB 0.49 956 10743 3793 5013 1937 63.9 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.65 0.000772885 0.000717777 0.0440934 0.0409993 44 2711 27 6.95648e+06 376368 787024. 2723.27 2.40 0.198967 0.173398 27778 195446 -1 2109 24 2195 3331 275496 54878 4.09626 4.09626 -152.561 -4.09626 0 0 997811. 3452.63 0.25 0.11 0.11 -1 -1 0.25 0.0349637 0.0305893 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 17.93 vpr 64.00 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65536 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.7 MiB 0.88 1078 14999 4071 8495 2433 64.0 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.66 0.000914787 0.000848334 0.0669773 0.0621348 40 2955 26 6.95648e+06 448746 706193. 2443.58 14.28 0.43074 0.37192 26914 176310 -1 2667 20 2127 3183 309846 62326 4.36702 4.36702 -161.254 -4.36702 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.036351 0.0318076 104 96 62 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 6.37 vpr 63.49 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30540 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 0.60 721 10304 4339 5695 270 63.5 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.67 0.000626714 0.000582494 0.0440208 0.0409723 36 2215 27 6.95648e+06 159232 648988. 2245.63 3.11 0.172259 0.150164 26050 158493 -1 1732 21 1370 1948 180008 36653 3.49897 3.49897 -130.737 -3.49897 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0260322 0.022742 62 34 62 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 5.11 vpr 63.53 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30396 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.7 MiB 0.41 784 13959 3819 8017 2123 63.5 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.55 0.000768293 0.000713404 0.0566325 0.0526458 48 2294 26 6.95648e+06 390843 865456. 2994.66 2.11 0.21044 0.184029 28354 207349 -1 1943 20 1718 2664 236707 49909 4.16366 4.16366 -148.517 -4.16366 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0300851 0.0263255 86 64 62 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 6.28 vpr 63.80 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30564 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.75 863 13557 4887 6407 2263 63.8 MiB 0.11 0.00 3.29596 -116.543 -3.29596 3.29596 0.65 0.000760321 0.000705017 0.0545203 0.0506466 50 2481 26 6.95648e+06 376368 902133. 3121.57 2.60 0.204345 0.178602 28642 213929 -1 1941 42 2097 3578 542152 243437 3.19817 3.19817 -117.898 -3.19817 0 0 1.08113e+06 3740.92 0.26 0.20 0.18 -1 -1 0.26 0.0547317 0.047295 85 63 62 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 8.29 vpr 63.30 MiB 0.10 7000 -1 -1 1 0.03 -1 -1 30524 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.6 MiB 0.83 760 7738 3134 4374 230 63.3 MiB 0.08 0.00 3.65689 -135.736 -3.65689 3.65689 0.65 0.00070816 0.000657961 0.0361191 0.0336373 44 3266 47 6.95648e+06 188184 787024. 2723.27 4.63 0.195374 0.169851 27778 195446 -1 2257 23 1979 3279 378806 78188 4.10246 4.10246 -155.26 -4.10246 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.031844 0.0278397 78 3 128 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.55 vpr 63.81 MiB 0.03 7036 -1 -1 1 0.04 -1 -1 30408 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65344 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 24.9 MiB 1.55 808 11991 3810 6067 2114 63.8 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.65 0.000786115 0.000729626 0.052251 0.0485884 46 2159 29 6.95648e+06 332941 828058. 2865.25 2.30 0.214274 0.186971 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.25 0.07 0.11 -1 -1 0.25 0.0308622 0.0270065 81 96 25 25 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 5.45 vpr 63.84 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.79 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.65 0.00076373 0.000709159 0.0501642 0.0466061 46 2291 24 6.95648e+06 405319 828058. 2865.25 1.94 0.200017 0.174548 28066 200906 -1 1858 23 1545 2365 175180 37261 3.21717 3.21717 -118.528 -3.21717 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0348641 0.030425 85 61 64 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 5.68 vpr 63.94 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30432 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65476 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.3 MiB 0.56 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.65 0.000777787 0.000720411 0.0587256 0.054432 46 2386 25 6.95648e+06 405319 828058. 2865.25 2.38 0.213129 0.186329 28066 200906 -1 1704 20 1776 2669 180886 40942 3.11497 3.11497 -117.791 -3.11497 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0309563 0.0271394 88 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 6.17 vpr 63.85 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30532 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 25.0 MiB 0.52 938 15617 5888 7604 2125 63.8 MiB 0.14 0.00 3.66789 -137.042 -3.66789 3.66789 0.65 0.000739817 0.00068669 0.0584745 0.0542802 44 2729 48 6.95648e+06 405319 787024. 2723.27 2.87 0.231972 0.20268 27778 195446 -1 2182 23 2013 3135 263852 51871 4.07726 4.07726 -148.498 -4.07726 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0326036 0.0284901 85 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.21 vpr 63.57 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 25.1 MiB 0.97 799 12448 3955 5788 2705 63.6 MiB 0.12 0.00 3.78219 -138.337 -3.78219 3.78219 0.71 0.000884798 0.000812115 0.0542225 0.0502694 44 2633 42 6.95648e+06 434271 787024. 2723.27 2.39 0.227336 0.198178 27778 195446 -1 1886 22 1913 2793 210024 51776 4.23256 4.23256 -151.401 -4.23256 0 0 997811. 3452.63 0.26 0.10 0.17 -1 -1 0.26 0.0335008 0.029245 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 21.91 vpr 63.88 MiB 0.05 7160 -1 -1 1 0.03 -1 -1 30480 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.2 MiB 1.24 822 11983 4768 6508 707 63.9 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.65 0.000827936 0.000769042 0.0538013 0.0499986 44 3007 44 6.95648e+06 361892 787024. 2723.27 17.93 0.413065 0.355678 27778 195446 -1 2186 29 1784 2766 272117 64702 3.83002 3.83002 -138.199 -3.83002 0 0 997811. 3452.63 0.24 0.07 0.11 -1 -1 0.24 0.0230894 0.0202217 84 122 0 0 122 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.34 vpr 63.76 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30444 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.0 MiB 1.11 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000808834 0.000751515 0.054335 0.0505417 40 2535 24 6.95648e+06 188184 706193. 2443.58 2.65 0.216316 0.188985 26914 176310 -1 2242 23 1895 3260 303296 62171 4.06146 4.06146 -147.534 -4.06146 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0193723 0.0171277 78 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.29 vpr 63.16 MiB 0.04 6744 -1 -1 1 0.03 -1 -1 30564 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.5 MiB 0.17 594 10647 4341 5910 396 63.2 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.70 0.000645758 0.000600202 0.0381608 0.0354233 56 1741 22 6.95648e+06 332941 973134. 3367.25 2.27 0.165474 0.1442 29794 239141 -1 1341 20 1293 2020 155711 36747 3.07612 3.07612 -112.307 -3.07612 0 0 1.19926e+06 4149.71 0.29 0.07 0.20 -1 -1 0.29 0.0254144 0.0222203 71 34 63 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 16.41 vpr 63.45 MiB 0.04 6932 -1 -1 1 0.03 -1 -1 30328 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.8 MiB 1.03 610 8444 3495 4676 273 63.4 MiB 0.09 0.00 3.0405 -112.422 -3.0405 3.0405 0.65 0.000893196 0.00082361 0.0429175 0.0398144 48 1986 36 6.95648e+06 144757 865456. 2994.66 12.64 0.336895 0.289861 28354 207349 -1 1587 21 1492 2244 248234 67713 3.07482 3.07482 -121.215 -3.07482 0 0 1.05005e+06 3633.38 0.26 0.09 0.17 -1 -1 0.26 0.0292001 0.0254931 63 94 0 0 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 22.83 vpr 63.60 MiB 0.05 7104 -1 -1 1 0.03 -1 -1 30772 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.3 MiB 0.59 1000 14152 3772 8188 2192 63.6 MiB 0.14 0.00 4.46224 -157.711 -4.46224 4.46224 0.65 0.000883339 0.000820977 0.0617213 0.0573182 48 3589 41 6.95648e+06 434271 865456. 2994.66 19.31 0.486896 0.419306 28354 207349 -1 2647 39 3273 5242 691557 203542 5.05191 5.05191 -180.38 -5.05191 0 0 1.05005e+06 3633.38 0.27 0.23 0.18 -1 -1 0.27 0.0632437 0.0548627 103 65 96 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.48 vpr 63.57 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.7 MiB 0.60 717 11983 4638 6220 1125 63.6 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.65 0.000732211 0.000679808 0.0482652 0.0445208 46 2078 38 6.95648e+06 347416 828058. 2865.25 2.33 0.207495 0.180477 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0296739 0.0260194 83 34 92 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.99 vpr 62.87 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30388 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.5 MiB 0.28 571 10581 4367 5776 438 62.9 MiB 0.10 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000624132 0.000580397 0.0436408 0.0406775 38 2214 32 6.95648e+06 275038 678818. 2348.85 3.16 0.176367 0.153403 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.25 0.04 0.14 -1 -1 0.25 0.0137549 0.0122137 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 7.62 vpr 63.81 MiB 0.03 7328 -1 -1 1 0.04 -1 -1 30856 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.5 MiB 1.87 1126 15215 3732 10105 1378 63.8 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.64 0.000947963 0.000880294 0.0702237 0.0651985 64 2603 22 6.95648e+06 448746 1.08113e+06 3740.92 2.66 0.256214 0.224081 31522 276338 -1 2323 24 2383 3561 336579 68033 4.75731 4.75731 -169.715 -4.75731 0 0 1.36325e+06 4717.13 0.33 0.13 0.26 -1 -1 0.33 0.0431568 0.0377567 103 127 32 32 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.06 vpr 63.57 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30616 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.6 MiB 1.06 804 14375 4842 7223 2310 63.6 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.65 0.000754408 0.000699746 0.0550887 0.0510594 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.36 0.19909 0.174424 26914 176310 -1 2058 22 2085 2911 261368 53902 3.81376 3.81376 -147.514 -3.81376 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0323659 0.0283721 86 34 96 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.13 vpr 63.11 MiB 0.04 6756 -1 -1 1 0.03 -1 -1 30304 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.6 MiB 0.31 740 12763 4452 6451 1860 63.1 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.66 0.000613264 0.000569724 0.0422527 0.0393145 44 2104 25 6.95648e+06 347416 787024. 2723.27 2.16 0.164787 0.14378 27778 195446 -1 1671 21 1472 2267 168285 34875 2.92922 2.92922 -117.305 -2.92922 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0252353 0.0220465 70 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.32 vpr 63.49 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30888 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.50 924 14567 5045 6877 2645 63.5 MiB 0.13 0.00 4.52824 -159.979 -4.52824 4.52824 0.65 0.000860252 0.000799772 0.061709 0.057364 54 3003 36 6.95648e+06 448746 949917. 3286.91 3.96 0.252431 0.220257 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.28 0.12 0.19 -1 -1 0.28 0.0377166 0.032947 105 34 128 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 4.90 vpr 62.86 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30224 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.34 618 10614 4475 5915 224 62.9 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.66 0.00061319 0.000570121 0.0442681 0.0412025 46 1828 25 6.95648e+06 144757 828058. 2865.25 1.92 0.168334 0.14725 28066 200906 -1 1458 24 1480 2065 162501 35824 3.30322 3.30322 -119.042 -3.30322 0 0 1.01997e+06 3529.29 0.25 0.08 0.18 -1 -1 0.25 0.0283245 0.0246925 62 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 13.28 vpr 62.95 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30428 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.5 MiB 0.80 601 10163 2708 5873 1582 62.9 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.68 0.000618254 0.000574921 0.0370486 0.0344865 46 1545 25 6.95648e+06 303989 828058. 2865.25 9.72 0.321302 0.275939 28066 200906 -1 1217 20 1164 1727 130235 38121 3.03987 3.03987 -109.31 -3.03987 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0247784 0.0216718 65 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 7.35 vpr 63.43 MiB 0.05 7208 -1 -1 1 0.03 -1 -1 30404 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.24 705 12856 4698 6070 2088 63.4 MiB 0.12 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.000744683 0.000690741 0.0581135 0.0539501 48 2602 41 6.95648e+06 289514 865456. 2994.66 3.12 0.22579 0.196935 28354 207349 -1 1999 20 1647 2572 248506 54385 3.33447 3.33447 -120.651 -3.33447 0 0 1.05005e+06 3633.38 0.26 0.09 0.22 -1 -1 0.26 0.0293305 0.0256081 77 88 29 29 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 13.12 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65304 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.9 MiB 0.84 807 13117 5264 6347 1506 63.8 MiB 0.13 0.00 3.65689 -136.729 -3.65689 3.65689 0.65 0.000777952 0.000722481 0.0653681 0.0607189 40 2249 23 6.95648e+06 188184 706193. 2443.58 9.50 0.343898 0.298658 26914 176310 -1 1948 24 2181 2903 293446 60806 4.18386 4.18386 -152.298 -4.18386 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0375576 0.0328295 78 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.77 vpr 63.73 MiB 0.05 7120 -1 -1 1 0.05 -1 -1 30600 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.8 MiB 1.50 890 14345 5510 6931 1904 63.7 MiB 0.13 0.00 3.74419 -138.408 -3.74419 3.74419 0.66 0.000778559 0.000723486 0.0602509 0.0559962 48 2618 24 6.95648e+06 361892 865456. 2994.66 2.38 0.21599 0.189423 28354 207349 -1 2269 24 2131 3426 411588 77965 4.22156 4.22156 -150.364 -4.22156 0 0 1.05005e+06 3633.38 0.26 0.13 0.17 -1 -1 0.26 0.0354481 0.0308888 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.97 vpr 63.36 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30664 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.6 MiB 0.97 685 10813 4185 5763 865 63.4 MiB 0.10 0.00 3.05815 -117.015 -3.05815 3.05815 0.67 0.000718417 0.000659877 0.0415913 0.0386653 44 2023 47 6.95648e+06 347416 787024. 2723.27 2.26 0.201209 0.174623 27778 195446 -1 1664 21 1425 2142 188885 39124 3.17182 3.17182 -124.314 -3.17182 0 0 997811. 3452.63 0.25 0.08 0.19 -1 -1 0.25 0.0277721 0.0242484 69 65 32 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 7.12 vpr 63.51 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30600 -1 -1 10 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65036 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.38 684 10105 3894 4557 1654 63.5 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.66 0.000677441 0.000628577 0.0473566 0.0439737 36 2232 46 6.95648e+06 144757 648988. 2245.63 3.15 0.20973 0.1824 26050 158493 -1 1847 21 1111 1754 173271 36291 3.39567 3.39567 -126.435 -3.39567 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0276674 0.0240916 59 90 0 0 89 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 14.27 vpr 63.47 MiB 0.04 7056 -1 -1 1 0.05 -1 -1 30384 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.6 MiB 0.69 949 12711 4087 6844 1780 63.5 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.66 0.00072159 0.000669844 0.0527315 0.0489987 40 2353 22 6.95648e+06 318465 706193. 2443.58 10.83 0.343695 0.29713 26914 176310 -1 2192 23 1591 2349 228866 46264 3.38347 3.38347 -130.956 -3.38347 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.0320439 0.027924 79 60 60 30 57 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 8.48 vpr 63.39 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.6 MiB 0.69 684 10156 4202 5354 600 63.4 MiB 0.09 0.00 4.24545 -126.653 -4.24545 4.24545 0.73 0.000662507 0.000615554 0.0445966 0.04149 38 2620 28 6.95648e+06 231611 678818. 2348.85 5.05 0.200077 0.174752 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0295948 0.02581 74 34 84 28 28 28 -fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.40 vpr 63.30 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30152 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.4 MiB 0.77 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.72 0.000646488 0.000600087 0.0415839 0.0386656 38 1982 33 6.95648e+06 173708 678818. 2348.85 2.94 0.182672 0.158582 26626 170182 -1 1483 23 1345 1781 161503 35879 3.07917 3.07917 -115.28 -3.07917 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0291518 0.0253729 61 63 30 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.99 vpr 63.47 MiB 0.05 7052 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.22 777 7669 3175 4304 190 63.5 MiB 0.08 0.00 3.0765 -113.072 -3.0765 3.0765 0.66 0.000692012 0.000642604 0.037267 0.0346309 36 2390 29 6.95648e+06 144757 648988. 2245.63 3.16 0.186965 0.162546 26050 158493 -1 2034 23 1367 2186 205265 40568 3.08082 3.08082 -125.097 -3.08082 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0310339 0.0270316 60 91 0 0 91 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 16.97 vpr 63.10 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.19 795 9448 3333 4743 1372 63.1 MiB 0.09 0.00 3.89245 -136.332 -3.89245 3.89245 0.66 0.000691261 0.000642715 0.0365182 0.0339892 50 2553 48 6.95648e+06 361892 902133. 3121.57 14.06 0.333722 0.287327 28642 213929 -1 2114 23 1902 2897 353929 87715 4.19162 4.19162 -148.003 -4.19162 0 0 1.08113e+06 3740.92 0.26 0.11 0.17 -1 -1 0.26 0.0308642 0.0269922 86 4 124 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 21.30 vpr 63.50 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30580 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.6 MiB 1.27 926 10495 2590 6894 1011 63.5 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000773045 0.000717616 0.042985 0.0399217 40 2962 40 6.95648e+06 390843 706193. 2443.58 17.24 0.388125 0.334748 26914 176310 -1 2636 23 2167 3633 463776 91732 4.56126 4.56126 -163.581 -4.56126 0 0 926341. 3205.33 0.23 0.13 0.15 -1 -1 0.23 0.0339955 0.029662 86 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 8.12 vpr 63.72 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30368 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 24.8 MiB 1.53 831 9336 3198 4890 1248 63.7 MiB 0.09 0.00 3.70819 -135.715 -3.70819 3.70819 0.66 0.000777656 0.000721072 0.0389944 0.0361987 46 2950 33 6.95648e+06 376368 828058. 2865.25 3.85 0.206838 0.17993 28066 200906 -1 2143 23 1884 2994 286770 60092 4.20256 4.20256 -153.868 -4.20256 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0347155 0.0303553 85 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 7.67 vpr 63.58 MiB 0.05 7088 -1 -1 1 0.04 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 1.02 822 13351 4683 6743 1925 63.6 MiB 0.13 0.00 3.75544 -130.593 -3.75544 3.75544 0.66 0.000772927 0.000714858 0.0540502 0.0502175 48 3144 32 6.95648e+06 390843 865456. 2994.66 3.72 0.219065 0.191265 28354 207349 -1 2216 23 1706 2809 331362 74094 4.23512 4.23512 -146.218 -4.23512 0 0 1.05005e+06 3633.38 0.28 0.12 0.19 -1 -1 0.28 0.0346366 0.0302909 86 65 60 30 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.41 vpr 62.98 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.3 MiB 0.65 551 9064 3696 4990 378 63.0 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000622206 0.000578436 0.0385868 0.0359164 40 2106 28 6.95648e+06 173708 706193. 2443.58 2.03 0.166571 0.144956 26914 176310 -1 1742 21 1390 2079 215336 49601 3.29672 3.29672 -117.862 -3.29672 0 0 926341. 3205.33 0.23 0.08 0.16 -1 -1 0.23 0.0261525 0.0227576 62 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 6.81 vpr 63.54 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30476 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.7 MiB 0.72 751 12465 5336 6622 507 63.5 MiB 0.12 0.00 4.015 -133.992 -4.015 4.015 0.66 0.000755864 0.000680262 0.0619023 0.0574829 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.31 0.237494 0.207101 26914 176310 -1 2067 34 2814 3819 356731 77169 4.26826 4.26826 -149.469 -4.26826 0 0 926341. 3205.33 0.23 0.13 0.16 -1 -1 0.23 0.0448345 0.0388219 78 63 60 30 60 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 8.08 vpr 63.91 MiB 0.02 7200 -1 -1 1 0.03 -1 -1 30832 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.1 MiB 1.43 807 14351 4061 7900 2390 63.9 MiB 0.13 0.00 3.71619 -135.355 -3.71619 3.71619 0.69 0.000858692 0.000797229 0.0605001 0.0561588 46 2908 40 6.95648e+06 448746 828058. 2865.25 3.78 0.249161 0.217249 28066 200906 -1 1939 23 2014 3030 235895 51059 3.82846 3.82846 -142.937 -3.82846 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0372937 0.032416 88 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 7.65 vpr 63.70 MiB 0.07 7192 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65228 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.92 718 14035 5965 7479 591 63.7 MiB 0.13 0.00 3.9948 -135.983 -3.9948 3.9948 0.67 0.000773686 0.00071551 0.0638168 0.0592364 46 2454 32 6.95648e+06 318465 828058. 2865.25 3.83 0.235805 0.206275 28066 200906 -1 1765 20 1690 2511 178398 41934 3.85666 3.85666 -139.6 -3.85666 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0303671 0.0265644 81 94 31 31 93 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 7.06 vpr 63.68 MiB 0.04 7244 -1 -1 1 0.04 -1 -1 30556 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 24.8 MiB 1.42 700 13668 5834 7221 613 63.7 MiB 0.15 0.00 3.27591 -109.838 -3.27591 3.27591 0.66 0.000755956 0.00070101 0.0751212 0.0697989 46 2600 45 6.95648e+06 260562 828058. 2865.25 2.85 0.25841 0.226917 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.034217 0.0297953 75 92 26 26 90 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 7.63 vpr 63.47 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30544 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.6 MiB 1.49 782 12628 3922 6830 1876 63.5 MiB 0.13 0.00 3.65989 -133.508 -3.65989 3.65989 0.57 0.000922507 0.000856314 0.0649009 0.0603194 48 2610 29 6.95648e+06 188184 865456. 2994.66 3.43 0.22429 0.197631 28354 207349 -1 2209 29 2479 4113 509037 117147 4.20256 4.20256 -156.074 -4.20256 0 0 1.05005e+06 3633.38 0.26 0.15 0.12 -1 -1 0.26 0.0412986 0.0359143 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.30 vpr 63.49 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30312 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.7 MiB 1.07 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.65 0.000730764 0.000678505 0.0448402 0.0416658 48 1906 29 6.95648e+06 318465 865456. 2994.66 2.59 0.198782 0.173061 28354 207349 -1 1764 22 1731 2542 284729 82234 3.37557 3.37557 -115.85 -3.37557 0 0 1.05005e+06 3633.38 0.26 0.10 0.18 -1 -1 0.26 0.0310619 0.0270888 77 88 26 26 85 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 12.34 vpr 62.85 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30408 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.83 574 9219 3815 5040 364 62.9 MiB 0.08 0.00 2.94595 -112.182 -2.94595 2.94595 0.66 0.000622819 0.00057993 0.0393723 0.0367023 54 1709 44 6.95648e+06 144757 949917. 3286.91 8.76 0.340884 0.293818 29506 232905 -1 1314 20 1289 2001 164628 39075 3.22812 3.22812 -119.217 -3.22812 0 0 1.17392e+06 4061.99 0.28 0.08 0.20 -1 -1 0.28 0.0314778 0.0281022 61 3 96 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 8.99 vpr 63.57 MiB 0.04 7044 -1 -1 1 0.05 -1 -1 30528 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.7 MiB 3.20 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.66 0.00077828 0.000721461 0.0689048 0.0639232 54 2315 29 6.95648e+06 347416 949917. 3286.91 2.84 0.232743 0.204299 29506 232905 -1 1721 23 1883 2835 238613 53119 3.94276 3.94276 -141.903 -3.94276 0 0 1.17392e+06 4061.99 0.32 0.10 0.20 -1 -1 0.32 0.0345556 0.0302283 84 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.19 vpr 63.67 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.9 MiB 0.37 800 13117 5732 6986 399 63.7 MiB 0.13 0.00 3.79019 -142.199 -3.79019 3.79019 0.65 0.000776593 0.000720287 0.0635771 0.0588791 44 2724 46 6.95648e+06 188184 787024. 2723.27 2.11 0.246084 0.214538 27778 195446 -1 1926 21 2028 2743 207858 46404 4.38426 4.38426 -156.616 -4.38426 0 0 997811. 3452.63 0.29 0.09 0.16 -1 -1 0.29 0.0321258 0.0286356 81 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.91 vpr 63.16 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30576 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.3 MiB 1.03 575 11609 4562 5941 1106 63.2 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.65 0.000636295 0.000591527 0.0498343 0.0463619 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.16 0.190372 0.166014 26914 176310 -1 1731 21 1165 1685 157614 37483 3.97002 3.97002 -127.815 -3.97002 0 0 926341. 3205.33 0.23 0.07 0.18 -1 -1 0.23 0.027248 0.0238209 60 55 32 32 54 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 4.89 vpr 62.87 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30416 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 0.27 835 9529 3959 5371 199 62.9 MiB 0.08 0.00 3.0815 -119.168 -3.0815 3.0815 0.62 0.000600068 0.000558461 0.0391596 0.0364964 38 2078 34 6.95648e+06 159232 678818. 2348.85 2.05 0.172971 0.150865 26626 170182 -1 1828 19 1450 2046 180124 35435 3.13397 3.13397 -127.567 -3.13397 0 0 902133. 3121.57 0.25 0.09 0.14 -1 -1 0.25 0.0287636 0.025417 63 4 93 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 7.05 vpr 63.63 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30228 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.7 MiB 1.08 782 14483 5692 6794 1997 63.6 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000745533 0.000691208 0.0628421 0.0583984 38 2558 24 6.95648e+06 275038 678818. 2348.85 3.29 0.218849 0.191941 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.22 0.07 0.12 -1 -1 0.22 0.0276631 0.0243146 78 59 60 32 58 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 9.20 vpr 63.71 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.73 793 11474 4768 6294 412 63.7 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.66 0.000782064 0.000721097 0.0529644 0.0492692 40 2890 43 6.95648e+06 260562 706193. 2443.58 5.53 0.231613 0.202155 26914 176310 -1 2378 22 1806 2631 297663 70739 4.77112 4.77112 -159.623 -4.77112 0 0 926341. 3205.33 0.34 0.10 0.17 -1 -1 0.34 0.0290692 0.0257096 78 88 28 28 88 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 7.96 vpr 63.70 MiB 0.07 7084 -1 -1 1 0.04 -1 -1 30440 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65224 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.0 MiB 0.40 1152 4375 861 3334 180 63.7 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.72 0.000791395 0.000734941 0.0199656 0.0186126 46 3119 32 6.95648e+06 390843 828058. 2865.25 4.65 0.199845 0.173553 28066 200906 -1 2686 20 2302 3571 331681 63786 5.04706 5.04706 -177.777 -5.04706 0 0 1.01997e+06 3529.29 0.26 0.11 0.18 -1 -1 0.26 0.0326318 0.028675 100 3 156 32 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.54 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30476 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65068 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 0.97 698 14528 6104 7488 936 63.5 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.66 0.000717091 0.000666075 0.063989 0.0594953 44 2314 27 6.95648e+06 260562 787024. 2723.27 2.08 0.21557 0.188858 27778 195446 -1 1739 25 1741 2574 232387 49017 3.47552 3.47552 -123.196 -3.47552 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0338229 0.0294278 77 59 60 30 56 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 4.86 vpr 62.87 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.69 465 10459 4157 5359 943 62.9 MiB 0.08 0.00 3.15776 -95.8334 -3.15776 3.15776 0.67 0.000444349 0.00040769 0.0367995 0.0340578 38 1652 25 6.95648e+06 217135 678818. 2348.85 1.59 0.135008 0.117575 26626 170182 -1 1118 18 929 1153 85956 20126 2.85657 2.85657 -100.943 -2.85657 0 0 902133. 3121.57 0.23 0.05 0.13 -1 -1 0.23 0.0210303 0.0183744 57 34 54 27 27 27 -fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 7.12 vpr 63.88 MiB 0.02 7356 -1 -1 1 0.03 -1 -1 30628 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.72 956 13513 4288 6425 2800 63.9 MiB 0.15 0.00 4.037 -139.704 -4.037 4.037 0.74 0.000960914 0.000882125 0.074344 0.0690592 54 3228 47 6.95648e+06 434271 949917. 3286.91 3.45 0.288561 0.251752 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.28 0.12 0.15 -1 -1 0.28 0.0407435 0.0354206 103 95 62 31 95 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.85 vpr 63.85 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30616 -1 -1 14 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65380 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 3.45 899 8716 2535 4990 1191 63.8 MiB 0.10 0.00 4.57784 -152.287 -4.57784 4.57784 0.66 0.00083435 0.000775614 0.048477 0.0451101 40 2620 26 6.95648e+06 202660 706193. 2443.58 2.54 0.215211 0.18713 26914 176310 -1 2414 20 1639 2476 265073 53355 5.06741 5.06741 -166.299 -5.06741 0 0 926341. 3205.33 0.33 0.09 0.18 -1 -1 0.33 0.0293448 0.0259072 79 124 0 0 124 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 7.98 vpr 63.32 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30388 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.4 MiB 2.74 500 11389 4353 5738 1298 63.3 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.67 0.000685998 0.000637011 0.0531175 0.0493546 42 2142 50 6.95648e+06 144757 744469. 2576.02 2.59 0.221529 0.192768 27202 183097 -1 1444 22 1244 1875 149405 38732 3.73087 3.73087 -121.3 -3.73087 0 0 949917. 3286.91 0.23 0.07 0.15 -1 -1 0.23 0.029 0.0252441 58 89 0 0 89 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 5.54 vpr 63.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.8 MiB 0.33 819 12938 5293 7361 284 63.7 MiB 0.12 0.00 4.12326 -140.658 -4.12326 4.12326 0.66 0.000824745 0.000755572 0.0479804 0.044275 46 2429 24 6.95648e+06 318465 828058. 2865.25 2.40 0.162775 0.142561 28066 200906 -1 1982 22 1868 2829 225669 47368 4.34512 4.34512 -150.237 -4.34512 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0312379 0.027321 83 34 90 30 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.81 MiB 0.05 7280 -1 -1 1 0.03 -1 -1 30708 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65340 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.0 MiB 0.83 852 12560 4728 5964 1868 63.8 MiB 0.12 0.00 4.1192 -140.393 -4.1192 4.1192 0.68 0.000851021 0.000790612 0.059641 0.0554474 44 3193 49 6.95648e+06 332941 787024. 2723.27 2.44 0.270564 0.23535 27778 195446 -1 2288 22 2028 2862 231745 48719 4.08962 4.08962 -146.319 -4.08962 0 0 997811. 3452.63 0.27 0.10 0.17 -1 -1 0.27 0.0361565 0.0314477 95 64 87 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.97 vpr 63.57 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30408 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.7 MiB 0.90 739 10762 4429 5782 551 63.6 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.65 0.000727706 0.000676204 0.0461019 0.0428211 50 2308 30 6.95648e+06 289514 902133. 3121.57 2.33 0.195197 0.170237 28642 213929 -1 1813 22 1510 2423 194027 43283 3.23877 3.23877 -111.591 -3.23877 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0316708 0.0276653 78 61 58 30 58 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 6.40 vpr 63.73 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.0 MiB 0.50 907 15848 6161 8045 1642 63.7 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.66 0.000779286 0.000722778 0.0579356 0.0537598 48 2368 36 6.95648e+06 492173 865456. 2994.66 3.06 0.232932 0.203765 28354 207349 -1 2088 22 2029 2932 368389 96046 4.20576 4.20576 -151.328 -4.20576 0 0 1.05005e+06 3633.38 0.35 0.08 0.18 -1 -1 0.35 0.0182665 0.0162122 91 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.83 vpr 63.52 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 24.9 MiB 0.51 794 15215 5485 7366 2364 63.5 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.66 0.00077615 0.00071411 0.0572911 0.0529955 38 2664 32 6.95648e+06 448746 678818. 2348.85 3.61 0.220214 0.191983 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0339131 0.0295389 90 65 63 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.41 vpr 62.78 MiB 0.04 6788 -1 -1 1 0.04 -1 -1 30432 -1 -1 13 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.2 MiB 3.31 577 8599 3570 4706 323 62.8 MiB 0.05 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000600538 0.000558018 0.0212484 0.0196412 34 1710 33 6.95648e+06 188184 618332. 2139.56 1.47 0.155108 0.133252 25762 151098 -1 1350 20 1094 1347 115459 25488 2.99907 2.99907 -111.333 -2.99907 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0226184 0.019919 56 34 58 29 29 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 5.42 vpr 63.32 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30132 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.78 584 9839 4132 5456 251 63.3 MiB 0.09 0.00 2.9814 -102.92 -2.9814 2.9814 0.65 0.000657456 0.000610701 0.0446546 0.041499 42 1955 38 6.95648e+06 144757 744469. 2576.02 1.97 0.188135 0.163742 27202 183097 -1 1355 18 1059 1346 125015 28716 3.09482 3.09482 -106.044 -3.09482 0 0 949917. 3286.91 0.24 0.07 0.18 -1 -1 0.24 0.0251662 0.0220192 58 82 0 0 82 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 5.80 vpr 63.56 MiB 0.05 7152 -1 -1 1 0.03 -1 -1 30360 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.7 MiB 0.35 743 12331 4128 5906 2297 63.6 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.65 0.000723478 0.000671986 0.0463322 0.0430797 52 2318 48 6.95648e+06 405319 926341. 3205.33 2.66 0.215962 0.187934 29218 227130 -1 1690 21 1722 2427 228255 49513 3.93522 3.93522 -142.121 -3.93522 0 0 1.14541e+06 3963.36 0.29 0.09 0.13 -1 -1 0.29 0.0305602 0.02668 86 34 93 31 31 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 6.33 vpr 62.86 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30480 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.3 MiB 1.09 494 12399 5297 6440 662 62.9 MiB 0.12 0.00 3.26295 -100.502 -3.26295 3.26295 0.65 0.00061651 0.000573571 0.0618932 0.0575124 40 2019 35 6.95648e+06 202660 706193. 2443.58 2.49 0.196932 0.17265 26914 176310 -1 1572 22 1181 1659 161114 40293 3.72753 3.72753 -115.928 -3.72753 0 0 926341. 3205.33 0.25 0.08 0.15 -1 -1 0.25 0.0266303 0.0231931 59 56 29 29 52 26 -fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 6.65 vpr 62.88 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30280 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 1.00 698 10149 3910 5225 1014 62.9 MiB 0.09 0.00 3.05815 -118.306 -3.05815 3.05815 0.66 0.000658698 0.000612929 0.044926 0.0417695 38 2191 39 6.95648e+06 144757 678818. 2348.85 2.99 0.179291 0.156211 26626 170182 -1 1683 21 1507 2099 216763 42531 3.06992 3.06992 -126.76 -3.06992 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0269985 0.0235395 61 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 10.42 vpr 63.61 MiB 0.05 7100 -1 -1 1 0.04 -1 -1 30392 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 25.0 MiB 0.95 717 11607 3761 5813 2033 63.6 MiB 0.11 0.00 3.1175 -113.433 -3.1175 3.1175 0.66 0.000749416 0.000695965 0.0489661 0.0454743 40 2046 32 6.95648e+06 347416 706193. 2443.58 6.64 0.355485 0.306873 26914 176310 -1 1703 21 1731 2236 195586 47682 3.41277 3.41277 -124.646 -3.41277 0 0 926341. 3205.33 0.25 0.09 0.17 -1 -1 0.25 0.0312178 0.0273329 82 64 58 31 62 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 7.48 vpr 63.02 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30352 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.3 MiB 2.06 682 10459 3058 6921 480 63.0 MiB 0.10 0.00 3.13575 -104.344 -3.13575 3.13575 0.66 0.000659561 0.000614985 0.04815 0.0448486 36 1970 40 6.95648e+06 159232 648988. 2245.63 2.69 0.188081 0.163936 26050 158493 -1 1710 23 1139 1687 158222 32786 3.00882 3.00882 -113.396 -3.00882 0 0 828058. 2865.25 0.27 0.07 0.14 -1 -1 0.27 0.0277792 0.0241797 57 55 31 31 53 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.54 vpr 63.54 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.7 MiB 1.41 710 12323 5117 6727 479 63.5 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.71 0.000739018 0.000686485 0.053241 0.0494478 48 2125 29 6.95648e+06 275038 865456. 2994.66 2.29 0.206655 0.18079 28354 207349 -1 1740 21 1379 2041 173501 38582 3.37187 3.37187 -116.913 -3.37187 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0306844 0.0268187 76 65 52 26 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 6.57 vpr 63.74 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 25.1 MiB 1.36 717 15298 5325 7460 2513 63.7 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.65 0.00115133 0.0010924 0.0650913 0.0604416 44 2443 41 6.95648e+06 361892 787024. 2723.27 2.29 0.242246 0.211684 27778 195446 -1 1785 21 1733 2379 191405 42172 3.26427 3.26427 -126.623 -3.26427 0 0 997811. 3452.63 0.26 0.09 0.18 -1 -1 0.26 0.0328698 0.0285708 85 93 31 31 92 31 -fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.29 vpr 63.25 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30348 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.78 564 10149 3066 5426 1657 63.3 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.65 0.000664899 0.000617401 0.0489119 0.0455236 44 2002 28 6.95648e+06 144757 787024. 2723.27 1.82 0.182272 0.159285 27778 195446 -1 1411 23 1300 1937 149740 33462 3.22642 3.22642 -111.618 -3.22642 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0308609 0.0268999 61 61 32 32 60 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 5.89 vpr 63.18 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30060 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.3 MiB 1.01 611 8289 3413 4626 250 63.2 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.66 0.000686792 0.000638598 0.0395605 0.0368441 52 1978 31 6.95648e+06 144757 926341. 3205.33 2.11 0.185806 0.161943 29218 227130 -1 1356 21 1396 2136 148834 36358 2.87537 2.87537 -112.033 -2.87537 0 0 1.14541e+06 3963.36 0.29 0.08 0.19 -1 -1 0.29 0.0298204 0.0262716 63 63 32 32 62 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 7.00 vpr 63.62 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 24.7 MiB 0.86 951 8283 1857 5834 592 63.6 MiB 0.09 0.00 3.78219 -143.123 -3.78219 3.78219 0.66 0.000785399 0.000729796 0.0333155 0.0309581 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.39 0.199641 0.173447 26914 176310 -1 2302 28 2524 3706 414716 99584 4.11646 4.11646 -160.983 -4.11646 0 0 926341. 3205.33 0.23 0.14 0.16 -1 -1 0.23 0.039667 0.0345172 88 65 64 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.61 vpr 63.36 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30520 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 24.8 MiB 0.90 739 8336 2662 4258 1416 63.4 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.66 0.000708359 0.000658345 0.0369582 0.0343852 38 2387 48 6.95648e+06 275038 678818. 2348.85 4.03 0.209509 0.181675 26626 170182 -1 1562 20 1492 2155 111110 30563 3.16697 3.16697 -113.104 -3.16697 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294082 0.0257591 77 62 56 29 58 29 -fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.46 vpr 63.88 MiB 0.02 7208 -1 -1 1 0.03 -1 -1 30796 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.52 819 16473 6066 7302 3105 63.9 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.69 0.000867384 0.000804792 0.0716372 0.0664977 48 2605 47 6.95648e+06 419795 865456. 2994.66 4.95 0.284041 0.248003 28354 207349 -1 2211 29 2363 3592 414996 105744 4.94336 4.94336 -163.958 -4.94336 0 0 1.05005e+06 3633.38 0.27 0.15 0.19 -1 -1 0.27 0.0461677 0.0397452 89 127 0 0 128 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 6.15 vpr 62.79 MiB 0.04 6936 -1 -1 1 0.03 -1 -1 30360 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64292 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.2 MiB 1.27 588 9529 3953 5280 296 62.8 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.69 0.00057124 0.000540393 0.03761 0.0350133 38 2072 26 6.95648e+06 159232 678818. 2348.85 2.21 0.153644 0.133896 26626 170182 -1 1448 23 1135 1733 146308 32974 3.17932 3.17932 -111.193 -3.17932 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0330821 0.0288432 58 4 85 31 0 0 -fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.77 vpr 63.91 MiB 0.06 7036 -1 -1 1 0.04 -1 -1 30380 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.90 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.66 0.000788405 0.000730991 0.0567411 0.0524797 50 2285 32 6.95648e+06 332941 902133. 3121.57 3.04 0.222384 0.194103 28642 213929 -1 1644 22 1608 2085 170164 38147 3.77646 3.77646 -133.884 -3.77646 0 0 1.08113e+06 3740.92 0.26 0.08 0.18 -1 -1 0.26 0.0332403 0.0290069 81 92 28 28 92 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.28 vpr 63.29 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30172 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 2.75 613 11854 5235 6332 287 63.3 MiB 0.10 0.00 2.96105 -113.67 -2.96105 2.96105 0.66 0.000546313 0.000499437 0.056373 0.0522847 40 2066 46 6.95648e+06 144757 706193. 2443.58 2.80 0.225997 0.196887 26914 176310 -1 1732 25 1774 2512 267918 59105 3.24392 3.24392 -134.119 -3.24392 0 0 926341. 3205.33 0.23 0.10 0.18 -1 -1 0.23 0.0318516 0.0277945 61 96 0 0 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 5.86 vpr 63.64 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30340 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 1.03 784 11983 4223 5778 1982 63.6 MiB 0.11 0.00 3.13882 -116.487 -3.13882 3.13882 0.66 0.000772501 0.000716438 0.050022 0.0464075 48 2212 28 6.95648e+06 347416 865456. 2994.66 1.98 0.21085 0.183953 28354 207349 -1 1847 22 1492 2187 198389 43553 3.51907 3.51907 -127.302 -3.51907 0 0 1.05005e+06 3633.38 0.26 0.09 0.19 -1 -1 0.26 0.0337236 0.0294333 84 65 61 32 64 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 8.98 vpr 63.69 MiB 0.03 7352 -1 -1 1 0.04 -1 -1 30952 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.3 MiB 1.29 961 18301 6218 9454 2629 63.7 MiB 0.17 0.00 4.52824 -160.34 -4.52824 4.52824 0.67 0.000919043 0.000852124 0.0791877 0.0735032 46 3150 41 6.95648e+06 477698 828058. 2865.25 4.69 0.292937 0.256451 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0390305 0.0337889 104 96 64 32 96 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 5.01 vpr 62.56 MiB 0.02 6772 -1 -1 1 0.02 -1 -1 30304 -1 -1 10 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.0 MiB 0.43 395 8267 2975 4043 1249 62.6 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.67 0.000636996 0.000592323 0.0362019 0.0336536 38 1289 46 6.95648e+06 144757 678818. 2348.85 2.06 0.159408 0.137956 26626 170182 -1 760 22 604 724 45863 12408 2.06653 2.06653 -75.5464 -2.06653 0 0 902133. 3121.57 0.22 0.05 0.15 -1 -1 0.22 0.0224677 0.0194797 45 56 0 0 53 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.87 vpr 62.81 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30436 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.2 MiB 1.61 505 9994 3801 4923 1270 62.8 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.66 0.000616985 0.000574089 0.0419172 0.0390189 40 1597 24 6.95648e+06 173708 706193. 2443.58 1.65 0.166391 0.144988 26914 176310 -1 1482 24 1267 1801 177650 41470 3.16992 3.16992 -117.471 -3.16992 0 0 926341. 3205.33 0.23 0.05 0.15 -1 -1 0.23 0.0156791 0.013824 58 34 60 30 30 30 -fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 5.06 vpr 63.39 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30100 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.23 594 9219 3126 4706 1387 63.4 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.68 0.000648819 0.000602602 0.0442474 0.0411938 52 1888 25 6.95648e+06 144757 926341. 3205.33 2.02 0.176272 0.154075 29218 227130 -1 1386 24 1519 2482 184245 42369 2.98192 2.98192 -110.606 -2.98192 0 0 1.14541e+06 3963.36 0.28 0.09 0.20 -1 -1 0.28 0.0302459 0.0263813 65 34 64 32 32 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 10.04 vpr 62.70 MiB 0.07 6976 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.2 MiB 0.49 415 9310 3976 4598 736 62.7 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.68 0.000630908 0.000587555 0.0406688 0.0378903 40 1641 47 6.95648e+06 217135 706193. 2443.58 6.79 0.290968 0.249137 26914 176310 -1 1286 21 1168 1563 123902 30269 3.09002 3.09002 -98.7354 -3.09002 0 0 926341. 3205.33 0.24 0.06 0.16 -1 -1 0.24 0.0227539 0.0198202 56 34 50 25 25 25 -fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.74 vpr 63.91 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 1.05 849 10835 4559 6029 247 63.9 MiB 0.11 0.00 3.79924 -134.385 -3.79924 3.79924 0.57 0.00080774 0.000748651 0.0564517 0.0523913 44 3443 36 6.95648e+06 188184 787024. 2723.27 3.99 0.232864 0.202839 27778 195446 -1 2587 23 2101 3728 353454 70858 4.30096 4.30096 -155.876 -4.30096 0 0 997811. 3452.63 0.25 0.12 0.17 -1 -1 0.25 0.0356805 0.0310493 77 94 32 32 94 32 -fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.66 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30336 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.0 MiB 0.87 742 12512 4241 5927 2344 63.7 MiB 0.13 0.00 3.1116 -112.527 -3.1116 3.1116 0.74 0.000781147 0.000724011 0.0582048 0.0539414 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.57 0.243824 0.212495 26914 176310 -1 1941 28 2068 2793 280657 72615 3.75867 3.75867 -130.319 -3.75867 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0402471 0.0349383 87 94 29 29 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.80 vpr 63.40 MiB 0.02 7136 -1 -1 1 0.04 -1 -1 30600 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 24.8 MiB 0.57 1062 15584 5717 7278 2589 63.4 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.66 0.00081645 0.000758503 0.0707713 0.0656883 50 2979 31 6.99608e+06 323745 902133. 3121.57 2.38 0.242973 0.212833 28642 213929 -1 2414 20 2288 2663 207633 47342 4.73741 4.73741 -164.061 -4.73741 0 0 1.08113e+06 3740.92 0.30 0.09 0.22 -1 -1 0.30 0.0331302 0.0291028 130 96 32 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 6.69 vpr 63.59 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30652 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 24.9 MiB 1.29 1018 13610 5732 7207 671 63.6 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.65 0.000761825 0.000706997 0.0612353 0.0568528 54 3118 36 6.99608e+06 294314 949917. 3286.91 2.47 0.228463 0.199738 29506 232905 -1 2490 20 2237 3073 302816 64698 4.48179 4.48179 -155.541 -4.48179 0 0 1.17392e+06 4061.99 0.29 0.10 0.21 -1 -1 0.29 0.0313994 0.0275342 117 91 30 30 89 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 17.49 vpr 63.60 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30448 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.8 MiB 0.88 1040 13610 5701 7488 421 63.6 MiB 0.13 0.00 3.59279 -128.627 -3.59279 3.59279 0.65 0.000760172 0.000707191 0.060149 0.055907 40 3318 43 6.99608e+06 264882 706193. 2443.58 13.89 0.370632 0.320814 26914 176310 -1 2702 23 2033 2424 265080 55517 4.25296 4.25296 -147.611 -4.25296 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0329514 0.028739 106 65 54 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 6.35 vpr 63.05 MiB 0.05 7072 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.5 MiB 0.66 806 14444 6101 7602 741 63.0 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.68 0.000686037 0.00063742 0.0615305 0.0572096 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.89 0.201639 0.176899 26914 176310 -1 2235 22 1992 2849 249231 55744 4.15242 4.15242 -143.1 -4.15242 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0296071 0.0258638 89 34 87 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.26 vpr 63.38 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.5 MiB 0.52 871 12416 4669 6393 1354 63.4 MiB 0.13 0.00 4.27644 -154.345 -4.27644 4.27644 0.67 0.000744166 0.000691222 0.0594412 0.0552183 56 2565 50 6.99608e+06 220735 973134. 3367.25 2.76 0.245215 0.214568 29794 239141 -1 2053 25 2260 3506 286872 67371 4.38345 4.38345 -157.873 -4.38345 0 0 1.19926e+06 4149.71 0.30 0.12 0.20 -1 -1 0.30 0.0366584 0.0321185 93 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.97 vpr 63.56 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30404 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.52 1298 16069 5589 8587 1893 63.6 MiB 0.16 0.00 3.60699 -134.626 -3.60699 3.60699 0.68 0.0007667 0.000711394 0.0640642 0.0594511 48 3162 26 6.99608e+06 441471 865456. 2994.66 2.49 0.218217 0.191072 28354 207349 -1 2763 22 2298 3403 319916 62256 3.60331 3.60331 -146.09 -3.60331 0 0 1.05005e+06 3633.38 0.27 0.11 0.19 -1 -1 0.27 0.0342925 0.0299545 117 64 63 32 63 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.79 vpr 62.67 MiB 0.03 6904 -1 -1 1 0.03 -1 -1 30592 -1 -1 15 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.0 MiB 1.22 620 8289 3348 4414 527 62.7 MiB 0.08 0.00 3.30124 -103.988 -3.30124 3.30124 0.65 0.000677317 0.00063024 0.0365495 0.034047 44 2016 40 6.99608e+06 220735 787024. 2723.27 1.94 0.166544 0.144341 27778 195446 -1 1528 22 1341 2008 175259 38522 3.21151 3.21151 -108.573 -3.21151 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0248881 0.0216495 68 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 7.52 vpr 63.15 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.5 MiB 0.45 708 9368 3795 5080 493 63.1 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.66 0.00066735 0.000620804 0.0392732 0.0365734 46 2433 35 6.99608e+06 250167 828058. 2865.25 4.21 0.190732 0.166437 28066 200906 -1 1798 28 1488 2245 321562 127971 3.33652 3.33652 -116.083 -3.33652 0 0 1.01997e+06 3529.29 0.26 0.12 0.18 -1 -1 0.26 0.0350692 0.0304863 77 4 115 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 8.00 vpr 63.18 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30192 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.5 MiB 2.66 865 11366 4429 5807 1130 63.2 MiB 0.11 0.00 3.3156 -116.953 -3.3156 3.3156 0.66 0.000665616 0.000618279 0.0496394 0.046157 44 2856 40 6.99608e+06 220735 787024. 2723.27 2.60 0.201046 0.175342 27778 195446 -1 1899 23 1691 2097 177067 40063 3.36181 3.36181 -123.617 -3.36181 0 0 997811. 3452.63 0.26 0.08 0.17 -1 -1 0.26 0.0311239 0.0271082 96 85 0 0 84 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.58 vpr 63.11 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30352 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.1 MiB 0.67 668 10346 4043 5155 1148 63.1 MiB 0.10 0.00 3.58059 -133.895 -3.58059 3.58059 0.66 0.000646155 0.000601029 0.0437576 0.0407396 46 2113 26 6.99608e+06 191304 828058. 2865.25 2.01 0.167608 0.14679 28066 200906 -1 1655 23 1613 2045 146762 33269 3.34956 3.34956 -132.574 -3.34956 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0295843 0.0259148 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.42 vpr 63.14 MiB 0.02 6968 -1 -1 1 0.03 -1 -1 30216 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.4 MiB 2.22 858 10835 4264 5113 1458 63.1 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.65 0.000649061 0.000603224 0.0466001 0.0433166 38 2753 35 6.99608e+06 220735 678818. 2348.85 3.54 0.193055 0.168216 26626 170182 -1 2153 22 1904 2554 252247 54303 3.751 3.751 -138.14 -3.751 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0284136 0.0247374 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.00 vpr 63.24 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30476 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1078 12030 4277 6214 1539 63.2 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.61 0.000658693 0.00061202 0.0505284 0.0469848 38 2768 42 6.99608e+06 206020 678818. 2348.85 3.64 0.20739 0.181113 26626 170182 -1 2283 24 1587 1715 164574 32948 3.19827 3.19827 -125.574 -3.19827 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0303149 0.0263846 91 65 25 25 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.15 vpr 63.55 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30312 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.66 0.00074917 0.000695745 0.0341931 0.0318067 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.57 0.196004 0.170519 28642 213929 -1 1746 24 1959 2630 200378 46686 3.64846 3.64846 -125.255 -3.64846 0 0 1.08113e+06 3740.92 0.27 0.09 0.15 -1 -1 0.27 0.0345373 0.0301544 101 58 64 32 57 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 7.04 vpr 63.77 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.1 MiB 0.80 1134 14123 4441 7724 1958 63.8 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.66 0.000783937 0.000728008 0.0644521 0.0598661 48 3127 38 6.99608e+06 279598 865456. 2994.66 3.31 0.241495 0.211441 28354 207349 -1 2345 25 2734 3553 297546 70688 4.56491 4.56491 -166.853 -4.56491 0 0 1.05005e+06 3633.38 0.26 0.12 0.18 -1 -1 0.26 0.0386137 0.0337423 112 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 7.88 vpr 62.78 MiB 0.05 6804 -1 -1 1 0.03 -1 -1 30648 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.2 MiB 2.12 572 11293 4723 5996 574 62.8 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.66 0.000575224 0.000534833 0.0429313 0.0399596 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.20 0.170613 0.14835 26914 176310 -1 1445 21 1232 1686 125058 31534 2.95752 2.95752 -107.998 -2.95752 0 0 926341. 3205.33 0.23 0.07 0.10 -1 -1 0.23 0.0248046 0.0216046 67 29 58 29 24 24 -fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.62 vpr 63.60 MiB 0.05 6952 -1 -1 1 0.03 -1 -1 30584 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 24.8 MiB 1.83 1040 13324 4763 6768 1793 63.6 MiB 0.08 0.00 3.68279 -132.173 -3.68279 3.68279 0.67 0.000406344 0.000373317 0.0316411 0.0291207 50 2876 28 6.99608e+06 235451 902133. 3121.57 2.02 0.180162 0.156062 28642 213929 -1 2434 24 2647 3804 328738 70961 3.83971 3.83971 -145.654 -3.83971 0 0 1.08113e+06 3740.92 0.27 0.14 0.18 -1 -1 0.27 0.0478658 0.0426089 106 63 64 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.37 vpr 63.41 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30464 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.9 MiB 1.15 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.66 0.00073941 0.000686582 0.0317383 0.029521 38 3062 22 6.99608e+06 250167 678818. 2348.85 3.39 0.182341 0.158497 26626 170182 -1 2557 20 2046 2556 210300 43417 3.27522 3.27522 -135.878 -3.27522 0 0 902133. 3121.57 0.23 0.09 0.16 -1 -1 0.23 0.0297174 0.0259998 99 57 64 32 56 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.30 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30088 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.70 871 13856 5887 7726 243 63.3 MiB 0.13 0.00 3.39034 -128.572 -3.39034 3.39034 0.65 0.000680821 0.000632571 0.0593126 0.0551658 44 3195 31 6.99608e+06 206020 787024. 2723.27 2.01 0.203122 0.177999 27778 195446 -1 2091 20 1669 2002 170304 37140 3.36881 3.36881 -131.01 -3.36881 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0278798 0.0244046 91 65 29 29 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.38 vpr 62.42 MiB 0.04 6740 -1 -1 1 0.03 -1 -1 30132 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63920 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.8 MiB 2.09 536 9041 3932 4796 313 62.4 MiB 0.04 0.00 2.34646 -88.6787 -2.34646 2.34646 0.63 0.000224508 0.000206402 0.0147198 0.0135595 36 1652 38 6.99608e+06 161872 648988. 2245.63 1.79 0.127571 0.109242 26050 158493 -1 1211 20 836 912 81742 18817 2.22853 2.22853 -89.8483 -2.22853 0 0 828058. 2865.25 0.21 0.05 0.17 -1 -1 0.21 0.0202662 0.017624 56 34 24 24 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 6.87 vpr 63.20 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30556 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.4 MiB 2.08 1018 11532 3380 6660 1492 63.2 MiB 0.10 0.00 3.58639 -133.629 -3.58639 3.58639 0.66 0.000666235 0.00061958 0.0482517 0.044876 40 2527 22 6.99608e+06 220735 706193. 2443.58 2.08 0.178475 0.156058 26914 176310 -1 2356 21 1788 2150 225320 45019 3.81471 3.81471 -150.75 -3.81471 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0276308 0.0241249 91 64 31 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.32 vpr 63.42 MiB 0.02 7044 -1 -1 1 0.05 -1 -1 30348 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.43 1089 12759 4547 6573 1639 63.4 MiB 0.11 0.00 4.04748 -146.851 -4.04748 4.04748 0.68 0.000724068 0.000672777 0.0513131 0.0476978 46 2738 33 6.99608e+06 338461 828058. 2865.25 2.10 0.204908 0.179098 28066 200906 -1 2256 22 2098 2885 238097 47894 4.0266 4.0266 -153.918 -4.0266 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0334569 0.0293014 97 34 91 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.41 vpr 63.62 MiB 0.04 7216 -1 -1 1 0.03 -1 -1 31008 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.3 MiB 1.15 1280 15206 4884 7262 3060 63.6 MiB 0.15 0.00 4.01908 -141.768 -4.01908 4.01908 0.65 0.000842705 0.000783788 0.0713301 0.0663243 46 3184 26 6.99608e+06 323745 828058. 2865.25 2.41 0.242815 0.212535 28066 200906 -1 2526 22 2398 2713 201663 43588 3.94241 3.94241 -141.818 -3.94241 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0417096 0.0362386 138 124 0 0 125 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 5.74 vpr 62.41 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30628 -1 -1 15 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.9 MiB 0.70 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.69 0.000441244 0.000410075 0.0224926 0.0209252 36 1603 35 6.99608e+06 220735 648988. 2245.63 2.45 0.119014 0.102823 26050 158493 -1 1013 16 689 801 67846 17332 2.54267 2.54267 -85.1036 -2.54267 0 0 828058. 2865.25 0.21 0.04 0.14 -1 -1 0.21 0.0154127 0.0135239 52 30 26 26 22 22 -fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 5.69 vpr 63.12 MiB 0.05 6852 -1 -1 1 0.03 -1 -1 30208 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 698 9036 3669 4978 389 63.1 MiB 0.12 0.00 3.97238 -133.231 -3.97238 3.97238 0.68 0.000688351 0.000639785 0.0634912 0.0591259 62 1908 21 6.99608e+06 176588 1.05005e+06 3633.38 1.96 0.198255 0.174522 30946 263737 -1 1546 22 1313 2069 150685 35340 3.89902 3.89902 -133.735 -3.89902 0 0 1.30136e+06 4502.97 0.31 0.08 0.23 -1 -1 0.31 0.0360682 0.0319935 75 3 122 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 4.11 vpr 62.21 MiB 0.02 6652 -1 -1 1 0.04 -1 -1 30352 -1 -1 8 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.7 MiB 0.23 736 9906 3603 5031 1272 62.2 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.67 0.000475922 0.00044278 0.0327309 0.0304482 34 1682 40 6.99608e+06 117725 618332. 2139.56 1.39 0.119201 0.104252 25762 151098 -1 1493 23 837 1076 106858 21102 1.81982 1.81982 -87.513 -1.81982 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0209472 0.0183284 44 3 53 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.48 vpr 63.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.9 MiB 1.13 836 12681 5269 6945 467 63.7 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.66 0.000739996 0.000687363 0.0563669 0.0524048 44 3391 42 6.99608e+06 250167 787024. 2723.27 2.46 0.230536 0.202045 27778 195446 -1 2342 23 2151 3014 258962 56183 4.31072 4.31072 -159.795 -4.31072 0 0 997811. 3452.63 0.25 0.10 0.17 -1 -1 0.25 0.0329114 0.0287859 95 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.88 vpr 63.33 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30152 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.3 MiB 0.11 0.00 2.93295 -116.62 -2.93295 2.93295 0.65 0.00069251 0.000642787 0.0506511 0.0470429 40 2476 21 6.99608e+06 412039 706193. 2443.58 1.91 0.186871 0.163521 26914 176310 -1 2274 21 1622 2331 218896 43165 2.83522 2.83522 -121.086 -2.83522 0 0 926341. 3205.33 0.24 0.09 0.16 -1 -1 0.24 0.0285983 0.0250648 87 3 124 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.57 vpr 63.59 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65120 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1077 13105 3562 8179 1364 63.6 MiB 0.15 0.00 3.82425 -139.818 -3.82425 3.82425 0.65 0.000890744 0.000834222 0.0660261 0.0613206 46 3235 48 6.99608e+06 309029 828058. 2865.25 2.99 0.252722 0.221135 28066 200906 -1 2640 21 2279 3175 255918 52323 4.10242 4.10242 -152.703 -4.10242 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0338563 0.0298086 115 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 6.25 vpr 62.84 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30064 -1 -1 11 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.2 MiB 1.10 701 9397 3869 5271 257 62.8 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.65 0.000615013 0.000571898 0.0388789 0.0361651 40 2056 26 6.99608e+06 161872 706193. 2443.58 2.50 0.16791 0.146054 26914 176310 -1 1749 21 1469 1977 175866 41844 3.11492 3.11492 -123.828 -3.11492 0 0 926341. 3205.33 0.23 0.08 0.15 -1 -1 0.23 0.0260136 0.0227245 72 34 54 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 13.32 vpr 62.76 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30116 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.1 MiB 7.15 650 7975 2399 4401 1175 62.8 MiB 0.04 0.00 3.55679 -118.022 -3.55679 3.55679 0.65 0.000276819 0.000254598 0.0155191 0.0143283 46 2056 46 6.99608e+06 191304 828058. 2865.25 3.36 0.167484 0.143808 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0321291 0.0283024 73 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 6.19 vpr 62.77 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30292 -1 -1 15 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.1 MiB 1.13 739 7975 3247 4371 357 62.8 MiB 0.09 0.00 3.69125 -116.127 -3.69125 3.69125 0.65 0.000585019 0.000544306 0.0406481 0.0377877 38 2264 33 6.99608e+06 220735 678818. 2348.85 2.40 0.173212 0.150756 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0235827 0.020533 72 34 56 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 4.97 vpr 62.75 MiB 0.05 6780 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.2 MiB 0.21 696 7204 2957 4121 126 62.8 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.70 0.000613359 0.000570273 0.0306445 0.0285266 42 2358 35 6.99608e+06 147157 744469. 2576.02 1.98 0.16356 0.141901 27202 183097 -1 1696 19 1440 2212 187054 39459 3.23592 3.23592 -125.782 -3.23592 0 0 949917. 3286.91 0.24 0.08 0.16 -1 -1 0.24 0.023784 0.0208085 64 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 6.00 vpr 62.73 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30288 -1 -1 15 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.3 MiB 0.66 709 9540 3934 5278 328 62.7 MiB 0.08 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000627913 0.000583827 0.0386868 0.0359895 46 2091 24 6.99608e+06 220735 828058. 2865.25 2.58 0.170633 0.148816 28066 200906 -1 1618 20 1349 1775 124475 28347 3.01682 3.01682 -108.821 -3.01682 0 0 1.01997e+06 3529.29 0.26 0.07 0.18 -1 -1 0.26 0.0272535 0.0238171 77 34 61 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 8.93 vpr 63.19 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.6 MiB 2.69 930 10835 4554 5858 423 63.2 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.70 0.000631484 0.000587347 0.0441776 0.0410564 36 2556 47 6.99608e+06 235451 648988. 2245.63 3.55 0.193263 0.168078 26050 158493 -1 2150 20 1510 1870 165109 34200 2.77122 2.77122 -108.858 -2.77122 0 0 828058. 2865.25 0.21 0.07 0.19 -1 -1 0.21 0.0253984 0.0221193 86 61 29 29 57 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 8.43 vpr 63.90 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30564 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65432 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.2 MiB 0.94 1138 15273 6065 7495 1713 63.9 MiB 0.16 0.00 3.90815 -143.373 -3.90815 3.90815 0.65 0.000830365 0.000771992 0.0730857 0.0679415 46 3798 44 6.99608e+06 294314 828058. 2865.25 4.56 0.265474 0.23183 28066 200906 -1 2784 22 2316 3568 283139 59648 4.03512 4.03512 -155.915 -4.03512 0 0 1.01997e+06 3529.29 0.25 0.11 0.18 -1 -1 0.25 0.0365603 0.0319042 106 29 128 32 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 6.21 vpr 63.58 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.98 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.66 0.000771363 0.000716365 0.0496059 0.0461193 64 2302 23 6.99608e+06 264882 1.08113e+06 3740.92 2.30 0.202718 0.17718 31522 276338 -1 1920 22 1973 2633 212687 48768 3.98155 3.98155 -144.262 -3.98155 0 0 1.36325e+06 4717.13 0.33 0.10 0.22 -1 -1 0.33 0.0338944 0.0296167 110 65 62 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 5.88 vpr 63.35 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30448 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.80 1070 8867 2185 5933 749 63.4 MiB 0.08 0.00 3.49385 -125.494 -3.49385 3.49385 0.66 0.000681264 0.000633276 0.0391236 0.0364011 38 2592 37 6.99608e+06 235451 678818. 2348.85 2.50 0.189359 0.164516 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0288946 0.0251809 99 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.66 vpr 63.54 MiB 0.08 7188 -1 -1 1 0.05 -1 -1 30552 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65060 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1182 9006 2249 6265 492 63.5 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.65 0.000756388 0.00070284 0.0426239 0.0396379 40 2955 30 6.99608e+06 264882 706193. 2443.58 2.09 0.201157 0.175041 26914 176310 -1 2782 20 1994 2664 266844 53667 3.86496 3.86496 -149.222 -3.86496 0 0 926341. 3205.33 0.23 0.10 0.17 -1 -1 0.23 0.0301862 0.0265043 105 64 60 30 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.05 vpr 63.59 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30508 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 0.92 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.65 0.000843255 0.000783379 0.0827718 0.0768699 48 3305 25 6.99608e+06 338461 865456. 2994.66 2.23 0.248954 0.218231 28354 207349 -1 2581 24 2799 3207 368244 103570 4.68164 4.68164 -161.842 -4.68164 0 0 1.05005e+06 3633.38 0.31 0.13 0.19 -1 -1 0.31 0.038675 0.0336927 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 8.05 vpr 63.66 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30476 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 24.9 MiB 2.88 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.65 0.000780689 0.000724845 0.0497533 0.0462082 44 3431 27 6.99608e+06 279598 787024. 2723.27 2.36 0.210763 0.184035 27778 195446 -1 2515 23 2346 3054 248487 52646 4.65544 4.65544 -159.86 -4.65544 0 0 997811. 3452.63 0.25 0.13 0.17 -1 -1 0.25 0.0450943 0.039127 117 90 31 31 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 7.84 vpr 63.75 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30332 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.22 1059 13763 5785 7510 468 63.8 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.66 0.000750495 0.000696652 0.0610427 0.0566747 46 2920 39 6.99608e+06 294314 828058. 2865.25 2.84 0.23169 0.202647 28066 200906 -1 2328 22 2129 2826 210068 45712 3.67846 3.67846 -140.694 -3.67846 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0325575 0.0284389 107 64 60 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 7.55 vpr 63.83 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30744 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65364 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.1 MiB 0.84 1271 6556 1686 3783 1087 63.8 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.70 0.000767266 0.000712809 0.0317367 0.0295351 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.99 0.215272 0.186404 26914 176310 -1 2828 27 2684 3588 464933 126170 4.37501 4.37501 -168.095 -4.37501 0 0 926341. 3205.33 0.23 0.15 0.10 -1 -1 0.23 0.0391876 0.0341166 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 8.70 vpr 63.61 MiB 0.06 7276 -1 -1 1 0.04 -1 -1 30624 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65136 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.1 MiB 2.13 1530 16529 5778 8459 2292 63.6 MiB 0.18 0.00 4.81093 -174.639 -4.81093 4.81093 0.67 0.000927381 0.000861553 0.0849029 0.0789041 46 4411 29 6.99608e+06 323745 828058. 2865.25 3.52 0.267808 0.235147 28066 200906 -1 3403 25 3482 4762 408062 99975 5.8912 5.8912 -203.084 -5.8912 0 0 1.01997e+06 3529.29 0.31 0.15 0.17 -1 -1 0.31 0.0436924 0.0380498 139 96 62 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 10.32 vpr 63.10 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30572 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.4 MiB 0.81 802 9996 3771 4383 1842 63.1 MiB 0.10 0.00 3.1395 -118.304 -3.1395 3.1395 0.68 0.000629305 0.000585174 0.0453582 0.0422303 40 1998 21 6.99608e+06 191304 706193. 2443.58 6.82 0.293299 0.252879 26914 176310 -1 1846 22 1556 1917 164650 33970 3.16707 3.16707 -125.758 -3.16707 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273871 0.0239132 75 34 62 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 6.97 vpr 63.53 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30324 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65052 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.65 1237 14606 4845 8003 1758 63.5 MiB 0.14 0.00 4.54014 -162.571 -4.54014 4.54014 0.66 0.000768294 0.000713832 0.0670838 0.062325 44 3549 35 6.99608e+06 264882 787024. 2723.27 3.59 0.238086 0.208857 27778 195446 -1 2767 23 1986 2440 235828 47757 4.54181 4.54181 -170.353 -4.54181 0 0 997811. 3452.63 0.25 0.10 0.16 -1 -1 0.25 0.0333396 0.029088 106 64 62 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 5.99 vpr 63.62 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30660 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.05 1279 13077 3808 7089 2180 63.6 MiB 0.13 0.00 3.54953 -133.609 -3.54953 3.54953 0.65 0.000763955 0.000709996 0.0576479 0.0536177 46 3226 21 6.99608e+06 294314 828058. 2865.25 2.19 0.207743 0.182355 28066 200906 -1 2638 20 1817 2644 199508 41576 3.47616 3.47616 -136.254 -3.47616 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0302954 0.0265118 108 63 62 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.58 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30536 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.5 MiB 0.74 797 9368 3826 5299 243 63.0 MiB 0.10 0.00 3.54729 -133.832 -3.54729 3.54729 0.66 0.000734371 0.000675093 0.0437773 0.0407151 46 2734 24 6.99608e+06 191304 828058. 2865.25 3.14 0.190573 0.166758 28066 200906 -1 2153 21 1916 3244 243952 51001 3.82546 3.82546 -152.197 -3.82546 0 0 1.01997e+06 3529.29 0.25 0.09 0.18 -1 -1 0.25 0.0292219 0.0255247 77 3 128 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 6.64 vpr 63.71 MiB 0.02 7088 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.25 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.65 0.000786047 0.000729561 0.0505816 0.0469466 46 3143 36 6.99608e+06 279598 828058. 2865.25 2.54 0.232581 0.202769 28066 200906 -1 2442 22 2033 2403 188795 41973 3.67371 3.67371 -136.663 -3.67371 0 0 1.01997e+06 3529.29 0.28 0.09 0.20 -1 -1 0.28 0.033205 0.0290585 120 96 25 25 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.92 vpr 63.49 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30332 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 24.8 MiB 0.97 1139 12528 3436 7246 1846 63.5 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.70 0.000772392 0.000716305 0.0554568 0.0515376 40 3651 35 6.99608e+06 294314 706193. 2443.58 4.23 0.229341 0.20103 26914 176310 -1 3030 22 2291 3231 375229 75054 4.27196 4.27196 -159.382 -4.27196 0 0 926341. 3205.33 0.23 0.12 0.16 -1 -1 0.23 0.03313 0.0289493 106 61 64 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.53 vpr 63.57 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.70 1314 14431 4781 7561 2089 63.6 MiB 0.16 0.00 3.61639 -141.899 -3.61639 3.61639 0.69 0.000799338 0.000742896 0.0736985 0.0682933 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.82 0.250698 0.219817 26914 176310 -1 2962 23 2149 2670 288082 56945 3.85076 3.85076 -154.092 -3.85076 0 0 926341. 3205.33 0.33 0.11 0.17 -1 -1 0.33 0.0353718 0.0309905 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 7.19 vpr 63.42 MiB 0.03 6892 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 24.6 MiB 0.84 813 11432 3614 6147 1671 63.4 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.67 0.000738821 0.000683383 0.0518395 0.0481751 48 3063 38 6.99608e+06 235451 865456. 2994.66 3.56 0.220954 0.193598 28354 207349 -1 2465 24 2080 2947 347930 83987 4.29972 4.29972 -162.913 -4.29972 0 0 1.05005e+06 3633.38 0.26 0.12 0.14 -1 -1 0.26 0.0331824 0.0290848 94 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 16.68 vpr 63.61 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.81 930 14500 5516 6956 2028 63.6 MiB 0.14 0.00 3.81585 -138.808 -3.81585 3.81585 0.69 0.00076894 0.000713957 0.0659461 0.0612289 44 3517 47 6.99608e+06 264882 787024. 2723.27 13.05 0.408475 0.354148 27778 195446 -1 2394 22 2308 2743 215267 47366 4.31072 4.31072 -159.984 -4.31072 0 0 997811. 3452.63 0.27 0.11 0.16 -1 -1 0.27 0.0396963 0.0345748 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 6.86 vpr 63.58 MiB 0.05 7268 -1 -1 1 0.04 -1 -1 30660 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65108 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.3 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.65 0.000831533 0.000772396 0.065657 0.0608105 44 3778 32 6.99608e+06 323745 787024. 2723.27 2.57 0.240097 0.209158 27778 195446 -1 2996 20 2203 2589 221872 46101 3.89955 3.89955 -144.61 -3.89955 0 0 997811. 3452.63 0.27 0.09 0.18 -1 -1 0.27 0.0329575 0.0287279 132 122 0 0 122 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.17 vpr 63.52 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 0.98 1318 15273 5215 8174 1884 63.5 MiB 0.15 0.00 3.73195 -141.182 -3.73195 3.73195 0.67 0.000809554 0.000751409 0.0700525 0.0650309 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.20 0.242775 0.21262 26914 176310 -1 3411 31 3192 4502 585199 158538 4.31702 4.31702 -164.025 -4.31702 0 0 926341. 3205.33 0.33 0.17 0.17 -1 -1 0.33 0.0416189 0.0364636 126 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 5.89 vpr 63.27 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30548 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.3 MiB 0.49 921 12528 4814 6023 1691 63.3 MiB 0.11 0.00 2.98795 -120.412 -2.98795 2.98795 0.65 0.000642292 0.000597314 0.0508079 0.047296 46 2359 25 6.99608e+06 206020 828058. 2865.25 2.60 0.179009 0.156723 28066 200906 -1 1976 22 1407 1907 172172 34025 3.51482 3.51482 -128.349 -3.51482 0 0 1.01997e+06 3529.29 0.28 0.08 0.17 -1 -1 0.28 0.0271664 0.0237019 80 34 63 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 6.46 vpr 63.38 MiB 0.01 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.7 MiB 0.74 1095 11776 4100 5415 2261 63.4 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.66 0.00070677 0.00065603 0.0512866 0.0476907 46 2887 24 6.99608e+06 235451 828058. 2865.25 2.88 0.199073 0.173913 28066 200906 -1 2394 21 2119 2496 245665 47412 3.60045 3.60045 -141.406 -3.60045 0 0 1.01997e+06 3529.29 0.33 0.09 0.18 -1 -1 0.33 0.0268674 0.023867 108 94 0 0 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.59 vpr 63.56 MiB 0.03 7100 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.1 MiB 0.85 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.67 0.000884155 0.000821369 0.0787555 0.073228 54 3744 47 6.99608e+06 294314 949917. 3286.91 2.66 0.299433 0.262793 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.28 0.14 0.23 -1 -1 0.28 0.0435504 0.0379064 126 65 96 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 5.82 vpr 63.39 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30376 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.58 1100 10916 2969 6188 1759 63.4 MiB 0.11 0.00 3.58059 -138.842 -3.58059 3.58059 0.65 0.000728979 0.000676939 0.0501428 0.0466303 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.52 0.216485 0.189154 26914 176310 -1 2378 23 1873 2403 221246 44404 3.72546 3.72546 -144.213 -3.72546 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0324451 0.0283235 93 34 92 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.62 vpr 62.90 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30444 -1 -1 24 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.4 MiB 0.64 716 11804 3687 5992 2125 62.9 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.65 0.000615556 0.000572246 0.0405868 0.0377396 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.30 0.183389 0.159204 26914 176310 -1 1852 25 1742 2609 294037 64139 3.89906 3.89906 -135.525 -3.89906 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0295224 0.0256409 80 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.10 vpr 63.88 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 30976 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65412 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.6 MiB 0.83 1504 15883 5797 7858 2228 63.9 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.65 0.000951193 0.000883193 0.0812633 0.0754952 56 3670 24 6.99608e+06 353176 973134. 3367.25 2.25 0.279855 0.24514 29794 239141 -1 3017 22 3279 4088 391656 83242 5.57659 5.57659 -197.891 -5.57659 0 0 1.19926e+06 4149.71 0.29 0.13 0.23 -1 -1 0.29 0.0411109 0.0359127 159 127 32 32 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 5.85 vpr 63.41 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30460 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.73 938 15044 6550 8115 379 63.4 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.65 0.000742206 0.000689236 0.0680038 0.0632156 48 2674 27 6.99608e+06 235451 865456. 2994.66 2.28 0.223265 0.196109 28354 207349 -1 2171 22 2271 2964 225442 48699 4.28801 4.28801 -162.253 -4.28801 0 0 1.05005e+06 3633.38 0.27 0.09 0.18 -1 -1 0.27 0.0318091 0.0278564 92 34 96 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 5.42 vpr 62.76 MiB 0.06 6820 -1 -1 1 0.03 -1 -1 30312 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.1 MiB 0.28 660 12763 5275 7138 350 62.8 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.65 0.000617122 0.000573409 0.0425442 0.0395559 46 2129 35 6.99608e+06 353176 828058. 2865.25 2.43 0.175354 0.152889 28066 200906 -1 1606 24 1694 2600 190598 40646 3.14062 3.14062 -123.028 -3.14062 0 0 1.01997e+06 3529.29 0.26 0.08 0.18 -1 -1 0.26 0.0277707 0.0241535 70 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 8.92 vpr 63.90 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30796 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65436 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 25.1 MiB 0.68 1143 13432 5563 7207 662 63.9 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.68 0.000854627 0.00079476 0.0680384 0.0632746 46 4011 41 6.99608e+06 264882 828058. 2865.25 5.32 0.266644 0.233091 28066 200906 -1 2823 22 2647 3941 340653 73060 4.92841 4.92841 -176.957 -4.92841 0 0 1.01997e+06 3529.29 0.26 0.12 0.14 -1 -1 0.26 0.0370189 0.032616 112 34 128 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.44 vpr 62.75 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30396 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.30 625 10614 4416 5947 251 62.8 MiB 0.09 0.00 2.85145 -111.794 -2.85145 2.85145 0.66 0.000607625 0.000564445 0.0440693 0.0409427 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.183854 0.160152 26914 176310 -1 1718 23 1561 2367 231224 49124 3.36122 3.36122 -130.641 -3.36122 0 0 926341. 3205.33 0.23 0.09 0.12 -1 -1 0.23 0.0275761 0.0240165 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.65 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30200 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64156 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.2 MiB 0.65 755 9857 4076 5498 283 62.7 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.65 0.000616739 0.000573488 0.0401466 0.0373486 44 2377 21 6.99608e+06 220735 787024. 2723.27 1.93 0.160575 0.139984 27778 195446 -1 1777 22 1643 2158 180560 38370 3.32751 3.32751 -123.166 -3.32751 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0264088 0.023037 74 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 7.69 vpr 63.43 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30396 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.8 MiB 1.62 1003 15481 6003 6865 2613 63.4 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.66 0.00074583 0.00069244 0.0703618 0.0653279 46 3294 37 6.99608e+06 294314 828058. 2865.25 3.24 0.234888 0.20583 28066 200906 -1 2268 24 1976 2711 215953 47780 3.784 3.784 -131.247 -3.784 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0342207 0.0298524 113 88 29 29 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 6.34 vpr 63.61 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30744 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 24.9 MiB 0.96 1068 14144 5407 6800 1937 63.6 MiB 0.13 0.00 4.29664 -157.784 -4.29664 4.29664 0.68 0.000769772 0.000714192 0.0640171 0.0594557 44 3303 30 6.99608e+06 264882 787024. 2723.27 2.50 0.226928 0.199222 27778 195446 -1 2309 23 2566 3447 284686 60687 4.63711 4.63711 -168.166 -4.63711 0 0 997811. 3452.63 0.25 0.10 0.18 -1 -1 0.25 0.0346218 0.0302876 109 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.23 vpr 63.69 MiB 0.05 7040 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.00 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.66 0.000772844 0.000717753 0.0326154 0.0303242 44 3666 26 6.99608e+06 264882 787024. 2723.27 2.40 0.193254 0.168014 27778 195446 -1 2775 22 2651 3650 339920 68477 4.66885 4.66885 -176.579 -4.66885 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0331066 0.0289454 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 6.60 vpr 63.33 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30472 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.8 MiB 0.64 792 12585 5306 6906 373 63.3 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.71 0.000685268 0.000636397 0.0535938 0.0498004 46 2594 31 6.99608e+06 220735 828058. 2865.25 3.18 0.197676 0.172267 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.25 0.09 0.12 -1 -1 0.25 0.0307413 0.0268935 92 65 32 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 7.40 vpr 63.16 MiB 0.05 7148 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.5 MiB 2.28 885 11260 4668 6241 351 63.2 MiB 0.09 0.00 3.46644 -123.995 -3.46644 3.46644 0.67 0.000531088 0.000487088 0.0385122 0.0353721 44 3163 36 6.99608e+06 250167 787024. 2723.27 2.49 0.187786 0.162467 27778 195446 -1 2130 20 1974 2424 214175 46439 3.36172 3.36172 -122.743 -3.36172 0 0 997811. 3452.63 0.24 0.06 0.11 -1 -1 0.24 0.0210685 0.0185169 102 90 0 0 89 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 6.98 vpr 63.55 MiB 0.05 7072 -1 -1 1 0.04 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65076 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.13 904 12506 5230 6653 623 63.6 MiB 0.13 0.00 3.42074 -117.96 -3.42074 3.42074 0.66 0.000732263 0.000679824 0.059686 0.0554151 44 3198 37 6.99608e+06 279598 787024. 2723.27 2.97 0.220827 0.193044 27778 195446 -1 2204 22 1934 2742 228445 49561 3.44877 3.44877 -123.813 -3.44877 0 0 997811. 3452.63 0.30 0.09 0.18 -1 -1 0.30 0.0314174 0.0274196 101 60 60 30 57 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.37 vpr 63.33 MiB 0.02 6992 -1 -1 1 0.02 -1 -1 30572 -1 -1 18 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.5 MiB 0.64 824 9872 4064 5274 534 63.3 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.65 0.000666267 0.000619411 0.0420186 0.0391114 44 2539 27 6.99608e+06 264882 787024. 2723.27 2.00 0.185433 0.161918 27778 195446 -1 1813 24 1880 2757 196479 43096 3.89076 3.89076 -131.029 -3.89076 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.031359 0.0273607 87 34 84 28 28 28 -fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 7.31 vpr 63.27 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30100 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64788 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.5 MiB 1.74 814 10672 3702 5165 1805 63.3 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.66 0.000652314 0.000606298 0.0448768 0.041732 44 2874 44 6.99608e+06 220735 787024. 2723.27 2.75 0.197218 0.171306 27778 195446 -1 1781 21 1603 2154 172251 38340 3.92035 3.92035 -139.153 -3.92035 0 0 997811. 3452.63 0.25 0.08 0.18 -1 -1 0.25 0.0308294 0.0271557 88 63 30 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 8.30 vpr 63.67 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30392 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65200 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.63 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.65 0.000695151 0.000645565 0.054539 0.0506452 46 3110 45 6.99608e+06 220735 828058. 2865.25 2.90 0.202049 0.176759 28066 200906 -1 2315 22 1840 2270 204664 42541 3.86506 3.86506 -142.099 -3.86506 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0298784 0.0260276 104 91 0 0 91 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.92 vpr 62.97 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30188 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.5 MiB 0.14 808 15688 5217 8110 2361 63.0 MiB 0.14 0.00 3.76925 -134.079 -3.76925 3.76925 0.66 0.000695669 0.000646679 0.059035 0.0548849 46 3039 46 6.99608e+06 367892 828058. 2865.25 3.95 0.228217 0.199962 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0298464 0.0260472 86 4 124 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 24.27 vpr 63.50 MiB 0.05 7092 -1 -1 1 0.04 -1 -1 30528 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.68 1209 11281 3120 7720 441 63.5 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.67 0.000782407 0.00072692 0.052718 0.0489263 40 3750 26 6.99608e+06 250167 706193. 2443.58 20.65 0.377919 0.327226 26914 176310 -1 3109 32 2987 3961 695507 232571 4.80515 4.80515 -184.309 -4.80515 0 0 926341. 3205.33 0.23 0.21 0.15 -1 -1 0.23 0.0452283 0.0392673 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 6.46 vpr 63.55 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30320 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 24.8 MiB 0.59 1142 12364 5175 6807 382 63.5 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.67 0.000780871 0.000725092 0.0576382 0.0535415 54 3283 29 6.99608e+06 264882 949917. 3286.91 2.94 0.221072 0.19353 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.31 0.11 0.19 -1 -1 0.31 0.0317002 0.0278034 108 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 8.05 vpr 63.58 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30496 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1089 13788 4649 7550 1589 63.6 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.67 0.000786922 0.0007304 0.0624545 0.0580102 44 3953 47 6.99608e+06 264882 787024. 2723.27 4.55 0.248508 0.217291 27778 195446 -1 2830 21 2212 3137 303084 61955 4.23195 4.23195 -157.936 -4.23195 0 0 997811. 3452.63 0.25 0.10 0.20 -1 -1 0.25 0.0320005 0.0279905 107 65 60 30 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.83 vpr 62.93 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30480 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.10 0.00 3.58339 -124.571 -3.58339 3.58339 0.66 0.000618908 0.000575343 0.0500648 0.0465097 48 2391 37 6.99608e+06 191304 865456. 2994.66 2.35 0.188266 0.164147 28354 207349 -1 1950 20 1503 2055 207950 47946 3.95106 3.95106 -135.959 -3.95106 0 0 1.05005e+06 3633.38 0.26 0.08 0.18 -1 -1 0.26 0.0251551 0.0219356 76 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 8.24 vpr 63.64 MiB 0.04 7124 -1 -1 1 0.03 -1 -1 30388 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.19 1070 13152 5486 7187 479 63.6 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.69 0.000737267 0.000684368 0.0598965 0.0556801 46 3476 35 6.99608e+06 264882 828058. 2865.25 3.21 0.222052 0.194536 28066 200906 -1 2689 20 2330 3345 315282 68139 4.86645 4.86645 -173.897 -4.86645 0 0 1.01997e+06 3529.29 0.25 0.10 0.17 -1 -1 0.25 0.0293912 0.0257568 105 63 60 30 60 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 6.54 vpr 63.71 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30812 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.72 1372 11615 4190 5568 1857 63.7 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.67 0.000847355 0.000786429 0.0548038 0.0508955 46 3391 25 6.99608e+06 323745 828058. 2865.25 2.93 0.230589 0.201174 28066 200906 -1 2703 24 2614 2688 212817 43588 4.30395 4.30395 -165.025 -4.30395 0 0 1.01997e+06 3529.29 0.25 0.10 0.18 -1 -1 0.25 0.0388414 0.0337902 139 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 18.04 vpr 63.26 MiB 0.04 7196 -1 -1 1 0.04 -1 -1 30360 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 24.8 MiB 1.37 1101 12733 5285 6817 631 63.3 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.65 0.000792562 0.00072893 0.0570857 0.0529784 50 3217 36 6.99608e+06 323745 902133. 3121.57 13.87 0.401511 0.346642 28642 213929 -1 2323 21 2201 2619 211762 52502 4.6934 4.6934 -161.769 -4.6934 0 0 1.08113e+06 3740.92 0.27 0.09 0.19 -1 -1 0.27 0.0326983 0.0286511 125 94 31 31 93 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 10.35 vpr 63.45 MiB 0.05 7092 -1 -1 1 0.03 -1 -1 30436 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.8 MiB 2.61 1072 15456 6595 7994 867 63.4 MiB 0.15 0.00 4.1343 -135.415 -4.1343 4.1343 0.67 0.000907806 0.000843234 0.0698627 0.0648584 48 3698 50 6.99608e+06 323745 865456. 2994.66 4.79 0.260726 0.228234 28354 207349 -1 2712 22 2618 3714 404282 93680 4.495 4.495 -155.983 -4.495 0 0 1.05005e+06 3633.38 0.27 0.16 0.17 -1 -1 0.27 0.0377766 0.0330643 114 92 26 26 90 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 22.45 vpr 63.52 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.91 1174 14500 5592 7226 1682 63.5 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.66 0.000773243 0.000717902 0.0684075 0.0635078 46 3851 34 6.99608e+06 264882 828058. 2865.25 18.70 0.426163 0.369221 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.25 0.12 0.17 -1 -1 0.25 0.0339885 0.0298259 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 10.04 vpr 63.57 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30340 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65092 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.64 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.67 0.000734998 0.000682413 0.0490137 0.0455089 38 3405 45 6.99608e+06 294314 678818. 2348.85 5.55 0.227155 0.197628 26626 170182 -1 2623 23 2263 2942 297644 62451 3.80071 3.80071 -137.44 -3.80071 0 0 902133. 3121.57 0.29 0.11 0.15 -1 -1 0.29 0.0336259 0.0293662 112 88 26 26 85 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.68 vpr 62.60 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30468 -1 -1 10 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.0 MiB 0.65 592 9684 3186 4658 1840 62.6 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.67 0.000619203 0.000575776 0.0404677 0.0376744 42 2359 50 6.99608e+06 147157 744469. 2576.02 2.29 0.187687 0.163319 27202 183097 -1 1634 23 1545 2424 209766 47495 2.99762 2.99762 -119.713 -2.99762 0 0 949917. 3286.91 0.26 0.09 0.12 -1 -1 0.26 0.0270365 0.0235439 62 3 96 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.77 vpr 63.55 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30588 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.63 999 9872 3990 5501 381 63.6 MiB 0.10 0.00 4.9054 -173.166 -4.9054 4.9054 0.66 0.000778994 0.000723104 0.0466319 0.0433036 62 2768 25 6.99608e+06 264882 1.05005e+06 3633.38 2.32 0.204461 0.178094 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.31 0.10 0.22 -1 -1 0.31 0.035841 0.0313029 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.15 vpr 63.54 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30468 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.72 1203 7431 1958 4126 1347 63.5 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.66 0.000780204 0.000724023 0.0358477 0.0333449 44 3706 30 6.99608e+06 250167 787024. 2723.27 2.61 0.198382 0.172263 27778 195446 -1 2821 23 2937 3999 344173 71664 4.54104 4.54104 -171.037 -4.54104 0 0 997811. 3452.63 0.25 0.12 0.16 -1 -1 0.25 0.0349107 0.0304374 111 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 16.99 vpr 63.00 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30424 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.6 MiB 1.89 766 11324 4293 5664 1367 63.0 MiB 0.05 0.00 3.24452 -112.954 -3.24452 3.24452 0.67 0.000285627 0.000262496 0.0219418 0.0202074 48 2295 39 6.99608e+06 191304 865456. 2994.66 12.32 0.311851 0.26676 28354 207349 -1 1784 21 1600 1887 197435 47668 3.48726 3.48726 -120.115 -3.48726 0 0 1.05005e+06 3633.38 0.27 0.08 0.19 -1 -1 0.27 0.0275347 0.024109 85 55 32 32 54 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 5.12 vpr 62.65 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30392 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.45 592 7514 3020 4270 224 62.6 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.69 0.0005977 0.000555618 0.0319781 0.0297328 44 2109 28 6.99608e+06 161872 787024. 2723.27 1.94 0.165995 0.144131 27778 195446 -1 1545 23 1522 2264 188568 39872 3.00867 3.00867 -118.918 -3.00867 0 0 997811. 3452.63 0.25 0.08 0.17 -1 -1 0.25 0.0265781 0.0231406 63 4 93 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.44 vpr 63.56 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30408 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1014 12331 5131 6918 282 63.6 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.65 0.000740415 0.000687504 0.0548958 0.0510204 40 2840 45 6.99608e+06 250167 706193. 2443.58 2.80 0.22817 0.199309 26914 176310 -1 2519 31 2701 3185 464315 133414 4.10195 4.10195 -149.535 -4.10195 0 0 926341. 3205.33 0.23 0.16 0.16 -1 -1 0.23 0.0420894 0.0365071 102 59 60 32 58 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.84 vpr 63.56 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30352 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.8 MiB 1.31 1077 13043 5447 7262 334 63.6 MiB 0.13 0.00 4.38874 -150.527 -4.38874 4.38874 0.65 0.000762646 0.000707661 0.0585376 0.0543542 48 2878 41 6.99608e+06 279598 865456. 2994.66 2.55 0.231405 0.201982 28354 207349 -1 2423 30 2362 2895 394206 145895 4.25521 4.25521 -153.753 -4.25521 0 0 1.05005e+06 3633.38 0.26 0.15 0.17 -1 -1 0.26 0.0420053 0.0365089 115 88 28 28 88 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 5.78 vpr 63.60 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30500 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.8 MiB 0.29 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.65 0.000937722 0.000870978 0.0347532 0.0323064 48 3128 28 6.99608e+06 397324 865456. 2994.66 2.79 0.201501 0.175275 28354 207349 -1 2519 23 2406 3761 313415 73098 4.58255 4.58255 -170.105 -4.58255 0 0 1.05005e+06 3633.38 0.26 0.13 0.14 -1 -1 0.26 0.0415076 0.0363231 100 3 156 32 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.43 vpr 63.39 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30464 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64916 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.6 MiB 0.90 884 14431 6074 7798 559 63.4 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.66 0.000717058 0.000665876 0.0634399 0.0589523 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.79 0.221143 0.194174 26914 176310 -1 2507 22 2086 2957 290244 65678 3.62741 3.62741 -134.801 -3.62741 0 0 926341. 3205.33 0.23 0.10 0.15 -1 -1 0.23 0.0307884 0.0268797 101 59 60 30 56 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 5.70 vpr 62.72 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30788 -1 -1 16 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.20 589 11925 5033 6263 629 62.7 MiB 0.09 0.00 3.68305 -110.555 -3.68305 3.68305 0.65 0.000573815 0.00053397 0.0452249 0.0420847 40 1692 28 6.99608e+06 235451 706193. 2443.58 1.90 0.16348 0.142469 26914 176310 -1 1433 19 1151 1593 139670 30760 3.87401 3.87401 -124.064 -3.87401 0 0 926341. 3205.33 0.23 0.06 0.15 -1 -1 0.23 0.0220367 0.0191993 67 34 54 27 27 27 -fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 21.38 vpr 63.75 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30620 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.3 MiB 0.79 1512 15151 5383 7381 2387 63.8 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.000857296 0.000791129 0.0773741 0.0718183 50 4170 39 6.99608e+06 309029 902133. 3121.57 17.53 0.468734 0.405171 28642 213929 -1 3441 24 2733 3835 527406 117145 4.67941 4.67941 -171.114 -4.67941 0 0 1.08113e+06 3740.92 0.27 0.16 0.19 -1 -1 0.27 0.0429848 0.0374962 141 95 62 31 95 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.29 vpr 63.64 MiB 0.05 7268 -1 -1 1 0.03 -1 -1 30584 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65164 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.3 MiB 2.42 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.65 0.00084351 0.000783783 0.0438202 0.0407674 42 3808 25 6.99608e+06 323745 744469. 2576.02 2.07 0.211137 0.183442 27202 183097 -1 2980 22 2696 3055 322151 63359 4.52204 4.52204 -166.56 -4.52204 0 0 949917. 3286.91 0.24 0.11 0.15 -1 -1 0.24 0.0356478 0.0310588 138 124 0 0 124 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 7.95 vpr 63.40 MiB 0.05 6992 -1 -1 1 0.03 -1 -1 30380 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.5 MiB 2.73 1031 11233 4729 6294 210 63.4 MiB 0.10 0.00 3.87693 -140.03 -3.87693 3.87693 0.66 0.00068574 0.000636339 0.0478245 0.0443742 46 3029 25 6.99608e+06 220735 828058. 2865.25 2.51 0.189226 0.164956 28066 200906 -1 2233 21 1682 2023 212330 43607 3.8735 3.8735 -140.554 -3.8735 0 0 1.01997e+06 3529.29 0.25 0.08 0.11 -1 -1 0.25 0.0285745 0.0249765 102 89 0 0 89 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 5.98 vpr 63.40 MiB 0.02 7044 -1 -1 1 0.03 -1 -1 30552 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.90 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.66 0.000725795 0.000674673 0.0625258 0.0581264 46 3037 39 6.99608e+06 235451 828058. 2865.25 2.31 0.224124 0.196323 28066 200906 -1 2411 23 2014 2763 226465 47089 4.14942 4.14942 -146.662 -4.14942 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0321731 0.0280828 92 34 90 30 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 8.12 vpr 63.77 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30764 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65296 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 24.9 MiB 1.49 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.67 0.000860533 0.000800824 0.069505 0.0646898 38 3765 35 6.99608e+06 294314 678818. 2348.85 3.87 0.258977 0.226655 26626 170182 -1 2652 19 2280 3067 243980 51586 4.53931 4.53931 -159.576 -4.53931 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0322494 0.0282265 117 64 87 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 10.72 vpr 63.44 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30392 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13788 5313 5928 2547 63.4 MiB 0.13 0.00 3.56069 -123.887 -3.56069 3.56069 0.65 0.000717011 0.000665902 0.0583453 0.0542059 36 3765 43 6.99608e+06 294314 648988. 2245.63 7.02 0.230394 0.201432 26050 158493 -1 2745 24 2121 3006 327402 82327 3.86606 3.86606 -143.244 -3.86606 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.033625 0.0293349 101 61 58 30 58 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 7.50 vpr 63.42 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30480 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1034 13906 5203 6656 2047 63.4 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.66 0.000786314 0.0007256 0.0648143 0.0602028 46 3490 34 6.99608e+06 250167 828058. 2865.25 4.21 0.234526 0.205601 28066 200906 -1 2372 20 2365 2885 199600 43888 4.29595 4.29595 -158.61 -4.29595 0 0 1.01997e+06 3529.29 0.24 0.05 0.12 -1 -1 0.24 0.0181963 0.0162639 107 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 6.01 vpr 63.53 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 24.9 MiB 0.71 1295 11830 3708 6867 1255 63.5 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.65 0.000769653 0.000714443 0.0543596 0.0505316 44 3300 26 6.99608e+06 264882 787024. 2723.27 2.53 0.213095 0.186394 27778 195446 -1 2703 20 2135 2793 251311 48954 3.60016 3.60016 -142.717 -3.60016 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0309392 0.0271109 108 65 63 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 5.81 vpr 62.73 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30420 -1 -1 14 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.0 MiB 1.15 714 7817 3113 4376 328 62.7 MiB 0.07 0.00 3.29694 -113.946 -3.29694 3.29694 0.66 0.000598654 0.000556858 0.0319076 0.0297032 36 2003 34 6.99608e+06 206020 648988. 2245.63 2.04 0.161036 0.139612 26050 158493 -1 1694 21 1692 2179 190249 39843 3.33251 3.33251 -123.942 -3.33251 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0250098 0.0217002 73 34 58 29 29 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 7.56 vpr 63.43 MiB 0.03 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.6 MiB 2.31 796 13192 4518 6301 2373 63.4 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.65 0.000666075 0.000619021 0.0554427 0.0514582 48 2528 41 6.99608e+06 206020 865456. 2994.66 2.59 0.203166 0.177259 28354 207349 -1 1828 24 1787 2127 220585 54742 3.81306 3.81306 -131.476 -3.81306 0 0 1.05005e+06 3633.38 0.30 0.08 0.18 -1 -1 0.30 0.0281309 0.0246089 91 82 0 0 82 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 7.17 vpr 63.34 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.5 MiB 0.62 1104 8164 1792 5984 388 63.3 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.65 0.000725755 0.000674776 0.0370122 0.034463 38 3147 50 6.99608e+06 250167 678818. 2348.85 3.80 0.21437 0.186139 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0335204 0.0292714 92 34 93 31 31 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 6.65 vpr 62.91 MiB 0.02 6872 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.4 MiB 1.50 924 11813 4851 6237 725 62.9 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.66 0.000600794 0.000558074 0.0462667 0.0429945 38 2436 26 6.99608e+06 235451 678818. 2348.85 2.51 0.164964 0.143726 26626 170182 -1 2073 24 1525 1707 165264 33337 3.16816 3.16816 -115.879 -3.16816 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0277275 0.0240538 81 56 29 29 52 26 -fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.70 vpr 62.94 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30304 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.67 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.65 0.000654004 0.000600732 0.0533295 0.0496083 44 2487 30 6.99608e+06 191304 787024. 2723.27 2.31 0.188722 0.165108 27778 195446 -1 1705 17 1533 1922 131004 29711 3.46386 3.46386 -135.208 -3.46386 0 0 997811. 3452.63 0.25 0.07 0.16 -1 -1 0.25 0.0231807 0.0203723 79 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 7.11 vpr 63.52 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.6 MiB 1.09 964 11296 3574 5293 2429 63.5 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.66 0.000746844 0.000693295 0.0502357 0.0466926 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.31 0.210033 0.183403 26914 176310 -1 2600 22 2312 3132 302196 67204 4.44055 4.44055 -164.36 -4.44055 0 0 926341. 3205.33 0.28 0.11 0.13 -1 -1 0.28 0.0328082 0.0285998 105 64 58 31 62 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 7.68 vpr 63.12 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 13 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.6 MiB 2.18 694 11756 4613 5996 1147 63.1 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.66 0.000634383 0.00058962 0.048792 0.0453597 48 2270 42 6.99608e+06 191304 865456. 2994.66 2.73 0.19567 0.170575 28354 207349 -1 1708 21 1433 1798 169413 41404 3.02657 3.02657 -117.748 -3.02657 0 0 1.05005e+06 3633.38 0.26 0.08 0.17 -1 -1 0.26 0.0260284 0.0226637 81 55 31 31 53 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 6.84 vpr 63.39 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30504 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 24.5 MiB 1.41 911 15034 6476 7971 587 63.4 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.65 0.000752094 0.000699111 0.0661581 0.061449 52 2649 36 6.99608e+06 264882 926341. 3205.33 2.60 0.231913 0.203414 29218 227130 -1 1955 21 1562 2310 216108 47411 3.58131 3.58131 -132.928 -3.58131 0 0 1.14541e+06 3963.36 0.29 0.09 0.21 -1 -1 0.29 0.0311707 0.0272094 103 65 52 26 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.79 vpr 63.65 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30308 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65176 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.2 MiB 0.79 1135 16081 6006 7648 2427 63.6 MiB 0.17 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000792008 0.000734923 0.0802752 0.0747246 44 3513 45 6.99608e+06 323745 787024. 2723.27 3.07 0.263699 0.23117 27778 195446 -1 2487 19 2432 3368 259814 58474 4.16544 4.16544 -153.653 -4.16544 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0302425 0.0265272 123 93 31 31 92 31 -fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 8.21 vpr 63.42 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30500 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.7 MiB 2.40 1185 10050 2506 6241 1303 63.4 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.65 0.000665784 0.000618822 0.0419072 0.0389879 38 3007 50 6.99608e+06 220735 678818. 2348.85 3.16 0.201173 0.174813 26626 170182 -1 2497 20 1576 2252 189478 38614 3.61641 3.61641 -137.232 -3.61641 0 0 902133. 3121.57 0.23 0.08 0.15 -1 -1 0.23 0.0279954 0.0244827 88 61 32 32 60 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 6.34 vpr 63.01 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30156 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 844 13856 5698 7170 988 63.0 MiB 0.15 0.00 3.30794 -123.058 -3.30794 3.30794 0.66 0.000673523 0.000625469 0.0698808 0.0647266 46 2571 29 6.99608e+06 206020 828058. 2865.25 2.87 0.215414 0.189179 28066 200906 -1 1932 23 1732 2132 182492 39438 3.46881 3.46881 -137.482 -3.46881 0 0 1.01997e+06 3529.29 0.25 0.08 0.17 -1 -1 0.25 0.0297454 0.025875 91 63 32 32 62 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 5.65 vpr 63.45 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1239 11118 3579 5407 2132 63.4 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.65 0.000811389 0.000755376 0.0518509 0.0482252 46 2851 29 6.99608e+06 264882 828058. 2865.25 2.08 0.210074 0.183342 28066 200906 -1 2313 22 2167 2631 155247 34639 4.06012 4.06012 -156.461 -4.06012 0 0 1.01997e+06 3529.29 0.25 0.08 0.16 -1 -1 0.25 0.0341321 0.0297773 110 65 64 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 9.01 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30500 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.96 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.66 0.000713425 0.000661972 0.039312 0.0365267 38 3163 50 6.99608e+06 309029 678818. 2348.85 4.57 0.213015 0.184621 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.21 0.05 0.10 -1 -1 0.21 0.0172219 0.0153018 101 62 56 29 58 29 -fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 16.91 vpr 63.69 MiB 0.04 7212 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.3 MiB 0.71 1399 13316 4006 7788 1522 63.7 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.65 0.000861596 0.000800968 0.0638529 0.0593525 38 4423 46 6.99608e+06 323745 678818. 2348.85 13.46 0.409142 0.352873 26626 170182 -1 3297 22 3218 3824 326274 67307 5.28064 5.28064 -197.745 -5.28064 0 0 902133. 3121.57 0.22 0.12 0.14 -1 -1 0.22 0.0391886 0.0340593 140 127 0 0 128 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.89 vpr 62.53 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30396 -1 -1 11 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64032 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.0 MiB 1.13 486 10149 3821 5138 1190 62.5 MiB 0.08 0.00 2.81885 -95.7056 -2.81885 2.81885 0.66 0.000579251 0.000538879 0.0396532 0.0368955 44 2052 46 6.99608e+06 161872 787024. 2723.27 2.23 0.174783 0.151736 27778 195446 -1 1238 21 1095 1683 125081 30710 2.96677 2.96677 -105.273 -2.96677 0 0 997811. 3452.63 0.25 0.06 0.17 -1 -1 0.25 0.02386 0.0207883 57 4 85 31 0 0 -fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 7.95 vpr 63.66 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30452 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 24.9 MiB 2.60 1299 14303 5218 6688 2397 63.7 MiB 0.14 0.00 4.76923 -166.635 -4.76923 4.76923 0.66 0.000780947 0.000724329 0.0661607 0.0614374 46 3535 24 6.99608e+06 279598 828058. 2865.25 2.54 0.222862 0.195402 28066 200906 -1 2677 20 2133 2707 206557 44781 4.9183 4.9183 -179.353 -4.9183 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0316096 0.0277342 118 92 28 28 92 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 6.17 vpr 63.38 MiB 0.04 6888 -1 -1 1 0.03 -1 -1 30120 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.8 MiB 0.84 1244 15216 5143 8703 1370 63.4 MiB 0.14 0.00 4.66407 -173.875 -4.66407 4.66407 0.65 0.00072261 0.000671356 0.0669381 0.0622027 44 3377 41 6.99608e+06 235451 787024. 2723.27 2.60 0.229549 0.201262 27778 195446 -1 2710 23 2830 3577 334042 64971 4.41784 4.41784 -170.681 -4.41784 0 0 997811. 3452.63 0.25 0.11 0.14 -1 -1 0.25 0.0321864 0.0280765 110 96 0 0 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 9.19 vpr 63.62 MiB 0.04 7096 -1 -1 1 0.03 -1 -1 30416 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1129 13403 5326 6238 1839 63.6 MiB 0.12 0.00 3.33684 -128.417 -3.33684 3.33684 0.89 0.000594434 0.000544882 0.047438 0.0435706 38 3758 46 6.99608e+06 279598 678818. 2348.85 5.29 0.223512 0.194629 26626 170182 -1 2630 34 2888 3886 472852 174027 3.46381 3.46381 -137.765 -3.46381 0 0 902133. 3121.57 0.22 0.19 0.11 -1 -1 0.22 0.051104 0.0443431 106 65 61 32 64 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.70 vpr 63.66 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30760 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.4 MiB 0.73 1500 14261 4373 7976 1912 63.7 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.66 0.000916428 0.000851489 0.0727778 0.0675792 40 4008 30 6.99608e+06 323745 706193. 2443.58 3.08 0.264564 0.231667 26914 176310 -1 3530 20 2959 3413 351818 70177 5.7166 5.7166 -206.283 -5.7166 0 0 926341. 3205.33 0.23 0.12 0.15 -1 -1 0.23 0.0367643 0.0321517 140 96 64 32 96 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.02 vpr 62.66 MiB 0.02 6832 -1 -1 1 0.04 -1 -1 30324 -1 -1 13 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.1 MiB 1.99 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.65 0.000622691 0.000578741 0.0303429 0.0281888 36 2266 49 6.99608e+06 191304 648988. 2245.63 2.52 0.156173 0.134535 26050 158493 -1 1499 21 1050 1078 106570 24258 2.50972 2.50972 -92.34 -2.50972 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0219706 0.0190439 65 56 0 0 53 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.51 vpr 62.91 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30320 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.1 MiB 2.96 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.70 0.000621678 0.000577698 0.0394262 0.0367199 34 2262 25 6.99608e+06 206020 618332. 2139.56 1.93 0.155262 0.135243 25762 151098 -1 2017 17 1345 1924 207544 41045 3.77871 3.77871 -138.876 -3.77871 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0219026 0.0191797 72 34 60 30 30 30 -fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 6.28 vpr 62.87 MiB 0.04 6840 -1 -1 1 0.03 -1 -1 30104 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.2 MiB 0.23 764 10316 3722 4683 1911 62.9 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.66 0.000656069 0.000609362 0.0452644 0.0420766 44 3301 35 6.99608e+06 176588 787024. 2723.27 3.28 0.189806 0.165692 27778 195446 -1 2175 23 1997 3097 279579 59041 4.02761 4.02761 -148.877 -4.02761 0 0 997811. 3452.63 0.25 0.10 0.21 -1 -1 0.25 0.029171 0.0254909 80 34 64 32 32 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 5.04 vpr 62.72 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 18 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.2 MiB 0.68 497 10819 4307 4933 1579 62.7 MiB 0.09 0.00 3.31386 -89.9377 -3.31386 3.31386 0.66 0.000647088 0.000603037 0.0407049 0.0379379 38 1712 31 6.99608e+06 264882 678818. 2348.85 1.86 0.154522 0.134353 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.22 0.06 0.15 -1 -1 0.22 0.0239852 0.0208942 68 34 50 25 25 25 -fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 7.03 vpr 63.52 MiB 0.02 7148 -1 -1 1 0.03 -1 -1 30540 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.87 1423 14358 4574 7658 2126 63.5 MiB 0.14 0.00 3.77875 -143.667 -3.77875 3.77875 0.66 0.000812114 0.000754269 0.0663138 0.0615622 46 3969 25 6.99608e+06 294314 828058. 2865.25 3.26 0.23514 0.205869 28066 200906 -1 3185 20 2725 3857 351467 66878 4.26372 4.26372 -163.922 -4.26372 0 0 1.01997e+06 3529.29 0.35 0.11 0.20 -1 -1 0.35 0.0291451 0.0258444 125 94 32 32 94 32 -fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 5.82 vpr 63.66 MiB 0.02 7212 -1 -1 1 0.03 -1 -1 30448 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65188 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.83 1182 13663 4698 6384 2581 63.7 MiB 0.14 0.00 4.16978 -143.827 -4.16978 4.16978 0.66 0.000782365 0.000726129 0.0639972 0.0594537 46 3209 24 6.99608e+06 323745 828058. 2865.25 2.13 0.221252 0.193906 28066 200906 -1 2521 22 2567 3385 263451 56153 4.22545 4.22545 -148.772 -4.22545 0 0 1.01997e+06 3529.29 0.28 0.10 0.17 -1 -1 0.28 0.0337162 0.029429 121 94 29 29 93 31 -fixed_k6_frac_N8_22nm.xml mult_001.v common 7.82 vpr 62.77 MiB 0.05 6892 -1 -1 14 0.26 -1 -1 32872 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 1.92 1265 9263 2276 5364 1623 62.8 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.65 0.000918685 0.000842563 0.0518695 0.047945 44 3187 47 6.79088e+06 255968 787024. 2723.27 2.81 0.27075 0.235219 27118 194962 -1 2631 28 1281 3462 414391 183728 7.3431 7.3431 -158.204 -7.3431 0 0 997811. 3452.63 0.25 0.16 0.16 -1 -1 0.25 0.0486984 0.0424814 134 186 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_002.v common 7.72 vpr 62.73 MiB 0.05 6788 -1 -1 14 0.28 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1228 8270 2008 5297 965 62.7 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.65 0.000900735 0.000835664 0.0455987 0.0423016 38 3303 16 6.79088e+06 269440 678818. 2348.85 3.25 0.221943 0.193173 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0323699 0.0285516 132 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_003.v common 9.54 vpr 62.64 MiB 0.05 6868 -1 -1 11 0.22 -1 -1 32724 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 1.62 1125 11613 3520 5862 2231 62.6 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.66 0.00088626 0.000820018 0.060814 0.0562856 38 3591 44 6.79088e+06 269440 678818. 2348.85 4.94 0.275465 0.239832 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.28 0.08 0.14 -1 -1 0.28 0.0269666 0.0243256 138 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_004.v common 12.22 vpr 62.88 MiB 0.05 6816 -1 -1 12 0.33 -1 -1 32728 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64384 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.2 MiB 1.34 1021 7643 1879 4700 1064 62.9 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.65 0.000902471 0.00083621 0.0419129 0.038825 38 2805 20 6.79088e+06 296384 678818. 2348.85 7.90 0.347136 0.299365 25966 169698 -1 2367 17 1240 3768 185598 43157 6.41977 6.41977 -135.412 -6.41977 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0334068 0.0294597 136 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_005.v common 26.54 vpr 63.18 MiB 0.02 6796 -1 -1 13 0.31 -1 -1 32900 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.6 MiB 2.01 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.65 0.00103692 0.000960661 0.0710613 0.0657986 40 3628 20 6.79088e+06 323328 706193. 2443.58 21.50 0.459173 0.397886 26254 175826 -1 3546 18 1747 4686 306027 66756 7.21431 7.21431 -166.609 -7.21431 0 0 926341. 3205.33 0.23 0.11 0.11 -1 -1 0.23 0.0397939 0.0351206 160 223 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_006.v common 21.92 vpr 63.14 MiB 0.03 6672 -1 -1 12 0.30 -1 -1 32760 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.7 MiB 2.18 1344 4768 918 3685 165 63.1 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.66 0.000956906 0.000885912 0.0273586 0.0254022 40 3616 33 6.79088e+06 323328 706193. 2443.58 16.69 0.435675 0.374235 26254 175826 -1 3273 18 1457 4340 288576 61849 6.72076 6.72076 -158.409 -6.72076 0 0 926341. 3205.33 0.26 0.10 0.15 -1 -1 0.26 0.036881 0.0324977 150 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_007.v common 8.28 vpr 62.25 MiB 0.04 6524 -1 -1 12 0.17 -1 -1 32312 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63740 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.6 MiB 1.46 1000 7177 1656 4753 768 62.2 MiB 0.08 0.00 7.28149 -137.47 -7.28149 7.28149 0.70 0.000785571 0.000725222 0.0379845 0.0353239 36 2895 37 6.79088e+06 269440 648988. 2245.63 4.03 0.19796 0.172069 25390 158009 -1 2329 17 1036 2684 168880 36813 6.33023 6.33023 -130.669 -6.33023 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0258128 0.0227753 101 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_008.v common 7.06 vpr 62.97 MiB 0.03 6736 -1 -1 11 0.21 -1 -1 32708 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.22 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.65 0.00085361 0.000782909 0.0498167 0.0459766 38 3033 23 6.79088e+06 242496 678818. 2348.85 3.11 0.22151 0.192635 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0299203 0.0264289 118 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_009.v common 8.58 vpr 62.41 MiB 0.02 6596 -1 -1 12 0.17 -1 -1 32432 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 2.35 1115 11631 3187 7135 1309 62.4 MiB 0.11 0.00 6.73244 -139.285 -6.73244 6.73244 0.66 0.000750036 0.000694909 0.0537423 0.0497747 36 2986 40 6.79088e+06 242496 648988. 2245.63 3.60 0.228049 0.198627 25390 158009 -1 2466 16 1109 2457 151344 34475 5.61753 5.61753 -130.399 -5.61753 0 0 828058. 2865.25 0.21 0.07 0.09 -1 -1 0.21 0.0240555 0.0215892 111 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_010.v common 13.93 vpr 62.48 MiB 0.04 6492 -1 -1 13 0.19 -1 -1 32756 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.0 MiB 1.39 1011 5412 1090 4064 258 62.5 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000818333 0.000758248 0.0291177 0.0270238 34 3575 46 6.79088e+06 215552 618332. 2139.56 9.66 0.326418 0.280578 25102 150614 -1 2661 17 1187 2840 180392 41089 6.24757 6.24757 -161.543 -6.24757 0 0 787024. 2723.27 0.29 0.08 0.16 -1 -1 0.29 0.0283984 0.0255369 107 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_011.v common 5.79 vpr 62.36 MiB 0.04 6696 -1 -1 12 0.20 -1 -1 32580 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.28 838 6386 1352 4871 163 62.4 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.65 0.000704057 0.000652366 0.0298531 0.027698 38 2306 22 6.79088e+06 215552 678818. 2348.85 1.81 0.167761 0.145296 25966 169698 -1 1871 14 880 2296 117186 27589 5.99697 5.99697 -134.057 -5.99697 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0228644 0.02028 93 129 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_012.v common 14.78 vpr 62.56 MiB 0.04 6576 -1 -1 12 0.13 -1 -1 32640 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 24.0 MiB 1.79 1055 4560 1014 3240 306 62.6 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.65 0.000711279 0.000658672 0.0224351 0.0207874 40 2500 20 6.79088e+06 188608 706193. 2443.58 10.22 0.304683 0.261469 26254 175826 -1 2439 18 1033 2706 185859 39937 5.76047 5.76047 -146.93 -5.76047 0 0 926341. 3205.33 0.23 0.07 0.15 -1 -1 0.23 0.0273718 0.0240864 94 133 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_013.v common 10.79 vpr 63.09 MiB 0.05 6788 -1 -1 13 0.26 -1 -1 32844 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.35 1239 11431 3102 6258 2071 63.1 MiB 0.12 0.00 7.91359 -165.523 -7.91359 7.91359 0.65 0.000982646 0.000909573 0.0643446 0.0595706 36 3864 39 6.79088e+06 282912 648988. 2245.63 6.50 0.292082 0.254274 25390 158009 -1 2940 20 1414 4034 257854 56811 6.96366 6.96366 -158.79 -6.96366 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0406202 0.0356797 148 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_014.v common 7.19 vpr 63.16 MiB 0.02 6712 -1 -1 14 0.32 -1 -1 33096 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64672 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.61 1366 11245 3016 6173 2056 63.2 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.66 0.000987436 0.000913718 0.0634744 0.0587717 40 3379 26 6.79088e+06 282912 706193. 2443.58 2.41 0.264704 0.230631 26254 175826 -1 3220 26 1846 5278 524665 186744 7.97735 7.97735 -176.98 -7.97735 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0503228 0.0439428 149 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_015.v common 12.93 vpr 62.42 MiB 0.05 6592 -1 -1 11 0.18 -1 -1 32400 -1 -1 20 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.36 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.65 0.000754333 0.000698506 0.0580178 0.0537936 40 2281 19 6.79088e+06 269440 706193. 2443.58 8.81 0.35973 0.31113 26254 175826 -1 2219 18 1178 2818 179355 42380 6.07609 6.07609 -130.204 -6.07609 0 0 926341. 3205.33 0.22 0.06 0.10 -1 -1 0.22 0.0265573 0.0234187 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_016.v common 9.35 vpr 63.44 MiB 0.04 6792 -1 -1 12 0.27 -1 -1 32872 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1420 13992 4103 7703 2186 63.4 MiB 0.16 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000996273 0.000922694 0.0805561 0.0744952 46 4023 39 6.79088e+06 269440 828058. 2865.25 3.87 0.306314 0.267628 27406 200422 -1 3200 19 1574 4974 254840 56326 6.46241 6.46241 -152.411 -6.46241 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0400629 0.0352882 146 212 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_017.v common 8.49 vpr 63.16 MiB 0.02 6812 -1 -1 13 0.27 -1 -1 32760 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1236 10687 3174 5565 1948 63.2 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.65 0.000994362 0.000915789 0.0612016 0.0566778 38 3417 39 6.79088e+06 282912 678818. 2348.85 4.07 0.294005 0.255666 25966 169698 -1 2856 18 1463 4224 225289 50661 7.25695 7.25695 -164.08 -7.25695 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0386639 0.0340435 144 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_018.v common 6.71 vpr 62.29 MiB 0.02 6568 -1 -1 12 0.17 -1 -1 32444 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63780 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.6 MiB 1.87 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.67 0.000749537 0.000691153 0.0379579 0.0351627 36 2644 29 6.79088e+06 215552 648988. 2245.63 2.06 0.196131 0.170264 25390 158009 -1 2265 14 924 2438 141434 32012 6.24403 6.24403 -153.622 -6.24403 0 0 828058. 2865.25 0.21 0.06 0.15 -1 -1 0.21 0.0246236 0.0218536 104 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_019.v common 6.98 vpr 61.93 MiB 0.02 6508 -1 -1 10 0.12 -1 -1 32304 -1 -1 12 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63416 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.40 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.66 0.000572093 0.000531662 0.0294834 0.0273781 38 2075 46 6.79088e+06 161664 678818. 2348.85 2.03 0.162851 0.140726 25966 169698 -1 1842 15 742 1729 104172 22975 4.71101 4.71101 -125.986 -4.71101 0 0 902133. 3121.57 0.22 0.05 0.14 -1 -1 0.22 0.0190775 0.0167779 67 88 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_020.v common 6.75 vpr 62.41 MiB 0.04 6632 -1 -1 13 0.21 -1 -1 32700 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63912 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.8 MiB 1.81 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.67 0.000746479 0.000692004 0.0314776 0.0291664 38 2544 18 6.79088e+06 215552 678818. 2348.85 2.04 0.180037 0.156505 25966 169698 -1 2069 15 925 2237 117468 27019 6.53742 6.53742 -150.943 -6.53742 0 0 902133. 3121.57 0.22 0.06 0.14 -1 -1 0.22 0.0249529 0.0220905 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_021.v common 7.45 vpr 62.77 MiB 0.02 6672 -1 -1 13 0.28 -1 -1 32912 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1254 12371 3408 7445 1518 62.8 MiB 0.15 0.00 7.46133 -157.73 -7.46133 7.46133 0.72 0.000960148 0.000888014 0.076876 0.0710101 38 3224 45 6.79088e+06 296384 678818. 2348.85 3.12 0.306199 0.267499 25966 169698 -1 2788 18 1503 4101 216942 48982 6.74533 6.74533 -153.39 -6.74533 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0388915 0.0342658 143 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_022.v common 7.67 vpr 63.13 MiB 0.02 6792 -1 -1 13 0.30 -1 -1 33132 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.7 MiB 1.84 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.65 0.000956134 0.000885132 0.0618236 0.0572714 40 3438 18 6.79088e+06 255968 706193. 2443.58 2.77 0.261008 0.227515 26254 175826 -1 3243 28 1533 4313 517934 211444 7.06211 7.06211 -164.608 -7.06211 0 0 926341. 3205.33 0.23 0.18 0.15 -1 -1 0.23 0.0510905 0.0445997 141 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_023.v common 4.94 vpr 61.77 MiB 0.03 6404 -1 -1 9 0.10 -1 -1 32124 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63256 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.2 MiB 1.54 588 10149 2859 5591 1699 61.8 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.66 0.000499776 0.000464726 0.034537 0.0321232 30 1736 26 6.79088e+06 215552 556674. 1926.21 0.85 0.0980044 0.0860494 24526 138013 -1 1364 16 573 1321 72341 16600 4.27123 4.27123 -90.7925 -4.27123 0 0 706193. 2443.58 0.18 0.04 0.12 -1 -1 0.18 0.0176496 0.0154682 64 73 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_024.v common 8.64 vpr 63.10 MiB 0.02 6696 -1 -1 13 0.34 -1 -1 32848 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 2.17 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.65 0.000974086 0.000903302 0.0414575 0.0384207 38 3745 37 6.79088e+06 296384 678818. 2348.85 3.49 0.257695 0.22336 25966 169698 -1 2829 22 1498 3994 208332 49057 7.33967 7.33967 -159.087 -7.33967 0 0 902133. 3121.57 0.22 0.10 0.16 -1 -1 0.22 0.0426348 0.0373043 137 210 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_025.v common 5.69 vpr 61.86 MiB 0.03 6352 -1 -1 8 0.10 -1 -1 30992 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63344 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.32 737 11631 4246 5219 2166 61.9 MiB 0.08 0.00 4.77835 -104.906 -4.77835 4.77835 0.65 0.000514294 0.000477895 0.0373539 0.0347392 30 1930 29 6.79088e+06 229024 556674. 1926.21 0.97 0.104463 0.0919141 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.18 0.03 0.08 -1 -1 0.18 0.0110387 0.00987682 64 61 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_026.v common 6.92 vpr 62.70 MiB 0.04 6832 -1 -1 15 0.23 -1 -1 33148 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1155 10581 3115 6097 1369 62.7 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.69 0.000849706 0.000788254 0.0572703 0.0531995 46 2717 18 6.79088e+06 229024 828058. 2865.25 2.06 0.230695 0.201731 27406 200422 -1 2305 15 984 2683 138652 31196 7.79833 7.79833 -164.21 -7.79833 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0285159 0.0252333 118 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_027.v common 9.74 vpr 63.09 MiB 0.02 6772 -1 -1 12 0.25 -1 -1 32780 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1241 4433 817 3477 139 63.1 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.70 0.000977367 0.000903724 0.0277414 0.025713 36 4047 49 6.79088e+06 296384 648988. 2245.63 5.46 0.266888 0.231106 25390 158009 -1 3080 26 1780 5685 441383 135939 6.24054 6.24054 -147.996 -6.24054 0 0 828058. 2865.25 0.20 0.09 0.09 -1 -1 0.20 0.027633 0.0245762 145 215 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_028.v common 7.53 vpr 62.81 MiB 0.02 6708 -1 -1 13 0.28 -1 -1 32684 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.2 MiB 1.33 1284 4659 748 3690 221 62.8 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.65 0.000914223 0.000845613 0.0282342 0.0261828 38 3292 49 6.79088e+06 269440 678818. 2348.85 3.31 0.258067 0.222906 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.22 0.09 0.14 -1 -1 0.22 0.0353296 0.0310848 136 195 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_029.v common 6.36 vpr 62.48 MiB 0.05 6576 -1 -1 12 0.19 -1 -1 32288 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.0 MiB 2.05 1045 5303 1002 3952 349 62.5 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.65 0.000766293 0.000709242 0.0256175 0.023697 38 2622 19 6.79088e+06 255968 678818. 2348.85 1.76 0.175372 0.151829 25966 169698 -1 2310 14 940 2469 134532 30494 5.90389 5.90389 -141.743 -5.90389 0 0 902133. 3121.57 0.21 0.04 0.09 -1 -1 0.21 0.0148605 0.0135481 106 145 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_030.v common 7.28 vpr 62.15 MiB 0.02 6520 -1 -1 11 0.15 -1 -1 32716 -1 -1 20 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63640 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.5 MiB 1.87 954 11652 3379 7115 1158 62.1 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.67 0.000692035 0.00064107 0.0481296 0.0446396 38 2452 30 6.79088e+06 269440 678818. 2348.85 2.69 0.194208 0.169217 25966 169698 -1 2025 16 952 2455 147220 32167 5.44954 5.44954 -130.105 -5.44954 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0258718 0.0228321 97 125 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_031.v common 7.40 vpr 62.30 MiB 0.02 6604 -1 -1 11 0.15 -1 -1 32412 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 23.9 MiB 1.17 1013 7346 1810 4929 607 62.3 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.65 0.000727466 0.000674401 0.0346294 0.0321114 36 2839 26 6.79088e+06 255968 648988. 2245.63 3.52 0.188786 0.164067 25390 158009 -1 2411 17 1234 3161 183810 41439 5.81774 5.81774 -129.793 -5.81774 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0268238 0.0236634 107 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_032.v common 7.50 vpr 62.93 MiB 0.04 6652 -1 -1 12 0.19 -1 -1 32424 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1274 9443 2812 5690 941 62.9 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.65 0.000859532 0.000796501 0.0497391 0.0460911 38 3239 49 6.79088e+06 255968 678818. 2348.85 2.74 0.260935 0.226094 25966 169698 -1 2702 19 1357 3398 176130 39887 6.07609 6.07609 -157.356 -6.07609 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.034222 0.0300518 119 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_033.v common 7.39 vpr 62.39 MiB 0.03 6508 -1 -1 11 0.17 -1 -1 32520 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 23.9 MiB 1.49 908 10056 3226 4794 2036 62.4 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.66 0.000772882 0.000715927 0.0483496 0.0448044 36 2970 31 6.79088e+06 229024 648988. 2245.63 3.11 0.220481 0.192112 25390 158009 -1 2301 17 1161 3108 192775 44194 5.65324 5.65324 -139.772 -5.65324 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.028406 0.025032 107 147 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_034.v common 5.91 vpr 62.52 MiB 0.04 6676 -1 -1 10 0.17 -1 -1 32640 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.9 MiB 1.38 870 8022 2297 4713 1012 62.5 MiB 0.08 0.00 6.19022 -129.37 -6.19022 6.19022 0.69 0.00072027 0.000666601 0.0365349 0.0337065 34 2314 24 6.79088e+06 242496 618332. 2139.56 1.86 0.190137 0.165164 25102 150614 -1 2008 19 795 2271 131804 30171 5.57822 5.57822 -125.253 -5.57822 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0286698 0.0251962 103 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_035.v common 9.82 vpr 63.10 MiB 0.02 6808 -1 -1 13 0.32 -1 -1 33424 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.48 1352 10103 2504 6636 963 63.1 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.66 0.00106153 0.000980609 0.0609609 0.0563514 38 3914 48 6.79088e+06 296384 678818. 2348.85 5.45 0.320641 0.278858 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.21 0.06 0.09 -1 -1 0.21 0.0252382 0.0227633 162 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_036.v common 12.02 vpr 63.28 MiB 0.05 6816 -1 -1 13 0.32 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.67 1274 13849 4315 6877 2657 63.3 MiB 0.15 0.00 7.85526 -169.716 -7.85526 7.85526 0.65 0.000983715 0.000910464 0.0767195 0.070801 36 4447 42 6.79088e+06 282912 648988. 2245.63 7.33 0.315242 0.275346 25390 158009 -1 3232 21 1963 5759 386051 89615 6.78453 6.78453 -165.458 -6.78453 0 0 828058. 2865.25 0.21 0.13 0.14 -1 -1 0.21 0.0427464 0.0374926 152 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_037.v common 10.24 vpr 62.39 MiB 0.05 6552 -1 -1 12 0.15 -1 -1 32844 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63892 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.7 MiB 1.25 851 11631 4796 6628 207 62.4 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.65 0.00074102 0.000685826 0.0524204 0.0485176 36 2928 40 6.79088e+06 242496 648988. 2245.63 6.20 0.231086 0.201834 25390 158009 -1 2261 17 1051 2832 184145 41060 6.29098 6.29098 -147.205 -6.29098 0 0 828058. 2865.25 0.20 0.07 0.09 -1 -1 0.20 0.0267652 0.0236954 102 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_038.v common 6.63 vpr 63.24 MiB 0.02 6700 -1 -1 12 0.26 -1 -1 33056 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.5 MiB 1.18 1154 12749 3915 6368 2466 63.2 MiB 0.14 0.00 7.84323 -159.621 -7.84323 7.84323 0.59 0.000978239 0.000905998 0.0705089 0.0652143 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.57 0.275407 0.240257 26254 175826 -1 2995 23 1839 5712 332103 77359 6.96022 6.96022 -155.826 -6.96022 0 0 926341. 3205.33 0.22 0.12 0.12 -1 -1 0.22 0.0450531 0.039395 148 219 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_039.v common 14.38 vpr 62.95 MiB 0.05 6764 -1 -1 14 0.35 -1 -1 33104 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.65 0.000955624 0.000885556 0.0625237 0.0579839 36 4160 47 6.79088e+06 282912 648988. 2245.63 10.10 0.408809 0.353661 25390 158009 -1 3295 20 1448 4046 254393 55212 7.30047 7.30047 -166.625 -7.30047 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0394323 0.0346858 146 193 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_040.v common 7.29 vpr 62.67 MiB 0.04 6880 -1 -1 13 0.26 -1 -1 32808 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.0 MiB 2.17 1310 10149 2655 5632 1862 62.7 MiB 0.11 0.00 7.78561 -164.423 -7.78561 7.78561 0.66 0.000879432 0.000814639 0.0527774 0.0489338 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.17 0.241611 0.21026 26254 175826 -1 2932 18 1410 3652 240235 52553 7.08209 7.08209 -161.624 -7.08209 0 0 926341. 3205.33 0.23 0.09 0.16 -1 -1 0.23 0.0344146 0.0302114 126 180 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_041.v common 19.05 vpr 62.61 MiB 0.02 6692 -1 -1 12 0.24 -1 -1 32904 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.0 MiB 0.92 1267 10859 2857 6722 1280 62.6 MiB 0.12 0.00 7.65156 -158.395 -7.65156 7.65156 0.66 0.00108257 0.000995625 0.0592775 0.0548986 40 3210 25 6.79088e+06 309856 706193. 2443.58 15.11 0.423023 0.36614 26254 175826 -1 3013 17 1224 3601 230109 50036 6.59546 6.59546 -152.651 -6.59546 0 0 926341. 3205.33 0.27 0.09 0.15 -1 -1 0.27 0.0351359 0.0311736 135 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_042.v common 8.22 vpr 62.56 MiB 0.04 6732 -1 -1 12 0.20 -1 -1 32832 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.60 0.00083187 0.000770231 0.0562454 0.0521067 36 3341 42 6.79088e+06 229024 648988. 2245.63 4.34 0.251322 0.218438 25390 158009 -1 2534 19 1305 3419 209779 47129 6.48693 6.48693 -144.823 -6.48693 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.033241 0.0291358 113 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_043.v common 8.80 vpr 63.43 MiB 0.04 7024 -1 -1 14 0.47 -1 -1 32520 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.5 MiB 1.32 1406 13355 3498 8147 1710 63.4 MiB 0.16 0.00 8.18038 -175.8 -8.18038 8.18038 0.65 0.00108322 0.00100082 0.0825634 0.0763236 38 4021 47 6.79088e+06 336800 678818. 2348.85 4.21 0.348322 0.304694 25966 169698 -1 3245 16 1675 4934 268217 59005 7.49762 7.49762 -171.824 -7.49762 0 0 902133. 3121.57 0.27 0.10 0.14 -1 -1 0.27 0.0389529 0.0345345 169 245 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_044.v common 8.93 vpr 62.46 MiB 0.02 6524 -1 -1 11 0.22 -1 -1 32520 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63956 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.60 1088 9006 2212 5478 1316 62.5 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.65 0.000814582 0.000754596 0.045453 0.042099 36 3313 23 6.79088e+06 242496 648988. 2245.63 4.53 0.215458 0.187331 25390 158009 -1 2796 18 1373 3660 246448 53510 5.94647 5.94647 -142.293 -5.94647 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0309182 0.0271323 113 155 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_045.v common 8.19 vpr 62.80 MiB 0.05 6744 -1 -1 13 0.29 -1 -1 32752 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64312 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1133 5422 1123 3954 345 62.8 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.67 0.000891563 0.000825724 0.0307146 0.0285062 36 3213 29 6.79088e+06 255968 648988. 2245.63 3.63 0.219689 0.190027 25390 158009 -1 2683 17 1135 3524 216222 47111 6.59546 6.59546 -146.118 -6.59546 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0330407 0.0291576 132 177 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_046.v common 10.08 vpr 63.16 MiB 0.03 6636 -1 -1 12 0.25 -1 -1 32992 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.4 MiB 1.39 1437 6967 1505 4666 796 63.2 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.65 0.00100091 0.000925063 0.0416451 0.038539 38 3828 35 6.79088e+06 282912 678818. 2348.85 5.73 0.278546 0.241791 25966 169698 -1 3129 20 1505 4519 268216 58977 6.50582 6.50582 -154.121 -6.50582 0 0 902133. 3121.57 0.22 0.11 0.14 -1 -1 0.22 0.041517 0.0364808 153 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_047.v common 9.12 vpr 62.73 MiB 0.05 6748 -1 -1 13 0.26 -1 -1 32692 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.1 MiB 1.29 1157 7823 1835 4914 1074 62.7 MiB 0.11 0.00 7.47708 -158.746 -7.47708 7.47708 0.66 0.00089482 0.00082905 0.0528113 0.0489852 36 3541 41 6.79088e+06 255968 648988. 2245.63 4.85 0.274706 0.239579 25390 158009 -1 2777 16 1346 3846 223572 50333 6.62347 6.62347 -153.831 -6.62347 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0317307 0.0280545 131 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_048.v common 8.07 vpr 62.98 MiB 0.03 6876 -1 -1 13 0.21 -1 -1 32748 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.2 MiB 1.90 1097 11106 3753 5771 1582 63.0 MiB 0.13 0.00 7.69072 -162.222 -7.69072 7.69072 0.67 0.000987304 0.000922097 0.0615489 0.0569984 34 3515 39 6.79088e+06 229024 618332. 2139.56 3.12 0.257682 0.224207 25102 150614 -1 2637 24 1428 3851 351737 110675 6.58083 6.58083 -153.595 -6.58083 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0426018 0.0372754 118 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_049.v common 9.78 vpr 62.99 MiB 0.03 6720 -1 -1 12 0.25 -1 -1 32756 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.66 0.00097055 0.000897938 0.0463755 0.0430064 36 3806 40 6.79088e+06 309856 648988. 2245.63 4.93 0.272105 0.235851 25390 158009 -1 3171 19 1335 4203 269671 57713 7.12467 7.12467 -166.166 -7.12467 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0388009 0.0341413 150 204 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_050.v common 19.87 vpr 62.84 MiB 0.04 6828 -1 -1 13 0.32 -1 -1 32780 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.4 MiB 1.97 1315 9051 2036 5908 1107 62.8 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.68 0.000960503 0.000887814 0.0515224 0.0476589 40 3325 24 6.79088e+06 269440 706193. 2443.58 14.80 0.442727 0.381893 26254 175826 -1 3145 28 1639 4912 495639 171665 6.99932 6.99932 -162.116 -6.99932 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.0514664 0.0449435 143 205 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_051.v common 17.77 vpr 62.54 MiB 0.02 6748 -1 -1 14 0.27 -1 -1 32900 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.01 1139 8270 1889 5806 575 62.5 MiB 0.09 0.00 8.36252 -172.285 -8.36252 8.36252 0.67 0.000861859 0.000799242 0.0446075 0.0414042 40 2999 22 6.79088e+06 242496 706193. 2443.58 12.81 0.402548 0.346931 26254 175826 -1 2868 16 1271 3527 223782 49875 7.46496 7.46496 -168.675 -7.46496 0 0 926341. 3205.33 0.25 0.08 0.16 -1 -1 0.25 0.0303815 0.0268631 123 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_052.v common 8.82 vpr 62.96 MiB 0.02 6852 -1 -1 13 0.31 -1 -1 32880 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.1 MiB 3.04 1159 8868 1881 6136 851 63.0 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.66 0.000937212 0.00086874 0.0490727 0.0455 36 3689 32 6.79088e+06 269440 648988. 2245.63 2.78 0.222677 0.19443 25390 158009 -1 2935 19 1521 3981 226668 51258 6.75652 6.75652 -158.777 -6.75652 0 0 828058. 2865.25 0.21 0.11 0.13 -1 -1 0.21 0.040276 0.0354975 134 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_053.v common 6.88 vpr 63.26 MiB 0.02 6808 -1 -1 13 0.28 -1 -1 33108 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1323 8591 2185 5991 415 63.3 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.65 0.000996346 0.000922088 0.0495303 0.0458475 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.69 0.247883 0.21549 26254 175826 -1 3066 25 1743 5231 489753 175031 7.25772 7.25772 -167.404 -7.25772 0 0 926341. 3205.33 0.23 0.17 0.15 -1 -1 0.23 0.049066 0.0430426 154 220 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_054.v common 7.20 vpr 63.45 MiB 0.02 6736 -1 -1 12 0.33 -1 -1 32756 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.7 MiB 1.39 1325 11983 3288 6841 1854 63.4 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.65 0.00102033 0.000944733 0.067737 0.0625685 44 3682 36 6.79088e+06 323328 787024. 2723.27 2.71 0.296889 0.25863 27118 194962 -1 2742 18 1471 4099 199138 47944 6.49812 6.49812 -156.573 -6.49812 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0452158 0.0401748 157 230 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_055.v common 11.54 vpr 62.26 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32380 -1 -1 13 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63752 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.7 MiB 1.39 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.65 0.000681386 0.000630026 0.0339751 0.031483 40 2274 24 6.79088e+06 175136 706193. 2443.58 7.43 0.304264 0.262135 26254 175826 -1 2061 14 902 2231 149609 32911 5.5245 5.5245 -134.444 -5.5245 0 0 926341. 3205.33 0.23 0.06 0.11 -1 -1 0.23 0.0225574 0.0199568 90 122 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_056.v common 7.92 vpr 62.59 MiB 0.04 6644 -1 -1 13 0.18 -1 -1 32672 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.47 1073 11631 3861 5991 1779 62.6 MiB 0.12 0.00 7.81611 -170.556 -7.81611 7.81611 0.66 0.00091697 0.000857745 0.0593602 0.0550011 38 2825 21 6.79088e+06 229024 678818. 2348.85 2.57 0.231004 0.202037 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0294951 0.0260914 113 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_057.v common 8.79 vpr 63.41 MiB 0.03 6960 -1 -1 14 0.40 -1 -1 32792 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1399 15493 4561 8338 2594 63.4 MiB 0.18 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00113674 0.00104557 0.0949061 0.0876823 40 4316 49 6.79088e+06 323328 706193. 2443.58 4.23 0.369944 0.323016 26254 175826 -1 3795 37 3221 10978 976505 293645 7.9304 7.9304 -179.416 -7.9304 0 0 926341. 3205.33 0.25 0.32 0.17 -1 -1 0.25 0.0814709 0.0708164 180 267 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_058.v common 8.91 vpr 63.25 MiB 0.02 6828 -1 -1 13 0.31 -1 -1 32816 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.4 MiB 2.23 1244 13849 3731 7364 2754 63.3 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.65 0.00102789 0.000950214 0.0808519 0.0747894 38 3697 23 6.79088e+06 282912 678818. 2348.85 3.59 0.299817 0.262257 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.24 0.09 0.14 -1 -1 0.24 0.0370009 0.0327971 154 224 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_059.v common 4.90 vpr 62.41 MiB 0.02 6568 -1 -1 11 0.16 -1 -1 32620 -1 -1 17 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.66 899 5994 1459 3795 740 62.4 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.65 0.000723002 0.000669835 0.0286268 0.026468 30 2669 49 6.79088e+06 229024 556674. 1926.21 1.65 0.147432 0.128286 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0267135 0.0235382 99 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_060.v common 7.87 vpr 63.60 MiB 0.04 6960 -1 -1 15 0.44 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.30 1572 8083 1890 5078 1115 63.6 MiB 0.11 0.00 9.61575 -193.644 -9.61575 9.61575 0.71 0.00109983 0.00100924 0.0525623 0.0485348 44 4110 31 6.79088e+06 323328 787024. 2723.27 3.29 0.305529 0.265312 27118 194962 -1 3390 17 1634 4978 276321 60698 8.1454 8.1454 -178.826 -8.1454 0 0 997811. 3452.63 0.25 0.11 0.16 -1 -1 0.25 0.0402975 0.0356574 172 241 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_061.v common 7.11 vpr 62.98 MiB 0.02 6664 -1 -1 13 0.37 -1 -1 33028 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.07 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.65 0.000988445 0.000915501 0.055689 0.0516018 38 3572 19 6.79088e+06 296384 678818. 2348.85 3.03 0.248495 0.21691 25966 169698 -1 3018 18 1464 4144 216137 47891 7.081 7.081 -169.041 -7.081 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0389201 0.034419 149 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_062.v common 5.61 vpr 62.23 MiB 0.02 6540 -1 -1 11 0.13 -1 -1 32636 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63724 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.6 MiB 1.52 1043 11604 3704 5973 1927 62.2 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.65 0.000729788 0.000675276 0.0520692 0.0481738 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.49 0.1639 0.144063 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0280305 0.0246262 97 144 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_063.v common 7.03 vpr 63.10 MiB 0.03 6888 -1 -1 12 0.29 -1 -1 32796 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1321 11989 3057 7272 1660 63.1 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.66 0.000984237 0.000904521 0.0670253 0.0617948 40 3150 27 6.79088e+06 282912 706193. 2443.58 2.48 0.270904 0.236111 26254 175826 -1 3019 17 1406 4153 254158 55179 6.74877 6.74877 -155.224 -6.74877 0 0 926341. 3205.33 0.23 0.10 0.16 -1 -1 0.23 0.0370457 0.0326176 152 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_064.v common 8.81 vpr 62.44 MiB 0.04 6596 -1 -1 12 0.19 -1 -1 32384 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 23.9 MiB 1.83 1076 11776 3996 5804 1976 62.4 MiB 0.12 0.00 7.20737 -155.525 -7.20737 7.20737 0.65 0.000847847 0.000784424 0.0606436 0.056238 38 3023 28 6.79088e+06 215552 678818. 2348.85 4.16 0.236441 0.206429 25966 169698 -1 2627 22 1335 3623 254853 62853 6.20488 6.20488 -150.164 -6.20488 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.036946 0.0323494 115 159 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_065.v common 5.05 vpr 62.62 MiB 0.02 6592 -1 -1 12 0.18 -1 -1 32696 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 24.0 MiB 1.35 861 12331 3461 6927 1943 62.6 MiB 0.11 0.00 7.68992 -150.206 -7.68992 7.68992 0.65 0.000749869 0.000694947 0.0553767 0.0512959 30 2423 23 6.79088e+06 255968 556674. 1926.21 0.99 0.146864 0.129806 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0241836 0.0214652 105 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_066.v common 8.24 vpr 62.67 MiB 0.02 6800 -1 -1 12 0.28 -1 -1 32860 -1 -1 24 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1109 13105 4321 6403 2381 62.7 MiB 0.13 0.00 7.73882 -148.46 -7.73882 7.73882 0.65 0.000958017 0.000879371 0.0710996 0.0657443 36 3249 25 6.79088e+06 323328 648988. 2245.63 3.98 0.272708 0.238035 25390 158009 -1 2672 17 1266 3743 206131 47941 6.80802 6.80802 -140.964 -6.80802 0 0 828058. 2865.25 0.21 0.09 0.13 -1 -1 0.21 0.0353883 0.0312504 144 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_067.v common 7.79 vpr 63.12 MiB 0.04 6672 -1 -1 14 0.31 -1 -1 33036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.3 MiB 2.29 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.73 0.00101852 0.000942938 0.0476384 0.0440779 46 3512 20 6.79088e+06 296384 828058. 2865.25 2.34 0.254685 0.221315 27406 200422 -1 2947 17 1622 4161 220693 49235 7.51525 7.51525 -163.122 -7.51525 0 0 1.01997e+06 3529.29 0.25 0.09 0.17 -1 -1 0.25 0.0376891 0.0333169 155 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_068.v common 7.92 vpr 62.86 MiB 0.02 6780 -1 -1 12 0.23 -1 -1 32784 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64372 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.4 MiB 1.37 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.65 0.00110627 0.00102459 0.069317 0.06415 38 3480 45 6.79088e+06 255968 678818. 2348.85 3.62 0.294539 0.257186 25966 169698 -1 2900 27 1408 4170 412991 165317 6.75652 6.75652 -157.509 -6.75652 0 0 902133. 3121.57 0.22 0.15 0.14 -1 -1 0.22 0.0478282 0.0417141 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_069.v common 7.00 vpr 62.36 MiB 0.04 6684 -1 -1 12 0.15 -1 -1 32728 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.7 MiB 1.27 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.66 0.000723939 0.000661849 0.0331961 0.0306145 34 2749 47 6.79088e+06 202080 618332. 2139.56 3.02 0.201823 0.174464 25102 150614 -1 2163 27 965 2570 323922 137593 6.16917 6.16917 -143.092 -6.16917 0 0 787024. 2723.27 0.21 0.13 0.11 -1 -1 0.21 0.0363901 0.0317303 95 127 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_070.v common 6.80 vpr 62.55 MiB 0.02 6724 -1 -1 12 0.21 -1 -1 32348 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.0 MiB 1.86 1016 11806 3829 5905 2072 62.6 MiB 0.12 0.00 7.21239 -153.602 -7.21239 7.21239 0.66 0.00084792 0.000786403 0.0614919 0.0570062 46 2377 20 6.79088e+06 242496 828058. 2865.25 2.04 0.225771 0.197152 27406 200422 -1 2052 17 949 2614 129035 29625 6.38057 6.38057 -145.937 -6.38057 0 0 1.01997e+06 3529.29 0.25 0.07 0.18 -1 -1 0.25 0.0313243 0.0276727 114 170 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_071.v common 18.43 vpr 62.73 MiB 0.02 6668 -1 -1 11 0.23 -1 -1 32756 -1 -1 22 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64236 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.1 MiB 2.61 1192 7587 1799 4901 887 62.7 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.65 0.000899057 0.000833398 0.0399498 0.0369907 38 3199 19 6.79088e+06 296384 678818. 2348.85 12.99 0.347974 0.299089 25966 169698 -1 2692 17 1290 3976 208721 46066 5.73164 5.73164 -133.72 -5.73164 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0326184 0.0287622 129 189 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_072.v common 20.83 vpr 62.67 MiB 0.02 6764 -1 -1 11 0.20 -1 -1 32636 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64176 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 1.49 990 12156 4943 6412 801 62.7 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.66 0.000846774 0.000784253 0.0614511 0.0568988 40 3108 38 6.79088e+06 282912 706193. 2443.58 16.43 0.434536 0.374581 26254 175826 -1 2573 23 1685 4826 323430 71588 5.86453 5.86453 -127.099 -5.86453 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0383975 0.0334717 125 169 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_073.v common 7.72 vpr 62.36 MiB 0.05 6736 -1 -1 13 0.18 -1 -1 32636 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.81 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.65 0.000719139 0.000666296 0.0298326 0.0276704 36 2646 31 6.79088e+06 215552 648988. 2245.63 2.16 0.185248 0.160569 25390 158009 -1 2284 14 901 2336 132417 30127 6.50592 6.50592 -141.822 -6.50592 0 0 828058. 2865.25 0.21 0.06 0.14 -1 -1 0.21 0.0242371 0.0215957 104 135 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_074.v common 7.87 vpr 62.65 MiB 0.02 6604 -1 -1 12 0.21 -1 -1 32604 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.1 MiB 2.15 1239 4476 858 3235 383 62.6 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.66 0.000876021 0.000808667 0.0260865 0.0241892 36 3048 33 6.79088e+06 269440 648988. 2245.63 2.91 0.220181 0.18966 25390 158009 -1 2617 16 1096 2894 182823 39794 6.45548 6.45548 -153.776 -6.45548 0 0 828058. 2865.25 0.21 0.08 0.15 -1 -1 0.21 0.0312789 0.0276188 125 175 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_075.v common 6.60 vpr 62.77 MiB 0.03 6804 -1 -1 13 0.29 -1 -1 32964 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64272 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.79 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.64 0.000921218 0.000853488 0.0412566 0.0382389 38 2773 17 6.79088e+06 269440 678818. 2348.85 1.94 0.216817 0.188067 25966 169698 -1 2364 19 1086 3314 147941 34759 6.84611 6.84611 -150.495 -6.84611 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0370006 0.0326052 137 192 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_076.v common 8.00 vpr 63.31 MiB 0.05 6656 -1 -1 14 0.30 -1 -1 32776 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.51 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.66 0.000996657 0.000922751 0.0522658 0.0483439 36 3712 28 6.79088e+06 282912 648988. 2245.63 3.45 0.274069 0.238578 25390 158009 -1 3077 16 1355 3646 217262 48005 7.85554 7.85554 -178.788 -7.85554 0 0 828058. 2865.25 0.23 0.09 0.15 -1 -1 0.23 0.0355089 0.0314035 149 214 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_077.v common 19.85 vpr 62.75 MiB 0.04 6784 -1 -1 14 0.26 -1 -1 32800 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64260 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.3 MiB 2.21 1168 12528 4001 6466 2061 62.8 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.65 0.000907343 0.000839678 0.0676538 0.0626655 38 3448 46 6.79088e+06 269440 678818. 2348.85 14.65 0.419273 0.362094 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.037957 0.0333438 136 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_078.v common 7.91 vpr 62.77 MiB 0.05 6668 -1 -1 13 0.34 -1 -1 33396 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.3 MiB 1.95 1266 7823 1896 4973 954 62.8 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.66 0.000946398 0.000874796 0.0462085 0.04274 44 3303 29 6.79088e+06 255968 787024. 2723.27 2.77 0.254475 0.221032 27118 194962 -1 2645 17 1220 3736 198638 44655 6.74882 6.74882 -154.997 -6.74882 0 0 997811. 3452.63 0.25 0.09 0.16 -1 -1 0.25 0.0351314 0.0310337 139 194 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_079.v common 6.66 vpr 62.51 MiB 0.04 6524 -1 -1 13 0.20 -1 -1 32784 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 23.8 MiB 1.49 955 5888 1275 4387 226 62.5 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.66 0.000752619 0.000692434 0.0294945 0.0273368 40 2382 30 6.79088e+06 215552 706193. 2443.58 2.34 0.186868 0.162107 26254 175826 -1 2197 16 1037 2468 154235 34830 6.41977 6.41977 -144.343 -6.41977 0 0 926341. 3205.33 0.23 0.07 0.16 -1 -1 0.23 0.0270252 0.0239526 106 142 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_080.v common 9.18 vpr 62.84 MiB 0.04 6868 -1 -1 13 0.43 -1 -1 32928 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64352 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1281 12175 3045 7735 1395 62.8 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.65 0.000986682 0.000915319 0.0685038 0.0634771 36 3566 29 6.79088e+06 309856 648988. 2245.63 4.61 0.281897 0.246267 25390 158009 -1 3025 23 1642 4310 364544 125273 7.47605 7.47605 -167.45 -7.47605 0 0 828058. 2865.25 0.21 0.14 0.14 -1 -1 0.21 0.045127 0.0395111 144 206 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_081.v common 6.73 vpr 62.69 MiB 0.04 6868 -1 -1 14 0.28 -1 -1 31400 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.1 MiB 1.58 1252 6306 1410 4478 418 62.7 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.66 0.000890066 0.000821668 0.034845 0.0322939 46 3049 24 6.79088e+06 269440 828058. 2865.25 2.09 0.217121 0.187978 27406 200422 -1 2560 18 1161 3517 179903 39884 7.43347 7.43347 -170.772 -7.43347 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0359006 0.0316988 133 182 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_082.v common 7.41 vpr 63.03 MiB 0.03 6708 -1 -1 12 0.25 -1 -1 32928 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.65 0.000946808 0.000878238 0.0392083 0.0363668 38 3142 49 6.79088e+06 282912 678818. 2348.85 2.88 0.265233 0.229415 25966 169698 -1 2595 16 1318 3782 197344 44613 6.75996 6.75996 -149.088 -6.75996 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0344545 0.0304355 143 202 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_083.v common 8.60 vpr 62.79 MiB 0.05 6784 -1 -1 13 0.21 -1 -1 32724 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.86 1166 13583 4513 7114 1956 62.8 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.65 0.00087284 0.000807684 0.0694914 0.0643185 38 3283 21 6.79088e+06 282912 678818. 2348.85 3.83 0.246843 0.215918 25966 169698 -1 2677 16 1345 3593 186223 41846 7.08558 7.08558 -144.629 -7.08558 0 0 902133. 3121.57 0.23 0.08 0.17 -1 -1 0.23 0.0320303 0.028247 126 185 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_084.v common 8.81 vpr 63.29 MiB 0.02 6688 -1 -1 14 0.39 -1 -1 32952 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.8 MiB 1.45 1356 6595 1328 4700 567 63.3 MiB 0.08 0.00 8.2637 -174.994 -8.2637 8.2637 0.65 0.00101205 0.000937719 0.0401248 0.0372516 38 3897 30 6.79088e+06 282912 678818. 2348.85 4.22 0.264622 0.229885 25966 169698 -1 3095 22 1828 5270 279232 60897 7.22201 7.22201 -164.867 -7.22201 0 0 902133. 3121.57 0.31 0.11 0.16 -1 -1 0.31 0.0400624 0.0357349 154 216 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_085.v common 6.73 vpr 62.71 MiB 0.02 6824 -1 -1 11 0.33 -1 -1 32816 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.31 1061 13403 4351 6899 2153 62.7 MiB 0.13 0.00 6.99502 -136.053 -6.99502 6.99502 0.65 0.000873357 0.000809848 0.0685248 0.0635579 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.48 0.212668 0.186631 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.19 0.12 0.12 -1 -1 0.19 0.0421213 0.0367616 130 174 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_086.v common 8.92 vpr 62.56 MiB 0.02 6580 -1 -1 13 0.17 -1 -1 32800 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64060 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 2.89 995 4062 701 3272 89 62.6 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.62 0.000736398 0.000682564 0.022381 0.0208204 36 2919 36 6.79088e+06 188608 648988. 2245.63 3.37 0.188296 0.162748 25390 158009 -1 2556 16 1141 2694 195830 44691 6.36594 6.36594 -160.729 -6.36594 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0266293 0.0234957 99 131 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_087.v common 8.43 vpr 62.93 MiB 0.02 6884 -1 -1 14 0.23 -1 -1 32804 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1302 5483 1117 4002 364 62.9 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.65 0.000869959 0.000804854 0.0308036 0.0286151 36 3263 26 6.79088e+06 255968 648988. 2245.63 3.92 0.215526 0.186682 25390 158009 -1 2860 16 1237 3380 208791 44870 7.59375 7.59375 -167.243 -7.59375 0 0 828058. 2865.25 0.21 0.08 0.09 -1 -1 0.21 0.0313365 0.027698 129 179 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_088.v common 7.29 vpr 63.37 MiB 0.05 6720 -1 -1 15 0.36 -1 -1 33228 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.6 MiB 1.80 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.66 0.00103079 0.000954193 0.0602428 0.0557801 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.36 0.302198 0.263357 26254 175826 -1 3108 21 1753 4648 284834 65709 7.8164 7.8164 -175.32 -7.8164 0 0 926341. 3205.33 0.23 0.11 0.15 -1 -1 0.23 0.0439346 0.0385692 153 228 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_089.v common 7.43 vpr 62.18 MiB 0.02 6560 -1 -1 11 0.16 -1 -1 32468 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63676 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 1.92 829 6054 1305 4663 86 62.2 MiB 0.07 0.00 6.63906 -133.693 -6.63906 6.63906 0.66 0.000710304 0.000658491 0.0290988 0.0269194 34 2844 35 6.79088e+06 188608 618332. 2139.56 2.79 0.186679 0.161459 25102 150614 -1 2151 17 993 2556 165416 38824 5.66443 5.66443 -134.501 -5.66443 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255808 0.022537 91 124 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_090.v common 7.02 vpr 62.39 MiB 0.04 6540 -1 -1 12 0.19 -1 -1 32440 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 23.9 MiB 1.47 1045 8360 2472 4444 1444 62.4 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.65 0.000798881 0.000740265 0.0431063 0.0399729 36 3087 23 6.79088e+06 215552 648988. 2245.63 2.74 0.199241 0.173284 25390 158009 -1 2519 19 1185 3042 166105 39305 6.07958 6.07958 -147.379 -6.07958 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0319637 0.0280363 111 153 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_091.v common 7.45 vpr 63.02 MiB 0.02 6772 -1 -1 12 0.30 -1 -1 32944 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1231 6306 1337 4274 695 63.0 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.65 0.000981217 0.000908445 0.0380226 0.0352391 36 3798 37 6.79088e+06 269440 648988. 2245.63 3.17 0.257174 0.222356 25390 158009 -1 2961 20 1445 3931 275428 71510 6.67381 6.67381 -156.005 -6.67381 0 0 828058. 2865.25 0.20 0.12 0.09 -1 -1 0.20 0.0440589 0.0389136 145 207 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_092.v common 8.51 vpr 62.75 MiB 0.05 6788 -1 -1 12 0.24 -1 -1 32812 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.1 MiB 1.59 1313 9443 2521 5826 1096 62.8 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.65 0.000894614 0.000828851 0.0506707 0.0469297 36 3623 36 6.79088e+06 255968 648988. 2245.63 3.99 0.254871 0.22146 25390 158009 -1 3056 18 1341 4044 240255 52849 6.72081 6.72081 -158.475 -6.72081 0 0 828058. 2865.25 0.22 0.09 0.11 -1 -1 0.22 0.034846 0.0307756 133 184 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_093.v common 8.33 vpr 63.55 MiB 0.04 6940 -1 -1 14 0.46 -1 -1 33396 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65072 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.6 MiB 1.28 1284 5079 907 4069 103 63.5 MiB 0.09 0.00 8.77515 -179.37 -8.77515 8.77515 0.65 0.00109846 0.00101288 0.0469696 0.0436119 38 4131 35 6.79088e+06 309856 678818. 2348.85 3.82 0.288553 0.250651 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.22 0.11 0.15 -1 -1 0.22 0.0454537 0.0401231 170 239 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_094.v common 18.25 vpr 62.66 MiB 0.02 6812 -1 -1 11 0.28 -1 -1 32364 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64168 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.85 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.65 0.000870817 0.000806857 0.061618 0.0571294 38 2927 33 6.79088e+06 282912 678818. 2348.85 13.40 0.373272 0.323193 25966 169698 -1 2582 16 1118 3242 177675 39214 6.29442 6.29442 -136.052 -6.29442 0 0 902133. 3121.57 0.25 0.08 0.16 -1 -1 0.25 0.032027 0.0283375 128 173 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_095.v common 10.50 vpr 62.36 MiB 0.04 6540 -1 -1 11 0.20 -1 -1 32420 -1 -1 19 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.11 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.65 0.000709526 0.000656662 0.0359064 0.0332524 38 2218 30 6.79088e+06 255968 678818. 2348.85 6.56 0.332114 0.285248 25966 169698 -1 1741 20 933 2501 122623 29125 6.02914 6.02914 -121.034 -6.02914 0 0 902133. 3121.57 0.22 0.07 0.16 -1 -1 0.22 0.0296906 0.026003 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_096.v common 9.32 vpr 63.66 MiB 0.04 6860 -1 -1 13 0.47 -1 -1 32888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 24.9 MiB 1.64 1654 14793 4090 8037 2666 63.7 MiB 0.18 0.00 8.15219 -167.23 -8.15219 8.15219 0.65 0.00119286 0.00109271 0.0894951 0.0824395 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.335756 0.293341 26254 175826 -1 4342 43 3548 11778 1281392 416657 7.30036 7.30036 -164.554 -7.30036 0 0 926341. 3205.33 0.23 0.39 0.15 -1 -1 0.23 0.0919851 0.0798388 191 279 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_097.v common 6.38 vpr 62.82 MiB 0.05 6844 -1 -1 14 0.25 -1 -1 33132 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.54 1216 6923 1704 4584 635 62.8 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.65 0.000881511 0.000817615 0.0374556 0.0347465 30 3569 30 6.79088e+06 269440 556674. 1926.21 2.06 0.164119 0.144001 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0336854 0.029663 128 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_098.v common 6.96 vpr 62.32 MiB 0.02 6632 -1 -1 12 0.14 -1 -1 32520 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 23.7 MiB 2.04 1144 8723 2365 5890 468 62.3 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.65 0.000760785 0.000704796 0.039794 0.0368709 44 3005 29 6.79088e+06 255968 787024. 2723.27 2.17 0.199649 0.173954 27118 194962 -1 2396 17 1034 2599 148015 32235 6.54507 6.54507 -160.371 -6.54507 0 0 997811. 3452.63 0.25 0.07 0.18 -1 -1 0.25 0.0275522 0.0243322 109 134 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_099.v common 20.11 vpr 62.63 MiB 0.03 6660 -1 -1 13 0.34 -1 -1 32804 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.0 MiB 2.56 1115 5066 1001 3852 213 62.6 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.65 0.000881964 0.000817565 0.0285675 0.0265245 38 3306 39 6.79088e+06 242496 678818. 2348.85 14.54 0.391644 0.335993 25966 169698 -1 2672 26 1221 3475 344525 134931 7.04987 7.04987 -158.656 -7.04987 0 0 902133. 3121.57 0.22 0.14 0.15 -1 -1 0.22 0.0443258 0.0387524 125 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_100.v common 21.00 vpr 63.13 MiB 0.03 6840 -1 -1 13 0.31 -1 -1 33436 -1 -1 25 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.4 MiB 1.93 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.81 0.00105775 0.00097991 0.0473236 0.0438176 38 4261 31 6.79088e+06 336800 678818. 2348.85 15.76 0.479036 0.412165 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.22 0.20 0.15 -1 -1 0.22 0.0598445 0.0521619 159 234 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_101.v common 8.96 vpr 62.73 MiB 0.05 6832 -1 -1 11 0.23 -1 -1 32788 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64240 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 1209 11059 2877 6113 2069 62.7 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000924005 0.000854906 0.0594386 0.0550371 38 3561 49 6.79088e+06 309856 678818. 2348.85 4.47 0.297232 0.258854 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.036919 0.0324452 140 199 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_102.v common 6.85 vpr 62.86 MiB 0.02 6704 -1 -1 15 0.32 -1 -1 33008 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64368 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1211 12503 3460 7559 1484 62.9 MiB 0.14 0.00 9.11536 -184.558 -9.11536 9.11536 0.66 0.000957695 0.000886033 0.0728687 0.0674037 40 2992 23 6.79088e+06 255968 706193. 2443.58 2.24 0.253575 0.22212 26254 175826 -1 2859 22 1385 3747 325915 107909 7.59386 7.59386 -167.071 -7.59386 0 0 926341. 3205.33 0.22 0.13 0.15 -1 -1 0.22 0.0409518 0.0363788 142 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_103.v common 13.85 vpr 63.09 MiB 0.05 6708 -1 -1 13 0.30 -1 -1 33016 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.5 MiB 1.98 1357 5463 1001 4200 262 63.1 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.67 0.00101777 0.000935024 0.0330101 0.0304794 36 4143 34 6.79088e+06 309856 648988. 2245.63 8.83 0.268636 0.233102 25390 158009 -1 3215 15 1397 4264 255465 56839 7.3039 7.3039 -167.703 -7.3039 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0349146 0.0309497 154 217 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_104.v common 6.54 vpr 62.66 MiB 0.01 6544 -1 -1 12 0.20 -1 -1 32216 -1 -1 18 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64164 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 1.86 941 10557 3755 4946 1856 62.7 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.65 0.000757528 0.000702472 0.0521987 0.0484591 36 2695 26 6.79088e+06 242496 648988. 2245.63 1.91 0.214178 0.186965 25390 158009 -1 2097 18 1092 2579 149818 35102 6.42326 6.42326 -142.319 -6.42326 0 0 828058. 2865.25 0.22 0.07 0.15 -1 -1 0.22 0.0287767 0.0253272 109 151 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_105.v common 6.26 vpr 62.63 MiB 0.05 6536 -1 -1 11 0.16 -1 -1 32440 -1 -1 14 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 24.0 MiB 1.40 1148 5224 1190 3763 271 62.6 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.65 0.000727127 0.000673502 0.0258115 0.0239181 48 2763 18 6.79088e+06 188608 865456. 2994.66 2.04 0.176656 0.153093 27694 206865 -1 2400 16 1054 2657 164840 36234 6.07953 6.07953 -142.602 -6.07953 0 0 1.05005e+06 3633.38 0.27 0.07 0.17 -1 -1 0.27 0.0263788 0.0233756 98 137 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_106.v common 8.42 vpr 63.08 MiB 0.04 6804 -1 -1 13 0.30 -1 -1 32976 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64592 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.6 MiB 1.06 1115 8455 2194 4906 1355 63.1 MiB 0.10 0.00 7.89179 -153.02 -7.89179 7.89179 0.65 0.000944991 0.00087284 0.0474494 0.0439367 38 3369 23 6.79088e+06 296384 678818. 2348.85 4.37 0.254673 0.220982 25966 169698 -1 2582 19 1522 4380 232121 52519 7.01056 7.01056 -146.958 -7.01056 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0387025 0.0340688 144 203 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_107.v common 6.41 vpr 62.30 MiB 0.04 6624 -1 -1 10 0.17 -1 -1 32800 -1 -1 17 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63796 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.63 851 10204 2504 7246 454 62.3 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.66 0.000717875 0.000665162 0.0480387 0.044561 38 2368 25 6.79088e+06 229024 678818. 2348.85 1.96 0.193202 0.168449 25966 169698 -1 1961 20 991 2669 141776 33456 5.23803 5.23803 -121.582 -5.23803 0 0 902133. 3121.57 0.24 0.07 0.15 -1 -1 0.24 0.0309449 0.0272841 98 136 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_108.v common 10.45 vpr 62.34 MiB 0.05 6636 -1 -1 14 0.19 -1 -1 32668 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63836 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.9 MiB 2.57 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.65 0.000767009 0.000709957 0.0302132 0.0279868 36 3203 45 6.79088e+06 242496 648988. 2245.63 5.02 0.219435 0.190197 25390 158009 -1 2679 40 1212 3341 519010 263304 6.83492 6.83492 -157.055 -6.83492 0 0 828058. 2865.25 0.21 0.20 0.13 -1 -1 0.21 0.0545022 0.047217 110 146 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_109.v common 9.15 vpr 62.60 MiB 0.02 6764 -1 -1 12 0.31 -1 -1 32956 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.2 MiB 1.25 1262 12919 3620 7000 2299 62.6 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.63 0.000945839 0.000875602 0.0696219 0.0643847 36 3634 39 6.79088e+06 296384 648988. 2245.63 4.79 0.291627 0.254687 25390 158009 -1 2971 17 1351 4072 238734 51864 6.42321 6.42321 -153.96 -6.42321 0 0 828058. 2865.25 0.25 0.09 0.15 -1 -1 0.25 0.0352955 0.0311369 143 201 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_110.v common 7.11 vpr 62.33 MiB 0.02 6632 -1 -1 12 0.15 -1 -1 32360 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.7 MiB 2.20 992 10726 2823 7181 722 62.3 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.65 0.000721007 0.000667529 0.0499757 0.0463652 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.21 0.162971 0.143133 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0272719 0.0242128 101 138 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_111.v common 8.34 vpr 63.12 MiB 0.02 6864 -1 -1 12 0.17 -1 -1 32792 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.3 MiB 1.37 1163 7736 1889 5402 445 63.1 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.70 0.00089032 0.00082465 0.0431257 0.0399267 38 3181 29 6.79088e+06 242496 678818. 2348.85 4.15 0.238941 0.20782 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.22 0.08 0.15 -1 -1 0.22 0.0330206 0.0290881 123 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_112.v common 6.44 vpr 62.71 MiB 0.05 6908 -1 -1 13 0.31 -1 -1 32936 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64216 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1250 11296 2557 6849 1890 62.7 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.65 0.000887658 0.000822129 0.0600729 0.0556774 40 2968 20 6.79088e+06 255968 706193. 2443.58 1.99 0.235329 0.205195 26254 175826 -1 2890 18 1359 3719 224408 50533 6.33367 6.33367 -151.835 -6.33367 0 0 926341. 3205.33 0.23 0.09 0.15 -1 -1 0.23 0.034331 0.0301982 134 178 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_113.v common 6.33 vpr 62.40 MiB 0.02 6640 -1 -1 11 0.16 -1 -1 32280 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63900 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.0 MiB 1.27 937 7515 1724 5667 124 62.4 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.66 0.000757994 0.000702342 0.037093 0.0343982 46 2683 20 6.79088e+06 202080 828058. 2865.25 2.20 0.191511 0.166523 27406 200422 -1 2105 16 1065 2783 146822 34446 6.16912 6.16912 -137.479 -6.16912 0 0 1.01997e+06 3529.29 0.25 0.07 0.17 -1 -1 0.25 0.0268485 0.0237702 105 143 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_114.v common 7.87 vpr 62.56 MiB 0.04 6656 -1 -1 13 0.19 -1 -1 32508 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.0 MiB 1.82 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.66 0.000844927 0.000783327 0.0698167 0.0647163 38 2883 22 6.79088e+06 229024 678818. 2348.85 3.20 0.249236 0.21871 25966 169698 -1 2179 17 1098 2908 144764 33900 6.33367 6.33367 -144.611 -6.33367 0 0 902133. 3121.57 0.22 0.07 0.14 -1 -1 0.22 0.0313334 0.0276416 116 165 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_115.v common 6.97 vpr 62.91 MiB 0.02 6832 -1 -1 13 0.33 -1 -1 32876 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.2 MiB 1.58 1327 8092 2018 5457 617 62.9 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.66 0.000911679 0.000845738 0.0456385 0.0423815 46 3203 25 6.79088e+06 242496 828058. 2865.25 2.31 0.231398 0.201114 27406 200422 -1 2726 18 1482 4155 215129 47900 6.28328 6.28328 -149.019 -6.28328 0 0 1.01997e+06 3529.29 0.26 0.10 0.18 -1 -1 0.26 0.0367871 0.0324787 130 183 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_116.v common 7.87 vpr 62.51 MiB 0.05 6740 -1 -1 11 0.17 -1 -1 32676 -1 -1 22 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.5 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.66 0.000792215 0.000733799 0.0637596 0.0590521 36 2760 29 6.79088e+06 296384 648988. 2245.63 3.47 0.239158 0.208796 25390 158009 -1 2154 17 1003 2901 164149 37455 5.69593 5.69593 -121.036 -5.69593 0 0 828058. 2865.25 0.21 0.07 0.13 -1 -1 0.21 0.0353595 0.0316033 115 160 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_117.v common 7.07 vpr 63.23 MiB 0.02 6876 -1 -1 14 0.30 -1 -1 33396 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.4 MiB 1.45 1410 8213 2036 5597 580 63.2 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.69 0.00102188 0.000945495 0.0490702 0.0453912 44 3396 25 6.79088e+06 296384 787024. 2723.27 2.44 0.268305 0.234053 27118 194962 -1 2903 16 1318 3784 199349 45117 7.69105 7.69105 -175.013 -7.69105 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.0366234 0.0324489 160 222 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_118.v common 10.35 vpr 62.57 MiB 0.03 6552 -1 -1 12 0.20 -1 -1 32448 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 2.75 1093 11281 2937 6811 1533 62.6 MiB 0.12 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000739598 0.000684599 0.0556871 0.051583 34 3493 43 6.79088e+06 242496 618332. 2139.56 4.73 0.239341 0.209101 25102 150614 -1 2644 17 1058 2530 171616 37701 5.57833 5.57833 -135.866 -5.57833 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0277811 0.0245617 108 139 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_119.v common 7.52 vpr 62.80 MiB 0.03 6784 -1 -1 13 0.28 -1 -1 32840 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1323 14123 4442 7710 1971 62.8 MiB 0.16 0.00 7.64293 -157.325 -7.64293 7.64293 0.65 0.000910992 0.000843453 0.0851464 0.0791705 44 3212 24 6.79088e+06 255968 787024. 2723.27 2.64 0.262284 0.230792 27118 194962 -1 2727 18 1357 4001 218500 48455 6.37287 6.37287 -147.379 -6.37287 0 0 997811. 3452.63 0.25 0.09 0.17 -1 -1 0.25 0.036052 0.0317784 132 188 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_120.v common 7.66 vpr 62.36 MiB 0.02 6508 -1 -1 13 0.18 -1 -1 32748 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.7 MiB 1.97 1020 12120 3554 6383 2183 62.4 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.67 0.000749268 0.000693755 0.05646 0.0522906 36 3009 44 6.79088e+06 215552 648988. 2245.63 3.01 0.236476 0.206462 25390 158009 -1 2467 19 1120 2675 158666 36333 6.53393 6.53393 -161.337 -6.53393 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0177433 0.0160074 104 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_121.v common 7.35 vpr 62.93 MiB 0.04 6852 -1 -1 12 0.21 -1 -1 32688 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64444 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.1 MiB 1.93 1030 11783 4465 6036 1282 62.9 MiB 0.13 0.00 7.13827 -153.033 -7.13827 7.13827 0.76 0.000851435 0.00078783 0.063309 0.0585885 44 2856 22 6.79088e+06 255968 787024. 2723.27 2.36 0.233966 0.204359 27118 194962 -1 2225 15 1084 3330 175817 42092 6.16912 6.16912 -142.865 -6.16912 0 0 997811. 3452.63 0.25 0.08 0.16 -1 -1 0.25 0.0305704 0.0270152 121 171 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_122.v common 8.91 vpr 63.37 MiB 0.04 6908 -1 -1 15 0.46 -1 -1 32864 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 24.8 MiB 1.93 1457 12373 3076 6798 2499 63.4 MiB 0.15 0.00 9.48621 -188.88 -9.48621 9.48621 0.66 0.00115167 0.00106615 0.0765741 0.0707904 46 4011 21 6.79088e+06 323328 828058. 2865.25 3.66 0.317332 0.277743 27406 200422 -1 3155 20 1759 5315 268635 60438 8.1923 8.1923 -173.082 -8.1923 0 0 1.01997e+06 3529.29 0.25 0.11 0.17 -1 -1 0.25 0.0471324 0.0414787 176 250 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_123.v common 5.95 vpr 61.80 MiB 0.03 6388 -1 -1 10 0.10 -1 -1 32076 -1 -1 11 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63280 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.2 MiB 1.50 678 9345 2965 4615 1765 61.8 MiB 0.09 0.00 5.03415 -115.492 -5.03415 5.03415 0.66 0.000659133 0.000612134 0.0426856 0.039637 36 1722 23 6.79088e+06 148192 648988. 2245.63 1.75 0.154225 0.134529 25390 158009 -1 1490 19 617 1422 82833 19307 4.47925 4.47925 -110.656 -4.47925 0 0 828058. 2865.25 0.23 0.05 0.15 -1 -1 0.23 0.0232266 0.0203336 63 85 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_124.v common 7.58 vpr 62.45 MiB 0.04 6656 -1 -1 13 0.17 -1 -1 32472 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63948 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.0 MiB 1.70 930 9881 2975 5177 1729 62.4 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.65 0.000752687 0.000697858 0.0462136 0.0428857 36 2757 44 6.79088e+06 255968 648988. 2245.63 3.11 0.219457 0.190866 25390 158009 -1 2162 19 1034 2563 146984 34951 6.58089 6.58089 -147.837 -6.58089 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0297497 0.0261988 105 141 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_125.v common 8.14 vpr 62.59 MiB 0.04 6508 -1 -1 12 0.19 -1 -1 32540 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.1 MiB 1.87 1026 12331 4984 6774 573 62.6 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.66 0.000835594 0.000773534 0.0627522 0.0580946 38 3211 42 6.79088e+06 229024 678818. 2348.85 3.41 0.260059 0.226507 25966 169698 -1 2536 19 1368 3347 180087 42413 6.29447 6.29447 -152.265 -6.29447 0 0 902133. 3121.57 0.22 0.08 0.14 -1 -1 0.22 0.0337063 0.0296842 115 167 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_126.v common 4.71 vpr 62.12 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32368 -1 -1 20 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63608 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.6 MiB 1.06 772 8553 2593 4994 966 62.1 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.70 0.000616888 0.000573226 0.0348058 0.0323538 32 2040 31 6.79088e+06 269440 586450. 2029.24 0.97 0.118619 0.104045 24814 144142 -1 1839 15 706 1824 129932 28936 5.04314 5.04314 -102.623 -5.04314 0 0 744469. 2576.02 0.20 0.06 0.14 -1 -1 0.20 0.0206391 0.0181989 86 111 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_127.v common 10.87 vpr 63.19 MiB 0.05 6828 -1 -1 12 0.25 -1 -1 32736 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.4 MiB 2.36 1475 10263 2607 5842 1814 63.2 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.65 0.000961972 0.000890265 0.0555956 0.0514356 38 4034 49 6.79088e+06 309856 678818. 2348.85 5.55 0.298123 0.25967 25966 169698 -1 3243 17 1703 4413 238466 53477 6.59551 6.59551 -164.984 -6.59551 0 0 902133. 3121.57 0.22 0.10 0.15 -1 -1 0.22 0.0358162 0.0316376 146 208 -1 -1 -1 -1 -fixed_k6_frac_N8_22nm.xml mult_128.v common 8.09 vpr 63.22 MiB 0.04 6876 -1 -1 14 0.33 -1 -1 33024 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64740 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.66 0.00095869 0.000886502 0.0699998 0.0646894 38 3451 34 6.79088e+06 296384 678818. 2348.85 3.83 0.285693 0.24914 25966 169698 -1 2866 18 1467 4253 248414 55322 7.60495 7.60495 -165.543 -7.60495 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.038403 0.0339505 151 204 -1 -1 -1 -1 -fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.46 MiB 0.03 7152 -1 -1 1 0.03 -1 -1 30736 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64988 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 1.20 895 12321 3076 8292 953 63.5 MiB 0.14 0.00 4.3249 -144.349 -4.3249 4.3249 0.66 0.000824308 0.000766581 0.0467388 0.0434153 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.30 0.150131 0.131748 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0309578 0.0269769 155 96 32 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.96 vpr 63.28 MiB 0.03 7204 -1 -1 1 0.03 -1 -1 30632 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.5 MiB 3.24 889 13477 4603 6656 2218 63.3 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.65 0.000758029 0.000703394 0.0583357 0.0541799 32 3092 26 6.87369e+06 321398 586450. 2029.24 1.02 0.154216 0.136041 25474 144626 -1 2288 23 2027 3381 287011 67177 4.121 4.121 -145.685 -4.121 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0323683 0.0280503 141 91 30 30 89 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.33 vpr 63.19 MiB 0.05 7084 -1 -1 1 0.03 -1 -1 30456 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.4 MiB 1.65 953 18428 5979 9684 2765 63.2 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.67 0.000741727 0.000686721 0.061256 0.0566361 30 2530 23 6.87369e+06 503058 556674. 1926.21 0.99 0.150016 0.13263 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308084 0.0267687 145 65 54 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.59 vpr 63.15 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30604 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.23 922 15090 5352 7218 2520 63.1 MiB 0.16 0.00 4.1666 -130.205 -4.1666 4.1666 0.70 0.000786983 0.000728851 0.0614599 0.0571558 34 2444 21 6.87369e+06 321398 618332. 2139.56 1.63 0.199329 0.174925 25762 151098 -1 2020 23 1917 3359 239341 55969 4.3166 4.3166 -143.125 -4.3166 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0297362 0.0258013 136 34 87 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.03 vpr 63.31 MiB 0.04 7104 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1047 14965 5078 8038 1849 63.3 MiB 0.15 0.00 4.2175 -149.421 -4.2175 4.2175 0.65 0.000741226 0.000688539 0.0621227 0.0577285 34 2922 24 6.87369e+06 293451 618332. 2139.56 1.59 0.208179 0.182566 25762 151098 -1 2467 23 2282 4190 341515 77402 3.9847 3.9847 -156.502 -3.9847 0 0 787024. 2723.27 0.20 0.12 0.13 -1 -1 0.20 0.032851 0.0285934 147 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.74 vpr 63.32 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30396 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.11 1041 20588 6432 11323 2833 63.3 MiB 0.19 0.00 3.55395 -124.862 -3.55395 3.55395 0.65 0.000766237 0.000709123 0.0682532 0.0632196 32 2871 28 6.87369e+06 544980 586450. 2029.24 0.94 0.165902 0.146965 25474 144626 -1 2313 19 1603 2531 206076 47316 3.10926 3.10926 -120.656 -3.10926 0 0 744469. 2576.02 0.19 0.10 0.11 -1 -1 0.19 0.0323527 0.0280992 154 64 63 32 63 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.56 vpr 62.62 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30672 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64124 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 24.1 MiB 1.99 640 10388 2730 6621 1037 62.6 MiB 0.10 0.00 3.6994 -105.15 -3.6994 3.6994 0.68 0.000564366 0.000524551 0.0363824 0.0338211 28 1921 25 6.87369e+06 279477 531479. 1839.03 0.93 0.106706 0.0936416 24610 126494 -1 1647 24 1322 2212 167417 39122 3.02426 3.02426 -109.231 -3.02426 0 0 648988. 2245.63 0.17 0.07 0.13 -1 -1 0.17 0.0253451 0.0218606 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.27 vpr 63.14 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30180 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.4 MiB 0.87 969 14273 4212 7662 2399 63.1 MiB 0.13 0.00 3.61131 -114.549 -3.61131 3.61131 0.65 0.000664295 0.000617927 0.0443504 0.0411473 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.90 0.130101 0.114546 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.18 0.07 0.08 -1 -1 0.18 0.0259802 0.0226949 141 4 115 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 5.81 vpr 62.96 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30184 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.1 MiB 2.45 735 9712 2823 5738 1151 63.0 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.69 0.00050926 0.000466416 0.0345157 0.0317336 28 1915 21 6.87369e+06 223581 531479. 1839.03 0.84 0.111252 0.0972724 24610 126494 -1 1739 17 919 1420 107737 25602 2.89926 2.89926 -113.073 -2.89926 0 0 648988. 2245.63 0.17 0.06 0.11 -1 -1 0.17 0.0227074 0.0197891 103 85 0 0 84 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 7.72 vpr 62.69 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.54 706 12808 2978 8428 1402 62.7 MiB 0.10 0.00 3.8076 -131.302 -3.8076 3.8076 0.67 0.00051977 0.000477234 0.0483749 0.0448819 34 2315 45 6.87369e+06 223581 618332. 2139.56 1.57 0.196852 0.171433 25762 151098 -1 1639 23 1661 2634 166704 41893 3.15451 3.15451 -129.185 -3.15451 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.027833 0.0241278 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 6.26 vpr 62.92 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30156 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 2.84 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.66 0.000651147 0.00060539 0.0465814 0.0433071 32 2014 21 6.87369e+06 251529 586450. 2029.24 0.86 0.122218 0.108004 25474 144626 -1 1835 18 1296 1880 151371 35407 3.03531 3.03531 -122.731 -3.03531 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0240918 0.0209726 109 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.24 vpr 63.06 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30524 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64576 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.1 MiB 1.31 881 15207 4108 9975 1124 63.1 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.66 0.000668208 0.000613345 0.0480654 0.0444845 34 2251 27 6.87369e+06 447163 618332. 2139.56 1.38 0.178478 0.155449 25762 151098 -1 1843 20 1213 2051 155533 34394 2.62536 2.62536 -111.579 -2.62536 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0249312 0.021619 116 65 25 25 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.48 vpr 63.28 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30296 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.4 MiB 4.23 958 19935 5624 11872 2439 63.3 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.69 0.000750177 0.000696164 0.0679397 0.062932 34 2786 25 6.87369e+06 489084 618332. 2139.56 1.56 0.21544 0.188842 25762 151098 -1 2241 18 1734 2943 202750 49391 3.10426 3.10426 -124.888 -3.10426 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.026464 0.0230953 147 58 64 32 57 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 5.87 vpr 63.36 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 2.15 1059 21016 6637 11817 2562 63.4 MiB 0.20 0.00 4.34584 -150.842 -4.34584 4.34584 0.65 0.000778745 0.000719782 0.0742459 0.0687613 30 2683 24 6.87369e+06 517032 556674. 1926.21 0.96 0.16812 0.149083 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0335842 0.0291474 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 5.10 vpr 62.49 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30772 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 23.9 MiB 1.74 791 11776 3380 6895 1501 62.5 MiB 0.10 0.00 3.6364 -112.843 -3.6364 3.6364 0.66 0.000577156 0.000536725 0.0415926 0.0386977 32 2110 22 6.87369e+06 265503 586450. 2029.24 0.85 0.110343 0.0973497 25474 144626 -1 1823 20 1173 1939 168036 38331 2.94926 2.94926 -110.312 -2.94926 0 0 744469. 2576.02 0.19 0.07 0.12 -1 -1 0.19 0.022329 0.0193585 102 29 58 29 24 24 -fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.98 vpr 63.40 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.44 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.70 0.000782763 0.000727059 0.0623666 0.0579136 36 2582 25 6.87369e+06 293451 648988. 2245.63 1.81 0.216391 0.188923 26050 158493 -1 2034 22 1927 3356 229504 55016 3.46446 3.46446 -129.72 -3.46446 0 0 828058. 2865.25 0.20 0.10 0.09 -1 -1 0.20 0.0319652 0.0278269 145 63 64 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.80 vpr 63.35 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30372 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 4.18 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.65 0.000743976 0.000691406 0.0564693 0.0523558 28 2543 24 6.87369e+06 531006 531479. 1839.03 0.93 0.146379 0.129385 24610 126494 -1 2220 24 1752 2626 193827 42633 2.76296 2.76296 -120.046 -2.76296 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0327378 0.0283884 148 57 64 32 56 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.19 vpr 63.04 MiB 0.05 7020 -1 -1 1 0.03 -1 -1 30040 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.1 MiB 2.20 836 17103 4501 10697 1905 63.0 MiB 0.17 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000677391 0.000629515 0.0649323 0.0602691 26 2266 24 6.87369e+06 405241 503264. 1741.40 1.34 0.14913 0.132447 24322 120374 -1 2041 21 1192 1809 149970 34919 2.68907 2.68907 -114.096 -2.68907 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0268488 0.0233194 117 65 29 29 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 3.95 vpr 62.16 MiB 0.03 6772 -1 -1 1 0.02 -1 -1 30228 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.6 MiB 0.54 560 9036 3714 4978 344 62.2 MiB 0.08 0.00 2.94056 -94.1681 -2.94056 2.94056 0.67 0.000599612 0.000557753 0.0329556 0.0306448 28 1745 31 6.87369e+06 195634 531479. 1839.03 0.90 0.102272 0.0895668 24610 126494 -1 1394 18 735 1051 92304 21605 2.33662 2.33662 -95.3449 -2.33662 0 0 648988. 2245.63 0.19 0.05 0.12 -1 -1 0.19 0.0174037 0.0151332 73 34 24 24 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.63 vpr 62.85 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30436 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.07 944 12636 3568 7641 1427 62.8 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.67 0.000668939 0.000621373 0.0526463 0.048927 32 2277 24 6.87369e+06 237555 586450. 2029.24 0.91 0.14042 0.124216 25474 144626 -1 1947 22 1174 1750 172510 36533 3.3365 3.3365 -129.527 -3.3365 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0286841 0.0250083 113 64 31 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.14 vpr 63.23 MiB 0.05 7048 -1 -1 1 0.03 -1 -1 30196 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64744 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.88 894 19124 5624 10425 3075 63.2 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.67 0.00073568 0.000684357 0.0624691 0.0578932 34 2709 23 6.87369e+06 503058 618332. 2139.56 1.64 0.212976 0.186411 25762 151098 -1 2001 22 1790 2566 197699 45882 3.8879 3.8879 -138.638 -3.8879 0 0 787024. 2723.27 0.19 0.05 0.09 -1 -1 0.19 0.0161849 0.0142448 150 34 91 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 9.70 vpr 63.48 MiB 0.03 7188 -1 -1 1 0.05 -1 -1 30564 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.7 MiB 2.84 951 19380 5821 10599 2960 63.5 MiB 0.19 0.00 3.81248 -128.436 -3.81248 3.81248 0.66 0.000965596 0.000890459 0.0710356 0.0655544 30 2850 21 6.87369e+06 558954 556674. 1926.21 4.09 0.279563 0.242999 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0338636 0.0294632 154 124 0 0 125 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.15 vpr 62.01 MiB 0.04 6820 -1 -1 1 0.02 -1 -1 30636 -1 -1 16 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63496 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.5 MiB 1.83 600 9219 3759 4898 562 62.0 MiB 0.09 0.00 2.91856 -82.7442 -2.91856 2.91856 0.66 0.000449184 0.000417831 0.0358766 0.0333842 28 1359 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0874968 0.077471 24610 126494 -1 1250 23 736 1165 95982 22384 2.15012 2.15012 -80.673 -2.15012 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0192123 0.0165744 69 30 26 26 22 22 -fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 5.90 vpr 63.02 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30112 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.3 MiB 1.26 1038 9757 2635 6591 531 63.0 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.66 0.000690641 0.000642682 0.0384623 0.0357679 36 2506 23 6.87369e+06 293451 648988. 2245.63 1.76 0.177851 0.154779 26050 158493 -1 2117 22 1706 2907 189677 46185 3.8514 3.8514 -146.011 -3.8514 0 0 828058. 2865.25 0.21 0.08 0.16 -1 -1 0.21 0.0289807 0.0252395 141 3 122 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 3.95 vpr 62.21 MiB 0.02 6644 -1 -1 1 0.04 -1 -1 30532 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.7 MiB 0.37 506 9516 2238 6770 508 62.2 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.66 0.000477073 0.000444144 0.0296652 0.0275798 34 1387 22 6.87369e+06 167686 618332. 2139.56 1.20 0.122826 0.107296 25762 151098 -1 1150 20 592 734 48391 12727 2.11717 2.11717 -87.019 -2.11717 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0260763 0.0226997 71 3 53 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 4.61 vpr 63.24 MiB 0.02 7104 -1 -1 1 0.03 -1 -1 30516 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.4 MiB 0.74 1092 17964 4627 11625 1712 63.2 MiB 0.20 0.00 4.26205 -149.131 -4.26205 4.26205 0.68 0.000747215 0.000685284 0.0679371 0.0628589 32 3060 24 6.87369e+06 503058 586450. 2029.24 1.07 0.158056 0.140152 25474 144626 -1 2548 20 1822 2753 230312 52330 3.9206 3.9206 -152.653 -3.9206 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289582 0.0252195 155 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.49 vpr 63.21 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30100 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.5 MiB 0.81 964 9612 2267 6482 863 63.2 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.66 0.000704692 0.000653942 0.0318044 0.0294946 32 2813 35 6.87369e+06 503058 586450. 2029.24 1.03 0.131265 0.114954 25474 144626 -1 2169 20 1584 2557 178230 43373 2.96796 2.96796 -121.474 -2.96796 0 0 744469. 2576.02 0.19 0.08 0.13 -1 -1 0.19 0.0283436 0.024758 151 3 124 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 6.31 vpr 63.33 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30524 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.01 1088 13358 3512 8899 947 63.3 MiB 0.14 0.00 4.2809 -148.724 -4.2809 4.2809 0.66 0.000787531 0.00073061 0.0461596 0.0427486 26 3507 43 6.87369e+06 544980 503264. 1741.40 2.59 0.157384 0.138137 24322 120374 -1 2777 24 2222 3984 399516 88533 4.0287 4.0287 -159.105 -4.0287 0 0 618332. 2139.56 0.17 0.13 0.13 -1 -1 0.17 0.0351887 0.0306229 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.86 vpr 62.61 MiB 0.02 6724 -1 -1 1 0.03 -1 -1 30208 -1 -1 15 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.87 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.67 0.000618767 0.000575155 0.0279089 0.0259652 34 2178 27 6.87369e+06 209608 618332. 2139.56 1.40 0.16177 0.140414 25762 151098 -1 1783 17 1068 1727 121433 29608 3.05556 3.05556 -115.804 -3.05556 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0224363 0.0196942 104 34 54 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.67 vpr 62.52 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30232 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64020 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.0 MiB 1.01 856 11260 3834 5392 2034 62.5 MiB 0.12 0.00 3.7936 -125.971 -3.7936 3.7936 0.74 0.000615131 0.00057151 0.0480709 0.0446482 32 2233 22 6.87369e+06 251529 586450. 2029.24 0.96 0.128142 0.113442 25474 144626 -1 1734 18 1225 1760 141072 32466 3.21861 3.21861 -125.851 -3.21861 0 0 744469. 2576.02 0.21 0.09 0.13 -1 -1 0.21 0.0309663 0.0268571 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.65 vpr 62.55 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30364 -1 -1 19 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64056 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.0 MiB 1.00 743 13092 5209 6121 1762 62.6 MiB 0.14 0.00 3.48175 -108.034 -3.48175 3.48175 0.66 0.00104244 0.000970629 0.056577 0.0526437 28 2217 26 6.87369e+06 265503 531479. 1839.03 0.98 0.130704 0.115795 24610 126494 -1 1863 20 1315 2251 185300 42415 3.23286 3.23286 -118.946 -3.23286 0 0 648988. 2245.63 0.24 0.07 0.11 -1 -1 0.24 0.019505 0.0171101 104 34 56 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.21 vpr 62.56 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30348 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 1.16 861 14700 5460 6955 2285 62.6 MiB 0.13 0.00 3.58201 -129.205 -3.58201 3.58201 0.65 0.000610198 0.000567512 0.0540774 0.0503314 34 2321 22 6.87369e+06 223581 618332. 2139.56 1.41 0.172981 0.15157 25762 151098 -1 1919 21 1522 2476 189897 42368 2.98996 2.98996 -129.209 -2.98996 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0250465 0.0217846 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.31 vpr 62.97 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30320 -1 -1 32 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.6 MiB 0.75 924 11975 3064 7554 1357 63.0 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.65 0.000628985 0.000584458 0.0374879 0.0348522 32 2375 25 6.87369e+06 447163 586450. 2029.24 0.89 0.114705 0.100691 25474 144626 -1 2070 24 1467 2345 210193 47487 2.97126 2.97126 -122.609 -2.97126 0 0 744469. 2576.02 0.20 0.09 0.13 -1 -1 0.20 0.0292368 0.0253047 119 34 61 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.35 vpr 62.88 MiB 0.04 6980 -1 -1 1 0.03 -1 -1 30060 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.0 MiB 2.47 824 15003 4455 7859 2689 62.9 MiB 0.13 0.00 2.90021 -94.838 -2.90021 2.90021 0.65 0.000625439 0.000579086 0.0476329 0.0441351 34 1788 20 6.87369e+06 447163 618332. 2139.56 1.32 0.167999 0.146315 25762 151098 -1 1448 21 1212 2084 125367 29858 2.01852 2.01852 -85.8352 -2.01852 0 0 787024. 2723.27 0.21 0.07 0.09 -1 -1 0.21 0.0249962 0.0216256 113 61 29 29 57 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.98 vpr 63.56 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30500 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.67 1315 20411 5511 12546 2354 63.6 MiB 0.22 0.00 4.25391 -147.758 -4.25391 4.25391 0.66 0.000951756 0.000889169 0.0717005 0.066358 28 3619 31 6.87369e+06 614849 531479. 1839.03 2.38 0.185272 0.163801 24610 126494 -1 3097 23 2411 4323 372744 82822 4.1853 4.1853 -157.686 -4.1853 0 0 648988. 2245.63 0.18 0.13 0.12 -1 -1 0.18 0.0376156 0.0326261 184 29 128 32 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.40 vpr 63.34 MiB 0.04 7076 -1 -1 1 0.04 -1 -1 30428 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.5 MiB 2.74 1049 18419 4848 10881 2690 63.3 MiB 0.17 0.00 3.66825 -130.624 -3.66825 3.66825 0.65 0.000785432 0.000729863 0.0620304 0.0574961 32 2652 21 6.87369e+06 544980 586450. 2029.24 0.91 0.152535 0.135162 25474 144626 -1 2174 17 1649 2433 172499 39302 2.87266 2.87266 -123.401 -2.87266 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0268916 0.0235475 154 65 62 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.32 vpr 62.79 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.4 MiB 3.18 881 17134 5393 9307 2434 62.8 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.66 0.000679746 0.000630078 0.0569747 0.0527326 34 1979 19 6.87369e+06 433189 618332. 2139.56 1.43 0.184421 0.161195 25762 151098 -1 1755 20 1161 1937 141124 32855 2.74101 2.74101 -108.676 -2.74101 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0260103 0.0224943 116 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.33 vpr 63.25 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30380 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.93 1019 8641 2131 5612 898 63.3 MiB 0.12 0.00 3.59121 -120.774 -3.59121 3.59121 0.69 0.000901426 0.000837606 0.0419826 0.0390702 34 2671 24 6.87369e+06 307425 618332. 2139.56 1.59 0.200644 0.174369 25762 151098 -1 2251 23 1813 3000 244202 55078 3.15256 3.15256 -124.24 -3.15256 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0319811 0.0277115 141 64 60 30 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.10 vpr 63.56 MiB 0.05 7308 -1 -1 1 0.03 -1 -1 30640 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65084 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.8 MiB 4.65 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.67 0.000838496 0.00077902 0.078059 0.0725153 34 2813 21 6.87369e+06 307425 618332. 2139.56 1.68 0.231984 0.203309 25762 151098 -1 2372 20 1593 2572 232898 50187 4.30295 4.30295 -153.122 -4.30295 0 0 787024. 2723.27 0.22 0.07 0.14 -1 -1 0.22 0.0256751 0.0223169 145 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.98 vpr 63.32 MiB 0.05 7180 -1 -1 1 0.03 -1 -1 30348 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64844 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.72 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.65 0.00076967 0.000714377 0.0529953 0.0492247 34 2589 22 6.87369e+06 307425 618332. 2139.56 1.53 0.203831 0.177919 25762 151098 -1 2152 22 1658 2704 201753 47080 3.66545 3.66545 -138.955 -3.66545 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0320425 0.0278831 141 90 31 31 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.48 vpr 63.31 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30480 -1 -1 36 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.5 MiB 2.34 1053 19023 5653 10954 2416 63.3 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.66 0.000753904 0.000700112 0.0649646 0.0601688 34 2453 25 6.87369e+06 503058 618332. 2139.56 1.45 0.212462 0.186034 25762 151098 -1 2058 22 1911 3227 218788 51238 2.76466 2.76466 -117.377 -2.76466 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311568 0.0269399 148 64 60 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.60 vpr 63.21 MiB 0.05 7092 -1 -1 1 0.05 -1 -1 30436 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1150 19618 5466 12522 1630 63.2 MiB 0.18 0.00 4.1996 -145.707 -4.1996 4.1996 0.66 0.000768546 0.000713743 0.0659248 0.0610962 30 2927 24 6.87369e+06 531006 556674. 1926.21 4.24 0.248663 0.217349 25186 138497 -1 2218 18 1562 2480 174353 38167 3.7701 3.7701 -147.596 -3.7701 0 0 706193. 2443.58 0.25 0.08 0.10 -1 -1 0.25 0.0271111 0.0236894 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 6.96 vpr 64.03 MiB 0.03 7236 -1 -1 1 0.04 -1 -1 30788 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65564 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 25.1 MiB 3.12 1303 13356 3327 8820 1209 64.0 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.65 0.000928107 0.000854251 0.0529036 0.0489521 28 3336 22 6.87369e+06 586901 531479. 1839.03 1.16 0.161466 0.141839 24610 126494 -1 2813 21 2231 3611 254602 59974 4.0493 4.0493 -151.462 -4.0493 0 0 648988. 2245.63 0.17 0.11 0.11 -1 -1 0.17 0.0373986 0.032535 186 96 62 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.85 vpr 62.59 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30552 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64088 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 1.81 908 12636 4255 7048 1333 62.6 MiB 0.13 0.00 3.7654 -130.371 -3.7654 3.7654 0.65 0.000629638 0.000585682 0.0506952 0.0471489 34 2191 32 6.87369e+06 237555 618332. 2139.56 1.51 0.182895 0.159836 25762 151098 -1 1901 19 1345 2114 161441 36556 3.16561 3.16561 -127.759 -3.16561 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0233526 0.0202751 112 34 62 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.40 vpr 63.30 MiB 0.03 7128 -1 -1 1 0.03 -1 -1 30388 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 2.49 1036 19820 6398 10981 2441 63.3 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.66 0.000766016 0.000711435 0.0692492 0.0642729 32 3207 38 6.87369e+06 517032 586450. 2029.24 1.23 0.181169 0.160024 25474 144626 -1 2384 23 1979 3333 315549 70052 3.8954 3.8954 -144.974 -3.8954 0 0 744469. 2576.02 0.20 0.11 0.13 -1 -1 0.20 0.0321021 0.0278334 152 64 62 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 5.91 vpr 63.43 MiB 0.02 7132 -1 -1 1 0.03 -1 -1 30704 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 1.90 1118 16515 4839 10227 1449 63.4 MiB 0.16 0.00 3.56001 -125.702 -3.56001 3.56001 0.66 0.000775388 0.000720561 0.0582834 0.0540856 28 2719 24 6.87369e+06 489084 531479. 1839.03 1.35 0.150679 0.13316 24610 126494 -1 2454 22 1851 3206 255819 57374 3.09956 3.09956 -129.409 -3.09956 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0311658 0.0270078 150 63 62 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 6.27 vpr 63.19 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30340 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 942 16081 4088 11306 687 63.2 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.66 0.000708782 0.000658644 0.0637822 0.0592522 34 3051 25 6.87369e+06 293451 618332. 2139.56 2.17 0.205772 0.180814 25762 151098 -1 2458 24 2272 3946 289627 70974 4.038 4.038 -157.316 -4.038 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0316372 0.0275019 147 3 128 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.77 vpr 63.33 MiB 0.02 7144 -1 -1 1 0.03 -1 -1 30560 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 3.56 1066 20980 7180 11264 2536 63.3 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.65 0.000790765 0.000734141 0.0745136 0.0689941 34 2404 23 6.87369e+06 503058 618332. 2139.56 1.51 0.23023 0.202274 25762 151098 -1 2064 21 1654 2544 172073 40140 3.11856 3.11856 -124.399 -3.11856 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0308858 0.0268074 148 96 25 25 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 7.37 vpr 63.30 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30480 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.52 1032 19142 4987 12020 2135 63.3 MiB 0.20 0.00 3.61805 -127.505 -3.61805 3.61805 0.67 0.000760629 0.000705234 0.0710442 0.0657893 28 2710 41 6.87369e+06 544980 531479. 1839.03 1.28 0.182299 0.160931 24610 126494 -1 2177 24 1467 2685 183400 45007 3.20756 3.20756 -128.693 -3.20756 0 0 648988. 2245.63 0.17 0.05 0.07 -1 -1 0.17 0.0179675 0.0156835 152 61 64 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.43 vpr 63.38 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30400 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.5 MiB 2.72 1111 18648 5184 11229 2235 63.4 MiB 0.18 0.00 3.58025 -126.995 -3.58025 3.58025 0.66 0.000768883 0.00071323 0.0662197 0.0613132 32 2918 26 6.87369e+06 558954 586450. 2029.24 0.98 0.159213 0.140945 25474 144626 -1 2322 21 1852 2981 273061 60337 2.98226 2.98226 -124.39 -2.98226 0 0 744469. 2576.02 0.19 0.10 0.13 -1 -1 0.19 0.0321075 0.0280837 156 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.58 vpr 63.29 MiB 0.05 7068 -1 -1 1 0.04 -1 -1 30648 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.4 MiB 0.84 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.69 0.000753225 0.000700128 0.0426039 0.0395544 34 2850 24 6.87369e+06 544980 618332. 2139.56 1.99 0.191678 0.167373 25762 151098 -1 2253 21 1907 3029 202354 51263 4.099 4.099 -155.694 -4.099 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.0278979 0.0243932 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.14 vpr 63.24 MiB 0.05 6956 -1 -1 1 0.04 -1 -1 30664 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.4 MiB 2.62 1087 15172 3966 9854 1352 63.2 MiB 0.15 0.00 4.1996 -143.047 -4.1996 4.1996 0.69 0.000774825 0.000719516 0.0509635 0.0471673 34 2680 28 6.87369e+06 572927 618332. 2139.56 1.71 0.211864 0.184404 25762 151098 -1 2383 23 2194 3480 262882 60946 3.9034 3.9034 -147.818 -3.9034 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0331884 0.0288214 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.46 vpr 63.77 MiB 0.03 7268 -1 -1 1 0.03 -1 -1 30580 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65300 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 25.1 MiB 3.71 988 19356 5396 10906 3054 63.8 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.65 0.000830933 0.000770036 0.0712429 0.065899 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.01 0.169308 0.149593 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0330511 0.0285719 150 122 0 0 122 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.15 vpr 63.47 MiB 0.02 7144 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.67 1079 15709 4633 9421 1655 63.5 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.66 0.000812796 0.000754658 0.0711953 0.0661087 34 3228 24 6.87369e+06 293451 618332. 2139.56 1.72 0.230343 0.201755 25762 151098 -1 2526 23 2128 3896 292262 68799 3.7624 3.7624 -144.624 -3.7624 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0343442 0.0297476 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 4.40 vpr 62.59 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30540 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.0 MiB 0.84 919 15426 4260 9754 1412 62.6 MiB 0.13 0.00 3.51475 -125.544 -3.51475 3.51475 0.66 0.000638318 0.000593958 0.0478223 0.0443698 32 2428 31 6.87369e+06 447163 586450. 2029.24 0.94 0.134697 0.118574 25474 144626 -1 1987 23 1581 2437 217566 48085 2.95396 2.95396 -122.94 -2.95396 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0273314 0.0236843 121 34 63 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.54 vpr 63.25 MiB 0.02 6984 -1 -1 1 0.03 -1 -1 30428 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.86 953 12980 4579 7047 1354 63.3 MiB 0.14 0.00 3.6884 -132.193 -3.6884 3.6884 0.68 0.000714009 0.000662914 0.0590387 0.0547913 32 2548 27 6.87369e+06 223581 586450. 2029.24 0.93 0.147839 0.13069 25474 144626 -1 2133 23 1484 2336 225729 48654 3.18556 3.18556 -130.661 -3.18556 0 0 744469. 2576.02 0.22 0.10 0.15 -1 -1 0.22 0.0341031 0.0296644 112 94 0 0 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 7.06 vpr 63.43 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30788 -1 -1 44 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 24.9 MiB 1.90 1419 16556 4403 10830 1323 63.4 MiB 0.18 0.00 4.99284 -170.715 -4.99284 4.99284 0.66 0.00106753 0.000993415 0.0614611 0.0569834 28 3950 45 6.87369e+06 614849 531479. 1839.03 2.46 0.19887 0.17469 24610 126494 -1 3285 23 2755 4689 480810 98758 5.07045 5.07045 -183.474 -5.07045 0 0 648988. 2245.63 0.20 0.14 0.08 -1 -1 0.20 0.037568 0.0325996 189 65 96 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.20 MiB 0.03 6988 -1 -1 1 0.03 -1 -1 30304 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.4 MiB 2.55 1069 15831 4027 10006 1798 63.2 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.66 0.000780036 0.000723825 0.0544397 0.050286 26 2546 23 6.87369e+06 489084 503264. 1741.40 1.13 0.142686 0.125882 24322 120374 -1 2396 32 2226 3289 246797 55862 3.21856 3.21856 -133.794 -3.21856 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0413221 0.0356822 150 34 92 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.27 vpr 63.02 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30296 -1 -1 31 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.1 MiB 0.67 823 15633 5297 7776 2560 63.0 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.65 0.000617644 0.000573172 0.048343 0.0448172 28 2054 23 6.87369e+06 433189 531479. 1839.03 1.03 0.123391 0.108888 24610 126494 -1 1737 22 1350 2077 160529 36914 3.06026 3.06026 -118.11 -3.06026 0 0 648988. 2245.63 0.17 0.04 0.07 -1 -1 0.17 0.0161521 0.0141071 116 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.93 vpr 63.50 MiB 0.05 7332 -1 -1 1 0.03 -1 -1 31072 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 24.9 MiB 5.40 1193 22455 6528 13018 2909 63.5 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.69 0.000953751 0.00088506 0.0835759 0.0774261 32 3593 50 6.87369e+06 656770 586450. 2029.24 1.62 0.239314 0.210922 25474 144626 -1 2679 25 2765 4463 413666 88971 4.85905 4.85905 -176.73 -4.85905 0 0 744469. 2576.02 0.21 0.14 0.13 -1 -1 0.21 0.0437943 0.0378161 190 127 32 32 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.82 vpr 63.20 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30508 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64716 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.3 MiB 2.86 975 19868 5843 10688 3337 63.2 MiB 0.17 0.00 4.28153 -144.516 -4.28153 4.28153 0.67 0.000750213 0.000696956 0.0632288 0.0586669 32 2796 48 6.87369e+06 558954 586450. 2029.24 1.19 0.183376 0.161556 25474 144626 -1 2049 20 1866 2816 214883 49440 3.684 3.684 -141.143 -3.684 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0289729 0.0251684 156 34 96 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.08 vpr 62.68 MiB 0.03 6748 -1 -1 1 0.03 -1 -1 30376 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 0.59 857 11197 2857 7409 931 62.7 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.65 0.000622527 0.000579222 0.0331289 0.030761 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.87 0.107121 0.0941421 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.21 0.08 0.13 -1 -1 0.21 0.0262032 0.0226931 123 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.70 vpr 63.43 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30856 -1 -1 45 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1249 21169 5887 12519 2763 63.4 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.66 0.00085602 0.00079554 0.0723584 0.06716 28 3487 31 6.87369e+06 628823 531479. 1839.03 1.51 0.183078 0.16176 24610 126494 -1 2951 24 2799 4931 437770 97531 4.83715 4.83715 -177.425 -4.83715 0 0 648988. 2245.63 0.19 0.14 0.11 -1 -1 0.19 0.0372862 0.0322512 189 34 128 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 4.91 vpr 62.81 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30276 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.87 806 12292 2857 8871 564 62.8 MiB 0.11 0.00 3.7764 -134.344 -3.7764 3.7764 0.65 0.000604044 0.000561094 0.0452227 0.0420221 34 2200 24 6.87369e+06 223581 618332. 2139.56 1.37 0.166068 0.145075 25762 151098 -1 1826 23 1612 2529 189821 43692 3.24061 3.24061 -134.105 -3.24061 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0264163 0.0228978 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.64 vpr 62.72 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30060 -1 -1 33 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64228 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.16 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.65 0.000614356 0.000571372 0.0315518 0.0292482 28 2094 21 6.87369e+06 461137 531479. 1839.03 0.92 0.104927 0.0919668 24610 126494 -1 1794 23 1547 2588 207889 48329 3.06826 3.06826 -118.701 -3.06826 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.026353 0.022756 118 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.17 vpr 63.34 MiB 0.03 7196 -1 -1 1 0.03 -1 -1 30260 -1 -1 35 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.5 MiB 3.05 1008 14550 3923 8443 2184 63.3 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.68 0.000741532 0.000688413 0.0515543 0.0478369 34 2543 22 6.87369e+06 489084 618332. 2139.56 1.47 0.195202 0.170421 25762 151098 -1 2164 21 1661 2781 199378 47628 2.96496 2.96496 -116.623 -2.96496 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0292661 0.025383 141 88 29 29 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.46 vpr 63.44 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30608 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 2.03 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.65 0.000753416 0.000701605 0.0531092 0.049309 34 2806 28 6.87369e+06 293451 618332. 2139.56 1.78 0.209919 0.183107 25762 151098 -1 2128 25 2375 3614 256909 62781 4.0459 4.0459 -155.816 -4.0459 0 0 787024. 2723.27 0.24 0.10 0.13 -1 -1 0.24 0.0352036 0.0305181 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.59 vpr 63.40 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.91 1100 18901 5336 11603 1962 63.4 MiB 0.18 0.00 4.27679 -150.534 -4.27679 4.27679 0.56 0.000790326 0.000727356 0.0651175 0.0603553 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.05 0.156513 0.13878 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.18 0.09 0.13 -1 -1 0.18 0.0330496 0.0286816 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 6.94 vpr 63.12 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30504 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.4 MiB 2.86 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.65 0.000686204 0.00063105 0.0547869 0.0507557 36 2048 23 6.87369e+06 461137 648988. 2245.63 1.46 0.187298 0.163615 26050 158493 -1 1649 21 1425 2224 134529 32913 2.98526 2.98526 -118.315 -2.98526 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0270182 0.02349 123 65 32 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.57 vpr 63.09 MiB 0.04 7120 -1 -1 1 0.03 -1 -1 30464 -1 -1 18 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.65 0.00067665 0.000629265 0.0193315 0.0179786 34 2217 18 6.87369e+06 251529 618332. 2139.56 1.43 0.149279 0.128934 25762 151098 -1 1875 22 1387 2476 191987 45689 3.11956 3.11956 -117.478 -3.11956 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278404 0.0240939 108 90 0 0 89 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.73 vpr 63.17 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30384 -1 -1 34 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64688 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.68 914 16740 4391 9932 2417 63.2 MiB 0.16 0.00 3.59605 -116.379 -3.59605 3.59605 0.69 0.000726804 0.00067534 0.0586669 0.0544782 34 2147 21 6.87369e+06 475111 618332. 2139.56 1.32 0.19726 0.172673 25762 151098 -1 1808 19 1286 2110 120121 31186 3.07756 3.07756 -113.914 -3.07756 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.026658 0.0231992 143 60 60 30 57 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.67 vpr 62.95 MiB 0.02 7068 -1 -1 1 0.03 -1 -1 30468 -1 -1 35 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64464 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.2 MiB 1.48 905 12191 3346 7959 886 63.0 MiB 0.11 0.00 4.19891 -125.962 -4.19891 4.19891 0.66 0.000667003 0.000620877 0.0398213 0.0369411 26 2593 24 6.87369e+06 489084 503264. 1741.40 1.61 0.121865 0.106907 24322 120374 -1 2263 28 2010 3451 348753 73625 4.2133 4.2133 -142.681 -4.2133 0 0 618332. 2139.56 0.16 0.11 0.11 -1 -1 0.16 0.0340326 0.0294761 139 34 84 28 28 28 -fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 5.69 vpr 62.96 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30308 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.1 MiB 2.24 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.67 0.00064665 0.000600903 0.0452925 0.042106 30 2191 20 6.87369e+06 251529 556674. 1926.21 0.86 0.119422 0.105373 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.07 0.12 -1 -1 0.18 0.0261104 0.0226434 110 63 30 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.23 vpr 63.13 MiB 0.04 6872 -1 -1 1 0.04 -1 -1 30364 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.2 MiB 3.05 904 14256 4718 7453 2085 63.1 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.66 0.000703585 0.000650192 0.0597809 0.0555272 34 2227 20 6.87369e+06 237555 618332. 2139.56 1.37 0.19492 0.170785 25762 151098 -1 1931 21 1128 1866 148478 33442 2.97226 2.97226 -121.122 -2.97226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0279126 0.024247 110 91 0 0 91 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 4.88 vpr 62.88 MiB 0.02 7000 -1 -1 1 0.04 -1 -1 30184 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64392 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.79 962 16804 5215 8614 2975 62.9 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.65 0.000808979 0.000759869 0.0529431 0.0491689 28 3199 26 6.87369e+06 517032 531479. 1839.03 1.45 0.13249 0.11744 24610 126494 -1 2450 19 1768 2821 237606 55531 4.1383 4.1383 -148.079 -4.1383 0 0 648988. 2245.63 0.18 0.09 0.12 -1 -1 0.18 0.0260193 0.0227999 151 4 124 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.00 vpr 63.53 MiB 0.05 6968 -1 -1 1 0.05 -1 -1 30536 -1 -1 38 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.7 MiB 3.93 1093 19380 5712 11198 2470 63.5 MiB 0.18 0.00 4.29189 -149.386 -4.29189 4.29189 0.66 0.000773174 0.000717835 0.0658998 0.0610278 28 2995 25 6.87369e+06 531006 531479. 1839.03 1.37 0.162521 0.143906 24610 126494 -1 2670 25 2267 3928 339145 75328 4.0207 4.0207 -157.565 -4.0207 0 0 648988. 2245.63 0.17 0.12 0.11 -1 -1 0.17 0.0352847 0.030557 156 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.19 vpr 63.41 MiB 0.02 7140 -1 -1 1 0.03 -1 -1 30324 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 3.51 1146 17256 4889 10338 2029 63.4 MiB 0.18 0.00 4.30289 -150.744 -4.30289 4.30289 0.65 0.000781793 0.00072618 0.0666785 0.0618434 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.01 0.160697 0.142402 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.18 0.08 0.12 -1 -1 0.18 0.0308231 0.0268498 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 6.97 vpr 63.17 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30528 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.4 MiB 2.81 1114 16491 4519 10066 1906 63.2 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.65 0.000763161 0.000708717 0.0554139 0.051306 28 3159 33 6.87369e+06 544980 531479. 1839.03 1.51 0.162854 0.143553 24610 126494 -1 2632 22 1851 3241 245138 57811 3.9647 3.9647 -149.766 -3.9647 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0313768 0.0272022 152 65 60 30 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 5.86 vpr 62.68 MiB 0.05 6808 -1 -1 1 0.03 -1 -1 30376 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64184 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.1 MiB 2.33 746 10406 2932 6420 1054 62.7 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.65 0.000616316 0.000573793 0.0385431 0.0358612 32 2264 21 6.87369e+06 265503 586450. 2029.24 0.89 0.110609 0.0974482 25474 144626 -1 1944 19 1250 2056 193370 43340 3.31086 3.31086 -121.534 -3.31086 0 0 744469. 2576.02 0.21 0.09 0.14 -1 -1 0.21 0.0256651 0.0223086 110 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.54 vpr 63.23 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30324 -1 -1 23 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.4 MiB 2.95 980 15709 4819 8970 1920 63.2 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.66 0.00073329 0.000680726 0.0643365 0.0597156 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.93 0.155382 0.137461 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0283602 0.0246686 140 63 60 30 60 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.93 vpr 63.62 MiB 0.04 7188 -1 -1 1 0.04 -1 -1 30872 -1 -1 43 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65144 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.8 MiB 4.94 1155 15540 3963 10188 1389 63.6 MiB 0.16 0.00 4.23385 -146.284 -4.23385 4.23385 0.67 0.00086016 0.000796699 0.0557272 0.0515611 32 3029 43 6.87369e+06 600875 586450. 2029.24 1.21 0.183672 0.160561 25474 144626 -1 2474 24 2205 3740 360243 77125 3.7941 3.7941 -146.23 -3.7941 0 0 744469. 2576.02 0.19 0.12 0.13 -1 -1 0.19 0.0372594 0.0321419 158 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 4.92 vpr 63.46 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 33 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64984 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1029 18273 5989 9373 2911 63.5 MiB 0.18 0.00 4.26989 -143.564 -4.26989 4.26989 0.65 0.000797005 0.000740538 0.0693751 0.064245 28 2783 23 6.87369e+06 461137 531479. 1839.03 1.20 0.145321 0.129603 24610 126494 -1 2420 23 2143 3547 280375 63485 4.102 4.102 -152.634 -4.102 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0337583 0.0293146 149 94 31 31 93 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 5.90 vpr 63.26 MiB 0.02 7272 -1 -1 1 0.03 -1 -1 30648 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.15 942 16921 5030 8706 3185 63.3 MiB 0.17 0.00 3.63595 -118.056 -3.63595 3.63595 0.67 0.000762288 0.000700316 0.0626343 0.0579815 30 2456 23 6.87369e+06 447163 556674. 1926.21 1.02 0.160772 0.14198 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.19 0.08 0.13 -1 -1 0.19 0.0309738 0.0268622 141 92 26 26 90 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.70 vpr 63.63 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30508 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.8 MiB 4.20 1087 14593 4252 9147 1194 63.6 MiB 0.16 0.00 4.1996 -148.308 -4.1996 4.1996 0.65 0.000780075 0.000724251 0.0637187 0.0591754 34 3260 29 6.87369e+06 293451 618332. 2139.56 1.88 0.226378 0.198045 25762 151098 -1 2669 23 2273 3881 337747 75784 4.102 4.102 -157.524 -4.102 0 0 787024. 2723.27 0.20 0.12 0.09 -1 -1 0.20 0.0342308 0.0297091 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 5.67 vpr 63.16 MiB 0.04 7128 -1 -1 1 0.05 -1 -1 30332 -1 -1 36 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.12 943 12751 3363 8405 983 63.2 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.63 0.000737109 0.000682388 0.0452754 0.0419034 26 2618 24 6.87369e+06 503058 503264. 1741.40 0.95 0.140566 0.123506 24322 120374 -1 2300 23 1689 2777 271257 63076 3.58206 3.58206 -122.754 -3.58206 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0312349 0.027035 138 88 26 26 85 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.55 vpr 62.57 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.0 MiB 0.62 862 12292 3174 7904 1214 62.6 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.65 0.000612204 0.000569761 0.0456634 0.0425053 34 2313 18 6.87369e+06 223581 618332. 2139.56 1.35 0.161486 0.141329 25762 151098 -1 1950 20 1422 2169 170148 39363 3.29991 3.29991 -133.305 -3.29991 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0241587 0.0210505 114 3 96 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.00 vpr 63.34 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30344 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.5 MiB 4.19 1088 19841 5443 12522 1876 63.3 MiB 0.19 0.00 4.3249 -149.309 -4.3249 4.3249 0.66 0.000772559 0.000715829 0.0680462 0.0629887 32 3036 24 6.87369e+06 517032 586450. 2029.24 1.00 0.162678 0.144142 25474 144626 -1 2367 24 2066 3250 279137 64767 3.9207 3.9207 -150.114 -3.9207 0 0 744469. 2576.02 0.19 0.11 0.14 -1 -1 0.19 0.0345776 0.0299965 155 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.23 vpr 63.29 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30452 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 3.84 1071 15151 5130 8107 1914 63.3 MiB 0.16 0.00 4.2388 -148.068 -4.2388 4.2388 0.66 0.00077875 0.000722277 0.0661096 0.0613743 36 2570 23 6.87369e+06 293451 648988. 2245.63 1.61 0.219556 0.192488 26050 158493 -1 2102 22 2152 3479 208398 51233 3.6638 3.6638 -145.28 -3.6638 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0325765 0.0283577 147 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.26 vpr 62.93 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30412 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.0 MiB 3.32 885 16708 4981 9424 2303 62.9 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.000658966 0.000612815 0.0536003 0.0497633 34 2092 22 6.87369e+06 419215 618332. 2139.56 1.32 0.177315 0.155474 25762 151098 -1 1758 22 1214 2091 161943 37394 2.93226 2.93226 -114.098 -2.93226 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0262076 0.0227107 112 55 32 32 54 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.30 vpr 62.47 MiB 0.03 6844 -1 -1 1 0.03 -1 -1 30364 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 0.82 723 6960 1528 4773 659 62.5 MiB 0.09 0.00 3.7434 -125.643 -3.7434 3.7434 0.66 0.000751047 0.000699405 0.0280819 0.026162 32 2245 24 6.87369e+06 237555 586450. 2029.24 0.91 0.102889 0.0900109 25474 144626 -1 1812 20 1388 2205 168538 38814 3.09956 3.09956 -123.67 -3.09956 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.023112 0.0200812 112 4 93 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.26 vpr 63.30 MiB 0.05 7016 -1 -1 1 0.03 -1 -1 30288 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 2.69 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.65 0.000755549 0.000702316 0.0643126 0.0596367 28 2603 22 6.87369e+06 489084 531479. 1839.03 0.90 0.151806 0.134682 24610 126494 -1 2312 20 1627 2445 176945 40331 3.637 3.637 -140.477 -3.637 0 0 648988. 2245.63 0.17 0.08 0.11 -1 -1 0.17 0.0281979 0.024527 144 59 60 32 58 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.09 vpr 63.22 MiB 0.05 7100 -1 -1 1 0.03 -1 -1 30336 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.4 MiB 1.09 1094 18745 5603 10775 2367 63.2 MiB 0.17 0.00 4.21185 -141.009 -4.21185 4.21185 0.65 0.000761726 0.000706579 0.0669063 0.0619691 28 2842 31 6.87369e+06 461137 531479. 1839.03 1.22 0.167508 0.148047 24610 126494 -1 2441 24 1849 2884 230492 51132 4.10256 4.10256 -145.761 -4.10256 0 0 648988. 2245.63 0.18 0.10 0.12 -1 -1 0.18 0.0360327 0.0312447 142 88 28 28 88 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.71 vpr 63.41 MiB 0.05 6984 -1 -1 1 0.03 -1 -1 30500 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.7 MiB 0.92 1329 17642 5677 9392 2573 63.4 MiB 0.18 0.00 4.98719 -165.596 -4.98719 4.98719 0.63 0.000797412 0.000740577 0.0597168 0.0554178 34 3730 48 6.87369e+06 572927 618332. 2139.56 3.00 0.255546 0.223881 25762 151098 -1 2666 23 2092 3309 293486 62129 4.59455 4.59455 -163.458 -4.59455 0 0 787024. 2723.27 0.20 0.11 0.13 -1 -1 0.20 0.0340414 0.0296232 183 3 156 32 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.67 vpr 63.21 MiB 0.05 7144 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.4 MiB 2.54 1005 13300 3782 8501 1017 63.2 MiB 0.14 0.00 3.59605 -120.715 -3.59605 3.59605 0.66 0.000717272 0.000665628 0.0502434 0.0465363 34 2294 27 6.87369e+06 447163 618332. 2139.56 1.47 0.194386 0.169441 25762 151098 -1 2011 19 1635 2586 164466 39881 2.93496 2.93496 -116.36 -2.93496 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0264931 0.0230704 141 59 60 30 56 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.12 vpr 62.46 MiB 0.04 6836 -1 -1 1 0.03 -1 -1 30584 -1 -1 20 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63960 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.70 735 12247 4571 5926 1750 62.5 MiB 0.11 0.00 3.6866 -109.378 -3.6866 3.6866 0.66 0.000438321 0.000402263 0.0441998 0.0409729 32 1771 18 6.87369e+06 279477 586450. 2029.24 0.83 0.108583 0.0959298 25474 144626 -1 1554 20 1118 1583 134320 29464 3.03351 3.03351 -108.423 -3.03351 0 0 744469. 2576.02 0.19 0.06 0.13 -1 -1 0.19 0.0254477 0.0222748 102 34 54 27 27 27 -fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 6.56 vpr 63.50 MiB 0.03 7296 -1 -1 1 0.03 -1 -1 30608 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.0 MiB 2.40 1290 11856 2585 8478 793 63.5 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.65 0.000911214 0.000843078 0.0472187 0.0437474 30 3626 23 6.87369e+06 586901 556674. 1926.21 1.43 0.1571 0.137866 25186 138497 -1 2701 23 2039 3711 246498 54124 3.4805 3.4805 -140.124 -3.4805 0 0 706193. 2443.58 0.19 0.10 0.12 -1 -1 0.19 0.0385309 0.0333936 184 95 62 31 95 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.01 vpr 63.35 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30552 -1 -1 23 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.7 MiB 3.14 874 9914 2276 6234 1404 63.4 MiB 0.11 0.00 4.91157 -150.663 -4.91157 4.91157 0.66 0.000827605 0.000768579 0.0461521 0.042895 34 2604 24 6.87369e+06 321398 618332. 2139.56 2.13 0.221078 0.191836 25762 151098 -1 1968 22 1570 2400 176110 43897 4.09455 4.09455 -145.251 -4.09455 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0339433 0.0293362 144 124 0 0 124 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.04 vpr 62.92 MiB 0.04 6992 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64432 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.1 MiB 3.01 802 14356 5267 6628 2461 62.9 MiB 0.14 0.00 4.598 -126.496 -4.598 4.598 0.68 0.000683953 0.000634897 0.0601246 0.0558216 34 2153 24 6.87369e+06 223581 618332. 2139.56 1.38 0.195489 0.171096 25762 151098 -1 1756 15 795 1183 93190 21619 3.18321 3.18321 -119.099 -3.18321 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0236867 0.0209187 107 89 0 0 89 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 5.18 vpr 63.28 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30520 -1 -1 34 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.5 MiB 0.91 1114 14723 4652 8968 1103 63.3 MiB 0.17 0.00 4.1955 -143.003 -4.1955 4.1955 0.66 0.000727696 0.00067575 0.0569265 0.0526309 28 2955 24 6.87369e+06 475111 531479. 1839.03 1.57 0.146848 0.130104 24610 126494 -1 2662 21 1784 2607 314392 88903 4.151 4.151 -151.44 -4.151 0 0 648988. 2245.63 0.18 0.11 0.12 -1 -1 0.18 0.0290997 0.0253113 147 34 90 30 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.90 vpr 63.64 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30584 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65172 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.9 MiB 1.94 1006 19865 6118 9930 3817 63.6 MiB 0.20 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000856362 0.000787946 0.0737644 0.0680664 34 3026 32 6.87369e+06 558954 618332. 2139.56 2.04 0.261921 0.228464 25762 151098 -1 2189 23 2117 3144 206084 51178 4.0632 4.0632 -141.309 -4.0632 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.03676 0.0317884 176 64 87 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.09 vpr 63.18 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30384 -1 -1 36 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64700 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1085 17873 5357 10009 2507 63.2 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.65 0.000720965 0.000669362 0.0599912 0.0555172 34 2647 22 6.87369e+06 503058 618332. 2139.56 1.60 0.204157 0.178497 25762 151098 -1 2153 22 1658 2864 201610 47113 2.80196 2.80196 -110.281 -2.80196 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300644 0.0260486 144 61 58 30 58 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 6.76 vpr 63.40 MiB 0.05 7176 -1 -1 1 0.03 -1 -1 30592 -1 -1 46 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.7 MiB 2.49 1127 20887 5685 13197 2005 63.4 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 0.66 0.000788578 0.000731863 0.0657779 0.0609127 28 2839 24 6.87369e+06 642796 531479. 1839.03 1.48 0.159922 0.141491 24610 126494 -1 2475 24 2081 3460 266999 60202 4.0097 4.0097 -157.752 -4.0097 0 0 648988. 2245.63 0.17 0.10 0.11 -1 -1 0.17 0.0342995 0.0297039 160 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 6.93 vpr 63.66 MiB 0.04 7072 -1 -1 1 0.03 -1 -1 30384 -1 -1 42 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65192 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1115 19606 5308 11826 2472 63.7 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.71 0.000774671 0.000719273 0.0636793 0.0590545 26 2952 46 6.87369e+06 586901 503264. 1741.40 1.47 0.184439 0.162356 24322 120374 -1 2600 24 1925 3092 270852 57727 3.26586 3.26586 -133.903 -3.26586 0 0 618332. 2139.56 0.17 0.11 0.11 -1 -1 0.17 0.0351058 0.0304891 157 65 63 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.55 vpr 62.57 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 19 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.0 MiB 1.61 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.69 0.000600059 0.000558053 0.0481315 0.0447571 34 1767 23 6.87369e+06 265503 618332. 2139.56 1.29 0.172589 0.150466 25762 151098 -1 1473 20 1280 1843 130614 29379 3.01631 3.01631 -114.603 -3.01631 0 0 787024. 2723.27 0.20 0.06 0.11 -1 -1 0.20 0.0231166 0.0200212 107 34 58 29 29 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.24 vpr 63.00 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30188 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.2 MiB 2.16 808 7256 1653 5365 238 63.0 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.66 0.000655947 0.000609585 0.0291951 0.0271077 34 2056 25 6.87369e+06 237555 618332. 2139.56 1.50 0.165215 0.143015 25762 151098 -1 1666 12 728 1027 80728 18767 2.95265 2.95265 -112.069 -2.95265 0 0 787024. 2723.27 0.23 0.05 0.13 -1 -1 0.23 0.0174827 0.0153623 102 82 0 0 82 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 6.08 vpr 63.35 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30600 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64868 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1136 19618 6151 11073 2394 63.3 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.67 0.000739426 0.000687628 0.0625609 0.0580227 28 2901 39 6.87369e+06 544980 531479. 1839.03 1.67 0.168992 0.149286 24610 126494 -1 2491 21 2032 3397 317230 66691 4.146 4.146 -150.688 -4.146 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0306524 0.0267349 152 34 93 31 31 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 7.02 vpr 62.55 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30492 -1 -1 32 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64048 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 23.9 MiB 3.12 794 17103 5256 9538 2309 62.5 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.66 0.000732981 0.000681337 0.0512668 0.0475683 24 2312 34 6.87369e+06 447163 470940. 1629.55 1.30 0.136931 0.120641 24034 113901 -1 2020 25 1539 2525 317977 69202 3.18086 3.18086 -116.05 -3.18086 0 0 586450. 2029.24 0.15 0.10 0.10 -1 -1 0.15 0.0277466 0.0239175 108 56 29 29 52 26 -fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 7.47 vpr 62.82 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30352 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 3.23 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.71 0.000651743 0.000606525 0.0497787 0.0462442 34 2309 26 6.87369e+06 223581 618332. 2139.56 1.46 0.183816 0.160462 25762 151098 -1 1864 22 1545 2458 186905 44531 3.17461 3.17461 -128.489 -3.17461 0 0 787024. 2723.27 0.22 0.08 0.17 -1 -1 0.22 0.026802 0.0232539 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 6.46 vpr 63.34 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30324 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.5 MiB 2.43 1003 13598 3664 8482 1452 63.3 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.67 0.000756087 0.000695232 0.0489639 0.0453438 34 2208 22 6.87369e+06 489084 618332. 2139.56 1.36 0.193099 0.168457 25762 151098 -1 1890 20 1820 2793 169616 40025 2.93196 2.93196 -117.837 -2.93196 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.028702 0.0248798 146 64 58 31 62 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.31 vpr 62.78 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30260 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64288 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.79 698 11402 3727 5924 1751 62.8 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.72 0.000630362 0.000585237 0.0446494 0.0414952 26 2239 28 6.87369e+06 223581 503264. 1741.40 0.96 0.124848 0.109778 24322 120374 -1 1867 21 1246 1962 158994 38515 3.19191 3.19191 -123.167 -3.19191 0 0 618332. 2139.56 0.16 0.07 0.11 -1 -1 0.16 0.0251477 0.0217892 103 55 31 31 53 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.25 vpr 63.30 MiB 0.05 6968 -1 -1 1 0.03 -1 -1 30396 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.4 MiB 2.61 1019 17256 4700 9815 2741 63.3 MiB 0.17 0.00 3.59195 -122.625 -3.59195 3.59195 0.66 0.000775791 0.000725351 0.0543374 0.0501793 32 2782 36 6.87369e+06 517032 586450. 2029.24 0.97 0.124028 0.109911 25474 144626 -1 2123 22 1479 2492 193417 44922 3.16886 3.16886 -118.293 -3.16886 0 0 744469. 2576.02 0.20 0.09 0.08 -1 -1 0.20 0.0328952 0.028551 143 65 52 26 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.80 vpr 63.36 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30348 -1 -1 39 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.10 929 10336 2368 6764 1204 63.4 MiB 0.12 0.00 3.59605 -120.102 -3.59605 3.59605 0.67 0.000954493 0.000879385 0.0384382 0.0355927 32 2620 21 6.87369e+06 544980 586450. 2029.24 0.99 0.140274 0.123039 25474 144626 -1 1977 23 2042 3063 228409 54704 3.05556 3.05556 -120.265 -3.05556 0 0 744469. 2576.02 0.20 0.10 0.14 -1 -1 0.20 0.0340739 0.0295237 151 93 31 31 92 31 -fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.40 vpr 62.92 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30264 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.1 MiB 2.42 812 13206 3975 7418 1813 62.9 MiB 0.13 0.00 3.26897 -114.681 -3.26897 3.26897 0.65 0.000661677 0.000614619 0.0525356 0.0488033 34 2174 27 6.87369e+06 237555 618332. 2139.56 1.36 0.187335 0.16367 25762 151098 -1 1858 21 1290 2029 166499 37639 2.94126 2.94126 -117.102 -2.94126 0 0 787024. 2723.27 0.24 0.08 0.14 -1 -1 0.24 0.0291006 0.0254726 110 61 32 32 60 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.71 vpr 63.18 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30200 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.3 MiB 3.09 923 10056 2840 6443 773 63.2 MiB 0.12 0.00 3.6884 -128.712 -3.6884 3.6884 0.72 0.000683846 0.000636064 0.0453038 0.0421213 32 2547 22 6.87369e+06 223581 586450. 2029.24 0.94 0.129975 0.114587 25474 144626 -1 2104 23 1487 2433 226899 49342 3.04626 3.04626 -128.09 -3.04626 0 0 744469. 2576.02 0.19 0.09 0.13 -1 -1 0.19 0.0288887 0.025074 112 63 32 32 62 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.96 vpr 63.20 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30660 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1032 14988 3846 9829 1313 63.2 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.65 0.000771264 0.000715448 0.0504058 0.0466934 34 2540 20 6.87369e+06 558954 618332. 2139.56 1.58 0.19899 0.173873 25762 151098 -1 2226 23 2038 3314 227209 52582 3.8283 3.8283 -150.515 -3.8283 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0341398 0.029763 157 65 64 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.53 vpr 63.13 MiB 0.05 7028 -1 -1 1 0.03 -1 -1 30412 -1 -1 34 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64644 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.4 MiB 2.21 880 11759 2826 8215 718 63.1 MiB 0.10 0.00 3.59605 -112.745 -3.59605 3.59605 0.68 0.000717498 0.000664608 0.031817 0.0293698 26 2672 41 6.87369e+06 475111 503264. 1741.40 1.71 0.142312 0.123945 24322 120374 -1 2326 23 1580 2473 242244 65796 3.09026 3.09026 -123.914 -3.09026 0 0 618332. 2139.56 0.17 0.10 0.11 -1 -1 0.17 0.0306797 0.0265987 140 62 56 29 58 29 -fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.45 vpr 63.50 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30692 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 24.7 MiB 4.75 930 19136 5654 10352 3130 63.5 MiB 0.21 0.00 4.25669 -144.754 -4.25669 4.25669 0.66 0.000868862 0.000798952 0.0792822 0.0734335 34 2868 25 6.87369e+06 558954 618332. 2139.56 1.92 0.26059 0.228082 25762 151098 -1 2197 23 2099 3388 250736 58546 4.0317 4.0317 -148.667 -4.0317 0 0 787024. 2723.27 0.20 0.10 0.09 -1 -1 0.20 0.0357247 0.030804 157 127 0 0 128 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.16 vpr 62.33 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30232 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63824 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.9 MiB 0.65 801 6501 1452 4525 524 62.3 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.73 0.00057597 0.000535847 0.0249699 0.0232568 32 2327 32 6.87369e+06 223581 586450. 2029.24 0.87 0.10285 0.0898931 25474 144626 -1 1761 20 1169 1781 155204 36100 3.01046 3.01046 -118.138 -3.01046 0 0 744469. 2576.02 0.19 0.08 0.10 -1 -1 0.19 0.0261874 0.0228877 104 4 85 31 0 0 -fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 5.80 vpr 63.65 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30360 -1 -1 37 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.8 MiB 1.53 977 17961 5555 9821 2585 63.7 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.65 0.000778746 0.000715034 0.0618852 0.05732 34 2366 23 6.87369e+06 517032 618332. 2139.56 1.48 0.210948 0.18454 25762 151098 -1 1978 17 1468 2127 144770 34492 3.7313 3.7313 -136.286 -3.7313 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0270205 0.0235709 147 92 28 28 92 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 7.96 vpr 63.06 MiB 0.03 7092 -1 -1 1 0.03 -1 -1 30156 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 3.90 961 12808 4157 6979 1672 63.1 MiB 0.13 0.00 3.7416 -135.274 -3.7416 3.7416 0.65 0.000716397 0.000664129 0.0562931 0.052254 34 2201 17 6.87369e+06 223581 618332. 2139.56 1.38 0.195542 0.17106 25762 151098 -1 2005 22 1516 2173 167105 38026 3.11226 3.11226 -134.014 -3.11226 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0310427 0.0269383 114 96 0 0 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.73 vpr 63.26 MiB 0.02 7076 -1 -1 1 0.04 -1 -1 30408 -1 -1 39 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 2.74 1013 13117 3136 9263 718 63.3 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.65 0.000867654 0.000801319 0.0446385 0.0413264 28 2551 39 6.87369e+06 544980 531479. 1839.03 1.29 0.155098 0.135901 24610 126494 -1 2315 24 1674 2618 204769 46581 3.43616 3.43616 -129.921 -3.43616 0 0 648988. 2245.63 0.17 0.09 0.12 -1 -1 0.17 0.0340171 0.0295209 153 65 61 32 64 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.61 vpr 63.51 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30724 -1 -1 47 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 4.25 1138 14475 3597 10051 827 63.5 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000922833 0.000857177 0.0534347 0.0494461 32 3530 43 6.87369e+06 656770 586450. 2029.24 1.50 0.190793 0.166873 25474 144626 -1 2649 23 2462 3966 355319 77702 4.60855 4.60855 -171.893 -4.60855 0 0 744469. 2576.02 0.19 0.13 0.14 -1 -1 0.19 0.0407452 0.0353433 190 96 64 32 96 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.22 vpr 62.23 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30276 -1 -1 14 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63720 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.6 MiB 1.90 613 9036 2242 6211 583 62.2 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000529727 0.000492728 0.0315819 0.0293703 32 1520 24 6.87369e+06 195634 586450. 2029.24 0.80 0.0948377 0.0831344 25474 144626 -1 1331 16 658 912 81906 19438 2.13917 2.13917 -90.061 -2.13917 0 0 744469. 2576.02 0.20 0.05 0.13 -1 -1 0.20 0.0177852 0.015482 72 56 0 0 53 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.38 vpr 62.54 MiB 0.03 6912 -1 -1 1 0.03 -1 -1 30392 -1 -1 18 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64036 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.86 764 12120 4745 5717 1658 62.5 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000619074 0.000575869 0.0465721 0.0433318 32 2131 23 6.87369e+06 251529 586450. 2029.24 0.89 0.121427 0.10727 25474 144626 -1 1739 21 1445 2038 178621 39973 3.28591 3.28591 -121.948 -3.28591 0 0 744469. 2576.02 0.20 0.09 0.14 -1 -1 0.20 0.0308532 0.0267 109 34 60 30 30 30 -fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.60 vpr 63.00 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30128 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.23 884 12464 4265 6183 2016 63.0 MiB 0.13 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000648627 0.00060256 0.0494308 0.0459043 34 2591 20 6.87369e+06 223581 618332. 2139.56 1.61 0.179223 0.156751 25762 151098 -1 2230 22 1709 3066 262084 58779 3.08856 3.08856 -127.988 -3.08856 0 0 787024. 2723.27 0.21 0.10 0.18 -1 -1 0.21 0.0291762 0.0252425 114 34 64 32 32 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.13 vpr 62.48 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30452 -1 -1 37 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63984 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 23.9 MiB 0.70 742 15004 4316 8330 2358 62.5 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.69 0.000536234 0.000499064 0.0406833 0.0378205 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.82 0.102713 0.0905946 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0239987 0.0207911 105 34 50 25 25 25 -fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 6.93 vpr 63.42 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30552 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.5 MiB 2.53 1035 11989 3061 8035 893 63.4 MiB 0.14 0.00 4.14459 -143.245 -4.14459 4.14459 0.67 0.000917043 0.000859411 0.056505 0.0524247 34 2922 23 6.87369e+06 293451 618332. 2139.56 1.68 0.214136 0.186802 25762 151098 -1 2363 20 1886 3422 237506 56554 3.7261 3.7261 -146.04 -3.7261 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0311656 0.0271431 145 94 32 32 94 32 -fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.71 vpr 63.41 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30348 -1 -1 40 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64932 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.5 MiB 2.48 969 12394 3038 8536 820 63.4 MiB 0.13 0.00 3.62425 -121.977 -3.62425 3.62425 0.72 0.000632201 0.000576616 0.044336 0.0409093 34 2208 23 6.87369e+06 558954 618332. 2139.56 1.44 0.199252 0.173141 25762 151098 -1 1964 22 2020 3079 203389 49390 2.88196 2.88196 -119.328 -2.88196 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.034764 0.0302143 151 94 29 29 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.93 vpr 63.36 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30596 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64880 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.6 MiB 1.50 1383 18363 6134 9531 2698 63.4 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000814662 0.000756751 0.0745697 0.0692271 36 3373 46 6.89349e+06 408721 648988. 2245.63 1.52 0.198317 0.174686 26050 158493 -1 2894 20 2329 2889 204014 45929 4.53065 4.53065 -169.913 -4.53065 0 0 828058. 2865.25 0.23 0.09 0.14 -1 -1 0.23 0.0316248 0.0275274 192 96 32 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 6.33 vpr 63.33 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30632 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1338 16411 5641 8181 2589 63.3 MiB 0.17 0.00 5.22297 -160.634 -5.22297 5.22297 0.66 0.000771333 0.000716127 0.0646034 0.0600002 36 3246 31 6.89349e+06 408721 648988. 2245.63 2.17 0.225976 0.197639 26050 158493 -1 2686 24 2108 2969 221728 48494 4.53198 4.53198 -155.377 -4.53198 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0340051 0.0294828 177 91 30 30 89 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.57 vpr 63.04 MiB 0.05 6948 -1 -1 1 0.03 -1 -1 30408 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.73 1277 15533 4267 9018 2248 63.0 MiB 0.17 0.00 4.0146 -140.879 -4.0146 4.0146 0.66 0.000904504 0.000841248 0.0651527 0.0604988 34 3518 44 6.89349e+06 352346 618332. 2139.56 2.08 0.231806 0.202867 25762 151098 -1 2677 21 1751 2210 191142 41206 3.9037 3.9037 -142.762 -3.9037 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0301146 0.0262361 167 65 54 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.19 vpr 62.88 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30412 -1 -1 25 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.2 MiB 1.89 1071 16718 5447 9404 1867 62.9 MiB 0.17 0.00 4.53305 -141.516 -4.53305 4.53305 0.65 0.000678768 0.000629657 0.0629253 0.0584318 34 2586 28 6.89349e+06 352346 618332. 2139.56 1.60 0.206028 0.18034 25762 151098 -1 2003 23 1782 2683 158633 39220 4.01296 4.01296 -142.769 -4.01296 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0298366 0.0256272 148 34 87 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.90 vpr 63.05 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.2 MiB 1.80 1361 14518 4265 8140 2113 63.0 MiB 0.17 0.00 5.03124 -172.909 -5.03124 5.03124 0.68 0.000744171 0.000691603 0.0624521 0.0580995 36 3336 26 6.89349e+06 338252 648988. 2245.63 2.23 0.218016 0.191295 26050 158493 -1 2797 21 2223 3856 262196 58328 4.14865 4.14865 -163.069 -4.14865 0 0 828058. 2865.25 0.21 0.10 0.14 -1 -1 0.21 0.0287129 0.0250095 163 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.20 vpr 63.26 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30452 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.4 MiB 1.69 1499 20359 6047 11800 2512 63.3 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.70 0.000765735 0.000710406 0.0659912 0.060989 34 3677 25 6.89349e+06 577847 618332. 2139.56 1.63 0.225103 0.197021 25762 151098 -1 2932 24 2054 3264 227716 50763 3.46365 3.46365 -138.668 -3.46365 0 0 787024. 2723.27 0.22 0.11 0.16 -1 -1 0.22 0.0377332 0.0327929 179 64 63 32 63 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 4.72 vpr 62.41 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63904 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 23.9 MiB 1.40 730 14528 4147 9388 993 62.4 MiB 0.12 0.00 3.83226 -109.129 -3.83226 3.83226 0.66 0.000570349 0.000530453 0.0502473 0.046429 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.85 0.12109 0.106741 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.18 0.05 0.12 -1 -1 0.18 0.020886 0.0181141 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.79 vpr 62.97 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30192 -1 -1 35 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.70 921 14273 4335 7347 2591 63.0 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.66 0.000667263 0.00061852 0.0445223 0.0412815 34 2397 23 6.89349e+06 493284 618332. 2139.56 1.50 0.173638 0.151537 25762 151098 -1 1930 20 1233 2018 129329 30123 2.76481 2.76481 -107.874 -2.76481 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0251962 0.0218916 141 4 115 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 5.63 vpr 62.80 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30316 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 1141 14358 3961 8348 2049 62.8 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.65 0.000667176 0.000620384 0.0549113 0.0510073 34 2852 46 6.89349e+06 295971 618332. 2139.56 1.46 0.207373 0.1806 25762 151098 -1 2258 20 1623 1983 132304 31127 3.03746 3.03746 -119.802 -3.03746 0 0 787024. 2723.27 0.27 0.07 0.15 -1 -1 0.27 0.0258118 0.0224631 140 85 0 0 84 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.65 vpr 62.68 MiB 0.02 6832 -1 -1 1 0.02 -1 -1 30308 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.1 MiB 1.53 873 6923 1573 5100 250 62.7 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000653017 0.000607625 0.027036 0.0251553 34 2505 33 6.89349e+06 267783 618332. 2139.56 1.45 0.164051 0.141865 25762 151098 -1 2040 21 1696 2217 167201 38798 3.19856 3.19856 -130.67 -3.19856 0 0 787024. 2723.27 0.30 0.07 0.16 -1 -1 0.30 0.022868 0.0200957 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.82 vpr 62.95 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30152 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64456 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.1 MiB 1.87 942 6923 1677 4944 302 62.9 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.65 0.000653269 0.000607913 0.027475 0.0255772 34 2532 21 6.89349e+06 295971 618332. 2139.56 1.37 0.155406 0.134354 25762 151098 -1 2019 19 1555 2064 144585 32989 3.78655 3.78655 -137.938 -3.78655 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0246215 0.0215017 135 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.09 vpr 63.02 MiB 0.02 6988 -1 -1 1 0.02 -1 -1 30512 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.1 MiB 1.48 883 15822 6326 7340 2156 63.0 MiB 0.16 0.00 3.8129 -121.35 -3.8129 3.8129 0.65 0.000667063 0.000620052 0.0654446 0.0605474 36 2401 21 6.89349e+06 281877 648988. 2245.63 1.97 0.194438 0.170413 26050 158493 -1 1750 16 1148 1290 88420 21821 3.16081 3.16081 -112.317 -3.16081 0 0 828058. 2865.25 0.22 0.06 0.14 -1 -1 0.22 0.0215603 0.0188545 135 65 25 25 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.78 vpr 63.29 MiB 0.04 7176 -1 -1 1 0.03 -1 -1 30308 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.5 MiB 1.18 987 17513 5731 7853 3929 63.3 MiB 0.15 0.00 4.23419 -140.25 -4.23419 4.23419 0.71 0.000752529 0.000698813 0.0690538 0.0641029 38 3008 43 6.89349e+06 352346 678818. 2348.85 3.79 0.243409 0.213178 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.22 0.09 0.15 -1 -1 0.22 0.0301451 0.0262744 161 58 64 32 57 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.72 vpr 63.29 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30500 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1162 11063 2970 6995 1098 63.3 MiB 0.13 0.00 5.02024 -166.562 -5.02024 5.02024 0.69 0.000784876 0.000729547 0.0447949 0.0416092 36 3019 23 6.89349e+06 394628 648988. 2245.63 1.65 0.198332 0.172675 26050 158493 -1 2473 20 2078 2744 172262 40553 4.63875 4.63875 -165.591 -4.63875 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0297018 0.0258776 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.25 vpr 62.37 MiB 0.02 6804 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.9 MiB 1.34 754 11296 2879 7697 720 62.4 MiB 0.10 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000574843 0.000535077 0.0385279 0.0358409 34 1919 28 6.89349e+06 295971 618332. 2139.56 1.32 0.158036 0.137188 25762 151098 -1 1620 21 1078 1505 115201 26818 2.94016 2.94016 -107.534 -2.94016 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237539 0.0205872 112 29 58 29 24 24 -fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.91 vpr 63.25 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30556 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64772 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.4 MiB 2.06 1259 17315 5682 9212 2421 63.3 MiB 0.19 0.00 4.31019 -146.5 -4.31019 4.31019 0.67 0.000771233 0.000716628 0.0706687 0.0655446 34 3889 35 6.89349e+06 352346 618332. 2139.56 2.01 0.234803 0.205348 25762 151098 -1 3012 22 2472 3856 304331 66969 3.9642 3.9642 -153.037 -3.9642 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0320295 0.0278038 174 63 64 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.23 vpr 63.23 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30388 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.4 MiB 1.11 1183 12365 3291 7811 1263 63.2 MiB 0.14 0.00 3.69045 -130.871 -3.69045 3.69045 0.70 0.000750409 0.000697488 0.0535743 0.0497959 34 2840 24 6.89349e+06 352346 618332. 2139.56 1.44 0.199528 0.17421 25762 151098 -1 2358 17 1669 2089 152593 34412 3.06081 3.06081 -123.816 -3.06081 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0252498 0.0220485 160 57 64 32 56 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 5.90 vpr 62.96 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30036 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64468 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.3 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.66 0.000676303 0.000628844 0.0576347 0.0535386 38 2435 45 6.89349e+06 310065 678818. 2348.85 1.55 0.211748 0.184358 26626 170182 -1 1964 20 1472 2002 131218 30024 2.82146 2.82146 -110.196 -2.82146 0 0 902133. 3121.57 0.22 0.07 0.15 -1 -1 0.22 0.0242771 0.0212977 139 65 29 29 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.92 vpr 62.16 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30116 -1 -1 15 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63656 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.6 MiB 0.91 569 8227 1998 5670 559 62.2 MiB 0.07 0.00 3.06366 -95.1937 -3.06366 3.06366 0.71 0.000504474 0.000469591 0.0305402 0.0284067 34 1571 21 6.89349e+06 211408 618332. 2139.56 1.33 0.136929 0.118765 25762 151098 -1 1189 20 733 875 64480 15598 2.11917 2.11917 -85.5775 -2.11917 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0205741 0.0177333 85 34 24 24 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.28 vpr 62.94 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30404 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.24 1101 13663 4048 7780 1835 62.9 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.65 0.000663957 0.000616671 0.0509524 0.0473151 34 2756 25 6.89349e+06 310065 618332. 2139.56 1.44 0.183452 0.160239 25762 151098 -1 2197 20 1528 2052 155926 35353 3.38045 3.38045 -136.099 -3.38045 0 0 787024. 2723.27 0.20 0.07 0.13 -1 -1 0.20 0.0255511 0.0222404 141 64 31 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.23 vpr 63.00 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30136 -1 -1 40 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.94 1052 20112 6009 11047 3056 63.0 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.69 0.000730979 0.000679574 0.0635106 0.058872 34 2792 26 6.89349e+06 563754 618332. 2139.56 1.55 0.212695 0.186528 25762 151098 -1 2216 20 1950 2674 199058 44989 3.95124 3.95124 -146.782 -3.95124 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0277791 0.0241897 166 34 91 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.70 vpr 63.43 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.18 1507 16511 4972 9774 1765 63.4 MiB 0.18 0.00 4.34661 -147.62 -4.34661 4.34661 0.65 0.00085323 0.000793618 0.0688169 0.0639282 36 3423 27 6.89349e+06 436909 648988. 2245.63 1.61 0.238115 0.207872 26050 158493 -1 2914 22 2279 2613 182020 41823 3.8883 3.8883 -142.486 -3.8883 0 0 828058. 2865.25 0.21 0.09 0.15 -1 -1 0.21 0.0353182 0.0306665 201 124 0 0 125 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.51 vpr 62.10 MiB 0.04 6656 -1 -1 1 0.03 -1 -1 30556 -1 -1 18 26 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63588 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.6 MiB 1.23 692 10476 3888 5359 1229 62.1 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.69 0.000453685 0.000422005 0.0314768 0.0292775 30 1478 31 6.89349e+06 253689 556674. 1926.21 1.70 0.139016 0.120288 25186 138497 -1 1263 14 466 590 39612 9015 1.93805 1.93805 -75.764 -1.93805 0 0 706193. 2443.58 0.21 0.03 0.13 -1 -1 0.21 0.0134009 0.0117558 77 30 26 26 22 22 -fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.01 vpr 63.02 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30140 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.2 MiB 1.10 1016 9571 2543 6414 614 63.0 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.65 0.000689839 0.000641581 0.0376758 0.0350422 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.33 0.134323 0.117734 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.18 0.08 0.09 -1 -1 0.18 0.0308415 0.0267066 141 3 122 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 61.88 MiB 0.04 6708 -1 -1 1 0.02 -1 -1 30336 -1 -1 12 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63360 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.5 MiB 0.31 514 9356 2285 6456 615 61.9 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.65 0.000470195 0.000437111 0.0289716 0.0269239 28 1509 16 6.89349e+06 169126 531479. 1839.03 0.80 0.0810777 0.0716888 24610 126494 -1 1311 19 741 1063 81209 20552 1.89376 1.89376 -87.0135 -1.89376 0 0 648988. 2245.63 0.17 0.05 0.11 -1 -1 0.17 0.017299 0.0151035 71 3 53 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.84 vpr 63.11 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.4 MiB 1.24 1097 15929 4551 10101 1277 63.1 MiB 0.17 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.00074212 0.00069041 0.061923 0.0575796 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.92 0.152959 0.135604 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0272663 0.0239687 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.28 vpr 62.97 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30040 -1 -1 36 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.68 885 10772 2583 7345 844 63.0 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.65 0.000699184 0.000648524 0.0347602 0.0322028 32 2653 40 6.89349e+06 507378 586450. 2029.24 1.01 0.141413 0.123618 25474 144626 -1 2071 21 1546 2415 157585 39663 2.84981 2.84981 -118.371 -2.84981 0 0 744469. 2576.02 0.20 0.08 0.13 -1 -1 0.20 0.0284688 0.0247894 151 3 124 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.18 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30452 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.3 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.65 0.000811709 0.000751433 0.0353053 0.0328058 34 3698 26 6.89349e+06 366440 618332. 2139.56 1.87 0.19101 0.166039 25762 151098 -1 2937 22 2290 3311 239159 52119 4.21846 4.21846 -163.604 -4.21846 0 0 787024. 2723.27 0.25 0.10 0.14 -1 -1 0.25 0.0321296 0.0279349 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 6.24 vpr 62.50 MiB 0.02 6780 -1 -1 1 0.03 -1 -1 30216 -1 -1 17 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 23.9 MiB 1.69 863 14256 5690 7135 1431 62.5 MiB 0.13 0.00 3.57625 -122.952 -3.57625 3.57625 0.66 0.000617675 0.000574261 0.0524083 0.0487129 36 2395 27 6.89349e+06 239595 648988. 2245.63 1.87 0.178267 0.155801 26050 158493 -1 1954 22 1507 2255 187460 40961 2.79796 2.79796 -116.127 -2.79796 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0261654 0.0227301 118 34 54 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.88 vpr 62.54 MiB 0.03 6896 -1 -1 1 0.05 -1 -1 30244 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64040 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.58 1065 12331 4460 6746 1125 62.5 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000618654 0.000575045 0.0456839 0.0424895 34 2653 21 6.89349e+06 267783 618332. 2139.56 1.55 0.167686 0.146275 25762 151098 -1 2175 20 1480 2326 199572 41781 3.57495 3.57495 -136.569 -3.57495 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0236671 0.0205487 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 5.44 vpr 62.50 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30336 -1 -1 21 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64000 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 24.0 MiB 1.93 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.67 0.000588695 0.000547534 0.037111 0.034541 30 2437 23 6.89349e+06 295971 556674. 1926.21 0.92 0.108192 0.0951554 25186 138497 -1 1837 21 1164 1980 126771 30045 3.5641 3.5641 -124.418 -3.5641 0 0 706193. 2443.58 0.19 0.09 0.13 -1 -1 0.19 0.0315655 0.0272671 115 34 56 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 5.24 vpr 62.36 MiB 0.03 6820 -1 -1 1 0.03 -1 -1 30388 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63852 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 1.24 860 14700 5342 7547 1811 62.4 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.65 0.000613571 0.0005711 0.0548607 0.0510648 34 2261 23 6.89349e+06 225501 618332. 2139.56 1.38 0.175613 0.154105 25762 151098 -1 1953 20 1495 2467 200666 42802 2.88526 2.88526 -123.256 -2.88526 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0235494 0.0204532 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.77 vpr 62.36 MiB 0.05 6796 -1 -1 1 0.03 -1 -1 30284 -1 -1 19 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63860 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.8 MiB 1.26 985 14322 4727 7440 2155 62.4 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.66 0.000625972 0.000582575 0.0525159 0.0488251 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.92 0.136137 0.120401 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.18 0.06 0.12 -1 -1 0.18 0.0246196 0.0214825 121 34 61 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.49 vpr 62.54 MiB 0.03 7028 -1 -1 1 0.03 -1 -1 30184 -1 -1 23 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64044 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 23.9 MiB 1.37 1052 14724 4760 7779 2185 62.5 MiB 0.16 0.00 3.57215 -115.596 -3.57215 3.57215 0.66 0.0006679 0.000615592 0.0615132 0.0571439 34 2412 48 6.89349e+06 324158 618332. 2139.56 1.36 0.203841 0.178033 25762 151098 -1 2059 18 1204 1615 110153 25182 2.84821 2.84821 -110.088 -2.84821 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0236364 0.0206202 130 61 29 29 57 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.87 vpr 63.40 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30468 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.5 MiB 1.83 1199 18247 5521 9891 2835 63.4 MiB 0.20 0.00 4.73855 -160.484 -4.73855 4.73855 0.61 0.000944782 0.000886486 0.077647 0.0721764 34 3612 43 6.89349e+06 380534 618332. 2139.56 2.32 0.273519 0.239992 25762 151098 -1 2796 20 2035 3278 238805 52979 4.28236 4.28236 -159.226 -4.28236 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0323775 0.0281225 184 29 128 32 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.27 vpr 63.33 MiB 0.02 7136 -1 -1 1 0.03 -1 -1 30440 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.66 0.000780443 0.000724921 0.0583653 0.0542628 34 3686 37 6.89349e+06 352346 618332. 2139.56 1.80 0.22626 0.197571 25762 151098 -1 2757 24 2870 3968 321931 71661 3.9572 3.9572 -151.377 -3.9572 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0372731 0.0322047 173 65 62 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.92 vpr 63.00 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30632 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.68 0.00067781 0.000630017 0.0565901 0.0525905 34 2583 23 6.89349e+06 310065 618332. 2139.56 1.42 0.193196 0.169104 25762 151098 -1 2152 20 1279 1328 109559 24885 3.11566 3.11566 -119.952 -3.11566 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0259383 0.0225191 143 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.62 vpr 63.14 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30388 -1 -1 26 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.3 MiB 2.20 1244 16523 4277 10843 1403 63.1 MiB 0.18 0.00 4.45875 -146.616 -4.45875 4.45875 0.67 0.00075042 0.000696704 0.0643215 0.0596278 34 3212 33 6.89349e+06 366440 618332. 2139.56 1.65 0.224049 0.195669 25762 151098 -1 2592 22 1886 2726 189128 43273 3.575 3.575 -140.253 -3.575 0 0 787024. 2723.27 0.22 0.09 0.09 -1 -1 0.22 0.0315598 0.0274849 170 64 60 30 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.45 vpr 63.64 MiB 0.02 7236 -1 -1 1 0.04 -1 -1 30540 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65168 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.67 0.000844596 0.000785597 0.0727489 0.0675953 34 3603 25 6.89349e+06 436909 618332. 2139.56 1.88 0.22124 0.193928 25762 151098 -1 2828 19 2056 2331 149675 36960 4.78164 4.78164 -163.804 -4.78164 0 0 787024. 2723.27 0.20 0.08 0.15 -1 -1 0.20 0.0315655 0.0273469 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 9.65 vpr 63.33 MiB 0.05 7200 -1 -1 1 0.04 -1 -1 30412 -1 -1 28 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64848 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.17 1401 11923 3470 7236 1217 63.3 MiB 0.13 0.00 5.49816 -175.294 -5.49816 5.49816 0.74 0.000599742 0.000548754 0.0421888 0.0389026 34 3760 29 6.89349e+06 394628 618332. 2139.56 4.67 0.305638 0.263652 25762 151098 -1 2849 21 2337 3169 226449 53884 5.30184 5.30184 -177.291 -5.30184 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0312856 0.0272792 181 90 31 31 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 6.14 vpr 63.07 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30416 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64580 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.2 MiB 1.70 1340 14763 4284 8311 2168 63.1 MiB 0.17 0.00 3.76655 -130.012 -3.76655 3.76655 0.69 0.000758729 0.000704496 0.0621432 0.0576911 34 3258 47 6.89349e+06 380534 618332. 2139.56 1.68 0.238548 0.208237 25762 151098 -1 2645 22 2257 3104 229312 50693 3.07996 3.07996 -123.899 -3.07996 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0325238 0.0283092 168 64 60 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.98 vpr 63.34 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30496 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64864 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 2.02 1284 16207 4365 9844 1998 63.3 MiB 0.16 0.00 4.62085 -160.706 -4.62085 4.62085 0.89 0.000595015 0.000546169 0.0507187 0.0466176 34 3366 50 6.89349e+06 380534 618332. 2139.56 2.02 0.235743 0.204373 25762 151098 -1 2675 20 2097 2768 213441 47597 4.08816 4.08816 -158.057 -4.08816 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0310796 0.0270776 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 8.54 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.04 -1 -1 30724 -1 -1 31 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.1 MiB 2.44 1764 15215 4236 8627 2352 63.6 MiB 0.19 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000845263 0.000778541 0.067427 0.0624955 34 4947 37 6.89349e+06 436909 618332. 2139.56 3.20 0.275509 0.240112 25762 151098 -1 3930 21 3340 4681 433075 89564 5.07269 5.07269 -188.593 -5.07269 0 0 787024. 2723.27 0.21 0.14 0.13 -1 -1 0.21 0.036504 0.0317521 220 96 62 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.81 vpr 62.51 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30640 -1 -1 20 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.56 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.66 0.000640445 0.000595956 0.0260511 0.0242337 34 2124 38 6.89349e+06 281877 618332. 2139.56 1.39 0.168767 0.145881 25762 151098 -1 1695 21 1403 1837 121272 28905 3.14351 3.14351 -127.25 -3.14351 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254668 0.0221603 127 34 62 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.55 vpr 63.32 MiB 0.05 7120 -1 -1 1 0.03 -1 -1 30384 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.5 MiB 1.54 1294 17376 6419 8627 2330 63.3 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.67 0.000773185 0.000717775 0.070126 0.0651223 34 3454 30 6.89349e+06 380534 618332. 2139.56 2.25 0.225203 0.197945 25762 151098 -1 2537 22 1852 2286 198519 43793 4.09035 4.09035 -145.609 -4.09035 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0301526 0.0263922 168 64 62 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.72 vpr 63.14 MiB 0.02 7116 -1 -1 1 0.03 -1 -1 30544 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1356 15391 5368 7626 2397 63.1 MiB 0.17 0.00 4.39449 -148.549 -4.39449 4.39449 0.72 0.000761155 0.000706715 0.0613051 0.0568303 36 3343 28 6.89349e+06 380534 648988. 2245.63 2.09 0.220736 0.193029 26050 158493 -1 2717 19 1647 2572 179704 41804 3.4417 3.4417 -136.201 -3.4417 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.028877 0.0253072 172 63 62 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.13 vpr 62.62 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.0 MiB 1.18 953 14407 3720 10033 654 62.6 MiB 0.14 0.00 4.3344 -147.594 -4.3344 4.3344 0.66 0.000549258 0.000503653 0.0453129 0.0416019 34 3038 25 6.89349e+06 295971 618332. 2139.56 2.12 0.175794 0.152898 25762 151098 -1 2307 22 1927 3367 226780 53457 4.0709 4.0709 -157.004 -4.0709 0 0 787024. 2723.27 0.31 0.09 0.15 -1 -1 0.31 0.0262622 0.0231332 147 3 128 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 6.04 vpr 63.30 MiB 0.05 7164 -1 -1 1 0.04 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.6 MiB 1.39 1279 18101 5797 9598 2706 63.3 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.68 0.000785157 0.00072935 0.0714047 0.0663381 34 3456 36 6.89349e+06 394628 618332. 2139.56 1.84 0.244635 0.214167 25762 151098 -1 2495 17 1742 2005 141326 32991 3.5498 3.5498 -134.758 -3.5498 0 0 787024. 2723.27 0.20 0.07 0.15 -1 -1 0.20 0.0264702 0.0230928 184 96 25 25 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 8.03 vpr 63.11 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30300 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.3 MiB 1.94 1221 17635 5673 8836 3126 63.1 MiB 0.17 0.00 4.28929 -146.442 -4.28929 4.28929 0.70 0.000765099 0.000710982 0.068382 0.0635126 36 3258 26 6.89349e+06 380534 648988. 2245.63 3.16 0.227184 0.199386 26050 158493 -1 2353 25 2033 3153 228574 54200 3.7364 3.7364 -144.199 -3.7364 0 0 828058. 2865.25 0.31 0.09 0.16 -1 -1 0.31 0.0304305 0.0266997 169 61 64 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.98 vpr 63.20 MiB 0.03 7140 -1 -1 1 0.03 -1 -1 30428 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.4 MiB 1.53 1303 7027 1560 5110 357 63.2 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.000773989 0.000718967 0.0295816 0.0274594 34 3432 32 6.89349e+06 380534 618332. 2139.56 1.64 0.194466 0.168186 25762 151098 -1 2779 19 2292 3111 220573 50545 3.34586 3.34586 -134.809 -3.34586 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0254669 0.022511 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 5.77 vpr 63.31 MiB 0.03 6896 -1 -1 1 0.02 -1 -1 30516 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.6 MiB 1.47 1190 14518 4171 8562 1785 63.3 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.65 0.000739279 0.000686759 0.0578805 0.0537937 34 2867 24 6.89349e+06 338252 618332. 2139.56 1.57 0.205645 0.180198 25762 151098 -1 2297 20 1953 2892 199364 44289 3.94566 3.94566 -153.36 -3.94566 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0285819 0.0248603 161 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.42 vpr 63.32 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30668 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1201 13351 3240 8446 1665 63.3 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.65 0.000781109 0.000726329 0.0528392 0.0490879 36 3088 18 6.89349e+06 380534 648988. 2245.63 1.58 0.197814 0.17268 26050 158493 -1 2542 22 2132 2720 189470 43438 3.95366 3.95366 -155.201 -3.95366 0 0 828058. 2865.25 0.22 0.09 0.14 -1 -1 0.22 0.0333611 0.02902 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.72 vpr 63.45 MiB 0.05 7272 -1 -1 1 0.03 -1 -1 30492 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64972 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.7 MiB 1.28 1470 18625 5270 10765 2590 63.4 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.68 0.000824741 0.000766393 0.075484 0.0701894 34 3523 29 6.89349e+06 436909 618332. 2139.56 1.61 0.245376 0.214839 25762 151098 -1 2759 20 1882 2213 161482 36768 4.39925 4.39925 -149.753 -4.39925 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.032127 0.0279234 195 122 0 0 122 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 7.14 vpr 63.41 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30432 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.6 MiB 2.43 1648 15391 4130 9133 2128 63.4 MiB 0.18 0.00 4.77885 -161.828 -4.77885 4.77885 0.58 0.000808666 0.000750706 0.0660986 0.0614237 36 3608 22 6.89349e+06 380534 648988. 2245.63 1.91 0.223825 0.195887 26050 158493 -1 2977 22 2584 3747 246133 55196 3.9931 3.9931 -155.328 -3.9931 0 0 828058. 2865.25 0.22 0.11 0.14 -1 -1 0.22 0.0354378 0.0308238 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.44 vpr 62.45 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63952 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 23.9 MiB 1.39 1067 16081 5068 9178 1835 62.5 MiB 0.15 0.00 3.68745 -131.866 -3.68745 3.68745 0.69 0.00063878 0.000594292 0.057265 0.0532629 34 2400 20 6.89349e+06 295971 618332. 2139.56 1.37 0.17875 0.156902 25762 151098 -1 2004 18 1181 1671 111213 25748 2.83886 2.83886 -122.699 -2.83886 0 0 787024. 2723.27 0.21 0.06 0.14 -1 -1 0.21 0.0226333 0.0197451 127 34 63 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 7.85 vpr 63.04 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30416 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.3 MiB 1.36 1122 7711 1541 6020 150 63.0 MiB 0.09 0.00 4.29439 -143.523 -4.29439 4.29439 0.67 0.000713226 0.000658812 0.0316974 0.0294515 34 3249 25 6.89349e+06 295971 618332. 2139.56 3.80 0.252353 0.216896 25762 151098 -1 2403 19 1818 2118 159690 36677 3.76829 3.76829 -140.768 -3.76829 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0283052 0.0246409 154 94 0 0 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.15 vpr 63.59 MiB 0.03 7236 -1 -1 1 0.03 -1 -1 30816 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1537 17347 5978 9037 2332 63.6 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.66 0.000898264 0.000835384 0.0771597 0.0718201 38 3731 22 6.89349e+06 422815 678818. 2348.85 1.70 0.250313 0.219649 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.22 0.10 0.14 -1 -1 0.22 0.0353743 0.0308159 209 65 96 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.40 vpr 63.04 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30376 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64552 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1176 14295 4272 7910 2113 63.0 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.66 0.000737146 0.00068476 0.0594284 0.0552571 34 2997 45 6.89349e+06 324158 618332. 2139.56 2.05 0.219935 0.192145 25762 151098 -1 2396 24 2126 3102 261342 57832 3.48181 3.48181 -130.98 -3.48181 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0335909 0.029144 156 34 92 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.00 vpr 62.57 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64068 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 23.9 MiB 1.10 932 11809 3108 7963 738 62.6 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.66 0.000620462 0.000577476 0.0360648 0.0334708 34 2124 20 6.89349e+06 451003 618332. 2139.56 1.31 0.154345 0.134096 25762 151098 -1 1763 20 1114 1836 110640 27034 3.45265 3.45265 -126.061 -3.45265 0 0 787024. 2723.27 0.23 0.06 0.14 -1 -1 0.23 0.0240635 0.0208005 129 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 7.46 vpr 63.36 MiB 0.05 7424 -1 -1 1 0.04 -1 -1 31064 -1 -1 35 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.1 MiB 1.66 1787 18111 5206 10704 2201 63.4 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.65 0.00095312 0.000885592 0.0802955 0.0745641 36 4099 45 6.89349e+06 493284 648988. 2245.63 2.93 0.306627 0.267899 26050 158493 -1 3443 22 2883 3553 247502 56234 5.31523 5.31523 -188.864 -5.31523 0 0 828058. 2865.25 0.23 0.11 0.16 -1 -1 0.23 0.0408635 0.0354266 239 127 32 32 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.73 vpr 63.03 MiB 0.04 6944 -1 -1 1 0.03 -1 -1 30404 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.3 MiB 1.30 1091 13143 3864 7923 1356 63.0 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.70 0.000755398 0.000702227 0.0531662 0.0494078 34 2892 26 6.89349e+06 324158 618332. 2139.56 1.64 0.202496 0.177006 25762 151098 -1 2392 21 2162 2968 238683 51533 3.84896 3.84896 -151.21 -3.84896 0 0 787024. 2723.27 0.20 0.09 0.14 -1 -1 0.20 0.030776 0.0268782 159 34 96 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.37 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30356 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 23.8 MiB 0.53 849 10087 2557 6780 750 62.4 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.000607691 0.00056421 0.0302899 0.0280971 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.91 0.103581 0.0907569 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.21 0.07 0.12 -1 -1 0.21 0.0226924 0.0197163 123 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.01 vpr 63.49 MiB 0.04 7160 -1 -1 1 0.03 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 1.71 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.65 0.000825004 0.000764344 0.0525839 0.0488961 34 3822 27 6.89349e+06 408721 618332. 2139.56 2.52 0.226504 0.197057 25762 151098 -1 2912 22 2549 3843 311394 66607 5.1379 5.1379 -187.584 -5.1379 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0347328 0.0302902 194 34 128 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.98 vpr 62.51 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30420 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.88 787 10056 2193 7590 273 62.5 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000609598 0.000567276 0.0374044 0.0348083 34 2224 26 6.89349e+06 225501 618332. 2139.56 1.48 0.161203 0.140457 25762 151098 -1 1846 22 1541 2509 193294 43434 3.19371 3.19371 -132.436 -3.19371 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0252483 0.0218891 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.28 vpr 62.51 MiB 0.04 6864 -1 -1 1 0.03 -1 -1 30504 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64012 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.06 801 8131 1824 5536 771 62.5 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.65 0.000619491 0.00057624 0.03094 0.0287925 36 2120 22 6.89349e+06 267783 648988. 2245.63 1.65 0.151238 0.131217 26050 158493 -1 1750 19 1241 1698 126802 29254 3.19991 3.19991 -118.784 -3.19991 0 0 828058. 2865.25 0.21 0.06 0.13 -1 -1 0.21 0.0227629 0.0197732 121 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.49 vpr 63.44 MiB 0.05 7204 -1 -1 1 0.03 -1 -1 30340 -1 -1 31 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64960 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1254 15203 3953 9019 2231 63.4 MiB 0.16 0.00 4.1318 -129.307 -4.1318 4.1318 0.68 0.000756186 0.000703455 0.0608763 0.056558 34 2921 25 6.89349e+06 436909 618332. 2139.56 1.46 0.207846 0.18168 25762 151098 -1 2342 21 1662 2222 140241 33338 3.5421 3.5421 -128.502 -3.5421 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0295208 0.0256722 171 88 29 29 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.26 vpr 63.29 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30656 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.80 1381 16974 4929 9664 2381 63.3 MiB 0.16 0.00 5.29596 -177.687 -5.29596 5.29596 0.66 0.000772564 0.000717011 0.0675648 0.0626923 36 3381 23 6.89349e+06 366440 648988. 2245.63 1.80 0.222756 0.195445 26050 158493 -1 2889 22 2137 3133 238064 52828 4.75305 4.75305 -177.116 -4.75305 0 0 828058. 2865.25 0.21 0.10 0.13 -1 -1 0.21 0.0331964 0.0290045 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.42 vpr 63.41 MiB 0.05 6956 -1 -1 1 0.03 -1 -1 30688 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.63 1376 18180 6112 9250 2818 63.4 MiB 0.20 0.00 5.13064 -174.448 -5.13064 5.13064 0.67 0.000775111 0.000719759 0.0749303 0.0695437 34 3618 39 6.89349e+06 366440 618332. 2139.56 1.94 0.24831 0.217417 25762 151098 -1 2890 21 2383 3336 267896 58265 4.49945 4.49945 -170.954 -4.49945 0 0 787024. 2723.27 0.21 0.11 0.14 -1 -1 0.21 0.0338205 0.0296997 175 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.47 vpr 63.02 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30520 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.4 MiB 1.16 1013 14221 3579 9597 1045 63.0 MiB 0.14 0.00 4.30029 -147.314 -4.30029 4.30029 0.67 0.000686692 0.000637367 0.0565328 0.0525669 34 2793 24 6.89349e+06 295971 618332. 2139.56 1.68 0.17555 0.154024 25762 151098 -1 2061 19 1391 1569 107953 25914 3.5608 3.5608 -135.674 -3.5608 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0256387 0.0222136 141 65 32 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 5.81 vpr 63.06 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30408 -1 -1 22 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.53 1168 10501 2617 6825 1059 63.1 MiB 0.10 0.00 4.23729 -139.76 -4.23729 4.23729 0.80 0.000599761 0.000555292 0.0325614 0.0299336 34 2811 21 6.89349e+06 310065 618332. 2139.56 1.54 0.169565 0.146518 25762 151098 -1 2304 21 1494 1888 140373 31134 3.437 3.437 -131.651 -3.437 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0270898 0.0234813 146 90 0 0 89 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.12 vpr 63.22 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30368 -1 -1 29 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64736 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.4 MiB 1.73 1158 18043 5948 9235 2860 63.2 MiB 0.18 0.00 3.9471 -130.183 -3.9471 3.9471 0.68 0.000724236 0.000672838 0.0664106 0.0616246 36 2742 19 6.89349e+06 408721 648988. 2245.63 1.64 0.206139 0.181084 26050 158493 -1 2236 22 1585 2245 148948 33787 3.17971 3.17971 -124.133 -3.17971 0 0 828058. 2865.25 0.21 0.08 0.13 -1 -1 0.21 0.0301111 0.0261603 164 60 60 30 57 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.67 vpr 62.96 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30508 -1 -1 27 28 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64472 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.14 970 11031 2869 6600 1562 63.0 MiB 0.10 0.00 4.51585 -132.654 -4.51585 4.51585 0.65 0.00067334 0.000626267 0.0405629 0.0377353 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.00 0.121685 0.106867 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0269296 0.0234438 145 34 84 28 28 28 -fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 6.38 vpr 62.90 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30156 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64412 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.0 MiB 1.78 1087 9083 2557 5800 726 62.9 MiB 0.09 0.00 4.36859 -139.508 -4.36859 4.36859 0.78 0.000506865 0.000467057 0.0344534 0.0319675 36 2461 21 6.89349e+06 295971 648988. 2245.63 1.88 0.15765 0.137056 26050 158493 -1 2210 18 1549 2144 153888 34396 3.93924 3.93924 -143.927 -3.93924 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0230874 0.020111 136 63 30 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.91 vpr 63.06 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30376 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1180 8827 2269 5871 687 63.1 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.65 0.000697827 0.000648362 0.0353878 0.0328445 34 2947 27 6.89349e+06 295971 618332. 2139.56 1.69 0.170767 0.148019 25762 151098 -1 2298 19 1784 2086 141746 33966 3.33536 3.33536 -124.603 -3.33536 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0245359 0.0216055 150 91 0 0 91 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.11 vpr 63.02 MiB 0.05 7012 -1 -1 1 0.03 -1 -1 30152 -1 -1 37 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.4 MiB 0.66 1032 15180 4497 8229 2454 63.0 MiB 0.14 0.00 4.35445 -144.691 -4.35445 4.35445 0.67 0.000702391 0.000651045 0.0479968 0.0444774 28 3116 24 6.89349e+06 521472 531479. 1839.03 1.79 0.136155 0.120052 24610 126494 -1 2417 23 1852 2944 264887 56478 4.146 4.146 -146.482 -4.146 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293902 0.025461 151 4 124 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 5.56 vpr 63.25 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.4 MiB 1.13 1263 12351 3110 8140 1101 63.2 MiB 0.14 0.00 4.78058 -162.367 -4.78058 4.78058 0.66 0.000779867 0.000724425 0.0514792 0.0478223 34 3370 34 6.89349e+06 366440 618332. 2139.56 1.67 0.216361 0.188747 25762 151098 -1 2699 20 2011 2692 190290 44248 4.11729 4.11729 -159.216 -4.11729 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0306781 0.0267664 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.63 vpr 63.27 MiB 0.04 7044 -1 -1 1 0.04 -1 -1 30360 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1405 10743 3107 6650 986 63.3 MiB 0.13 0.00 4.9601 -169.723 -4.9601 4.9601 0.66 0.000782458 0.000726051 0.0442406 0.0410427 36 3352 21 6.89349e+06 366440 648988. 2245.63 2.37 0.193773 0.168572 26050 158493 -1 2841 24 2714 3829 281475 60219 4.60149 4.60149 -175.01 -4.60149 0 0 828058. 2865.25 0.21 0.11 0.15 -1 -1 0.21 0.0350189 0.0304775 171 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.76 vpr 63.09 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30444 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1306 10087 2279 7315 493 63.1 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.65 0.000765612 0.00071099 0.0387853 0.0359745 34 4019 38 6.89349e+06 380534 618332. 2139.56 2.34 0.205393 0.178093 25762 151098 -1 2959 22 2024 2984 275031 58181 3.8787 3.8787 -143.052 -3.8787 0 0 787024. 2723.27 0.27 0.11 0.15 -1 -1 0.27 0.0317707 0.0278175 172 65 60 30 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.53 vpr 62.43 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30536 -1 -1 19 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 23.9 MiB 1.50 814 9181 2458 5686 1037 62.4 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.66 0.000618892 0.000575783 0.0342749 0.0318868 34 2414 23 6.89349e+06 267783 618332. 2139.56 1.44 0.156651 0.136129 25762 151098 -1 1981 18 1325 1862 137906 31352 3.32811 3.32811 -124.606 -3.32811 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0219365 0.0190904 122 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.56 vpr 63.11 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30544 -1 -1 26 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64628 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.3 MiB 2.05 1287 12568 3293 7724 1551 63.1 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.66 0.000740285 0.000687467 0.0501106 0.0465692 34 3215 23 6.89349e+06 366440 618332. 2139.56 1.77 0.196956 0.171803 25762 151098 -1 2669 22 2168 2985 251473 53133 4.62785 4.62785 -167.287 -4.62785 0 0 787024. 2723.27 0.20 0.09 0.13 -1 -1 0.20 0.0308118 0.0267599 165 63 60 30 60 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.81 vpr 63.68 MiB 0.05 7108 -1 -1 1 0.03 -1 -1 30840 -1 -1 30 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.8 MiB 1.04 1479 11383 3062 7492 829 63.7 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.67 0.00105856 0.000978628 0.0495089 0.0460141 36 3485 21 6.89349e+06 422815 648988. 2245.63 1.98 0.214935 0.186912 26050 158493 -1 2832 22 2013 2060 161581 36432 4.3846 4.3846 -161.201 -4.3846 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0353186 0.0305541 204 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 6.10 vpr 63.36 MiB 0.02 7240 -1 -1 1 0.03 -1 -1 30688 -1 -1 29 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1301 16445 5093 9336 2016 63.4 MiB 0.18 0.00 5.17904 -171.173 -5.17904 5.17904 0.67 0.000943993 0.000877503 0.0661523 0.0613718 36 3067 22 6.89349e+06 408721 648988. 2245.63 1.83 0.221465 0.193967 26050 158493 -1 2596 21 2101 2656 176406 39956 4.55855 4.55855 -167.212 -4.55855 0 0 828058. 2865.25 0.23 0.11 0.17 -1 -1 0.23 0.0385531 0.0335524 186 94 31 31 93 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.86 vpr 63.21 MiB 0.05 7184 -1 -1 1 0.03 -1 -1 30564 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.3 MiB 1.85 1252 12351 3368 8179 804 63.2 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.66 0.000772645 0.00071895 0.0498195 0.0462778 34 3685 43 6.89349e+06 394628 618332. 2139.56 2.24 0.226691 0.196903 25762 151098 -1 2594 20 2113 2985 216177 51036 3.6894 3.6894 -134.45 -3.6894 0 0 787024. 2723.27 0.26 0.08 0.14 -1 -1 0.26 0.0278975 0.024293 175 92 26 26 90 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.30 vpr 63.30 MiB 0.05 7116 -1 -1 1 0.03 -1 -1 30676 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.4 MiB 1.57 1349 14160 4180 8412 1568 63.3 MiB 0.16 0.00 5.11687 -171.214 -5.11687 5.11687 0.67 0.000781613 0.000725574 0.0604479 0.0561111 34 3581 27 6.89349e+06 366440 618332. 2139.56 1.96 0.21853 0.19107 25762 151098 -1 2791 20 2316 3288 250957 53444 4.38015 4.38015 -167.903 -4.38015 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0309337 0.0270696 177 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 6.08 vpr 63.16 MiB 0.05 7260 -1 -1 1 0.03 -1 -1 30424 -1 -1 30 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64680 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1337 17431 5595 9274 2562 63.2 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.67 0.000845239 0.000792664 0.0648763 0.0602063 34 3073 24 6.89349e+06 422815 618332. 2139.56 1.49 0.214704 0.187933 25762 151098 -1 2550 21 1725 2466 178342 39501 3.5011 3.5011 -124.119 -3.5011 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0293322 0.0255011 170 88 26 26 85 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.50 vpr 62.27 MiB 0.02 6812 -1 -1 1 0.03 -1 -1 30296 -1 -1 16 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.8 MiB 0.48 851 10744 3065 7267 412 62.3 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.66 0.000614028 0.000571497 0.0415225 0.0385499 34 2305 21 6.89349e+06 225501 618332. 2139.56 1.39 0.163716 0.142801 25762 151098 -1 2030 19 1345 2174 159532 36663 3.14346 3.14346 -132.265 -3.14346 0 0 787024. 2723.27 0.20 0.07 0.14 -1 -1 0.20 0.0225579 0.019614 114 3 96 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.57 vpr 63.27 MiB 0.04 7016 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1266 16411 5685 8276 2450 63.3 MiB 0.18 0.00 5.17997 -174.972 -5.17997 5.17997 0.65 0.000779496 0.000723423 0.0675635 0.0627493 34 3964 24 6.89349e+06 380534 618332. 2139.56 2.32 0.22524 0.197591 25762 151098 -1 2919 22 2505 3449 295666 64678 4.51349 4.51349 -172.423 -4.51349 0 0 787024. 2723.27 0.20 0.11 0.14 -1 -1 0.20 0.0327204 0.0285389 174 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 7.35 vpr 63.37 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30524 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.5 MiB 2.40 1294 9791 2343 6863 585 63.4 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.67 0.000779052 0.000723442 0.0432461 0.040209 34 3734 27 6.89349e+06 352346 618332. 2139.56 2.16 0.205585 0.179192 25762 151098 -1 3073 21 2521 3502 329891 67655 4.83919 4.83919 -182.492 -4.83919 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0313068 0.0272672 176 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.51 vpr 62.70 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30412 -1 -1 19 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.1 MiB 1.47 971 13043 4021 6975 2047 62.7 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.65 0.000637815 0.000592886 0.0486843 0.0453133 34 2366 21 6.89349e+06 267783 618332. 2139.56 1.39 0.17343 0.15127 25762 151098 -1 2000 20 1104 1335 121547 26462 2.8625 2.8625 -110.607 -2.8625 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0261222 0.022552 128 55 32 32 54 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.24 vpr 62.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30384 -1 -1 17 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63916 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.71 734 11604 2641 7381 1582 62.4 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.65 0.000600294 0.000558988 0.0423281 0.0394172 32 2249 20 6.89349e+06 239595 586450. 2029.24 0.86 0.112232 0.099313 25474 144626 -1 1818 21 1430 2242 171277 39732 3.12151 3.12151 -125.297 -3.12151 0 0 744469. 2576.02 0.19 0.07 0.13 -1 -1 0.19 0.0239617 0.0207526 112 4 93 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.47 vpr 63.23 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30260 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.5 MiB 1.29 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.66 0.00074055 0.000688048 0.0553447 0.051401 34 3001 25 6.89349e+06 352346 618332. 2139.56 1.51 0.203815 0.178228 25762 151098 -1 2423 23 1713 2161 161461 37745 3.7616 3.7616 -139.443 -3.7616 0 0 787024. 2723.27 0.21 0.09 0.14 -1 -1 0.21 0.0334719 0.029112 158 59 60 32 58 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.88 vpr 63.21 MiB 0.03 7144 -1 -1 1 0.02 -1 -1 30268 -1 -1 26 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.42 1314 10341 2747 6842 752 63.2 MiB 0.12 0.00 5.10864 -160.907 -5.10864 5.10864 0.65 0.00077034 0.000714279 0.0430161 0.0398155 34 3382 28 6.89349e+06 366440 618332. 2139.56 1.81 0.201561 0.175094 25762 151098 -1 2663 21 1947 2359 175874 40231 4.70585 4.70585 -165.127 -4.70585 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0304018 0.0264744 170 88 28 28 88 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.19 vpr 63.27 MiB 0.03 7040 -1 -1 1 0.03 -1 -1 30568 -1 -1 41 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.4 MiB 0.72 1292 15419 3797 10101 1521 63.3 MiB 0.16 0.00 4.85078 -164.688 -4.85078 4.85078 0.65 0.000800683 0.000744646 0.053115 0.0492494 34 3291 24 6.89349e+06 577847 618332. 2139.56 1.74 0.201032 0.175853 25762 151098 -1 2778 22 2120 3540 253505 56982 4.41009 4.41009 -164.794 -4.41009 0 0 787024. 2723.27 0.23 0.10 0.09 -1 -1 0.23 0.0326577 0.0284132 183 3 156 32 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.83 vpr 63.21 MiB 0.02 7024 -1 -1 1 0.05 -1 -1 30564 -1 -1 27 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64732 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.4 MiB 1.50 1124 9395 2323 6078 994 63.2 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.66 0.000718096 0.000667181 0.0375023 0.0348973 34 2687 35 6.89349e+06 380534 618332. 2139.56 1.63 0.196532 0.170741 25762 151098 -1 2215 22 1871 2641 178277 40722 3.23245 3.23245 -123.072 -3.23245 0 0 787024. 2723.27 0.20 0.08 0.14 -1 -1 0.20 0.0296547 0.0257776 160 59 60 30 56 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 4.94 vpr 62.48 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 27 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63976 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 24.0 MiB 1.09 915 13031 5095 6351 1585 62.5 MiB 0.11 0.00 4.34539 -126.288 -4.34539 4.34539 0.66 0.000573393 0.000534107 0.0446719 0.0415869 34 2091 19 6.89349e+06 310065 618332. 2139.56 1.31 0.15341 0.133857 25762 151098 -1 1747 20 1241 1802 139980 30557 3.5341 3.5341 -120.468 -3.5341 0 0 787024. 2723.27 0.19 0.04 0.09 -1 -1 0.19 0.0135077 0.0118618 112 34 54 27 27 27 -fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.91 vpr 63.32 MiB 0.05 7188 -1 -1 1 0.03 -1 -1 30656 -1 -1 32 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.67 1748 16302 4126 10044 2132 63.3 MiB 0.21 0.00 5.09354 -170.611 -5.09354 5.09354 0.69 0.000913683 0.000848699 0.0754689 0.0700495 34 4285 25 6.89349e+06 451003 618332. 2139.56 2.23 0.263129 0.230048 25762 151098 -1 3468 22 2649 3800 298982 65983 4.56475 4.56475 -168.829 -4.56475 0 0 787024. 2723.27 0.21 0.11 0.10 -1 -1 0.21 0.0376485 0.0326776 219 95 62 31 95 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 6.86 vpr 63.34 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30612 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64856 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.93 1467 12661 2948 8528 1185 63.3 MiB 0.14 0.00 5.14784 -166.315 -5.14784 5.14784 0.65 0.000835935 0.000777052 0.0524276 0.0487052 36 3334 29 6.89349e+06 436909 648988. 2245.63 2.12 0.239097 0.208474 26050 158493 -1 2867 20 2116 2465 175785 40132 4.44755 4.44755 -164.311 -4.44755 0 0 828058. 2865.25 0.22 0.10 0.15 -1 -1 0.22 0.0365614 0.0317343 201 124 0 0 124 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 6.25 vpr 63.07 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30356 -1 -1 22 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.3 MiB 1.82 1133 9914 2313 7132 469 63.1 MiB 0.10 0.00 4.28535 -139.234 -4.28535 4.28535 0.66 0.000690364 0.000641708 0.0385024 0.0357575 34 3076 43 6.89349e+06 310065 618332. 2139.56 1.72 0.192896 0.167087 25762 151098 -1 2412 19 1636 1891 160594 35200 3.481 3.481 -133.609 -3.481 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.0254125 0.0221273 150 89 0 0 89 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.83 vpr 63.18 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30304 -1 -1 23 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1114 12951 3612 7720 1619 63.2 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.71 0.000715818 0.000664725 0.0514777 0.0477639 34 2799 24 6.89349e+06 324158 618332. 2139.56 1.45 0.195754 0.170853 25762 151098 -1 2218 20 1438 2033 143461 35360 3.7092 3.7092 -142.167 -3.7092 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0278901 0.0242964 151 34 90 30 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.97 vpr 63.52 MiB 0.05 7276 -1 -1 1 0.04 -1 -1 30808 -1 -1 30 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 65048 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.43 1475 19413 5609 11709 2095 63.5 MiB 0.22 0.00 4.64537 -154.979 -4.64537 4.64537 0.67 0.000848432 0.000774615 0.0824658 0.0764143 34 3553 32 6.89349e+06 422815 618332. 2139.56 1.68 0.259517 0.227124 25762 151098 -1 2807 23 2386 3265 238394 52982 4.17126 4.17126 -155.088 -4.17126 0 0 787024. 2723.27 0.20 0.10 0.13 -1 -1 0.20 0.0358803 0.0311398 193 64 87 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 6.22 vpr 63.11 MiB 0.05 7060 -1 -1 1 0.03 -1 -1 30372 -1 -1 28 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64624 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1223 16773 5429 8542 2802 63.1 MiB 0.17 0.00 4.28025 -135.791 -4.28025 4.28025 0.67 0.000710746 0.000659044 0.0645845 0.0599933 36 2894 24 6.89349e+06 394628 648988. 2245.63 1.70 0.211616 0.185501 26050 158493 -1 2401 18 1433 2202 145554 32451 3.6091 3.6091 -131.979 -3.6091 0 0 828058. 2865.25 0.21 0.07 0.14 -1 -1 0.21 0.0254733 0.0221865 162 61 58 30 58 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 6.20 vpr 63.20 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30520 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.3 MiB 1.34 1373 17066 5393 8866 2807 63.2 MiB 0.19 0.00 5.03124 -168.563 -5.03124 5.03124 0.65 0.000771233 0.000715691 0.0662816 0.0615148 34 3693 35 6.89349e+06 394628 618332. 2139.56 2.07 0.235689 0.20599 25762 151098 -1 2740 22 2222 3059 251636 53797 4.29915 4.29915 -158.747 -4.29915 0 0 787024. 2723.27 0.20 0.10 0.14 -1 -1 0.20 0.0321644 0.0278831 173 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 6.03 vpr 63.36 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30448 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.65 1418 13147 3928 7969 1250 63.4 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.65 0.000773749 0.000718387 0.0523408 0.0485918 34 3370 23 6.89349e+06 380534 618332. 2139.56 1.58 0.204366 0.178316 25762 151098 -1 2925 21 1983 2746 211273 47183 3.17981 3.17981 -134.108 -3.17981 0 0 787024. 2723.27 0.25 0.09 0.13 -1 -1 0.25 0.0316773 0.0276089 175 65 63 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.10 vpr 62.51 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30564 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64008 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.0 MiB 1.22 802 14322 5252 6511 2559 62.5 MiB 0.12 0.00 3.809 -119.785 -3.809 3.809 0.66 0.000599199 0.000557055 0.0497353 0.0462152 34 2019 23 6.89349e+06 295971 618332. 2139.56 1.30 0.168639 0.147509 25762 151098 -1 1751 19 1425 1879 137804 30801 3.26411 3.26411 -118.076 -3.26411 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.022427 0.0194646 118 34 58 29 29 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.27 vpr 62.84 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30072 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.2 MiB 0.99 1059 7038 1561 5080 397 62.8 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.67 0.000689935 0.000643465 0.0278587 0.0259047 34 2689 32 6.89349e+06 281877 618332. 2139.56 1.60 0.165497 0.142971 25762 151098 -1 2148 17 1344 1631 108759 26640 3.7788 3.7788 -131.06 -3.7788 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0228659 0.0199174 136 82 0 0 82 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.02 vpr 63.19 MiB 0.05 7096 -1 -1 1 0.03 -1 -1 30428 -1 -1 24 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64708 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.5 MiB 1.24 1144 15255 6301 7544 1410 63.2 MiB 0.15 0.00 4.60015 -151.135 -4.60015 4.60015 0.71 0.000724668 0.000673279 0.06073 0.0565168 36 2816 23 6.89349e+06 338252 648988. 2245.63 1.86 0.204606 0.179496 26050 158493 -1 2145 19 1764 2558 160669 37103 3.92066 3.92066 -143.869 -3.92066 0 0 828058. 2865.25 0.21 0.08 0.14 -1 -1 0.21 0.0269208 0.0234775 154 34 93 31 31 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.03 vpr 62.59 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30496 -1 -1 21 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64092 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 23.9 MiB 1.09 955 13610 4945 6467 2198 62.6 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.67 0.00060445 0.000561901 0.0487858 0.0453608 34 2297 24 6.89349e+06 295971 618332. 2139.56 1.31 0.168695 0.147071 25762 151098 -1 1931 18 1315 1515 115667 26473 3.1574 3.1574 -109.197 -3.1574 0 0 787024. 2723.27 0.20 0.06 0.14 -1 -1 0.20 0.0214843 0.0186098 123 56 29 29 52 26 -fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.94 vpr 62.61 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30272 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.1 MiB 1.65 1000 12186 3922 6390 1874 62.6 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.67 0.0006523 0.000605655 0.0467834 0.0434786 34 2613 22 6.89349e+06 253689 618332. 2139.56 1.58 0.17476 0.15239 25762 151098 -1 2132 22 1891 2640 232575 48135 3.10751 3.10751 -128.9 -3.10751 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0267946 0.0232994 127 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.38 vpr 63.18 MiB 0.02 7012 -1 -1 1 0.05 -1 -1 30448 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.4 MiB 1.64 1201 16773 5048 9300 2425 63.2 MiB 0.18 0.00 4.20938 -143.511 -4.20938 4.20938 0.72 0.000751088 0.000697637 0.0707558 0.0657831 36 2859 23 6.89349e+06 380534 648988. 2245.63 1.91 0.222262 0.195433 26050 158493 -1 2419 22 2190 3082 242995 52192 3.64895 3.64895 -144.415 -3.64895 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.031477 0.0274093 164 64 58 31 62 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.20 vpr 62.47 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30272 -1 -1 21 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63968 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 23.9 MiB 1.27 877 7953 1966 5579 408 62.5 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.63 0.000627417 0.000584103 0.0293072 0.0272561 34 2321 22 6.89349e+06 295971 618332. 2139.56 1.34 0.153871 0.133352 25762 151098 -1 1901 18 1276 1570 111572 25912 3.01256 3.01256 -113.321 -3.01256 0 0 787024. 2723.27 0.20 0.06 0.10 -1 -1 0.20 0.0223677 0.019471 125 55 31 31 53 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.08 vpr 63.14 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30456 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64660 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1287 17711 6388 9306 2017 63.1 MiB 0.19 0.00 4.20729 -140.905 -4.20729 4.20729 0.67 0.000575323 0.000526356 0.0654438 0.0603268 34 3044 21 6.89349e+06 352346 618332. 2139.56 1.81 0.211317 0.185098 25762 151098 -1 2560 20 1544 2234 213895 43178 3.5641 3.5641 -135.638 -3.5641 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0284906 0.0248235 162 65 52 26 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.69 vpr 63.29 MiB 0.03 7188 -1 -1 1 0.03 -1 -1 30380 -1 -1 31 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64804 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.6 MiB 1.63 1441 16921 4862 9627 2432 63.3 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.68 0.000794888 0.000737576 0.0661728 0.0612932 36 3492 23 6.89349e+06 436909 648988. 2245.63 2.25 0.225335 0.197201 26050 158493 -1 2891 24 2593 3646 269905 59430 4.16489 4.16489 -156.414 -4.16489 0 0 828058. 2865.25 0.21 0.11 0.14 -1 -1 0.21 0.0352343 0.0305635 185 93 31 31 92 31 -fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.62 vpr 62.87 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 21 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64380 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1150 11245 3095 6987 1163 62.9 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.67 0.000663854 0.000615866 0.0421587 0.0391318 34 2943 19 6.89349e+06 295971 618332. 2139.56 1.68 0.172017 0.149719 25762 151098 -1 2393 17 1450 1984 143036 31845 3.10156 3.10156 -121.146 -3.10156 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0224854 0.0196273 137 61 32 32 60 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.59 vpr 62.94 MiB 0.03 6968 -1 -1 1 0.03 -1 -1 30096 -1 -1 20 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.3 MiB 1.18 1121 13443 3684 8167 1592 62.9 MiB 0.14 0.00 3.817 -131.483 -3.817 3.817 0.67 0.000682202 0.000634343 0.0513523 0.0476972 34 2949 27 6.89349e+06 281877 618332. 2139.56 1.69 0.189867 0.166386 25762 151098 -1 2392 21 1570 1870 159181 34078 3.24886 3.24886 -128.122 -3.24886 0 0 787024. 2723.27 0.20 0.04 0.09 -1 -1 0.20 0.0146559 0.0129044 139 63 32 32 62 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.79 vpr 63.17 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30728 -1 -1 27 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.3 MiB 1.29 1272 13147 3375 7731 2041 63.2 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.67 0.000777982 0.000722589 0.0523372 0.0486044 36 3093 23 6.89349e+06 380534 648988. 2245.63 1.74 0.208077 0.181763 26050 158493 -1 2636 20 2063 2521 193357 41596 3.88486 3.88486 -153.502 -3.88486 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0297772 0.0259352 178 65 64 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.28 vpr 62.97 MiB 0.05 7196 -1 -1 1 0.03 -1 -1 30540 -1 -1 26 29 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64484 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1161 15639 4794 8641 2204 63.0 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.66 0.000714878 0.000664131 0.0604291 0.0561476 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.93 0.14709 0.130266 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0263567 0.0229532 157 62 56 29 58 29 -fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 6.16 vpr 63.41 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 30624 -1 -1 29 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.7 MiB 1.26 1517 16893 4857 9388 2648 63.4 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.68 0.000862907 0.000802851 0.0726144 0.0674697 36 3623 47 6.89349e+06 408721 648988. 2245.63 1.95 0.271562 0.236577 26050 158493 -1 3156 22 2673 3071 248178 52666 4.42455 4.42455 -165.65 -4.42455 0 0 828058. 2865.25 0.24 0.10 0.14 -1 -1 0.24 0.0352143 0.0305116 203 127 0 0 128 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 3.94 vpr 62.39 MiB 0.03 6860 -1 -1 1 0.03 -1 -1 30436 -1 -1 16 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.54 803 5149 1186 3599 364 62.4 MiB 0.06 0.00 2.99217 -104.791 -2.99217 2.99217 0.66 0.000579995 0.00053995 0.0189923 0.0176763 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.83 0.0848815 0.074009 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0235743 0.0204233 104 4 85 31 0 0 -fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.11 vpr 63.33 MiB 0.05 7080 -1 -1 1 0.04 -1 -1 30320 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.4 MiB 1.47 1396 18101 5815 9868 2418 63.3 MiB 0.18 0.00 5.41163 -177.078 -5.41163 5.41163 0.65 0.000790206 0.000734033 0.0713302 0.0661524 34 3746 48 6.89349e+06 394628 618332. 2139.56 1.81 0.254653 0.222124 25762 151098 -1 2832 22 2354 3065 225336 49285 4.79744 4.79744 -173.538 -4.79744 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0346148 0.0300479 179 92 28 28 92 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 7.39 vpr 63.10 MiB 0.05 6996 -1 -1 1 0.03 -1 -1 30208 -1 -1 24 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.4 MiB 1.96 1193 17248 5142 9796 2310 63.1 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000715418 0.000663996 0.0659456 0.0611808 36 3213 26 6.89349e+06 338252 648988. 2245.63 2.61 0.215899 0.189306 26050 158493 -1 2595 22 2546 3207 264163 56603 4.16159 4.16159 -158.769 -4.16159 0 0 828058. 2865.25 0.21 0.12 0.14 -1 -1 0.21 0.0353093 0.0306815 161 96 0 0 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.67 vpr 63.15 MiB 0.02 7020 -1 -1 1 0.03 -1 -1 30312 -1 -1 25 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1163 10187 2742 6187 1258 63.1 MiB 0.12 0.00 3.75965 -128.904 -3.75965 3.75965 0.66 0.000765216 0.000710701 0.0427696 0.0397187 34 3025 27 6.89349e+06 352346 618332. 2139.56 1.47 0.198324 0.17252 25762 151098 -1 2491 19 1597 2189 181128 38779 3.2337 3.2337 -127.372 -3.2337 0 0 787024. 2723.27 0.20 0.08 0.13 -1 -1 0.20 0.0286161 0.0249786 170 65 61 32 64 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.93 vpr 63.37 MiB 0.05 7312 -1 -1 1 0.04 -1 -1 30924 -1 -1 33 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 24.9 MiB 1.50 1578 21409 7235 11132 3042 63.4 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.65 0.000904094 0.000839176 0.0913222 0.0847569 36 3817 25 6.89349e+06 465097 648988. 2245.63 2.47 0.271983 0.238701 26050 158493 -1 3239 23 2994 3556 290956 61778 4.88125 4.88125 -179.725 -4.88125 0 0 828058. 2865.25 0.31 0.10 0.14 -1 -1 0.31 0.0377031 0.0327356 224 96 64 32 96 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 4.73 vpr 62.16 MiB 0.04 6780 -1 -1 1 0.03 -1 -1 30292 -1 -1 16 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63648 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.5 MiB 0.98 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.66 0.000538033 0.000501127 0.0429908 0.0399963 34 1779 20 6.89349e+06 225501 618332. 2139.56 1.18 0.14515 0.1267 25762 151098 -1 1561 15 687 705 51265 12169 2.43936 2.43936 -93.3328 -2.43936 0 0 787024. 2723.27 0.20 0.04 0.11 -1 -1 0.20 0.0164764 0.0143541 93 56 0 0 53 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.05 vpr 62.50 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30384 -1 -1 21 30 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63996 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 23.9 MiB 1.06 936 13763 4663 7110 1990 62.5 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.65 0.00062033 0.000577311 0.0493624 0.0459567 34 2090 22 6.89349e+06 295971 618332. 2139.56 1.34 0.170095 0.148815 25762 151098 -1 1767 23 1644 2455 174843 39582 3.62805 3.62805 -135.745 -3.62805 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0267058 0.0231481 124 34 60 30 30 30 -fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.85 vpr 62.80 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30084 -1 -1 18 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.1 MiB 1.97 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.67 0.000651327 0.000605289 0.0330376 0.0307111 36 2726 23 6.89349e+06 253689 648988. 2245.63 2.17 0.162991 0.141553 26050 158493 -1 2244 23 1750 3033 226759 49740 3.981 3.981 -153.41 -3.981 0 0 828058. 2865.25 0.21 0.09 0.14 -1 -1 0.21 0.0277595 0.0240871 129 34 64 32 32 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 4.99 vpr 62.28 MiB 0.04 6812 -1 -1 1 0.03 -1 -1 30396 -1 -1 24 25 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 63772 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.11 636 10231 2621 6138 1472 62.3 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.65 0.000532951 0.00049636 0.0326782 0.0303697 34 1789 21 6.89349e+06 338252 618332. 2139.56 1.29 0.13608 0.117899 25762 151098 -1 1441 21 1055 1429 95864 23033 3.07751 3.07751 -97.8095 -3.07751 0 0 787024. 2723.27 0.20 0.06 0.13 -1 -1 0.20 0.0214047 0.0184975 107 34 50 25 25 25 -fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 7.26 vpr 63.37 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30512 -1 -1 28 32 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.7 MiB 2.32 1453 17273 5845 8574 2854 63.4 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.65 0.000623687 0.00057108 0.0635065 0.0586403 38 3543 25 6.89349e+06 394628 678818. 2348.85 1.99 0.225873 0.197435 26626 170182 -1 2910 22 2580 3748 276062 57948 3.99116 3.99116 -151.47 -3.99116 0 0 902133. 3121.57 0.23 0.11 0.17 -1 -1 0.23 0.0344365 0.0299281 190 94 32 32 94 32 -fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.30 vpr 63.44 MiB 0.03 7164 -1 -1 1 0.03 -1 -1 30460 -1 -1 27 31 0 0 success v8.0.0-10974-gd2d425477-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-16T10:36:49 betzgrp-wintermute.eecg.utoronto.ca /home/singera8/vtr-verilog-to-routing/vtr_flow/tasks 64964 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.74 1285 13758 3623 8223 1912 63.4 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.66 0.000781438 0.000725232 0.0564222 0.0523852 34 3577 46 6.89349e+06 380534 618332. 2139.56 1.80 0.236814 0.206271 25762 151098 -1 2901 28 2703 3702 321887 69079 4.64999 4.64999 -160.617 -4.64999 0 0 787024. 2723.27 0.20 0.13 0.13 -1 -1 0.20 0.0408528 0.0354271 183 94 29 29 93 31 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_001.v common 9.03 vpr 62.51 MiB 0.02 6740 -1 -1 14 0.34 -1 -1 33136 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64008 32 32 280 312 1 205 90 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1354 8532 2094 5512 926 62.5 MiB 0.09 0.00 8.19013 -165.934 -8.19013 8.19013 0.65 0.000900125 0.000833222 0.0416892 0.0385398 26 3961 50 6.55708e+06 313430 477104. 1650.88 5.93 0.347897 0.300718 21022 109990 -1 3253 20 1788 5420 338791 78530 7.2409 7.2409 -163.963 -7.2409 0 0 585099. 2024.56 0.17 0.12 0.09 -1 -1 0.17 0.0372047 0.0325474 186 186 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_002.v common 8.87 vpr 62.71 MiB 0.03 6776 -1 -1 14 0.28 -1 -1 33048 -1 -1 30 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 30 32 277 309 1 215 92 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1292 15824 4267 9033 2524 62.7 MiB 0.14 0.00 8.12966 -162.719 -8.12966 8.12966 0.65 0.000903888 0.000836469 0.0721174 0.0667459 28 4080 31 6.55708e+06 361650 500653. 1732.36 5.64 0.316926 0.276006 21310 115450 -1 3137 23 1739 4793 266330 62284 7.26844 7.26844 -160.887 -7.26844 0 0 612192. 2118.31 0.18 0.11 0.10 -1 -1 0.18 0.04129 0.0360417 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_003.v common 7.33 vpr 62.47 MiB 0.03 6728 -1 -1 11 0.27 -1 -1 33104 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 274 306 1 208 89 17 17 289 -1 unnamed_device 24.0 MiB 0.32 1266 13157 3416 7667 2074 62.5 MiB 0.13 0.00 6.4728 -136.716 -6.4728 6.4728 0.66 0.00088344 0.000817687 0.0624634 0.0576911 46 3061 18 6.55708e+06 301375 782063. 2706.10 4.05 0.37479 0.325393 24766 183262 -1 2441 17 1084 3756 177601 41767 6.05052 6.05052 -131.582 -6.05052 0 0 958460. 3316.47 0.26 0.08 0.15 -1 -1 0.26 0.0335494 0.0295861 180 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_004.v common 10.42 vpr 62.88 MiB 0.03 6752 -1 -1 12 0.43 -1 -1 33120 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 29 32 269 301 1 203 90 17 17 289 -1 unnamed_device 24.1 MiB 0.41 1320 8130 2002 5291 837 62.9 MiB 0.09 0.00 7.77357 -147.192 -7.77357 7.77357 0.94 0.0006156 0.000564363 0.0320861 0.0293125 30 3775 32 6.55708e+06 349595 526063. 1820.29 6.78 0.339791 0.295595 21886 126133 -1 3106 18 1375 4333 229000 51877 6.94904 6.94904 -141.933 -6.94904 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0346148 0.0304249 185 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_005.v common 5.48 vpr 63.05 MiB 0.03 6712 -1 -1 13 0.36 -1 -1 33064 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 317 349 1 246 96 17 17 289 -1 unnamed_device 24.3 MiB 0.39 1568 9951 2486 6481 984 63.0 MiB 0.11 0.00 7.68511 -161.036 -7.68511 7.68511 0.66 0.00100872 0.000930402 0.051268 0.047034 30 4458 47 6.55708e+06 385760 526063. 1820.29 2.00 0.225171 0.196663 21886 126133 -1 3448 19 1948 5673 274739 64317 6.90984 6.90984 -157.869 -6.90984 0 0 666494. 2306.21 0.27 0.12 0.12 -1 -1 0.27 0.0458795 0.0416057 223 223 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_006.v common 9.78 vpr 62.69 MiB 0.02 6696 -1 -1 12 0.39 -1 -1 32996 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 299 331 1 232 98 17 17 289 -1 unnamed_device 24.0 MiB 0.52 1500 9773 2280 6498 995 62.7 MiB 0.09 0.00 7.53766 -152.093 -7.53766 7.53766 0.88 0.000741047 0.000679644 0.03636 0.0334053 30 3954 18 6.55708e+06 409870 526063. 1820.29 5.86 0.282425 0.246992 21886 126133 -1 3240 17 1389 4326 217849 49977 6.91184 6.91184 -151.165 -6.91184 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.0362522 0.0320017 209 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_007.v common 4.97 vpr 62.21 MiB 0.02 6524 -1 -1 12 0.23 -1 -1 32636 -1 -1 27 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63704 27 32 210 242 1 167 86 17 17 289 -1 unnamed_device 23.7 MiB 0.30 1024 5945 1385 4013 547 62.2 MiB 0.06 0.00 7.15274 -128.455 -7.15274 7.15274 0.70 0.000699098 0.000648289 0.0245467 0.0227899 28 2896 19 6.55708e+06 325485 500653. 1732.36 1.65 0.122932 0.109476 21310 115450 -1 2456 16 1037 2938 177969 40955 6.13918 6.13918 -123.782 -6.13918 0 0 612192. 2118.31 0.25 0.07 0.11 -1 -1 0.25 0.0251498 0.0224664 136 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_008.v common 9.43 vpr 62.55 MiB 0.02 6828 -1 -1 11 0.23 -1 -1 32956 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64048 31 32 264 296 1 199 91 17 17 289 -1 unnamed_device 23.9 MiB 0.30 1220 9679 2547 5973 1159 62.5 MiB 0.09 0.00 6.45772 -132.139 -6.45772 6.45772 0.67 0.000607131 0.000556068 0.0349607 0.0321037 28 3565 29 6.55708e+06 337540 500653. 1732.36 6.22 0.279017 0.241412 21310 115450 -1 2921 22 1308 4077 257838 59984 5.46178 5.46178 -130.352 -5.46178 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.036965 0.0331737 175 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_009.v common 6.57 vpr 62.26 MiB 0.02 6556 -1 -1 12 0.21 -1 -1 32672 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63752 31 32 234 266 1 190 88 17 17 289 -1 unnamed_device 23.7 MiB 0.38 1146 12373 3633 6385 2355 62.3 MiB 0.09 0.00 7.00181 -148.703 -7.00181 7.00181 0.87 0.000584719 0.000534458 0.0401279 0.0367506 30 2905 15 6.55708e+06 301375 526063. 1820.29 3.01 0.179248 0.156961 21886 126133 -1 2363 14 997 2551 135483 31519 6.21818 6.21818 -141.69 -6.21818 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0227171 0.0205312 145 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_010.v common 4.34 vpr 62.25 MiB 0.02 6608 -1 -1 13 0.24 -1 -1 33140 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 253 285 1 194 89 17 17 289 -1 unnamed_device 23.6 MiB 0.39 1098 10979 3065 6306 1608 62.3 MiB 0.11 0.00 7.23855 -159.771 -7.23855 7.23855 0.67 0.000829636 0.000769146 0.0498776 0.0461134 30 3034 26 6.55708e+06 301375 526063. 1820.29 1.12 0.157597 0.138623 21886 126133 -1 2486 17 1202 3260 160850 38687 6.18864 6.18864 -152.069 -6.18864 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0301936 0.0265434 162 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_011.v common 5.70 vpr 62.11 MiB 0.05 6668 -1 -1 12 0.17 -1 -1 32940 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63600 30 32 217 249 1 169 84 17 17 289 -1 unnamed_device 23.6 MiB 0.41 1073 8868 2309 4974 1585 62.1 MiB 0.08 0.00 7.23424 -146.32 -7.23424 7.23424 0.66 0.000705344 0.000653167 0.0377243 0.0349994 30 2556 17 6.55708e+06 265210 526063. 1820.29 2.46 0.193889 0.168587 21886 126133 -1 2189 16 903 2325 118861 27975 6.35004 6.35004 -138.787 -6.35004 0 0 666494. 2306.21 0.31 0.06 0.13 -1 -1 0.31 0.0257539 0.0230222 132 129 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_012.v common 10.01 vpr 62.19 MiB 0.02 6636 -1 -1 12 0.18 -1 -1 33108 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 227 259 1 176 85 17 17 289 -1 unnamed_device 23.7 MiB 0.23 971 12175 3572 6038 2565 62.2 MiB 0.10 0.00 6.75009 -143.946 -6.75009 6.75009 0.89 0.000566627 0.000519329 0.038387 0.0351018 30 2975 49 6.55708e+06 253155 526063. 1820.29 6.59 0.249092 0.218074 21886 126133 -1 2221 15 1011 2870 144454 34790 5.82038 5.82038 -140.7 -5.82038 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.0227509 0.0205659 138 133 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_013.v common 6.41 vpr 62.92 MiB 0.02 6732 -1 -1 13 0.38 -1 -1 33012 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 306 338 1 235 94 17 17 289 -1 unnamed_device 24.2 MiB 0.30 1456 5419 862 4216 341 62.9 MiB 0.07 0.00 7.90792 -162.801 -7.90792 7.90792 0.66 0.000984636 0.000910364 0.0266528 0.0245806 30 3809 26 6.55708e+06 361650 526063. 1820.29 3.21 0.278656 0.240982 21886 126133 -1 3060 17 1430 4239 208151 48885 6.8405 6.8405 -151.948 -6.8405 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0372336 0.0328764 212 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_014.v common 4.75 vpr 62.88 MiB 0.02 6704 -1 -1 14 0.41 -1 -1 33508 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 302 334 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.54 1487 7653 1685 5037 931 62.9 MiB 0.09 0.00 8.67599 -179.222 -8.67599 8.67599 0.66 0.000962585 0.000890249 0.0397289 0.0368077 30 3773 20 6.55708e+06 349595 526063. 1820.29 1.18 0.165369 0.145458 21886 126133 -1 3079 18 1487 4228 203303 48407 7.37842 7.37842 -169.663 -7.37842 0 0 666494. 2306.21 0.26 0.09 0.12 -1 -1 0.26 0.0353033 0.0317069 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_015.v common 4.29 vpr 62.24 MiB 0.02 6548 -1 -1 11 0.18 -1 -1 32604 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63732 29 32 238 270 1 186 90 17 17 289 -1 unnamed_device 23.6 MiB 0.25 1095 15366 4454 8585 2327 62.2 MiB 0.12 0.00 6.42654 -129.9 -6.42654 6.42654 0.67 0.000741885 0.000686532 0.0590379 0.0545536 28 3367 24 6.55708e+06 349595 500653. 1732.36 1.27 0.157819 0.140068 21310 115450 -1 2742 18 1188 3212 204290 46320 5.72972 5.72972 -128.638 -5.72972 0 0 612192. 2118.31 0.24 0.08 0.11 -1 -1 0.24 0.0254641 0.0227182 160 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_016.v common 7.69 vpr 62.85 MiB 0.02 6696 -1 -1 12 0.35 -1 -1 33124 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 306 338 1 235 98 17 17 289 -1 unnamed_device 24.1 MiB 0.51 1497 7523 1547 5261 715 62.8 MiB 0.09 0.00 7.78498 -159.33 -7.78498 7.78498 0.82 0.0010884 0.000997329 0.038887 0.0359432 38 3579 23 6.55708e+06 409870 638502. 2209.35 3.98 0.307484 0.267306 23326 155178 -1 3086 16 1349 4271 217974 49147 6.8013 6.8013 -148.418 -6.8013 0 0 851065. 2944.86 0.22 0.10 0.13 -1 -1 0.22 0.0363065 0.0321603 213 212 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_017.v common 5.78 vpr 62.96 MiB 0.02 6796 -1 -1 13 0.34 -1 -1 32972 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 311 343 1 239 96 17 17 289 -1 unnamed_device 24.2 MiB 0.36 1448 9075 2050 5697 1328 63.0 MiB 0.09 0.00 8.28129 -168.719 -8.28129 8.28129 0.91 0.000792759 0.000726481 0.0375146 0.0344401 30 3798 28 6.55708e+06 385760 526063. 1820.29 1.86 0.177126 0.155054 21886 126133 -1 2884 18 1330 3984 181686 43984 7.0769 7.0769 -158.369 -7.0769 0 0 666494. 2306.21 0.25 0.09 0.12 -1 -1 0.25 0.0385423 0.033933 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_018.v common 5.13 vpr 62.25 MiB 0.02 6520 -1 -1 12 0.20 -1 -1 32760 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63748 32 32 230 262 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.61 1089 8402 1864 6112 426 62.3 MiB 0.08 0.00 7.26292 -158.375 -7.26292 7.26292 0.91 0.000607169 0.000556874 0.0298897 0.027472 28 3019 19 6.55708e+06 265210 500653. 1732.36 1.27 0.13037 0.114971 21310 115450 -1 2410 15 991 2840 167410 39818 6.0847 6.0847 -147.852 -6.0847 0 0 612192. 2118.31 0.24 0.06 0.12 -1 -1 0.24 0.0229019 0.0205448 139 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_019.v common 4.32 vpr 61.56 MiB 0.02 6500 -1 -1 10 0.13 -1 -1 32504 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63036 30 32 176 208 1 139 82 17 17 289 -1 unnamed_device 23.1 MiB 0.13 786 5244 1130 3909 205 61.6 MiB 0.06 0.00 5.1986 -117.15 -5.1986 5.1986 0.87 0.00045361 0.000416199 0.0247282 0.0226355 30 2126 24 6.55708e+06 241100 526063. 1820.29 1.23 0.0923192 0.0814234 21886 126133 -1 1800 21 731 1861 102932 24553 4.7502 4.7502 -115.743 -4.7502 0 0 666494. 2306.21 0.26 0.05 0.12 -1 -1 0.26 0.021196 0.0186832 96 88 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_020.v common 4.78 vpr 62.09 MiB 0.02 6620 -1 -1 13 0.18 -1 -1 32904 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63576 31 32 226 258 1 176 87 17 17 289 -1 unnamed_device 23.5 MiB 0.30 1123 5079 946 3658 475 62.1 MiB 0.05 0.00 7.44701 -156.373 -7.44701 7.44701 0.95 0.000572746 0.000525471 0.0186039 0.0170842 26 2997 27 6.55708e+06 289320 477104. 1650.88 1.38 0.116379 0.10322 21022 109990 -1 2511 19 1015 2597 192368 58669 6.45598 6.45598 -149.341 -6.45598 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.029394 0.0264789 139 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_021.v common 6.08 vpr 62.88 MiB 0.02 6668 -1 -1 13 0.37 -1 -1 33016 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 32 32 302 334 1 228 95 17 17 289 -1 unnamed_device 24.2 MiB 0.44 1494 10031 2522 6626 883 62.9 MiB 0.11 0.00 7.77584 -154.394 -7.77584 7.77584 0.74 0.000978912 0.00090422 0.0491676 0.0453943 28 4200 31 6.55708e+06 373705 500653. 1732.36 2.22 0.196027 0.172547 21310 115450 -1 3465 22 2099 6743 373809 86131 7.04932 7.04932 -158.055 -7.04932 0 0 612192. 2118.31 0.24 0.13 0.11 -1 -1 0.24 0.0400361 0.0356854 208 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_022.v common 8.18 vpr 62.70 MiB 0.02 6764 -1 -1 13 0.37 -1 -1 33336 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 299 331 1 237 98 17 17 289 -1 unnamed_device 24.1 MiB 0.56 1626 7973 1601 5735 637 62.7 MiB 0.08 0.00 7.9648 -163.763 -7.9648 7.9648 0.95 0.000754396 0.000693582 0.0316633 0.0291385 34 4255 45 6.55708e+06 409870 585099. 2024.56 4.11 0.302414 0.271284 22462 138074 -1 3684 21 1695 5509 334262 73707 7.0809 7.0809 -157.699 -7.0809 0 0 742403. 2568.87 0.21 0.13 0.12 -1 -1 0.21 0.042996 0.0377673 207 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_023.v common 4.43 vpr 61.50 MiB 0.04 6392 -1 -1 9 0.09 -1 -1 32484 -1 -1 21 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62972 26 32 149 181 1 119 79 17 17 289 -1 unnamed_device 22.8 MiB 0.35 710 10557 2762 6888 907 61.5 MiB 0.08 0.00 4.66154 -94.5374 -4.66154 4.66154 0.79 0.000498436 0.000462605 0.033451 0.0310797 28 1936 16 6.55708e+06 253155 500653. 1732.36 1.06 0.0867005 0.077459 21310 115450 -1 1676 15 681 1739 109610 25500 4.00648 4.00648 -91.6833 -4.00648 0 0 612192. 2118.31 0.25 0.05 0.11 -1 -1 0.25 0.0157558 0.0140748 83 73 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_024.v common 5.71 vpr 62.88 MiB 0.02 6756 -1 -1 13 0.30 -1 -1 33036 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 304 336 1 228 94 17 17 289 -1 unnamed_device 24.1 MiB 0.23 1530 4780 793 3650 337 62.9 MiB 0.05 0.00 7.84695 -156.636 -7.84695 7.84695 0.87 0.000759466 0.000688274 0.0217324 0.0199997 26 4393 49 6.55708e+06 361650 477104. 1650.88 2.24 0.194362 0.17032 21022 109990 -1 3432 21 1625 4458 274959 62368 7.1227 7.1227 -158.634 -7.1227 0 0 585099. 2024.56 0.18 0.11 0.09 -1 -1 0.18 0.0423303 0.0371347 211 210 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_025.v common 4.22 vpr 61.56 MiB 0.02 6312 -1 -1 8 0.11 -1 -1 31348 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63036 32 32 155 187 1 113 81 17 17 289 -1 unnamed_device 23.0 MiB 0.25 436 8831 2193 4716 1922 61.6 MiB 0.05 0.00 4.66158 -87.3613 -4.66158 4.66158 0.70 0.000390584 0.000358096 0.0212288 0.0195133 30 1374 37 6.55708e+06 204935 526063. 1820.29 1.38 0.0912056 0.08031 21886 126133 -1 1041 13 558 1070 51330 16054 3.84606 3.84606 -87.0064 -3.84606 0 0 666494. 2306.21 0.28 0.04 0.12 -1 -1 0.28 0.0141719 0.0127259 77 61 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_026.v common 4.93 vpr 62.37 MiB 0.02 6804 -1 -1 15 0.30 -1 -1 33480 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63864 32 32 253 285 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1127 8999 2110 5455 1434 62.4 MiB 0.09 0.00 8.78748 -168.447 -8.78748 8.78748 0.78 0.00083837 0.000776963 0.04085 0.0378836 30 3036 31 6.55708e+06 301375 526063. 1820.29 1.43 0.16259 0.142747 21886 126133 -1 2468 19 1238 3712 182654 43019 7.41762 7.41762 -157.962 -7.41762 0 0 666494. 2306.21 0.29 0.10 0.12 -1 -1 0.29 0.0394474 0.0352256 161 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_027.v common 9.44 vpr 62.97 MiB 0.02 6724 -1 -1 12 0.31 -1 -1 32956 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 309 341 1 232 95 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1426 7871 1871 5355 645 63.0 MiB 0.09 0.00 6.97141 -150.212 -6.97141 6.97141 0.85 0.000836612 0.000767198 0.0370399 0.0338643 30 3857 27 6.55708e+06 373705 526063. 1820.29 5.90 0.300233 0.261784 21886 126133 -1 3289 24 1509 4913 363335 114600 6.49978 6.49978 -148.902 -6.49978 0 0 666494. 2306.21 0.19 0.15 0.11 -1 -1 0.19 0.0492822 0.043166 218 215 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_028.v common 11.69 vpr 62.55 MiB 0.02 6772 -1 -1 13 0.35 -1 -1 33024 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 289 321 1 218 92 17 17 289 -1 unnamed_device 24.0 MiB 0.40 1403 8993 2077 6178 738 62.6 MiB 0.09 0.00 7.73601 -160.617 -7.73601 7.73601 0.88 0.000702214 0.00064176 0.0358866 0.0327578 28 4651 45 6.55708e+06 337540 500653. 1732.36 7.83 0.342196 0.299185 21310 115450 -1 3356 23 1751 5602 357802 85809 6.70098 6.70098 -155.586 -6.70098 0 0 612192. 2118.31 0.28 0.14 0.12 -1 -1 0.28 0.0444388 0.0394612 196 195 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_029.v common 3.91 vpr 62.22 MiB 0.02 6628 -1 -1 12 0.19 -1 -1 32512 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63712 32 32 239 271 1 188 86 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1093 9158 2327 6239 592 62.2 MiB 0.09 0.00 6.471 -143.803 -6.471 6.471 0.68 0.000753538 0.000692583 0.0395355 0.0364877 28 2964 24 6.55708e+06 265210 500653. 1732.36 0.92 0.136008 0.119712 21310 115450 -1 2490 13 1001 2606 145112 34455 5.71546 5.71546 -138.377 -5.71546 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0246988 0.0223172 146 145 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_030.v common 6.29 vpr 62.02 MiB 0.03 6576 -1 -1 11 0.16 -1 -1 32956 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63504 30 32 213 245 1 162 85 17 17 289 -1 unnamed_device 23.6 MiB 0.22 1045 6781 1469 4387 925 62.0 MiB 0.06 0.00 6.28146 -130.954 -6.28146 6.28146 0.92 0.000529173 0.00048623 0.0223889 0.0205977 28 2810 21 6.55708e+06 277265 500653. 1732.36 2.92 0.180177 0.157386 21310 115450 -1 2358 16 931 2540 151869 34888 5.56972 5.56972 -129.329 -5.56972 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0247803 0.0217594 128 125 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_031.v common 4.79 vpr 62.06 MiB 0.02 6512 -1 -1 11 0.20 -1 -1 32904 -1 -1 27 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63552 28 32 221 253 1 183 87 17 17 289 -1 unnamed_device 23.5 MiB 0.29 1079 8535 1915 5707 913 62.1 MiB 0.08 0.00 6.57292 -128.193 -6.57292 6.57292 0.86 0.000714989 0.000661868 0.0345846 0.0319993 30 2815 48 6.55708e+06 325485 526063. 1820.29 1.37 0.15781 0.137896 21886 126133 -1 2388 26 1218 3712 282058 98410 5.74138 5.74138 -125.741 -5.74138 0 0 666494. 2306.21 0.19 0.12 0.11 -1 -1 0.19 0.0371198 0.0323802 142 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_032.v common 8.21 vpr 62.54 MiB 0.02 6456 -1 -1 12 0.24 -1 -1 32752 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64044 32 32 273 305 1 210 92 17 17 289 -1 unnamed_device 24.0 MiB 0.23 1327 6716 1263 5020 433 62.5 MiB 0.06 0.00 7.20375 -160.021 -7.20375 7.20375 0.87 0.000671102 0.000615396 0.025309 0.023243 24 4055 47 6.55708e+06 337540 448715. 1552.65 4.78 0.284991 0.246326 20734 103517 -1 3164 19 1561 4150 235587 55879 6.31084 6.31084 -157.015 -6.31084 0 0 554710. 1919.41 0.24 0.09 0.10 -1 -1 0.24 0.032086 0.0286569 180 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_033.v common 4.39 vpr 62.29 MiB 0.02 6528 -1 -1 11 0.21 -1 -1 32944 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63788 31 32 238 270 1 182 86 17 17 289 -1 unnamed_device 23.7 MiB 0.31 1072 4244 722 3315 207 62.3 MiB 0.05 0.00 6.41894 -136.128 -6.41894 6.41894 0.72 0.000771523 0.000712108 0.0207395 0.0192073 28 3177 23 6.55708e+06 277265 500653. 1732.36 1.16 0.118529 0.103688 21310 115450 -1 2428 20 1273 3459 169209 42649 6.01132 6.01132 -138.308 -6.01132 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0328812 0.0289641 147 147 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_034.v common 3.83 vpr 62.30 MiB 0.04 6532 -1 -1 10 0.15 -1 -1 32876 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63792 29 32 221 253 1 165 85 17 17 289 -1 unnamed_device 23.8 MiB 0.20 967 12733 4051 6442 2240 62.3 MiB 0.11 0.00 6.08886 -123.876 -6.08886 6.08886 0.66 0.00071905 0.000665362 0.0516746 0.0477335 32 2317 16 6.55708e+06 289320 554710. 1919.41 0.81 0.126485 0.112568 22174 131602 -1 2018 14 788 2246 118177 28478 5.39806 5.39806 -115.84 -5.39806 0 0 701300. 2426.64 0.23 0.06 0.13 -1 -1 0.23 0.0237633 0.0210255 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_035.v common 6.35 vpr 63.03 MiB 0.03 6964 -1 -1 13 0.42 -1 -1 33420 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 333 365 1 249 97 17 17 289 -1 unnamed_device 24.5 MiB 0.39 1621 5869 1104 4212 553 63.0 MiB 0.07 0.00 7.46683 -155.207 -7.46683 7.46683 0.78 0.00114634 0.00104571 0.0303055 0.0278938 30 3995 44 6.55708e+06 397815 526063. 1820.29 2.66 0.212242 0.189066 21886 126133 -1 3247 17 1408 4754 234861 53197 6.6419 6.6419 -150.395 -6.6419 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0378594 0.0341964 239 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_036.v common 11.18 vpr 62.88 MiB 0.03 6792 -1 -1 13 0.37 -1 -1 33236 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 297 329 1 227 93 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1508 8283 1888 5355 1040 62.9 MiB 0.09 0.00 8.09706 -175.077 -8.09706 8.09706 0.66 0.000982104 0.000900193 0.0425914 0.0393736 32 4121 30 6.55708e+06 349595 554710. 1919.41 7.64 0.381709 0.332004 22174 131602 -1 3421 19 1488 4829 280270 62937 7.2409 7.2409 -169.708 -7.2409 0 0 701300. 2426.64 0.30 0.12 0.13 -1 -1 0.30 0.0437919 0.0394415 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_037.v common 8.61 vpr 62.27 MiB 0.02 6600 -1 -1 12 0.19 -1 -1 32968 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63768 31 32 234 266 1 181 88 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1096 12568 3446 6926 2196 62.3 MiB 0.10 0.00 6.66868 -144.132 -6.66868 6.66868 0.89 0.000572697 0.000523363 0.0405335 0.0370291 32 2944 42 6.55708e+06 301375 554710. 1919.41 5.24 0.269137 0.23359 22174 131602 -1 2428 17 992 2751 159839 36408 5.82238 5.82238 -139.137 -5.82238 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0277739 0.0244672 150 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_038.v common 9.30 vpr 63.05 MiB 0.02 6724 -1 -1 12 0.27 -1 -1 33368 -1 -1 34 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 310 342 1 234 97 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1489 8977 2020 5913 1044 63.1 MiB 0.09 0.00 8.10558 -165.766 -8.10558 8.10558 0.67 0.000987737 0.000914037 0.0434683 0.0402083 32 3826 39 6.55708e+06 409870 554710. 1919.41 5.99 0.445358 0.39058 22174 131602 -1 3336 16 1391 4171 245382 56415 7.1965 7.1965 -162.519 -7.1965 0 0 701300. 2426.64 0.29 0.10 0.13 -1 -1 0.29 0.0364559 0.0331037 219 219 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_039.v common 5.47 vpr 62.74 MiB 0.03 6796 -1 -1 14 0.39 -1 -1 33276 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64248 31 32 284 316 1 221 91 17 17 289 -1 unnamed_device 24.2 MiB 0.26 1460 6211 1289 4295 627 62.7 MiB 0.08 0.00 8.35283 -161.679 -8.35283 8.35283 0.71 0.000947946 0.000877306 0.0328648 0.0303887 30 3894 50 6.55708e+06 337540 526063. 1820.29 1.89 0.219393 0.194808 21886 126133 -1 3049 17 1301 3796 180761 41849 7.32956 7.32956 -155.157 -7.32956 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0365567 0.032474 194 193 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_040.v common 5.28 vpr 62.87 MiB 0.03 6824 -1 -1 13 0.26 -1 -1 32988 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 31 32 271 303 1 212 91 17 17 289 -1 unnamed_device 24.4 MiB 0.31 1364 9271 2151 5683 1437 62.9 MiB 0.09 0.00 7.40806 -157.551 -7.40806 7.40806 0.92 0.000710152 0.000646921 0.0367184 0.0334682 30 3656 29 6.55708e+06 337540 526063. 1820.29 1.56 0.158941 0.141262 21886 126133 -1 2977 17 1505 4283 207121 49411 6.45598 6.45598 -150.636 -6.45598 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0329466 0.0297013 181 180 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_041.v common 6.08 vpr 62.68 MiB 0.03 6684 -1 -1 12 0.31 -1 -1 33208 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 280 312 1 211 93 17 17 289 -1 unnamed_device 24.2 MiB 0.46 1374 13743 3666 8130 1947 62.7 MiB 0.13 0.00 6.76701 -143.203 -6.76701 6.76701 0.66 0.000649264 0.000585945 0.062273 0.057463 34 3497 24 6.55708e+06 361650 585099. 2024.56 2.55 0.302456 0.267502 22462 138074 -1 3140 18 1396 4603 290800 74535 5.98178 5.98178 -142.695 -5.98178 0 0 742403. 2568.87 0.29 0.11 0.14 -1 -1 0.29 0.0331898 0.0298105 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_042.v common 4.83 vpr 62.41 MiB 0.02 6796 -1 -1 12 0.24 -1 -1 32956 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63904 32 32 264 296 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.32 1252 8278 1977 5044 1257 62.4 MiB 0.09 0.00 7.19338 -143.847 -7.19338 7.19338 0.93 0.000831079 0.000768916 0.0422067 0.0390152 30 3079 17 6.55708e+06 289320 526063. 1820.29 1.08 0.146068 0.128851 21886 126133 -1 2609 17 1076 3072 145494 34382 6.1631 6.1631 -137.248 -6.1631 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0299591 0.0268963 172 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_043.v common 6.51 vpr 63.04 MiB 0.03 6884 -1 -1 14 0.48 -1 -1 32772 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 339 371 1 259 98 17 17 289 -1 unnamed_device 24.6 MiB 0.42 1757 10673 2583 7118 972 63.0 MiB 0.11 0.00 8.08019 -170.094 -8.08019 8.08019 0.89 0.000839782 0.000769526 0.0444544 0.0407895 36 4618 30 6.55708e+06 409870 612192. 2118.31 2.47 0.229638 0.201419 22750 144809 -1 4012 20 1810 6256 363249 78703 7.1207 7.1207 -161.226 -7.1207 0 0 782063. 2706.10 0.22 0.13 0.12 -1 -1 0.22 0.0465828 0.0412552 245 245 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_044.v common 8.74 vpr 62.38 MiB 0.02 6684 -1 -1 11 0.25 -1 -1 32656 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63872 31 32 246 278 1 188 89 17 17 289 -1 unnamed_device 23.8 MiB 0.26 1212 8009 2047 5116 846 62.4 MiB 0.07 0.00 6.43815 -136.573 -6.43815 6.43815 0.89 0.000550485 0.000502911 0.0275939 0.0252461 28 3434 30 6.55708e+06 313430 500653. 1732.36 5.18 0.275542 0.244191 21310 115450 -1 2856 18 1354 3698 226598 50369 5.81212 5.81212 -137.857 -5.81212 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0310981 0.0279955 160 155 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_045.v common 5.73 vpr 62.65 MiB 0.03 6756 -1 -1 13 0.30 -1 -1 33000 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 268 300 1 203 90 17 17 289 -1 unnamed_device 24.0 MiB 0.46 1339 4512 785 3381 346 62.7 MiB 0.06 0.00 8.23298 -156.44 -8.23298 8.23298 0.91 0.000710024 0.000627905 0.0208789 0.0190876 34 3364 28 6.55708e+06 325485 585099. 2024.56 1.68 0.162867 0.14189 22462 138074 -1 2798 15 1141 3880 220113 49420 7.0835 7.0835 -148.168 -7.0835 0 0 742403. 2568.87 0.23 0.09 0.14 -1 -1 0.23 0.0331812 0.0295489 177 177 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_046.v common 6.18 vpr 63.10 MiB 0.02 6696 -1 -1 12 0.34 -1 -1 33068 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 318 350 1 229 98 17 17 289 -1 unnamed_device 24.6 MiB 0.45 1513 7973 1697 5548 728 63.1 MiB 0.08 0.00 7.05697 -153.444 -7.05697 7.05697 0.93 0.00069837 0.00063989 0.0299628 0.0274382 32 4005 45 6.55708e+06 409870 554710. 1919.41 2.15 0.215237 0.189609 22174 131602 -1 3376 17 1490 5268 288592 65106 6.34038 6.34038 -150.171 -6.34038 0 0 701300. 2426.64 0.25 0.11 0.12 -1 -1 0.25 0.0384413 0.0345876 227 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_047.v common 7.27 vpr 62.59 MiB 0.02 6752 -1 -1 13 0.29 -1 -1 33000 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64088 32 32 273 305 1 205 92 17 17 289 -1 unnamed_device 24.0 MiB 0.22 1286 13340 3362 8056 1922 62.6 MiB 0.12 0.00 7.57452 -156.038 -7.57452 7.57452 0.75 0.000896276 0.000828902 0.0614161 0.0567638 30 3215 45 6.55708e+06 337540 526063. 1820.29 3.78 0.381265 0.332534 21886 126133 -1 2702 19 1340 3908 184431 44601 6.65978 6.65978 -151.282 -6.65978 0 0 666494. 2306.21 0.19 0.09 0.13 -1 -1 0.19 0.0373534 0.0329915 184 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_048.v common 5.01 vpr 62.55 MiB 0.02 6880 -1 -1 13 0.28 -1 -1 32976 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 269 301 1 197 89 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1203 12563 3367 6823 2373 62.6 MiB 0.11 0.00 7.77281 -162.033 -7.77281 7.77281 0.95 0.000685947 0.000628861 0.0476921 0.0435482 30 2961 38 6.55708e+06 301375 526063. 1820.29 1.41 0.179361 0.15982 21886 126133 -1 2447 14 1081 3296 149761 36490 6.6027 6.6027 -148.076 -6.6027 0 0 666494. 2306.21 0.20 0.08 0.11 -1 -1 0.20 0.0315484 0.0282071 175 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_049.v common 8.49 vpr 62.85 MiB 0.02 6648 -1 -1 12 0.32 -1 -1 33028 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 298 330 1 223 95 17 17 289 -1 unnamed_device 24.1 MiB 0.81 1416 10679 2747 6565 1367 62.9 MiB 0.11 0.00 6.86528 -151.049 -6.86528 6.86528 0.70 0.000957217 0.000883536 0.051585 0.0476543 38 3340 21 6.55708e+06 373705 638502. 2209.35 4.26 0.340685 0.301403 23326 155178 -1 2700 16 1069 3956 185182 42466 6.01898 6.01898 -141.834 -6.01898 0 0 851065. 2944.86 0.30 0.08 0.14 -1 -1 0.30 0.0341443 0.0309622 205 204 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_050.v common 6.44 vpr 62.85 MiB 0.02 6752 -1 -1 13 0.27 -1 -1 33076 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 299 331 1 235 93 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1584 11223 2635 7117 1471 62.9 MiB 0.14 0.00 7.96921 -159.229 -7.96921 7.96921 0.86 0.000952381 0.000879849 0.0650264 0.0598177 34 4367 44 6.55708e+06 349595 585099. 2024.56 2.45 0.271891 0.239768 22462 138074 -1 3484 22 1451 4400 324835 90727 7.1201 7.1201 -154.955 -7.1201 0 0 742403. 2568.87 0.30 0.14 0.14 -1 -1 0.30 0.0459147 0.0414597 205 205 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_051.v common 6.00 vpr 62.29 MiB 0.03 6736 -1 -1 14 0.34 -1 -1 33092 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 259 291 1 193 89 17 17 289 -1 unnamed_device 23.9 MiB 0.46 1228 9197 2464 5958 775 62.3 MiB 0.09 0.00 7.91369 -163.421 -7.91369 7.91369 0.88 0.000681496 0.000616365 0.035402 0.0323866 28 3820 47 6.55708e+06 301375 500653. 1732.36 2.10 0.162812 0.143329 21310 115450 -1 2877 19 1441 4649 272941 63290 6.9959 6.9959 -155.848 -6.9959 0 0 612192. 2118.31 0.26 0.12 0.13 -1 -1 0.26 0.037716 0.034026 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_052.v common 6.47 vpr 62.78 MiB 0.02 6720 -1 -1 13 0.36 -1 -1 32976 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 293 325 1 226 94 17 17 289 -1 unnamed_device 24.2 MiB 0.61 1537 7336 1683 5066 587 62.8 MiB 0.05 0.00 8.38432 -170.174 -8.38432 8.38432 0.89 0.000429564 0.000395386 0.0181906 0.0166881 30 3969 38 6.55708e+06 361650 526063. 1820.29 2.51 0.158038 0.138994 21886 126133 -1 3163 16 1446 4156 214013 48953 7.21136 7.21136 -158.492 -7.21136 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0341411 0.0301877 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_053.v common 5.52 vpr 63.04 MiB 0.02 6832 -1 -1 13 0.36 -1 -1 33156 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 311 343 1 231 95 17 17 289 -1 unnamed_device 24.5 MiB 0.28 1531 8951 1993 6087 871 63.0 MiB 0.10 0.00 8.45326 -176.134 -8.45326 8.45326 0.66 0.000971863 0.000896188 0.0447031 0.041194 30 3859 27 6.55708e+06 385760 526063. 1820.29 2.16 0.190202 0.167846 21886 126133 -1 3179 14 1309 4204 206454 47477 7.48636 7.48636 -165.351 -7.48636 0 0 666494. 2306.21 0.29 0.09 0.13 -1 -1 0.29 0.036675 0.0333323 221 220 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_054.v common 11.62 vpr 63.09 MiB 0.02 6708 -1 -1 12 0.39 -1 -1 32892 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64608 32 32 324 356 1 240 96 17 17 289 -1 unnamed_device 24.5 MiB 0.52 1599 7323 1463 5208 652 63.1 MiB 0.09 0.00 7.47193 -159.786 -7.47193 7.47193 0.68 0.00111653 0.00102557 0.039644 0.0366894 32 4374 41 6.55708e+06 385760 554710. 1919.41 7.82 0.418408 0.361237 22174 131602 -1 3521 22 1810 6057 347057 78719 6.8451 6.8451 -155.866 -6.8451 0 0 701300. 2426.64 0.20 0.14 0.12 -1 -1 0.20 0.0473597 0.0415847 231 230 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_055.v common 4.84 vpr 62.35 MiB 0.03 6604 -1 -1 11 0.13 -1 -1 32576 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63844 32 32 216 248 1 165 83 17 17 289 -1 unnamed_device 23.9 MiB 0.25 1043 10883 2916 6057 1910 62.3 MiB 0.09 0.00 5.95009 -133.303 -5.95009 5.95009 0.92 0.000534734 0.000490182 0.0355765 0.0326052 30 2668 32 6.55708e+06 229045 526063. 1820.29 1.37 0.137714 0.122892 21886 126133 -1 2161 17 907 2533 119548 28213 5.21172 5.21172 -128.769 -5.21172 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0255737 0.0224533 127 122 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_056.v common 10.01 vpr 62.37 MiB 0.02 6636 -1 -1 13 0.23 -1 -1 32976 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 245 277 1 195 91 17 17 289 -1 unnamed_device 23.7 MiB 0.57 1281 6211 1217 4524 470 62.4 MiB 0.07 0.00 7.73937 -166.104 -7.73937 7.73937 0.66 0.000801121 0.00074327 0.0285385 0.026465 26 3909 42 6.55708e+06 325485 477104. 1650.88 6.53 0.274039 0.236359 21022 109990 -1 3044 29 1467 4403 429650 161319 6.93938 6.93938 -159.826 -6.93938 0 0 585099. 2024.56 0.25 0.18 0.11 -1 -1 0.25 0.0504945 0.0452863 156 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_057.v common 7.08 vpr 63.02 MiB 0.03 6908 -1 -1 14 0.55 -1 -1 33352 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 361 393 1 263 100 17 17 289 -1 unnamed_device 24.8 MiB 0.48 1818 9380 1999 6471 910 63.0 MiB 0.11 0.00 8.82888 -183.788 -8.82888 8.82888 0.92 0.000889391 0.000814051 0.0416233 0.0380993 30 4907 35 6.55708e+06 433980 526063. 1820.29 2.89 0.212729 0.18796 21886 126133 -1 3812 17 1794 5584 296408 67225 7.76595 7.76595 -174.414 -7.76595 0 0 666494. 2306.21 0.19 0.12 0.10 -1 -1 0.19 0.0449782 0.0398713 267 267 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_058.v common 7.46 vpr 63.15 MiB 0.02 6708 -1 -1 13 0.42 -1 -1 32940 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 318 350 1 241 95 17 17 289 -1 unnamed_device 24.4 MiB 0.56 1477 8735 1981 6002 752 63.2 MiB 0.09 0.00 7.79483 -168.531 -7.79483 7.79483 0.88 0.000746657 0.0006805 0.0359879 0.032693 28 4042 27 6.55708e+06 373705 500653. 1732.36 3.44 0.312385 0.277278 21310 115450 -1 3382 20 1556 4568 239330 57141 6.62964 6.62964 -159.033 -6.62964 0 0 612192. 2118.31 0.19 0.13 0.10 -1 -1 0.19 0.0509805 0.0458239 224 224 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_059.v common 9.57 vpr 62.06 MiB 0.02 6640 -1 -1 11 0.21 -1 -1 32848 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63552 30 32 223 255 1 165 85 17 17 289 -1 unnamed_device 23.6 MiB 0.25 916 9943 3248 5072 1623 62.1 MiB 0.08 0.00 6.47975 -131.851 -6.47975 6.47975 0.73 0.000554779 0.000508153 0.0348316 0.0318704 30 2548 35 6.55708e+06 277265 526063. 1820.29 6.33 0.252893 0.223335 21886 126133 -1 2087 25 1058 3208 255252 96904 5.41998 5.41998 -121.288 -5.41998 0 0 666494. 2306.21 0.27 0.11 0.12 -1 -1 0.27 0.0343202 0.03068 137 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_060.v common 14.04 vpr 63.18 MiB 0.02 6952 -1 -1 15 0.59 -1 -1 33108 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64696 32 32 335 367 1 253 97 17 17 289 -1 unnamed_device 24.6 MiB 0.44 1670 7867 1614 5465 788 63.2 MiB 0.09 0.00 8.70958 -179.837 -8.70958 8.70958 0.83 0.000781164 0.000705748 0.0397697 0.0365974 30 4687 41 6.55708e+06 397815 526063. 1820.29 9.95 0.4496 0.393507 21886 126133 -1 3837 23 1846 6109 424395 131354 7.55569 7.55569 -170.642 -7.55569 0 0 666494. 2306.21 0.26 0.16 0.12 -1 -1 0.26 0.049491 0.0446851 241 241 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_061.v common 6.60 vpr 62.84 MiB 0.02 6692 -1 -1 13 0.40 -1 -1 33252 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 301 333 1 226 93 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1370 12483 3068 7076 2339 62.8 MiB 0.13 0.00 7.72925 -154.988 -7.72925 7.72925 0.84 0.000945389 0.00086799 0.0548099 0.0503535 36 3898 39 6.55708e+06 349595 612192. 2118.31 2.58 0.26782 0.237627 22750 144809 -1 2979 16 1336 3961 222310 51162 7.0417 7.0417 -152.061 -7.0417 0 0 782063. 2706.10 0.32 0.10 0.15 -1 -1 0.32 0.0402228 0.0365211 207 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_062.v common 4.34 vpr 62.15 MiB 0.02 6476 -1 -1 11 0.17 -1 -1 32824 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63644 32 32 238 270 1 183 88 17 17 289 -1 unnamed_device 23.7 MiB 0.25 1161 6718 1477 4583 658 62.2 MiB 0.06 0.00 6.62468 -135.028 -6.62468 6.62468 0.73 0.000758617 0.000703336 0.0278763 0.0257875 28 3224 29 6.55708e+06 289320 500653. 1732.36 1.21 0.130506 0.114404 21310 115450 -1 2610 18 1056 3027 177862 40695 6.21958 6.21958 -137.968 -6.21958 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0285975 0.0251472 149 144 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_063.v common 5.28 vpr 62.68 MiB 0.03 6892 -1 -1 12 0.38 -1 -1 32988 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 308 340 1 230 95 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1540 8735 2140 5810 785 62.7 MiB 0.09 0.00 7.17512 -150.872 -7.17512 7.17512 0.66 0.000975443 0.00090101 0.043319 0.0399691 32 3616 21 6.55708e+06 373705 554710. 1919.41 1.85 0.229167 0.200788 22174 131602 -1 3278 31 1632 5255 368795 98923 6.59244 6.59244 -148.78 -6.59244 0 0 701300. 2426.64 0.29 0.17 0.13 -1 -1 0.29 0.0622153 0.0557033 217 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_064.v common 4.27 vpr 62.41 MiB 0.02 6404 -1 -1 12 0.24 -1 -1 32596 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 253 285 1 192 90 17 17 289 -1 unnamed_device 23.8 MiB 0.30 1252 5517 962 4221 334 62.4 MiB 0.06 0.00 7.41221 -152.744 -7.41221 7.41221 0.67 0.000843247 0.000779059 0.026185 0.0242844 30 2953 20 6.55708e+06 313430 526063. 1820.29 1.13 0.129475 0.1129 21886 126133 -1 2560 17 1155 3176 147387 35186 6.3623 6.3623 -144.661 -6.3623 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.030758 0.0271145 164 159 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_065.v common 6.36 vpr 62.24 MiB 0.02 6668 -1 -1 12 0.24 -1 -1 32856 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63732 30 32 227 259 1 163 83 17 17 289 -1 unnamed_device 23.7 MiB 0.27 998 6383 1524 4361 498 62.2 MiB 0.06 0.00 7.15324 -144.822 -7.15324 7.15324 0.92 0.000592313 0.000543969 0.0244869 0.0224917 26 2638 31 6.55708e+06 253155 477104. 1650.88 2.81 0.202879 0.17648 21022 109990 -1 2245 15 888 2468 135947 31745 6.39184 6.39184 -141.124 -6.39184 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0256832 0.0232401 139 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_066.v common 5.77 vpr 62.60 MiB 0.03 6844 -1 -1 12 0.30 -1 -1 32984 -1 -1 32 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 29 32 292 324 1 222 93 17 17 289 -1 unnamed_device 24.0 MiB 0.34 1315 14583 4048 7926 2609 62.6 MiB 0.14 0.00 7.005 -132.757 -7.005 7.005 0.68 0.000951502 0.000879146 0.0710876 0.0656083 30 3666 44 6.55708e+06 385760 526063. 1820.29 2.22 0.230207 0.202258 21886 126133 -1 2881 17 1439 4398 224548 51939 6.35204 6.35204 -127.614 -6.35204 0 0 666494. 2306.21 0.19 0.09 0.11 -1 -1 0.19 0.0354489 0.0312477 208 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_067.v common 13.64 vpr 63.15 MiB 0.02 6688 -1 -1 14 0.41 -1 -1 33080 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64668 32 32 316 348 1 253 96 17 17 289 -1 unnamed_device 24.6 MiB 0.57 1622 11046 2782 7202 1062 63.2 MiB 0.12 0.00 8.27143 -173.321 -8.27143 8.27143 0.87 0.0010258 0.000928287 0.0558794 0.0514976 28 5110 42 6.55708e+06 385760 500653. 1732.36 9.60 0.384084 0.340189 21310 115450 -1 4026 26 2938 8594 624310 162439 7.37276 7.37276 -171.705 -7.37276 0 0 612192. 2118.31 0.24 0.17 0.11 -1 -1 0.24 0.0399521 0.0354976 227 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_068.v common 5.20 vpr 62.62 MiB 0.03 6768 -1 -1 12 0.23 -1 -1 32980 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 286 318 1 212 91 17 17 289 -1 unnamed_device 24.1 MiB 0.40 1318 5191 912 3744 535 62.6 MiB 0.06 0.00 7.44045 -154.388 -7.44045 7.44045 0.73 0.000926617 0.000856328 0.0273749 0.025323 28 3759 24 6.55708e+06 325485 500653. 1732.36 1.54 0.154011 0.134484 21310 115450 -1 3218 17 1367 4062 239728 54020 6.49978 6.49978 -153.798 -6.49978 0 0 612192. 2118.31 0.26 0.11 0.11 -1 -1 0.26 0.0390441 0.0349193 192 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_069.v common 7.48 vpr 62.31 MiB 0.03 6580 -1 -1 12 0.19 -1 -1 32992 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 221 253 1 168 87 17 17 289 -1 unnamed_device 23.9 MiB 0.43 1100 6615 1512 4600 503 62.3 MiB 0.07 0.00 6.69922 -140.427 -6.69922 6.69922 0.67 0.000706493 0.000654716 0.0274528 0.0254139 26 3022 41 6.55708e+06 277265 477104. 1650.88 4.21 0.278065 0.244313 21022 109990 -1 2502 27 1051 3171 434797 191921 5.85958 5.85958 -138.403 -5.85958 0 0 585099. 2024.56 0.26 0.17 0.11 -1 -1 0.26 0.0393946 0.0353528 133 127 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_070.v common 5.84 vpr 62.34 MiB 0.02 6640 -1 -1 12 0.27 -1 -1 32560 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 31 32 261 293 1 199 88 17 17 289 -1 unnamed_device 23.7 MiB 0.28 1148 11398 2849 6739 1810 62.3 MiB 0.09 0.00 7.39043 -143.264 -7.39043 7.39043 0.88 0.000640627 0.000587724 0.0411908 0.03784 28 3595 50 6.55708e+06 301375 500653. 1732.36 2.21 0.176663 0.156346 21310 115450 -1 2755 32 1252 3493 323833 121555 6.4015 6.4015 -140.62 -6.4015 0 0 612192. 2118.31 0.24 0.14 0.11 -1 -1 0.24 0.043292 0.0380817 170 170 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_071.v common 7.15 vpr 62.60 MiB 0.02 6664 -1 -1 11 0.25 -1 -1 33024 -1 -1 28 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 277 309 1 208 90 17 17 289 -1 unnamed_device 24.0 MiB 0.25 1267 6723 1289 4852 582 62.6 MiB 0.06 0.00 6.0378 -125.718 -6.0378 6.0378 0.81 0.000561518 0.000512655 0.0224099 0.0204788 30 3303 29 6.55708e+06 337540 526063. 1820.29 3.73 0.283338 0.245069 21886 126133 -1 2752 18 1377 4766 236509 54440 5.39806 5.39806 -125.688 -5.39806 0 0 666494. 2306.21 0.27 0.09 0.12 -1 -1 0.27 0.0336482 0.0302708 189 189 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_072.v common 5.27 vpr 62.35 MiB 0.04 6784 -1 -1 11 0.26 -1 -1 32848 -1 -1 28 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63848 28 32 251 283 1 194 88 17 17 289 -1 unnamed_device 23.9 MiB 0.38 1153 14128 4158 7800 2170 62.4 MiB 0.13 0.00 6.59995 -118.466 -6.59995 6.59995 0.67 0.000830412 0.000768833 0.0637177 0.0589681 36 2948 46 6.55708e+06 337540 612192. 2118.31 1.88 0.228942 0.200223 22750 144809 -1 2627 16 1112 3512 193944 44469 5.62118 5.62118 -113.054 -5.62118 0 0 782063. 2706.10 0.30 0.08 0.14 -1 -1 0.30 0.0278296 0.0249899 171 169 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_073.v common 6.58 vpr 62.34 MiB 0.03 6492 -1 -1 13 0.19 -1 -1 32980 -1 -1 25 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 30 32 223 255 1 182 87 17 17 289 -1 unnamed_device 23.8 MiB 0.41 1112 5463 1180 3669 614 62.3 MiB 0.05 0.00 7.87624 -151.634 -7.87624 7.87624 0.65 0.000718702 0.000665394 0.0231552 0.0214485 28 3046 31 6.55708e+06 301375 500653. 1732.36 3.47 0.209561 0.181562 21310 115450 -1 2609 21 1128 3062 187945 43629 7.0005 7.0005 -148.421 -7.0005 0 0 612192. 2118.31 0.21 0.09 0.11 -1 -1 0.21 0.0314249 0.027579 142 135 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_074.v common 6.87 vpr 62.63 MiB 0.02 6628 -1 -1 12 0.25 -1 -1 32712 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 269 301 1 211 91 17 17 289 -1 unnamed_device 23.9 MiB 0.38 1245 6211 1266 4515 430 62.6 MiB 0.04 0.00 7.2362 -155.292 -7.2362 7.2362 0.73 0.000395356 0.000363837 0.0152373 0.0140594 26 3674 46 6.55708e+06 325485 477104. 1650.88 3.55 0.293165 0.251777 21022 109990 -1 2964 18 1347 3558 196194 46717 6.38924 6.38924 -151.009 -6.38924 0 0 585099. 2024.56 0.18 0.09 0.10 -1 -1 0.18 0.0340786 0.029977 180 175 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_075.v common 5.58 vpr 62.81 MiB 0.03 6724 -1 -1 13 0.33 -1 -1 33032 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 31 32 283 315 1 212 93 17 17 289 -1 unnamed_device 24.2 MiB 0.42 1187 15843 5382 8046 2415 62.8 MiB 0.14 0.00 7.69912 -151.004 -7.69912 7.69912 0.92 0.000734823 0.000674623 0.060801 0.0557114 32 3431 25 6.55708e+06 361650 554710. 1919.41 1.65 0.185471 0.165301 22174 131602 -1 2720 19 1503 4498 236109 58759 6.9215 6.9215 -144.709 -6.9215 0 0 701300. 2426.64 0.21 0.10 0.12 -1 -1 0.21 0.0377394 0.0332275 195 192 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_076.v common 5.34 vpr 62.63 MiB 0.03 6764 -1 -1 14 0.35 -1 -1 33004 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 308 340 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.34 1371 16295 4299 9326 2670 62.6 MiB 0.14 0.00 7.90558 -162.398 -7.90558 7.90558 0.87 0.000781455 0.000716633 0.0630696 0.0577838 30 3631 37 6.55708e+06 373705 526063. 1820.29 1.53 0.193287 0.171192 21886 126133 -1 2871 18 1304 3991 183379 43990 6.9979 6.9979 -154.335 -6.9979 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.035142 0.0315649 215 214 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_077.v common 5.52 vpr 62.77 MiB 0.02 6644 -1 -1 14 0.33 -1 -1 32992 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 32 32 277 309 1 210 91 17 17 289 -1 unnamed_device 24.1 MiB 0.49 1364 9067 2106 6307 654 62.8 MiB 0.09 0.00 7.8859 -150.917 -7.8859 7.8859 0.75 0.000914854 0.000844548 0.0439098 0.040541 34 3493 31 6.55708e+06 325485 585099. 2024.56 1.70 0.205798 0.179578 22462 138074 -1 2972 15 1162 3703 196111 44474 6.6399 6.6399 -143.752 -6.6399 0 0 742403. 2568.87 0.28 0.08 0.14 -1 -1 0.28 0.0295431 0.0266694 183 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_078.v common 9.80 vpr 62.62 MiB 0.02 6720 -1 -1 13 0.44 -1 -1 33660 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64120 32 32 288 320 1 218 91 17 17 289 -1 unnamed_device 24.1 MiB 0.46 1350 6211 1219 4577 415 62.6 MiB 0.07 0.00 7.98147 -162.621 -7.98147 7.98147 0.87 0.000726474 0.000665678 0.0272671 0.0248459 30 3544 19 6.55708e+06 325485 526063. 1820.29 5.91 0.383866 0.338474 21886 126133 -1 2907 21 1428 4124 201197 47655 7.02484 7.02484 -151.512 -7.02484 0 0 666494. 2306.21 0.19 0.10 0.14 -1 -1 0.19 0.0416763 0.0366415 195 194 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_079.v common 6.45 vpr 62.29 MiB 0.04 6532 -1 -1 13 0.22 -1 -1 32920 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63784 30 32 230 262 1 183 86 17 17 289 -1 unnamed_device 23.7 MiB 0.31 1092 10670 2647 6412 1611 62.3 MiB 0.08 0.00 7.9674 -161.443 -7.9674 7.9674 0.87 0.000580574 0.000531592 0.0358971 0.0329684 34 2503 20 6.55708e+06 289320 585099. 2024.56 2.98 0.210129 0.182863 22462 138074 -1 2270 14 957 2412 126915 30263 6.7973 6.7973 -149.824 -6.7973 0 0 742403. 2568.87 0.22 0.06 0.12 -1 -1 0.22 0.024279 0.0216169 146 142 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_080.v common 5.39 vpr 62.81 MiB 0.03 6808 -1 -1 13 0.57 -1 -1 32956 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 30 32 294 326 1 230 93 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1304 7653 1748 5033 872 62.8 MiB 0.08 0.00 8.34953 -161.953 -8.34953 8.34953 0.65 0.00097507 0.000903475 0.0399235 0.0369471 30 3707 24 6.55708e+06 373705 526063. 1820.29 1.98 0.171108 0.150377 21886 126133 -1 3068 19 1860 5367 251317 61007 7.0417 7.0417 -151.716 -7.0417 0 0 666494. 2306.21 0.19 0.11 0.11 -1 -1 0.19 0.0421896 0.0372519 208 206 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_081.v common 6.73 vpr 62.72 MiB 0.02 6852 -1 -1 14 0.38 -1 -1 31640 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 276 308 1 206 94 17 17 289 -1 unnamed_device 24.1 MiB 0.38 1332 7336 1480 5450 406 62.7 MiB 0.08 0.00 7.42283 -159.831 -7.42283 7.42283 0.93 0.000897096 0.00083026 0.0354402 0.0327266 28 3899 48 6.55708e+06 361650 500653. 1732.36 2.83 0.194357 0.170751 21310 115450 -1 3267 21 1759 5785 348912 76857 6.69898 6.69898 -158.028 -6.69898 0 0 612192. 2118.31 0.21 0.14 0.11 -1 -1 0.21 0.0443922 0.0392235 184 182 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_082.v common 4.99 vpr 62.80 MiB 0.02 6808 -1 -1 12 0.32 -1 -1 33080 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 293 325 1 227 95 17 17 289 -1 unnamed_device 24.2 MiB 0.29 1420 6575 1256 4964 355 62.8 MiB 0.07 0.00 8.28906 -160.635 -8.28906 8.28906 0.67 0.000932113 0.000861217 0.0321235 0.0297571 34 3617 19 6.55708e+06 385760 585099. 2024.56 1.71 0.22314 0.193765 22462 138074 -1 3068 17 1239 3797 205140 47316 7.0769 7.0769 -151.129 -7.0769 0 0 742403. 2568.87 0.28 0.08 0.14 -1 -1 0.28 0.0324985 0.0291806 203 202 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_083.v common 5.12 vpr 62.39 MiB 0.03 6844 -1 -1 13 0.26 -1 -1 32900 -1 -1 28 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 30 32 273 305 1 212 90 17 17 289 -1 unnamed_device 23.9 MiB 0.31 1315 6522 1420 4675 427 62.4 MiB 0.08 0.00 7.42898 -137.517 -7.42898 7.42898 0.73 0.000875545 0.000810336 0.0331952 0.0307322 30 3356 18 6.55708e+06 337540 526063. 1820.29 1.53 0.140873 0.123325 21886 126133 -1 2695 17 1177 3415 163878 38950 6.63224 6.63224 -133.24 -6.63224 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0312489 0.0281427 186 185 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_084.v common 6.63 vpr 62.76 MiB 0.02 6672 -1 -1 14 0.36 -1 -1 33156 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64268 32 32 310 342 1 239 96 17 17 289 -1 unnamed_device 24.3 MiB 0.45 1483 8199 1652 5918 629 62.8 MiB 0.11 0.00 8.85275 -170.114 -8.85275 8.85275 0.70 0.00122272 0.00111423 0.0430742 0.039518 30 3783 29 6.55708e+06 385760 526063. 1820.29 3.16 0.300333 0.261077 21886 126133 -1 3279 18 1483 4379 205570 48858 7.66062 7.66062 -161.915 -7.66062 0 0 666494. 2306.21 0.19 0.10 0.11 -1 -1 0.19 0.039878 0.035561 220 216 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_085.v common 9.56 vpr 62.62 MiB 0.03 6852 -1 -1 11 0.37 -1 -1 33128 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 29 32 259 291 1 190 90 17 17 289 -1 unnamed_device 24.2 MiB 0.41 1183 4512 917 3199 396 62.6 MiB 0.05 0.00 6.95549 -133.856 -6.95549 6.95549 0.72 0.000679037 0.000622217 0.0214576 0.0197628 26 3676 33 6.55708e+06 349595 477104. 1650.88 5.66 0.301888 0.260267 21022 109990 -1 2955 64 2540 9239 1312417 631461 6.14118 6.14118 -132.622 -6.14118 0 0 585099. 2024.56 0.26 0.51 0.11 -1 -1 0.26 0.0965642 0.0851673 174 174 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_086.v common 4.90 vpr 62.00 MiB 0.02 6448 -1 -1 13 0.21 -1 -1 32892 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63484 32 32 225 257 1 185 87 17 17 289 -1 unnamed_device 23.5 MiB 0.27 1098 6999 1531 4700 768 62.0 MiB 0.06 0.00 7.85907 -167.622 -7.85907 7.85907 0.93 0.000582936 0.00053503 0.0244609 0.0225 26 3090 24 6.55708e+06 277265 477104. 1650.88 1.51 0.123514 0.109381 21022 109990 -1 2443 17 1116 2637 142515 35057 6.6399 6.6399 -154.969 -6.6399 0 0 585099. 2024.56 0.18 0.07 0.10 -1 -1 0.18 0.0270582 0.0238966 142 131 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_087.v common 5.41 vpr 62.63 MiB 0.03 6824 -1 -1 14 0.31 -1 -1 33092 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64132 32 32 273 305 1 209 91 17 17 289 -1 unnamed_device 24.1 MiB 0.28 1308 7027 1497 5027 503 62.6 MiB 0.07 0.00 8.02087 -160.438 -8.02087 8.02087 0.86 0.000666707 0.000600789 0.0267968 0.0245102 28 3777 37 6.55708e+06 325485 500653. 1732.36 1.83 0.17965 0.160603 21310 115450 -1 3079 21 1509 4294 246277 56570 7.0815 7.0815 -155.243 -7.0815 0 0 612192. 2118.31 0.26 0.10 0.12 -1 -1 0.26 0.0363604 0.0325794 183 179 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_088.v common 5.18 vpr 62.96 MiB 0.02 6820 -1 -1 15 0.47 -1 -1 33384 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 32 32 322 354 1 251 96 17 17 289 -1 unnamed_device 24.4 MiB 0.63 1579 7323 1484 5148 691 63.0 MiB 0.08 0.00 9.31018 -193.267 -9.31018 9.31018 0.68 0.00104199 0.00096615 0.0380403 0.035171 28 4373 38 6.55708e+06 385760 500653. 1732.36 1.40 0.19678 0.172109 21310 115450 -1 3655 18 1616 4600 254243 59861 8.01461 8.01461 -181.55 -8.01461 0 0 612192. 2118.31 0.23 0.11 0.11 -1 -1 0.23 0.041846 0.0371692 228 228 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_089.v common 5.29 vpr 62.12 MiB 0.02 6624 -1 -1 11 0.21 -1 -1 32892 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63608 32 32 218 250 1 164 86 17 17 289 -1 unnamed_device 23.6 MiB 0.69 1088 7079 1594 5001 484 62.1 MiB 0.07 0.00 6.82798 -137.917 -6.82798 6.82798 0.68 0.000694048 0.000643045 0.0293119 0.0271064 36 2338 15 6.55708e+06 265210 612192. 2118.31 1.69 0.150267 0.13226 22750 144809 -1 2124 13 792 2392 123017 29370 5.83204 5.83204 -131.265 -5.83204 0 0 782063. 2706.10 0.33 0.06 0.16 -1 -1 0.33 0.0246932 0.0223677 126 124 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_090.v common 6.34 vpr 62.39 MiB 0.03 6536 -1 -1 12 0.21 -1 -1 32736 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 31 32 244 276 1 192 89 17 17 289 -1 unnamed_device 23.8 MiB 0.37 1155 8207 1978 5141 1088 62.4 MiB 0.08 0.00 7.38032 -154.384 -7.38032 7.38032 0.83 0.000784803 0.00072689 0.0345424 0.0318802 30 2941 37 6.55708e+06 313430 526063. 1820.29 2.87 0.215556 0.187903 21886 126133 -1 2525 16 1150 3357 156777 37163 6.47024 6.47024 -147.605 -6.47024 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0267462 0.0240963 157 153 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_091.v common 7.53 vpr 62.95 MiB 0.02 6668 -1 -1 12 0.31 -1 -1 33288 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 301 333 1 231 95 17 17 289 -1 unnamed_device 24.2 MiB 0.44 1424 7439 1505 5396 538 62.9 MiB 0.09 0.00 7.41461 -164.576 -7.41461 7.41461 0.93 0.000779519 0.000709214 0.0327674 0.0300707 44 3147 20 6.55708e+06 373705 742403. 2568.87 3.43 0.320717 0.278425 24478 177802 -1 2937 17 1303 3927 190245 44726 6.6047 6.6047 -155.004 -6.6047 0 0 937218. 3242.97 0.35 0.08 0.18 -1 -1 0.35 0.0345942 0.0311598 209 207 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_092.v common 13.47 vpr 62.77 MiB 0.02 6712 -1 -1 12 0.31 -1 -1 33008 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 278 310 1 215 92 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1429 8579 2186 5781 612 62.8 MiB 0.09 0.00 7.42022 -157.463 -7.42022 7.42022 0.67 0.00089777 0.000831583 0.0408576 0.0378137 28 4493 49 6.55708e+06 337540 500653. 1732.36 9.98 0.308369 0.268643 21310 115450 -1 3455 19 1402 4223 258751 59115 6.62964 6.62964 -154.646 -6.62964 0 0 612192. 2118.31 0.27 0.10 0.12 -1 -1 0.27 0.0379616 0.0335455 186 184 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_093.v common 11.78 vpr 63.09 MiB 0.03 6788 -1 -1 14 0.59 -1 -1 33540 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 333 365 1 247 99 17 17 289 -1 unnamed_device 24.4 MiB 0.35 1656 14691 3485 9017 2189 63.1 MiB 0.15 0.00 8.55829 -177.042 -8.55829 8.55829 0.69 0.00107645 0.000993344 0.0740039 0.0683838 32 4885 47 6.55708e+06 421925 554710. 1919.41 7.62 0.482195 0.419837 22174 131602 -1 3866 29 1875 5761 442381 141287 7.40796 7.40796 -167.356 -7.40796 0 0 701300. 2426.64 0.28 0.19 0.13 -1 -1 0.28 0.0662041 0.0582816 241 239 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_094.v common 5.38 vpr 62.52 MiB 0.03 6724 -1 -1 11 0.23 -1 -1 32684 -1 -1 27 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 30 32 261 293 1 202 89 17 17 289 -1 unnamed_device 24.1 MiB 0.46 1210 13157 4017 6643 2497 62.5 MiB 0.11 0.00 6.86503 -131.636 -6.86503 6.86503 0.93 0.000667814 0.000613004 0.048215 0.0442944 30 3211 36 6.55708e+06 325485 526063. 1820.29 1.74 0.184447 0.164938 21886 126133 -1 2592 16 1207 3568 175162 41377 6.03524 6.03524 -127.253 -6.03524 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0323687 0.029354 176 173 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_095.v common 4.13 vpr 62.13 MiB 0.02 6512 -1 -1 11 0.17 -1 -1 32756 -1 -1 25 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63624 27 32 217 249 1 157 84 17 17 289 -1 unnamed_device 23.6 MiB 0.26 858 9234 2019 6554 661 62.1 MiB 0.08 0.00 6.39815 -115.858 -6.39815 6.39815 0.66 0.000632758 0.000578429 0.0381995 0.0352904 28 2617 23 6.55708e+06 301375 500653. 1732.36 0.96 0.114623 0.101329 21310 115450 -1 2106 21 1175 3463 174142 42548 5.56912 5.56912 -115.421 -5.56912 0 0 612192. 2118.31 0.26 0.08 0.12 -1 -1 0.26 0.0318111 0.0284938 138 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_096.v common 7.06 vpr 63.21 MiB 0.03 6964 -1 -1 13 0.46 -1 -1 33080 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 373 405 1 274 104 17 17 289 -1 unnamed_device 24.9 MiB 0.32 1915 8888 1943 6342 603 63.2 MiB 0.10 0.00 7.96961 -161.89 -7.96961 7.96961 0.87 0.000924288 0.000847246 0.0392371 0.0360037 36 4979 22 6.55708e+06 482200 612192. 2118.31 3.02 0.284677 0.248487 22750 144809 -1 4162 18 1813 6242 340521 77037 6.90984 6.90984 -152.832 -6.90984 0 0 782063. 2706.10 0.32 0.13 0.14 -1 -1 0.32 0.0488469 0.0442648 280 279 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_097.v common 5.13 vpr 62.64 MiB 0.02 6712 -1 -1 14 0.35 -1 -1 33600 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 269 301 1 201 89 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1307 6821 1398 4713 710 62.6 MiB 0.08 0.00 8.63003 -171.716 -8.63003 8.63003 0.67 0.000876065 0.000809846 0.0353013 0.0326474 28 3714 37 6.55708e+06 313430 500653. 1732.36 1.76 0.164564 0.144506 21310 115450 -1 3012 18 1157 3284 194711 44483 7.69016 7.69016 -162.632 -7.69016 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0332927 0.0300468 178 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_098.v common 6.44 vpr 62.19 MiB 0.02 6536 -1 -1 12 0.20 -1 -1 32508 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63680 32 32 228 260 1 185 91 17 17 289 -1 unnamed_device 23.6 MiB 0.46 1197 8251 1803 5271 1177 62.2 MiB 0.08 0.00 7.37817 -162.484 -7.37817 7.37817 0.66 0.000752611 0.000696842 0.0331001 0.0306485 32 2944 21 6.55708e+06 325485 554710. 1919.41 2.90 0.255173 0.220629 22174 131602 -1 2599 30 1027 2988 369878 174400 6.61598 6.61598 -157.668 -6.61598 0 0 701300. 2426.64 0.27 0.15 0.13 -1 -1 0.27 0.038834 0.0343675 144 134 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_099.v common 5.21 vpr 62.56 MiB 0.02 6676 -1 -1 13 0.38 -1 -1 33184 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 265 297 1 201 89 17 17 289 -1 unnamed_device 24.1 MiB 0.48 1296 6623 1420 4442 761 62.6 MiB 0.08 0.00 7.83929 -154.667 -7.83929 7.83929 0.70 0.00089856 0.000831981 0.0340808 0.0314927 30 3458 27 6.55708e+06 301375 526063. 1820.29 1.49 0.158811 0.1393 21886 126133 -1 2834 16 1230 3612 182845 42395 6.7621 6.7621 -149.574 -6.7621 0 0 666494. 2306.21 0.26 0.08 0.12 -1 -1 0.26 0.0290532 0.026163 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_100.v common 5.60 vpr 63.10 MiB 0.03 6868 -1 -1 13 0.40 -1 -1 33672 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 325 357 1 256 98 17 17 289 -1 unnamed_device 24.5 MiB 0.40 1675 5723 977 4473 273 63.1 MiB 0.07 0.00 7.72485 -162.113 -7.72485 7.72485 0.72 0.00103974 0.00096116 0.0305888 0.0283117 30 4421 42 6.55708e+06 421925 526063. 1820.29 2.02 0.200294 0.174859 21886 126133 -1 3443 17 1712 5211 254254 59406 6.6399 6.6399 -153.637 -6.6399 0 0 666494. 2306.21 0.19 0.11 0.10 -1 -1 0.19 0.0412926 0.0367512 235 234 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_101.v common 5.49 vpr 62.80 MiB 0.02 6688 -1 -1 11 0.29 -1 -1 33140 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 30 32 287 319 1 210 94 17 17 289 -1 unnamed_device 24.3 MiB 0.47 1363 8827 2077 5986 764 62.8 MiB 0.08 0.00 7.0834 -142.912 -7.0834 7.0834 0.85 0.000714466 0.000655293 0.0343915 0.0315436 30 3732 37 6.55708e+06 385760 526063. 1820.29 1.68 0.156791 0.137739 21886 126133 -1 3008 17 1260 4216 214091 48757 6.23184 6.23184 -139.409 -6.23184 0 0 666494. 2306.21 0.26 0.09 0.12 -1 -1 0.26 0.0324391 0.0291254 199 199 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_102.v common 6.28 vpr 62.71 MiB 0.03 6696 -1 -1 15 0.34 -1 -1 33192 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 297 329 1 230 93 17 17 289 -1 unnamed_device 24.0 MiB 0.37 1473 9543 2499 5737 1307 62.7 MiB 0.10 0.00 9.02492 -182.614 -9.02492 9.02492 0.87 0.000743828 0.00068202 0.038811 0.0355331 36 3795 28 6.55708e+06 349595 612192. 2118.31 2.33 0.250345 0.217169 22750 144809 -1 3278 33 1500 4641 393082 130276 7.80835 7.80835 -173.72 -7.80835 0 0 782063. 2706.10 0.21 0.17 0.14 -1 -1 0.21 0.0598428 0.0522704 203 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_103.v common 5.53 vpr 62.92 MiB 0.02 6656 -1 -1 13 0.34 -1 -1 33164 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 311 343 1 238 96 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1528 11922 3138 7505 1279 62.9 MiB 0.12 0.00 8.01701 -168.403 -8.01701 8.01701 0.65 0.00100826 0.000932058 0.0587326 0.054229 32 3767 24 6.55708e+06 385760 554710. 1919.41 1.86 0.231222 0.204735 22174 131602 -1 3417 19 1727 5422 300739 67688 7.09316 7.09316 -161.398 -7.09316 0 0 701300. 2426.64 0.36 0.15 0.12 -1 -1 0.36 0.051731 0.0459226 217 217 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_104.v common 4.76 vpr 62.29 MiB 0.02 6632 -1 -1 12 0.26 -1 -1 32640 -1 -1 29 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63784 29 32 236 268 1 192 90 17 17 289 -1 unnamed_device 23.7 MiB 0.43 1144 6321 1459 4287 575 62.3 MiB 0.06 0.00 6.98904 -150.776 -6.98904 6.98904 0.66 0.000753249 0.000697562 0.0263708 0.0244079 30 2863 42 6.55708e+06 349595 526063. 1820.29 1.35 0.144531 0.126687 21886 126133 -1 2340 16 1097 2746 125880 30697 6.25938 6.25938 -142.04 -6.25938 0 0 666494. 2306.21 0.29 0.07 0.13 -1 -1 0.29 0.0279425 0.0251067 159 151 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_105.v common 4.72 vpr 62.10 MiB 0.02 6568 -1 -1 11 0.21 -1 -1 32644 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 32 32 231 263 1 179 86 17 17 289 -1 unnamed_device 23.6 MiB 0.38 1041 8402 1813 6153 436 62.1 MiB 0.07 0.00 6.97021 -142.93 -6.97021 6.97021 0.70 0.000570829 0.000524183 0.0285921 0.0262328 30 2905 24 6.55708e+06 265210 526063. 1820.29 1.52 0.126405 0.111281 21886 126133 -1 2264 17 1036 2912 133804 32948 5.86158 5.86158 -135.772 -5.86158 0 0 666494. 2306.21 0.29 0.07 0.14 -1 -1 0.29 0.0263069 0.0237005 138 137 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_106.v common 5.85 vpr 62.79 MiB 0.04 6828 -1 -1 13 0.31 -1 -1 32932 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 31 32 294 326 1 224 94 17 17 289 -1 unnamed_device 24.1 MiB 0.43 1528 7975 1701 5466 808 62.8 MiB 0.11 0.00 8.19329 -167.366 -8.19329 8.19329 0.95 0.00095578 0.000884847 0.0443741 0.0406857 28 4186 30 6.55708e+06 373705 500653. 1732.36 1.82 0.191471 0.168175 21310 115450 -1 3463 20 1718 5385 311756 71041 7.38344 7.38344 -163.478 -7.38344 0 0 612192. 2118.31 0.19 0.12 0.11 -1 -1 0.19 0.0406243 0.0356821 204 203 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_107.v common 4.03 vpr 62.09 MiB 0.02 6544 -1 -1 10 0.22 -1 -1 33152 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63576 29 32 221 253 1 166 85 17 17 289 -1 unnamed_device 23.6 MiB 0.28 1030 5107 1053 3581 473 62.1 MiB 0.05 0.00 6.08471 -123.999 -6.08471 6.08471 0.65 0.000707542 0.000655061 0.0231355 0.0214324 26 2943 36 6.55708e+06 289320 477104. 1650.88 1.10 0.131774 0.114751 21022 109990 -1 2285 16 941 2753 162078 37768 5.45152 5.45152 -122.911 -5.45152 0 0 585099. 2024.56 0.24 0.07 0.10 -1 -1 0.24 0.0256006 0.0230773 138 136 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_108.v common 6.71 vpr 62.41 MiB 0.03 6476 -1 -1 14 0.25 -1 -1 33000 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63908 32 32 240 272 1 178 88 17 17 289 -1 unnamed_device 23.8 MiB 0.55 1019 11203 3089 5915 2199 62.4 MiB 0.10 0.00 7.69221 -156.392 -7.69221 7.69221 0.68 0.00075799 0.000699676 0.0465991 0.0430512 30 2699 27 6.55708e+06 289320 526063. 1820.29 3.04 0.251773 0.219523 21886 126133 -1 2161 15 974 2754 125622 30953 6.5589 6.5589 -143.622 -6.5589 0 0 666494. 2306.21 0.27 0.06 0.12 -1 -1 0.27 0.025987 0.0235732 149 146 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_109.v common 9.85 vpr 62.69 MiB 0.02 6676 -1 -1 12 0.40 -1 -1 33220 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 31 32 292 324 1 211 92 17 17 289 -1 unnamed_device 24.1 MiB 0.37 1351 11891 3061 6959 1871 62.7 MiB 0.11 0.00 7.58423 -159.03 -7.58423 7.58423 0.87 0.000720511 0.00065918 0.0467492 0.0426852 28 4132 39 6.55708e+06 349595 500653. 1732.36 6.05 0.337656 0.295615 21310 115450 -1 3187 19 1503 4700 274037 63018 6.53898 6.53898 -154.76 -6.53898 0 0 612192. 2118.31 0.24 0.10 0.10 -1 -1 0.24 0.0367113 0.0330326 201 201 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_110.v common 4.53 vpr 62.04 MiB 0.02 6568 -1 -1 12 0.19 -1 -1 32648 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63524 31 32 229 261 1 182 86 17 17 289 -1 unnamed_device 23.5 MiB 0.33 1079 5567 1026 4331 210 62.0 MiB 0.06 0.00 6.95154 -149.121 -6.95154 6.95154 0.70 0.000720198 0.000666747 0.0239231 0.0221609 28 3196 39 6.55708e+06 277265 500653. 1732.36 1.28 0.135639 0.118306 21310 115450 -1 2652 14 1012 2559 159567 37663 6.22018 6.22018 -145.527 -6.22018 0 0 612192. 2118.31 0.24 0.07 0.11 -1 -1 0.24 0.0239842 0.0212846 141 138 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_111.v common 6.20 vpr 62.47 MiB 0.02 6776 -1 -1 12 0.19 -1 -1 32968 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63968 32 32 282 314 1 205 91 17 17 289 -1 unnamed_device 24.0 MiB 0.31 1263 7843 1830 5405 608 62.5 MiB 0.08 0.00 7.086 -151.926 -7.086 7.086 0.67 0.000711317 0.000653415 0.0379598 0.035096 30 3209 27 6.55708e+06 325485 526063. 1820.29 3.14 0.265002 0.230163 21886 126133 -1 2595 18 1140 4053 187688 44107 6.03324 6.03324 -142.064 -6.03324 0 0 666494. 2306.21 0.20 0.09 0.11 -1 -1 0.20 0.0369175 0.0324686 188 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_112.v common 6.36 vpr 62.71 MiB 0.03 6784 -1 -1 13 0.35 -1 -1 33092 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 269 301 1 216 92 17 17 289 -1 unnamed_device 24.1 MiB 0.33 1349 6509 1390 4237 882 62.7 MiB 0.06 0.00 7.60996 -160.091 -7.60996 7.60996 0.87 0.000693646 0.00063704 0.0255291 0.0235016 28 4414 40 6.55708e+06 349595 500653. 1732.36 2.65 0.1527 0.133589 21310 115450 -1 3310 26 1461 4256 345581 102087 6.5197 6.5197 -156.251 -6.5197 0 0 612192. 2118.31 0.21 0.14 0.11 -1 -1 0.21 0.0455553 0.0396868 179 178 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_113.v common 4.79 vpr 62.28 MiB 0.04 6488 -1 -1 11 0.22 -1 -1 32668 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63772 32 32 237 269 1 184 91 17 17 289 -1 unnamed_device 23.7 MiB 0.29 1256 8251 2031 5471 749 62.3 MiB 0.07 0.00 6.67834 -143.715 -6.67834 6.67834 0.87 0.000587176 0.000538362 0.0270243 0.0247906 28 3519 20 6.55708e+06 325485 500653. 1732.36 1.26 0.118682 0.104184 21310 115450 -1 2989 19 1095 3390 202328 46680 5.87584 5.87584 -141.947 -5.87584 0 0 612192. 2118.31 0.24 0.10 0.11 -1 -1 0.24 0.0313606 0.0281097 148 143 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_114.v common 4.72 vpr 62.30 MiB 0.02 6548 -1 -1 13 0.25 -1 -1 32668 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63792 32 32 259 291 1 202 91 17 17 289 -1 unnamed_device 23.6 MiB 0.26 1339 8047 1963 5261 823 62.3 MiB 0.08 0.00 7.72555 -161.807 -7.72555 7.72555 0.67 0.000826522 0.000764198 0.0365831 0.0338682 28 3784 40 6.55708e+06 325485 500653. 1732.36 1.73 0.168363 0.147362 21310 115450 -1 3021 20 1321 3572 215242 49319 7.0397 7.0397 -160.728 -7.0397 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0357888 0.0313013 167 165 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_115.v common 13.45 vpr 62.67 MiB 0.02 6764 -1 -1 13 0.33 -1 -1 33116 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64172 32 32 277 309 1 220 91 17 17 289 -1 unnamed_device 24.0 MiB 0.24 1276 15187 4382 8407 2398 62.7 MiB 0.14 0.00 7.99583 -160.474 -7.99583 7.99583 0.66 0.000697716 0.000638862 0.0636649 0.0585929 32 3814 47 6.55708e+06 325485 554710. 1919.41 10.03 0.412701 0.36096 22174 131602 -1 3033 22 1440 4131 312904 97766 7.09316 7.09316 -155.969 -7.09316 0 0 701300. 2426.64 0.26 0.13 0.13 -1 -1 0.26 0.0430088 0.0379394 184 183 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_116.v common 4.66 vpr 62.34 MiB 0.03 6788 -1 -1 11 0.23 -1 -1 33148 -1 -1 28 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63836 29 32 245 277 1 189 89 17 17 289 -1 unnamed_device 23.6 MiB 0.30 1142 12761 3414 7382 1965 62.3 MiB 0.11 0.00 6.37111 -124.414 -6.37111 6.37111 0.67 0.000816816 0.000756134 0.0525242 0.0483885 34 2855 25 6.55708e+06 337540 585099. 2024.56 1.56 0.186265 0.163185 22462 138074 -1 2515 17 1029 3192 182618 41335 5.85132 5.85132 -121.54 -5.85132 0 0 742403. 2568.87 0.21 0.08 0.12 -1 -1 0.21 0.0297475 0.026158 162 160 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_117.v common 5.41 vpr 62.94 MiB 0.03 6752 -1 -1 14 0.38 -1 -1 33600 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 316 348 1 250 96 17 17 289 -1 unnamed_device 24.4 MiB 0.49 1569 9951 2260 6812 879 62.9 MiB 0.11 0.00 8.3634 -177.338 -8.3634 8.3634 0.70 0.00103272 0.000955248 0.0510166 0.0471105 30 4355 28 6.55708e+06 385760 526063. 1820.29 1.54 0.194352 0.170662 21886 126133 -1 3455 18 1687 4974 233475 55515 7.34382 7.34382 -169.849 -7.34382 0 0 666494. 2306.21 0.26 0.10 0.13 -1 -1 0.26 0.0405638 0.0358235 225 222 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_118.v common 8.22 vpr 62.20 MiB 0.03 6568 -1 -1 12 0.17 -1 -1 32672 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63692 31 32 230 262 1 186 91 17 17 289 -1 unnamed_device 23.6 MiB 0.40 1144 6619 1429 4488 702 62.2 MiB 0.06 0.00 6.81857 -143.271 -6.81857 6.81857 0.82 0.000584516 0.000535063 0.0215432 0.0197743 30 2913 42 6.55708e+06 337540 526063. 1820.29 4.82 0.294537 0.258801 21886 126133 -1 2285 13 925 2491 124375 29132 6.03324 6.03324 -138.715 -6.03324 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0230354 0.020475 145 139 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_119.v common 4.68 vpr 62.79 MiB 0.04 6712 -1 -1 13 0.28 -1 -1 33148 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64300 32 32 282 314 1 213 91 17 17 289 -1 unnamed_device 24.1 MiB 0.34 1396 7843 1736 5120 987 62.8 MiB 0.08 0.00 7.69421 -153.973 -7.69421 7.69421 0.66 0.00090627 0.000834538 0.0371088 0.0341593 28 3887 31 6.55708e+06 325485 500653. 1732.36 1.49 0.169842 0.14865 21310 115450 -1 3039 18 1354 4104 230140 52404 6.79364 6.79364 -150.55 -6.79364 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0368955 0.0326098 189 188 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_120.v common 5.45 vpr 62.21 MiB 0.04 6528 -1 -1 13 0.20 -1 -1 32908 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 32 32 235 267 1 180 89 17 17 289 -1 unnamed_device 23.7 MiB 0.47 1076 10583 2933 6087 1563 62.2 MiB 0.09 0.00 7.44215 -162.135 -7.44215 7.44215 0.89 0.000582423 0.000535563 0.0348751 0.0320211 28 3521 33 6.55708e+06 301375 500653. 1732.36 1.84 0.142064 0.125719 21310 115450 -1 2666 18 1208 3151 179530 42492 6.42904 6.42904 -156.695 -6.42904 0 0 612192. 2118.31 0.19 0.08 0.11 -1 -1 0.19 0.0292787 0.0257834 146 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_121.v common 8.79 vpr 62.50 MiB 0.03 6720 -1 -1 12 0.28 -1 -1 32892 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 265 297 1 193 90 17 17 289 -1 unnamed_device 23.8 MiB 0.38 1148 5517 1034 4096 387 62.5 MiB 0.05 0.00 7.36755 -151.17 -7.36755 7.36755 0.87 0.000678396 0.000621706 0.0222611 0.0204954 28 3481 34 6.55708e+06 313430 500653. 1732.36 5.16 0.243121 0.2107 21310 115450 -1 2755 15 1098 3528 201123 46504 6.5237 6.5237 -144.779 -6.5237 0 0 612192. 2118.31 0.24 0.08 0.11 -1 -1 0.24 0.0279197 0.0251286 172 171 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_122.v common 7.87 vpr 62.95 MiB 0.04 7048 -1 -1 15 0.47 -1 -1 33144 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 32 32 344 376 1 259 98 17 17 289 -1 unnamed_device 24.6 MiB 0.40 1759 9998 2422 6696 880 62.9 MiB 0.12 0.00 8.78932 -180.299 -8.78932 8.78932 0.80 0.00110924 0.00102348 0.0556148 0.051293 38 3980 17 6.55708e+06 409870 638502. 2209.35 3.85 0.36503 0.316083 23326 155178 -1 3495 18 1654 5321 256580 58936 7.66062 7.66062 -166.254 -7.66062 0 0 851065. 2944.86 0.22 0.11 0.13 -1 -1 0.22 0.0443347 0.0391918 250 250 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_123.v common 6.04 vpr 61.65 MiB 0.03 6440 -1 -1 10 0.10 -1 -1 32480 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63128 30 32 173 205 1 127 78 17 17 289 -1 unnamed_device 23.3 MiB 0.27 757 9042 2084 6396 562 61.6 MiB 0.07 0.00 5.22063 -120.025 -5.22063 5.22063 0.67 0.000561228 0.000520654 0.0323745 0.0299357 26 2027 30 6.55708e+06 192880 477104. 1650.88 3.21 0.19674 0.174263 21022 109990 -1 1758 21 709 1708 122885 34200 4.72266 4.72266 -119.959 -4.72266 0 0 585099. 2024.56 0.22 0.07 0.10 -1 -1 0.22 0.0221106 0.0196399 92 85 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_124.v common 4.59 vpr 62.21 MiB 0.03 6456 -1 -1 13 0.18 -1 -1 32920 -1 -1 29 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 30 32 229 261 1 172 91 17 17 289 -1 unnamed_device 23.7 MiB 0.26 1069 6415 1411 4237 767 62.2 MiB 0.08 0.00 7.77311 -151.473 -7.77311 7.77311 0.95 0.000778264 0.000695832 0.0349357 0.0322843 28 2875 25 6.55708e+06 349595 500653. 1732.36 1.04 0.133582 0.117206 21310 115450 -1 2393 14 978 2706 149662 35035 6.8385 6.8385 -148.29 -6.8385 0 0 612192. 2118.31 0.25 0.07 0.12 -1 -1 0.25 0.0235871 0.0213154 150 141 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_125.v common 7.11 vpr 62.48 MiB 0.03 6468 -1 -1 12 0.24 -1 -1 32852 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63980 32 32 261 293 1 201 87 17 17 289 -1 unnamed_device 23.8 MiB 0.35 1241 11223 2642 6703 1878 62.5 MiB 0.09 0.00 6.72746 -150.964 -6.72746 6.72746 0.87 0.000651657 0.000597477 0.0412036 0.0378335 36 2872 18 6.55708e+06 277265 612192. 2118.31 3.47 0.257136 0.22156 22750 144809 -1 2728 27 1220 3426 358384 149340 6.10198 6.10198 -144.57 -6.10198 0 0 782063. 2706.10 0.22 0.15 0.10 -1 -1 0.22 0.043136 0.0374995 167 167 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_126.v common 4.08 vpr 61.88 MiB 0.03 6616 -1 -1 9 0.15 -1 -1 32732 -1 -1 25 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63360 25 32 184 216 1 141 82 17 17 289 -1 unnamed_device 23.3 MiB 0.16 840 9694 2571 5897 1226 61.9 MiB 0.08 0.00 5.60806 -104.508 -5.60806 5.60806 0.75 0.000600193 0.000556021 0.0348632 0.0322971 26 2386 31 6.55708e+06 301375 477104. 1650.88 1.25 0.123456 0.108328 21022 109990 -1 1888 15 706 1999 112376 26429 5.03946 5.03946 -102.217 -5.03946 0 0 585099. 2024.56 0.23 0.05 0.11 -1 -1 0.23 0.0205313 0.0180844 112 111 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_127.v common 6.38 vpr 62.80 MiB 0.02 6852 -1 -1 12 0.28 -1 -1 32856 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64304 32 32 302 334 1 239 98 17 17 289 -1 unnamed_device 24.0 MiB 0.60 1640 5273 863 4118 292 62.8 MiB 0.06 0.00 7.59969 -165.851 -7.59969 7.59969 0.86 0.000737101 0.000658291 0.022363 0.0203888 34 4302 32 6.55708e+06 409870 585099. 2024.56 2.48 0.254416 0.221405 22462 138074 -1 3614 19 1562 4596 265270 59231 6.6811 6.6811 -159.15 -6.6811 0 0 742403. 2568.87 0.31 0.11 0.14 -1 -1 0.31 0.0392172 0.0353965 209 208 -1 -1 -1 -1 +fixed_k6_N8_gate_boost_0.2V_22nm.xml mult_128.v common 7.70 vpr 62.86 MiB 0.04 6672 -1 -1 14 0.34 -1 -1 33096 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 295 327 1 219 92 17 17 289 -1 unnamed_device 24.2 MiB 0.50 1228 13340 3394 7367 2579 62.9 MiB 0.13 0.00 8.33716 -163.889 -8.33716 8.33716 0.67 0.000739767 0.000670854 0.0543407 0.0494867 40 3007 16 6.55708e+06 349595 666494. 2306.21 4.06 0.305009 0.266789 23614 160646 -1 2638 18 1249 3861 199133 48939 7.26282 7.26282 -153.203 -7.26282 0 0 872365. 3018.56 0.24 0.09 0.14 -1 -1 0.24 0.0379136 0.0333744 204 204 -1 -1 -1 -1 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.70 vpr 62.84 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 31104 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 438 350 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.13 929 17268 4565 10218 2485 62.8 MiB 0.17 0.00 4.24756 -141.398 -4.24756 4.24756 0.66 0.000367284 0.000334454 0.06079 0.0558124 32 2495 22 6.64007e+06 452088 554710. 1919.41 0.89 0.158538 0.139738 22834 132086 -1 2038 23 1705 2900 176608 41482 3.62623 3.62623 -134.262 -3.62623 0 0 701300. 2426.64 0.24 0.08 0.11 -1 -1 0.24 0.0350503 0.0306462 153 96 32 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 4.20 vpr 63.08 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30860 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 30 32 409 330 1 186 85 17 17 289 -1 unnamed_device 24.5 MiB 0.21 873 12919 4129 6395 2395 63.1 MiB 0.13 0.00 4.44716 -130.844 -4.44716 4.44716 0.89 0.000607676 0.00055755 0.0440565 0.040576 32 2295 20 6.64007e+06 288834 554710. 1919.41 0.91 0.132605 0.116501 22834 132086 -1 1856 21 1494 2581 157950 36985 3.64743 3.64743 -130.963 -3.64743 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0313006 0.0272606 142 91 30 30 89 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.51 vpr 63.27 MiB 0.02 7072 -1 -1 1 0.04 -1 -1 30556 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 387 309 1 186 99 17 17 289 -1 unnamed_device 24.6 MiB 0.09 1003 9675 2005 7104 566 63.3 MiB 0.10 0.00 3.83457 -129.818 -3.83457 3.83457 0.66 0.000738761 0.000685381 0.0339881 0.0315016 30 2305 22 6.64007e+06 439530 526063. 1820.29 0.82 0.121985 0.106926 22546 126617 -1 2037 18 1150 1877 103344 23596 3.77883 3.77883 -135.437 -3.77883 0 0 666494. 2306.21 0.19 0.07 0.13 -1 -1 0.19 0.027226 0.0238678 142 65 54 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.01 vpr 62.91 MiB 0.03 7020 -1 -1 1 0.04 -1 -1 30648 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 29 32 343 267 1 184 85 17 17 289 -1 unnamed_device 24.0 MiB 0.08 990 11245 3461 6773 1011 62.9 MiB 0.12 0.00 4.46418 -132.921 -4.46418 4.46418 0.88 0.00068925 0.000639447 0.0435076 0.0404541 26 2366 21 6.64007e+06 301392 477104. 1650.88 0.84 0.126424 0.111604 21682 110474 -1 1964 18 1354 2358 135334 32053 3.92922 3.92922 -134.308 -3.92922 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0231028 0.0205768 138 34 87 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.83 vpr 63.23 MiB 0.04 7000 -1 -1 1 0.03 -1 -1 30496 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64748 32 32 376 288 1 195 86 17 17 289 -1 unnamed_device 24.7 MiB 0.11 849 15017 4515 8552 1950 63.2 MiB 0.16 0.00 4.14936 -139.21 -4.14936 4.14936 0.77 0.000737089 0.000684422 0.061696 0.0572745 32 2115 23 6.64007e+06 276276 554710. 1919.41 0.91 0.152437 0.135299 22834 132086 -1 1786 19 1458 2597 144056 36504 3.50723 3.50723 -133.461 -3.50723 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0288122 0.0252666 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.40 vpr 63.08 MiB 0.04 7016 -1 -1 1 0.03 -1 -1 30692 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64592 32 32 402 316 1 199 103 17 17 289 -1 unnamed_device 24.4 MiB 0.12 1024 19142 5848 10342 2952 63.1 MiB 0.17 0.00 3.5603 -122.153 -3.5603 3.5603 0.89 0.000593477 0.000537737 0.0501166 0.0460161 32 2196 19 6.64007e+06 489762 554710. 1919.41 1.02 0.126595 0.112224 22834 132086 -1 1987 19 1256 2102 121885 29421 2.74557 2.74557 -111.939 -2.74557 0 0 701300. 2426.64 0.25 0.07 0.13 -1 -1 0.25 0.029436 0.0257625 156 64 63 32 63 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.54 vpr 62.33 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30812 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63824 27 32 269 226 1 135 79 17 17 289 -1 unnamed_device 23.8 MiB 0.10 722 12923 4015 7171 1737 62.3 MiB 0.11 0.00 3.7987 -103.375 -3.7987 3.7987 0.73 0.000584038 0.000543982 0.0456498 0.0424676 32 1514 20 6.64007e+06 251160 554710. 1919.41 0.84 0.112868 0.0999008 22834 132086 -1 1366 19 797 1385 87150 19846 2.70757 2.70757 -95.4683 -2.70757 0 0 701300. 2426.64 0.20 0.05 0.11 -1 -1 0.20 0.0218946 0.0190584 96 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 3.50 vpr 62.76 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30336 -1 -1 34 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 31 32 317 242 1 185 97 17 17 289 -1 unnamed_device 24.0 MiB 0.08 948 16081 4441 8879 2761 62.8 MiB 0.14 0.00 3.49449 -109.504 -3.49449 3.49449 0.67 0.0006699 0.000622565 0.0514307 0.0477671 28 2255 22 6.64007e+06 426972 500653. 1732.36 0.85 0.132453 0.117447 21970 115934 -1 1924 18 1160 1953 128069 29042 2.65357 2.65357 -103.939 -2.65357 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0247387 0.0216125 140 4 115 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.61 vpr 62.64 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30380 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 31 32 338 292 1 147 80 17 17 289 -1 unnamed_device 23.7 MiB 0.15 706 7820 1805 5417 598 62.6 MiB 0.08 0.00 3.31336 -101.862 -3.31336 3.31336 0.67 0.000652657 0.0006051 0.0318177 0.0295333 28 1873 19 6.64007e+06 213486 500653. 1732.36 0.84 0.100789 0.0887282 21970 115934 -1 1564 18 713 1195 71079 17069 2.73997 2.73997 -100.369 -2.73997 0 0 612192. 2118.31 0.27 0.08 0.12 -1 -1 0.27 0.0376116 0.0328816 106 85 0 0 84 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 3.61 vpr 62.61 MiB 0.02 6768 -1 -1 1 0.03 -1 -1 30496 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 32 32 314 256 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 0.15 890 10756 2975 5928 1853 62.6 MiB 0.10 0.00 3.5061 -124.869 -3.5061 3.5061 0.67 0.000645798 0.000599301 0.0420907 0.0391129 32 1889 18 6.64007e+06 213486 554710. 1919.41 0.84 0.116611 0.102889 22834 132086 -1 1727 20 1190 1870 114613 26263 2.87877 2.87877 -121.993 -2.87877 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0283175 0.0247818 121 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.87 vpr 62.82 MiB 0.04 6964 -1 -1 1 0.03 -1 -1 30384 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 30 32 325 273 1 151 80 17 17 289 -1 unnamed_device 24.2 MiB 0.15 822 14012 5060 7295 1657 62.8 MiB 0.13 0.00 3.4841 -115.834 -3.4841 3.4841 0.83 0.000480866 0.000443138 0.0464241 0.0427149 28 1851 20 6.64007e+06 226044 500653. 1732.36 0.93 0.111501 0.0989338 21970 115934 -1 1530 18 1065 1527 91059 21004 2.82597 2.82597 -110.494 -2.82597 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0208753 0.0183861 110 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.81 vpr 62.71 MiB 0.02 6848 -1 -1 1 0.04 -1 -1 30880 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.10 840 9753 2297 6936 520 62.7 MiB 0.11 0.00 3.52209 -114.564 -3.52209 3.52209 0.89 0.000665075 0.000618017 0.0432065 0.0402681 30 1922 21 6.64007e+06 364182 526063. 1820.29 0.84 0.120882 0.106843 22546 126617 -1 1659 17 887 1552 78328 18945 2.76557 2.76557 -107.813 -2.76557 0 0 666494. 2306.21 0.24 0.06 0.12 -1 -1 0.24 0.0233897 0.0205081 114 65 25 25 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.39 vpr 62.90 MiB 0.03 7056 -1 -1 1 0.04 -1 -1 30456 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 386 305 1 188 98 17 17 289 -1 unnamed_device 24.3 MiB 0.20 893 19448 6133 10048 3267 62.9 MiB 0.18 0.00 3.56129 -122.026 -3.56129 3.56129 0.99 0.000567829 0.000520178 0.0518784 0.0473354 32 2139 22 6.64007e+06 426972 554710. 1919.41 1.11 0.127248 0.112108 22834 132086 -1 1802 19 1397 2431 148924 34098 2.76377 2.76377 -112.946 -2.76377 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.025236 0.0223976 145 58 64 32 57 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 4.36 vpr 63.20 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 30796 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64712 32 32 407 319 1 200 100 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1031 17036 4693 9820 2523 63.2 MiB 0.17 0.00 4.31123 -147.759 -4.31123 4.31123 0.75 0.000787409 0.000728909 0.0604426 0.0560542 26 2931 24 6.64007e+06 452088 477104. 1650.88 1.24 0.161092 0.142703 21682 110474 -1 2389 23 1914 3143 219810 48154 3.77463 3.77463 -146.893 -3.77463 0 0 585099. 2024.56 0.18 0.10 0.10 -1 -1 0.18 0.0354356 0.0309035 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.53 vpr 62.42 MiB 0.02 6832 -1 -1 1 0.03 -1 -1 31000 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63920 29 32 272 228 1 145 80 17 17 289 -1 unnamed_device 23.8 MiB 0.11 800 8852 2481 5509 862 62.4 MiB 0.08 0.00 3.4261 -103.793 -3.4261 3.4261 0.67 0.000494685 0.000457543 0.0271355 0.025116 32 1591 20 6.64007e+06 238602 554710. 1919.41 0.91 0.0934531 0.0818793 22834 132086 -1 1445 21 836 1496 83177 19923 2.63957 2.63957 -98.9193 -2.63957 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0238344 0.0207043 108 29 58 29 24 24 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.75 vpr 63.35 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30568 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 401 315 1 192 86 17 17 289 -1 unnamed_device 24.6 MiB 0.17 1068 13316 3890 7652 1774 63.4 MiB 0.14 0.00 3.5141 -124.724 -3.5141 3.5141 0.67 0.000690509 0.000637794 0.0552343 0.0512317 32 2149 20 6.64007e+06 276276 554710. 1919.41 0.90 0.146512 0.129696 22834 132086 -1 1931 19 1416 2416 140638 32388 3.00917 3.00917 -119.94 -3.00917 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0295422 0.0258519 147 63 64 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.63 vpr 63.03 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30420 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64544 32 32 383 303 1 185 100 17 17 289 -1 unnamed_device 24.4 MiB 0.16 964 16340 5208 8057 3075 63.0 MiB 0.13 0.00 3.6263 -123.14 -3.6263 3.6263 0.71 0.000743212 0.000689801 0.0547949 0.0508325 32 2511 45 6.64007e+06 452088 554710. 1919.41 1.65 0.208061 0.182681 22834 132086 -1 1934 19 1303 1965 151640 36157 3.06417 3.06417 -119.367 -3.06417 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0287076 0.0250996 144 57 64 32 56 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.51 vpr 62.98 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30292 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64496 32 32 339 284 1 162 95 17 17 289 -1 unnamed_device 24.2 MiB 0.12 919 13487 3473 7992 2022 63.0 MiB 0.12 0.00 2.83964 -105.375 -2.83964 2.83964 0.66 0.000681309 0.000632438 0.0447394 0.0415471 26 2134 21 6.64007e+06 389298 477104. 1650.88 0.77 0.125611 0.111018 21682 110474 -1 1797 19 1027 1592 102057 22435 2.27871 2.27871 -99.5061 -2.27871 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0227683 0.0201505 119 65 29 29 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.24 vpr 62.00 MiB 0.03 6696 -1 -1 1 0.02 -1 -1 30432 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63484 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.4 MiB 0.05 670 10835 3352 6011 1472 62.0 MiB 0.08 0.00 2.72344 -89.4054 -2.72344 2.72344 0.66 0.000501433 0.000466051 0.0351513 0.0326763 32 1387 19 6.64007e+06 188370 554710. 1919.41 0.76 0.0929375 0.0819537 22834 132086 -1 1228 14 443 695 46784 10876 1.84191 1.84191 -80.3428 -1.84191 0 0 701300. 2426.64 0.21 0.04 0.11 -1 -1 0.21 0.015838 0.0138501 85 34 24 24 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.75 vpr 62.64 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30724 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 335 280 1 154 80 17 17 289 -1 unnamed_device 24.0 MiB 0.12 727 12120 4439 5930 1751 62.6 MiB 0.11 0.00 4.19115 -121.049 -4.19115 4.19115 0.87 0.000519864 0.000477627 0.0428478 0.0394388 32 1831 18 6.64007e+06 213486 554710. 1919.41 0.80 0.118173 0.104005 22834 132086 -1 1530 19 729 1078 67171 16301 3.35222 3.35222 -117.022 -3.35222 0 0 701300. 2426.64 0.27 0.05 0.13 -1 -1 0.27 0.0221725 0.0196617 113 64 31 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.83 vpr 62.96 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30368 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 366 283 1 192 100 17 17 289 -1 unnamed_device 24.3 MiB 0.10 885 17732 4998 9545 3189 63.0 MiB 0.16 0.00 4.22193 -138.344 -4.22193 4.22193 0.68 0.000724641 0.000672874 0.0572084 0.0530934 32 2211 21 6.64007e+06 452088 554710. 1919.41 0.87 0.145425 0.128847 22834 132086 -1 1941 19 1389 2009 136456 31666 3.78203 3.78203 -137.674 -3.78203 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0281535 0.0246506 147 34 91 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.08 vpr 63.02 MiB 0.02 7260 -1 -1 1 0.04 -1 -1 30940 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 460 375 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 0.22 960 11288 2842 7087 1359 63.0 MiB 0.12 0.00 3.74425 -123.858 -3.74425 3.74425 0.80 0.0006843 0.000630481 0.0344167 0.0316263 30 2640 22 6.64007e+06 477204 526063. 1820.29 1.00 0.131349 0.115188 22546 126617 -1 2064 22 1380 2128 121033 28362 3.46343 3.46343 -126.928 -3.46343 0 0 666494. 2306.21 0.27 0.07 0.12 -1 -1 0.27 0.0315061 0.0277007 150 124 0 0 125 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.33 vpr 61.76 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30828 -1 -1 17 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63244 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.09 395 10503 3120 6151 1232 61.8 MiB 0.07 0.00 2.74064 -71.156 -2.74064 2.74064 0.70 0.000438085 0.000405773 0.0307895 0.0284939 28 1108 12 6.64007e+06 213486 500653. 1732.36 0.73 0.0763258 0.0673533 21970 115934 -1 990 17 565 868 53705 13941 2.06731 2.06731 -69.0227 -2.06731 0 0 612192. 2118.31 0.24 0.04 0.12 -1 -1 0.24 0.0137225 0.0121399 77 30 26 26 22 22 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.74 vpr 63.13 MiB 0.02 6880 -1 -1 1 0.03 -1 -1 30384 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 333 251 1 187 86 17 17 289 -1 unnamed_device 24.3 MiB 0.08 990 12749 4130 6257 2362 63.1 MiB 0.15 0.00 4.45633 -140.507 -4.45633 4.45633 0.65 0.000705839 0.000657889 0.0579732 0.0540905 32 2226 21 6.64007e+06 276276 554710. 1919.41 0.90 0.141532 0.126062 22834 132086 -1 1934 21 1373 2464 132590 32485 3.75482 3.75482 -134.915 -3.75482 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0286595 0.0250852 138 3 122 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.72 vpr 61.92 MiB 0.02 6712 -1 -1 1 0.03 -1 -1 30744 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63408 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.3 MiB 0.04 603 10672 2424 7898 350 61.9 MiB 0.08 0.00 2.3583 -83.9313 -2.3583 2.3583 0.74 0.000471173 0.000437943 0.0322934 0.0300191 28 1568 20 6.64007e+06 163254 500653. 1732.36 0.84 0.0873077 0.0772526 21970 115934 -1 1283 20 587 760 62970 15048 1.90711 1.90711 -81.3508 -1.90711 0 0 612192. 2118.31 0.26 0.04 0.11 -1 -1 0.26 0.0170534 0.0150939 81 3 53 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 4.07 vpr 63.04 MiB 0.03 7008 -1 -1 1 0.04 -1 -1 30800 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.08 956 14691 4376 8904 1411 63.0 MiB 0.14 0.00 4.18856 -140.856 -4.18856 4.18856 0.84 0.00057371 0.000527593 0.0404319 0.0371441 32 2404 21 6.64007e+06 439530 554710. 1919.41 0.99 0.128575 0.112861 22834 132086 -1 2013 21 1562 2443 136186 32220 3.68863 3.68863 -139.333 -3.68863 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0286646 0.025468 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.37 vpr 62.91 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30356 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64424 32 32 337 253 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.09 1019 8796 1857 6524 415 62.9 MiB 0.09 0.00 3.60659 -123.354 -3.60659 3.60659 0.67 0.000706463 0.000655559 0.0293166 0.0272368 26 3099 35 6.64007e+06 464646 477104. 1650.88 1.61 0.13125 0.115011 21682 110474 -1 2307 21 1521 2542 185103 43251 2.91517 2.91517 -120.619 -2.91517 0 0 585099. 2024.56 0.26 0.09 0.11 -1 -1 0.26 0.0277828 0.0247339 152 3 124 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.21 vpr 63.12 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30808 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.3 MiB 0.09 1069 18901 5689 10576 2636 63.1 MiB 0.19 0.00 4.16036 -141.868 -4.16036 4.16036 0.85 0.000913626 0.000850347 0.0673099 0.0622935 32 2625 21 6.64007e+06 464646 554710. 1919.41 0.93 0.156616 0.139304 22834 132086 -1 2159 21 1586 2561 135415 32923 3.63723 3.63723 -139.995 -3.63723 0 0 701300. 2426.64 0.27 0.07 0.13 -1 -1 0.27 0.0281279 0.0249141 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.68 vpr 62.68 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30476 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64184 32 32 294 246 1 149 80 17 17 289 -1 unnamed_device 23.7 MiB 0.07 857 10572 2555 6423 1594 62.7 MiB 0.10 0.00 3.07196 -107.422 -3.07196 3.07196 0.66 0.000734018 0.000688495 0.0404715 0.0375906 32 1724 17 6.64007e+06 200928 554710. 1919.41 0.78 0.0857313 0.0766134 22834 132086 -1 1619 19 768 1202 79625 18383 2.68677 2.68677 -108.544 -2.68677 0 0 701300. 2426.64 0.30 0.05 0.13 -1 -1 0.30 0.0227347 0.0202589 107 34 54 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 3.73 vpr 62.40 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30424 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63896 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.9 MiB 0.08 824 11806 3275 6761 1770 62.4 MiB 0.10 0.00 3.4951 -114.009 -3.4951 3.4951 0.76 0.000610402 0.000567513 0.0433805 0.0403708 32 1736 19 6.64007e+06 238602 554710. 1919.41 0.83 0.115934 0.102661 22834 132086 -1 1605 19 990 1491 98034 22154 2.94697 2.94697 -111.71 -2.94697 0 0 701300. 2426.64 0.27 0.05 0.13 -1 -1 0.27 0.0208255 0.0184472 115 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 3.44 vpr 62.37 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 24.0 MiB 0.10 658 7132 1686 4570 876 62.4 MiB 0.08 0.00 3.4309 -100.483 -3.4309 3.4309 0.68 0.000591223 0.000550856 0.0267627 0.0249343 32 1739 23 6.64007e+06 251160 554710. 1919.41 0.83 0.0997086 0.0873992 22834 132086 -1 1490 22 1037 1741 91556 22991 2.85097 2.85097 -99.0799 -2.85097 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0250574 0.0217902 107 34 56 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 3.84 vpr 62.69 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30476 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.9 MiB 0.08 802 15390 5648 7380 2362 62.7 MiB 0.16 0.00 3.5251 -121.985 -3.5251 3.5251 0.75 0.000692903 0.000637918 0.0599579 0.055565 32 1929 21 6.64007e+06 226044 554710. 1919.41 0.87 0.13347 0.118876 22834 132086 -1 1691 19 1296 2158 129911 30474 2.87197 2.87197 -115.748 -2.87197 0 0 701300. 2426.64 0.21 0.07 0.11 -1 -1 0.21 0.0236866 0.020731 125 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 3.76 vpr 62.71 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30532 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 772 9679 2262 6618 799 62.7 MiB 0.09 0.00 3.47387 -114.287 -3.47387 3.47387 0.69 0.000631462 0.0005878 0.0306678 0.0284543 28 2106 19 6.64007e+06 389298 500653. 1732.36 0.81 0.103594 0.0909516 21970 115934 -1 1815 20 1193 1942 126465 29350 2.67477 2.67477 -109.18 -2.67477 0 0 612192. 2118.31 0.26 0.06 0.09 -1 -1 0.26 0.0215844 0.0191146 119 34 61 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 4.05 vpr 62.42 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30468 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 29 32 312 264 1 154 92 17 17 289 -1 unnamed_device 23.9 MiB 0.13 877 15824 4460 9332 2032 62.4 MiB 0.12 0.00 2.80466 -91.9047 -2.80466 2.80466 0.81 0.000492767 0.000453452 0.0401482 0.0368641 26 2027 21 6.64007e+06 389298 477104. 1650.88 0.98 0.106727 0.094469 21682 110474 -1 1768 20 1124 1848 132142 29078 2.23771 2.23771 -92.3836 -2.23771 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0218609 0.0193186 110 61 29 29 57 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 4.70 vpr 62.97 MiB 0.04 7148 -1 -1 1 0.04 -1 -1 30692 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 32 32 423 310 1 229 105 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1234 17889 5288 10109 2492 63.0 MiB 0.20 0.00 4.16036 -142.499 -4.16036 4.16036 0.69 0.000833113 0.000774646 0.0635598 0.0588955 28 3617 35 6.64007e+06 514878 500653. 1732.36 1.49 0.18821 0.166275 21970 115934 -1 2691 20 1770 3094 229041 48385 3.92203 3.92203 -146.179 -3.92203 0 0 612192. 2118.31 0.25 0.09 0.11 -1 -1 0.25 0.0301701 0.0268445 181 29 128 32 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 3.72 vpr 63.18 MiB 0.04 7064 -1 -1 1 0.03 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 403 317 1 198 101 17 17 289 -1 unnamed_device 24.4 MiB 0.15 996 11616 2636 8022 958 63.2 MiB 0.12 0.00 3.5823 -125.213 -3.5823 3.5823 0.66 0.000783287 0.000720417 0.0412659 0.0381904 30 2080 20 6.64007e+06 464646 526063. 1820.29 0.98 0.127334 0.112869 22546 126617 -1 1846 19 1498 2269 113841 26948 2.75677 2.75677 -115.324 -2.75677 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0298948 0.0261926 154 65 62 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 3.53 vpr 62.70 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30724 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 353 302 1 156 92 17 17 289 -1 unnamed_device 24.0 MiB 0.19 803 9407 2189 6388 830 62.7 MiB 0.09 0.00 3.6833 -114.43 -3.6833 3.6833 0.65 0.000673827 0.000625712 0.0328535 0.0305249 30 1852 20 6.64007e+06 364182 526063. 1820.29 0.80 0.112033 0.0980295 22546 126617 -1 1550 18 922 1504 90973 20566 2.62237 2.62237 -105.638 -2.62237 0 0 666494. 2306.21 0.19 0.06 0.13 -1 -1 0.19 0.0248958 0.021757 114 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 3.83 vpr 62.96 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30784 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 31 32 391 309 1 194 87 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1052 11799 3060 6831 1908 63.0 MiB 0.13 0.00 3.64847 -119.816 -3.64847 3.64847 0.67 0.000751608 0.000697013 0.0491099 0.0455956 32 2276 22 6.64007e+06 301392 554710. 1919.41 0.88 0.139096 0.122908 22834 132086 -1 2029 21 1483 2541 161855 35927 2.85277 2.85277 -113.868 -2.85277 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0274149 0.0242879 149 64 60 30 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.11 vpr 63.21 MiB 0.02 7296 -1 -1 1 0.04 -1 -1 30680 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64728 31 32 455 371 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.38 953 7835 1760 5704 371 63.2 MiB 0.09 0.00 5.23812 -147.937 -5.23812 5.23812 0.64 0.000789726 0.000730122 0.0372948 0.0346605 32 2420 20 6.64007e+06 288834 554710. 1919.41 0.96 0.126612 0.112421 22834 132086 -1 2043 18 1039 1754 119710 27507 3.90249 3.90249 -137.909 -3.90249 0 0 701300. 2426.64 0.23 0.07 0.12 -1 -1 0.23 0.0295487 0.0259465 150 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.61 vpr 63.29 MiB 0.03 7172 -1 -1 1 0.04 -1 -1 30716 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 31 32 413 333 1 188 86 17 17 289 -1 unnamed_device 24.6 MiB 0.20 955 10859 3044 7047 768 63.3 MiB 0.12 0.00 5.02279 -136.574 -5.02279 5.02279 0.66 0.000775636 0.000720064 0.0478123 0.04434 30 2107 21 6.64007e+06 288834 526063. 1820.29 0.82 0.139514 0.123161 22546 126617 -1 1798 17 925 1478 80699 18677 3.76928 3.76928 -128.991 -3.76928 0 0 666494. 2306.21 0.19 0.06 0.13 -1 -1 0.19 0.0281865 0.0248264 144 90 31 31 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 3.84 vpr 62.94 MiB 0.03 7108 -1 -1 1 0.04 -1 -1 30760 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 31 32 391 309 1 193 98 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1046 15623 4332 9609 1682 62.9 MiB 0.15 0.00 3.5621 -120.379 -3.5621 3.5621 0.69 0.000621562 0.000572313 0.0505598 0.0465288 26 2635 19 6.64007e+06 439530 477104. 1650.88 0.97 0.128804 0.114591 21682 110474 -1 2086 17 1424 2399 140227 32722 3.10537 3.10537 -117.767 -3.10537 0 0 585099. 2024.56 0.24 0.06 0.10 -1 -1 0.24 0.0228783 0.0203211 148 64 60 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.90 vpr 63.15 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 31076 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64664 32 32 407 319 1 198 101 17 17 289 -1 unnamed_device 24.5 MiB 0.11 865 10206 2264 6941 1001 63.1 MiB 0.11 0.00 4.23656 -140.329 -4.23656 4.23656 0.67 0.000774072 0.000718933 0.0369477 0.0342627 32 2469 19 6.64007e+06 464646 554710. 1919.41 0.91 0.13011 0.114647 22834 132086 -1 1984 20 1531 2321 128618 31736 3.83663 3.83663 -140.558 -3.83663 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0282097 0.0251353 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.20 vpr 63.28 MiB 0.02 7372 -1 -1 1 0.04 -1 -1 30844 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64800 32 32 496 380 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.18 1205 17356 4219 10649 2488 63.3 MiB 0.19 0.00 4.21478 -145.938 -4.21478 4.21478 0.83 0.000706374 0.000648818 0.0622252 0.0572938 32 2610 20 6.64007e+06 527436 554710. 1919.41 1.06 0.170279 0.150567 22834 132086 -1 2410 19 1687 2672 171556 37960 3.49503 3.49503 -138.994 -3.49503 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.035432 0.0310609 186 96 62 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.70 vpr 62.65 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30968 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64152 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.10 655 13731 5030 6417 2284 62.6 MiB 0.12 0.00 3.7665 -117.146 -3.7665 3.7665 0.67 0.000630364 0.000585662 0.0512893 0.0476781 32 1679 18 6.64007e+06 226044 554710. 1919.41 0.84 0.121989 0.108151 22834 132086 -1 1420 20 1166 1879 112703 28198 2.77977 2.77977 -106.929 -2.77977 0 0 701300. 2426.64 0.20 0.06 0.11 -1 -1 0.20 0.0231871 0.0202666 116 34 62 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 3.76 vpr 63.24 MiB 0.05 7064 -1 -1 1 0.04 -1 -1 30552 -1 -1 38 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64756 31 32 395 311 1 196 101 17 17 289 -1 unnamed_device 24.5 MiB 0.16 910 7386 1527 5477 382 63.2 MiB 0.08 0.00 4.20356 -136.322 -4.20356 4.20356 0.68 0.000759325 0.000705066 0.0263241 0.0244156 32 2497 27 6.64007e+06 477204 554710. 1919.41 0.92 0.124157 0.108354 22834 132086 -1 1981 18 1327 2115 117463 28579 3.80983 3.80983 -136.803 -3.80983 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0276319 0.0242615 152 64 62 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.99 vpr 63.18 MiB 0.04 6940 -1 -1 1 0.04 -1 -1 30828 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64692 32 32 397 313 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.11 994 14048 3500 8468 2080 63.2 MiB 0.14 0.00 3.7163 -119.726 -3.7163 3.7163 0.68 0.000750658 0.00069712 0.0514244 0.0478187 32 2207 20 6.64007e+06 426972 554710. 1919.41 0.87 0.140837 0.124632 22834 132086 -1 1961 22 1524 2688 150810 35703 2.80757 2.80757 -110.876 -2.80757 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0322229 0.0280935 149 63 62 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 3.67 vpr 62.88 MiB 0.03 6928 -1 -1 1 0.04 -1 -1 30680 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 345 257 1 194 86 17 17 289 -1 unnamed_device 24.0 MiB 0.08 1080 15017 4624 8554 1839 62.9 MiB 0.15 0.00 4.14936 -144.892 -4.14936 4.14936 0.66 0.000714364 0.000664036 0.059246 0.0550823 32 2464 17 6.64007e+06 276276 554710. 1919.41 0.90 0.142807 0.127354 22834 132086 -1 2171 21 1637 2932 185556 41089 3.52623 3.52623 -138.177 -3.52623 0 0 701300. 2426.64 0.20 0.09 0.11 -1 -1 0.20 0.0299921 0.026333 151 3 128 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 3.83 vpr 63.26 MiB 0.03 7176 -1 -1 1 0.04 -1 -1 30732 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 424 343 1 190 99 17 17 289 -1 unnamed_device 24.6 MiB 0.19 1044 15603 4218 9336 2049 63.3 MiB 0.15 0.00 3.55822 -125.535 -3.55822 3.55822 0.66 0.000793771 0.000735287 0.0561972 0.0521014 32 2232 18 6.64007e+06 439530 554710. 1919.41 0.84 0.145025 0.128422 22834 132086 -1 2001 21 1300 1941 113417 26718 2.75357 2.75357 -115.731 -2.75357 0 0 701300. 2426.64 0.26 0.07 0.13 -1 -1 0.26 0.0318671 0.0278784 146 96 25 25 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 4.89 vpr 63.12 MiB 0.03 7104 -1 -1 1 0.03 -1 -1 30560 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 395 311 1 194 101 17 17 289 -1 unnamed_device 24.3 MiB 0.18 1017 12791 3286 8285 1220 63.1 MiB 0.13 0.00 3.47912 -120.914 -3.47912 3.47912 0.67 0.000760259 0.000705916 0.0436474 0.0403567 24 2727 38 6.64007e+06 464646 448715. 1552.65 2.10 0.187177 0.163618 21394 104001 -1 2059 22 1176 2141 140301 32893 3.01517 3.01517 -120.593 -3.01517 0 0 554710. 1919.41 0.17 0.08 0.09 -1 -1 0.17 0.0323114 0.0282462 148 61 64 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.01 vpr 63.06 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30740 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 405 318 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.14 1102 19142 5372 11310 2460 63.1 MiB 0.17 0.00 3.5243 -123.608 -3.5243 3.5243 0.77 0.000770546 0.000713746 0.0648874 0.0601422 32 2205 19 6.64007e+06 489762 554710. 1919.41 0.87 0.15416 0.136837 22834 132086 -1 1976 20 1575 2476 140619 31309 2.69737 2.69737 -114.322 -2.69737 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0272044 0.0241272 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 3.78 vpr 63.00 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30764 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 376 288 1 194 101 17 17 289 -1 unnamed_device 24.4 MiB 0.08 1032 14906 4320 9186 1400 63.0 MiB 0.15 0.00 4.18856 -144.112 -4.18856 4.18856 0.70 0.00075131 0.000697522 0.0495522 0.0459491 30 2290 20 6.64007e+06 464646 526063. 1820.29 0.88 0.138861 0.122966 22546 126617 -1 1955 20 1443 2280 124536 28234 3.46723 3.46723 -135.995 -3.46723 0 0 666494. 2306.21 0.29 0.07 0.13 -1 -1 0.29 0.0300175 0.0267881 152 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.55 vpr 63.27 MiB 0.03 7104 -1 -1 1 0.04 -1 -1 30852 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64788 32 32 407 319 1 197 103 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1016 12153 3010 8355 788 63.3 MiB 0.12 0.00 4.23153 -146.068 -4.23153 4.23153 0.94 0.000604998 0.000556477 0.0341817 0.0313927 26 2745 24 6.64007e+06 489762 477104. 1650.88 1.15 0.135254 0.118556 21682 110474 -1 2268 21 1743 2763 188498 41630 3.91183 3.91183 -153.124 -3.91183 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0289104 0.0255618 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.49 vpr 62.95 MiB 0.04 7300 -1 -1 1 0.04 -1 -1 30740 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 449 367 1 193 99 17 17 289 -1 unnamed_device 24.5 MiB 0.23 1141 13095 3356 8753 986 62.9 MiB 0.14 0.00 4.67535 -137.171 -4.67535 4.67535 0.94 0.000618276 0.000568082 0.0400987 0.0368159 28 2939 20 6.64007e+06 452088 500653. 1732.36 1.04 0.138265 0.120826 21970 115934 -1 2376 18 1280 2235 150316 33948 3.59442 3.59442 -131.697 -3.59442 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0296268 0.0257854 147 122 0 0 122 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 4.10 vpr 63.10 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30744 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 432 346 1 195 86 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1069 15584 4992 8664 1928 63.1 MiB 0.16 0.00 4.34993 -137.194 -4.34993 4.34993 0.75 0.000800666 0.000743048 0.0689046 0.0639622 32 2480 20 6.64007e+06 276276 554710. 1919.41 0.91 0.165803 0.147232 22834 132086 -1 2187 21 1601 2933 166270 38949 3.64943 3.64943 -136.23 -3.64943 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0332434 0.0290106 151 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.95 vpr 62.54 MiB 0.02 6856 -1 -1 1 0.03 -1 -1 30884 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 312 255 1 166 95 17 17 289 -1 unnamed_device 24.0 MiB 0.07 928 8735 1852 5986 897 62.5 MiB 0.08 0.00 3.50687 -122.364 -3.50687 3.50687 0.89 0.000493295 0.000454514 0.0221625 0.0204074 28 2207 18 6.64007e+06 389298 500653. 1732.36 0.95 0.0869424 0.076464 21970 115934 -1 1895 20 1263 1933 133891 29971 2.84977 2.84977 -117.707 -2.84977 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0255951 0.0223749 125 34 63 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 3.67 vpr 63.05 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 30700 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64568 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 24.3 MiB 0.19 885 10406 2864 6861 681 63.1 MiB 0.11 0.00 3.5031 -121.505 -3.5031 3.5031 0.67 0.000704493 0.000654125 0.0437179 0.0406053 26 2246 21 6.64007e+06 226044 477104. 1650.88 0.78 0.127558 0.112545 21682 110474 -1 1785 20 1221 1980 131645 29989 2.85477 2.85477 -115.417 -2.85477 0 0 585099. 2024.56 0.17 0.07 0.10 -1 -1 0.17 0.0280099 0.024407 121 94 0 0 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 4.00 vpr 63.23 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 31188 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 469 351 1 233 106 17 17 289 -1 unnamed_device 24.8 MiB 0.12 1352 17606 4821 10688 2097 63.2 MiB 0.20 0.00 4.98622 -168.741 -4.98622 4.98622 0.68 0.00091211 0.00084766 0.0661031 0.0612118 32 3131 19 6.64007e+06 527436 554710. 1919.41 0.97 0.170758 0.15123 22834 132086 -1 2601 22 2175 3593 210590 49251 4.59129 4.59129 -172.288 -4.59129 0 0 701300. 2426.64 0.28 0.10 0.13 -1 -1 0.28 0.033862 0.0300077 189 65 96 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.66 vpr 62.94 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30752 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 368 284 1 194 97 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1055 17857 5354 10411 2092 62.9 MiB 0.17 0.00 3.51607 -123.396 -3.51607 3.51607 0.66 0.000733694 0.000679901 0.0615754 0.0569776 30 2223 20 6.64007e+06 414414 526063. 1820.29 0.81 0.146954 0.130205 22546 126617 -1 1940 19 1216 1819 99288 23536 2.99317 2.99317 -121.113 -2.99317 0 0 666494. 2306.21 0.24 0.07 0.12 -1 -1 0.24 0.0285351 0.025071 148 34 92 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.69 vpr 62.61 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30512 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64108 30 32 296 244 1 158 93 17 17 289 -1 unnamed_device 24.1 MiB 0.08 853 17523 5443 9889 2191 62.6 MiB 0.15 0.00 3.4529 -114.711 -3.4529 3.4529 0.68 0.000606338 0.000560251 0.0551997 0.051243 30 1885 20 6.64007e+06 389298 526063. 1820.29 0.91 0.119935 0.107001 22546 126617 -1 1585 22 947 1394 87104 18827 2.65337 2.65337 -105.849 -2.65337 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0261019 0.0227388 116 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.58 vpr 63.64 MiB 0.03 7388 -1 -1 1 0.04 -1 -1 31164 -1 -1 45 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65164 32 32 531 413 1 232 109 17 17 289 -1 unnamed_device 25.2 MiB 0.29 1192 13629 3357 8864 1408 63.6 MiB 0.14 0.00 4.97469 -167.233 -4.97469 4.97469 0.88 0.000740441 0.000682777 0.0420235 0.0386372 32 2623 21 6.64007e+06 565110 554710. 1919.41 1.00 0.153418 0.1347 22834 132086 -1 2322 21 1917 2915 179408 40160 4.40009 4.40009 -161.882 -4.40009 0 0 701300. 2426.64 0.30 0.11 0.13 -1 -1 0.30 0.0452767 0.0401423 188 127 32 32 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 3.86 vpr 63.09 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30592 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 32 32 376 288 1 194 102 17 17 289 -1 unnamed_device 24.5 MiB 0.14 1027 16762 4357 10483 1922 63.1 MiB 0.15 0.00 4.27488 -146.847 -4.27488 4.27488 0.71 0.000743854 0.00069058 0.056906 0.0527872 28 2579 25 6.64007e+06 477204 500653. 1732.36 0.87 0.150599 0.133395 21970 115934 -1 2239 20 1718 2485 157182 37433 3.79363 3.79363 -150.262 -3.79363 0 0 612192. 2118.31 0.18 0.08 0.11 -1 -1 0.18 0.0298541 0.0261551 153 34 96 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 4.02 vpr 62.58 MiB 0.02 6692 -1 -1 1 0.03 -1 -1 30408 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64084 32 32 283 225 1 164 96 17 17 289 -1 unnamed_device 24.1 MiB 0.07 882 11046 2802 6952 1292 62.6 MiB 0.10 0.00 3.5621 -124.172 -3.5621 3.5621 0.87 0.000471006 0.000433933 0.0263562 0.0242365 30 1857 21 6.64007e+06 401856 526063. 1820.29 0.91 0.0858916 0.0755107 22546 126617 -1 1513 20 789 1327 73689 17221 2.58017 2.58017 -107.275 -2.58017 0 0 666494. 2306.21 0.28 0.06 0.11 -1 -1 0.28 0.0232581 0.0206169 124 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 4.21 vpr 63.26 MiB 0.03 7192 -1 -1 1 0.03 -1 -1 30988 -1 -1 43 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 32 32 438 320 1 235 107 17 17 289 -1 unnamed_device 24.9 MiB 0.13 1334 20347 5362 13158 1827 63.3 MiB 0.21 0.00 4.95502 -168.119 -4.95502 4.95502 0.67 0.000867926 0.000805072 0.0721289 0.0669516 30 3206 23 6.64007e+06 539994 526063. 1820.29 1.26 0.186579 0.166637 22546 126617 -1 2626 22 2104 3576 215848 46199 4.87169 4.87169 -172.927 -4.87169 0 0 666494. 2306.21 0.20 0.10 0.11 -1 -1 0.20 0.0378409 0.033092 190 34 128 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 3.72 vpr 62.38 MiB 0.02 6740 -1 -1 1 0.03 -1 -1 30580 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 283 225 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 0.09 623 13731 4925 6406 2400 62.4 MiB 0.12 0.00 3.5061 -118.666 -3.5061 3.5061 0.66 0.00061896 0.000574564 0.0499834 0.0464565 32 1853 21 6.64007e+06 213486 554710. 1919.41 0.83 0.122777 0.108857 22834 132086 -1 1486 20 1216 1874 106571 27604 3.00317 3.00317 -114.431 -3.00317 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.0248542 0.0217347 121 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.43 vpr 62.58 MiB 0.03 6864 -1 -1 1 0.03 -1 -1 30324 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64080 30 32 296 244 1 157 94 17 17 289 -1 unnamed_device 24.1 MiB 0.14 855 13939 4099 8667 1173 62.6 MiB 0.12 0.00 3.47387 -112.968 -3.47387 3.47387 0.67 0.000620005 0.00057598 0.0427104 0.0396207 28 1914 24 6.64007e+06 401856 500653. 1732.36 0.76 0.118538 0.104554 21970 115934 -1 1652 18 954 1572 90846 21058 2.81877 2.81877 -108.09 -2.81877 0 0 612192. 2118.31 0.18 0.06 0.10 -1 -1 0.18 0.0227273 0.0198617 114 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.89 vpr 63.37 MiB 0.02 7064 -1 -1 1 0.04 -1 -1 30692 -1 -1 34 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 29 32 393 319 1 182 95 17 17 289 -1 unnamed_device 24.8 MiB 0.17 1003 12839 3224 8329 1286 63.4 MiB 0.13 0.00 3.6803 -109.03 -3.6803 3.6803 0.67 0.000745392 0.000691594 0.0464903 0.0431594 26 2375 19 6.64007e+06 426972 477104. 1650.88 0.87 0.134735 0.119234 21682 110474 -1 1975 19 1239 2155 136253 31172 3.14437 3.14437 -112.765 -3.14437 0 0 585099. 2024.56 0.18 0.07 0.10 -1 -1 0.18 0.0286379 0.0250633 134 88 29 29 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.70 vpr 63.00 MiB 0.03 6944 -1 -1 1 0.04 -1 -1 30924 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 32 32 407 319 1 194 86 17 17 289 -1 unnamed_device 24.3 MiB 0.14 937 11048 2797 7564 687 63.0 MiB 0.12 0.00 4.21976 -143.232 -4.21976 4.21976 0.67 0.000773691 0.000718004 0.0480581 0.0445987 32 2141 19 6.64007e+06 276276 554710. 1919.41 0.90 0.138325 0.122219 22834 132086 -1 1752 21 1608 2441 148978 34252 3.48823 3.48823 -137.205 -3.48823 0 0 701300. 2426.64 0.26 0.06 0.11 -1 -1 0.26 0.0256617 0.02282 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.32 vpr 63.07 MiB 0.02 7160 -1 -1 1 0.04 -1 -1 30860 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 407 319 1 195 100 17 17 289 -1 unnamed_device 24.5 MiB 0.22 1070 15876 4480 9346 2050 63.1 MiB 0.17 0.00 4.25856 -146.098 -4.25856 4.25856 0.86 0.000773992 0.000718344 0.0468838 0.0431362 32 2543 20 6.64007e+06 452088 554710. 1919.41 0.91 0.137562 0.121167 22834 132086 -1 2273 20 1506 2502 148981 34089 3.73543 3.73543 -144.103 -3.73543 0 0 701300. 2426.64 0.21 0.08 0.11 -1 -1 0.21 0.0306214 0.0268402 154 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.71 vpr 62.93 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30848 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 345 287 1 161 96 17 17 289 -1 unnamed_device 24.2 MiB 0.14 863 8856 1892 6516 448 62.9 MiB 0.10 0.00 3.4749 -121.747 -3.4749 3.4749 0.70 0.000683712 0.000634756 0.0338644 0.031274 32 1862 14 6.64007e+06 401856 554710. 1919.41 0.82 0.108443 0.0953969 22834 132086 -1 1744 23 1255 1952 135843 30115 2.80957 2.80957 -116.42 -2.80957 0 0 701300. 2426.64 0.20 0.10 0.15 -1 -1 0.20 0.0382523 0.0338886 122 65 32 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.66 vpr 62.83 MiB 0.02 7100 -1 -1 1 0.03 -1 -1 30740 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64336 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.1 MiB 0.18 821 8336 2395 4162 1779 62.8 MiB 0.09 0.00 3.72326 -116.749 -3.72326 3.72326 0.70 0.000684929 0.000635718 0.0367046 0.0340576 32 1886 21 6.64007e+06 213486 554710. 1919.41 0.87 0.11874 0.104402 22834 132086 -1 1645 19 961 1762 101772 24497 2.79657 2.79657 -106.059 -2.79657 0 0 701300. 2426.64 0.21 0.06 0.11 -1 -1 0.21 0.0262349 0.0229138 109 90 0 0 89 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.94 vpr 62.89 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30576 -1 -1 35 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64404 30 32 374 297 1 186 97 17 17 289 -1 unnamed_device 24.3 MiB 0.14 985 17635 4923 10695 2017 62.9 MiB 0.18 0.00 3.4529 -110.073 -3.4529 3.4529 0.69 0.000776171 0.000718226 0.0637519 0.0591931 26 2593 21 6.64007e+06 439530 477104. 1650.88 0.89 0.15186 0.135104 21682 110474 -1 2034 19 1193 1940 141009 31792 3.18837 3.18837 -118.317 -3.18837 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0265217 0.0236321 139 60 60 30 57 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.69 vpr 62.88 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 30620 -1 -1 32 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64388 28 32 332 260 1 180 92 17 17 289 -1 unnamed_device 24.1 MiB 0.11 939 14996 4215 8524 2257 62.9 MiB 0.14 0.00 4.39198 -124.88 -4.39198 4.39198 0.68 0.000667565 0.000621367 0.0512563 0.0475972 26 2353 24 6.64007e+06 401856 477104. 1650.88 0.97 0.137888 0.122171 21682 110474 -1 1917 19 1102 1874 127868 27843 3.57942 3.57942 -121.641 -3.57942 0 0 585099. 2024.56 0.18 0.07 0.12 -1 -1 0.18 0.025746 0.0225521 134 34 84 28 28 28 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 3.62 vpr 62.72 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30368 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 30 32 325 273 1 157 81 17 17 289 -1 unnamed_device 24.0 MiB 0.17 846 13731 4520 7348 1863 62.7 MiB 0.13 0.00 3.5343 -117.296 -3.5343 3.5343 0.66 0.000644783 0.000598156 0.0529875 0.0491897 32 1937 17 6.64007e+06 238602 554710. 1919.41 0.83 0.127398 0.112898 22834 132086 -1 1789 17 1095 1840 134807 28833 2.80777 2.80777 -111.8 -2.80777 0 0 701300. 2426.64 0.21 0.07 0.13 -1 -1 0.21 0.023378 0.0204669 114 63 30 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.88 vpr 62.81 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30604 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64316 32 32 361 308 1 158 81 17 17 289 -1 unnamed_device 24.1 MiB 0.17 892 11281 2807 6986 1488 62.8 MiB 0.11 0.00 3.6865 -117.315 -3.6865 3.6865 0.69 0.000698837 0.000648041 0.0485659 0.045179 30 1846 19 6.64007e+06 213486 526063. 1820.29 0.80 0.128995 0.114107 22546 126617 -1 1647 19 824 1345 85019 18804 2.71557 2.71557 -109.036 -2.71557 0 0 666494. 2306.21 0.28 0.06 0.12 -1 -1 0.28 0.0240238 0.0213247 114 91 0 0 91 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 4.02 vpr 63.00 MiB 0.03 6932 -1 -1 1 0.03 -1 -1 30344 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 335 251 1 196 100 17 17 289 -1 unnamed_device 24.6 MiB 0.08 1121 19124 6194 10224 2706 63.0 MiB 0.17 0.00 4.18856 -139.706 -4.18856 4.18856 0.75 0.00068536 0.000636358 0.0584986 0.0542004 32 2333 20 6.64007e+06 464646 554710. 1919.41 1.01 0.138786 0.123356 22834 132086 -1 2054 20 1421 2396 148305 32835 3.63343 3.63343 -138.102 -3.63343 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0284867 0.0250068 152 4 124 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 4.07 vpr 63.09 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30860 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 407 319 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1037 18660 5257 10625 2778 63.1 MiB 0.17 0.00 4.17032 -143.358 -4.17032 4.17032 0.72 0.000778085 0.00072321 0.065449 0.0606589 32 2284 19 6.64007e+06 452088 554710. 1919.41 0.96 0.144656 0.129056 22834 132086 -1 2139 19 1583 2763 169003 38104 3.64143 3.64143 -136.133 -3.64143 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0298078 0.0261239 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 3.84 vpr 63.12 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30680 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 407 319 1 194 100 17 17 289 -1 unnamed_device 24.4 MiB 0.17 1085 15876 4268 10377 1231 63.1 MiB 0.15 0.00 4.15553 -144.194 -4.15553 4.15553 0.68 0.000766817 0.000710292 0.0554427 0.0512999 32 2634 23 6.64007e+06 452088 554710. 1919.41 0.91 0.15021 0.132817 22834 132086 -1 2167 22 1534 2478 141911 32743 3.61523 3.61523 -141.445 -3.61523 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0288129 0.0255072 153 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 8.26 vpr 63.01 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30552 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64524 32 32 399 315 1 196 102 17 17 289 -1 unnamed_device 24.2 MiB 0.14 963 9146 1745 6045 1356 63.0 MiB 0.08 0.00 4.17056 -135.219 -4.17056 4.17056 0.88 0.000594206 0.000545214 0.0256703 0.0236368 28 3452 44 6.64007e+06 477204 500653. 1732.36 5.31 0.250697 0.217713 21970 115934 -1 2377 24 1714 2888 217892 53588 4.00003 4.00003 -141.079 -4.00003 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0351072 0.0305734 149 65 60 30 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 3.42 vpr 62.77 MiB 0.02 6884 -1 -1 1 0.03 -1 -1 30620 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 296 244 1 156 81 17 17 289 -1 unnamed_device 24.1 MiB 0.09 840 12856 4254 6466 2136 62.8 MiB 0.11 0.00 3.4921 -115.538 -3.4921 3.4921 0.65 0.00061243 0.000569025 0.0415921 0.0386463 32 1928 22 6.64007e+06 238602 554710. 1919.41 0.83 0.115536 0.101903 22834 132086 -1 1750 20 1077 1756 113951 25608 2.79557 2.79557 -112.362 -2.79557 0 0 701300. 2426.64 0.20 0.06 0.11 -1 -1 0.20 0.0249177 0.0217476 113 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 4.14 vpr 63.13 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30784 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64644 30 32 383 303 1 191 86 17 17 289 -1 unnamed_device 24.3 MiB 0.16 996 13127 3599 7422 2106 63.1 MiB 0.13 0.00 4.20393 -135.69 -4.20393 4.20393 0.75 0.000732317 0.000679218 0.0539893 0.0501206 26 2587 21 6.64007e+06 301392 477104. 1650.88 0.96 0.145624 0.128938 21682 110474 -1 2168 21 1683 2541 171601 39574 3.82903 3.82903 -141.472 -3.82903 0 0 585099. 2024.56 0.25 0.08 0.11 -1 -1 0.25 0.0270552 0.023952 146 63 60 30 60 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 4.09 vpr 63.04 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30956 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 469 381 1 198 105 17 17 289 -1 unnamed_device 24.7 MiB 0.23 1061 10232 2187 7405 640 63.0 MiB 0.11 0.00 4.16036 -143.59 -4.16036 4.16036 0.67 0.000855825 0.00079299 0.038339 0.0351705 26 3095 27 6.64007e+06 514878 477104. 1650.88 1.03 0.149395 0.130378 21682 110474 -1 2420 21 1759 2918 200480 43877 3.86963 3.86963 -148.866 -3.86963 0 0 585099. 2024.56 0.23 0.08 0.11 -1 -1 0.23 0.0301735 0.0266163 156 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 4.09 vpr 63.09 MiB 0.03 7244 -1 -1 1 0.04 -1 -1 30800 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 31 32 425 341 1 189 96 17 17 289 -1 unnamed_device 24.5 MiB 0.13 924 14769 3776 9247 1746 63.1 MiB 0.14 0.00 4.18868 -135.93 -4.18868 4.18868 0.86 0.000610813 0.000560211 0.0438605 0.0403143 32 2245 22 6.64007e+06 414414 554710. 1919.41 0.99 0.121305 0.107232 22834 132086 -1 1843 20 1316 2170 115584 27975 3.65543 3.65543 -134.225 -3.65543 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0317649 0.0278499 148 94 31 31 93 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 3.43 vpr 63.21 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30732 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 30 32 404 328 1 182 94 17 17 289 -1 unnamed_device 24.5 MiB 0.13 973 15004 4033 8498 2473 63.2 MiB 0.14 0.00 3.6693 -113.052 -3.6693 3.6693 0.59 0.000760848 0.000705278 0.0563295 0.0522718 32 2057 19 6.64007e+06 401856 554710. 1919.41 0.86 0.145356 0.128461 22834 132086 -1 1798 21 1116 1888 110923 25497 2.83877 2.83877 -108.687 -2.83877 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0312297 0.0272562 138 92 26 26 90 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 4.15 vpr 63.13 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30816 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 407 319 1 198 86 17 17 289 -1 unnamed_device 24.4 MiB 0.24 1125 9725 2385 6614 726 63.1 MiB 0.12 0.00 4.21673 -144.443 -4.21673 4.21673 0.67 0.000780987 0.000724161 0.0428153 0.0398021 30 2849 27 6.64007e+06 276276 526063. 1820.29 1.14 0.151555 0.133672 22546 126617 -1 2461 21 1909 3327 189128 44079 3.51523 3.51523 -144.636 -3.51523 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0293954 0.0260753 155 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.76 vpr 63.12 MiB 0.03 7116 -1 -1 1 0.03 -1 -1 30540 -1 -1 36 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 29 32 387 316 1 179 97 17 17 289 -1 unnamed_device 24.3 MiB 0.13 964 18079 5189 10710 2180 63.1 MiB 0.16 0.00 3.5353 -109.312 -3.5353 3.5353 0.68 0.000568164 0.000522105 0.0496759 0.0455024 32 1960 21 6.64007e+06 452088 554710. 1919.41 1.00 0.122302 0.108144 22834 132086 -1 1682 20 1170 1953 112651 26477 2.77777 2.77777 -102.226 -2.77777 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0292935 0.025594 136 88 26 26 85 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.51 vpr 62.41 MiB 0.02 6676 -1 -1 1 0.03 -1 -1 30708 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 283 225 1 156 81 17 17 289 -1 unnamed_device 24.0 MiB 0.07 799 9356 2113 6168 1075 62.4 MiB 0.09 0.00 3.4921 -122.483 -3.4921 3.4921 0.74 0.000632476 0.000587863 0.0348756 0.0324756 32 1831 20 6.64007e+06 213486 554710. 1919.41 0.82 0.107555 0.0948552 22834 132086 -1 1674 19 1061 1665 110148 24911 2.66437 2.66437 -115.281 -2.66437 0 0 701300. 2426.64 0.21 0.06 0.11 -1 -1 0.21 0.0235053 0.0205909 115 3 96 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 4.09 vpr 63.13 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30568 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 407 319 1 194 99 17 17 289 -1 unnamed_device 24.3 MiB 0.26 992 16743 5741 8435 2567 63.1 MiB 0.16 0.00 4.25856 -144.485 -4.25856 4.25856 0.74 0.000779134 0.000722165 0.0613413 0.0568462 28 2832 24 6.64007e+06 439530 500653. 1732.36 0.96 0.163425 0.144888 21970 115934 -1 2178 21 1586 2578 165029 38562 3.74343 3.74343 -144.368 -3.74343 0 0 612192. 2118.31 0.21 0.09 0.12 -1 -1 0.21 0.0332389 0.0291135 152 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.31 vpr 63.21 MiB 0.02 6952 -1 -1 1 0.04 -1 -1 30680 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 407 319 1 201 87 17 17 289 -1 unnamed_device 24.6 MiB 0.16 1054 17367 5167 10302 1898 63.2 MiB 0.16 0.00 4.21976 -145.962 -4.21976 4.21976 0.92 0.00053988 0.000494203 0.0533534 0.0488626 32 2268 21 6.64007e+06 288834 554710. 1919.41 0.92 0.141311 0.124874 22834 132086 -1 1965 20 1577 2625 158492 38146 3.49503 3.49503 -137.475 -3.49503 0 0 701300. 2426.64 0.23 0.08 0.12 -1 -1 0.23 0.0315478 0.0276094 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.34 vpr 62.89 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 30552 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64396 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.2 MiB 0.15 691 7975 1531 6145 299 62.9 MiB 0.08 0.00 3.6913 -111.241 -3.6913 3.6913 0.88 0.000644129 0.000598503 0.0263946 0.0245146 26 2213 31 6.64007e+06 376740 477104. 1650.88 1.11 0.118111 0.103174 21682 110474 -1 1724 20 1026 1641 108986 26477 2.87477 2.87477 -111.085 -2.87477 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.0233826 0.0204825 112 55 32 32 54 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.71 vpr 62.43 MiB 0.04 6844 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63932 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.08 653 13381 4684 6039 2658 62.4 MiB 0.12 0.00 3.5533 -116.629 -3.5533 3.5533 0.81 0.000612469 0.000570522 0.0487378 0.0453051 32 1765 23 6.64007e+06 226044 554710. 1919.41 0.84 0.119832 0.106153 22834 132086 -1 1482 21 1257 2006 123630 30280 3.06217 3.06217 -115.192 -3.06217 0 0 701300. 2426.64 0.21 0.06 0.12 -1 -1 0.21 0.0226834 0.0199772 118 4 93 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.87 vpr 62.95 MiB 0.03 6948 -1 -1 1 0.04 -1 -1 30592 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64464 32 32 381 303 1 188 97 17 17 289 -1 unnamed_device 24.3 MiB 0.16 927 16303 4785 8793 2725 63.0 MiB 0.15 0.00 4.16476 -135.871 -4.16476 4.16476 0.68 0.000664131 0.000607516 0.0551683 0.0510218 32 2174 22 6.64007e+06 414414 554710. 1919.41 0.88 0.144796 0.128106 22834 132086 -1 1930 20 1286 1946 123673 28649 3.52283 3.52283 -127.708 -3.52283 0 0 701300. 2426.64 0.21 0.08 0.14 -1 -1 0.21 0.031105 0.0273148 139 59 60 32 58 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.16 vpr 63.12 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 30528 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64640 32 32 406 330 1 190 96 17 17 289 -1 unnamed_device 24.4 MiB 0.11 1051 17397 5163 9750 2484 63.1 MiB 0.17 0.00 4.41596 -136.112 -4.41596 4.41596 0.74 0.000618612 0.000550009 0.0533609 0.0489868 26 2808 24 6.64007e+06 401856 477104. 1650.88 1.26 0.149736 0.132363 21682 110474 -1 2203 20 1282 2111 157506 33957 3.76463 3.76463 -131.877 -3.76463 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0313143 0.0274572 136 88 28 28 88 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.22 vpr 63.10 MiB 0.05 7076 -1 -1 1 0.03 -1 -1 30588 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 399 285 1 228 101 17 17 289 -1 unnamed_device 24.8 MiB 0.09 1159 10441 2545 7247 649 63.1 MiB 0.12 0.00 4.95022 -163.094 -4.95022 4.95022 0.68 0.000812385 0.000753712 0.0384829 0.0356724 32 3050 22 6.64007e+06 464646 554710. 1919.41 1.26 0.148951 0.13387 22834 132086 -1 2471 21 1914 3123 210343 47886 4.38308 4.38308 -161.659 -4.38308 0 0 701300. 2426.64 0.30 0.10 0.13 -1 -1 0.30 0.0356856 0.0320786 179 3 156 32 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 4.04 vpr 62.90 MiB 0.05 7180 -1 -1 1 0.04 -1 -1 30748 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 30 32 371 295 1 184 96 17 17 289 -1 unnamed_device 24.3 MiB 0.15 813 9732 2096 6039 1597 62.9 MiB 0.09 0.00 3.7815 -111.41 -3.7815 3.7815 0.67 0.000719699 0.00066738 0.0350552 0.032511 28 2632 28 6.64007e+06 426972 500653. 1732.36 1.22 0.132452 0.116168 21970 115934 -1 1852 21 1312 2095 146733 37739 3.11637 3.11637 -119.372 -3.11637 0 0 612192. 2118.31 0.20 0.08 0.11 -1 -1 0.20 0.031442 0.0276244 138 59 60 30 56 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.90 vpr 62.21 MiB 0.03 6888 -1 -1 1 0.03 -1 -1 30872 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63704 27 32 269 226 1 143 80 17 17 289 -1 unnamed_device 23.6 MiB 0.09 529 12292 5081 5761 1450 62.2 MiB 0.10 0.00 3.54427 -98.353 -3.54427 3.54427 0.87 0.000568572 0.000528205 0.0445035 0.0413911 32 1410 23 6.64007e+06 263718 554710. 1919.41 0.86 0.113819 0.100556 22834 132086 -1 1148 20 924 1371 86300 21109 2.98437 2.98437 -96.3241 -2.98437 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0233005 0.0203653 107 34 54 27 27 27 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.24 vpr 63.31 MiB 0.03 7248 -1 -1 1 0.04 -1 -1 30884 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 493 378 1 232 106 17 17 289 -1 unnamed_device 24.9 MiB 0.17 1462 20856 5895 12562 2399 63.3 MiB 0.22 0.00 4.52196 -148.077 -4.52196 4.52196 0.71 0.000923236 0.000856621 0.0787454 0.0730454 30 3394 22 6.64007e+06 527436 526063. 1820.29 0.97 0.188564 0.167191 22546 126617 -1 2822 21 1887 3481 215119 46093 3.75843 3.75843 -145.571 -3.75843 0 0 666494. 2306.21 0.24 0.07 0.12 -1 -1 0.24 0.0304262 0.026848 186 95 62 31 95 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 4.20 vpr 63.08 MiB 0.03 7300 -1 -1 1 0.04 -1 -1 30708 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 31 32 455 371 1 188 85 17 17 289 -1 unnamed_device 24.4 MiB 0.24 998 12919 3192 8538 1189 63.1 MiB 0.14 0.00 4.42996 -140.975 -4.42996 4.42996 0.73 0.000847941 0.000788753 0.0626431 0.0582536 32 2265 21 6.64007e+06 276276 554710. 1919.41 0.90 0.162547 0.143848 22834 132086 -1 2066 22 1473 2439 167224 38358 3.70363 3.70363 -141.208 -3.70363 0 0 701300. 2426.64 0.31 0.09 0.13 -1 -1 0.31 0.0348069 0.0307161 145 124 0 0 124 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 4.07 vpr 62.69 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30748 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 355 304 1 150 80 17 17 289 -1 unnamed_device 24.0 MiB 0.21 894 11948 3681 7128 1139 62.7 MiB 0.12 0.00 3.6755 -115.703 -3.6755 3.6755 0.80 0.000628444 0.000577862 0.0491325 0.0454055 32 1882 22 6.64007e+06 200928 554710. 1919.41 0.94 0.130529 0.115149 22834 132086 -1 1682 19 842 1327 92116 20672 2.74877 2.74877 -113.104 -2.74877 0 0 701300. 2426.64 0.28 0.05 0.12 -1 -1 0.28 0.022219 0.0195968 108 89 0 0 89 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.94 vpr 62.93 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30576 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 32 32 364 282 1 196 97 17 17 289 -1 unnamed_device 24.3 MiB 0.08 1023 18745 6322 9498 2925 62.9 MiB 0.17 0.00 4.46396 -140.121 -4.46396 4.46396 0.66 0.000720576 0.000668396 0.0650707 0.0603355 28 2932 33 6.64007e+06 414414 500653. 1732.36 1.22 0.170368 0.151262 21970 115934 -1 2318 22 1577 2421 197051 42485 3.70982 3.70982 -136.529 -3.70982 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0319076 0.0278573 147 34 90 30 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.92 vpr 62.95 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 30812 -1 -1 38 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 443 336 1 220 101 17 17 289 -1 unnamed_device 24.7 MiB 0.15 1135 20076 5790 11566 2720 63.0 MiB 0.12 0.00 4.51716 -144.659 -4.51716 4.51716 0.73 0.000386945 0.000357025 0.035935 0.0331347 32 2475 19 6.64007e+06 477204 554710. 1919.41 0.80 0.121543 0.106617 22834 132086 -1 2202 18 1510 2396 140174 33051 3.66342 3.66342 -139.835 -3.66342 0 0 701300. 2426.64 0.20 0.10 0.12 -1 -1 0.20 0.0395827 0.0350379 173 64 87 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 4.16 vpr 62.98 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30680 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64496 30 32 373 297 1 186 96 17 17 289 -1 unnamed_device 24.3 MiB 0.11 923 11484 2608 8162 714 63.0 MiB 0.12 0.00 3.73061 -110.59 -3.73061 3.73061 0.75 0.000722801 0.000671006 0.0401948 0.0372855 26 2818 28 6.64007e+06 426972 477104. 1650.88 1.27 0.136266 0.120113 21682 110474 -1 2089 21 1412 2509 174710 46782 3.26637 3.26637 -115.569 -3.26637 0 0 585099. 2024.56 0.17 0.09 0.10 -1 -1 0.17 0.0303513 0.0264583 135 61 58 30 58 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.86 vpr 62.87 MiB 0.03 7076 -1 -1 1 0.04 -1 -1 30740 -1 -1 43 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 407 319 1 201 107 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1008 13516 3637 9135 744 62.9 MiB 0.14 0.00 4.19956 -142.899 -4.19956 4.19956 0.68 0.00076798 0.0007114 0.0446295 0.0412803 28 2947 26 6.64007e+06 539994 500653. 1732.36 1.03 0.147219 0.129558 21970 115934 -1 2167 21 1826 3037 181616 44784 4.16943 4.16943 -155.074 -4.16943 0 0 612192. 2118.31 0.25 0.08 0.11 -1 -1 0.25 0.030095 0.0267462 158 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 4.30 vpr 63.38 MiB 0.03 7136 -1 -1 1 0.04 -1 -1 30596 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 405 318 1 200 104 17 17 289 -1 unnamed_device 24.6 MiB 0.16 988 17184 5218 8807 3159 63.4 MiB 0.16 0.00 3.62559 -123.648 -3.62559 3.62559 0.68 0.000775765 0.000719977 0.0584067 0.054132 28 3002 25 6.64007e+06 502320 500653. 1732.36 1.29 0.16433 0.145568 21970 115934 -1 2160 18 1462 2326 164826 38496 2.78177 2.78177 -115.677 -2.78177 0 0 612192. 2118.31 0.24 0.07 0.11 -1 -1 0.24 0.0253845 0.022579 157 65 63 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 4.98 vpr 62.49 MiB 0.04 6880 -1 -1 1 0.03 -1 -1 30688 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 29 32 287 238 1 134 79 17 17 289 -1 unnamed_device 23.9 MiB 0.08 573 13430 5649 6739 1042 62.5 MiB 0.11 0.00 3.6785 -105.931 -3.6785 3.6785 0.66 0.000605932 0.000562547 0.0494485 0.0459664 30 1412 21 6.64007e+06 226044 526063. 1820.29 2.33 0.191341 0.166613 22546 126617 -1 1146 19 695 1040 59772 14418 2.66557 2.66557 -94.5132 -2.66557 0 0 666494. 2306.21 0.20 0.05 0.11 -1 -1 0.20 0.0236928 0.0207037 95 34 58 29 29 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.61 vpr 62.81 MiB 0.02 6964 -1 -1 1 0.05 -1 -1 30448 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64320 32 32 334 290 1 156 83 17 17 289 -1 unnamed_device 23.9 MiB 0.13 857 11783 4174 5528 2081 62.8 MiB 0.11 0.00 4.00656 -110.848 -4.00656 4.00656 0.70 0.000653083 0.000605725 0.0451066 0.0418582 30 1873 19 6.64007e+06 238602 526063. 1820.29 0.80 0.122194 0.107865 22546 126617 -1 1596 15 647 938 63203 14367 2.75003 2.75003 -104.258 -2.75003 0 0 666494. 2306.21 0.27 0.04 0.12 -1 -1 0.27 0.0190446 0.0169779 112 82 0 0 82 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 7.61 vpr 63.05 MiB 0.04 7028 -1 -1 1 0.04 -1 -1 30812 -1 -1 38 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64564 31 32 365 281 1 196 101 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1100 13261 3564 8068 1629 63.1 MiB 0.12 0.00 4.80256 -145.153 -4.80256 4.80256 0.73 0.000726239 0.000674232 0.042476 0.0393527 26 3139 25 6.64007e+06 477204 477104. 1650.88 4.59 0.230167 0.201184 21682 110474 -1 2408 21 1536 2560 189808 41498 4.10323 4.10323 -151.358 -4.10323 0 0 585099. 2024.56 0.21 0.09 0.11 -1 -1 0.21 0.030213 0.0263907 151 34 93 31 31 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.94 vpr 62.70 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30716 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 24.0 MiB 0.18 620 10442 2502 7352 588 62.7 MiB 0.10 0.00 3.6803 -100.526 -3.6803 3.6803 0.70 0.000614248 0.000571334 0.0334805 0.03105 26 1927 35 6.64007e+06 389298 477104. 1650.88 1.09 0.122124 0.108037 21682 110474 -1 1551 19 1008 1667 109123 25826 2.91677 2.91677 -102.86 -2.91677 0 0 585099. 2024.56 0.25 0.06 0.11 -1 -1 0.25 0.0215694 0.0191563 108 56 29 29 52 26 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.73 vpr 62.64 MiB 0.04 6832 -1 -1 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 314 256 1 160 81 17 17 289 -1 unnamed_device 24.0 MiB 0.15 691 13906 4599 7385 1922 62.6 MiB 0.13 0.00 3.53127 -120.288 -3.53127 3.53127 0.69 0.000641492 0.000595609 0.0534661 0.0496832 32 2028 24 6.64007e+06 213486 554710. 1919.41 0.90 0.137045 0.121703 22834 132086 -1 1585 23 1415 2307 144472 33102 2.77497 2.77497 -113.665 -2.77497 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0283439 0.0246965 118 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.98 vpr 63.03 MiB 0.03 7160 -1 -1 1 0.03 -1 -1 30780 -1 -1 38 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 387 307 1 189 101 17 17 289 -1 unnamed_device 24.4 MiB 0.14 999 13261 3446 8635 1180 63.0 MiB 0.12 0.00 3.5665 -119.865 -3.5665 3.5665 0.72 0.000737438 0.000682408 0.0443415 0.041014 30 2030 20 6.64007e+06 477204 526063. 1820.29 0.85 0.133154 0.117231 22546 126617 -1 1835 19 1382 2076 110808 25593 2.92417 2.92417 -114.742 -2.92417 0 0 666494. 2306.21 0.28 0.07 0.12 -1 -1 0.28 0.0277285 0.0247871 144 64 58 31 62 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.53 vpr 62.88 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30676 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64384 31 32 308 262 1 147 80 17 17 289 -1 unnamed_device 24.2 MiB 0.14 869 9368 2508 6076 784 62.9 MiB 0.09 0.00 3.34153 -105.882 -3.34153 3.34153 0.69 0.000632195 0.000588298 0.036011 0.033474 32 1814 20 6.64007e+06 213486 554710. 1919.41 0.81 0.108925 0.0958191 22834 132086 -1 1614 18 777 1322 82765 18578 2.55437 2.55437 -102.551 -2.55437 0 0 701300. 2426.64 0.20 0.06 0.10 -1 -1 0.20 0.0230374 0.0201496 106 55 31 31 53 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 7.01 vpr 62.88 MiB 0.02 6996 -1 -1 1 0.03 -1 -1 30672 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64384 32 32 383 307 1 184 97 17 17 289 -1 unnamed_device 24.3 MiB 0.14 879 9865 2512 6573 780 62.9 MiB 0.10 0.00 3.57229 -117.612 -3.57229 3.57229 0.66 0.000888634 0.000824135 0.0360876 0.033472 26 2780 31 6.64007e+06 414414 477104. 1650.88 4.28 0.235455 0.204707 21682 110474 -1 1993 22 1154 1860 188456 67517 2.95197 2.95197 -115.334 -2.95197 0 0 585099. 2024.56 0.17 0.09 0.09 -1 -1 0.17 0.0317445 0.027711 137 65 52 26 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.07 vpr 63.16 MiB 0.03 7164 -1 -1 1 0.04 -1 -1 30592 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 422 339 1 195 100 17 17 289 -1 unnamed_device 24.4 MiB 0.23 875 10540 2287 7686 567 63.2 MiB 0.11 0.00 3.79366 -119.555 -3.79366 3.79366 0.86 0.000620633 0.000571109 0.0316166 0.0290965 30 2033 25 6.64007e+06 464646 526063. 1820.29 1.05 0.125866 0.110624 22546 126617 -1 1725 19 1462 2161 120605 28594 2.98817 2.98817 -114.832 -2.98817 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0306623 0.0268151 149 93 31 31 92 31 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 3.53 vpr 62.83 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 30636 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 24.1 MiB 0.13 816 8626 2345 5890 391 62.8 MiB 0.09 0.00 3.06096 -106.925 -3.06096 3.06096 0.66 0.000771747 0.000711674 0.0335877 0.0311243 32 1881 18 6.64007e+06 226044 554710. 1919.41 0.82 0.109529 0.0962034 22834 132086 -1 1713 18 1004 1603 101645 22931 2.71377 2.71377 -106.782 -2.71377 0 0 701300. 2426.64 0.24 0.06 0.11 -1 -1 0.24 0.0246674 0.0216136 115 61 32 32 60 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 3.84 vpr 62.77 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30352 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.1 MiB 0.17 920 11296 3024 7326 946 62.8 MiB 0.11 0.00 3.5031 -121.121 -3.5031 3.5031 0.69 0.00067064 0.00062308 0.0428212 0.0396721 30 2197 20 6.64007e+06 226044 526063. 1820.29 0.84 0.122987 0.108419 22546 126617 -1 1909 21 1232 2089 133938 29942 2.96097 2.96097 -117.747 -2.96097 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0241135 0.0212554 121 63 32 32 62 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 3.76 vpr 63.18 MiB 0.04 7032 -1 -1 1 0.04 -1 -1 30864 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64700 32 32 407 319 1 198 102 17 17 289 -1 unnamed_device 24.4 MiB 0.16 1027 12240 2965 8371 904 63.2 MiB 0.12 0.00 4.25676 -144.495 -4.25676 4.25676 0.70 0.000777029 0.00071904 0.0425064 0.0393801 32 2392 20 6.64007e+06 477204 554710. 1919.41 0.89 0.134741 0.118843 22834 132086 -1 2099 23 1665 2537 160076 37168 3.72263 3.72263 -141.75 -3.72263 0 0 701300. 2426.64 0.20 0.09 0.12 -1 -1 0.20 0.0351378 0.0307028 156 65 64 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 3.64 vpr 62.97 MiB 0.03 6992 -1 -1 1 0.03 -1 -1 30796 -1 -1 34 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64480 29 32 367 293 1 183 95 17 17 289 -1 unnamed_device 24.3 MiB 0.13 1021 16079 4076 10280 1723 63.0 MiB 0.15 0.00 3.7925 -111.563 -3.7925 3.7925 0.67 0.000725327 0.00067397 0.0549756 0.050968 32 2101 19 6.64007e+06 426972 554710. 1919.41 0.85 0.139148 0.123382 22834 132086 -1 1865 16 1001 1597 88076 21026 2.84896 2.84896 -105.689 -2.84896 0 0 701300. 2426.64 0.20 0.06 0.11 -1 -1 0.20 0.0245543 0.0215867 135 62 56 29 58 29 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 3.79 vpr 62.98 MiB 0.04 7212 -1 -1 1 0.03 -1 -1 30864 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 469 381 1 200 103 17 17 289 -1 unnamed_device 24.4 MiB 0.24 937 9020 1835 6701 484 63.0 MiB 0.10 0.00 4.29776 -145.038 -4.29776 4.29776 0.67 0.000869027 0.000806059 0.0353915 0.0328459 32 2371 22 6.64007e+06 489762 554710. 1919.41 0.91 0.139634 0.122072 22834 132086 -1 2068 19 1611 2604 140091 34146 3.67143 3.67143 -140.925 -3.67143 0 0 701300. 2426.64 0.19 0.08 0.08 -1 -1 0.19 0.0331293 0.0288967 158 127 0 0 128 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.79 vpr 62.60 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30536 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 31 32 259 212 1 146 80 17 17 289 -1 unnamed_device 24.0 MiB 0.08 804 11948 3966 6404 1578 62.6 MiB 0.09 0.00 3.08296 -103.61 -3.08296 3.08296 0.87 0.000442192 0.000407509 0.0325838 0.0300739 32 1717 16 6.64007e+06 213486 554710. 1919.41 0.83 0.0962766 0.0846278 22834 132086 -1 1581 14 702 1086 77432 18117 2.76197 2.76197 -105.567 -2.76197 0 0 701300. 2426.64 0.20 0.05 0.11 -1 -1 0.20 0.0178685 0.0157217 106 4 85 31 0 0 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.08 vpr 63.16 MiB 0.04 7192 -1 -1 1 0.03 -1 -1 30604 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 418 338 1 190 99 17 17 289 -1 unnamed_device 24.5 MiB 0.13 998 18111 4956 10747 2408 63.2 MiB 0.17 0.00 4.26296 -139.632 -4.26296 4.26296 0.71 0.000796088 0.000738535 0.0654025 0.0605972 26 2628 24 6.64007e+06 439530 477104. 1650.88 1.07 0.166973 0.147929 21682 110474 -1 2107 19 1449 2017 140855 31569 3.82303 3.82303 -140.04 -3.82303 0 0 585099. 2024.56 0.24 0.07 0.11 -1 -1 0.24 0.026397 0.023404 144 92 28 28 92 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 3.86 vpr 62.83 MiB 0.02 6976 -1 -1 1 0.04 -1 -1 30392 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64336 32 32 376 318 1 155 81 17 17 289 -1 unnamed_device 24.1 MiB 0.27 734 13381 4309 7077 1995 62.8 MiB 0.12 0.00 3.54047 -121.881 -3.54047 3.54047 0.74 0.000708949 0.000657299 0.0568016 0.0527418 28 1955 24 6.64007e+06 213486 500653. 1732.36 0.87 0.144087 0.127502 21970 115934 -1 1697 21 1324 1935 132804 30821 2.89097 2.89097 -118.953 -2.89097 0 0 612192. 2118.31 0.26 0.07 0.11 -1 -1 0.26 0.0259987 0.0230098 114 96 0 0 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 3.90 vpr 63.41 MiB 0.03 7076 -1 -1 1 0.04 -1 -1 30528 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 401 316 1 196 101 17 17 289 -1 unnamed_device 24.6 MiB 0.15 1102 9501 2041 6911 549 63.4 MiB 0.10 0.00 3.5841 -124.322 -3.5841 3.5841 0.66 0.000752955 0.000697737 0.0330413 0.0306536 30 2381 21 6.64007e+06 464646 526063. 1820.29 0.87 0.123593 0.108594 22546 126617 -1 2111 18 1317 1899 118195 27484 2.83157 2.83157 -119.372 -2.83157 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0280196 0.0245985 151 65 61 32 64 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 4.06 vpr 63.48 MiB 0.04 7344 -1 -1 1 0.04 -1 -1 31080 -1 -1 45 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 500 382 1 232 109 17 17 289 -1 unnamed_device 25.3 MiB 0.21 1244 16489 4012 10933 1544 63.5 MiB 0.17 0.00 4.96651 -168.366 -4.96651 4.96651 0.67 0.000941583 0.000874962 0.0619178 0.0574767 26 3231 20 6.64007e+06 565110 477104. 1650.88 1.12 0.180889 0.160187 21682 110474 -1 2698 22 2254 3574 248252 53999 4.51729 4.51729 -167.858 -4.51729 0 0 585099. 2024.56 0.17 0.11 0.12 -1 -1 0.17 0.0396664 0.0346019 188 96 64 32 96 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 3.47 vpr 62.02 MiB 0.02 6772 -1 -1 1 0.03 -1 -1 30332 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63508 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.4 MiB 0.07 483 10509 2545 7262 702 62.0 MiB 0.08 0.00 2.73878 -81.5531 -2.73878 2.73878 0.66 0.000525995 0.000489202 0.035482 0.0329578 28 1423 28 6.64007e+06 188370 500653. 1732.36 0.79 0.101881 0.0893624 21970 115934 -1 1097 14 575 775 50366 13199 1.93691 1.93691 -77.3174 -1.93691 0 0 612192. 2118.31 0.18 0.04 0.10 -1 -1 0.18 0.0161991 0.0141629 83 56 0 0 53 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.44 vpr 62.43 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30564 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63932 30 32 296 244 1 137 79 17 17 289 -1 unnamed_device 23.8 MiB 0.07 793 10388 3558 5136 1694 62.4 MiB 0.09 0.00 3.6815 -114.291 -3.6815 3.6815 0.67 0.000626932 0.000583834 0.0398927 0.0371144 32 1537 14 6.64007e+06 213486 554710. 1919.41 0.78 0.106468 0.0941768 22834 132086 -1 1455 21 839 1301 97116 21033 2.77977 2.77977 -108.411 -2.77977 0 0 701300. 2426.64 0.24 0.07 0.11 -1 -1 0.24 0.0284979 0.0249894 97 34 60 30 30 30 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.63 vpr 63.03 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30244 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.3 MiB 0.10 798 13966 5020 6560 2386 63.0 MiB 0.13 0.00 3.4859 -119.604 -3.4859 3.4859 0.66 0.000642883 0.00059607 0.0526055 0.0488668 32 2213 21 6.64007e+06 226044 554710. 1919.41 0.93 0.129633 0.115145 22834 132086 -1 1850 22 1358 2414 160891 37680 3.04997 3.04997 -120.272 -3.04997 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0285356 0.0250026 126 34 64 32 32 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 3.70 vpr 62.23 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30652 -1 -1 34 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63724 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.6 MiB 0.05 678 12127 3168 7672 1287 62.2 MiB 0.09 0.00 3.4089 -91.215 -3.4089 3.4089 0.85 0.00042113 0.00038627 0.0260045 0.0239686 26 1627 21 6.64007e+06 426972 477104. 1650.88 0.90 0.0926265 0.0808842 21682 110474 -1 1503 19 925 1437 93225 20838 2.72957 2.72957 -91.3787 -2.72957 0 0 585099. 2024.56 0.18 0.05 0.11 -1 -1 0.18 0.0208394 0.0181405 103 34 50 25 25 25 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 3.84 vpr 63.19 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30628 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64708 32 32 432 346 1 193 86 17 17 289 -1 unnamed_device 24.4 MiB 0.15 1064 14828 5337 7470 2021 63.2 MiB 0.16 0.00 4.34676 -140.278 -4.34676 4.34676 0.67 0.000803409 0.000745046 0.0682914 0.0633313 32 2281 21 6.64007e+06 276276 554710. 1919.41 0.89 0.165001 0.146374 22834 132086 -1 2035 19 1399 2460 137523 32018 3.52923 3.52923 -133.59 -3.52923 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0297377 0.0265557 149 94 32 32 94 32 +fixed_k6_N8_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 5.70 vpr 63.16 MiB 0.05 7076 -1 -1 1 0.04 -1 -1 30540 -1 -1 39 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64672 31 32 421 339 1 193 102 17 17 289 -1 unnamed_device 24.5 MiB 0.17 786 10336 2273 7345 718 63.2 MiB 0.11 0.00 3.53327 -114.261 -3.53327 3.53327 0.67 0.000788152 0.000722293 0.0373816 0.0345616 30 2199 31 6.64007e+06 489762 526063. 1820.29 2.78 0.25135 0.217409 22546 126617 -1 1650 23 1762 2785 152161 37464 3.06897 3.06897 -119.584 -3.06897 0 0 666494. 2306.21 0.23 0.08 0.13 -1 -1 0.23 0.0342362 0.0298113 148 94 29 29 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_001.v common 3.95 vpr 62.78 MiB 0.04 7120 -1 -1 1 0.04 -1 -1 31256 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 438 350 1 194 98 17 17 289 -1 unnamed_device 24.6 MiB 0.26 984 7523 1506 5708 309 62.8 MiB 0.09 0.00 3.92206 -133.487 -3.92206 3.92206 0.67 0.000809857 0.000751612 0.0307714 0.0285072 32 2531 21 6.65987e+06 431052 554710. 1919.41 0.97 0.131387 0.11518 22834 132086 -1 2078 21 1522 2473 160768 37876 3.62831 3.62831 -134.461 -3.62831 0 0 701300. 2426.64 0.20 0.09 0.11 -1 -1 0.20 0.0342461 0.0300056 151 96 32 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_002.v common 3.88 vpr 62.96 MiB 0.04 7172 -1 -1 1 0.04 -1 -1 30884 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64468 30 32 409 330 1 186 83 17 17 289 -1 unnamed_device 24.3 MiB 0.31 986 12323 4513 6271 1539 63.0 MiB 0.13 0.00 4.33507 -129.747 -4.33507 4.33507 0.66 0.000689789 0.000648782 0.0530906 0.0492175 32 2291 22 6.65987e+06 266238 554710. 1919.41 0.95 0.142457 0.125894 22834 132086 -1 2042 20 1405 2377 155284 35494 3.58131 3.58131 -126.449 -3.58131 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0307434 0.0269226 140 91 30 30 89 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_003.v common 3.89 vpr 62.88 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30680 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 387 309 1 186 98 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1040 16523 4439 10256 1828 62.9 MiB 0.15 0.00 3.41879 -119.689 -3.41879 3.41879 0.71 0.000568057 0.000520203 0.0493052 0.0454138 28 2533 25 6.65987e+06 431052 500653. 1732.36 0.99 0.140946 0.124491 21970 115934 -1 2140 19 1348 2193 153838 34557 3.07945 3.07945 -120.894 -3.07945 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0286435 0.0250887 141 65 54 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_004.v common 4.35 vpr 62.66 MiB 0.04 7048 -1 -1 1 0.03 -1 -1 30808 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 29 32 343 267 1 184 83 17 17 289 -1 unnamed_device 24.1 MiB 0.10 793 11603 2857 6819 1927 62.7 MiB 0.10 0.00 4.2977 -123.649 -4.2977 4.2977 0.73 0.000525999 0.000482547 0.0395578 0.0364437 32 2268 23 6.65987e+06 278916 554710. 1919.41 1.46 0.170582 0.148691 22834 132086 -1 1742 21 1503 2661 171441 42537 3.53031 3.53031 -123.652 -3.53031 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0295433 0.0258738 138 34 87 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_005.v common 3.79 vpr 62.93 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 30628 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 376 288 1 195 84 17 17 289 -1 unnamed_device 24.3 MiB 0.17 1026 15456 4961 8586 1909 62.9 MiB 0.16 0.00 4.14936 -143.085 -4.14936 4.14936 0.69 0.000575351 0.00052724 0.0645176 0.0598633 32 2512 20 6.65987e+06 253560 554710. 1919.41 0.96 0.152575 0.135691 22834 132086 -1 2183 20 1629 2965 184980 43101 3.72143 3.72143 -143.958 -3.72143 0 0 701300. 2426.64 0.20 0.09 0.11 -1 -1 0.20 0.0302776 0.0266499 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_006.v common 4.17 vpr 62.71 MiB 0.04 7044 -1 -1 1 0.03 -1 -1 30696 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 32 32 402 316 1 199 101 17 17 289 -1 unnamed_device 24.3 MiB 0.23 1029 9501 1978 7135 388 62.7 MiB 0.10 0.00 3.43623 -117.882 -3.43623 3.43623 0.87 0.000591942 0.000541892 0.0267584 0.0246156 32 2299 21 6.65987e+06 469086 554710. 1919.41 0.94 0.112624 0.0985343 22834 132086 -1 1960 18 1138 1826 110766 26044 2.58711 2.58711 -111.728 -2.58711 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0286585 0.0252141 154 64 63 32 63 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_007.v common 3.41 vpr 61.99 MiB 0.03 6876 -1 -1 1 0.03 -1 -1 30736 -1 -1 19 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63480 27 32 269 226 1 135 78 17 17 289 -1 unnamed_device 23.4 MiB 0.17 580 13026 4344 6329 2353 62.0 MiB 0.11 0.00 3.7565 -98.351 -3.7565 3.7565 0.66 0.000565436 0.000525068 0.0462317 0.0429684 30 1363 17 6.65987e+06 240882 526063. 1820.29 0.76 0.111049 0.0984808 22546 126617 -1 1141 17 746 1262 72003 17310 2.66236 2.66236 -90.1914 -2.66236 0 0 666494. 2306.21 0.20 0.05 0.11 -1 -1 0.20 0.0207107 0.0181263 96 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_008.v common 4.83 vpr 62.89 MiB 0.03 7000 -1 -1 1 0.05 -1 -1 30388 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64404 31 32 317 242 1 185 96 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1006 10170 2426 6636 1108 62.9 MiB 0.10 0.00 3.27903 -106.33 -3.27903 3.27903 0.66 0.000672402 0.000624141 0.0333433 0.0309567 26 2558 20 6.65987e+06 418374 477104. 1650.88 2.11 0.193508 0.168027 21682 110474 -1 2175 21 1235 2133 160953 37086 2.70877 2.70877 -104.977 -2.70877 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.027673 0.0241754 139 4 115 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_009.v common 3.62 vpr 62.62 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64124 31 32 338 292 1 148 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 870 11571 3268 6617 1686 62.6 MiB 0.11 0.00 3.07084 -101.313 -3.07084 3.07084 0.68 0.000662249 0.000615315 0.0479158 0.0445526 32 1682 14 6.65987e+06 202848 554710. 1919.41 0.79 0.121247 0.107674 22834 132086 -1 1508 15 598 953 56322 13099 2.41305 2.41305 -95.5745 -2.41305 0 0 701300. 2426.64 0.20 0.05 0.11 -1 -1 0.20 0.0214657 0.0188458 105 85 0 0 84 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_010.v common 6.40 vpr 62.70 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30588 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 32 32 314 256 1 162 80 17 17 289 -1 unnamed_device 24.0 MiB 0.28 642 11432 4032 4649 2751 62.7 MiB 0.10 0.00 3.56921 -118.924 -3.56921 3.56921 0.66 0.000637935 0.000591996 0.0450169 0.0418363 38 1769 50 6.65987e+06 202848 638502. 2209.35 3.51 0.262112 0.226673 23986 155662 -1 1316 20 1137 1835 100989 26204 2.78757 2.78757 -107.253 -2.78757 0 0 851065. 2944.86 0.22 0.07 0.13 -1 -1 0.22 0.0258898 0.022656 121 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_011.v common 3.68 vpr 62.60 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30340 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 30 32 325 273 1 151 79 17 17 289 -1 unnamed_device 23.9 MiB 0.22 784 11571 3060 7609 902 62.6 MiB 0.11 0.00 3.4841 -113.76 -3.4841 3.4841 0.67 0.000637222 0.000590122 0.0460535 0.0427459 32 1534 17 6.65987e+06 215526 554710. 1919.41 0.86 0.108543 0.096434 22834 132086 -1 1420 22 899 1359 79730 19115 2.80877 2.80877 -105.886 -2.80877 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0280283 0.0244581 110 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_012.v common 3.65 vpr 62.61 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30732 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 331 280 1 156 93 17 17 289 -1 unnamed_device 23.9 MiB 0.25 841 11223 2602 8034 587 62.6 MiB 0.10 0.00 3.27957 -108.894 -3.27957 3.27957 0.67 0.000658418 0.000610904 0.0373341 0.0346601 30 1969 21 6.65987e+06 367662 526063. 1820.29 0.82 0.114697 0.101 22546 126617 -1 1680 19 1010 1712 102223 24005 2.40285 2.40285 -103.451 -2.40285 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0250694 0.0219002 114 65 25 25 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_013.v common 4.30 vpr 63.17 MiB 0.03 6988 -1 -1 1 0.04 -1 -1 30504 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 386 305 1 188 96 17 17 289 -1 unnamed_device 24.4 MiB 0.39 1002 18711 5900 10256 2555 63.2 MiB 0.17 0.00 3.50686 -122.446 -3.50686 3.50686 0.85 0.000747873 0.000693413 0.0667066 0.0617887 32 2213 20 6.65987e+06 405696 554710. 1919.41 0.87 0.155155 0.137784 22834 132086 -1 1984 20 1393 2373 141906 33308 2.87597 2.87597 -115.63 -2.87597 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0269469 0.0239565 143 58 64 32 57 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_014.v common 3.91 vpr 62.68 MiB 0.02 7104 -1 -1 1 0.04 -1 -1 30840 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64180 32 32 407 319 1 200 98 17 17 289 -1 unnamed_device 24.3 MiB 0.23 942 7973 1567 6126 280 62.7 MiB 0.09 0.00 4.02327 -135.611 -4.02327 4.02327 0.71 0.000778924 0.000723224 0.0303892 0.0281768 32 2463 23 6.65987e+06 431052 554710. 1919.41 0.92 0.12734 0.111593 22834 132086 -1 2016 20 1633 2650 158280 38505 3.39997 3.39997 -131.36 -3.39997 0 0 701300. 2426.64 0.22 0.10 0.11 -1 -1 0.22 0.0392355 0.0345123 156 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_015.v common 3.55 vpr 62.18 MiB 0.03 6768 -1 -1 1 0.03 -1 -1 30872 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63672 29 32 272 228 1 145 79 17 17 289 -1 unnamed_device 23.8 MiB 0.17 686 7177 1709 4538 930 62.2 MiB 0.07 0.00 3.15358 -93.6229 -3.15358 3.15358 0.66 0.000578567 0.000537896 0.0263679 0.0245397 28 1890 21 6.65987e+06 228204 500653. 1732.36 0.79 0.096075 0.0840891 21970 115934 -1 1585 20 1069 1771 119508 28987 2.52425 2.52425 -94.2612 -2.52425 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0235898 0.0207703 107 29 58 29 24 24 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_016.v common 3.93 vpr 63.04 MiB 0.03 6940 -1 -1 1 0.04 -1 -1 30556 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 32 32 401 315 1 192 84 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1074 13992 4161 7846 1985 63.0 MiB 0.15 0.00 3.5141 -125.301 -3.5141 3.5141 0.71 0.000782207 0.000725713 0.064171 0.0595943 32 2332 20 6.65987e+06 253560 554710. 1919.41 0.89 0.156783 0.139077 22834 132086 -1 2137 22 1625 2894 194889 44877 2.96397 2.96397 -121.461 -2.96397 0 0 701300. 2426.64 0.21 0.09 0.11 -1 -1 0.21 0.0338587 0.0296324 146 63 64 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_017.v common 4.49 vpr 62.73 MiB 0.02 7060 -1 -1 1 0.04 -1 -1 30464 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 383 303 1 185 98 17 17 289 -1 unnamed_device 24.1 MiB 0.39 934 18323 6450 8556 3317 62.7 MiB 0.16 0.00 3.6343 -123.732 -3.6343 3.6343 0.76 0.000742721 0.000688768 0.0660712 0.061252 30 2475 27 6.65987e+06 431052 526063. 1820.29 1.33 0.16768 0.148746 22546 126617 -1 1892 18 1292 1951 127583 30325 2.86377 2.86377 -118.76 -2.86377 0 0 666494. 2306.21 0.19 0.07 0.11 -1 -1 0.19 0.0278085 0.0244055 142 57 64 32 56 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_018.v common 3.86 vpr 62.71 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30316 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 339 284 1 162 94 17 17 289 -1 unnamed_device 24.2 MiB 0.21 832 15430 4777 8349 2304 62.7 MiB 0.13 0.00 2.83964 -101.748 -2.83964 2.83964 0.66 0.000666965 0.000617773 0.0508648 0.0471651 30 1919 16 6.65987e+06 380340 526063. 1820.29 0.80 0.126428 0.111958 22546 126617 -1 1612 17 885 1259 74659 17349 2.03391 2.03391 -95.1109 -2.03391 0 0 666494. 2306.21 0.23 0.06 0.11 -1 -1 0.23 0.025122 0.0220703 118 65 29 29 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_019.v common 3.63 vpr 61.80 MiB 0.04 6728 -1 -1 1 0.03 -1 -1 30464 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63284 30 32 226 208 1 119 77 17 17 289 -1 unnamed_device 23.3 MiB 0.12 661 10835 3152 6204 1479 61.8 MiB 0.08 0.00 2.60038 -85.2282 -2.60038 2.60038 0.66 0.000501783 0.000466873 0.0345213 0.0321001 28 1436 23 6.65987e+06 190170 500653. 1732.36 0.73 0.0911758 0.0803823 21970 115934 -1 1278 17 529 805 58886 13127 1.78065 1.78065 -77.3352 -1.78065 0 0 612192. 2118.31 0.26 0.04 0.12 -1 -1 0.26 0.0170081 0.015176 85 34 24 24 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_020.v common 3.84 vpr 62.64 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30708 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64144 31 32 335 280 1 154 79 17 17 289 -1 unnamed_device 23.9 MiB 0.26 855 13768 4604 7573 1591 62.6 MiB 0.13 0.00 3.94338 -122.155 -3.94338 3.94338 0.68 0.000655515 0.000608884 0.0557742 0.051772 32 1829 19 6.65987e+06 202848 554710. 1919.41 0.79 0.132774 0.11797 22834 132086 -1 1730 20 942 1423 114639 25219 3.01051 3.01051 -116.289 -3.01051 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0235032 0.0208459 113 64 31 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_021.v common 3.77 vpr 62.84 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30368 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 366 283 1 192 98 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1021 12248 3399 7922 927 62.8 MiB 0.13 0.00 3.9823 -134.861 -3.9823 3.9823 0.70 0.000747124 0.000693529 0.0441835 0.0409491 26 2525 24 6.65987e+06 431052 477104. 1650.88 0.91 0.136866 0.121491 21682 110474 -1 2141 20 1566 2244 151309 35309 3.51517 3.51517 -134.636 -3.51517 0 0 585099. 2024.56 0.24 0.09 0.11 -1 -1 0.24 0.0335682 0.0298563 145 34 91 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_022.v common 4.16 vpr 62.82 MiB 0.03 7292 -1 -1 1 0.04 -1 -1 30996 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 460 375 1 196 100 17 17 289 -1 unnamed_device 24.5 MiB 0.35 1084 15644 4587 8678 2379 62.8 MiB 0.16 0.00 3.46744 -121.209 -3.46744 3.46744 0.71 0.000653501 0.000599819 0.0532565 0.0490889 32 2447 22 6.65987e+06 456408 554710. 1919.41 0.97 0.156546 0.137465 22834 132086 -1 2212 21 1409 2142 147852 33125 2.97925 2.97925 -118.751 -2.97925 0 0 701300. 2426.64 0.21 0.08 0.11 -1 -1 0.21 0.0346221 0.03014 149 124 0 0 125 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_023.v common 3.30 vpr 61.82 MiB 0.03 6804 -1 -1 1 0.03 -1 -1 30872 -1 -1 17 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63304 26 32 198 186 1 109 75 17 17 289 -1 unnamed_device 23.2 MiB 0.13 410 10345 3142 6004 1199 61.8 MiB 0.07 0.00 2.61938 -68.655 -2.61938 2.61938 0.66 0.00044027 0.000409065 0.0304033 0.0282514 30 1108 22 6.65987e+06 215526 526063. 1820.29 0.73 0.0834375 0.0734683 22546 126617 -1 888 17 469 716 38565 9930 1.69465 1.69465 -62.5815 -1.69465 0 0 666494. 2306.21 0.19 0.04 0.13 -1 -1 0.19 0.0163544 0.0143584 77 30 26 26 22 22 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_024.v common 3.75 vpr 62.84 MiB 0.03 6928 -1 -1 1 0.04 -1 -1 30548 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 32 32 333 251 1 187 84 17 17 289 -1 unnamed_device 24.0 MiB 0.14 1123 11064 3077 6737 1250 62.8 MiB 0.12 0.00 4.10424 -135.549 -4.10424 4.10424 0.67 0.00069769 0.000646641 0.044399 0.041288 32 2404 19 6.65987e+06 253560 554710. 1919.41 0.87 0.126093 0.111474 22834 132086 -1 2089 21 1332 2370 153849 35730 3.62857 3.62857 -132.087 -3.62857 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0266758 0.0237224 137 3 122 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_025.v common 3.61 vpr 61.89 MiB 0.02 6580 -1 -1 1 0.03 -1 -1 30732 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63376 32 32 199 182 1 122 77 17 17 289 -1 unnamed_device 23.2 MiB 0.05 594 8553 1943 6358 252 61.9 MiB 0.07 0.00 2.22607 -81.0919 -2.22607 2.22607 0.70 0.000495642 0.000456382 0.0253334 0.0232968 28 1543 22 6.65987e+06 164814 500653. 1732.36 0.95 0.0784841 0.0692145 21970 115934 -1 1292 20 711 954 71831 17384 1.70465 1.70465 -78.692 -1.70465 0 0 612192. 2118.31 0.26 0.05 0.12 -1 -1 0.26 0.0174118 0.0154304 81 3 53 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_026.v common 3.98 vpr 62.83 MiB 0.03 6960 -1 -1 1 0.04 -1 -1 30732 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 376 288 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.06 1112 19189 6002 11213 1974 62.8 MiB 0.18 0.00 4.06247 -140.472 -4.06247 4.06247 0.69 0.000744009 0.000690756 0.0663818 0.061563 32 2411 22 6.65987e+06 418374 554710. 1919.41 0.99 0.157437 0.140248 22834 132086 -1 2123 21 1504 2349 152995 35139 3.40197 3.40197 -131.954 -3.40197 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0320186 0.02816 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_027.v common 4.02 vpr 62.82 MiB 0.05 6980 -1 -1 1 0.04 -1 -1 30352 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64328 32 32 337 253 1 196 99 17 17 289 -1 unnamed_device 24.2 MiB 0.15 1134 16059 4004 10217 1838 62.8 MiB 0.16 0.00 3.38184 -119.391 -3.38184 3.38184 0.72 0.000695036 0.000644717 0.0518514 0.0481474 30 2437 23 6.65987e+06 443730 526063. 1820.29 0.96 0.147979 0.131515 22546 126617 -1 2179 21 1463 2318 163790 35189 2.72851 2.72851 -114.216 -2.72851 0 0 666494. 2306.21 0.26 0.07 0.12 -1 -1 0.26 0.0260392 0.0230814 150 3 124 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_028.v common 4.54 vpr 62.75 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30800 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64256 32 32 407 319 1 197 99 17 17 289 -1 unnamed_device 24.3 MiB 0.14 1120 14463 4038 8924 1501 62.8 MiB 0.14 0.00 3.91784 -136.256 -3.91784 3.91784 0.84 0.000597887 0.000550968 0.0409703 0.0377049 28 2806 19 6.65987e+06 443730 500653. 1732.36 1.24 0.121101 0.107389 21970 115934 -1 2356 22 1771 2977 213637 48204 3.39471 3.39471 -133.275 -3.39471 0 0 612192. 2118.31 0.22 0.10 0.11 -1 -1 0.22 0.0355059 0.0311834 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_029.v common 3.99 vpr 62.21 MiB 0.02 6728 -1 -1 1 0.04 -1 -1 30352 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63708 32 32 294 246 1 149 79 17 17 289 -1 unnamed_device 23.7 MiB 0.06 736 8191 2107 5347 737 62.2 MiB 0.10 0.00 2.8895 -100.047 -2.8895 2.8895 0.94 0.00063045 0.000587323 0.0361614 0.0335167 28 2113 21 6.65987e+06 190170 500653. 1732.36 0.82 0.103867 0.091902 21970 115934 -1 1736 19 1086 1789 131278 30182 2.68571 2.68571 -101.716 -2.68571 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0251305 0.0220713 106 34 54 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_030.v common 4.02 vpr 62.47 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 30272 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63972 30 32 296 244 1 154 81 17 17 289 -1 unnamed_device 23.7 MiB 0.10 832 12156 3666 7026 1464 62.5 MiB 0.11 0.00 3.4951 -115.55 -3.4951 3.4951 0.94 0.000629505 0.000585111 0.0461092 0.0428379 32 1792 20 6.65987e+06 240882 554710. 1919.41 0.83 0.119501 0.105699 22834 132086 -1 1599 22 996 1470 107281 23804 2.68857 2.68857 -108.981 -2.68857 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.0234984 0.0207525 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_031.v common 4.15 vpr 62.29 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30504 -1 -1 20 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63780 28 32 278 232 1 150 80 17 17 289 -1 unnamed_device 23.8 MiB 0.14 590 7820 1903 5456 461 62.3 MiB 0.07 0.00 3.4309 -99.7277 -3.4309 3.4309 0.89 0.000468709 0.000432059 0.0230807 0.0213105 32 1656 29 6.65987e+06 253560 554710. 1919.41 0.99 0.0869079 0.0760854 22834 132086 -1 1383 23 966 1650 104339 25717 3.05117 3.05117 -100.91 -3.05117 0 0 701300. 2426.64 0.25 0.07 0.13 -1 -1 0.25 0.0272294 0.02379 107 34 56 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_032.v common 4.04 vpr 62.43 MiB 0.03 6788 -1 -1 1 0.03 -1 -1 30440 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63928 32 32 283 225 1 166 82 17 17 289 -1 unnamed_device 23.7 MiB 0.12 686 12008 2561 8162 1285 62.4 MiB 0.10 0.00 3.4859 -118.026 -3.4859 3.4859 0.73 0.00060558 0.00055982 0.0437999 0.04067 32 1972 24 6.65987e+06 228204 554710. 1919.41 0.93 0.126861 0.111927 22834 132086 -1 1565 21 1264 2020 127376 31055 2.84377 2.84377 -112.583 -2.84377 0 0 701300. 2426.64 0.21 0.09 0.14 -1 -1 0.21 0.0274682 0.024031 125 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_033.v common 4.05 vpr 62.32 MiB 0.03 6884 -1 -1 1 0.04 -1 -1 30608 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 31 32 303 249 1 162 94 17 17 289 -1 unnamed_device 23.7 MiB 0.09 778 11809 2809 7761 1239 62.3 MiB 0.11 0.00 3.29178 -109.233 -3.29178 3.29178 0.74 0.000642307 0.000595723 0.0374203 0.0347473 26 2427 40 6.65987e+06 393018 477104. 1650.88 1.19 0.138846 0.12188 21682 110474 -1 1858 19 1088 1832 129033 30476 2.67245 2.67245 -108.36 -2.67245 0 0 585099. 2024.56 0.24 0.06 0.11 -1 -1 0.24 0.022033 0.0195124 119 34 61 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_034.v common 3.62 vpr 62.70 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30376 -1 -1 30 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64204 29 32 312 264 1 154 91 17 17 289 -1 unnamed_device 23.9 MiB 0.21 717 8047 1725 5786 536 62.7 MiB 0.08 0.00 2.76744 -86.2128 -2.76744 2.76744 0.67 0.000619978 0.000575754 0.0267749 0.0248475 32 1705 18 6.65987e+06 380340 554710. 1919.41 0.79 0.0978938 0.0856813 22834 132086 -1 1450 20 903 1543 90770 21685 1.99625 1.99625 -80.9779 -1.99625 0 0 701300. 2426.64 0.31 0.05 0.14 -1 -1 0.31 0.0227226 0.0200643 109 61 29 29 57 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_035.v common 6.47 vpr 62.94 MiB 0.04 7012 -1 -1 1 0.04 -1 -1 30772 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 423 310 1 229 103 17 17 289 -1 unnamed_device 24.5 MiB 0.27 1246 13117 3185 8526 1406 62.9 MiB 0.16 0.00 4.16036 -141.523 -4.16036 4.16036 0.71 0.000864555 0.000795713 0.0485688 0.0450706 30 3125 23 6.65987e+06 494442 526063. 1820.29 3.35 0.299336 0.26066 22546 126617 -1 2520 20 1639 2694 184357 39392 3.56142 3.56142 -139.287 -3.56142 0 0 666494. 2306.21 0.28 0.08 0.12 -1 -1 0.28 0.0319486 0.0286203 179 29 128 32 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_036.v common 4.34 vpr 62.70 MiB 0.03 6944 -1 -1 1 0.04 -1 -1 30860 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 403 317 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.29 1041 9447 2232 6542 673 62.7 MiB 0.10 0.00 3.5061 -122.514 -3.5061 3.5061 0.90 0.000620537 0.000569646 0.0284186 0.0260929 32 2254 23 6.65987e+06 443730 554710. 1919.41 1.00 0.108864 0.0957115 22834 132086 -1 1977 20 1460 2276 137923 31974 2.73377 2.73377 -114.741 -2.73377 0 0 701300. 2426.64 0.24 0.08 0.13 -1 -1 0.24 0.0324833 0.0285051 152 65 62 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_037.v common 4.20 vpr 62.97 MiB 0.04 6960 -1 -1 1 0.03 -1 -1 30768 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64484 31 32 353 302 1 156 91 17 17 289 -1 unnamed_device 24.2 MiB 0.34 709 5599 957 4403 239 63.0 MiB 0.06 0.00 3.18838 -103.883 -3.18838 3.18838 0.70 0.000696039 0.000646129 0.021206 0.0196728 26 2069 23 6.65987e+06 354984 477104. 1650.88 1.08 0.107932 0.0949218 21682 110474 -1 1734 22 1118 1894 130432 31306 2.66645 2.66645 -105.962 -2.66645 0 0 585099. 2024.56 0.26 0.07 0.11 -1 -1 0.26 0.0257195 0.0226372 113 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_038.v common 4.05 vpr 62.86 MiB 0.04 7040 -1 -1 1 0.03 -1 -1 30576 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64364 31 32 391 309 1 194 84 17 17 289 -1 unnamed_device 24.2 MiB 0.21 1062 14541 4862 7202 2477 62.9 MiB 0.16 0.00 3.4921 -118.867 -3.4921 3.4921 0.71 0.000753908 0.000698472 0.05932 0.0548689 32 2253 21 6.65987e+06 266238 554710. 1919.41 0.96 0.152402 0.135257 22834 132086 -1 2006 21 1397 2447 144906 33302 2.75357 2.75357 -110.702 -2.75357 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0293248 0.0260044 148 64 60 30 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_039.v common 4.43 vpr 63.17 MiB 0.03 7252 -1 -1 1 0.03 -1 -1 30732 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 455 371 1 193 84 17 17 289 -1 unnamed_device 24.3 MiB 0.35 1075 7953 1851 5455 647 63.2 MiB 0.09 0.00 4.84238 -140.996 -4.84238 4.84238 0.89 0.000646012 0.000594336 0.0310751 0.0286682 30 2507 19 6.65987e+06 266238 526063. 1820.29 1.02 0.114101 0.100214 22546 126617 -1 1992 18 982 1671 90240 21461 3.71791 3.71791 -132.867 -3.71791 0 0 666494. 2306.21 0.20 0.07 0.11 -1 -1 0.20 0.0316306 0.0277568 149 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_040.v common 3.95 vpr 63.10 MiB 0.03 7144 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 31 32 413 333 1 188 84 17 17 289 -1 unnamed_device 24.3 MiB 0.43 977 8868 2457 6032 379 63.1 MiB 0.10 0.00 4.78027 -132.334 -4.78027 4.78027 0.66 0.000778918 0.000723535 0.0406047 0.0377652 30 2304 21 6.65987e+06 266238 526063. 1820.29 0.83 0.133661 0.117783 22546 126617 -1 1949 16 902 1473 81509 19863 3.58697 3.58697 -123.296 -3.58697 0 0 666494. 2306.21 0.30 0.06 0.13 -1 -1 0.30 0.0264958 0.023905 143 90 31 31 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_041.v common 4.19 vpr 62.73 MiB 0.03 7100 -1 -1 1 0.04 -1 -1 30672 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 31 32 391 309 1 193 96 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1043 11922 3052 7896 974 62.7 MiB 0.12 0.00 3.40784 -114.93 -3.40784 3.40784 0.71 0.000783366 0.000728249 0.0452477 0.042015 26 2817 26 6.65987e+06 418374 477104. 1650.88 1.02 0.142186 0.126134 21682 110474 -1 2287 21 1596 2751 197933 44494 2.70851 2.70851 -112.169 -2.70851 0 0 585099. 2024.56 0.27 0.09 0.11 -1 -1 0.27 0.0318963 0.0285023 146 64 60 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_042.v common 3.77 vpr 62.69 MiB 0.03 6936 -1 -1 1 0.04 -1 -1 31076 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 407 319 1 198 99 17 17 289 -1 unnamed_device 24.3 MiB 0.11 1091 9903 2241 6952 710 62.7 MiB 0.11 0.00 3.91784 -134.792 -3.91784 3.91784 0.68 0.00076469 0.000710335 0.0362324 0.0336288 30 2568 27 6.65987e+06 443730 526063. 1820.29 1.06 0.142423 0.125406 22546 126617 -1 2243 22 1656 2468 150693 34059 3.11831 3.11831 -129.225 -3.11831 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0334449 0.0293183 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_043.v common 4.38 vpr 63.12 MiB 0.03 7240 -1 -1 1 0.04 -1 -1 31028 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 496 380 1 232 104 17 17 289 -1 unnamed_device 24.9 MiB 0.29 1177 18648 4595 11838 2215 63.1 MiB 0.25 0.00 4.0593 -137.323 -4.0593 4.0593 0.73 0.000952448 0.000885828 0.0862796 0.0802164 30 2881 22 6.65987e+06 507120 526063. 1820.29 1.00 0.208286 0.185564 22546 126617 -1 2419 22 1764 2828 183437 40794 3.55237 3.55237 -137.679 -3.55237 0 0 666494. 2306.21 0.28 0.10 0.12 -1 -1 0.28 0.0420516 0.0374384 184 96 62 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_044.v common 3.79 vpr 62.66 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30836 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 305 250 1 158 81 17 17 289 -1 unnamed_device 23.9 MiB 0.14 685 11806 2914 7153 1739 62.7 MiB 0.11 0.00 3.55518 -111.493 -3.55518 3.55518 0.67 0.000628821 0.000583895 0.0452611 0.0420581 32 1835 33 6.65987e+06 228204 554710. 1919.41 0.93 0.131426 0.115827 22834 132086 -1 1583 20 1174 1973 124984 29383 2.95385 2.95385 -109.134 -2.95385 0 0 701300. 2426.64 0.30 0.06 0.13 -1 -1 0.30 0.0228757 0.020369 116 34 62 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_045.v common 4.03 vpr 62.96 MiB 0.03 7064 -1 -1 1 0.04 -1 -1 30608 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64472 31 32 395 311 1 196 99 17 17 289 -1 unnamed_device 24.6 MiB 0.27 976 9675 2155 7053 467 63.0 MiB 0.11 0.00 4.0281 -131.561 -4.0281 4.0281 0.66 0.000754741 0.000700087 0.0350062 0.032482 28 2800 23 6.65987e+06 456408 500653. 1732.36 1.14 0.135421 0.119137 21970 115934 -1 2335 23 1815 2849 191422 45193 3.92097 3.92097 -140.491 -3.92097 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0336104 0.0293364 150 64 62 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_046.v common 3.82 vpr 63.14 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 30772 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64652 32 32 397 313 1 196 97 17 17 289 -1 unnamed_device 24.3 MiB 0.15 1040 11641 3109 7665 867 63.1 MiB 0.13 0.00 3.62624 -117.445 -3.62624 3.62624 0.68 0.000744379 0.000690288 0.0424563 0.0393292 28 2881 23 6.65987e+06 418374 500653. 1732.36 0.97 0.147341 0.130093 21970 115934 -1 2374 22 1569 2833 206523 46866 2.91691 2.91691 -114.016 -2.91691 0 0 612192. 2118.31 0.23 0.09 0.11 -1 -1 0.23 0.032825 0.0287558 148 63 62 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_047.v common 4.41 vpr 62.88 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30616 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 345 257 1 194 84 17 17 289 -1 unnamed_device 24.3 MiB 0.16 853 8685 1897 5601 1187 62.9 MiB 0.08 0.00 4.14936 -138.467 -4.14936 4.14936 0.87 0.000565139 0.000519703 0.0287776 0.0265648 32 2846 29 6.65987e+06 253560 554710. 1919.41 1.18 0.109312 0.0962569 22834 132086 -1 2132 21 1702 3072 198892 49888 4.19723 4.19723 -147.07 -4.19723 0 0 701300. 2426.64 0.28 0.08 0.13 -1 -1 0.28 0.0273345 0.0243163 150 3 128 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_048.v common 4.08 vpr 63.04 MiB 0.03 7128 -1 -1 1 0.05 -1 -1 30596 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 32 32 424 343 1 190 98 17 17 289 -1 unnamed_device 24.3 MiB 0.36 1097 11798 3144 7589 1065 63.0 MiB 0.13 0.00 3.29555 -116.715 -3.29555 3.29555 0.67 0.000774773 0.000716941 0.0431598 0.0399699 32 2325 19 6.65987e+06 431052 554710. 1919.41 1.01 0.125906 0.111515 22834 132086 -1 2200 16 1223 1816 119367 28394 2.61645 2.61645 -112.638 -2.61645 0 0 701300. 2426.64 0.20 0.07 0.11 -1 -1 0.20 0.0268211 0.0236335 145 96 25 25 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_049.v common 3.92 vpr 62.84 MiB 0.02 6948 -1 -1 1 0.04 -1 -1 30576 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 32 32 395 311 1 194 99 17 17 289 -1 unnamed_device 24.4 MiB 0.32 1042 7623 1446 5778 399 62.8 MiB 0.10 0.00 3.5841 -121.365 -3.5841 3.5841 0.68 0.000761135 0.000705652 0.0291892 0.0271613 32 2567 22 6.65987e+06 443730 554710. 1919.41 0.91 0.12567 0.110276 22834 132086 -1 2194 19 1227 2101 124627 30198 2.95177 2.95177 -121.489 -2.95177 0 0 701300. 2426.64 0.20 0.08 0.13 -1 -1 0.20 0.0306794 0.0270246 146 61 64 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_050.v common 4.02 vpr 62.60 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30604 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 32 32 405 318 1 200 101 17 17 289 -1 unnamed_device 24.2 MiB 0.22 1118 19136 5296 11671 2169 62.6 MiB 0.19 0.00 3.42984 -118.83 -3.42984 3.42984 0.72 0.00079631 0.000740067 0.066652 0.0617702 32 2326 23 6.65987e+06 469086 554710. 1919.41 0.88 0.161599 0.14334 22834 132086 -1 2112 19 1439 2211 130905 31609 2.67731 2.67731 -110.312 -2.67731 0 0 701300. 2426.64 0.30 0.07 0.13 -1 -1 0.30 0.0287871 0.0257516 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_051.v common 4.21 vpr 62.44 MiB 0.03 6976 -1 -1 1 0.04 -1 -1 30680 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 376 288 1 194 99 17 17 289 -1 unnamed_device 24.1 MiB 0.08 1049 17883 5721 9099 3063 62.4 MiB 0.19 0.00 4.02327 -139.097 -4.02327 4.02327 0.86 0.000803938 0.000740839 0.0661619 0.0612812 32 2330 25 6.65987e+06 443730 554710. 1919.41 1.02 0.154203 0.137508 22834 132086 -1 2032 21 1543 2543 156952 35810 3.36277 3.36277 -132.649 -3.36277 0 0 701300. 2426.64 0.28 0.07 0.13 -1 -1 0.28 0.0281484 0.0250417 150 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_052.v common 4.07 vpr 62.62 MiB 0.05 7036 -1 -1 1 0.04 -1 -1 30928 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64124 32 32 407 319 1 197 101 17 17 289 -1 unnamed_device 24.2 MiB 0.16 1032 17491 4961 10150 2380 62.6 MiB 0.16 0.00 3.95704 -138.916 -3.95704 3.95704 0.77 0.000767262 0.000710851 0.0559091 0.0515705 32 2231 23 6.65987e+06 469086 554710. 1919.41 0.91 0.141231 0.125216 22834 132086 -1 2068 21 1621 2526 163715 37323 3.24951 3.24951 -131.523 -3.24951 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.032207 0.0282018 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_053.v common 4.02 vpr 62.91 MiB 0.04 7252 -1 -1 1 0.04 -1 -1 30704 -1 -1 34 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64420 31 32 449 367 1 193 97 17 17 289 -1 unnamed_device 24.7 MiB 0.34 1081 15859 4297 9232 2330 62.9 MiB 0.16 0.00 4.24338 -127.817 -4.24338 4.24338 0.68 0.000817908 0.000759136 0.0577506 0.0533227 28 2730 22 6.65987e+06 431052 500653. 1732.36 0.92 0.157534 0.138639 21970 115934 -1 2358 20 1282 2320 159924 36642 3.54225 3.54225 -126.979 -3.54225 0 0 612192. 2118.31 0.26 0.09 0.11 -1 -1 0.26 0.0347167 0.0306813 145 122 0 0 122 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_054.v common 3.82 vpr 62.82 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30600 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 32 32 432 346 1 195 84 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1088 15822 4733 9518 1571 62.8 MiB 0.17 0.00 4.01118 -127.976 -4.01118 4.01118 0.68 0.000800306 0.000742583 0.0726499 0.0673838 32 2356 19 6.65987e+06 253560 554710. 1919.41 0.89 0.158254 0.140987 22834 132086 -1 2133 21 1730 3158 197610 44614 3.06545 3.06545 -122.949 -3.06545 0 0 701300. 2426.64 0.20 0.09 0.11 -1 -1 0.20 0.0341966 0.0299716 149 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_055.v common 3.70 vpr 62.39 MiB 0.02 6772 -1 -1 1 0.04 -1 -1 30800 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63892 32 32 312 255 1 166 94 17 17 289 -1 unnamed_device 23.9 MiB 0.06 798 8401 2034 5819 548 62.4 MiB 0.09 0.00 3.27158 -111.236 -3.27158 3.27158 0.66 0.000650112 0.000596861 0.0274939 0.0255188 30 1935 19 6.65987e+06 380340 526063. 1820.29 0.86 0.106462 0.0934114 22546 126617 -1 1703 21 1108 1802 99797 24547 2.48705 2.48705 -106.7 -2.48705 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0244062 0.0216845 124 34 63 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_056.v common 4.32 vpr 62.73 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30632 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 370 314 1 164 82 17 17 289 -1 unnamed_device 23.9 MiB 0.29 912 11830 3154 7792 884 62.7 MiB 0.11 0.00 3.41618 -118.934 -3.41618 3.41618 0.87 0.000541779 0.000497933 0.0385265 0.0354681 32 2036 19 6.65987e+06 228204 554710. 1919.41 0.95 0.115986 0.102025 22834 132086 -1 1899 16 1010 1604 99412 23305 2.87091 2.87091 -115.376 -2.87091 0 0 701300. 2426.64 0.29 0.07 0.13 -1 -1 0.29 0.0263621 0.0235985 121 94 0 0 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_057.v common 3.81 vpr 62.98 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 31092 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 469 351 1 233 104 17 17 289 -1 unnamed_device 24.8 MiB 0.16 1362 14988 3862 9734 1392 63.0 MiB 0.19 0.00 4.6627 -159.741 -4.6627 4.6627 0.67 0.000882102 0.000819066 0.0629664 0.0582191 32 2782 21 6.65987e+06 507120 554710. 1919.41 0.95 0.169242 0.149819 22834 132086 -1 2467 19 1823 2972 164892 39605 4.13737 4.13737 -155.664 -4.13737 0 0 701300. 2426.64 0.23 0.08 0.09 -1 -1 0.23 0.0348078 0.030925 187 65 96 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_058.v common 3.93 vpr 62.92 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 30584 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 368 284 1 194 95 17 17 289 -1 unnamed_device 24.3 MiB 0.24 954 14567 4735 7432 2400 62.9 MiB 0.14 0.00 3.51422 -121.562 -3.51422 3.51422 0.67 0.000724331 0.000672273 0.0519334 0.0481984 32 2261 21 6.65987e+06 393018 554710. 1919.41 0.97 0.146389 0.130017 22834 132086 -1 2014 19 1360 2004 137120 31779 3.04531 3.04531 -117.649 -3.04531 0 0 701300. 2426.64 0.21 0.07 0.11 -1 -1 0.21 0.0287747 0.0252872 146 34 92 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_059.v common 3.57 vpr 62.36 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30488 -1 -1 30 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63852 30 32 296 244 1 158 92 17 17 289 -1 unnamed_device 23.8 MiB 0.10 839 17066 5534 9253 2279 62.4 MiB 0.14 0.00 3.49012 -114.14 -3.49012 3.49012 0.67 0.000614337 0.000571549 0.0530464 0.0492479 32 1758 21 6.65987e+06 380340 554710. 1919.41 0.83 0.128259 0.113906 22834 132086 -1 1633 18 954 1515 100389 23026 2.99317 2.99317 -112.051 -2.99317 0 0 701300. 2426.64 0.24 0.06 0.13 -1 -1 0.24 0.0230549 0.0202335 115 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_060.v common 4.54 vpr 63.13 MiB 0.03 7404 -1 -1 1 0.04 -1 -1 31168 -1 -1 43 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64644 32 32 531 413 1 232 107 17 17 289 -1 unnamed_device 24.9 MiB 0.54 1333 18829 5161 11634 2034 63.1 MiB 0.20 0.00 4.64147 -157.361 -4.64147 4.64147 0.67 0.000951491 0.000882967 0.074324 0.0687939 30 2806 24 6.65987e+06 545154 526063. 1820.29 1.08 0.192824 0.171167 22546 126617 -1 2369 21 1942 2888 139173 34569 4.05017 4.05017 -152.332 -4.05017 0 0 666494. 2306.21 0.28 0.10 0.13 -1 -1 0.28 0.0462179 0.0410155 186 127 32 32 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_061.v common 4.11 vpr 62.55 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30652 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 376 288 1 194 100 17 17 289 -1 unnamed_device 24.2 MiB 0.24 1044 16340 4500 10034 1806 62.6 MiB 0.14 0.00 4.15932 -143.209 -4.15932 4.15932 0.83 0.000591941 0.000546387 0.0435542 0.0400724 28 2411 21 6.65987e+06 456408 500653. 1732.36 1.01 0.13419 0.118558 21970 115934 -1 2188 22 1761 2498 180658 40118 3.42003 3.42003 -137.968 -3.42003 0 0 612192. 2118.31 0.24 0.08 0.11 -1 -1 0.24 0.0286294 0.0254442 151 34 96 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_062.v common 3.88 vpr 62.46 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30648 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63964 32 32 283 225 1 164 95 17 17 289 -1 unnamed_device 23.9 MiB 0.07 722 13703 3609 8489 1605 62.5 MiB 0.12 0.00 3.4859 -117.474 -3.4859 3.4859 0.82 0.000621153 0.000577249 0.0421671 0.0391143 28 2302 24 6.65987e+06 393018 500653. 1732.36 0.95 0.119613 0.105651 21970 115934 -1 1789 23 1441 2346 155111 36967 3.08417 3.08417 -121.982 -3.08417 0 0 612192. 2118.31 0.19 0.08 0.11 -1 -1 0.19 0.0281824 0.0246225 123 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_063.v common 3.90 vpr 63.11 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 31060 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 438 320 1 235 105 17 17 289 -1 unnamed_device 24.7 MiB 0.18 1337 12702 3419 8223 1060 63.1 MiB 0.14 0.00 4.90437 -166.477 -4.90437 4.90437 0.72 0.000842991 0.000782395 0.0473411 0.0439811 30 3011 23 6.65987e+06 519798 526063. 1820.29 1.04 0.157142 0.138761 22546 126617 -1 2460 21 1844 3246 197750 44383 4.43083 4.43083 -163.127 -4.43083 0 0 666494. 2306.21 0.19 0.10 0.09 -1 -1 0.19 0.0362833 0.0318071 188 34 128 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_064.v common 4.01 vpr 62.22 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30532 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63712 32 32 283 225 1 162 80 17 17 289 -1 unnamed_device 23.7 MiB 0.15 852 11260 3935 5447 1878 62.2 MiB 0.10 0.00 3.4749 -119.679 -3.4749 3.4749 0.94 0.000601775 0.000558753 0.0419359 0.0389768 32 2000 20 6.65987e+06 202848 554710. 1919.41 1.03 0.116254 0.102989 22834 132086 -1 1721 18 1099 1731 121572 28328 2.77657 2.77657 -115.008 -2.77657 0 0 701300. 2426.64 0.20 0.06 0.13 -1 -1 0.20 0.0230476 0.0202132 121 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_065.v common 3.49 vpr 62.33 MiB 0.02 6788 -1 -1 1 0.03 -1 -1 30552 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63828 30 32 296 244 1 157 93 17 17 289 -1 unnamed_device 23.8 MiB 0.19 707 8073 1842 5622 609 62.3 MiB 0.08 0.00 3.47387 -110.471 -3.47387 3.47387 0.65 0.0006336 0.000586687 0.0259048 0.0240679 28 2017 19 6.65987e+06 393018 500653. 1732.36 0.83 0.0974133 0.085295 21970 115934 -1 1618 21 1088 1844 122152 28807 2.85097 2.85097 -109.716 -2.85097 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0235237 0.0207053 113 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_066.v common 3.73 vpr 63.01 MiB 0.04 7248 -1 -1 1 0.04 -1 -1 30576 -1 -1 33 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64520 29 32 393 319 1 182 94 17 17 289 -1 unnamed_device 24.3 MiB 0.30 964 15856 4550 8712 2594 63.0 MiB 0.15 0.00 3.50895 -109.722 -3.50895 3.50895 0.63 0.000727704 0.000674002 0.0568509 0.0526485 30 2020 23 6.65987e+06 418374 526063. 1820.29 0.83 0.144392 0.127694 22546 126617 -1 1687 19 1058 1807 92981 22149 2.43937 2.43937 -98.0163 -2.43937 0 0 666494. 2306.21 0.20 0.06 0.11 -1 -1 0.20 0.0284182 0.0249134 133 88 29 29 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_067.v common 3.76 vpr 63.11 MiB 0.02 6940 -1 -1 1 0.04 -1 -1 30856 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 407 319 1 194 84 17 17 289 -1 unnamed_device 24.4 MiB 0.13 1002 7770 1874 5369 527 63.1 MiB 0.10 0.00 4.0593 -140.547 -4.0593 4.0593 0.67 0.000773134 0.000716671 0.0352719 0.0327579 32 2257 23 6.65987e+06 253560 554710. 1919.41 0.94 0.130111 0.114317 22834 132086 -1 2066 22 1747 2656 183300 40144 3.61717 3.61717 -143.839 -3.61717 0 0 701300. 2426.64 0.26 0.09 0.13 -1 -1 0.26 0.0346124 0.0303602 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_068.v common 4.29 vpr 62.57 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30884 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64076 32 32 407 319 1 195 98 17 17 289 -1 unnamed_device 24.2 MiB 0.52 1039 19223 6359 10018 2846 62.6 MiB 0.18 0.00 4.06007 -140.169 -4.06007 4.06007 0.69 0.000774714 0.000719386 0.0683058 0.0633178 28 2739 23 6.65987e+06 431052 500653. 1732.36 0.96 0.165547 0.147115 21970 115934 -1 2282 22 1735 3040 215875 49047 3.40497 3.40497 -135.143 -3.40497 0 0 612192. 2118.31 0.18 0.10 0.10 -1 -1 0.18 0.0338432 0.0296192 152 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_069.v common 3.74 vpr 62.69 MiB 0.02 6912 -1 -1 1 0.04 -1 -1 30648 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64192 32 32 345 287 1 161 94 17 17 289 -1 unnamed_device 23.8 MiB 0.23 697 8614 1900 5780 934 62.7 MiB 0.08 0.00 3.41884 -113.998 -3.41884 3.41884 0.67 0.00067741 0.000627692 0.0296404 0.0275174 32 1762 22 6.65987e+06 380340 554710. 1919.41 0.89 0.111985 0.0982206 22834 132086 -1 1490 21 1146 1831 110865 26449 2.62931 2.62931 -105.315 -2.62931 0 0 701300. 2426.64 0.29 0.06 0.13 -1 -1 0.29 0.025905 0.0230742 120 65 32 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_070.v common 3.66 vpr 62.69 MiB 0.02 6968 -1 -1 1 0.04 -1 -1 30776 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 31 32 353 302 1 152 80 17 17 289 -1 unnamed_device 24.0 MiB 0.30 800 12464 4465 5577 2422 62.7 MiB 0.12 0.00 3.46898 -107.312 -3.46898 3.46898 0.67 0.000674236 0.000626047 0.0514264 0.0477691 32 1710 19 6.65987e+06 215526 554710. 1919.41 0.82 0.116446 0.103536 22834 132086 -1 1528 18 877 1604 88893 21988 2.63825 2.63825 -102.88 -2.63825 0 0 701300. 2426.64 0.23 0.03 0.11 -1 -1 0.23 0.0143495 0.012801 109 90 0 0 89 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_071.v common 3.90 vpr 62.89 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30604 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64396 30 32 374 297 1 186 95 17 17 289 -1 unnamed_device 24.3 MiB 0.20 996 12623 3384 8308 931 62.9 MiB 0.12 0.00 3.33164 -109.888 -3.33164 3.33164 0.69 0.000571822 0.000525001 0.0391006 0.0359473 26 2368 20 6.65987e+06 418374 477104. 1650.88 1.16 0.123835 0.110342 21682 110474 -1 2035 17 1098 1765 123133 27787 2.76451 2.76451 -109.244 -2.76451 0 0 585099. 2024.56 0.17 0.07 0.06 -1 -1 0.17 0.0262294 0.0230668 137 60 60 30 57 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_072.v common 3.61 vpr 62.89 MiB 0.04 7136 -1 -1 1 0.03 -1 -1 30584 -1 -1 31 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64396 28 32 332 260 1 180 91 17 17 289 -1 unnamed_device 24.3 MiB 0.10 995 16207 5283 8775 2149 62.9 MiB 0.15 0.00 4.24344 -123.397 -4.24344 4.24344 0.66 0.000619855 0.000585222 0.0550649 0.0510672 28 2436 22 6.65987e+06 393018 500653. 1732.36 0.93 0.135965 0.120433 21970 115934 -1 2028 22 1463 2339 158495 36285 3.85951 3.85951 -127.829 -3.85951 0 0 612192. 2118.31 0.18 0.08 0.10 -1 -1 0.18 0.0274181 0.0241774 133 34 84 28 28 28 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_073.v common 4.20 vpr 62.62 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30460 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 30 32 325 273 1 157 80 17 17 289 -1 unnamed_device 23.9 MiB 0.35 727 13152 3808 7208 2136 62.6 MiB 0.11 0.00 3.5343 -112.204 -3.5343 3.5343 0.87 0.000498039 0.000458715 0.0404664 0.0373081 30 1865 21 6.65987e+06 228204 526063. 1820.29 0.94 0.103708 0.0917184 22546 126617 -1 1629 18 1028 1738 95398 22780 2.94697 2.94697 -110.978 -2.94697 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0235774 0.0208146 114 63 30 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_074.v common 3.62 vpr 62.70 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 30572 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64204 32 32 361 308 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.27 910 8164 2057 5403 704 62.7 MiB 0.09 0.00 3.44398 -109.924 -3.44398 3.44398 0.66 0.000697412 0.000647115 0.035509 0.0329414 30 1920 20 6.65987e+06 202848 526063. 1820.29 0.79 0.119777 0.10538 22546 126617 -1 1664 19 890 1490 87526 20113 2.46025 2.46025 -100.155 -2.46025 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0265346 0.0232671 113 91 0 0 91 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_075.v common 3.96 vpr 62.72 MiB 0.03 7004 -1 -1 1 0.05 -1 -1 30392 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 335 251 1 196 98 17 17 289 -1 unnamed_device 24.1 MiB 0.11 1101 12023 3143 7728 1152 62.7 MiB 0.08 0.00 4.17558 -139.576 -4.17558 4.17558 0.78 0.000312791 0.000287563 0.0190935 0.0176017 28 2933 23 6.65987e+06 443730 500653. 1732.36 0.75 0.0686153 0.0605158 21970 115934 -1 2371 37 2425 4067 453715 168856 3.63342 3.63342 -138.408 -3.63342 0 0 612192. 2118.31 0.26 0.18 0.11 -1 -1 0.26 0.0441502 0.0391486 150 4 124 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_076.v common 6.28 vpr 62.75 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30840 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64252 32 32 407 319 1 197 98 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1037 13598 4125 8601 872 62.7 MiB 0.15 0.00 4.1263 -141.609 -4.1263 4.1263 0.74 0.000783841 0.000727004 0.0508479 0.0472038 26 2809 38 6.65987e+06 431052 477104. 1650.88 3.14 0.267381 0.233303 21682 110474 -1 2357 21 1689 3031 203039 47423 3.72337 3.72337 -141.619 -3.72337 0 0 585099. 2024.56 0.24 0.09 0.10 -1 -1 0.24 0.0328601 0.0287824 153 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_077.v common 8.80 vpr 62.73 MiB 0.02 7028 -1 -1 1 0.03 -1 -1 30664 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 407 319 1 194 98 17 17 289 -1 unnamed_device 24.3 MiB 0.34 1033 10448 2380 7653 415 62.7 MiB 0.11 0.00 4.16458 -142.258 -4.16458 4.16458 0.66 0.000773565 0.000717325 0.0385162 0.0356236 26 3477 39 6.65987e+06 431052 477104. 1650.88 5.73 0.26363 0.230485 21682 110474 -1 2421 21 1576 2683 233982 50961 4.18023 4.18023 -156.295 -4.18023 0 0 585099. 2024.56 0.17 0.10 0.08 -1 -1 0.17 0.0329849 0.0289222 151 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_078.v common 4.05 vpr 62.59 MiB 0.03 7048 -1 -1 1 0.04 -1 -1 30624 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 399 315 1 196 101 17 17 289 -1 unnamed_device 24.2 MiB 0.26 982 9031 1878 6401 752 62.6 MiB 0.10 0.00 3.86706 -126.941 -3.86706 3.86706 0.87 0.000778249 0.000722774 0.032381 0.0300527 30 2443 22 6.65987e+06 469086 526063. 1820.29 0.90 0.124363 0.109153 22546 126617 -1 2075 23 1349 2400 127757 30638 3.22071 3.22071 -120.966 -3.22071 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0350666 0.0307078 148 65 60 30 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_079.v common 5.53 vpr 62.55 MiB 0.02 6888 -1 -1 1 0.03 -1 -1 30564 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 296 244 1 156 80 17 17 289 -1 unnamed_device 23.8 MiB 0.21 656 10400 2388 7389 623 62.6 MiB 0.07 0.00 3.50927 -110.79 -3.50927 3.50927 0.68 0.000276465 0.000254492 0.0255728 0.0236007 30 1917 19 6.65987e+06 228204 526063. 1820.29 2.62 0.165396 0.143138 22546 126617 -1 1487 23 903 1469 98326 23288 2.78877 2.78877 -107.374 -2.78877 0 0 666494. 2306.21 0.19 0.06 0.11 -1 -1 0.19 0.0275861 0.0240418 112 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_080.v common 3.94 vpr 63.03 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30664 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 30 32 383 303 1 191 84 17 17 289 -1 unnamed_device 24.4 MiB 0.22 986 11613 3437 7269 907 63.0 MiB 0.13 0.00 4.19776 -134.76 -4.19776 4.19776 0.86 0.000687602 0.000632946 0.0410349 0.0378451 32 2030 19 6.65987e+06 278916 554710. 1919.41 0.87 0.116046 0.102544 22834 132086 -1 1752 19 1266 1911 102523 24979 3.58223 3.58223 -131.273 -3.58223 0 0 701300. 2426.64 0.20 0.07 0.13 -1 -1 0.20 0.0287021 0.0251935 145 63 60 30 60 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_081.v common 3.78 vpr 62.94 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 31044 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64448 32 32 469 381 1 198 103 17 17 289 -1 unnamed_device 24.6 MiB 0.25 1052 13117 2855 8842 1420 62.9 MiB 0.12 0.00 3.91498 -132.986 -3.91498 3.91498 0.67 0.0008528 0.000792219 0.0494536 0.0459297 32 2582 21 6.65987e+06 494442 554710. 1919.41 0.90 0.150678 0.132578 22834 132086 -1 2126 18 1610 2686 168837 39770 3.40585 3.40585 -131.35 -3.40585 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0310261 0.0271921 154 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_082.v common 6.14 vpr 62.68 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30992 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 31 32 425 341 1 189 94 17 17 289 -1 unnamed_device 24.3 MiB 0.19 1048 9679 2436 6757 486 62.7 MiB 0.11 0.00 3.91106 -131.073 -3.91106 3.91106 0.87 0.000782478 0.000726724 0.0380592 0.0352065 26 2884 24 6.65987e+06 393018 477104. 1650.88 3.08 0.209279 0.182714 21682 110474 -1 2262 26 1642 2638 193047 44181 3.75751 3.75751 -137.579 -3.75751 0 0 585099. 2024.56 0.25 0.09 0.11 -1 -1 0.25 0.0349298 0.0309525 146 94 31 31 93 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_083.v common 4.25 vpr 62.78 MiB 0.03 7172 -1 -1 1 0.04 -1 -1 30688 -1 -1 30 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 404 328 1 182 92 17 17 289 -1 unnamed_device 24.2 MiB 0.35 967 14375 3613 8859 1903 62.8 MiB 0.14 0.00 3.7785 -114.4 -3.7785 3.7785 0.74 0.00075059 0.00069684 0.0554195 0.0514495 30 2034 21 6.65987e+06 380340 526063. 1820.29 0.86 0.146163 0.129543 22546 126617 -1 1744 18 955 1595 85112 20222 2.81476 2.81476 -105.804 -2.81476 0 0 666494. 2306.21 0.28 0.06 0.13 -1 -1 0.28 0.0258398 0.0230244 136 92 26 26 90 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_084.v common 3.93 vpr 62.70 MiB 0.03 6988 -1 -1 1 0.04 -1 -1 30840 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64208 32 32 407 319 1 198 85 17 17 289 -1 unnamed_device 24.3 MiB 0.24 1103 13477 4009 7448 2020 62.7 MiB 0.14 0.00 4.11944 -143.283 -4.11944 4.11944 0.67 0.000759886 0.000701789 0.0586615 0.054289 32 2500 22 6.65987e+06 266238 554710. 1919.41 0.93 0.152559 0.134939 22834 132086 -1 2297 21 1843 3219 199235 45977 3.49397 3.49397 -136.995 -3.49397 0 0 701300. 2426.64 0.21 0.09 0.13 -1 -1 0.21 0.0331095 0.0290958 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_085.v common 3.72 vpr 63.00 MiB 0.05 7220 -1 -1 1 0.04 -1 -1 30608 -1 -1 34 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 29 32 387 316 1 179 95 17 17 289 -1 unnamed_device 24.4 MiB 0.20 870 10463 2796 6767 900 63.0 MiB 0.11 0.00 3.39684 -102.663 -3.39684 3.39684 0.67 0.000727939 0.000675141 0.0378525 0.0350365 32 1916 20 6.65987e+06 431052 554710. 1919.41 0.84 0.12343 0.108341 22834 132086 -1 1633 22 1169 1965 102801 25187 2.66151 2.66151 -96.9329 -2.66151 0 0 701300. 2426.64 0.27 0.06 0.13 -1 -1 0.27 0.0274915 0.0243038 134 88 26 26 85 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_086.v common 3.53 vpr 62.54 MiB 0.03 6780 -1 -1 1 0.04 -1 -1 30492 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 283 225 1 157 80 17 17 289 -1 unnamed_device 23.8 MiB 0.09 838 13496 3888 8529 1079 62.5 MiB 0.12 0.00 3.5031 -123.339 -3.5031 3.5031 0.69 0.000617732 0.000573993 0.0501814 0.0466605 32 2042 22 6.65987e+06 202848 554710. 1919.41 0.87 0.126305 0.112217 22834 132086 -1 1729 21 1086 1726 116139 26989 2.72057 2.72057 -115.312 -2.72057 0 0 701300. 2426.64 0.19 0.06 0.08 -1 -1 0.19 0.02267 0.0199568 116 3 96 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_087.v common 3.78 vpr 62.61 MiB 0.03 7124 -1 -1 1 0.04 -1 -1 30616 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 407 319 1 194 97 17 17 289 -1 unnamed_device 24.2 MiB 0.33 1015 16525 5345 8784 2396 62.6 MiB 0.16 0.00 4.18856 -142.192 -4.18856 4.18856 0.66 0.000789289 0.00073207 0.0603168 0.0558799 32 2360 20 6.65987e+06 418374 554710. 1919.41 0.90 0.156657 0.138714 22834 132086 -1 2021 15 1252 1908 126844 28933 3.60423 3.60423 -137.509 -3.60423 0 0 701300. 2426.64 0.19 0.04 0.08 -1 -1 0.19 0.0154142 0.0139301 150 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_088.v common 4.50 vpr 63.20 MiB 0.02 7044 -1 -1 1 0.04 -1 -1 30784 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64720 32 32 407 319 1 201 85 17 17 289 -1 unnamed_device 24.3 MiB 0.27 1026 16081 4881 8736 2464 63.2 MiB 0.16 0.00 4.23393 -146.239 -4.23393 4.23393 0.87 0.000598324 0.000550644 0.055582 0.0512092 32 2410 22 6.65987e+06 266238 554710. 1919.41 1.06 0.136523 0.121516 22834 132086 -1 2127 21 1661 2536 171688 39073 3.50243 3.50243 -138.783 -3.50243 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0302854 0.0269899 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_089.v common 4.52 vpr 62.41 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30668 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 32 32 315 267 1 158 93 17 17 289 -1 unnamed_device 23.8 MiB 0.24 688 16683 5557 7719 3407 62.4 MiB 0.13 0.00 3.44878 -105.048 -3.44878 3.44878 0.67 0.000634444 0.000587964 0.0529459 0.0491217 30 2275 33 6.65987e+06 367662 526063. 1820.29 1.55 0.146339 0.129451 22546 126617 -1 1601 22 1023 1528 115231 32870 2.62325 2.62325 -101.627 -2.62325 0 0 666494. 2306.21 0.26 0.06 0.12 -1 -1 0.26 0.0237268 0.0209215 111 55 32 32 54 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_090.v common 3.71 vpr 62.17 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30516 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63660 31 32 275 220 1 160 81 17 17 289 -1 unnamed_device 23.7 MiB 0.12 746 13556 4162 7429 1965 62.2 MiB 0.12 0.00 3.4529 -114.38 -3.4529 3.4529 0.67 0.000585163 0.000541998 0.0480044 0.0446381 30 2037 22 6.65987e+06 228204 526063. 1820.29 0.94 0.110329 0.0983772 22546 126617 -1 1714 18 1182 1890 112505 26536 3.06217 3.06217 -115.024 -3.06217 0 0 666494. 2306.21 0.22 0.06 0.12 -1 -1 0.22 0.0232567 0.0204436 118 4 93 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_091.v common 3.90 vpr 62.89 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30612 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64404 32 32 381 303 1 188 96 17 17 289 -1 unnamed_device 24.2 MiB 0.28 900 5133 854 4121 158 62.9 MiB 0.07 0.00 4.0123 -128.007 -4.0123 4.0123 0.68 0.000735135 0.00068226 0.0200655 0.0186378 32 2088 21 6.65987e+06 405696 554710. 1919.41 0.84 0.107641 0.0938147 22834 132086 -1 1925 22 1401 2154 135091 31618 3.37391 3.37391 -123.936 -3.37391 0 0 701300. 2426.64 0.20 0.08 0.12 -1 -1 0.20 0.0318914 0.0278643 138 59 60 32 58 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_092.v common 4.30 vpr 63.06 MiB 0.05 7224 -1 -1 1 0.03 -1 -1 30512 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 406 330 1 190 94 17 17 289 -1 unnamed_device 24.3 MiB 0.21 879 9892 2434 7009 449 63.1 MiB 0.11 0.00 4.11224 -123.302 -4.11224 4.11224 0.66 0.000760157 0.000704166 0.0380848 0.0353156 28 2711 37 6.65987e+06 380340 500653. 1732.36 1.39 0.154442 0.135732 21970 115934 -1 2256 21 1542 2517 200239 47426 3.59711 3.59711 -131.242 -3.59711 0 0 612192. 2118.31 0.26 0.09 0.12 -1 -1 0.26 0.0306269 0.0272636 134 88 28 28 88 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_093.v common 4.22 vpr 62.85 MiB 0.03 7096 -1 -1 1 0.04 -1 -1 30744 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 32 32 399 285 1 228 99 17 17 289 -1 unnamed_device 24.6 MiB 0.07 1224 16515 4921 9863 1731 62.9 MiB 0.17 0.00 4.82096 -159.28 -4.82096 4.82096 0.66 0.000783368 0.000726856 0.0600281 0.0557505 32 2797 21 6.65987e+06 443730 554710. 1919.41 1.37 0.18362 0.162204 22834 132086 -1 2530 19 1785 2878 218493 46808 4.04063 4.04063 -149.352 -4.04063 0 0 701300. 2426.64 0.19 0.05 0.10 -1 -1 0.19 0.0186057 0.016737 177 3 156 32 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_094.v common 3.90 vpr 62.82 MiB 0.03 7084 -1 -1 1 0.03 -1 -1 30704 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64328 30 32 371 295 1 184 94 17 17 289 -1 unnamed_device 24.1 MiB 0.26 1012 13726 3606 8436 1684 62.8 MiB 0.13 0.00 3.638 -113.448 -3.638 3.638 0.82 0.000551846 0.00050737 0.0395236 0.0363256 32 1948 22 6.65987e+06 405696 554710. 1919.41 0.85 0.12593 0.110542 22834 132086 -1 1752 20 1324 2050 127236 29550 2.68831 2.68831 -106.861 -2.68831 0 0 701300. 2426.64 0.22 0.07 0.12 -1 -1 0.22 0.0297882 0.0261193 136 59 60 30 56 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_095.v common 3.80 vpr 62.21 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30828 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 27 32 269 226 1 143 79 17 17 289 -1 unnamed_device 23.6 MiB 0.11 768 12754 4322 6521 1911 62.2 MiB 0.11 0.00 3.3979 -99.6122 -3.3979 3.3979 0.67 0.0005669 0.000527334 0.0457688 0.042585 32 1481 18 6.65987e+06 253560 554710. 1919.41 0.92 0.101077 0.0903089 22834 132086 -1 1356 19 857 1310 89800 20544 2.68651 2.68651 -94.694 -2.68651 0 0 701300. 2426.64 0.28 0.06 0.13 -1 -1 0.28 0.022722 0.0203155 107 34 54 27 27 27 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_096.v common 4.02 vpr 63.00 MiB 0.03 7260 -1 -1 1 0.04 -1 -1 30880 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 32 32 493 378 1 232 104 17 17 289 -1 unnamed_device 24.8 MiB 0.19 1366 15232 4128 9656 1448 63.0 MiB 0.16 0.00 4.15924 -136.806 -4.15924 4.15924 0.67 0.00091221 0.000846811 0.0595097 0.0551136 32 3131 25 6.65987e+06 507120 554710. 1919.41 0.95 0.175535 0.154678 22834 132086 -1 2770 20 1945 3543 231671 53471 3.40691 3.40691 -131.473 -3.40691 0 0 701300. 2426.64 0.29 0.11 0.13 -1 -1 0.29 0.0438573 0.0387959 184 95 62 31 95 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_097.v common 3.97 vpr 63.12 MiB 0.04 7188 -1 -1 1 0.05 -1 -1 30856 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 31 32 455 371 1 189 84 17 17 289 -1 unnamed_device 24.3 MiB 0.31 999 12894 3350 8149 1395 63.1 MiB 0.14 0.00 4.3007 -134.868 -4.3007 4.3007 0.66 0.000833205 0.000774166 0.0612516 0.0568927 32 2429 24 6.65987e+06 266238 554710. 1919.41 0.92 0.163881 0.144864 22834 132086 -1 2159 20 1339 2157 160570 36765 3.67831 3.67831 -136.038 -3.67831 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.03112 0.0277028 144 124 0 0 124 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_098.v common 3.69 vpr 62.80 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30648 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 355 304 1 151 80 17 17 289 -1 unnamed_device 24.1 MiB 0.28 739 9540 2469 6056 1015 62.8 MiB 0.12 0.00 3.43298 -108.977 -3.43298 3.43298 0.69 0.000682391 0.000633275 0.0479751 0.0444876 28 2010 20 6.65987e+06 202848 500653. 1732.36 0.81 0.129097 0.11406 21970 115934 -1 1745 21 1108 1721 132083 30765 2.79871 2.79871 -110.298 -2.79871 0 0 612192. 2118.31 0.23 0.07 0.11 -1 -1 0.23 0.0293105 0.0256313 109 89 0 0 89 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_099.v common 3.87 vpr 62.84 MiB 0.03 6868 -1 -1 1 0.03 -1 -1 30752 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64348 32 32 364 282 1 196 96 17 17 289 -1 unnamed_device 24.2 MiB 0.11 1126 15645 4217 9584 1844 62.8 MiB 0.15 0.00 4.2677 -137.429 -4.2677 4.2677 0.69 0.000731853 0.000672119 0.0545332 0.050556 28 2673 20 6.65987e+06 405696 500653. 1732.36 1.01 0.143737 0.127447 21970 115934 -1 2229 18 1231 1811 128133 30081 3.74157 3.74157 -134.345 -3.74157 0 0 612192. 2118.31 0.26 0.06 0.11 -1 -1 0.26 0.0249857 0.0223909 146 34 90 30 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_100.v common 3.83 vpr 63.06 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30876 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64576 31 32 443 336 1 220 99 17 17 289 -1 unnamed_device 24.7 MiB 0.16 1167 13551 3218 9177 1156 63.1 MiB 0.15 0.00 4.22766 -133.836 -4.22766 4.22766 0.67 0.000845477 0.000783685 0.0525606 0.0488057 32 2463 18 6.65987e+06 456408 554710. 1919.41 0.86 0.148165 0.130776 22834 132086 -1 2239 20 1524 2333 148489 34734 3.26071 3.26071 -128.474 -3.26071 0 0 701300. 2426.64 0.29 0.08 0.13 -1 -1 0.29 0.0340875 0.0298362 171 64 87 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_101.v common 3.67 vpr 62.85 MiB 0.03 7116 -1 -1 1 0.04 -1 -1 30680 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64360 30 32 373 297 1 186 95 17 17 289 -1 unnamed_device 24.1 MiB 0.10 1070 11111 2802 7426 883 62.9 MiB 0.11 0.00 3.62941 -110.797 -3.62941 3.62941 0.66 0.000713652 0.000661725 0.039536 0.0366905 26 2750 19 6.65987e+06 418374 477104. 1650.88 1.01 0.12672 0.111563 21682 110474 -1 2252 22 1185 2177 169204 37160 3.11031 3.11031 -111.368 -3.11031 0 0 585099. 2024.56 0.17 0.08 0.10 -1 -1 0.17 0.0306742 0.0267191 134 61 58 30 58 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_102.v common 3.84 vpr 62.64 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 30740 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 407 319 1 201 106 17 17 289 -1 unnamed_device 24.4 MiB 0.23 1074 12606 3053 8336 1217 62.6 MiB 0.13 0.00 4.0783 -140.694 -4.0783 4.0783 0.68 0.000781313 0.000724028 0.0417043 0.0387092 30 2464 23 6.65987e+06 532476 526063. 1820.29 0.98 0.138074 0.121803 22546 126617 -1 2068 23 1438 2304 127961 30130 3.57037 3.57037 -135.677 -3.57037 0 0 666494. 2306.21 0.19 0.08 0.11 -1 -1 0.19 0.0344089 0.0300805 157 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_103.v common 3.55 vpr 62.76 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30792 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 405 318 1 200 102 17 17 289 -1 unnamed_device 24.3 MiB 0.22 985 6766 1235 5165 366 62.8 MiB 0.08 0.00 3.41884 -116.445 -3.41884 3.41884 0.60 0.000774068 0.000717056 0.0248767 0.0230918 28 2671 24 6.65987e+06 481764 500653. 1732.36 0.91 0.120965 0.105837 21970 115934 -1 2235 22 1619 2508 167808 39712 2.75251 2.75251 -114.831 -2.75251 0 0 612192. 2118.31 0.23 0.09 0.11 -1 -1 0.23 0.0341331 0.0297728 155 65 63 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_104.v common 3.63 vpr 62.10 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30720 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63592 29 32 287 238 1 134 77 17 17 289 -1 unnamed_device 23.7 MiB 0.15 502 12791 3342 7797 1652 62.1 MiB 0.10 0.00 3.7595 -104.343 -3.7595 3.7595 0.70 0.000555377 0.000510211 0.0526259 0.0486906 32 1487 21 6.65987e+06 202848 554710. 1919.41 0.81 0.123832 0.109584 22834 132086 -1 1202 17 795 1155 73132 18321 2.90191 2.90191 -100.083 -2.90191 0 0 701300. 2426.64 0.25 0.05 0.13 -1 -1 0.25 0.0206649 0.018104 93 34 58 29 29 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_105.v common 3.70 vpr 62.52 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 30396 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64016 32 32 334 290 1 154 81 17 17 289 -1 unnamed_device 23.8 MiB 0.27 872 14431 4553 8297 1581 62.5 MiB 0.12 0.00 3.69338 -109.525 -3.69338 3.69338 0.67 0.000654352 0.000606235 0.0554633 0.0514516 32 1962 21 6.65987e+06 215526 554710. 1919.41 0.84 0.132533 0.117326 22834 132086 -1 1828 21 956 1422 111174 23915 2.62651 2.62651 -104.154 -2.62651 0 0 701300. 2426.64 0.20 0.07 0.14 -1 -1 0.20 0.0271017 0.0236109 111 82 0 0 82 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_106.v common 4.12 vpr 62.82 MiB 0.03 7024 -1 -1 1 0.04 -1 -1 30632 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 31 32 365 281 1 196 100 17 17 289 -1 unnamed_device 24.1 MiB 0.13 973 15876 4279 9893 1704 62.8 MiB 0.16 0.00 4.55701 -136.44 -4.55701 4.55701 0.77 0.000722696 0.000670489 0.0521746 0.0483983 32 2408 24 6.65987e+06 469086 554710. 1919.41 0.98 0.143432 0.12679 22834 132086 -1 2012 19 1361 2366 169568 38363 3.66411 3.66411 -133.55 -3.66411 0 0 701300. 2426.64 0.30 0.08 0.10 -1 -1 0.30 0.0273836 0.0245598 150 34 93 31 31 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_107.v common 3.84 vpr 62.28 MiB 0.02 6900 -1 -1 1 0.03 -1 -1 30608 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63772 29 32 297 254 1 150 92 17 17 289 -1 unnamed_device 23.8 MiB 0.30 621 11063 2736 7707 620 62.3 MiB 0.06 0.00 3.58224 -95.8028 -3.58224 3.58224 0.74 0.000275665 0.00025308 0.0166553 0.0153179 26 1931 24 6.65987e+06 393018 477104. 1650.88 0.89 0.0969144 0.0839105 21682 110474 -1 1552 20 987 1615 102426 25481 2.70145 2.70145 -99.7998 -2.70145 0 0 585099. 2024.56 0.17 0.06 0.10 -1 -1 0.17 0.0239064 0.0208677 108 56 29 29 52 26 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_108.v common 3.98 vpr 62.54 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64036 32 32 314 256 1 160 80 17 17 289 -1 unnamed_device 23.8 MiB 0.20 823 7992 1920 5681 391 62.5 MiB 0.09 0.00 3.5141 -118.56 -3.5141 3.5141 0.66 0.000643773 0.000598105 0.0323311 0.0300676 32 1972 23 6.65987e+06 202848 554710. 1919.41 1.30 0.133099 0.116281 22834 132086 -1 1698 20 1160 1929 123584 29340 2.70157 2.70157 -111.582 -2.70157 0 0 701300. 2426.64 0.20 0.08 0.08 -1 -1 0.20 0.0277146 0.0242693 119 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_109.v common 3.75 vpr 62.89 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 30576 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64396 31 32 387 307 1 189 99 17 17 289 -1 unnamed_device 24.2 MiB 0.23 1001 11955 3102 7859 994 62.9 MiB 0.14 0.00 3.4951 -117.77 -3.4951 3.4951 0.68 0.000743028 0.000688994 0.0468486 0.0431516 26 2272 21 6.65987e+06 456408 477104. 1650.88 0.81 0.135671 0.119663 21682 110474 -1 1883 18 1339 2017 124078 29129 2.78757 2.78757 -115.107 -2.78757 0 0 585099. 2024.56 0.23 0.06 0.11 -1 -1 0.23 0.0248807 0.022214 142 64 58 31 62 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_110.v common 3.79 vpr 62.50 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64004 31 32 308 262 1 148 79 17 17 289 -1 unnamed_device 23.8 MiB 0.33 876 12923 4161 7145 1617 62.5 MiB 0.11 0.00 3.11304 -101.32 -3.11304 3.11304 0.76 0.000652427 0.000606781 0.0507794 0.047209 32 1759 20 6.65987e+06 202848 554710. 1919.41 0.79 0.123554 0.109546 22834 132086 -1 1607 17 697 1162 73961 17765 2.67265 2.67265 -99.52 -2.67265 0 0 701300. 2426.64 0.20 0.05 0.11 -1 -1 0.20 0.0224707 0.0197141 105 55 31 31 53 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_111.v common 5.34 vpr 63.11 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30688 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64628 32 32 383 307 1 184 96 17 17 289 -1 unnamed_device 24.5 MiB 0.25 929 17616 5738 7949 3929 63.1 MiB 0.13 0.00 3.3979 -111.1 -3.3979 3.3979 0.87 0.000565748 0.000520141 0.048566 0.0446712 34 2363 25 6.65987e+06 405696 585099. 2024.56 1.95 0.200631 0.174894 23122 138558 -1 1870 18 1165 2082 164643 39953 2.59237 2.59237 -107.471 -2.59237 0 0 742403. 2568.87 0.27 0.08 0.11 -1 -1 0.27 0.0278655 0.0244807 136 65 52 26 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_112.v common 4.08 vpr 62.71 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 30676 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 422 339 1 195 99 17 17 289 -1 unnamed_device 24.3 MiB 0.62 965 17427 4981 9867 2579 62.7 MiB 0.16 0.00 3.7445 -120.758 -3.7445 3.7445 0.66 0.000781434 0.000723187 0.063346 0.0586535 28 2358 21 6.65987e+06 456408 500653. 1732.36 0.86 0.157129 0.139097 21970 115934 -1 2009 16 1396 2096 132253 31786 3.06916 3.06916 -115.283 -3.06916 0 0 612192. 2118.31 0.18 0.07 0.10 -1 -1 0.18 0.0271617 0.0239003 148 93 31 31 92 31 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_113.v common 4.02 vpr 62.49 MiB 0.02 6888 -1 -1 1 0.04 -1 -1 30764 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 32 32 333 279 1 160 82 17 17 289 -1 unnamed_device 23.8 MiB 0.19 861 11652 3522 6006 2124 62.5 MiB 0.11 0.00 2.81844 -100.349 -2.81844 2.81844 0.73 0.000659471 0.000611927 0.0446432 0.04146 32 1770 24 6.65987e+06 228204 554710. 1919.41 0.84 0.125705 0.110898 22834 132086 -1 1597 20 1134 1801 111529 25880 2.45905 2.45905 -100.888 -2.45905 0 0 701300. 2426.64 0.26 0.06 0.13 -1 -1 0.26 0.0266419 0.023319 115 61 32 32 60 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_114.v common 4.50 vpr 62.74 MiB 0.04 6876 -1 -1 1 0.04 -1 -1 30292 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 32 32 339 283 1 164 82 17 17 289 -1 unnamed_device 24.0 MiB 0.27 667 7380 1595 4913 872 62.7 MiB 0.08 0.00 3.38184 -112.707 -3.38184 3.38184 0.85 0.000665957 0.000618441 0.0302642 0.0281385 32 2143 27 6.65987e+06 228204 554710. 1919.41 1.05 0.117466 0.103221 22834 132086 -1 1646 20 1173 1854 139446 34669 2.61831 2.61831 -108.713 -2.61831 0 0 701300. 2426.64 0.20 0.07 0.14 -1 -1 0.20 0.0271202 0.0236657 121 63 32 32 62 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_115.v common 4.14 vpr 62.53 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30904 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 32 32 407 319 1 198 100 17 17 289 -1 unnamed_device 24.1 MiB 0.16 1042 12164 2979 8000 1185 62.5 MiB 0.12 0.00 4.02524 -139.262 -4.02524 4.02524 0.77 0.000777611 0.000721413 0.0424359 0.0392215 28 2635 22 6.65987e+06 456408 500653. 1732.36 0.94 0.137274 0.121089 21970 115934 -1 2230 22 1799 2724 189823 43686 3.49291 3.49291 -136.105 -3.49291 0 0 612192. 2118.31 0.18 0.09 0.10 -1 -1 0.18 0.0336317 0.029402 154 65 64 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_116.v common 4.29 vpr 62.74 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30796 -1 -1 32 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64248 29 32 367 293 1 183 93 17 17 289 -1 unnamed_device 24.1 MiB 0.25 968 17313 5602 9212 2499 62.7 MiB 0.15 0.00 3.57304 -105.57 -3.57304 3.57304 0.91 0.000551677 0.000507972 0.0489738 0.0450899 32 2024 18 6.65987e+06 405696 554710. 1919.41 0.94 0.129816 0.114722 22834 132086 -1 1796 15 839 1383 76405 18791 2.70871 2.70871 -99.9259 -2.70871 0 0 701300. 2426.64 0.20 0.05 0.12 -1 -1 0.20 0.0235943 0.0208218 133 62 56 29 58 29 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_117.v common 4.07 vpr 63.01 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30932 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 469 381 1 200 101 17 17 289 -1 unnamed_device 24.7 MiB 0.33 1004 11616 2968 7911 737 63.0 MiB 0.13 0.00 3.97241 -135.454 -3.97241 3.97241 0.75 0.000879613 0.000816731 0.047457 0.0439256 32 2264 22 6.65987e+06 469086 554710. 1919.41 0.94 0.142021 0.124886 22834 132086 -1 2098 20 1516 2390 148380 35225 3.49911 3.49911 -132.398 -3.49911 0 0 701300. 2426.64 0.20 0.08 0.11 -1 -1 0.20 0.0342622 0.0299078 156 127 0 0 128 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_118.v common 3.73 vpr 62.03 MiB 0.02 6896 -1 -1 1 0.03 -1 -1 30540 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63520 31 32 259 212 1 146 79 17 17 289 -1 unnamed_device 23.4 MiB 0.11 715 5825 1215 4401 209 62.0 MiB 0.07 0.00 2.9397 -97.4988 -2.9397 2.9397 0.78 0.000586519 0.000545257 0.0224278 0.0209126 30 1705 18 6.65987e+06 202848 526063. 1820.29 0.80 0.0897178 0.0787294 22546 126617 -1 1464 20 790 1241 73899 17697 2.67551 2.67551 -102.459 -2.67551 0 0 666494. 2306.21 0.19 0.05 0.11 -1 -1 0.19 0.0235108 0.0205637 105 4 85 31 0 0 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_119.v common 4.31 vpr 63.10 MiB 0.03 7016 -1 -1 1 0.04 -1 -1 30596 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 418 338 1 190 97 17 17 289 -1 unnamed_device 24.3 MiB 0.20 948 20077 6167 11074 2836 63.1 MiB 0.18 0.00 4.10497 -133.778 -4.10497 4.10497 0.89 0.000587519 0.000537542 0.0560198 0.0513602 32 2087 22 6.65987e+06 418374 554710. 1919.41 0.94 0.155709 0.137237 22834 132086 -1 1830 20 1316 1904 121804 28319 3.43617 3.43617 -124.141 -3.43617 0 0 701300. 2426.64 0.20 0.07 0.12 -1 -1 0.20 0.0308873 0.0271325 142 92 28 28 92 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_120.v common 6.64 vpr 62.77 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30432 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 376 318 1 156 80 17 17 289 -1 unnamed_device 24.0 MiB 0.21 805 9196 3450 4876 870 62.8 MiB 0.09 0.00 3.54047 -120.422 -3.54047 3.54047 0.69 0.0007257 0.00067005 0.0407348 0.0377851 28 2435 30 6.65987e+06 202848 500653. 1732.36 3.73 0.235209 0.205551 21970 115934 -1 1824 17 1245 1796 214479 57319 3.12337 3.12337 -121.271 -3.12337 0 0 612192. 2118.31 0.26 0.08 0.11 -1 -1 0.26 0.0239822 0.0214531 115 96 0 0 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_121.v common 4.08 vpr 62.76 MiB 0.02 7108 -1 -1 1 0.04 -1 -1 30680 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 401 316 1 196 99 17 17 289 -1 unnamed_device 24.4 MiB 0.22 1002 18111 5520 9663 2928 62.8 MiB 0.18 0.00 3.45184 -118.995 -3.45184 3.45184 0.84 0.000792987 0.000734862 0.0632728 0.058555 32 2200 24 6.65987e+06 443730 554710. 1919.41 0.90 0.162439 0.143905 22834 132086 -1 1975 24 1217 1715 114813 27311 2.68831 2.68831 -111.386 -2.68831 0 0 701300. 2426.64 0.30 0.08 0.13 -1 -1 0.30 0.0332609 0.0293997 149 65 61 32 64 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_122.v common 6.20 vpr 63.23 MiB 0.03 7272 -1 -1 1 0.04 -1 -1 30964 -1 -1 43 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 500 382 1 232 107 17 17 289 -1 unnamed_device 25.0 MiB 0.35 1201 15034 3694 9653 1687 63.2 MiB 0.18 0.00 4.6905 -158.567 -4.6905 4.6905 0.96 0.00110204 0.00102416 0.0534972 0.0491289 28 3011 23 6.65987e+06 545154 500653. 1732.36 2.79 0.308813 0.268215 21970 115934 -1 2594 21 2072 3208 227163 51087 4.36977 4.36977 -159.224 -4.36977 0 0 612192. 2118.31 0.24 0.09 0.11 -1 -1 0.24 0.0341565 0.0303378 186 96 64 32 96 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_123.v common 4.00 vpr 62.04 MiB 0.03 6816 -1 -1 1 0.03 -1 -1 30384 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63528 30 32 246 229 1 118 77 17 17 289 -1 unnamed_device 23.6 MiB 0.23 532 10509 2640 7460 409 62.0 MiB 0.08 0.00 2.61752 -80.0454 -2.61752 2.61752 0.68 0.000532351 0.0004957 0.0358445 0.0333495 26 1369 26 6.65987e+06 190170 477104. 1650.88 1.06 0.107094 0.094105 21682 110474 -1 1180 19 708 970 78344 19368 1.82365 1.82365 -77.0563 -1.82365 0 0 585099. 2024.56 0.17 0.05 0.12 -1 -1 0.17 0.0205549 0.017904 83 56 0 0 53 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_124.v common 3.44 vpr 62.29 MiB 0.04 6772 -1 -1 1 0.03 -1 -1 30612 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63788 30 32 296 244 1 137 78 17 17 289 -1 unnamed_device 23.8 MiB 0.07 758 10536 3415 5493 1628 62.3 MiB 0.09 0.00 3.52904 -110.224 -3.52904 3.52904 0.66 0.0006186 0.000574361 0.0415317 0.0386321 32 1612 17 6.65987e+06 202848 554710. 1919.41 0.79 0.110858 0.0980759 22834 132086 -1 1446 17 645 992 69528 15549 2.64457 2.64457 -102.355 -2.64457 0 0 701300. 2426.64 0.30 0.09 0.13 -1 -1 0.30 0.0335475 0.0292479 96 34 60 30 30 30 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_125.v common 3.69 vpr 62.80 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30276 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64312 32 32 314 256 1 167 82 17 17 289 -1 unnamed_device 24.0 MiB 0.11 856 9872 2316 7018 538 62.8 MiB 0.10 0.00 3.4859 -122.574 -3.4859 3.4859 0.72 0.000648982 0.000603993 0.0385221 0.0358761 32 2175 21 6.65987e+06 228204 554710. 1919.41 0.89 0.117288 0.103678 22834 132086 -1 1895 21 1283 2346 160364 36533 2.82977 2.82977 -115.533 -2.82977 0 0 701300. 2426.64 0.24 0.08 0.14 -1 -1 0.24 0.0268308 0.0234135 126 34 64 32 32 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_126.v common 4.03 vpr 62.21 MiB 0.04 6828 -1 -1 1 0.03 -1 -1 30660 -1 -1 34 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63700 25 32 251 214 1 138 91 17 17 289 -1 unnamed_device 23.5 MiB 0.07 696 13351 3608 8032 1711 62.2 MiB 0.10 0.00 3.32684 -88.9535 -3.32684 3.32684 0.93 0.000415368 0.000381825 0.0301778 0.0278773 26 1638 18 6.65987e+06 431052 477104. 1650.88 0.86 0.0811025 0.0715491 21682 110474 -1 1489 18 927 1534 98996 23659 2.64431 2.64431 -89.7937 -2.64431 0 0 585099. 2024.56 0.23 0.06 0.11 -1 -1 0.23 0.0205913 0.0180062 103 34 50 25 25 25 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_127.v common 4.37 vpr 62.65 MiB 0.03 7096 -1 -1 1 0.04 -1 -1 30672 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64156 32 32 432 346 1 193 84 17 17 289 -1 unnamed_device 24.2 MiB 0.26 877 14541 4608 7775 2158 62.7 MiB 0.15 0.00 4.02035 -125.217 -4.02035 4.02035 0.92 0.000637843 0.000585817 0.0536291 0.0493588 32 2454 21 6.65987e+06 253560 554710. 1919.41 1.01 0.150441 0.132899 22834 132086 -1 1942 22 1557 2807 168104 41177 3.57825 3.57825 -121.938 -3.57825 0 0 701300. 2426.64 0.25 0.09 0.13 -1 -1 0.25 0.0350572 0.0306664 147 94 32 32 94 32 +fixed_k6_N8_unbalanced_ripple_chain_gate_boost_0.2V_22nm.xml mult_128.v common 4.41 vpr 62.74 MiB 0.05 7240 -1 -1 1 0.04 -1 -1 30716 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 31 32 421 339 1 193 100 17 17 289 -1 unnamed_device 24.3 MiB 0.22 938 18660 5414 10450 2796 62.7 MiB 0.16 0.00 3.4903 -116.326 -3.4903 3.4903 0.87 0.000603414 0.000554453 0.0516751 0.0474498 32 2227 20 6.65987e+06 469086 554710. 1919.41 0.99 0.12743 0.112937 22834 132086 -1 1909 21 1587 2546 153683 35855 2.84797 2.84797 -111.521 -2.84797 0 0 701300. 2426.64 0.22 0.09 0.11 -1 -1 0.22 0.0346832 0.0304964 146 94 29 29 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_001.v common 7.68 vpr 63.69 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 31244 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 438 350 1 187 89 17 17 289 -1 unnamed_device 25.0 MiB 0.92 758 13949 4789 6835 2325 63.7 MiB 0.16 0.00 3.74419 -135.496 -3.74419 3.74419 0.71 0.000814532 0.000755226 0.0790998 0.0732484 56 2236 43 6.95648e+06 361892 973134. 3367.25 3.40 0.325404 0.286772 29794 239141 -1 1748 21 1800 2839 202494 49731 4.07106 4.07106 -146.163 -4.07106 0 0 1.19926e+06 4149.71 0.43 0.09 0.25 -1 -1 0.43 0.0308731 0.0273508 84 96 32 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_002.v common 10.09 vpr 63.68 MiB 0.03 7216 -1 -1 1 0.03 -1 -1 30924 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65212 30 32 409 330 1 179 76 17 17 289 -1 unnamed_device 24.8 MiB 1.97 807 12716 4975 6082 1659 63.7 MiB 0.12 0.00 3.9478 -130.518 -3.9478 3.9478 0.69 0.000753171 0.000698013 0.0622426 0.0577741 50 2177 23 6.95648e+06 202660 902133. 3121.57 5.15 0.335495 0.292004 28642 213929 -1 1795 21 1680 2476 203092 44824 4.03026 4.03026 -135.446 -4.03026 0 0 1.08113e+06 3740.92 0.35 0.09 0.22 -1 -1 0.35 0.0337418 0.029663 76 91 30 30 89 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_003.v common 5.57 vpr 63.75 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30636 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65276 32 32 387 309 1 179 83 17 17 289 -1 unnamed_device 25.0 MiB 0.84 1022 7103 1835 4569 699 63.7 MiB 0.07 0.00 3.60914 -132.635 -3.60914 3.60914 0.68 0.000740001 0.000686987 0.0318138 0.0295564 38 2843 33 6.95648e+06 275038 678818. 2348.85 2.01 0.16817 0.146935 26626 170182 -1 2326 22 1546 2278 194918 38617 3.72966 3.72966 -142.937 -3.72966 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0328441 0.0286957 77 65 54 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_004.v common 5.26 vpr 63.35 MiB 0.04 7144 -1 -1 1 0.03 -1 -1 30696 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64868 29 32 343 267 1 176 77 17 17 289 -1 unnamed_device 24.8 MiB 0.37 752 10672 3799 5216 1657 63.3 MiB 0.10 0.00 4.001 -128.21 -4.001 4.001 0.73 0.000681456 0.000632592 0.0474841 0.0441254 42 2472 35 6.95648e+06 231611 744469. 2576.02 1.78 0.183156 0.160135 27202 183097 -1 1898 22 1791 2583 212553 47348 4.23997 4.23997 -141.093 -4.23997 0 0 949917. 3286.91 0.36 0.12 0.16 -1 -1 0.36 0.0400908 0.035246 75 34 87 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_005.v common 8.86 vpr 63.53 MiB 0.02 7064 -1 -1 1 0.03 -1 -1 30652 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 376 288 1 187 77 17 17 289 -1 unnamed_device 24.9 MiB 0.63 716 9857 3295 4764 1798 63.5 MiB 0.08 0.00 3.66789 -133.791 -3.66789 3.66789 0.80 0.00057599 0.000528135 0.0374384 0.0344362 58 2034 32 6.95648e+06 188184 997811. 3452.63 5.15 0.284823 0.246228 30370 251734 -1 1650 21 1789 3032 232498 57097 3.70316 3.70316 -140.429 -3.70316 0 0 1.25153e+06 4330.55 0.37 0.10 0.22 -1 -1 0.37 0.0317604 0.0278193 78 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_006.v common 6.30 vpr 63.66 MiB 0.03 7172 -1 -1 1 0.03 -1 -1 30788 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 402 316 1 191 93 17 17 289 -1 unnamed_device 24.7 MiB 0.42 727 15003 5272 7155 2576 63.7 MiB 0.11 0.00 3.0985 -114.166 -3.0985 3.0985 0.94 0.000586453 0.000537409 0.0467122 0.0429583 46 2450 46 6.95648e+06 419795 828058. 2865.25 2.56 0.224028 0.195473 28066 200906 -1 1746 20 1574 2179 209536 59676 3.22017 3.22017 -121.541 -3.22017 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0316238 0.0277481 89 64 63 32 63 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_007.v common 8.40 vpr 63.05 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30716 -1 -1 14 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64560 27 32 269 226 1 129 73 17 17 289 -1 unnamed_device 24.5 MiB 3.30 451 8433 2993 4087 1353 63.0 MiB 0.07 0.00 3.26916 -93.4177 -3.26916 3.26916 0.74 0.000678064 0.000630675 0.0360745 0.0335972 40 1397 46 6.95648e+06 202660 706193. 2443.58 2.33 0.180956 0.157512 26914 176310 -1 1033 19 866 1329 99269 25394 2.91457 2.91457 -96.589 -2.91457 0 0 926341. 3205.33 0.26 0.06 0.15 -1 -1 0.26 0.0242712 0.0214521 54 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_008.v common 15.29 vpr 63.17 MiB 0.02 6940 -1 -1 1 0.03 -1 -1 30420 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64684 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.7 MiB 0.47 722 11088 4563 6076 449 63.2 MiB 0.11 0.00 3.0394 -105.493 -3.0394 3.0394 0.73 0.000783342 0.000725101 0.0470102 0.0436481 42 2874 42 6.95648e+06 246087 744469. 2576.02 11.88 0.347865 0.300908 27202 183097 -1 1922 23 1381 1957 170165 40097 2.91167 2.91167 -112.236 -2.91167 0 0 949917. 3286.91 0.37 0.08 0.19 -1 -1 0.37 0.0295657 0.026382 77 4 115 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_009.v common 6.71 vpr 63.23 MiB 0.02 6944 -1 -1 1 0.03 -1 -1 30356 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 338 292 1 143 74 17 17 289 -1 unnamed_device 24.5 MiB 1.57 523 9994 2759 5612 1623 63.2 MiB 0.09 0.00 3.10275 -98.727 -3.10275 3.10275 0.68 0.000658351 0.000610155 0.0448041 0.0416301 40 1829 42 6.95648e+06 159232 706193. 2443.58 2.45 0.20839 0.181428 26914 176310 -1 1302 22 963 1469 112295 27666 3.25942 3.25942 -112.588 -3.25942 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0313315 0.0273433 57 85 0 0 84 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_010.v common 5.80 vpr 63.17 MiB 0.02 6864 -1 -1 1 0.03 -1 -1 30728 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64684 32 32 314 256 1 156 74 17 17 289 -1 unnamed_device 24.5 MiB 0.98 638 10614 4216 4843 1555 63.2 MiB 0.10 0.00 2.95005 -114.898 -2.95005 2.95005 0.69 0.000650039 0.000603815 0.0473395 0.0440541 38 2085 36 6.95648e+06 144757 678818. 2348.85 2.05 0.198975 0.174089 26626 170182 -1 1750 21 1506 2168 226359 47888 3.52702 3.52702 -124.658 -3.52702 0 0 902133. 3121.57 0.32 0.06 0.18 -1 -1 0.32 0.0178048 0.0157105 62 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_011.v common 6.67 vpr 63.43 MiB 0.02 7048 -1 -1 1 0.04 -1 -1 30344 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64952 30 32 325 273 1 148 74 17 17 289 -1 unnamed_device 24.8 MiB 1.75 651 11079 4648 6085 346 63.4 MiB 0.08 0.00 3.1095 -111.937 -3.1095 3.1095 0.87 0.000490977 0.000451189 0.0379526 0.0349847 36 1781 49 6.95648e+06 173708 648988. 2245.63 1.96 0.163331 0.142974 26050 158493 -1 1582 17 1212 1593 127770 28894 3.11387 3.11387 -118.517 -3.11387 0 0 828058. 2865.25 0.31 0.07 0.15 -1 -1 0.31 0.0236988 0.0210909 60 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_012.v common 12.77 vpr 63.29 MiB 0.02 6924 -1 -1 1 0.04 -1 -1 30708 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 331 280 1 150 76 17 17 289 -1 unnamed_device 24.4 MiB 0.64 540 10476 4331 5741 404 63.3 MiB 0.05 0.00 2.9793 -106.716 -2.9793 2.9793 0.59 0.00029422 0.000270051 0.0217091 0.0200095 44 2142 49 6.95648e+06 173708 787024. 2723.27 9.43 0.316582 0.271503 27778 195446 -1 1537 44 1602 2044 396496 180982 3.22627 3.22627 -120.366 -3.22627 0 0 997811. 3452.63 0.36 0.17 0.19 -1 -1 0.36 0.0440668 0.0382549 60 65 25 25 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_013.v common 7.30 vpr 63.68 MiB 0.02 7016 -1 -1 1 0.04 -1 -1 30488 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 386 305 1 180 85 17 17 289 -1 unnamed_device 24.7 MiB 1.28 751 11803 3277 6504 2022 63.7 MiB 0.11 0.00 3.1024 -116.565 -3.1024 3.1024 0.69 0.000582658 0.000530893 0.0508511 0.0471853 44 2589 29 6.95648e+06 303989 787024. 2723.27 2.80 0.22322 0.196174 27778 195446 -1 1928 22 1668 2512 218706 48425 3.10907 3.10907 -125.414 -3.10907 0 0 997811. 3452.63 0.36 0.09 0.20 -1 -1 0.36 0.028765 0.0254928 79 58 64 32 57 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_014.v common 7.31 vpr 63.73 MiB 0.04 6948 -1 -1 1 0.04 -1 -1 30832 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65264 32 32 407 319 1 192 90 17 17 289 -1 unnamed_device 24.8 MiB 0.98 832 16371 6652 7990 1729 63.7 MiB 0.15 0.00 3.72719 -138.885 -3.72719 3.72719 0.70 0.000775166 0.00071857 0.0669369 0.0621326 40 2769 48 6.95648e+06 376368 706193. 2443.58 3.41 0.261207 0.228777 26914 176310 -1 2192 23 2166 3057 361963 85418 4.43436 4.43436 -160.536 -4.43436 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0365211 0.0320954 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_015.v common 7.57 vpr 62.84 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30792 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 29 32 272 228 1 141 74 17 17 289 -1 unnamed_device 24.3 MiB 0.88 465 11234 4544 5569 1121 62.8 MiB 0.09 0.00 3.14676 -95.8879 -3.14676 3.14676 0.69 0.000571935 0.000531453 0.0438509 0.0407913 48 1427 28 6.95648e+06 188184 865456. 2994.66 3.94 0.224998 0.194343 28354 207349 -1 1184 29 1149 1702 159235 36204 2.80642 2.80642 -98.0538 -2.80642 0 0 1.05005e+06 3633.38 0.27 0.08 0.17 -1 -1 0.27 0.0309399 0.0267716 58 29 58 29 24 24 +fixed_k6_frac_2ripple_N8_22nm.xml mult_016.v common 6.30 vpr 63.74 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30576 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65268 32 32 401 315 1 185 77 17 17 289 -1 unnamed_device 24.9 MiB 1.60 807 11813 5009 6533 271 63.7 MiB 0.12 0.00 3.1505 -120.688 -3.1505 3.1505 0.68 0.000761201 0.000706064 0.0591153 0.0548507 44 2517 25 6.95648e+06 188184 787024. 2723.27 1.77 0.185602 0.163565 27778 195446 -1 1985 24 2003 3188 256759 56295 3.31422 3.31422 -128.36 -3.31422 0 0 997811. 3452.63 0.37 0.10 0.19 -1 -1 0.37 0.0337177 0.029967 77 63 64 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_017.v common 6.66 vpr 63.55 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30496 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 383 303 1 179 84 17 17 289 -1 unnamed_device 24.7 MiB 1.36 707 11064 3419 5711 1934 63.6 MiB 0.10 0.00 3.0804 -113.837 -3.0804 3.0804 0.72 0.000747477 0.000692182 0.0469044 0.043484 46 2179 22 6.95648e+06 289514 828058. 2865.25 2.47 0.200316 0.175076 28066 200906 -1 1693 20 1401 1858 160432 36645 3.58837 3.58837 -131.08 -3.58837 0 0 1.01997e+06 3529.29 0.26 0.08 0.19 -1 -1 0.26 0.0300917 0.0263702 78 57 64 32 56 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_018.v common 5.46 vpr 63.59 MiB 0.02 6916 -1 -1 1 0.04 -1 -1 30324 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 339 284 1 156 84 17 17 289 -1 unnamed_device 24.9 MiB 0.78 574 10698 2981 5511 2206 63.6 MiB 0.09 0.00 2.43656 -93.1005 -2.43656 2.43656 0.69 0.000672113 0.000623458 0.0417009 0.0387688 48 1536 22 6.95648e+06 289514 865456. 2994.66 1.81 0.175961 0.153172 28354 207349 -1 1234 17 1097 1484 116726 30133 2.46833 2.46833 -100.147 -2.46833 0 0 1.05005e+06 3633.38 0.38 0.06 0.21 -1 -1 0.38 0.0213521 0.018966 67 65 29 29 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_019.v common 4.63 vpr 62.71 MiB 0.02 6652 -1 -1 1 0.03 -1 -1 30500 -1 -1 10 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 30 32 226 208 1 118 72 17 17 289 -1 unnamed_device 24.2 MiB 0.36 450 11098 4789 5936 373 62.7 MiB 0.08 0.00 2.21746 -80.6728 -2.21746 2.21746 0.68 0.000502375 0.000467246 0.0391774 0.0364689 36 1452 25 6.95648e+06 144757 648988. 2245.63 1.47 0.14197 0.123644 26050 158493 -1 1115 23 739 951 96721 21102 2.20468 2.20468 -86.1392 -2.20468 0 0 828058. 2865.25 0.28 0.06 0.13 -1 -1 0.28 0.0217227 0.0191687 45 34 24 24 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_020.v common 6.08 vpr 63.45 MiB 0.02 6960 -1 -1 1 0.03 -1 -1 30656 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 335 280 1 152 74 17 17 289 -1 unnamed_device 24.5 MiB 0.99 525 9374 3845 5090 439 63.5 MiB 0.09 0.00 3.8254 -127.041 -3.8254 3.8254 0.69 0.000663797 0.000616178 0.0426725 0.0396737 46 1790 25 6.95648e+06 159232 828058. 2865.25 2.25 0.182922 0.159516 28066 200906 -1 1286 26 1109 1501 112673 28049 3.60442 3.60442 -125.134 -3.60442 0 0 1.01997e+06 3529.29 0.36 0.07 0.20 -1 -1 0.36 0.0278807 0.0244971 61 64 31 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_021.v common 5.75 vpr 63.71 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30492 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 366 283 1 184 85 17 17 289 -1 unnamed_device 24.9 MiB 0.40 664 13663 4054 7770 1839 63.7 MiB 0.13 0.00 3.70954 -128.174 -3.70954 3.70954 0.73 0.000722977 0.00067093 0.0577299 0.0536344 46 2081 25 6.95648e+06 303989 828058. 2865.25 2.43 0.213448 0.187394 28066 200906 -1 1499 21 1684 2238 155834 36240 4.00842 4.00842 -137.451 -4.00842 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.0307424 0.0269537 81 34 91 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_022.v common 8.59 vpr 63.89 MiB 0.05 7184 -1 -1 1 0.04 -1 -1 31108 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65428 32 32 460 375 1 188 91 17 17 289 -1 unnamed_device 25.2 MiB 1.13 791 14779 5223 7361 2195 63.9 MiB 0.13 0.00 3.66119 -126.81 -3.66119 3.66119 0.69 0.000844764 0.000783782 0.0633347 0.0587585 50 2356 24 6.95648e+06 390843 902133. 3121.57 4.55 0.340776 0.295792 28642 213929 -1 1951 22 1521 2300 192443 42700 3.68266 3.68266 -132.729 -3.68266 0 0 1.08113e+06 3740.92 0.29 0.09 0.18 -1 -1 0.29 0.0361066 0.0313564 85 124 0 0 125 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_023.v common 4.99 vpr 62.77 MiB 0.02 6708 -1 -1 1 0.03 -1 -1 30868 -1 -1 13 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 26 32 198 186 1 108 71 17 17 289 -1 unnamed_device 24.3 MiB 0.86 348 7809 2770 3912 1127 62.8 MiB 0.05 0.00 2.19726 -66.8557 -2.19726 2.19726 0.68 0.000435659 0.000404601 0.025247 0.0234606 44 883 30 6.95648e+06 188184 787024. 2723.27 1.51 0.108834 0.0945534 27778 195446 -1 716 18 613 742 42631 12755 2.08853 2.08853 -68.0157 -2.08853 0 0 997811. 3452.63 0.27 0.04 0.17 -1 -1 0.27 0.0168596 0.0147669 44 30 26 26 22 22 +fixed_k6_frac_2ripple_N8_22nm.xml mult_024.v common 8.42 vpr 63.68 MiB 0.02 6928 -1 -1 1 0.04 -1 -1 30452 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65208 32 32 333 251 1 180 76 17 17 289 -1 unnamed_device 24.9 MiB 0.98 737 10316 4241 5568 507 63.7 MiB 0.10 0.00 4.02534 -135.509 -4.02534 4.02534 0.70 0.000688708 0.000639323 0.0477372 0.0444135 54 2244 36 6.95648e+06 173708 949917. 3286.91 4.51 0.287155 0.249395 29506 232905 -1 1641 22 1840 2844 317217 104806 3.76887 3.76887 -137.001 -3.76887 0 0 1.17392e+06 4061.99 0.30 0.12 0.22 -1 -1 0.30 0.0311739 0.0273176 74 3 122 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_025.v common 6.32 vpr 62.66 MiB 0.02 6656 -1 -1 1 0.03 -1 -1 30592 -1 -1 8 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 24.2 MiB 0.28 731 9906 3689 5081 1136 62.7 MiB 0.07 0.00 2.15326 -87.6492 -2.15326 2.15326 0.69 0.000474752 0.000440955 0.0325322 0.0302465 38 1590 20 6.95648e+06 115805 678818. 2348.85 3.20 0.175717 0.152166 26626 170182 -1 1459 19 692 879 90368 17963 1.99038 1.99038 -89.0284 -1.99038 0 0 902133. 3121.57 0.23 0.05 0.16 -1 -1 0.23 0.0184637 0.0162053 44 3 53 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_026.v common 6.62 vpr 63.78 MiB 0.05 7068 -1 -1 1 0.03 -1 -1 30736 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65312 32 32 376 288 1 186 90 17 17 289 -1 unnamed_device 24.9 MiB 0.55 827 16371 5667 8716 1988 63.8 MiB 0.15 0.00 3.67409 -135.23 -3.67409 3.67409 0.71 0.000863408 0.000799471 0.0647563 0.0600597 40 2687 28 6.95648e+06 376368 706193. 2443.58 3.11 0.228909 0.201113 26914 176310 -1 2270 27 2198 3401 408857 80044 4.22586 4.22586 -154.473 -4.22586 0 0 926341. 3205.33 0.25 0.13 0.18 -1 -1 0.25 0.0383479 0.0333697 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_027.v common 6.97 vpr 63.57 MiB 0.03 7004 -1 -1 1 0.04 -1 -1 30312 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.8 MiB 0.30 985 13754 4254 7657 1843 63.6 MiB 0.11 0.00 3.0955 -119.852 -3.0955 3.0955 0.68 0.000696592 0.000645707 0.0485393 0.0450322 38 2527 38 6.95648e+06 405319 678818. 2348.85 3.88 0.279059 0.241818 26626 170182 -1 2139 21 1576 2235 191286 38542 3.06862 3.06862 -126.707 -3.06862 0 0 902133. 3121.57 0.27 0.09 0.15 -1 -1 0.27 0.0306639 0.0269397 87 3 124 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_028.v common 7.81 vpr 63.84 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 30716 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 407 319 1 189 92 17 17 289 -1 unnamed_device 24.9 MiB 0.39 789 18308 6099 10070 2139 63.8 MiB 0.16 0.00 3.69663 -134.61 -3.69663 3.69663 0.68 0.000760901 0.000704008 0.072148 0.0667946 48 2495 26 6.95648e+06 405319 865456. 2994.66 4.45 0.321781 0.280747 28354 207349 -1 2072 23 2027 3185 256766 54936 3.98156 3.98156 -147.157 -3.98156 0 0 1.05005e+06 3633.38 0.38 0.10 0.21 -1 -1 0.38 0.0304321 0.0269199 87 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_029.v common 5.83 vpr 62.91 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30392 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 32 32 294 246 1 145 74 17 17 289 -1 unnamed_device 24.3 MiB 0.81 541 9374 3087 4731 1556 62.9 MiB 0.08 0.00 2.8982 -102.358 -2.8982 2.8982 0.68 0.000606605 0.000563133 0.0384685 0.0357319 38 2174 35 6.95648e+06 144757 678818. 2348.85 2.42 0.181244 0.157865 26626 170182 -1 1506 23 1166 1770 157111 34888 3.38472 3.38472 -117.477 -3.38472 0 0 902133. 3121.57 0.23 0.08 0.11 -1 -1 0.23 0.0279232 0.0243237 57 34 54 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_030.v common 5.17 vpr 63.08 MiB 0.02 6892 -1 -1 1 0.02 -1 -1 30392 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 30 32 296 244 1 148 74 17 17 289 -1 unnamed_device 24.4 MiB 0.55 571 8444 3466 4635 343 63.1 MiB 0.06 0.00 3.1175 -112.058 -3.1175 3.1175 0.80 0.000467166 0.000429472 0.027833 0.0256825 38 2035 41 6.95648e+06 173708 678818. 2348.85 1.81 0.152668 0.132256 26626 170182 -1 1430 25 1471 1922 142902 32212 3.45057 3.45057 -127.278 -3.45057 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0294335 0.0255806 60 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_031.v common 5.73 vpr 63.00 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30556 -1 -1 13 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 28 32 278 232 1 144 73 17 17 289 -1 unnamed_device 24.4 MiB 0.56 505 10257 3681 4972 1604 63.0 MiB 0.09 0.00 3.0435 -97.9378 -3.0435 3.0435 0.78 0.000580172 0.0005395 0.0418708 0.0389918 44 1535 44 6.95648e+06 188184 787024. 2723.27 2.26 0.167713 0.146314 27778 195446 -1 1193 19 1051 1545 110637 27294 2.87537 2.87537 -101.9 -2.87537 0 0 997811. 3452.63 0.26 0.06 0.16 -1 -1 0.26 0.0225588 0.0197119 61 34 56 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_032.v common 5.59 vpr 63.21 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30596 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64728 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.6 MiB 0.24 703 9374 3895 5319 160 63.2 MiB 0.07 0.00 2.93285 -116.414 -2.93285 2.93285 0.89 0.000469059 0.000431726 0.0307416 0.0283427 42 2037 32 6.95648e+06 144757 744469. 2576.02 2.12 0.122384 0.106917 27202 183097 -1 1763 23 1658 2380 208233 43302 3.12292 3.12292 -125.031 -3.12292 0 0 949917. 3286.91 0.37 0.09 0.18 -1 -1 0.37 0.0278805 0.0244793 64 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_033.v common 5.52 vpr 63.07 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30468 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 31 32 303 249 1 156 84 17 17 289 -1 unnamed_device 24.6 MiB 0.24 623 13443 5605 7395 443 63.1 MiB 0.11 0.00 3.0955 -111.973 -3.0955 3.0955 0.68 0.000618376 0.000571561 0.0486056 0.0451899 44 1987 41 6.95648e+06 303989 787024. 2723.27 2.33 0.197019 0.172182 27778 195446 -1 1441 21 1271 1896 135018 30680 3.14997 3.14997 -115.446 -3.14997 0 0 997811. 3452.63 0.39 0.07 0.20 -1 -1 0.39 0.0238437 0.0211945 68 34 61 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_034.v common 5.68 vpr 63.12 MiB 0.04 6996 -1 -1 1 0.03 -1 -1 30368 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 29 32 312 264 1 148 79 17 17 289 -1 unnamed_device 24.4 MiB 0.73 508 10219 3550 4648 2021 63.1 MiB 0.08 0.00 2.43392 -85.0275 -2.43392 2.43392 0.77 0.000490583 0.000452204 0.0335437 0.0309503 46 1492 39 6.95648e+06 260562 828058. 2865.25 2.01 0.175687 0.152302 28066 200906 -1 1185 22 1238 1734 129751 34007 2.31283 2.31283 -88.1752 -2.31283 0 0 1.01997e+06 3529.29 0.30 0.07 0.20 -1 -1 0.30 0.0272312 0.0237057 64 61 29 29 57 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_035.v common 6.23 vpr 63.84 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30728 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 423 310 1 219 92 17 17 289 -1 unnamed_device 25.1 MiB 0.72 944 14375 4687 7097 2591 63.8 MiB 0.13 0.00 3.95585 -140.771 -3.95585 3.95585 0.68 0.000830525 0.000770064 0.0611294 0.0567874 48 2906 34 6.95648e+06 405319 865456. 2994.66 2.61 0.236014 0.208762 28354 207349 -1 2338 22 2090 3320 296886 66429 4.39822 4.39822 -152.07 -4.39822 0 0 1.05005e+06 3633.38 0.28 0.12 0.17 -1 -1 0.28 0.0379833 0.0332741 100 29 128 32 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_036.v common 6.80 vpr 63.95 MiB 0.03 7168 -1 -1 1 0.03 -1 -1 30656 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65480 32 32 403 317 1 190 91 17 17 289 -1 unnamed_device 25.0 MiB 0.93 786 12739 3070 7853 1816 63.9 MiB 0.13 0.00 3.0804 -115.407 -3.0804 3.0804 0.88 0.000773506 0.000715383 0.0539786 0.0499507 40 2423 28 6.95648e+06 390843 706193. 2443.58 2.49 0.22008 0.192384 26914 176310 -1 1982 25 1949 2782 310143 81472 3.52087 3.52087 -132.388 -3.52087 0 0 926341. 3205.33 0.35 0.12 0.17 -1 -1 0.35 0.0352525 0.0313279 87 65 62 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_037.v common 13.91 vpr 63.49 MiB 0.03 6960 -1 -1 1 0.04 -1 -1 30756 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 31 32 353 302 1 150 78 17 17 289 -1 unnamed_device 24.6 MiB 0.89 525 12362 5188 6715 459 63.5 MiB 0.10 0.00 3.26916 -109.722 -3.26916 3.26916 0.70 0.000678298 0.000628877 0.0532529 0.0494598 44 2085 46 6.95648e+06 217135 787024. 2723.27 10.13 0.323662 0.280406 27778 195446 -1 1600 26 1265 1781 214307 68729 3.50807 3.50807 -121.497 -3.50807 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0287317 0.0252134 62 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_038.v common 5.22 vpr 63.71 MiB 0.03 7120 -1 -1 1 0.04 -1 -1 30540 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65240 31 32 391 309 1 186 77 17 17 289 -1 unnamed_device 24.8 MiB 0.62 965 12791 5492 6957 342 63.7 MiB 0.12 0.00 3.0625 -116.847 -3.0625 3.0625 0.69 0.000746972 0.000692941 0.0623911 0.0579335 36 2642 24 6.95648e+06 202660 648988. 2245.63 1.59 0.18741 0.165314 26050 158493 -1 2369 22 1870 2782 253973 50821 3.24022 3.24022 -128.317 -3.24022 0 0 828058. 2865.25 0.32 0.09 0.16 -1 -1 0.32 0.0310178 0.0276974 79 64 60 30 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_039.v common 7.53 vpr 63.91 MiB 0.03 7268 -1 -1 1 0.04 -1 -1 30696 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65444 31 32 455 371 1 185 77 17 17 289 -1 unnamed_device 25.2 MiB 2.18 778 10998 4559 6059 380 63.9 MiB 0.11 0.00 4.63397 -149.774 -4.63397 4.63397 0.69 0.000827468 0.000768056 0.0590916 0.054869 42 2941 49 6.95648e+06 202660 744469. 2576.02 2.55 0.241259 0.212562 27202 183097 -1 2278 22 1738 2604 275925 60496 4.63511 4.63511 -160.11 -4.63511 0 0 949917. 3286.91 0.25 0.11 0.15 -1 -1 0.25 0.0347495 0.0306239 78 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_040.v common 6.14 vpr 63.42 MiB 0.03 7220 -1 -1 1 0.04 -1 -1 30764 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64944 31 32 413 333 1 182 76 17 17 289 -1 unnamed_device 24.8 MiB 1.58 775 10476 3672 5136 1668 63.4 MiB 0.11 0.00 4.49354 -135.009 -4.49354 4.49354 0.68 0.000763472 0.000706293 0.0528666 0.0490208 42 2639 24 6.95648e+06 188184 744469. 2576.02 1.67 0.184759 0.162398 27202 183097 -1 2064 21 1489 2295 208617 44331 4.41406 4.41406 -144.371 -4.41406 0 0 949917. 3286.91 0.34 0.08 0.18 -1 -1 0.34 0.0289955 0.0257376 76 90 31 31 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_041.v common 5.94 vpr 63.76 MiB 0.05 7020 -1 -1 1 0.04 -1 -1 30584 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 391 309 1 185 88 17 17 289 -1 unnamed_device 24.9 MiB 0.80 864 15493 5631 7761 2101 63.8 MiB 0.13 0.00 3.1285 -114.829 -3.1285 3.1285 0.75 0.000758571 0.000704034 0.0615278 0.0570528 36 3103 30 6.95648e+06 361892 648988. 2245.63 2.30 0.217426 0.190995 26050 158493 -1 2349 24 1935 2920 278686 56662 3.32347 3.32347 -132.151 -3.32347 0 0 828058. 2865.25 0.22 0.11 0.13 -1 -1 0.22 0.0348186 0.0303593 85 64 60 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_042.v common 5.41 vpr 63.82 MiB 0.03 7072 -1 -1 1 0.04 -1 -1 30888 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 407 319 1 190 90 17 17 289 -1 unnamed_device 24.9 MiB 0.38 956 10743 3793 5013 1937 63.8 MiB 0.10 0.00 3.77119 -139.239 -3.77119 3.77119 0.69 0.000766837 0.000710832 0.0441419 0.0409779 42 2788 34 6.95648e+06 376368 744469. 2576.02 2.19 0.198 0.174165 27202 183097 -1 2308 26 2308 3438 370483 85179 4.09626 4.09626 -154.186 -4.09626 0 0 949917. 3286.91 0.25 0.13 0.15 -1 -1 0.25 0.0381907 0.0333131 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_043.v common 6.18 vpr 63.88 MiB 0.03 7288 -1 -1 1 0.04 -1 -1 30848 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65408 32 32 496 380 1 222 95 17 17 289 -1 unnamed_device 25.6 MiB 0.96 1078 14999 4071 8495 2433 63.9 MiB 0.14 0.00 3.84845 -142.865 -3.84845 3.84845 0.69 0.000911037 0.000844026 0.0668736 0.0620141 38 3211 31 6.95648e+06 448746 678818. 2348.85 2.32 0.238321 0.209844 26626 170182 -1 2564 21 2140 3117 259783 52682 4.15561 4.15561 -156.016 -4.15561 0 0 902133. 3121.57 0.31 0.10 0.17 -1 -1 0.31 0.033721 0.0298888 104 96 62 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_044.v common 5.09 vpr 63.18 MiB 0.02 6852 -1 -1 1 0.04 -1 -1 30920 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64692 31 32 305 250 1 152 74 17 17 289 -1 unnamed_device 24.3 MiB 0.55 721 10304 4339 5695 270 63.2 MiB 0.09 0.00 3.34916 -121.065 -3.34916 3.34916 0.69 0.000623709 0.000579507 0.04338 0.0402756 36 2161 27 6.95648e+06 159232 648988. 2245.63 1.92 0.176149 0.153724 26050 158493 -1 1715 18 1318 1858 161078 33294 3.35022 3.35022 -127.874 -3.35022 0 0 828058. 2865.25 0.24 0.07 0.13 -1 -1 0.24 0.0234794 0.0205537 62 34 62 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_045.v common 17.29 vpr 63.74 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30616 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 395 311 1 188 90 17 17 289 -1 unnamed_device 24.9 MiB 0.64 784 13959 3819 8017 2123 63.7 MiB 0.13 0.00 4.0519 -136.516 -4.0519 4.0519 0.87 0.000752205 0.000697637 0.0544186 0.0504365 44 2908 50 6.95648e+06 390843 787024. 2723.27 13.30 0.40635 0.352476 27778 195446 -1 2073 21 1784 2811 258233 61748 4.27292 4.27292 -149.865 -4.27292 0 0 997811. 3452.63 0.36 0.09 0.19 -1 -1 0.36 0.0280454 0.0248663 86 64 62 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_046.v common 5.76 vpr 63.69 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 30948 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 397 313 1 188 90 17 17 289 -1 unnamed_device 24.8 MiB 0.77 863 13557 4887 6407 2263 63.7 MiB 0.12 0.00 3.29596 -116.543 -3.29596 3.29596 0.69 0.000762476 0.000706193 0.054369 0.0504551 48 2444 40 6.95648e+06 376368 865456. 2994.66 2.13 0.203705 0.178384 28354 207349 -1 2015 24 1652 2664 290093 83414 3.23127 3.23127 -122.091 -3.23127 0 0 1.05005e+06 3633.38 0.29 0.13 0.17 -1 -1 0.29 0.0411435 0.0364012 85 63 62 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_047.v common 7.63 vpr 63.50 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30612 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65020 32 32 345 257 1 187 77 17 17 289 -1 unnamed_device 24.7 MiB 0.77 760 7738 3134 4374 230 63.5 MiB 0.09 0.00 3.65689 -135.736 -3.65689 3.65689 0.71 0.000703241 0.000652493 0.0388982 0.0362246 44 2873 46 6.95648e+06 188184 787024. 2723.27 3.72 0.21824 0.189998 27778 195446 -1 2272 24 2032 3304 369283 77513 4.13656 4.13656 -155.996 -4.13656 0 0 997811. 3452.63 0.37 0.12 0.19 -1 -1 0.37 0.030969 0.0275732 78 3 128 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_048.v common 6.41 vpr 64.11 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30692 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65652 32 32 424 343 1 182 87 17 17 289 -1 unnamed_device 25.2 MiB 1.64 808 11991 3810 6067 2114 64.1 MiB 0.11 0.00 3.1768 -117.392 -3.1768 3.1768 0.68 0.00078485 0.000727308 0.0514629 0.0477752 46 2106 38 6.95648e+06 332941 828058. 2865.25 1.98 0.227049 0.19787 28066 200906 -1 1563 20 1446 2243 121831 31958 3.32357 3.32357 -121.589 -3.32357 0 0 1.01997e+06 3529.29 0.26 0.07 0.17 -1 -1 0.26 0.0314542 0.0276608 81 96 25 25 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_049.v common 15.44 vpr 63.84 MiB 0.03 7120 -1 -1 1 0.03 -1 -1 30572 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 395 311 1 186 92 17 17 289 -1 unnamed_device 24.9 MiB 0.84 845 12926 3665 7173 2088 63.8 MiB 0.11 0.00 3.1214 -116.244 -3.1214 3.1214 0.76 0.000766989 0.000712494 0.0522735 0.048645 40 2705 25 6.95648e+06 405319 706193. 2443.58 11.50 0.357191 0.309873 26914 176310 -1 2051 39 1950 3178 495284 169641 3.25637 3.25637 -123.049 -3.25637 0 0 926341. 3205.33 0.24 0.21 0.15 -1 -1 0.24 0.0543298 0.047633 85 61 64 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_050.v common 14.55 vpr 63.91 MiB 0.02 7032 -1 -1 1 0.04 -1 -1 30632 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65440 32 32 405 318 1 192 92 17 17 289 -1 unnamed_device 25.2 MiB 0.53 803 14996 4547 7782 2667 63.9 MiB 0.13 0.00 3.09676 -115.471 -3.09676 3.09676 0.68 0.000774365 0.000715294 0.0582334 0.0539365 42 2619 41 6.95648e+06 405319 744469. 2576.02 11.02 0.391789 0.339257 27202 183097 -1 1981 22 1778 2683 250635 57730 3.40842 3.40842 -132.408 -3.40842 0 0 949917. 3286.91 0.34 0.09 0.18 -1 -1 0.34 0.0294632 0.0261305 88 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_051.v common 5.32 vpr 63.58 MiB 0.03 7064 -1 -1 1 0.03 -1 -1 30740 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65108 32 32 376 288 1 186 92 17 17 289 -1 unnamed_device 24.7 MiB 0.50 938 15617 5888 7604 2125 63.6 MiB 0.13 0.00 3.66789 -137.042 -3.66789 3.66789 0.69 0.000735052 0.000682815 0.0582907 0.0541206 42 2740 25 6.95648e+06 405319 744469. 2576.02 1.96 0.187725 0.165422 27202 183097 -1 2282 25 2125 3219 309196 59561 4.28866 4.28866 -153.826 -4.28866 0 0 949917. 3286.91 0.29 0.12 0.18 -1 -1 0.29 0.0375597 0.0328655 85 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_052.v common 6.02 vpr 63.76 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30812 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 407 319 1 189 94 17 17 289 -1 unnamed_device 24.9 MiB 0.91 799 12448 3955 5788 2705 63.8 MiB 0.10 0.00 3.78219 -138.337 -3.78219 3.78219 0.67 0.000768992 0.000713339 0.0478822 0.04447 42 2747 37 6.95648e+06 434271 744469. 2576.02 2.24 0.204137 0.179054 27202 183097 -1 2038 22 2068 2996 254511 66386 4.22456 4.22456 -159.45 -4.22456 0 0 949917. 3286.91 0.28 0.11 0.18 -1 -1 0.28 0.035727 0.0313738 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_053.v common 8.47 vpr 63.76 MiB 0.03 7272 -1 -1 1 0.03 -1 -1 30640 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65288 31 32 449 367 1 185 88 17 17 289 -1 unnamed_device 25.1 MiB 1.28 822 11983 4768 6508 707 63.8 MiB 0.11 0.00 4.19045 -134.89 -4.19045 4.19045 0.68 0.000848256 0.000787539 0.0542185 0.0503698 46 2656 20 6.95648e+06 361892 828058. 2865.25 4.36 0.315155 0.272934 28066 200906 -1 2047 20 1511 2371 196582 42272 3.79081 3.79081 -131.802 -3.79081 0 0 1.01997e+06 3529.29 0.26 0.09 0.19 -1 -1 0.26 0.0341739 0.0300485 84 122 0 0 122 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_054.v common 6.18 vpr 63.84 MiB 0.03 7080 -1 -1 1 0.04 -1 -1 30668 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 432 346 1 187 77 17 17 289 -1 unnamed_device 25.1 MiB 0.99 840 10346 3694 5398 1254 63.8 MiB 0.11 0.00 3.7688 -130.649 -3.7688 3.7688 0.68 0.000805718 0.000742435 0.0541585 0.0503035 38 3056 38 6.95648e+06 188184 678818. 2348.85 2.36 0.206204 0.180899 26626 170182 -1 2304 20 1775 2993 237926 49362 4.45026 4.45026 -152.324 -4.45026 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0326741 0.0292826 78 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_055.v common 5.50 vpr 63.30 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30784 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 312 255 1 160 87 17 17 289 -1 unnamed_device 24.6 MiB 0.17 594 10647 4341 5910 396 63.3 MiB 0.09 0.00 3.12656 -113.614 -3.12656 3.12656 0.78 0.00065324 0.000608309 0.0380105 0.0352961 56 1762 29 6.95648e+06 332941 973134. 3367.25 2.40 0.180587 0.157928 29794 239141 -1 1308 20 1282 1967 140443 33803 2.86622 2.86622 -111.376 -2.86622 0 0 1.19926e+06 4149.71 0.29 0.04 0.15 -1 -1 0.29 0.0143886 0.0128234 71 34 63 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_056.v common 7.08 vpr 63.63 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30640 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 370 314 1 158 74 17 17 289 -1 unnamed_device 24.9 MiB 1.00 610 8444 3495 4676 273 63.6 MiB 0.07 0.00 3.0405 -112.422 -3.0405 3.0405 0.72 0.000545167 0.000500416 0.0333843 0.0307768 48 2074 42 6.95648e+06 144757 865456. 2994.66 3.22 0.202065 0.175406 28354 207349 -1 1550 24 1471 2219 277823 96531 3.14502 3.14502 -121.33 -3.14502 0 0 1.05005e+06 3633.38 0.32 0.11 0.17 -1 -1 0.32 0.0334215 0.029158 63 94 0 0 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_057.v common 8.51 vpr 63.66 MiB 0.04 7288 -1 -1 1 0.04 -1 -1 31044 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 469 351 1 223 94 17 17 289 -1 unnamed_device 25.4 MiB 0.60 1000 14152 3772 8188 2192 63.7 MiB 0.08 0.00 4.46224 -157.711 -4.46224 4.46224 0.66 0.000395706 0.000364022 0.0289871 0.0266952 48 3433 34 6.95648e+06 434271 865456. 2994.66 4.82 0.229706 0.198987 28354 207349 -1 2720 25 2615 4259 426585 89725 5.3966 5.3966 -181.903 -5.3966 0 0 1.05005e+06 3633.38 0.41 0.15 0.20 -1 -1 0.41 0.0414813 0.0368373 103 65 96 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_058.v common 5.98 vpr 63.66 MiB 0.04 6948 -1 -1 1 0.03 -1 -1 30632 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 368 284 1 186 88 17 17 289 -1 unnamed_device 24.8 MiB 0.86 717 11983 4638 6220 1125 63.7 MiB 0.10 0.00 3.1457 -117.079 -3.1457 3.1457 0.70 0.000732981 0.000679648 0.0476187 0.0442052 46 2094 47 6.95648e+06 347416 828058. 2865.25 2.35 0.226869 0.197699 28066 200906 -1 1635 20 1426 1856 150168 34567 3.22337 3.22337 -123.095 -3.22337 0 0 1.01997e+06 3529.29 0.26 0.08 0.17 -1 -1 0.26 0.029677 0.0260207 83 34 92 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_059.v common 5.40 vpr 63.32 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30640 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64836 30 32 296 244 1 152 81 17 17 289 -1 unnamed_device 24.4 MiB 0.31 571 10581 4367 5776 438 63.3 MiB 0.09 0.00 3.0735 -108.432 -3.0735 3.0735 0.69 0.000617316 0.00057348 0.039312 0.0365595 38 2185 31 6.95648e+06 275038 678818. 2348.85 2.44 0.176128 0.153386 26626 170182 -1 1647 20 1291 1857 165363 36508 3.22627 3.22627 -117.748 -3.22627 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0251612 0.0219763 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_060.v common 15.83 vpr 63.98 MiB 0.03 7252 -1 -1 1 0.04 -1 -1 31212 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65512 32 32 531 413 1 225 95 17 17 289 -1 unnamed_device 25.6 MiB 1.31 1126 15215 3732 10105 1378 64.0 MiB 0.15 0.00 4.49524 -160.999 -4.49524 4.49524 0.68 0.000957331 0.000887204 0.0705224 0.0654438 58 2665 25 6.95648e+06 448746 997811. 3452.63 11.57 0.468115 0.40722 30370 251734 -1 2386 24 2392 3567 296671 59068 4.77311 4.77311 -169.426 -4.77311 0 0 1.25153e+06 4330.55 0.32 0.12 0.22 -1 -1 0.32 0.0446002 0.038936 103 127 32 32 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_061.v common 6.66 vpr 63.75 MiB 0.02 6880 -1 -1 1 0.05 -1 -1 30760 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 376 288 1 187 92 17 17 289 -1 unnamed_device 24.8 MiB 1.06 804 14375 4842 7223 2310 63.8 MiB 0.12 0.00 3.73321 -136.441 -3.73321 3.73321 0.72 0.000740131 0.000685586 0.0544732 0.0504192 40 2325 28 6.95648e+06 405319 706193. 2443.58 2.64 0.208593 0.183008 26914 176310 -1 2021 21 1927 2574 214398 45502 3.92076 3.92076 -146.885 -3.92076 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0271617 0.0241562 86 34 96 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_062.v common 5.00 vpr 63.29 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30564 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.9 MiB 0.33 740 12763 4452 6451 1860 63.3 MiB 0.10 0.00 3.05815 -117.559 -3.05815 3.05815 0.68 0.00061649 0.000573145 0.0428597 0.0398709 42 2032 25 6.95648e+06 347416 744469. 2576.02 1.79 0.148108 0.130103 27202 183097 -1 1781 23 1500 2324 191102 40031 3.32822 3.32822 -127.172 -3.32822 0 0 949917. 3286.91 0.25 0.09 0.16 -1 -1 0.25 0.0282393 0.024666 70 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_063.v common 7.61 vpr 63.53 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 31088 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 438 320 1 225 95 17 17 289 -1 unnamed_device 25.0 MiB 0.51 924 14567 5045 6877 2645 63.5 MiB 0.14 0.00 4.52824 -159.979 -4.52824 4.52824 0.69 0.000858209 0.000797495 0.0616079 0.0571891 54 2891 41 6.95648e+06 448746 949917. 3286.91 4.00 0.271767 0.237875 29506 232905 -1 2208 23 2579 4355 378821 79749 5.04871 5.04871 -171.079 -5.04871 0 0 1.17392e+06 4061.99 0.43 0.10 0.24 -1 -1 0.43 0.0326337 0.0288679 105 34 128 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_064.v common 12.18 vpr 62.99 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30552 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.3 MiB 0.41 618 10614 4475 5915 224 63.0 MiB 0.09 0.00 2.92185 -113.699 -2.92185 2.92185 0.67 0.000618803 0.000575402 0.0441845 0.0410752 40 2092 24 6.95648e+06 144757 706193. 2443.58 8.92 0.295385 0.256138 26914 176310 -1 1672 26 1556 2180 222035 62726 3.40472 3.40472 -130.975 -3.40472 0 0 926341. 3205.33 0.33 0.09 0.17 -1 -1 0.33 0.0262459 0.0230844 62 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_065.v common 8.14 vpr 63.09 MiB 0.03 6852 -1 -1 1 0.03 -1 -1 30536 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 30 32 296 244 1 151 83 17 17 289 -1 unnamed_device 24.6 MiB 0.83 601 10163 2708 5873 1582 63.1 MiB 0.08 0.00 3.10776 -107.419 -3.10776 3.10776 0.70 0.000614622 0.000570573 0.0323431 0.0299694 56 1303 24 6.95648e+06 303989 973134. 3367.25 4.31 0.263134 0.22606 29794 239141 -1 1130 22 1163 1708 119225 30075 2.89922 2.89922 -104.841 -2.89922 0 0 1.19926e+06 4149.71 0.31 0.07 0.20 -1 -1 0.31 0.0258648 0.0230581 65 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_066.v common 6.81 vpr 63.66 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 30708 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65184 29 32 393 319 1 174 81 17 17 289 -1 unnamed_device 24.8 MiB 1.27 705 12856 4698 6070 2088 63.7 MiB 0.11 0.00 3.39446 -107.671 -3.39446 3.39446 0.68 0.0007471 0.0006924 0.0568168 0.0527036 46 2685 42 6.95648e+06 289514 828058. 2865.25 2.63 0.219355 0.191923 28066 200906 -1 1910 19 1582 2498 202009 44237 3.38642 3.38642 -117.15 -3.38642 0 0 1.01997e+06 3529.29 0.26 0.08 0.20 -1 -1 0.26 0.0292259 0.0256477 77 88 29 29 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_067.v common 8.68 vpr 63.57 MiB 0.03 7172 -1 -1 1 0.03 -1 -1 30836 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 186 77 17 17 289 -1 unnamed_device 24.7 MiB 0.82 807 13117 5264 6347 1506 63.6 MiB 0.11 0.00 3.65689 -136.729 -3.65689 3.65689 0.90 0.000711825 0.000665694 0.0515372 0.0474886 36 2766 37 6.95648e+06 188184 648988. 2245.63 4.95 0.322696 0.279824 26050 158493 -1 2053 20 1969 2572 228964 49286 4.05846 4.05846 -153.242 -4.05846 0 0 828058. 2865.25 0.23 0.09 0.13 -1 -1 0.23 0.0313981 0.0275337 78 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_068.v common 6.59 vpr 63.65 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 31028 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 407 319 1 190 89 17 17 289 -1 unnamed_device 24.7 MiB 1.46 890 14345 5510 6931 1904 63.7 MiB 0.12 0.00 3.74419 -138.408 -3.74419 3.74419 0.70 0.000774662 0.000718539 0.0591422 0.0548851 48 2514 22 6.95648e+06 361892 865456. 2994.66 2.28 0.218049 0.191341 28354 207349 -1 2229 22 2039 3298 316904 61936 3.96296 3.96296 -146.742 -3.96296 0 0 1.05005e+06 3633.38 0.27 0.11 0.17 -1 -1 0.27 0.0335382 0.029323 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_069.v common 5.82 vpr 63.42 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30680 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 345 287 1 155 88 17 17 289 -1 unnamed_device 24.7 MiB 1.14 685 10813 4185 5763 865 63.4 MiB 0.09 0.00 3.05815 -117.015 -3.05815 3.05815 0.73 0.000679265 0.000629178 0.0400574 0.037188 42 2016 24 6.95648e+06 347416 744469. 2576.02 1.82 0.153948 0.134726 27202 183097 -1 1689 23 1603 2500 232366 47218 2.94752 2.94752 -122.592 -2.94752 0 0 949917. 3286.91 0.25 0.09 0.15 -1 -1 0.25 0.0273584 0.0242035 69 65 32 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_070.v common 5.57 vpr 63.23 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30668 -1 -1 10 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64744 31 32 353 302 1 147 73 17 17 289 -1 unnamed_device 24.6 MiB 1.35 684 10105 3894 4557 1654 63.2 MiB 0.09 0.00 3.30215 -110.841 -3.30215 3.30215 0.68 0.000669058 0.000619716 0.0469137 0.0435156 34 2151 24 6.95648e+06 144757 618332. 2139.56 1.53 0.169366 0.147841 25762 151098 -1 1868 22 1267 1977 194798 39364 3.36262 3.36262 -125.243 -3.36262 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0291055 0.0253209 59 90 0 0 89 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_071.v common 5.69 vpr 63.68 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 30652 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65204 30 32 374 297 1 178 84 17 17 289 -1 unnamed_device 24.9 MiB 0.96 949 12711 4087 6844 1780 63.7 MiB 0.12 0.00 3.1285 -115.995 -3.1285 3.1285 0.68 0.000719935 0.000668305 0.0535129 0.0497713 40 2353 22 6.95648e+06 318465 706193. 2443.58 1.89 0.203533 0.178391 26914 176310 -1 2105 20 1397 1990 160009 33984 3.34867 3.34867 -124.591 -3.34867 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0274733 0.0245216 79 60 60 30 57 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_072.v common 7.83 vpr 63.26 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30736 -1 -1 16 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 28 32 332 260 1 172 76 17 17 289 -1 unnamed_device 24.8 MiB 0.96 684 10156 4202 5354 600 63.3 MiB 0.08 0.00 4.24545 -126.653 -4.24545 4.24545 0.94 0.000519937 0.000478432 0.0356796 0.0329318 38 2692 43 6.95648e+06 231611 678818. 2348.85 3.68 0.193578 0.168296 26626 170182 -1 1982 23 1760 2516 214792 46129 4.19156 4.19156 -140.406 -4.19156 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0301191 0.0262803 74 34 84 28 28 28 +fixed_k6_frac_2ripple_N8_22nm.xml mult_073.v common 6.98 vpr 63.28 MiB 0.02 7052 -1 -1 1 0.03 -1 -1 30388 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64796 30 32 325 273 1 151 74 17 17 289 -1 unnamed_device 24.6 MiB 0.76 607 9374 3879 5147 348 63.3 MiB 0.08 0.00 3.0545 -108.859 -3.0545 3.0545 0.68 0.000654704 0.000608212 0.0418204 0.0389045 40 1907 24 6.95648e+06 173708 706193. 2443.58 3.56 0.233583 0.201919 26914 176310 -1 1416 18 1190 1609 127868 29623 2.97077 2.97077 -109.681 -2.97077 0 0 926341. 3205.33 0.24 0.07 0.15 -1 -1 0.24 0.0239151 0.0210018 61 63 30 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_074.v common 6.20 vpr 63.49 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30664 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 361 308 1 152 74 17 17 289 -1 unnamed_device 24.6 MiB 1.19 777 7669 3175 4304 190 63.5 MiB 0.07 0.00 3.0765 -113.072 -3.0765 3.0765 0.94 0.0005156 0.000473084 0.0286366 0.0263851 34 2377 25 6.95648e+06 144757 618332. 2139.56 1.87 0.137351 0.12102 25762 151098 -1 2005 19 1234 1967 176526 36076 2.94282 2.94282 -120.121 -2.94282 0 0 787024. 2723.27 0.28 0.08 0.15 -1 -1 0.28 0.0278647 0.024407 60 91 0 0 91 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_075.v common 5.89 vpr 63.59 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30616 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65120 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 0.18 795 9448 3333 4743 1372 63.6 MiB 0.08 0.00 3.89245 -136.332 -3.89245 3.89245 0.70 0.000688955 0.000640461 0.0362918 0.0337382 48 2670 42 6.95648e+06 361892 865456. 2994.66 2.78 0.203196 0.177523 28354 207349 -1 2158 29 2221 3443 365010 83765 4.07432 4.07432 -149.078 -4.07432 0 0 1.05005e+06 3633.38 0.27 0.13 0.17 -1 -1 0.27 0.03797 0.0330795 86 4 124 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_076.v common 7.61 vpr 63.73 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30884 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 189 91 17 17 289 -1 unnamed_device 24.8 MiB 1.25 926 10495 2590 6894 1011 63.7 MiB 0.11 0.00 3.78219 -140.482 -3.78219 3.78219 0.69 0.000778589 0.000721905 0.0427936 0.039715 40 2962 40 6.95648e+06 390843 706193. 2443.58 3.51 0.227791 0.198908 26914 176310 -1 2406 23 2090 3463 356547 89242 4.11526 4.11526 -158.247 -4.11526 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0357051 0.0312263 86 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_077.v common 6.65 vpr 63.95 MiB 0.03 7064 -1 -1 1 0.04 -1 -1 30556 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65484 32 32 407 319 1 187 90 17 17 289 -1 unnamed_device 25.3 MiB 1.31 831 9336 3198 4890 1248 63.9 MiB 0.08 0.00 3.70819 -135.715 -3.70819 3.70819 0.68 0.000612441 0.000562604 0.0352964 0.0326423 44 2968 30 6.95648e+06 376368 787024. 2723.27 2.58 0.172142 0.150668 27778 195446 -1 2272 23 1925 3045 319955 68140 4.24176 4.24176 -155.885 -4.24176 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.0361626 0.0316798 85 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_078.v common 8.97 vpr 63.77 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30600 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65300 32 32 399 315 1 188 91 17 17 289 -1 unnamed_device 24.9 MiB 0.92 822 13351 4683 6743 1925 63.8 MiB 0.12 0.00 3.75544 -130.593 -3.75544 3.75544 0.68 0.000785906 0.000725705 0.0529326 0.0490926 50 2879 49 6.95648e+06 390843 902133. 3121.57 5.20 0.344524 0.298474 28642 213929 -1 2048 29 1773 3043 320292 82524 4.05226 4.05226 -137.414 -4.05226 0 0 1.08113e+06 3740.92 0.28 0.14 0.18 -1 -1 0.28 0.0429219 0.0373684 86 65 60 30 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_079.v common 5.36 vpr 63.19 MiB 0.03 6900 -1 -1 1 0.04 -1 -1 30600 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64708 30 32 296 244 1 150 74 17 17 289 -1 unnamed_device 24.6 MiB 0.69 551 9064 3696 4990 378 63.2 MiB 0.08 0.00 3.29416 -111.889 -3.29416 3.29416 0.68 0.000612548 0.00056824 0.0381565 0.0354409 40 2106 28 6.95648e+06 173708 706193. 2443.58 1.86 0.169973 0.147975 26914 176310 -1 1679 22 1304 1971 193334 42756 3.41577 3.41577 -119.718 -3.41577 0 0 926341. 3205.33 0.35 0.08 0.18 -1 -1 0.35 0.0252576 0.0224681 62 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_080.v common 7.43 vpr 63.73 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30656 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65260 30 32 383 303 1 183 77 17 17 289 -1 unnamed_device 24.9 MiB 0.81 751 12465 5336 6622 507 63.7 MiB 0.11 0.00 4.015 -133.992 -4.015 4.015 0.77 0.000733025 0.000679901 0.0592132 0.0549955 40 2442 42 6.95648e+06 217135 706193. 2443.58 3.40 0.240172 0.210214 26914 176310 -1 2002 39 2711 3583 433028 142133 4.62086 4.62086 -151.988 -4.62086 0 0 926341. 3205.33 0.24 0.17 0.15 -1 -1 0.24 0.0514471 0.0445396 78 63 60 30 60 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_081.v common 7.25 vpr 64.02 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 31084 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65560 32 32 469 381 1 190 95 17 17 289 -1 unnamed_device 25.3 MiB 1.56 807 14351 4061 7900 2390 64.0 MiB 0.14 0.00 3.71619 -135.355 -3.71619 3.71619 0.72 0.000861161 0.000797748 0.0626309 0.0580596 44 2862 29 6.95648e+06 448746 787024. 2723.27 2.46 0.218733 0.192601 27778 195446 -1 2022 23 2042 3211 277832 59001 3.86766 3.86766 -146.25 -3.86766 0 0 997811. 3452.63 0.29 0.11 0.16 -1 -1 0.29 0.0383853 0.0337675 88 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_082.v common 8.60 vpr 63.71 MiB 0.03 7088 -1 -1 1 0.04 -1 -1 30944 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65244 31 32 425 341 1 182 85 17 17 289 -1 unnamed_device 24.8 MiB 0.87 718 14035 5965 7479 591 63.7 MiB 0.12 0.00 3.9948 -135.983 -3.9948 3.9948 0.68 0.00077952 0.000721743 0.0617449 0.057262 54 2014 29 6.95648e+06 318465 949917. 3286.91 4.78 0.34269 0.299409 29506 232905 -1 1621 20 1545 2316 164034 36739 3.64647 3.64647 -133.796 -3.64647 0 0 1.17392e+06 4061.99 0.34 0.08 0.20 -1 -1 0.34 0.0315375 0.027613 81 94 31 31 93 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_083.v common 6.62 vpr 63.61 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30768 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65140 30 32 404 328 1 173 80 17 17 289 -1 unnamed_device 25.0 MiB 1.37 700 13668 5834 7221 613 63.6 MiB 0.12 0.00 3.27591 -109.838 -3.27591 3.27591 0.68 0.000758757 0.000702409 0.0634914 0.0589444 46 2477 49 6.95648e+06 260562 828058. 2865.25 2.48 0.253183 0.22127 28066 200906 -1 1867 24 1570 2331 203675 46058 3.61317 3.61317 -127.439 -3.61317 0 0 1.01997e+06 3529.29 0.26 0.09 0.17 -1 -1 0.26 0.0349914 0.030502 75 92 26 26 90 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_084.v common 8.96 vpr 63.75 MiB 0.04 7084 -1 -1 1 0.04 -1 -1 30764 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65284 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.8 MiB 1.47 782 12628 3922 6830 1876 63.8 MiB 0.12 0.00 3.65989 -133.508 -3.65989 3.65989 0.71 0.000777989 0.000721475 0.0627761 0.0583058 54 2437 32 6.95648e+06 188184 949917. 3286.91 4.35 0.317007 0.275659 29506 232905 -1 1891 22 1946 3213 274670 59610 3.97716 3.97716 -142.803 -3.97716 0 0 1.17392e+06 4061.99 0.41 0.10 0.24 -1 -1 0.41 0.0301884 0.0267594 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_085.v common 6.42 vpr 63.46 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30556 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64984 29 32 387 316 1 171 83 17 17 289 -1 unnamed_device 24.6 MiB 0.95 662 10163 3749 4795 1619 63.5 MiB 0.09 0.00 3.14182 -102.393 -3.14182 3.14182 0.68 0.000732286 0.000676463 0.0410126 0.0379511 48 2042 48 6.95648e+06 318465 865456. 2994.66 2.66 0.224589 0.195218 28354 207349 -1 1533 21 1723 2554 216690 62538 3.06662 3.06662 -108.937 -3.06662 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0307826 0.0269151 77 88 26 26 85 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_086.v common 6.00 vpr 62.94 MiB 0.02 6688 -1 -1 1 0.03 -1 -1 30648 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 283 225 1 154 74 17 17 289 -1 unnamed_device 24.2 MiB 1.08 574 9219 3815 5040 364 62.9 MiB 0.09 0.00 2.94595 -112.182 -2.94595 2.94595 0.68 0.000611079 0.00056836 0.0391677 0.0364956 52 1811 36 6.95648e+06 144757 926341. 3205.33 1.97 0.15652 0.136763 29218 227130 -1 1414 25 1418 2272 219751 52529 3.33762 3.33762 -119.068 -3.33762 0 0 1.14541e+06 3963.36 0.43 0.09 0.23 -1 -1 0.43 0.0267096 0.0236674 61 3 96 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_087.v common 10.95 vpr 63.55 MiB 0.04 7060 -1 -1 1 0.03 -1 -1 30652 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65076 32 32 407 319 1 187 88 17 17 289 -1 unnamed_device 24.8 MiB 3.17 749 15688 6578 8529 581 63.6 MiB 0.14 0.00 3.77419 -136.605 -3.77419 3.77419 0.70 0.000775432 0.000719068 0.0657254 0.0609374 56 2068 24 6.95648e+06 347416 973134. 3367.25 4.86 0.289927 0.252949 29794 239141 -1 1778 21 1769 2715 231082 52344 4.18536 4.18536 -142.755 -4.18536 0 0 1.19926e+06 4149.71 0.31 0.10 0.20 -1 -1 0.31 0.0326897 0.0286494 84 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_088.v common 5.59 vpr 63.69 MiB 0.03 7072 -1 -1 1 0.04 -1 -1 30852 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 193 77 17 17 289 -1 unnamed_device 24.7 MiB 0.58 800 13117 5732 6986 399 63.7 MiB 0.11 0.00 3.79019 -142.199 -3.79019 3.79019 0.91 0.000576864 0.000528846 0.0496575 0.0456285 44 2680 39 6.95648e+06 188184 787024. 2723.27 2.01 0.228584 0.198781 27778 195446 -1 2012 21 1926 2623 234777 52100 4.19956 4.19956 -159.774 -4.19956 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0328893 0.0287952 81 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_089.v common 5.99 vpr 63.03 MiB 0.02 6908 -1 -1 1 0.04 -1 -1 30628 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 315 267 1 152 75 17 17 289 -1 unnamed_device 24.4 MiB 0.99 575 11609 4562 5941 1106 63.0 MiB 0.10 0.00 3.25495 -109.238 -3.25495 3.25495 0.71 0.000643126 0.000598384 0.0494904 0.0460237 40 2213 38 6.95648e+06 159232 706193. 2443.58 2.21 0.189581 0.166224 26914 176310 -1 1698 22 1192 1676 160478 37190 3.63517 3.63517 -123.249 -3.63517 0 0 926341. 3205.33 0.33 0.06 0.17 -1 -1 0.33 0.0213603 0.0188436 60 55 32 32 54 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_090.v common 5.20 vpr 62.92 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30572 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.3 MiB 0.28 835 9529 3959 5371 199 62.9 MiB 0.07 0.00 3.0815 -119.168 -3.0815 3.0815 0.89 0.000425522 0.000390761 0.0282859 0.0260203 36 2120 22 6.95648e+06 159232 648988. 2245.63 1.85 0.133553 0.116505 26050 158493 -1 1884 23 1579 2282 297398 93806 3.15612 3.15612 -129.532 -3.15612 0 0 828058. 2865.25 0.22 0.11 0.13 -1 -1 0.22 0.028415 0.0249093 63 4 93 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_091.v common 6.64 vpr 63.71 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30592 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 381 303 1 180 83 17 17 289 -1 unnamed_device 24.9 MiB 1.17 782 14483 5692 6794 1997 63.7 MiB 0.13 0.00 3.70334 -129.205 -3.70334 3.70334 0.68 0.000738186 0.000685329 0.0620346 0.0575992 38 2709 27 6.95648e+06 275038 678818. 2348.85 2.57 0.22126 0.194102 26626 170182 -1 2023 18 1506 2027 168922 35022 4.02841 4.02841 -142.044 -4.02841 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0273184 0.0245318 78 59 60 32 58 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_092.v common 8.61 vpr 63.76 MiB 0.02 7096 -1 -1 1 0.04 -1 -1 30648 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 406 330 1 182 82 17 17 289 -1 unnamed_device 24.9 MiB 0.82 793 11474 4768 6294 412 63.8 MiB 0.11 0.00 3.90986 -132.869 -3.90986 3.90986 0.68 0.000780314 0.000724862 0.0521576 0.048468 40 2890 43 6.95648e+06 260562 706193. 2443.58 4.83 0.240044 0.20964 26914 176310 -1 2126 22 1782 2605 243289 53635 4.11046 4.11046 -146.388 -4.11046 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0335505 0.0293018 78 88 28 28 88 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_093.v common 8.55 vpr 63.77 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30860 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65296 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 25.1 MiB 0.45 1152 4375 861 3334 180 63.8 MiB 0.06 0.00 4.48239 -161.071 -4.48239 4.48239 0.70 0.000869391 0.000812838 0.0207859 0.0194404 48 3067 24 6.95648e+06 390843 865456. 2994.66 5.23 0.298615 0.258816 28354 207349 -1 2633 22 2432 3816 349445 67562 4.6949 4.6949 -171.028 -4.6949 0 0 1.05005e+06 3633.38 0.27 0.07 0.16 -1 -1 0.27 0.0202816 0.0181549 100 3 156 32 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_094.v common 5.80 vpr 63.63 MiB 0.03 7136 -1 -1 1 0.05 -1 -1 30832 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65160 30 32 371 295 1 176 80 17 17 289 -1 unnamed_device 24.8 MiB 1.01 698 14528 6104 7488 936 63.6 MiB 0.13 0.00 3.34296 -113.702 -3.34296 3.34296 0.70 0.000715496 0.000664395 0.0631135 0.0585998 42 2310 46 6.95648e+06 260562 744469. 2576.02 1.90 0.225377 0.197375 27202 183097 -1 1830 22 1709 2508 220844 48357 3.67123 3.67123 -127.606 -3.67123 0 0 949917. 3286.91 0.25 0.09 0.15 -1 -1 0.25 0.0316559 0.0276539 77 59 60 30 56 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_095.v common 5.07 vpr 62.79 MiB 0.03 6796 -1 -1 1 0.03 -1 -1 30908 -1 -1 15 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64296 27 32 269 226 1 137 74 17 17 289 -1 unnamed_device 24.3 MiB 0.68 465 10459 4157 5359 943 62.8 MiB 0.09 0.00 3.15776 -95.8334 -3.15776 3.15776 0.70 0.000568005 0.000527996 0.0409278 0.0381231 36 1712 36 6.95648e+06 217135 648988. 2245.63 1.53 0.146526 0.127874 26050 158493 -1 1222 22 1135 1373 129059 31288 2.94267 2.94267 -102.297 -2.94267 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0246117 0.0214006 57 34 54 27 27 27 +fixed_k6_frac_2ripple_N8_22nm.xml mult_096.v common 6.89 vpr 63.91 MiB 0.04 7288 -1 -1 1 0.04 -1 -1 30844 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65444 32 32 493 378 1 222 94 17 17 289 -1 unnamed_device 25.6 MiB 0.71 956 13513 4288 6425 2800 63.9 MiB 0.13 0.00 4.037 -139.704 -4.037 4.037 0.69 0.000861191 0.000814529 0.0595856 0.0552367 54 3082 32 6.95648e+06 434271 949917. 3286.91 2.99 0.273816 0.239726 29506 232905 -1 2253 23 2386 4147 337264 71088 4.03337 4.03337 -146.914 -4.03337 0 0 1.17392e+06 4061.99 0.45 0.12 0.24 -1 -1 0.45 0.040833 0.0364151 103 95 62 31 95 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_097.v common 8.00 vpr 63.66 MiB 0.03 7368 -1 -1 1 0.04 -1 -1 30808 -1 -1 14 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65192 31 32 455 371 1 187 77 17 17 289 -1 unnamed_device 25.2 MiB 3.25 899 8716 2535 4990 1191 63.7 MiB 0.09 0.00 4.57784 -152.287 -4.57784 4.57784 0.69 0.000827912 0.000769589 0.0473461 0.0440369 38 2826 46 6.95648e+06 202660 678818. 2348.85 2.03 0.217072 0.188946 26626 170182 -1 2240 24 1742 2608 258428 51399 4.69951 4.69951 -161.371 -4.69951 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0384005 0.0333796 79 124 0 0 124 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_098.v common 10.02 vpr 63.45 MiB 0.02 6992 -1 -1 1 0.03 -1 -1 30524 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 355 304 1 147 74 17 17 289 -1 unnamed_device 24.6 MiB 2.95 500 11389 4353 5738 1298 63.5 MiB 0.10 0.00 3.0346 -106.135 -3.0346 3.0346 0.74 0.000684543 0.000634905 0.0530795 0.0492801 46 1835 35 6.95648e+06 144757 828058. 2865.25 4.07 0.318155 0.274854 28066 200906 -1 1251 40 1419 2236 151503 37375 2.95987 2.95987 -110.341 -2.95987 0 0 1.01997e+06 3529.29 0.30 0.10 0.20 -1 -1 0.30 0.0474647 0.0409556 58 89 0 0 89 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_099.v common 6.01 vpr 63.57 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30544 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65092 32 32 364 282 1 188 86 17 17 289 -1 unnamed_device 24.7 MiB 0.44 819 12938 5293 7361 284 63.6 MiB 0.10 0.00 4.12326 -140.658 -4.12326 4.12326 0.90 0.000557649 0.000511922 0.0411248 0.0378258 44 2596 40 6.95648e+06 318465 787024. 2723.27 2.18 0.17946 0.156734 27778 195446 -1 2131 27 2117 3219 365192 101388 3.95096 3.95096 -148.13 -3.95096 0 0 997811. 3452.63 0.39 0.14 0.18 -1 -1 0.39 0.035712 0.0316398 83 34 90 30 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_100.v common 6.24 vpr 63.90 MiB 0.04 7228 -1 -1 1 0.03 -1 -1 30908 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65432 31 32 443 336 1 210 86 17 17 289 -1 unnamed_device 25.1 MiB 0.82 852 12560 4728 5964 1868 63.9 MiB 0.11 0.00 4.1192 -140.393 -4.1192 4.1192 0.79 0.000680564 0.000626446 0.0474753 0.0437868 44 3025 26 6.95648e+06 332941 787024. 2723.27 2.48 0.234897 0.205604 27778 195446 -1 2353 21 2076 2936 259334 58012 4.08162 4.08162 -147.521 -4.08162 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0355482 0.0310415 95 64 87 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_101.v common 5.96 vpr 63.47 MiB 0.03 7168 -1 -1 1 0.04 -1 -1 30696 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64992 30 32 373 297 1 178 82 17 17 289 -1 unnamed_device 24.9 MiB 0.84 739 10762 4429 5782 551 63.5 MiB 0.10 0.00 3.27396 -108.751 -3.27396 3.27396 0.71 0.000722412 0.000670045 0.0463729 0.0430766 48 2426 50 6.95648e+06 289514 865456. 2994.66 2.16 0.212978 0.186488 28354 207349 -1 1832 21 1399 2255 175644 40528 3.58937 3.58937 -117.865 -3.58937 0 0 1.05005e+06 3633.38 0.40 0.08 0.21 -1 -1 0.40 0.0270447 0.0239698 78 61 58 30 58 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_102.v common 8.15 vpr 63.86 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30760 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 407 319 1 193 98 17 17 289 -1 unnamed_device 25.1 MiB 0.50 907 15848 6161 8045 1642 63.9 MiB 0.13 0.00 3.79319 -139.401 -3.79319 3.79319 0.68 0.000783365 0.000726687 0.0576671 0.0534451 50 2304 33 6.95648e+06 492173 902133. 3121.57 4.79 0.319319 0.277544 28642 213929 -1 1940 20 1908 2817 245898 49413 3.69656 3.69656 -140.563 -3.69656 0 0 1.08113e+06 3740.92 0.28 0.10 0.18 -1 -1 0.28 0.0318041 0.0278563 91 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_103.v common 6.38 vpr 63.71 MiB 0.02 7140 -1 -1 1 0.04 -1 -1 30720 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65244 32 32 405 318 1 192 95 17 17 289 -1 unnamed_device 25.1 MiB 0.51 794 15215 5485 7366 2364 63.7 MiB 0.13 0.00 3.05335 -116.88 -3.05335 3.05335 0.75 0.000776311 0.000710886 0.0574546 0.0532133 38 2646 41 6.95648e+06 448746 678818. 2348.85 2.87 0.238892 0.208347 26626 170182 -1 1981 23 1769 2415 213988 44975 3.15122 3.15122 -123.437 -3.15122 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.033519 0.0297477 90 65 63 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_104.v common 7.01 vpr 63.14 MiB 0.04 6976 -1 -1 1 0.03 -1 -1 30660 -1 -1 13 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 29 32 287 238 1 136 74 17 17 289 -1 unnamed_device 24.5 MiB 3.11 577 8599 3570 4706 323 63.1 MiB 0.07 0.00 3.17976 -103.796 -3.17976 3.17976 0.69 0.000594871 0.000552458 0.034982 0.0325302 34 1583 23 6.95648e+06 188184 618332. 2139.56 1.33 0.1552 0.134608 25762 151098 -1 1297 19 1043 1288 105228 23360 2.90532 2.90532 -108.529 -2.90532 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0237991 0.0208388 56 34 58 29 29 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_105.v common 8.62 vpr 63.36 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30312 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 334 290 1 148 74 17 17 289 -1 unnamed_device 24.5 MiB 0.84 584 9839 4132 5456 251 63.4 MiB 0.07 0.00 2.9814 -102.92 -2.9814 2.9814 0.90 0.000500188 0.000458942 0.0341039 0.0313809 44 1753 46 6.95648e+06 144757 787024. 2723.27 4.61 0.260119 0.224426 27778 195446 -1 1316 27 1169 1482 208596 68638 2.94952 2.94952 -107.222 -2.94952 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0334218 0.0290022 58 82 0 0 82 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_106.v common 8.32 vpr 63.48 MiB 0.03 7056 -1 -1 1 0.04 -1 -1 30704 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65004 31 32 365 281 1 188 91 17 17 289 -1 unnamed_device 24.8 MiB 0.46 743 12331 4128 5906 2297 63.5 MiB 0.10 0.00 4.24545 -140.476 -4.24545 4.24545 0.69 0.000718176 0.000666332 0.0459415 0.0426847 54 2036 23 6.95648e+06 405319 949917. 3286.91 4.94 0.295271 0.256081 29506 232905 -1 1685 20 1733 2472 224761 50324 4.02232 4.02232 -138.694 -4.02232 0 0 1.17392e+06 4061.99 0.30 0.09 0.23 -1 -1 0.30 0.0296455 0.0260556 86 34 93 31 31 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_107.v common 5.65 vpr 63.00 MiB 0.02 7076 -1 -1 1 0.03 -1 -1 30584 -1 -1 14 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 29 32 297 254 1 144 75 17 17 289 -1 unnamed_device 24.4 MiB 1.05 494 12399 5297 6440 662 63.0 MiB 0.10 0.00 3.26295 -100.502 -3.26295 3.26295 0.68 0.000606586 0.00056334 0.0503067 0.0467877 40 2019 35 6.95648e+06 202660 706193. 2443.58 1.87 0.161477 0.141454 26914 176310 -1 1451 29 1459 1940 163374 40464 3.15592 3.15592 -110.508 -3.15592 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0326612 0.0281718 59 56 29 29 52 26 +fixed_k6_frac_2ripple_N8_22nm.xml mult_108.v common 7.65 vpr 62.98 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30556 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 314 256 1 154 74 17 17 289 -1 unnamed_device 24.4 MiB 1.18 698 10149 3910 5225 1014 63.0 MiB 0.10 0.00 3.05815 -118.306 -3.05815 3.05815 0.68 0.000644322 0.000598222 0.0450811 0.0419301 44 1896 25 6.95648e+06 144757 787024. 2723.27 3.74 0.243378 0.210776 27778 195446 -1 1570 22 1474 2078 203712 39823 3.14502 3.14502 -124.731 -3.14502 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0284395 0.0247949 61 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_109.v common 5.60 vpr 63.53 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30696 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65056 31 32 387 307 1 181 87 17 17 289 -1 unnamed_device 24.7 MiB 1.01 717 11607 3761 5813 2033 63.5 MiB 0.10 0.00 3.1175 -113.433 -3.1175 3.1175 0.68 0.000741716 0.000688779 0.0470144 0.0436066 38 2272 43 6.95648e+06 347416 678818. 2348.85 1.86 0.204044 0.178182 26626 170182 -1 1657 20 1614 2040 142088 32525 3.35167 3.35167 -125.444 -3.35167 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.030471 0.0267416 82 64 58 31 62 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_110.v common 6.53 vpr 63.10 MiB 0.04 6988 -1 -1 1 0.03 -1 -1 30552 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 31 32 308 262 1 143 74 17 17 289 -1 unnamed_device 24.4 MiB 2.01 682 10459 3058 6921 480 63.1 MiB 0.08 0.00 3.13575 -104.344 -3.13575 3.13575 0.93 0.000471649 0.000433095 0.0355273 0.0327457 34 2026 23 6.95648e+06 159232 618332. 2139.56 1.60 0.15162 0.132192 25762 151098 -1 1823 20 1067 1570 158088 34104 3.13112 3.13112 -115.858 -3.13112 0 0 787024. 2723.27 0.23 0.07 0.15 -1 -1 0.23 0.0263005 0.0230666 57 55 31 31 53 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_111.v common 6.31 vpr 63.69 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30708 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 383 307 1 176 83 17 17 289 -1 unnamed_device 24.8 MiB 1.43 710 12323 5117 6727 479 63.7 MiB 0.11 0.00 3.0155 -107.222 -3.0155 3.0155 0.68 0.000741581 0.000688995 0.0540193 0.0502077 46 2285 29 6.95648e+06 275038 828058. 2865.25 2.09 0.193862 0.170818 28066 200906 -1 1739 22 1508 2150 179384 40238 2.87867 2.87867 -111.775 -2.87867 0 0 1.01997e+06 3529.29 0.26 0.09 0.16 -1 -1 0.26 0.0323781 0.0283722 76 65 52 26 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_112.v common 5.95 vpr 63.83 MiB 0.05 7188 -1 -1 1 0.04 -1 -1 30652 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65364 31 32 422 339 1 187 88 17 17 289 -1 unnamed_device 24.9 MiB 1.27 717 15298 5325 7460 2513 63.8 MiB 0.14 0.00 3.41641 -118.296 -3.41641 3.41641 0.68 0.000776848 0.000717882 0.064308 0.0595929 42 2477 26 6.95648e+06 361892 744469. 2576.02 1.85 0.200877 0.176642 27202 183097 -1 1978 22 1776 2495 228602 51348 3.44257 3.44257 -128.874 -3.44257 0 0 949917. 3286.91 0.25 0.10 0.15 -1 -1 0.25 0.0355359 0.0310633 85 93 31 31 92 31 +fixed_k6_frac_2ripple_N8_22nm.xml mult_113.v common 5.42 vpr 63.44 MiB 0.02 7016 -1 -1 1 0.03 -1 -1 30544 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 333 279 1 154 74 17 17 289 -1 unnamed_device 24.6 MiB 0.79 564 10149 3066 5426 1657 63.4 MiB 0.10 0.00 2.9023 -103.177 -2.9023 2.9023 0.68 0.000594196 0.00053799 0.0448895 0.0415615 44 1944 30 6.95648e+06 144757 787024. 2723.27 1.80 0.186658 0.162533 27778 195446 -1 1452 19 1126 1683 132472 30065 2.89152 2.89152 -109.339 -2.89152 0 0 997811. 3452.63 0.39 0.06 0.17 -1 -1 0.39 0.0239518 0.0213725 61 61 32 32 60 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_114.v common 16.13 vpr 63.35 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30276 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64872 32 32 339 283 1 158 74 17 17 289 -1 unnamed_device 24.6 MiB 0.99 611 8289 3413 4626 250 63.4 MiB 0.08 0.00 3.0515 -113.367 -3.0515 3.0515 0.72 0.000677632 0.000628458 0.0392806 0.0365414 48 2002 42 6.95648e+06 144757 865456. 2994.66 12.36 0.365962 0.315186 28354 207349 -1 1524 25 1461 2220 197929 48116 3.08382 3.08382 -118.468 -3.08382 0 0 1.05005e+06 3633.38 0.27 0.09 0.17 -1 -1 0.27 0.0320004 0.0278083 63 63 32 32 62 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_115.v common 6.86 vpr 63.84 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30972 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65368 32 32 407 319 1 190 93 17 17 289 -1 unnamed_device 25.0 MiB 0.93 951 8283 1857 5834 592 63.8 MiB 0.08 0.00 3.78219 -143.123 -3.78219 3.78219 0.67 0.000771234 0.000715895 0.0332646 0.0308684 40 2477 25 6.95648e+06 419795 706193. 2443.58 3.10 0.204839 0.178614 26914 176310 -1 2226 23 2054 3007 268851 53899 4.21676 4.21676 -156.863 -4.21676 0 0 926341. 3205.33 0.25 0.11 0.15 -1 -1 0.25 0.0346928 0.0303272 88 65 64 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_116.v common 7.36 vpr 63.54 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30740 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65064 29 32 367 293 1 175 80 17 17 289 -1 unnamed_device 25.0 MiB 1.03 739 8336 2662 4258 1416 63.5 MiB 0.08 0.00 3.1065 -104.923 -3.1065 3.1065 0.70 0.000714141 0.000662684 0.0372725 0.0346608 46 1738 30 6.95648e+06 275038 828058. 2865.25 3.42 0.261242 0.225514 28066 200906 -1 1263 22 1414 1969 95000 26559 3.37367 3.37367 -108.486 -3.37367 0 0 1.01997e+06 3529.29 0.36 0.06 0.20 -1 -1 0.36 0.0274005 0.0243117 77 62 56 29 58 29 +fixed_k6_frac_2ripple_N8_22nm.xml mult_117.v common 9.97 vpr 63.95 MiB 0.02 7260 -1 -1 1 0.04 -1 -1 30908 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65488 32 32 469 381 1 192 93 17 17 289 -1 unnamed_device 25.1 MiB 1.47 819 16473 6066 7302 3105 64.0 MiB 0.14 0.00 3.81039 -138.347 -3.81039 3.81039 0.68 0.000852461 0.000789328 0.0708618 0.0657151 56 2215 48 6.95648e+06 419795 973134. 3367.25 5.46 0.439126 0.381107 29794 239141 -1 1794 28 2151 3233 315294 92308 3.94296 3.94296 -143.819 -3.94296 0 0 1.19926e+06 4149.71 0.35 0.13 0.24 -1 -1 0.35 0.0454451 0.0393762 89 127 0 0 128 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_118.v common 5.49 vpr 62.93 MiB 0.02 6860 -1 -1 1 0.04 -1 -1 30480 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 31 32 259 212 1 144 74 17 17 289 -1 unnamed_device 24.4 MiB 1.20 588 9529 3953 5280 296 62.9 MiB 0.08 0.00 3.02776 -101.68 -3.02776 3.02776 0.68 0.00057153 0.000531539 0.0371144 0.0345099 36 2354 28 6.95648e+06 159232 648988. 2245.63 1.71 0.134928 0.118063 26050 158493 -1 1648 21 1097 1584 143759 32844 3.27757 3.27757 -113.049 -3.27757 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0256913 0.0224649 58 4 85 31 0 0 +fixed_k6_frac_2ripple_N8_22nm.xml mult_119.v common 6.44 vpr 63.93 MiB 0.04 7240 -1 -1 1 0.03 -1 -1 30740 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 418 338 1 182 87 17 17 289 -1 unnamed_device 25.0 MiB 0.89 751 13335 4844 6817 1674 63.9 MiB 0.12 0.00 3.74945 -128.098 -3.74945 3.74945 0.69 0.000782859 0.00072395 0.0565972 0.0523139 48 2609 46 6.95648e+06 332941 865456. 2994.66 2.68 0.227744 0.19939 28354 207349 -1 1743 30 1949 2617 321283 93172 3.69836 3.69836 -134.764 -3.69836 0 0 1.05005e+06 3633.38 0.27 0.13 0.17 -1 -1 0.27 0.043507 0.0378315 81 92 28 28 92 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_120.v common 8.71 vpr 63.56 MiB 0.04 6876 -1 -1 1 0.03 -1 -1 30324 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 376 318 1 154 74 17 17 289 -1 unnamed_device 24.9 MiB 2.64 613 11854 5235 6332 287 63.6 MiB 0.11 0.00 2.96105 -113.67 -2.96105 2.96105 0.70 0.000710342 0.000658413 0.0572958 0.0532115 40 2066 46 6.95648e+06 144757 706193. 2443.58 3.18 0.238724 0.210097 26914 176310 -1 1751 22 1624 2248 247279 56332 3.36122 3.36122 -137.644 -3.36122 0 0 926341. 3205.33 0.24 0.10 0.14 -1 -1 0.24 0.0309779 0.0270971 61 96 0 0 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_121.v common 14.79 vpr 63.80 MiB 0.04 7080 -1 -1 1 0.03 -1 -1 30556 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 401 316 1 188 88 17 17 289 -1 unnamed_device 24.8 MiB 1.00 784 11983 4223 5778 1982 63.8 MiB 0.10 0.00 3.13882 -116.487 -3.13882 3.13882 0.76 0.00059203 0.000545575 0.0394993 0.0363023 44 2541 42 6.95648e+06 347416 787024. 2723.27 10.81 0.386764 0.333541 27778 195446 -1 1887 22 1491 2243 200152 44782 3.69457 3.69457 -132.162 -3.69457 0 0 997811. 3452.63 0.36 0.08 0.19 -1 -1 0.36 0.0294498 0.0261018 84 65 61 32 64 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_122.v common 7.58 vpr 63.73 MiB 0.03 7232 -1 -1 1 0.04 -1 -1 31024 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 500 382 1 222 97 17 17 289 -1 unnamed_device 25.4 MiB 1.19 961 18301 6218 9454 2629 63.7 MiB 0.16 0.00 4.52824 -160.34 -4.52824 4.52824 0.68 0.000908333 0.000841823 0.0782169 0.0724827 46 3059 26 6.95648e+06 477698 828058. 2865.25 3.33 0.267777 0.235535 28066 200906 -1 2357 21 2592 3973 314953 65840 5.13481 5.13481 -176.525 -5.13481 0 0 1.01997e+06 3529.29 0.39 0.12 0.20 -1 -1 0.39 0.0380457 0.0340544 104 96 64 32 96 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_123.v common 6.53 vpr 62.86 MiB 0.03 6908 -1 -1 1 0.03 -1 -1 30404 -1 -1 10 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64372 30 32 246 229 1 117 72 17 17 289 -1 unnamed_device 24.2 MiB 0.50 395 8267 2975 4043 1249 62.9 MiB 0.07 0.00 2.20646 -76.6701 -2.20646 2.20646 0.72 0.000532915 0.000495272 0.0319877 0.0297801 40 939 23 6.95648e+06 144757 706193. 2443.58 3.33 0.188446 0.162102 26914 176310 -1 776 19 617 722 44769 12967 1.96508 1.96508 -75.0229 -1.96508 0 0 926341. 3205.33 0.24 0.05 0.15 -1 -1 0.24 0.0203961 0.0177693 45 56 0 0 53 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_124.v common 5.86 vpr 63.02 MiB 0.04 6904 -1 -1 1 0.03 -1 -1 30632 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 30 32 296 244 1 141 74 17 17 289 -1 unnamed_device 24.4 MiB 1.57 505 9994 3801 4923 1270 63.0 MiB 0.08 0.00 3.20866 -106.336 -3.20866 3.20866 0.67 0.0006461 0.000601701 0.0421301 0.0391975 38 2117 38 6.95648e+06 173708 678818. 2348.85 1.65 0.159046 0.138977 26626 170182 -1 1277 18 1140 1631 129837 30382 2.96767 2.96767 -109.948 -2.96767 0 0 902133. 3121.57 0.25 0.06 0.14 -1 -1 0.25 0.0232182 0.0203441 58 34 60 30 30 30 +fixed_k6_frac_2ripple_N8_22nm.xml mult_125.v common 14.38 vpr 63.09 MiB 0.02 6844 -1 -1 1 0.03 -1 -1 30204 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 314 256 1 161 74 17 17 289 -1 unnamed_device 24.5 MiB 0.24 594 9219 3126 4706 1387 63.1 MiB 0.09 0.00 2.93285 -111.664 -2.93285 2.93285 0.69 0.000649972 0.000603001 0.040504 0.0376406 48 2010 45 6.95648e+06 144757 865456. 2994.66 11.06 0.336264 0.290302 28354 207349 -1 1489 21 1492 2376 205237 46457 2.87752 2.87752 -112.021 -2.87752 0 0 1.05005e+06 3633.38 0.30 0.09 0.21 -1 -1 0.30 0.0278613 0.0244284 65 34 64 32 32 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_126.v common 5.09 vpr 62.87 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30672 -1 -1 15 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64380 25 32 251 214 1 132 72 17 17 289 -1 unnamed_device 24.3 MiB 0.47 415 9310 3976 4598 736 62.9 MiB 0.08 0.00 3.24096 -89.6096 -3.24096 3.24096 0.71 0.000532172 0.000494991 0.0357326 0.0333182 40 1641 47 6.95648e+06 217135 706193. 2443.58 1.84 0.166093 0.143791 26914 176310 -1 1231 23 1172 1508 123029 30295 3.23732 3.23732 -96.3378 -3.23732 0 0 926341. 3205.33 0.33 0.06 0.17 -1 -1 0.33 0.0211942 0.0186136 56 34 50 25 25 25 +fixed_k6_frac_2ripple_N8_22nm.xml mult_127.v common 7.76 vpr 63.82 MiB 0.03 7144 -1 -1 1 0.04 -1 -1 30740 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65348 32 32 432 346 1 185 77 17 17 289 -1 unnamed_device 25.1 MiB 1.13 849 10835 4559 6029 247 63.8 MiB 0.13 0.00 3.79924 -134.385 -3.79924 3.79924 0.69 0.000803879 0.000744491 0.0638745 0.0591882 44 3491 48 6.95648e+06 188184 787024. 2723.27 3.75 0.281112 0.246725 27778 195446 -1 2637 23 2063 3668 358262 72305 4.24486 4.24486 -155.606 -4.24486 0 0 997811. 3452.63 0.26 0.12 0.16 -1 -1 0.26 0.036578 0.0319442 77 94 32 32 94 32 +fixed_k6_frac_2ripple_N8_22nm.xml mult_128.v common 6.28 vpr 63.80 MiB 0.05 7192 -1 -1 1 0.03 -1 -1 30508 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65332 31 32 421 339 1 185 92 17 17 289 -1 unnamed_device 25.1 MiB 0.84 742 12512 4241 5927 2344 63.8 MiB 0.11 0.00 3.1116 -112.527 -3.1116 3.1116 0.69 0.00077952 0.000723023 0.0503994 0.0467687 40 2297 45 6.95648e+06 419795 706193. 2443.58 2.61 0.241123 0.210298 26914 176310 -1 1847 19 1559 2042 165150 36844 3.43477 3.43477 -125.399 -3.43477 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0305601 0.0268172 87 94 29 29 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_001.v common 5.96 vpr 63.34 MiB 0.04 7028 -1 -1 1 0.04 -1 -1 30716 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64856 32 32 438 350 1 287 86 17 17 289 -1 unnamed_device 25.0 MiB 0.70 1062 15584 5717 7278 2589 63.3 MiB 0.15 0.00 4.46104 -158.567 -4.46104 4.46104 0.69 0.000813222 0.000754771 0.0709022 0.0657873 48 3427 35 6.99608e+06 323745 865456. 2994.66 2.26 0.234939 0.206473 28354 207349 -1 2385 19 2200 2552 192955 43997 4.48061 4.48061 -161.234 -4.48061 0 0 1.05005e+06 3633.38 0.32 0.09 0.21 -1 -1 0.32 0.0324376 0.0284877 130 96 32 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_002.v common 9.41 vpr 63.84 MiB 0.03 7224 -1 -1 1 0.04 -1 -1 30904 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65372 30 32 409 330 1 259 82 17 17 289 -1 unnamed_device 25.1 MiB 1.42 1018 13610 5732 7207 671 63.8 MiB 0.13 0.00 4.50158 -148.332 -4.50158 4.50158 0.68 0.000764767 0.000709898 0.059668 0.055319 56 2722 22 6.99608e+06 294314 973134. 3367.25 5.00 0.302138 0.262755 29794 239141 -1 2389 22 2160 3053 316534 67697 4.53309 4.53309 -150.408 -4.53309 0 0 1.19926e+06 4149.71 0.32 0.12 0.26 -1 -1 0.32 0.035813 0.0315112 117 91 30 30 89 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_003.v common 6.33 vpr 63.52 MiB 0.02 7012 -1 -1 1 0.04 -1 -1 30612 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 387 309 1 241 82 17 17 289 -1 unnamed_device 24.7 MiB 0.86 1040 13610 5701 7488 421 63.5 MiB 0.12 0.00 3.59279 -128.627 -3.59279 3.59279 0.68 0.000715111 0.000660411 0.0590587 0.0548248 40 3318 43 6.99608e+06 264882 706193. 2443.58 2.70 0.233892 0.205599 26914 176310 -1 2603 20 1835 2175 201775 43691 4.18766 4.18766 -147.94 -4.18766 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0308136 0.027049 106 65 54 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_004.v common 5.50 vpr 63.49 MiB 0.03 7052 -1 -1 1 0.04 -1 -1 30676 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 29 32 343 267 1 201 79 17 17 289 -1 unnamed_device 24.7 MiB 0.55 806 14444 6101 7602 741 63.5 MiB 0.13 0.00 3.79615 -125.537 -3.79615 3.79615 0.69 0.000686892 0.00063874 0.0608208 0.0564886 40 2767 26 6.99608e+06 264882 706193. 2443.58 2.16 0.208872 0.183343 26914 176310 -1 2226 24 1905 2818 251970 54869 4.49232 4.49232 -151.382 -4.49232 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0319685 0.0279087 89 34 87 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_005.v common 6.75 vpr 63.60 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30496 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 376 288 1 218 79 17 17 289 -1 unnamed_device 24.7 MiB 0.52 871 12416 4669 6393 1354 63.6 MiB 0.12 0.00 4.27644 -154.345 -4.27644 4.27644 0.75 0.000753353 0.000699095 0.0577598 0.0536317 56 2721 45 6.99608e+06 220735 973134. 3367.25 3.11 0.243968 0.214051 29794 239141 -1 2059 35 2791 4417 514022 172861 4.30025 4.30025 -158.18 -4.30025 0 0 1.19926e+06 4149.71 0.31 0.19 0.22 -1 -1 0.31 0.0482147 0.0419662 93 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_006.v common 5.80 vpr 63.61 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30716 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65132 32 32 402 316 1 251 94 17 17 289 -1 unnamed_device 24.9 MiB 0.54 1298 16069 5589 8587 1893 63.6 MiB 0.15 0.00 3.60699 -134.626 -3.60699 3.60699 0.71 0.00076639 0.000709907 0.061528 0.0570592 46 3448 27 6.99608e+06 441471 828058. 2865.25 2.22 0.209464 0.184106 28066 200906 -1 2795 21 2163 3205 256905 51563 3.85391 3.85391 -147.359 -3.85391 0 0 1.01997e+06 3529.29 0.27 0.10 0.17 -1 -1 0.27 0.0325843 0.0285214 117 64 63 32 63 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_007.v common 5.75 vpr 62.91 MiB 0.03 6972 -1 -1 1 0.03 -1 -1 30964 -1 -1 15 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64420 27 32 269 226 1 158 74 17 17 289 -1 unnamed_device 24.2 MiB 1.37 620 8289 3348 4414 527 62.9 MiB 0.07 0.00 3.30124 -103.988 -3.30124 3.30124 0.70 0.000565538 0.000526047 0.0323244 0.0300711 44 1843 24 6.99608e+06 220735 787024. 2723.27 1.64 0.146487 0.127204 27778 195446 -1 1506 22 1261 1904 162728 35707 3.18521 3.18521 -110.775 -3.18521 0 0 997811. 3452.63 0.26 0.07 0.17 -1 -1 0.26 0.0247001 0.0215006 68 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_008.v common 8.38 vpr 63.03 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30440 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 31 32 317 242 1 178 80 17 17 289 -1 unnamed_device 24.4 MiB 0.56 708 9368 3795 5080 493 63.0 MiB 0.08 0.00 2.88485 -101.173 -2.88485 2.88485 0.68 0.000660851 0.000613115 0.0367689 0.0341058 50 2278 47 6.99608e+06 250167 902133. 3121.57 5.04 0.323093 0.279315 28642 213929 -1 1570 21 1249 1912 138518 34809 3.25042 3.25042 -106.576 -3.25042 0 0 1.08113e+06 3740.92 0.28 0.07 0.18 -1 -1 0.28 0.0278211 0.0243169 77 4 115 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_009.v common 7.73 vpr 63.51 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 30436 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65032 31 32 338 292 1 222 78 17 17 289 -1 unnamed_device 24.7 MiB 2.86 865 11366 4429 5807 1130 63.5 MiB 0.10 0.00 3.3156 -116.953 -3.3156 3.3156 0.67 0.000659038 0.000611888 0.0478616 0.0444376 44 2622 33 6.99608e+06 220735 787024. 2723.27 2.16 0.199207 0.174513 27778 195446 -1 1935 23 1676 2060 194504 43898 3.18986 3.18986 -123.189 -3.18986 0 0 997811. 3452.63 0.26 0.09 0.16 -1 -1 0.26 0.0298308 0.0259993 96 85 0 0 84 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_010.v common 5.44 vpr 63.19 MiB 0.03 6788 -1 -1 1 0.03 -1 -1 30592 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 314 256 1 187 77 17 17 289 -1 unnamed_device 24.5 MiB 0.64 668 10346 4043 5155 1148 63.2 MiB 0.09 0.00 3.58059 -133.895 -3.58059 3.58059 0.69 0.000649228 0.000603148 0.0428629 0.039848 44 2278 49 6.99608e+06 191304 787024. 2723.27 2.00 0.15578 0.136233 27778 195446 -1 1657 22 1568 1982 150520 33679 3.60016 3.60016 -137.237 -3.60016 0 0 997811. 3452.63 0.38 0.07 0.19 -1 -1 0.38 0.0244546 0.0216257 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_011.v common 8.38 vpr 63.30 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30376 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64816 30 32 325 273 1 199 77 17 17 289 -1 unnamed_device 24.7 MiB 2.14 858 10835 4264 5113 1458 63.3 MiB 0.10 0.00 3.85932 -133.017 -3.85932 3.85932 0.68 0.000653233 0.000606247 0.0460348 0.0428091 44 2461 23 6.99608e+06 220735 787024. 2723.27 3.51 0.244716 0.211573 27778 195446 -1 1927 20 1676 2243 186844 38759 3.6649 3.6649 -132.507 -3.6649 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0266194 0.0233232 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_012.v common 7.15 vpr 63.29 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 30744 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64804 32 32 331 280 1 210 78 17 17 289 -1 unnamed_device 24.5 MiB 0.68 1078 12030 4277 6214 1539 63.3 MiB 0.11 0.00 3.0712 -121.401 -3.0712 3.0712 0.69 0.00065566 0.000607975 0.0501001 0.0464957 40 2610 38 6.99608e+06 206020 706193. 2443.58 3.76 0.263418 0.228258 26914 176310 -1 2235 21 1505 1638 164853 32896 3.20617 3.20617 -126.041 -3.20617 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0278396 0.0243178 91 65 25 25 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_013.v common 6.28 vpr 63.52 MiB 0.03 7076 -1 -1 1 0.04 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 386 305 1 231 80 17 17 289 -1 unnamed_device 24.9 MiB 1.00 883 7132 1837 4428 867 63.5 MiB 0.08 0.00 3.50359 -126.552 -3.50359 3.50359 0.69 0.000744903 0.00069111 0.0337069 0.0313096 50 2388 31 6.99608e+06 235451 902133. 3121.57 2.46 0.199005 0.173106 28642 213929 -1 1733 19 1745 2367 157341 37645 3.52941 3.52941 -122.786 -3.52941 0 0 1.08113e+06 3740.92 0.32 0.08 0.21 -1 -1 0.32 0.0290451 0.0254898 101 58 64 32 57 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_014.v common 6.62 vpr 63.67 MiB 0.04 7112 -1 -1 1 0.04 -1 -1 30896 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 254 83 17 17 289 -1 unnamed_device 25.0 MiB 0.78 1134 14123 4441 7724 1958 63.7 MiB 0.13 0.00 4.28564 -153.93 -4.28564 4.28564 0.68 0.000776555 0.000720909 0.0636452 0.0590841 48 3141 43 6.99608e+06 279598 865456. 2994.66 2.90 0.251033 0.220078 28354 207349 -1 2339 21 2487 3196 227881 55316 4.90051 4.90051 -177.873 -4.90051 0 0 1.05005e+06 3633.38 0.39 0.09 0.18 -1 -1 0.39 0.029052 0.025829 112 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_015.v common 8.37 vpr 62.86 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30848 -1 -1 14 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64368 29 32 272 228 1 161 75 17 17 289 -1 unnamed_device 24.3 MiB 2.63 572 11293 4723 5996 574 62.9 MiB 0.09 0.00 2.92195 -96.6009 -2.92195 2.92195 0.68 0.000577212 0.000536833 0.0433719 0.0403484 40 1775 30 6.99608e+06 206020 706193. 2443.58 3.00 0.173343 0.151824 26914 176310 -1 1418 24 1311 1817 132245 33028 3.66212 3.66212 -114.218 -3.66212 0 0 926341. 3205.33 0.25 0.07 0.15 -1 -1 0.25 0.0272902 0.0236946 67 29 58 29 24 24 +fixed_k6_frac_2uripple_N8_22nm.xml mult_016.v common 6.94 vpr 63.82 MiB 0.03 7008 -1 -1 1 0.04 -1 -1 30760 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65356 32 32 401 315 1 243 80 17 17 289 -1 unnamed_device 25.1 MiB 1.85 1040 13324 4763 6768 1793 63.8 MiB 0.13 0.00 3.68279 -132.173 -3.68279 3.68279 0.69 0.000763811 0.000708138 0.0621225 0.0576299 48 3031 32 6.99608e+06 235451 865456. 2994.66 2.03 0.205079 0.180337 28354 207349 -1 2380 20 2283 3159 253483 55672 4.03531 4.03531 -140.817 -4.03531 0 0 1.05005e+06 3633.38 0.40 0.09 0.21 -1 -1 0.40 0.0293222 0.0261993 106 63 64 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_017.v common 7.86 vpr 63.42 MiB 0.03 7144 -1 -1 1 0.03 -1 -1 30724 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 383 303 1 230 81 17 17 289 -1 unnamed_device 24.6 MiB 1.02 1122 6731 1649 4394 688 63.4 MiB 0.08 0.00 3.32994 -131.897 -3.32994 3.32994 0.74 0.000742303 0.000689415 0.0314442 0.0292442 40 2906 36 6.99608e+06 250167 706193. 2443.58 3.96 0.27841 0.24049 26914 176310 -1 2505 20 1949 2437 233911 46190 3.34951 3.34951 -139.38 -3.34951 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.031729 0.027909 99 57 64 32 56 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_018.v common 5.44 vpr 63.30 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30460 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64824 32 32 339 284 1 218 78 17 17 289 -1 unnamed_device 24.4 MiB 0.73 871 13856 5887 7726 243 63.3 MiB 0.12 0.00 3.39034 -128.572 -3.39034 3.39034 0.68 0.000686285 0.000638435 0.0584571 0.0543011 44 3104 41 6.99608e+06 206020 787024. 2723.27 1.97 0.21759 0.190249 27778 195446 -1 2137 21 1688 2010 171402 38960 3.66766 3.66766 -136.266 -3.66766 0 0 997811. 3452.63 0.26 0.08 0.15 -1 -1 0.26 0.0284126 0.0248458 91 65 29 29 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_019.v common 6.63 vpr 62.46 MiB 0.02 6760 -1 -1 1 0.03 -1 -1 30516 -1 -1 11 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63960 30 32 226 208 1 139 73 17 17 289 -1 unnamed_device 23.9 MiB 1.97 536 9041 3932 4796 313 62.5 MiB 0.06 0.00 2.34646 -88.6787 -2.34646 2.34646 0.79 0.0003992 0.000367465 0.0251468 0.023163 36 1504 46 6.99608e+06 161872 648988. 2245.63 1.82 0.150439 0.129859 26050 158493 -1 1185 35 785 833 161236 78784 2.10343 2.10343 -86.7194 -2.10343 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0317432 0.0272842 56 34 24 24 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_020.v common 11.41 vpr 63.39 MiB 0.03 7048 -1 -1 1 0.03 -1 -1 30704 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 335 280 1 209 78 17 17 289 -1 unnamed_device 24.6 MiB 2.58 1018 11532 3380 6660 1492 63.4 MiB 0.11 0.00 3.58639 -133.629 -3.58639 3.58639 0.83 0.000667938 0.00062014 0.0493181 0.0458246 36 2947 36 6.99608e+06 220735 648988. 2245.63 5.96 0.28698 0.249744 26050 158493 -1 2421 23 1833 2208 230407 46044 3.69241 3.69241 -147.319 -3.69241 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0299143 0.0260732 91 64 31 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_021.v common 5.48 vpr 63.50 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30344 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 366 283 1 215 87 17 17 289 -1 unnamed_device 24.6 MiB 0.42 1089 12759 4547 6573 1639 63.5 MiB 0.10 0.00 4.04748 -146.851 -4.04748 4.04748 0.91 0.000561425 0.000516745 0.0394282 0.0362802 44 2732 29 6.99608e+06 338461 787024. 2723.27 1.95 0.145637 0.128528 27778 195446 -1 2317 18 1814 2487 211704 44198 4.3084 4.3084 -154.408 -4.3084 0 0 997811. 3452.63 0.28 0.11 0.16 -1 -1 0.28 0.034648 0.0305728 97 34 91 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_022.v common 6.09 vpr 63.64 MiB 0.02 7152 -1 -1 1 0.04 -1 -1 30944 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65168 32 32 460 375 1 303 86 17 17 289 -1 unnamed_device 25.2 MiB 1.19 1280 15206 4884 7262 3060 63.6 MiB 0.14 0.00 4.01908 -141.768 -4.01908 4.01908 0.67 0.000834712 0.00077583 0.0696827 0.0647022 44 3551 43 6.99608e+06 323745 787024. 2723.27 2.06 0.236202 0.207153 27778 195446 -1 2645 23 2303 2627 215587 45955 4.0671 4.0671 -143.752 -4.0671 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0383985 0.0334981 138 124 0 0 125 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_023.v common 6.73 vpr 62.37 MiB 0.02 6764 -1 -1 1 0.03 -1 -1 30836 -1 -1 15 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63864 26 32 198 186 1 125 73 17 17 289 -1 unnamed_device 23.8 MiB 0.84 401 7217 2934 3827 456 62.4 MiB 0.05 0.00 2.7074 -79.2163 -2.7074 2.7074 0.68 0.000440287 0.000408821 0.02242 0.0208371 38 1293 19 6.99608e+06 220735 678818. 2348.85 3.29 0.136624 0.117797 26626 170182 -1 953 17 670 783 67374 17269 2.66797 2.66797 -85.6018 -2.66797 0 0 902133. 3121.57 0.31 0.04 0.17 -1 -1 0.31 0.0141635 0.0125676 52 30 26 26 22 22 +fixed_k6_frac_2uripple_N8_22nm.xml mult_024.v common 16.61 vpr 63.16 MiB 0.03 6948 -1 -1 1 0.04 -1 -1 30364 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64676 32 32 333 251 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.74 698 9036 3669 4978 389 63.2 MiB 0.08 0.00 3.97238 -133.231 -3.97238 3.97238 0.69 0.000645732 0.000595586 0.0412017 0.0382881 52 2459 32 6.99608e+06 176588 926341. 3205.33 12.66 0.350863 0.303781 29218 227130 -1 1929 22 1598 2525 246143 57494 4.23566 4.23566 -142.201 -4.23566 0 0 1.14541e+06 3963.36 0.41 0.08 0.23 -1 -1 0.41 0.0217044 0.019244 75 3 122 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_025.v common 6.02 vpr 62.38 MiB 0.02 6640 -1 -1 1 0.03 -1 -1 30636 -1 -1 8 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 32 32 199 182 1 119 72 17 17 289 -1 unnamed_device 23.9 MiB 0.29 736 9906 3603 5031 1272 62.4 MiB 0.07 0.00 2.06111 -84.6894 -2.06111 2.06111 0.68 0.000472879 0.000439518 0.0331821 0.0308604 36 1592 30 6.99608e+06 117725 648988. 2245.63 3.09 0.164685 0.142916 26050 158493 -1 1467 21 754 985 99828 19974 1.94512 1.94512 -88.5707 -1.94512 0 0 828058. 2865.25 0.32 0.05 0.16 -1 -1 0.32 0.0173787 0.0154241 44 3 53 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_026.v common 6.00 vpr 63.48 MiB 0.04 7052 -1 -1 1 0.04 -1 -1 30808 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65000 32 32 376 288 1 218 81 17 17 289 -1 unnamed_device 24.5 MiB 1.08 836 12681 5269 6945 467 63.5 MiB 0.12 0.00 3.87925 -141.78 -3.87925 3.87925 0.68 0.000730834 0.00067854 0.0557901 0.0517782 44 2983 27 6.99608e+06 250167 787024. 2723.27 2.11 0.21267 0.186391 27778 195446 -1 2186 20 1906 2685 217333 48849 4.38102 4.38102 -157.036 -4.38102 0 0 997811. 3452.63 0.27 0.10 0.16 -1 -1 0.27 0.0315089 0.0277565 95 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_027.v common 4.94 vpr 63.01 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30456 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64520 32 32 337 253 1 188 92 17 17 289 -1 unnamed_device 24.5 MiB 0.26 1064 14375 4737 7721 1917 63.0 MiB 0.12 0.00 2.93295 -116.62 -2.93295 2.93295 0.69 0.000694022 0.000643657 0.0518186 0.0480954 38 2674 40 6.99608e+06 412039 678818. 2348.85 1.82 0.183032 0.160877 26626 170182 -1 2293 21 1591 2332 188052 37412 3.04662 3.04662 -123.142 -3.04662 0 0 902133. 3121.57 0.34 0.08 0.17 -1 -1 0.34 0.028398 0.0253108 87 3 124 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_028.v common 6.33 vpr 63.69 MiB 0.03 7064 -1 -1 1 0.04 -1 -1 30796 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 407 319 1 256 85 17 17 289 -1 unnamed_device 25.0 MiB 0.83 1077 13105 3562 8179 1364 63.7 MiB 0.11 0.00 3.82425 -139.818 -3.82425 3.82425 0.91 0.000599552 0.000550055 0.0450851 0.0414598 44 3463 28 6.99608e+06 309029 787024. 2723.27 2.18 0.184136 0.161331 27778 195446 -1 2732 24 2419 3317 283131 58685 4.04612 4.04612 -152.423 -4.04612 0 0 997811. 3452.63 0.28 0.11 0.19 -1 -1 0.28 0.0366075 0.0320126 115 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_029.v common 5.62 vpr 62.92 MiB 0.04 6912 -1 -1 1 0.03 -1 -1 30408 -1 -1 11 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64428 32 32 294 246 1 175 75 17 17 289 -1 unnamed_device 24.3 MiB 1.08 701 9397 3869 5271 257 62.9 MiB 0.08 0.00 2.9841 -107.493 -2.9841 2.9841 0.68 0.000593429 0.000549186 0.0385554 0.03581 38 2419 40 6.99608e+06 161872 678818. 2348.85 1.88 0.160743 0.140519 26626 170182 -1 1644 20 1424 1950 142803 33602 3.05092 3.05092 -118.057 -3.05092 0 0 902133. 3121.57 0.23 0.07 0.16 -1 -1 0.23 0.0242752 0.0211914 72 34 54 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_030.v common 11.88 vpr 63.09 MiB 0.05 6908 -1 -1 1 0.03 -1 -1 30452 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 30 32 296 244 1 173 75 17 17 289 -1 unnamed_device 24.4 MiB 6.70 650 7975 2399 4401 1175 63.1 MiB 0.07 0.00 3.55679 -118.022 -3.55679 3.55679 0.68 0.000612896 0.000569294 0.0333037 0.030968 46 2080 39 6.99608e+06 191304 828058. 2865.25 2.44 0.178585 0.154959 28066 200906 -1 1471 22 1442 2084 152387 36886 3.57811 3.57811 -127.288 -3.57811 0 0 1.01997e+06 3529.29 0.26 0.08 0.16 -1 -1 0.26 0.0278599 0.0244022 73 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_031.v common 5.57 vpr 62.89 MiB 0.04 6856 -1 -1 1 0.03 -1 -1 30480 -1 -1 15 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64400 28 32 278 232 1 163 75 17 17 289 -1 unnamed_device 24.2 MiB 1.01 739 7975 3247 4371 357 62.9 MiB 0.07 0.00 3.69125 -116.127 -3.69125 3.69125 0.67 0.000584955 0.000542956 0.0314761 0.0292192 38 2357 24 6.99608e+06 220735 678818. 2348.85 1.87 0.152966 0.132627 26626 170182 -1 1826 20 1320 1981 167709 35234 3.55311 3.55311 -124.889 -3.55311 0 0 902133. 3121.57 0.23 0.07 0.17 -1 -1 0.23 0.024078 0.0210219 72 34 56 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_032.v common 14.14 vpr 62.96 MiB 0.04 6804 -1 -1 1 0.03 -1 -1 30452 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64476 32 32 283 225 1 160 74 17 17 289 -1 unnamed_device 24.3 MiB 0.21 696 7204 2957 4121 126 63.0 MiB 0.07 0.00 2.86245 -113.51 -2.86245 2.86245 0.69 0.000545174 0.000507846 0.0304498 0.0283541 38 2423 38 6.99608e+06 147157 678818. 2348.85 10.88 0.323233 0.278589 26626 170182 -1 1845 22 1559 2384 207597 42329 3.12292 3.12292 -127.446 -3.12292 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0267393 0.0233248 64 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_033.v common 7.86 vpr 62.95 MiB 0.04 6972 -1 -1 1 0.03 -1 -1 30588 -1 -1 15 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64460 31 32 303 249 1 185 78 17 17 289 -1 unnamed_device 24.5 MiB 0.75 709 9540 3934 5278 328 62.9 MiB 0.09 0.00 2.94395 -107.519 -2.94395 2.94395 0.70 0.000624686 0.000579889 0.038771 0.0360533 48 2106 24 6.99608e+06 220735 865456. 2994.66 4.29 0.265656 0.229527 28354 207349 -1 1636 24 1362 1820 194996 63126 2.76622 2.76622 -108.31 -2.76622 0 0 1.05005e+06 3633.38 0.27 0.09 0.19 -1 -1 0.27 0.0291175 0.025364 77 34 61 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_034.v common 7.53 vpr 63.40 MiB 0.03 6984 -1 -1 1 0.05 -1 -1 30356 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64924 29 32 312 264 1 197 77 17 17 289 -1 unnamed_device 24.5 MiB 2.67 930 10835 4554 5858 423 63.4 MiB 0.10 0.00 2.88685 -103.645 -2.88685 2.88685 0.69 0.000624877 0.000580217 0.0439966 0.0408377 36 2557 44 6.99608e+06 235451 648988. 2245.63 2.13 0.192433 0.167807 26050 158493 -1 2171 20 1480 1842 188099 38129 2.86827 2.86827 -112.969 -2.86827 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0254574 0.0222434 86 61 29 29 57 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_035.v common 7.29 vpr 63.76 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30784 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 423 310 1 243 84 17 17 289 -1 unnamed_device 25.0 MiB 0.90 1138 15273 6065 7495 1713 63.8 MiB 0.15 0.00 3.90815 -143.373 -3.90815 3.90815 0.70 0.000826855 0.000768303 0.0720634 0.0669372 44 4115 44 6.99608e+06 294314 787024. 2723.27 3.44 0.275184 0.242386 27778 195446 -1 2916 24 2386 3658 353618 73639 4.44696 4.44696 -163.735 -4.44696 0 0 997811. 3452.63 0.26 0.13 0.17 -1 -1 0.26 0.0393982 0.034441 106 29 128 32 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_036.v common 7.48 vpr 63.65 MiB 0.04 7024 -1 -1 1 0.04 -1 -1 30584 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 403 317 1 252 82 17 17 289 -1 unnamed_device 24.8 MiB 1.04 999 10762 3395 5388 1979 63.6 MiB 0.11 0.00 4.20458 -152.083 -4.20458 4.20458 0.70 0.000769382 0.00071269 0.0489324 0.0453818 62 2628 41 6.99608e+06 264882 1.05005e+06 3633.38 3.10 0.269285 0.234736 30946 263737 -1 1855 23 2099 2796 197677 45378 3.98155 3.98155 -149.099 -3.98155 0 0 1.30136e+06 4502.97 0.33 0.10 0.29 -1 -1 0.33 0.0355212 0.031154 110 65 62 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_037.v common 6.76 vpr 63.35 MiB 0.02 6920 -1 -1 1 0.04 -1 -1 30724 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64872 31 32 353 302 1 224 79 17 17 289 -1 unnamed_device 24.5 MiB 0.93 1070 8867 2185 5933 749 63.4 MiB 0.07 0.00 3.49385 -125.494 -3.49385 3.49385 0.89 0.000513953 0.000472572 0.0296707 0.0273352 38 2547 42 6.99608e+06 235451 678818. 2348.85 2.76 0.195504 0.169383 26626 170182 -1 2126 22 1375 1414 133529 27348 3.46516 3.46516 -130.977 -3.46516 0 0 902133. 3121.57 0.23 0.07 0.14 -1 -1 0.23 0.0299381 0.0261206 99 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_038.v common 5.71 vpr 63.70 MiB 0.03 7112 -1 -1 1 0.04 -1 -1 30596 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65232 31 32 391 309 1 242 81 17 17 289 -1 unnamed_device 25.0 MiB 0.90 1182 9006 2249 6265 492 63.7 MiB 0.10 0.00 3.66135 -134.693 -3.66135 3.66135 0.68 0.000751516 0.000698367 0.042107 0.0391763 38 3271 30 6.99608e+06 264882 678818. 2348.85 2.02 0.17308 0.151663 26626 170182 -1 2699 19 1869 2477 216029 43755 3.85696 3.85696 -147.99 -3.85696 0 0 902133. 3121.57 0.31 0.08 0.17 -1 -1 0.31 0.027082 0.0241534 105 64 60 30 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_039.v common 6.12 vpr 63.57 MiB 0.03 7244 -1 -1 1 0.04 -1 -1 30768 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65100 31 32 455 371 1 302 86 17 17 289 -1 unnamed_device 25.2 MiB 1.02 1281 17663 7641 9474 548 63.6 MiB 0.17 0.00 4.62587 -160.146 -4.62587 4.62587 0.69 0.000832895 0.00077248 0.0813363 0.0754753 48 3147 24 6.99608e+06 338461 865456. 2994.66 2.22 0.256749 0.225521 28354 207349 -1 2438 22 2413 2741 204013 44448 4.60591 4.60591 -159.541 -4.60591 0 0 1.05005e+06 3633.38 0.28 0.10 0.17 -1 -1 0.28 0.0374417 0.0327205 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_040.v common 7.65 vpr 63.66 MiB 0.03 7264 -1 -1 1 0.04 -1 -1 30608 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65192 31 32 413 333 1 258 82 17 17 289 -1 unnamed_device 25.2 MiB 2.80 1159 10762 4075 5172 1515 63.7 MiB 0.11 0.00 4.92973 -159.817 -4.92973 4.92973 0.67 0.000770847 0.000715478 0.0497409 0.0462068 44 3260 26 6.99608e+06 279598 787024. 2723.27 2.06 0.212989 0.185857 27778 195446 -1 2507 22 2211 2849 238726 50648 4.64744 4.64744 -162.291 -4.64744 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0334666 0.0295774 117 90 31 31 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_041.v common 9.22 vpr 63.63 MiB 0.03 7128 -1 -1 1 0.04 -1 -1 30596 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65156 31 32 391 309 1 241 83 17 17 289 -1 unnamed_device 25.0 MiB 2.12 1059 13763 5785 7510 468 63.6 MiB 0.13 0.00 3.58185 -130.714 -3.58185 3.58185 0.68 0.000752886 0.000697619 0.0600808 0.0557737 52 2477 30 6.99608e+06 294314 926341. 3205.33 4.10 0.308863 0.269114 29218 227130 -1 2098 19 1780 2386 196405 42083 3.31056 3.31056 -128.23 -3.31056 0 0 1.14541e+06 3963.36 0.41 0.08 0.23 -1 -1 0.41 0.0268148 0.0238964 107 64 60 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_042.v common 6.91 vpr 63.63 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30912 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 24.9 MiB 0.79 1271 6556 1686 3783 1087 63.6 MiB 0.07 0.00 3.81927 -146.587 -3.81927 3.81927 0.68 0.000770508 0.000714882 0.0316963 0.029475 40 3290 49 6.99608e+06 250167 706193. 2443.58 3.27 0.224891 0.195355 26914 176310 -1 2765 30 2757 3700 474766 140725 4.35902 4.35902 -167.698 -4.35902 0 0 926341. 3205.33 0.25 0.18 0.15 -1 -1 0.25 0.0422842 0.0374856 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_043.v common 7.89 vpr 63.98 MiB 0.04 7348 -1 -1 1 0.04 -1 -1 31048 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65516 32 32 496 380 1 313 86 17 17 289 -1 unnamed_device 25.4 MiB 1.83 1530 16529 5778 8459 2292 64.0 MiB 0.17 0.00 4.81093 -174.639 -4.81093 4.81093 0.71 0.000917744 0.00084992 0.0837976 0.0778313 44 4892 43 6.99608e+06 323745 787024. 2723.27 2.88 0.296522 0.260338 27778 195446 -1 3539 24 3396 4572 391374 91758 6.0165 6.0165 -207.494 -6.0165 0 0 997811. 3452.63 0.33 0.18 0.18 -1 -1 0.33 0.0515223 0.0458785 139 96 62 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_044.v common 7.46 vpr 62.97 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30740 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 305 250 1 181 76 17 17 289 -1 unnamed_device 24.5 MiB 0.77 802 9996 3771 4383 1842 63.0 MiB 0.09 0.00 3.1395 -118.304 -3.1395 3.1395 0.67 0.000623589 0.000579908 0.0413261 0.0384603 36 2430 32 6.99608e+06 191304 648988. 2245.63 3.98 0.254198 0.219749 26050 158493 -1 1859 20 1421 1737 145957 31361 3.37847 3.37847 -129.596 -3.37847 0 0 828058. 2865.25 0.30 0.07 0.16 -1 -1 0.30 0.0226996 0.0201392 75 34 62 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_045.v common 8.55 vpr 63.59 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30676 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65112 31 32 395 311 1 243 81 17 17 289 -1 unnamed_device 24.8 MiB 0.75 1237 14606 4845 8003 1758 63.6 MiB 0.13 0.00 4.54014 -162.571 -4.54014 4.54014 0.80 0.000590571 0.000543441 0.0510156 0.046945 46 3312 39 6.99608e+06 264882 828058. 2865.25 4.65 0.338092 0.292216 28066 200906 -1 2731 21 1929 2420 244079 47715 4.79241 4.79241 -174.581 -4.79241 0 0 1.01997e+06 3529.29 0.36 0.09 0.20 -1 -1 0.36 0.0287631 0.025558 106 64 62 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_046.v common 6.15 vpr 63.69 MiB 0.03 7016 -1 -1 1 0.04 -1 -1 30752 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65216 32 32 397 313 1 246 84 17 17 289 -1 unnamed_device 24.9 MiB 1.23 1279 13077 3808 7089 2180 63.7 MiB 0.12 0.00 3.54953 -133.609 -3.54953 3.54953 0.69 0.000756528 0.000702066 0.0570653 0.0529958 44 3172 24 6.99608e+06 294314 787024. 2723.27 1.97 0.192149 0.1691 27778 195446 -1 2757 20 1787 2573 214760 44237 3.69741 3.69741 -146.061 -3.69741 0 0 997811. 3452.63 0.36 0.08 0.19 -1 -1 0.36 0.0278739 0.0248128 108 63 62 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_047.v common 6.10 vpr 63.09 MiB 0.03 7024 -1 -1 1 0.04 -1 -1 30680 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 345 257 1 186 77 17 17 289 -1 unnamed_device 24.6 MiB 0.74 797 9368 3826 5299 243 63.1 MiB 0.09 0.00 3.54729 -133.832 -3.54729 3.54729 0.69 0.000712013 0.000652667 0.0428062 0.0397288 44 2963 24 6.99608e+06 191304 787024. 2723.27 2.53 0.174221 0.15356 27778 195446 -1 2283 24 2169 3623 304403 63273 4.34496 4.34496 -160.054 -4.34496 0 0 997811. 3452.63 0.26 0.11 0.16 -1 -1 0.26 0.0332136 0.0290041 77 3 128 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_048.v common 17.40 vpr 63.66 MiB 0.03 7032 -1 -1 1 0.03 -1 -1 30672 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65184 32 32 424 343 1 266 83 17 17 289 -1 unnamed_device 24.9 MiB 1.18 1139 10883 2905 7208 770 63.7 MiB 0.11 0.00 3.32994 -127.882 -3.32994 3.32994 0.69 0.000783844 0.000726574 0.0502073 0.046581 42 3664 49 6.99608e+06 279598 744469. 2576.02 13.44 0.439344 0.379489 27202 183097 -1 2579 22 2185 2552 224910 51401 3.58911 3.58911 -139.799 -3.58911 0 0 949917. 3286.91 0.25 0.10 0.15 -1 -1 0.25 0.0347088 0.0303653 120 96 25 25 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_049.v common 7.79 vpr 63.80 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30516 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65328 32 32 395 311 1 242 84 17 17 289 -1 unnamed_device 25.1 MiB 1.03 1139 12528 3436 7246 1846 63.8 MiB 0.12 0.00 3.59669 -136.453 -3.59669 3.59669 0.69 0.000768017 0.000712481 0.0553667 0.0513959 40 3651 35 6.99608e+06 294314 706193. 2443.58 3.78 0.237157 0.207554 26914 176310 -1 2886 32 2930 3992 543466 186642 3.88506 3.88506 -152.33 -3.88506 0 0 926341. 3205.33 0.34 0.19 0.16 -1 -1 0.34 0.0403089 0.0354194 106 61 64 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_050.v common 6.17 vpr 63.57 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 30728 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 405 318 1 253 81 17 17 289 -1 unnamed_device 24.9 MiB 0.66 1314 14431 4781 7561 2089 63.6 MiB 0.14 0.00 3.61639 -141.899 -3.61639 3.61639 0.68 0.000769323 0.000713813 0.0664997 0.0617259 40 3393 43 6.99608e+06 250167 706193. 2443.58 2.59 0.246028 0.215543 26914 176310 -1 2912 34 2432 2945 457918 185632 3.97606 3.97606 -155.071 -3.97606 0 0 926341. 3205.33 0.28 0.22 0.15 -1 -1 0.28 0.0550857 0.0484773 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_051.v common 6.51 vpr 63.86 MiB 0.05 6948 -1 -1 1 0.04 -1 -1 30852 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65392 32 32 376 288 1 218 80 17 17 289 -1 unnamed_device 25.0 MiB 0.97 813 11432 3614 6147 1671 63.9 MiB 0.11 0.00 3.93015 -141.517 -3.93015 3.93015 0.68 0.000737145 0.000684532 0.0517401 0.0481021 46 3395 35 6.99608e+06 235451 828058. 2865.25 2.66 0.199936 0.175319 28066 200906 -1 2184 21 1956 2765 239150 52667 4.45931 4.45931 -155.986 -4.45931 0 0 1.01997e+06 3529.29 0.26 0.10 0.17 -1 -1 0.26 0.0312831 0.0274187 94 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_052.v common 8.37 vpr 63.60 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30916 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 25.0 MiB 0.86 930 14500 5516 6956 2028 63.6 MiB 0.15 0.00 3.81585 -138.808 -3.81585 3.81585 0.79 0.000778034 0.000722452 0.0703701 0.0651915 48 2895 28 6.99608e+06 264882 865456. 2994.66 4.51 0.359378 0.313061 28354 207349 -1 2281 24 2233 2687 231594 50505 4.35932 4.35932 -155.172 -4.35932 0 0 1.05005e+06 3633.38 0.28 0.10 0.17 -1 -1 0.28 0.0358721 0.0313765 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_053.v common 8.86 vpr 63.59 MiB 0.02 7264 -1 -1 1 0.04 -1 -1 30572 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65120 31 32 449 367 1 290 85 17 17 289 -1 unnamed_device 25.2 MiB 1.43 1399 14035 5589 6713 1733 63.6 MiB 0.14 0.00 3.97768 -141.845 -3.97768 3.97768 0.68 0.000818208 0.000758304 0.065201 0.0603667 46 3528 46 6.99608e+06 323745 828058. 2865.25 4.53 0.350333 0.30363 28066 200906 -1 2878 22 2136 2527 200375 41535 3.85405 3.85405 -145.639 -3.85405 0 0 1.01997e+06 3529.29 0.26 0.09 0.20 -1 -1 0.26 0.0356613 0.0310672 132 122 0 0 122 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_054.v common 8.53 vpr 63.50 MiB 0.03 7020 -1 -1 1 0.04 -1 -1 30644 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 24.9 MiB 1.12 1318 15273 5215 8174 1884 63.5 MiB 0.14 0.00 3.73195 -141.182 -3.73195 3.73195 0.69 0.000799143 0.000741139 0.0698002 0.0647509 40 3892 28 6.99608e+06 294314 706193. 2443.58 4.40 0.247097 0.216646 26914 176310 -1 3228 22 2859 3949 361368 76464 4.19972 4.19972 -159.884 -4.19972 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.0371296 0.0324857 126 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_055.v common 7.80 vpr 63.06 MiB 0.04 6816 -1 -1 1 0.04 -1 -1 30828 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 312 255 1 191 78 17 17 289 -1 unnamed_device 24.4 MiB 0.62 921 12528 4814 6023 1691 63.1 MiB 0.12 0.00 2.98795 -120.412 -2.98795 2.98795 0.66 0.000637833 0.00059242 0.0512304 0.047659 48 2225 19 6.99608e+06 206020 865456. 2994.66 4.29 0.246681 0.214373 28354 207349 -1 1953 20 1416 1893 169947 34277 3.20492 3.20492 -122.95 -3.20492 0 0 1.05005e+06 3633.38 0.38 0.07 0.21 -1 -1 0.38 0.0228855 0.0202993 80 34 63 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_056.v common 5.78 vpr 63.52 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30740 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 370 314 1 244 80 17 17 289 -1 unnamed_device 24.9 MiB 0.84 1095 11776 4100 5415 2261 63.5 MiB 0.11 0.00 3.80663 -140.003 -3.80663 3.80663 0.68 0.000702092 0.000651767 0.0515873 0.047971 44 3022 30 6.99608e+06 235451 787024. 2723.27 2.17 0.203486 0.177847 27778 195446 -1 2475 24 2240 2611 322520 64351 4.0456 4.0456 -152.94 -4.0456 0 0 997811. 3452.63 0.26 0.11 0.16 -1 -1 0.26 0.0331836 0.0289 108 94 0 0 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_057.v common 6.44 vpr 63.63 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 31112 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65160 32 32 469 351 1 285 84 17 17 289 -1 unnamed_device 25.3 MiB 0.77 1231 15273 6501 8321 451 63.6 MiB 0.16 0.00 4.57343 -162.846 -4.57343 4.57343 0.68 0.000880789 0.000817344 0.0765457 0.0710605 54 3500 37 6.99608e+06 294314 949917. 3286.91 2.45 0.282443 0.248127 29506 232905 -1 2801 26 3096 4191 425911 86394 5.01456 5.01456 -180.697 -5.01456 0 0 1.17392e+06 4061.99 0.38 0.14 0.19 -1 -1 0.38 0.0428508 0.037731 126 65 96 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_058.v common 6.32 vpr 63.65 MiB 0.03 7064 -1 -1 1 0.04 -1 -1 30720 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65180 32 32 368 284 1 217 80 17 17 289 -1 unnamed_device 24.8 MiB 0.70 1100 10916 2969 6188 1759 63.7 MiB 0.10 0.00 3.58059 -138.842 -3.58059 3.58059 0.91 0.000562149 0.000517183 0.0388297 0.0357946 40 2715 36 6.99608e+06 235451 706193. 2443.58 2.39 0.192263 0.167724 26914 176310 -1 2389 23 1910 2452 237328 51503 3.60016 3.60016 -142.952 -3.60016 0 0 926341. 3205.33 0.27 0.11 0.16 -1 -1 0.27 0.0355712 0.0310998 93 34 92 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_059.v common 5.57 vpr 63.02 MiB 0.02 6792 -1 -1 1 0.03 -1 -1 30584 -1 -1 24 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64528 30 32 296 244 1 177 86 17 17 289 -1 unnamed_device 24.5 MiB 0.65 716 11804 3687 5992 2125 63.0 MiB 0.10 0.00 3.75245 -123.293 -3.75245 3.75245 0.71 0.000663191 0.000601964 0.040875 0.0379793 40 2192 44 6.99608e+06 353176 706193. 2443.58 2.21 0.191192 0.166463 26914 176310 -1 1668 22 1599 2326 192681 42439 3.42606 3.42606 -125.27 -3.42606 0 0 926341. 3205.33 0.24 0.08 0.15 -1 -1 0.24 0.0268296 0.0233931 80 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_060.v common 6.73 vpr 64.05 MiB 0.04 7328 -1 -1 1 0.04 -1 -1 31052 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65592 32 32 531 413 1 346 88 17 17 289 -1 unnamed_device 25.8 MiB 0.79 1504 15883 5797 7858 2228 64.1 MiB 0.17 0.00 5.34997 -188.353 -5.34997 5.34997 0.68 0.000958795 0.000890039 0.07849 0.0726858 52 4006 34 6.99608e+06 353176 926341. 3205.33 2.85 0.310021 0.272506 29218 227130 -1 3057 22 3433 4278 368629 79420 5.47949 5.47949 -194.243 -5.47949 0 0 1.14541e+06 3963.36 0.29 0.13 0.19 -1 -1 0.29 0.044025 0.0387526 159 127 32 32 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_061.v common 8.50 vpr 63.46 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30664 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 376 288 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.89 938 15044 6550 8115 379 63.5 MiB 0.14 0.00 4.27644 -157.663 -4.27644 4.27644 0.70 0.000814259 0.000749819 0.0598595 0.0551605 50 2535 29 6.99608e+06 235451 902133. 3121.57 4.67 0.322823 0.280535 28642 213929 -1 2144 23 2286 2957 202820 44786 4.1787 4.1787 -158.075 -4.1787 0 0 1.08113e+06 3740.92 0.28 0.10 0.22 -1 -1 0.28 0.034398 0.0301812 92 34 96 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_062.v common 7.78 vpr 63.10 MiB 0.02 6696 -1 -1 1 0.03 -1 -1 30488 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 283 225 1 158 88 17 17 289 -1 unnamed_device 24.5 MiB 0.27 660 12763 5275 7138 350 63.1 MiB 0.10 0.00 2.98775 -114.509 -2.98775 2.98775 0.69 0.000616657 0.000572988 0.0419932 0.0390174 54 1697 27 6.99608e+06 353176 949917. 3286.91 4.66 0.271529 0.235109 29506 232905 -1 1409 21 1465 2249 150117 32597 2.89002 2.89002 -113.278 -2.89002 0 0 1.17392e+06 4061.99 0.30 0.07 0.18 -1 -1 0.30 0.0262997 0.023029 70 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_063.v common 6.82 vpr 63.76 MiB 0.03 7208 -1 -1 1 0.04 -1 -1 31044 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65288 32 32 438 320 1 256 82 17 17 289 -1 unnamed_device 24.9 MiB 0.67 1143 13432 5563 7207 662 63.8 MiB 0.14 0.00 4.46895 -161.038 -4.46895 4.46895 0.71 0.000973047 0.000903005 0.0671876 0.0624271 44 4135 47 6.99608e+06 264882 787024. 2723.27 3.24 0.246779 0.217087 27778 195446 -1 2916 24 2784 4092 370589 80334 5.40876 5.40876 -183.814 -5.40876 0 0 997811. 3452.63 0.26 0.13 0.16 -1 -1 0.26 0.0406852 0.0355652 112 34 128 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_064.v common 5.65 vpr 62.77 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30508 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 283 225 1 156 74 17 17 289 -1 unnamed_device 24.2 MiB 0.33 625 10614 4416 5947 251 62.8 MiB 0.10 0.00 2.85145 -111.794 -2.85145 2.85145 0.72 0.000616783 0.000573592 0.0460196 0.0429002 40 2195 42 6.99608e+06 147157 706193. 2443.58 2.49 0.193751 0.169267 26914 176310 -1 1673 24 1584 2347 206365 44600 3.10762 3.10762 -127.468 -3.10762 0 0 926341. 3205.33 0.27 0.09 0.16 -1 -1 0.27 0.0284771 0.0247442 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_065.v common 5.45 vpr 63.05 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30660 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64560 30 32 296 244 1 179 77 17 17 289 -1 unnamed_device 24.6 MiB 0.66 755 9857 4076 5498 283 63.0 MiB 0.09 0.00 3.30794 -118.735 -3.30794 3.30794 0.68 0.000617487 0.000573406 0.0395833 0.0367927 42 2472 28 6.99608e+06 220735 744469. 2576.02 1.91 0.16461 0.143891 27202 183097 -1 1789 21 1606 2131 177644 37701 3.12792 3.12792 -118.812 -3.12792 0 0 949917. 3286.91 0.34 0.07 0.18 -1 -1 0.34 0.0227546 0.0201177 74 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_066.v common 19.23 vpr 63.64 MiB 0.04 7136 -1 -1 1 0.04 -1 -1 30556 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65164 29 32 393 319 1 245 81 17 17 289 -1 unnamed_device 24.9 MiB 1.60 1003 15481 6003 6865 2613 63.6 MiB 0.14 0.00 3.85703 -126.704 -3.85703 3.85703 0.70 0.000738903 0.000684884 0.0677161 0.0628183 42 3974 49 6.99608e+06 294314 744469. 2576.02 14.71 0.406553 0.353065 27202 183097 -1 2566 24 2287 3004 284802 63565 4.0236 4.0236 -139.295 -4.0236 0 0 949917. 3286.91 0.28 0.11 0.18 -1 -1 0.28 0.034892 0.0304712 113 88 29 29 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_067.v common 8.30 vpr 63.70 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 31004 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65228 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 0.92 1068 14144 5407 6800 1937 63.7 MiB 0.14 0.00 4.29664 -157.784 -4.29664 4.29664 0.70 0.000769713 0.000714597 0.0647235 0.0601022 46 2979 39 6.99608e+06 264882 828058. 2865.25 4.38 0.331742 0.288158 28066 200906 -1 2248 24 2644 3537 304052 63739 4.44951 4.44951 -166.696 -4.44951 0 0 1.01997e+06 3529.29 0.32 0.12 0.20 -1 -1 0.32 0.0379968 0.0333518 109 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_068.v common 6.27 vpr 63.69 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30824 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 407 319 1 249 82 17 17 289 -1 unnamed_device 25.0 MiB 1.13 1151 6846 1472 4993 381 63.7 MiB 0.08 0.00 4.30354 -157.84 -4.30354 4.30354 0.89 0.000774386 0.000718145 0.0325614 0.0302689 42 3691 33 6.99608e+06 264882 744469. 2576.02 1.92 0.175592 0.153484 27202 183097 -1 2900 22 2707 3762 352573 71570 4.68111 4.68111 -175.764 -4.68111 0 0 949917. 3286.91 0.25 0.12 0.15 -1 -1 0.25 0.0346087 0.0302728 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_069.v common 5.91 vpr 63.03 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30748 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 345 287 1 212 79 17 17 289 -1 unnamed_device 24.5 MiB 0.61 792 12585 5306 6906 373 63.0 MiB 0.11 0.00 3.44424 -128.433 -3.44424 3.44424 0.69 0.000681828 0.000631974 0.0530084 0.049197 46 2540 28 6.99608e+06 220735 828058. 2865.25 2.36 0.206249 0.180985 28066 200906 -1 1950 23 1717 1907 209701 57729 3.50111 3.50111 -133.7 -3.50111 0 0 1.01997e+06 3529.29 0.35 0.09 0.20 -1 -1 0.35 0.0309272 0.0270032 92 65 32 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_070.v common 6.97 vpr 63.23 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30772 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 31 32 353 302 1 230 80 17 17 289 -1 unnamed_device 24.6 MiB 2.17 885 11260 4668 6241 351 63.2 MiB 0.10 0.00 3.46644 -123.995 -3.46644 3.46644 0.68 0.000669769 0.000626704 0.0470988 0.0437152 44 2891 26 6.99608e+06 250167 787024. 2723.27 2.01 0.193428 0.168836 27778 195446 -1 2187 20 1872 2335 212456 46783 3.35081 3.35081 -127.443 -3.35081 0 0 997811. 3452.63 0.26 0.09 0.17 -1 -1 0.26 0.0286011 0.0250305 102 90 0 0 89 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_071.v common 8.08 vpr 63.61 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30544 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65140 30 32 374 297 1 226 81 17 17 289 -1 unnamed_device 24.7 MiB 1.12 904 12506 5230 6653 623 63.6 MiB 0.12 0.00 3.42074 -117.96 -3.42074 3.42074 0.69 0.000712182 0.000659573 0.0545734 0.0506857 50 2454 22 6.99608e+06 279598 902133. 3121.57 4.12 0.28608 0.248454 28642 213929 -1 2054 23 1930 2713 240703 54717 3.34722 3.34722 -125.221 -3.34722 0 0 1.08113e+06 3740.92 0.28 0.10 0.18 -1 -1 0.28 0.0341343 0.0299728 101 60 60 30 57 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_072.v common 5.24 vpr 63.42 MiB 0.03 6948 -1 -1 1 0.03 -1 -1 30652 -1 -1 18 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64944 28 32 332 260 1 197 78 17 17 289 -1 unnamed_device 24.7 MiB 0.60 824 9872 4064 5274 534 63.4 MiB 0.09 0.00 3.73195 -121.956 -3.73195 3.73195 0.69 0.000660278 0.000612634 0.0415949 0.0386194 42 2477 27 6.99608e+06 264882 744469. 2576.02 1.77 0.170283 0.148746 27202 183097 -1 1956 21 1861 2705 200614 44918 4.08041 4.08041 -132.993 -4.08041 0 0 949917. 3286.91 0.32 0.09 0.18 -1 -1 0.32 0.0318132 0.0281277 87 34 84 28 28 28 +fixed_k6_frac_2uripple_N8_22nm.xml mult_073.v common 6.61 vpr 63.37 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30440 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 30 32 325 273 1 204 77 17 17 289 -1 unnamed_device 24.6 MiB 1.65 814 10672 3702 5165 1805 63.4 MiB 0.10 0.00 4.51934 -148.35 -4.51934 4.51934 0.69 0.000645581 0.00059971 0.0447751 0.041592 42 2739 39 6.99608e+06 220735 744469. 2576.02 2.17 0.187641 0.164061 27202 183097 -1 1934 21 1623 2159 193878 43684 4.29625 4.29625 -147.61 -4.29625 0 0 949917. 3286.91 0.25 0.09 0.15 -1 -1 0.25 0.0280529 0.0244757 88 63 30 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_074.v common 10.36 vpr 63.74 MiB 0.02 7056 -1 -1 1 0.03 -1 -1 30544 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65272 32 32 361 308 1 241 79 17 17 289 -1 unnamed_device 24.8 MiB 2.95 1000 12585 4720 5647 2218 63.7 MiB 0.12 0.00 3.77345 -134.122 -3.77345 3.77345 0.70 0.00069105 0.000640602 0.0541224 0.0502453 48 2856 32 6.99608e+06 220735 865456. 2994.66 4.29 0.282325 0.245605 28354 207349 -1 2214 19 1668 2030 174596 36645 3.25856 3.25856 -129.521 -3.25856 0 0 1.05005e+06 3633.38 0.38 0.07 0.20 -1 -1 0.38 0.0242422 0.0215676 104 91 0 0 91 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_075.v common 6.16 vpr 63.17 MiB 0.03 7020 -1 -1 1 0.03 -1 -1 30708 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64688 31 32 335 251 1 188 88 17 17 289 -1 unnamed_device 24.7 MiB 0.15 808 15688 5217 8110 2361 63.2 MiB 0.13 0.00 3.76925 -134.079 -3.76925 3.76925 0.68 0.000599642 0.000555009 0.0522019 0.0482745 46 2815 25 6.99608e+06 367892 828058. 2865.25 3.12 0.205026 0.179683 28066 200906 -1 2083 22 1974 3110 278347 59487 3.95812 3.95812 -147.376 -3.95812 0 0 1.01997e+06 3529.29 0.28 0.10 0.20 -1 -1 0.28 0.0305994 0.0267423 86 4 124 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_076.v common 8.29 vpr 63.40 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30760 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 249 81 17 17 289 -1 unnamed_device 24.8 MiB 0.63 1209 11281 3120 7720 441 63.4 MiB 0.12 0.00 4.19534 -154.628 -4.19534 4.19534 0.71 0.000777477 0.00072178 0.0531539 0.04935 40 3750 26 6.99608e+06 250167 706193. 2443.58 4.80 0.226883 0.199081 26914 176310 -1 2890 22 2420 3225 303888 60918 4.55455 4.55455 -176.188 -4.55455 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.0346961 0.0303742 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_077.v common 7.05 vpr 63.76 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30592 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65292 32 32 407 319 1 248 82 17 17 289 -1 unnamed_device 25.0 MiB 0.57 1142 12364 5175 6807 382 63.8 MiB 0.12 0.00 5.12678 -171.348 -5.12678 5.12678 0.68 0.000773542 0.000717348 0.0566493 0.0525761 54 3186 44 6.99608e+06 264882 949917. 3286.91 3.51 0.248288 0.217404 29506 232905 -1 2541 20 2138 2971 308261 63089 4.7525 4.7525 -174.578 -4.7525 0 0 1.17392e+06 4061.99 0.33 0.11 0.24 -1 -1 0.33 0.0326072 0.0286642 108 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_078.v common 7.47 vpr 63.99 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30648 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65524 32 32 399 315 1 250 82 17 17 289 -1 unnamed_device 25.2 MiB 0.72 1089 13788 4649 7550 1589 64.0 MiB 0.14 0.00 4.15408 -148.064 -4.15408 4.15408 0.69 0.000759003 0.000704382 0.0615393 0.057067 44 4301 46 6.99608e+06 264882 787024. 2723.27 3.86 0.256544 0.224639 27778 195446 -1 2882 23 2332 3348 351895 72391 4.27115 4.27115 -157.597 -4.27115 0 0 997811. 3452.63 0.27 0.12 0.17 -1 -1 0.27 0.0357048 0.0313068 107 65 60 30 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_079.v common 5.73 vpr 62.93 MiB 0.02 6864 -1 -1 1 0.04 -1 -1 30600 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64440 30 32 296 244 1 179 75 17 17 289 -1 unnamed_device 24.5 MiB 0.71 692 12241 5462 6300 479 62.9 MiB 0.11 0.00 3.58339 -124.571 -3.58339 3.58339 0.70 0.000616226 0.000572863 0.0506881 0.0471282 48 2402 36 6.99608e+06 191304 865456. 2994.66 2.09 0.192043 0.167905 28354 207349 -1 1749 29 1691 2375 285597 85187 3.70046 3.70046 -133.781 -3.70046 0 0 1.05005e+06 3633.38 0.28 0.12 0.17 -1 -1 0.28 0.0339922 0.0294435 76 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_080.v common 10.36 vpr 63.50 MiB 0.03 7056 -1 -1 1 0.03 -1 -1 30576 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65024 30 32 383 303 1 237 80 17 17 289 -1 unnamed_device 24.9 MiB 2.23 1070 13152 5486 7187 479 63.5 MiB 0.13 0.00 4.68713 -157.481 -4.68713 4.68713 0.71 0.000743885 0.000690998 0.05834 0.0541446 50 3095 25 6.99608e+06 264882 902133. 3121.57 5.07 0.342687 0.298265 28642 213929 -1 2586 21 2420 3481 324893 65814 4.65964 4.65964 -166.533 -4.65964 0 0 1.08113e+06 3740.92 0.38 0.13 0.21 -1 -1 0.38 0.0378009 0.033287 105 63 60 30 60 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_081.v common 18.85 vpr 63.87 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 31052 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65404 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.4 MiB 0.78 1372 11615 4190 5568 1857 63.9 MiB 0.12 0.00 4.17744 -155.5 -4.17744 4.17744 0.69 0.000852636 0.000789469 0.0555415 0.0514789 40 3909 44 6.99608e+06 323745 706193. 2443.58 15.13 0.425751 0.366885 26914 176310 -1 3034 30 3176 3272 463808 147003 4.67185 4.67185 -175.617 -4.67185 0 0 926341. 3205.33 0.24 0.18 0.15 -1 -1 0.24 0.0497108 0.0432266 139 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_082.v common 7.04 vpr 63.61 MiB 0.03 7292 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65140 31 32 425 341 1 275 85 17 17 289 -1 unnamed_device 25.1 MiB 1.26 1101 12733 5285 6817 631 63.6 MiB 0.12 0.00 4.35899 -150.667 -4.35899 4.35899 0.68 0.000781511 0.00072481 0.0568087 0.0526853 50 3217 36 6.99608e+06 323745 902133. 3121.57 2.83 0.240989 0.2114 28642 213929 -1 2301 22 2203 2647 213992 49056 4.31131 4.31131 -156.714 -4.31131 0 0 1.08113e+06 3740.92 0.32 0.11 0.18 -1 -1 0.32 0.0405459 0.0357558 125 94 31 31 93 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_083.v common 11.02 vpr 63.66 MiB 0.04 7076 -1 -1 1 0.03 -1 -1 30720 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65192 30 32 404 328 1 249 84 17 17 289 -1 unnamed_device 24.9 MiB 2.70 1072 15456 6595 7994 867 63.7 MiB 0.14 0.00 4.1343 -135.415 -4.1343 4.1343 0.69 0.000752485 0.000697179 0.0665126 0.0616822 50 3349 43 6.99608e+06 323745 902133. 3121.57 5.46 0.366095 0.319732 28642 213929 -1 2603 21 2452 3513 313953 68712 4.487 4.487 -154.571 -4.487 0 0 1.08113e+06 3740.92 0.28 0.11 0.15 -1 -1 0.28 0.0334014 0.0293724 114 92 26 26 90 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_084.v common 6.97 vpr 63.93 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 30824 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65460 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 25.3 MiB 0.94 1174 14500 5592 7226 1682 63.9 MiB 0.14 0.00 4.33244 -160.384 -4.33244 4.33244 0.69 0.000773899 0.000718015 0.0653127 0.0605554 46 3708 41 6.99608e+06 264882 828058. 2865.25 3.17 0.251275 0.220482 28066 200906 -1 2925 22 2753 3801 392357 76843 5.15411 5.15411 -178.744 -5.15411 0 0 1.01997e+06 3529.29 0.26 0.13 0.17 -1 -1 0.26 0.0347864 0.0305569 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_085.v common 8.35 vpr 63.57 MiB 0.04 7260 -1 -1 1 0.04 -1 -1 30604 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65100 29 32 387 316 1 240 81 17 17 289 -1 unnamed_device 24.8 MiB 1.54 1070 11106 4662 5983 461 63.6 MiB 0.11 0.00 3.53179 -119.754 -3.53179 3.53179 0.72 0.000712422 0.000667529 0.0486182 0.0450086 46 2774 27 6.99608e+06 294314 828058. 2865.25 3.83 0.282028 0.244384 28066 200906 -1 2287 23 2093 2727 227222 47036 3.56111 3.56111 -129.688 -3.56111 0 0 1.01997e+06 3529.29 0.38 0.09 0.18 -1 -1 0.38 0.0304123 0.0269821 112 88 26 26 85 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_086.v common 5.31 vpr 62.88 MiB 0.04 6868 -1 -1 1 0.03 -1 -1 30564 -1 -1 10 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 32 32 283 225 1 155 74 17 17 289 -1 unnamed_device 24.3 MiB 0.70 592 9684 3186 4658 1840 62.9 MiB 0.09 0.00 2.86245 -110.719 -2.86245 2.86245 0.74 0.000618607 0.000573697 0.0414501 0.038579 42 2114 25 6.99608e+06 147157 744469. 2576.02 1.84 0.171328 0.149668 27202 183097 -1 1638 19 1360 2083 163294 36958 3.36922 3.36922 -131.729 -3.36922 0 0 949917. 3286.91 0.26 0.08 0.15 -1 -1 0.26 0.0244494 0.0214543 62 3 96 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_087.v common 5.93 vpr 63.59 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30692 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65112 32 32 407 319 1 251 82 17 17 289 -1 unnamed_device 24.9 MiB 0.61 999 9872 3990 5501 381 63.6 MiB 0.11 0.00 4.9054 -173.166 -4.9054 4.9054 0.70 0.000793438 0.000737101 0.0473045 0.0440339 62 2787 36 6.99608e+06 264882 1.05005e+06 3633.38 2.31 0.225992 0.197492 30946 263737 -1 2108 24 2322 3244 247292 54294 4.7445 4.7445 -170.964 -4.7445 0 0 1.30136e+06 4502.97 0.33 0.11 0.22 -1 -1 0.33 0.0369594 0.0322834 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_088.v common 6.48 vpr 63.57 MiB 0.03 6956 -1 -1 1 0.04 -1 -1 30592 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 407 319 1 255 81 17 17 289 -1 unnamed_device 24.9 MiB 0.93 1203 7431 1958 4126 1347 63.6 MiB 0.08 0.00 4.63877 -167.295 -4.63877 4.63877 0.68 0.000774384 0.000717733 0.0354623 0.0329104 44 3509 27 6.99608e+06 250167 787024. 2723.27 2.38 0.200674 0.174872 27778 195446 -1 2884 22 2886 3943 331739 70829 4.79164 4.79164 -179.777 -4.79164 0 0 997811. 3452.63 0.39 0.12 0.21 -1 -1 0.39 0.0352882 0.0316763 111 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_089.v common 9.51 vpr 63.02 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30700 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 315 267 1 202 77 17 17 289 -1 unnamed_device 24.5 MiB 1.83 766 11324 4293 5664 1367 63.0 MiB 0.10 0.00 3.24452 -112.954 -3.24452 3.24452 0.70 0.000642636 0.000596979 0.0469727 0.0436333 52 2092 46 6.99608e+06 191304 926341. 3205.33 4.77 0.31196 0.269544 29218 227130 -1 1555 21 1385 1643 144621 36447 3.27646 3.27646 -116.847 -3.27646 0 0 1.14541e+06 3963.36 0.41 0.07 0.23 -1 -1 0.41 0.023942 0.0212009 85 55 32 32 54 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_090.v common 4.68 vpr 62.70 MiB 0.02 6868 -1 -1 1 0.03 -1 -1 30616 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64204 31 32 275 220 1 154 74 17 17 289 -1 unnamed_device 24.1 MiB 0.22 592 7514 3020 4270 224 62.7 MiB 0.07 0.00 3.0031 -111.146 -3.0031 3.0031 0.73 0.000595746 0.000554899 0.0311241 0.0289471 44 2226 22 6.99608e+06 161872 787024. 2723.27 1.77 0.15499 0.13474 27778 195446 -1 1581 21 1395 2057 173180 37879 3.20292 3.20292 -123.708 -3.20292 0 0 997811. 3452.63 0.26 0.08 0.14 -1 -1 0.26 0.025226 0.022005 63 4 93 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_091.v common 6.92 vpr 63.44 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30628 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 381 303 1 235 81 17 17 289 -1 unnamed_device 24.6 MiB 0.80 1014 12331 5131 6918 282 63.4 MiB 0.11 0.00 4.03648 -138.539 -4.03648 4.03648 0.68 0.000738324 0.000684801 0.0549493 0.0510139 40 2840 45 6.99608e+06 250167 706193. 2443.58 3.20 0.237245 0.207437 26914 176310 -1 2377 29 2386 2828 448021 164434 4.17225 4.17225 -149.548 -4.17225 0 0 926341. 3205.33 0.33 0.16 0.17 -1 -1 0.33 0.0363782 0.0321127 102 59 60 32 58 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_092.v common 6.55 vpr 63.62 MiB 0.02 7116 -1 -1 1 0.04 -1 -1 30584 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65148 32 32 406 330 1 255 83 17 17 289 -1 unnamed_device 24.9 MiB 1.27 1077 13043 5447 7262 334 63.6 MiB 0.12 0.00 4.38874 -150.527 -4.38874 4.38874 0.68 0.000754658 0.000699096 0.0578638 0.053621 48 3103 37 6.99608e+06 279598 865456. 2994.66 2.43 0.238061 0.20828 28354 207349 -1 2394 28 2133 2527 377108 138821 4.49781 4.49781 -156.067 -4.49781 0 0 1.05005e+06 3633.38 0.28 0.15 0.17 -1 -1 0.28 0.0411857 0.0359 115 88 28 28 88 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_093.v common 6.25 vpr 63.65 MiB 0.05 7036 -1 -1 1 0.03 -1 -1 30712 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65176 32 32 399 285 1 218 91 17 17 289 -1 unnamed_device 24.9 MiB 0.35 981 8047 1739 5489 819 63.6 MiB 0.08 0.00 4.28063 -149.977 -4.28063 4.28063 0.99 0.000615078 0.000566681 0.0277651 0.0256277 48 3081 28 6.99608e+06 397324 865456. 2994.66 2.40 0.201619 0.175529 28354 207349 -1 2484 23 2304 3760 287593 64934 4.6169 4.6169 -166.601 -4.6169 0 0 1.05005e+06 3633.38 0.28 0.11 0.17 -1 -1 0.28 0.0361749 0.0317191 100 3 156 32 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_094.v common 7.37 vpr 63.54 MiB 0.04 7148 -1 -1 1 0.03 -1 -1 30708 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65064 30 32 371 295 1 227 81 17 17 289 -1 unnamed_device 24.7 MiB 0.86 884 14431 6074 7798 559 63.5 MiB 0.13 0.00 3.66815 -119.86 -3.66815 3.66815 0.69 0.000721477 0.000669522 0.06236 0.0578688 40 3422 29 6.99608e+06 279598 706193. 2443.58 3.70 0.231115 0.203301 26914 176310 -1 2434 21 2114 2995 263589 57557 3.56007 3.56007 -128.943 -3.56007 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0307676 0.0269749 101 59 60 30 56 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_095.v common 6.73 vpr 62.77 MiB 0.04 6900 -1 -1 1 0.03 -1 -1 30816 -1 -1 16 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 27 32 269 226 1 152 75 17 17 289 -1 unnamed_device 24.2 MiB 1.69 589 11925 5033 6263 629 62.8 MiB 0.11 0.00 3.68305 -110.555 -3.68305 3.68305 0.96 0.000563065 0.000522896 0.0518302 0.0482131 38 1836 46 6.99608e+06 235451 678818. 2348.85 1.84 0.173249 0.151651 26626 170182 -1 1376 20 1121 1575 114558 25554 3.42781 3.42781 -114.647 -3.42781 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0232271 0.0202633 67 34 54 27 27 27 +fixed_k6_frac_2uripple_N8_22nm.xml mult_096.v common 7.22 vpr 63.68 MiB 0.03 7356 -1 -1 1 0.04 -1 -1 30776 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65204 32 32 493 378 1 313 85 17 17 289 -1 unnamed_device 25.2 MiB 0.95 1512 15151 5383 7381 2387 63.7 MiB 0.17 0.00 4.46404 -157.207 -4.46404 4.46404 0.68 0.00091937 0.000852855 0.0771262 0.0716028 50 4170 39 6.99608e+06 309029 902133. 3121.57 2.94 0.294459 0.258283 28642 213929 -1 3520 24 2664 3787 433845 89326 4.80651 4.80651 -170.778 -4.80651 0 0 1.08113e+06 3740.92 0.42 0.15 0.21 -1 -1 0.42 0.0450077 0.0403643 141 95 62 31 95 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_097.v common 7.53 vpr 63.59 MiB 0.03 7260 -1 -1 1 0.03 -1 -1 30744 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65116 31 32 455 371 1 302 85 17 17 289 -1 unnamed_device 25.4 MiB 2.38 1389 9013 2681 4820 1512 63.6 MiB 0.10 0.00 4.97674 -167.764 -4.97674 4.97674 0.70 0.000827176 0.000768071 0.0435513 0.0404574 42 3462 43 6.99608e+06 323745 744469. 2576.02 2.19 0.249474 0.217602 27202 183097 -1 2986 32 3219 3635 659820 229555 4.54001 4.54001 -167.436 -4.54001 0 0 949917. 3286.91 0.26 0.22 0.15 -1 -1 0.26 0.0515728 0.0448684 138 124 0 0 124 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_098.v common 10.22 vpr 63.66 MiB 0.04 6872 -1 -1 1 0.03 -1 -1 30596 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 355 304 1 233 79 17 17 289 -1 unnamed_device 24.8 MiB 2.59 1031 11233 4729 6294 210 63.7 MiB 0.11 0.00 3.87693 -140.03 -3.87693 3.87693 0.68 0.000689443 0.000640172 0.0484751 0.0449968 48 2685 23 6.99608e+06 220735 865456. 2994.66 4.73 0.271774 0.235906 28354 207349 -1 2220 24 1655 1997 232426 50116 4.1351 4.1351 -146.101 -4.1351 0 0 1.05005e+06 3633.38 0.28 0.10 0.17 -1 -1 0.28 0.0325277 0.0283666 102 89 0 0 89 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_099.v common 15.70 vpr 63.41 MiB 0.04 6936 -1 -1 1 0.04 -1 -1 30640 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 32 32 364 282 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.88 1034 14184 5996 7912 276 63.4 MiB 0.13 0.00 3.78975 -136.67 -3.78975 3.78975 0.73 0.000721436 0.000670501 0.0628497 0.0584405 42 3495 35 6.99608e+06 235451 744469. 2576.02 11.79 0.380509 0.330375 27202 183097 -1 2553 22 1976 2751 237033 50364 4.44232 4.44232 -154.741 -4.44232 0 0 949917. 3286.91 0.36 0.10 0.18 -1 -1 0.36 0.0315951 0.0276415 92 34 90 30 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_100.v common 9.03 vpr 63.77 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 30952 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65304 31 32 443 336 1 261 83 17 17 289 -1 unnamed_device 25.0 MiB 1.94 1068 13943 4857 7191 1895 63.8 MiB 0.14 0.00 3.9689 -135.877 -3.9689 3.9689 0.69 0.000838945 0.000779151 0.0681023 0.0633019 40 3170 36 6.99608e+06 294314 706193. 2443.58 4.16 0.371087 0.323049 26914 176310 -1 2660 22 2311 3089 257684 54800 4.53932 4.53932 -158.561 -4.53932 0 0 926341. 3205.33 0.24 0.11 0.15 -1 -1 0.24 0.0373794 0.0326768 117 64 87 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_101.v common 8.25 vpr 63.71 MiB 0.04 7128 -1 -1 1 0.03 -1 -1 30668 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65244 30 32 373 297 1 228 82 17 17 289 -1 unnamed_device 24.9 MiB 1.04 1088 13788 5313 5928 2547 63.7 MiB 0.12 0.00 3.56069 -123.887 -3.56069 3.56069 0.69 0.000709886 0.000658349 0.0576367 0.0534821 38 3310 33 6.99608e+06 294314 678818. 2348.85 4.43 0.283941 0.246886 26626 170182 -1 2502 22 1964 2819 208078 44597 3.77376 3.77376 -137.717 -3.77376 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0341823 0.0300933 101 61 58 30 58 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_102.v common 8.30 vpr 63.67 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30692 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65196 32 32 407 319 1 252 81 17 17 289 -1 unnamed_device 25.0 MiB 0.79 1034 13906 5203 6656 2047 63.7 MiB 0.14 0.00 4.17744 -150.809 -4.17744 4.17744 0.68 0.000784584 0.000727818 0.0639816 0.0593474 48 3230 25 6.99608e+06 250167 865456. 2994.66 4.57 0.325954 0.283757 28354 207349 -1 2315 22 2293 2810 202838 44792 4.42125 4.42125 -160.271 -4.42125 0 0 1.05005e+06 3633.38 0.28 0.10 0.17 -1 -1 0.28 0.0339975 0.0297961 107 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_103.v common 5.83 vpr 63.71 MiB 0.04 7064 -1 -1 1 0.04 -1 -1 30580 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65240 32 32 405 318 1 253 82 17 17 289 -1 unnamed_device 25.0 MiB 0.85 1295 11830 3708 6867 1255 63.7 MiB 0.12 0.00 3.61179 -138.351 -3.61179 3.61179 0.70 0.000771175 0.000713988 0.0550065 0.0510416 42 3463 29 6.99608e+06 264882 744469. 2576.02 1.91 0.204042 0.179331 27202 183097 -1 2781 20 2203 2820 265938 51948 3.35756 3.35756 -139.435 -3.35756 0 0 949917. 3286.91 0.25 0.10 0.15 -1 -1 0.25 0.0328488 0.0288922 108 65 63 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_104.v common 6.00 vpr 62.84 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30552 -1 -1 14 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 29 32 287 238 1 172 75 17 17 289 -1 unnamed_device 24.2 MiB 1.23 714 7817 3113 4376 328 62.8 MiB 0.06 0.00 3.29694 -113.946 -3.29694 3.29694 0.92 0.000451267 0.00041364 0.0243951 0.0224831 36 2052 35 6.99608e+06 206020 648988. 2245.63 1.80 0.143319 0.124061 26050 158493 -1 1689 23 1730 2255 178648 38138 3.20721 3.20721 -120.935 -3.20721 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0269245 0.0234015 73 34 58 29 29 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_105.v common 9.26 vpr 63.24 MiB 0.04 7052 -1 -1 1 0.03 -1 -1 30308 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 334 290 1 207 78 17 17 289 -1 unnamed_device 24.7 MiB 2.24 796 13192 4518 6301 2373 63.2 MiB 0.11 0.00 3.75163 -124.237 -3.75163 3.75163 0.69 0.000652005 0.000604823 0.0553542 0.0513337 50 2209 23 6.99608e+06 206020 902133. 3121.57 4.24 0.265749 0.230864 28642 213929 -1 1628 19 1472 1769 139151 34058 3.99051 3.99051 -129.608 -3.99051 0 0 1.08113e+06 3740.92 0.28 0.07 0.18 -1 -1 0.28 0.0264081 0.0232118 91 82 0 0 82 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_106.v common 6.15 vpr 63.42 MiB 0.05 7000 -1 -1 1 0.03 -1 -1 30776 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 31 32 365 281 1 217 80 17 17 289 -1 unnamed_device 24.6 MiB 0.56 1104 8164 1792 5984 388 63.4 MiB 0.08 0.00 3.79614 -138.31 -3.79614 3.79614 0.68 0.000722936 0.000671325 0.0369753 0.0344171 38 3148 38 6.99608e+06 250167 678818. 2348.85 2.77 0.208995 0.181799 26626 170182 -1 2366 24 2350 3073 243957 50555 4.16842 4.16842 -156.14 -4.16842 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.034139 0.0298144 92 34 93 31 31 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_107.v common 5.98 vpr 63.09 MiB 0.05 7044 -1 -1 1 0.03 -1 -1 30652 -1 -1 16 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64600 29 32 297 254 1 191 77 17 17 289 -1 unnamed_device 24.5 MiB 1.43 924 11813 4851 6237 725 63.1 MiB 0.10 0.00 3.23604 -112.025 -3.23604 3.23604 0.68 0.000603857 0.0005612 0.04598 0.042745 36 2473 35 6.99608e+06 235451 648988. 2245.63 1.74 0.158239 0.138866 26050 158493 -1 2151 20 1474 1697 177417 35684 3.28546 3.28546 -118.775 -3.28546 0 0 828058. 2865.25 0.24 0.08 0.18 -1 -1 0.24 0.0247386 0.0215797 81 56 29 29 52 26 +fixed_k6_frac_2uripple_N8_22nm.xml mult_108.v common 5.79 vpr 62.94 MiB 0.04 6736 -1 -1 1 0.03 -1 -1 30656 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64452 32 32 314 256 1 188 77 17 17 289 -1 unnamed_device 24.3 MiB 0.73 800 12628 5339 6973 316 62.9 MiB 0.11 0.00 3.56959 -131.903 -3.56959 3.56959 0.69 0.000646803 0.000600144 0.0523905 0.0486162 42 2261 36 6.99608e+06 191304 744469. 2576.02 2.23 0.201155 0.176266 27202 183097 -1 1889 20 1707 2116 174589 39217 3.57211 3.57211 -142.772 -3.57211 0 0 949917. 3286.91 0.25 0.08 0.19 -1 -1 0.25 0.0263985 0.0230668 79 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_109.v common 8.03 vpr 63.62 MiB 0.04 7116 -1 -1 1 0.04 -1 -1 30564 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65144 31 32 387 307 1 239 82 17 17 289 -1 unnamed_device 24.7 MiB 1.44 964 11296 3574 5293 2429 63.6 MiB 0.11 0.00 4.06828 -143.162 -4.06828 4.06828 0.94 0.000742408 0.000689306 0.0506254 0.0470522 40 3214 32 6.99608e+06 279598 706193. 2443.58 3.19 0.222649 0.195097 26914 176310 -1 2565 28 2539 3447 386594 93062 4.56215 4.56215 -164.586 -4.56215 0 0 926341. 3205.33 0.24 0.14 0.15 -1 -1 0.24 0.0401808 0.0350584 105 64 58 31 62 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_110.v common 10.35 vpr 62.83 MiB 0.03 6984 -1 -1 1 0.03 -1 -1 30544 -1 -1 13 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 31 32 308 262 1 192 76 17 17 289 -1 unnamed_device 24.4 MiB 2.82 694 11756 4613 5996 1147 62.8 MiB 0.10 0.00 3.23724 -109.795 -3.23724 3.23724 0.78 0.000624514 0.000579544 0.0484228 0.0449738 50 2155 29 6.99608e+06 191304 902133. 3121.57 4.36 0.266422 0.231042 28642 213929 -1 1564 17 1238 1561 110245 27856 3.24946 3.24946 -115.606 -3.24946 0 0 1.08113e+06 3740.92 0.28 0.06 0.19 -1 -1 0.28 0.0228182 0.0199767 81 55 31 31 53 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_111.v common 9.42 vpr 63.62 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 30640 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65152 32 32 383 307 1 232 82 17 17 289 -1 unnamed_device 25.0 MiB 1.40 911 15034 6476 7971 587 63.6 MiB 0.13 0.00 3.61105 -126.923 -3.61105 3.61105 0.69 0.000734018 0.000680519 0.0649288 0.0602241 58 2277 21 6.99608e+06 264882 997811. 3452.63 5.05 0.348962 0.303156 30370 251734 -1 1818 17 1313 1882 165148 36777 3.34906 3.34906 -123.29 -3.34906 0 0 1.25153e+06 4330.55 0.33 0.08 0.21 -1 -1 0.33 0.0270816 0.0238711 103 65 52 26 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_112.v common 6.02 vpr 63.61 MiB 0.04 7160 -1 -1 1 0.04 -1 -1 30608 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65132 31 32 422 339 1 272 85 17 17 289 -1 unnamed_device 25.1 MiB 0.78 1135 16081 6006 7648 2427 63.6 MiB 0.15 0.00 4.67827 -157.924 -4.67827 4.67827 0.68 0.000790704 0.00072944 0.0728101 0.0672211 42 3524 47 6.99608e+06 323745 744469. 2576.02 2.37 0.234487 0.205844 27202 183097 -1 2666 23 2831 3900 347051 77092 4.45524 4.45524 -159.789 -4.45524 0 0 949917. 3286.91 0.25 0.13 0.15 -1 -1 0.25 0.0371308 0.0325467 123 93 31 31 92 31 +fixed_k6_frac_2uripple_N8_22nm.xml mult_113.v common 9.07 vpr 63.32 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30516 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 333 279 1 208 79 17 17 289 -1 unnamed_device 24.5 MiB 2.31 1185 10050 2506 6241 1303 63.3 MiB 0.09 0.00 3.59004 -135.268 -3.59004 3.59004 0.69 0.00065894 0.000612315 0.0412379 0.0383056 40 2624 20 6.99608e+06 220735 706193. 2443.58 3.89 0.268113 0.231668 26914 176310 -1 2413 20 1581 2244 212480 45685 3.36581 3.36581 -135.332 -3.36581 0 0 926341. 3205.33 0.33 0.08 0.17 -1 -1 0.33 0.0238197 0.0211122 88 61 32 32 60 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_114.v common 5.26 vpr 63.54 MiB 0.03 6852 -1 -1 1 0.03 -1 -1 30264 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65060 32 32 339 283 1 212 78 17 17 289 -1 unnamed_device 24.7 MiB 0.66 844 13856 5698 7170 988 63.5 MiB 0.12 0.00 3.30794 -123.058 -3.30794 3.30794 0.68 0.000667247 0.000617805 0.0580422 0.053826 44 2485 23 6.99608e+06 206020 787024. 2723.27 1.84 0.173821 0.153038 27778 195446 -1 1956 22 1701 2078 191280 40839 3.63817 3.63817 -130.417 -3.63817 0 0 997811. 3452.63 0.26 0.08 0.16 -1 -1 0.26 0.0295517 0.0257884 91 63 32 32 62 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_115.v common 11.96 vpr 63.73 MiB 0.03 7136 -1 -1 1 0.04 -1 -1 30880 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65256 32 32 407 319 1 252 82 17 17 289 -1 unnamed_device 24.9 MiB 0.81 1239 11118 3579 5407 2132 63.7 MiB 0.11 0.00 3.81515 -143.501 -3.81515 3.81515 0.71 0.000766973 0.000710064 0.0508461 0.0472491 40 2978 25 6.99608e+06 264882 706193. 2443.58 8.26 0.355876 0.309074 26914 176310 -1 2551 22 2339 2857 206539 45101 4.37801 4.37801 -158.917 -4.37801 0 0 926341. 3205.33 0.30 0.10 0.18 -1 -1 0.30 0.0340521 0.0297612 110 65 64 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_116.v common 7.04 vpr 63.42 MiB 0.03 7008 -1 -1 1 0.03 -1 -1 30724 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64944 29 32 367 293 1 222 82 17 17 289 -1 unnamed_device 24.5 MiB 1.40 913 9160 3758 4976 426 63.4 MiB 0.09 0.00 3.41124 -117.262 -3.41124 3.41124 0.68 0.000711734 0.000660678 0.0397105 0.0365519 38 3208 43 6.99608e+06 309029 678818. 2348.85 2.90 0.213428 0.185292 26626 170182 -1 2366 22 2021 2666 214143 45591 3.45781 3.45781 -128.418 -3.45781 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0315056 0.027524 101 62 56 29 58 29 +fixed_k6_frac_2uripple_N8_22nm.xml mult_117.v common 7.76 vpr 63.96 MiB 0.02 7228 -1 -1 1 0.04 -1 -1 30948 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65496 32 32 469 381 1 309 86 17 17 289 -1 unnamed_device 25.6 MiB 0.70 1399 13316 4006 7788 1522 64.0 MiB 0.14 0.00 4.54237 -164.626 -4.54237 4.54237 0.69 0.000874165 0.000812165 0.0637914 0.0592245 40 3794 27 6.99608e+06 323745 706193. 2443.58 4.18 0.341936 0.296253 26914 176310 -1 3289 22 3093 3706 344700 72808 5.31184 5.31184 -197.326 -5.31184 0 0 926341. 3205.33 0.24 0.13 0.15 -1 -1 0.24 0.039087 0.0342435 140 127 0 0 128 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_118.v common 5.38 vpr 62.71 MiB 0.02 6756 -1 -1 1 0.04 -1 -1 30652 -1 -1 11 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 259 212 1 143 74 17 17 289 -1 unnamed_device 24.2 MiB 0.88 486 10149 3821 5138 1190 62.7 MiB 0.07 0.00 2.81885 -95.7056 -2.81885 2.81885 0.69 0.00057698 0.000537389 0.0313532 0.0289445 42 1881 36 6.99608e+06 161872 744469. 2576.02 1.84 0.15004 0.130721 27202 183097 -1 1407 21 1206 1812 154287 39061 2.92262 2.92262 -109.155 -2.92262 0 0 949917. 3286.91 0.25 0.07 0.17 -1 -1 0.25 0.0241573 0.0210776 57 4 85 31 0 0 +fixed_k6_frac_2uripple_N8_22nm.xml mult_119.v common 15.10 vpr 63.78 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 30728 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65308 32 32 418 338 1 263 83 17 17 289 -1 unnamed_device 25.1 MiB 2.37 1299 14303 5218 6688 2397 63.8 MiB 0.13 0.00 4.76923 -166.635 -4.76923 4.76923 0.72 0.000782672 0.000725975 0.0655085 0.0607752 42 3889 33 6.99608e+06 279598 744469. 2576.02 9.80 0.41023 0.355357 27202 183097 -1 2969 23 2634 3345 323554 73461 5.2489 5.2489 -186.63 -5.2489 0 0 949917. 3286.91 0.25 0.12 0.15 -1 -1 0.25 0.0358481 0.0313566 118 92 28 28 92 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_120.v common 5.93 vpr 63.48 MiB 0.02 6992 -1 -1 1 0.04 -1 -1 30452 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 376 318 1 253 80 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1244 15216 5143 8703 1370 63.5 MiB 0.15 0.00 4.66407 -173.875 -4.66407 4.66407 0.68 0.000729346 0.000676946 0.0667504 0.0619668 42 3399 30 6.99608e+06 235451 744469. 2576.02 2.28 0.224441 0.197227 27202 183097 -1 2839 21 2786 3510 358571 70325 4.53514 4.53514 -172.981 -4.53514 0 0 949917. 3286.91 0.25 0.12 0.13 -1 -1 0.25 0.0291382 0.025814 110 96 0 0 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_121.v common 8.00 vpr 63.86 MiB 0.05 6960 -1 -1 1 0.03 -1 -1 30616 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65396 32 32 401 316 1 247 83 17 17 289 -1 unnamed_device 25.1 MiB 0.72 1129 13403 5326 6238 1839 63.9 MiB 0.13 0.00 3.33684 -128.417 -3.33684 3.33684 0.68 0.000783528 0.000728234 0.0604441 0.056116 40 3292 39 6.99608e+06 279598 706193. 2443.58 4.45 0.329583 0.28697 26914 176310 -1 2669 22 2226 2964 259019 53439 3.47752 3.47752 -138.203 -3.47752 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0337627 0.0295461 106 65 61 32 64 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_122.v common 6.04 vpr 63.79 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 30964 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65324 32 32 500 382 1 312 86 17 17 289 -1 unnamed_device 25.6 MiB 0.65 1500 14261 4373 7976 1912 63.8 MiB 0.15 0.00 4.89654 -177.942 -4.89654 4.89654 0.70 0.000922506 0.000856963 0.0723463 0.0671407 38 4530 26 6.99608e+06 323745 678818. 2348.85 2.48 0.240799 0.211856 26626 170182 -1 3425 21 2955 3436 300497 60696 5.24375 5.24375 -195.393 -5.24375 0 0 902133. 3121.57 0.23 0.12 0.16 -1 -1 0.23 0.0401059 0.035189 140 96 64 32 96 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_123.v common 7.63 vpr 62.71 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30448 -1 -1 13 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 30 32 246 229 1 154 75 17 17 289 -1 unnamed_device 24.2 MiB 1.84 577 8449 3482 4728 239 62.7 MiB 0.07 0.00 2.75275 -95.2487 -2.75275 2.75275 0.68 0.000527036 0.000490147 0.030022 0.0279364 38 1711 23 6.99608e+06 191304 678818. 2348.85 3.25 0.169191 0.145707 26626 170182 -1 1383 20 863 893 83109 19516 2.40442 2.40442 -89.9937 -2.40442 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0213474 0.0185705 65 56 0 0 53 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_124.v common 7.50 vpr 62.93 MiB 0.05 6896 -1 -1 1 0.03 -1 -1 30640 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64444 30 32 296 244 1 167 76 17 17 289 -1 unnamed_device 24.3 MiB 2.71 870 9516 3877 5353 286 62.9 MiB 0.08 0.00 3.41559 -121.499 -3.41559 3.41559 0.68 0.000615601 0.000570964 0.0387859 0.0360936 34 2267 38 6.99608e+06 206020 618332. 2139.56 2.04 0.182541 0.158532 25762 151098 -1 1973 20 1489 2154 226899 45087 3.52311 3.52311 -132.648 -3.52311 0 0 787024. 2723.27 0.26 0.09 0.13 -1 -1 0.26 0.0261278 0.023009 72 34 60 30 30 30 +fixed_k6_frac_2uripple_N8_22nm.xml mult_125.v common 5.83 vpr 62.98 MiB 0.03 6840 -1 -1 1 0.03 -1 -1 30304 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 314 256 1 192 76 17 17 289 -1 unnamed_device 24.3 MiB 0.24 764 10316 3722 4683 1911 63.0 MiB 0.10 0.00 3.37904 -128.379 -3.37904 3.37904 0.68 0.000650093 0.000603225 0.0437026 0.0405139 42 3288 42 6.99608e+06 176588 744469. 2576.02 2.83 0.203255 0.178118 27202 183097 -1 2201 22 2045 3133 299053 64392 3.55931 3.55931 -143.438 -3.55931 0 0 949917. 3286.91 0.25 0.11 0.15 -1 -1 0.25 0.0284584 0.0248652 80 34 64 32 32 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_126.v common 4.90 vpr 62.73 MiB 0.02 6928 -1 -1 1 0.03 -1 -1 30608 -1 -1 18 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 25 32 251 214 1 151 75 17 17 289 -1 unnamed_device 24.1 MiB 0.83 497 10819 4307 4933 1579 62.7 MiB 0.08 0.00 3.31386 -89.9377 -3.31386 3.31386 0.68 0.000531912 0.000495051 0.0384672 0.0358098 38 1619 26 6.99608e+06 264882 678818. 2348.85 1.49 0.149322 0.129773 26626 170182 -1 1320 22 963 1230 96690 22063 3.39857 3.39857 -101.795 -3.39857 0 0 902133. 3121.57 0.23 0.06 0.16 -1 -1 0.23 0.0233996 0.0203394 68 34 50 25 25 25 +fixed_k6_frac_2uripple_N8_22nm.xml mult_127.v common 9.05 vpr 63.54 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30828 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 432 346 1 281 84 17 17 289 -1 unnamed_device 25.0 MiB 0.92 1423 14358 4574 7658 2126 63.5 MiB 0.13 0.00 3.77875 -143.667 -3.77875 3.77875 0.71 0.000669105 0.000621478 0.0508377 0.046801 48 3887 39 6.99608e+06 294314 865456. 2994.66 5.14 0.316365 0.274275 28354 207349 -1 3306 23 2716 3875 397594 74726 4.49432 4.49432 -165.964 -4.49432 0 0 1.05005e+06 3633.38 0.28 0.13 0.17 -1 -1 0.28 0.038954 0.0341264 125 94 32 32 94 32 +fixed_k6_frac_2uripple_N8_22nm.xml mult_128.v common 16.25 vpr 63.74 MiB 0.03 7296 -1 -1 1 0.04 -1 -1 30680 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65272 31 32 421 339 1 270 85 17 17 289 -1 unnamed_device 24.9 MiB 0.82 1182 13663 4698 6384 2581 63.7 MiB 0.13 0.00 4.16978 -143.827 -4.16978 4.16978 0.69 0.000780477 0.000724033 0.0599709 0.0555935 38 4106 44 6.99608e+06 323745 678818. 2348.85 12.55 0.412841 0.357271 26626 170182 -1 2880 24 2989 3963 354716 76811 4.21645 4.21645 -155.927 -4.21645 0 0 902133. 3121.57 0.23 0.13 0.17 -1 -1 0.23 0.0381705 0.0334163 121 94 29 29 93 31 +fixed_k6_frac_N8_22nm.xml mult_001.v common 7.18 vpr 63.02 MiB 0.05 6844 -1 -1 14 0.26 -1 -1 33044 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 32 32 280 312 1 207 83 17 17 289 -1 unnamed_device 24.3 MiB 2.22 1265 9263 2276 5364 1623 63.0 MiB 0.10 0.00 8.4853 -170.751 -8.4853 8.4853 0.68 0.00092171 0.000845863 0.0517249 0.0478235 42 3196 27 6.79088e+06 255968 744469. 2576.02 1.84 0.21121 0.185201 26542 182613 -1 2874 18 1331 3594 205628 46329 7.2178 7.2178 -158.412 -7.2178 0 0 949917. 3286.91 0.25 0.09 0.15 -1 -1 0.25 0.036488 0.0322603 134 186 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_002.v common 6.73 vpr 62.78 MiB 0.03 6744 -1 -1 14 0.29 -1 -1 33008 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 30 32 277 309 1 214 82 17 17 289 -1 unnamed_device 24.2 MiB 1.46 1228 8270 2008 5297 965 62.8 MiB 0.09 0.00 7.98833 -161.421 -7.98833 7.98833 0.68 0.000909796 0.000843888 0.045369 0.0420508 38 3369 24 6.79088e+06 269440 678818. 2348.85 2.28 0.239345 0.20861 25966 169698 -1 2639 16 1263 3342 171552 38680 6.92108 6.92108 -150.777 -6.92108 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0335494 0.0297727 132 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_003.v common 8.18 vpr 62.79 MiB 0.02 6804 -1 -1 11 0.26 -1 -1 32988 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 274 306 1 200 84 17 17 289 -1 unnamed_device 24.2 MiB 1.71 1125 11613 3520 5862 2231 62.8 MiB 0.12 0.00 7.03202 -141.666 -7.03202 7.03202 0.79 0.000883674 0.000816343 0.0599784 0.0555117 38 3494 35 6.79088e+06 269440 678818. 2348.85 3.33 0.266179 0.232613 25966 169698 -1 2625 14 1280 3774 213979 47553 6.12643 6.12643 -134.975 -6.12643 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0306812 0.0272662 138 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_004.v common 9.35 vpr 62.78 MiB 0.05 6704 -1 -1 12 0.33 -1 -1 33008 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 29 32 269 301 1 191 83 17 17 289 -1 unnamed_device 24.1 MiB 1.27 1021 7643 1879 4700 1064 62.8 MiB 0.08 0.00 7.24011 -138.658 -7.24011 7.24011 0.70 0.000894272 0.000828734 0.0419441 0.0388689 34 3163 35 6.79088e+06 296384 618332. 2139.56 4.82 0.358819 0.310109 25102 150614 -1 2564 30 1371 4196 372628 146811 6.41977 6.41977 -137.266 -6.41977 0 0 787024. 2723.27 0.21 0.16 0.16 -1 -1 0.21 0.054465 0.0476829 136 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_005.v common 7.63 vpr 63.21 MiB 0.02 6700 -1 -1 13 0.40 -1 -1 33120 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 317 349 1 251 88 17 17 289 -1 unnamed_device 24.4 MiB 1.95 1463 12568 3276 7023 2269 63.2 MiB 0.14 0.00 8.02445 -169.708 -8.02445 8.02445 0.70 0.0010305 0.000953761 0.0708986 0.0655707 38 3955 39 6.79088e+06 323328 678818. 2348.85 2.44 0.280297 0.247419 25966 169698 -1 3230 18 1582 4264 235455 53214 7.21431 7.21431 -165.43 -7.21431 0 0 902133. 3121.57 0.23 0.11 0.14 -1 -1 0.23 0.0418677 0.0371069 160 223 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_006.v common 8.79 vpr 63.25 MiB 0.02 6700 -1 -1 12 0.27 -1 -1 32964 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64768 32 32 299 331 1 221 88 17 17 289 -1 unnamed_device 24.5 MiB 2.77 1344 4768 918 3685 165 63.2 MiB 0.06 0.00 7.61832 -163.245 -7.61832 7.61832 0.74 0.000952516 0.000882064 0.0273149 0.0253466 40 3616 33 6.79088e+06 323328 706193. 2443.58 2.72 0.255464 0.222149 26254 175826 -1 3134 17 1447 4200 258556 56440 6.72076 6.72076 -159.22 -6.72076 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0367736 0.0326715 150 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_007.v common 6.10 vpr 62.32 MiB 0.04 6696 -1 -1 12 0.21 -1 -1 32540 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 27 32 210 242 1 166 79 17 17 289 -1 unnamed_device 23.7 MiB 1.29 1000 7177 1656 4753 768 62.3 MiB 0.06 0.00 7.28149 -137.47 -7.28149 7.28149 0.77 0.000542835 0.0004983 0.0301808 0.0279361 34 2838 27 6.79088e+06 269440 618332. 2139.56 1.91 0.169057 0.14811 25102 150614 -1 2453 16 1043 2689 182555 40021 6.33023 6.33023 -134.138 -6.33023 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0257747 0.0228347 101 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_008.v common 7.02 vpr 62.97 MiB 0.03 6652 -1 -1 11 0.18 -1 -1 33116 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64480 31 32 264 296 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.52 1129 9531 2421 6090 1020 63.0 MiB 0.10 0.00 6.82017 -140.384 -6.82017 6.82017 0.70 0.000845225 0.000773655 0.0442632 0.0406405 38 2926 25 6.79088e+06 242496 678818. 2348.85 2.61 0.244874 0.214268 25966 169698 -1 2485 16 1084 3157 175367 37866 5.90727 5.90727 -134.309 -5.90727 0 0 902133. 3121.57 0.24 0.08 0.16 -1 -1 0.24 0.03072 0.0271549 118 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_009.v common 6.89 vpr 62.61 MiB 0.02 6736 -1 -1 12 0.17 -1 -1 32648 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 31 32 234 266 1 191 81 17 17 289 -1 unnamed_device 24.2 MiB 2.34 1115 11631 3187 7135 1309 62.6 MiB 0.10 0.00 6.73244 -139.285 -6.73244 6.73244 0.69 0.00074018 0.000684127 0.0520372 0.0480762 34 2806 30 6.79088e+06 242496 618332. 2139.56 1.65 0.182998 0.161103 25102 150614 -1 2565 20 1174 2612 173278 39085 5.61753 5.61753 -134.33 -5.61753 0 0 787024. 2723.27 0.30 0.08 0.13 -1 -1 0.30 0.0309128 0.0278674 111 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_010.v common 7.58 vpr 62.73 MiB 0.02 6452 -1 -1 13 0.22 -1 -1 32996 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 32 32 253 285 1 183 80 17 17 289 -1 unnamed_device 24.2 MiB 1.32 1011 5412 1090 4064 258 62.7 MiB 0.06 0.00 7.30367 -163.797 -7.30367 7.30367 0.68 0.000802731 0.000743116 0.0285784 0.0265066 36 3033 27 6.79088e+06 215552 648988. 2245.63 3.46 0.236096 0.204263 25390 158009 -1 2456 15 1075 2649 157841 35826 6.24757 6.24757 -160.375 -6.24757 0 0 828058. 2865.25 0.24 0.04 0.13 -1 -1 0.24 0.0171807 0.0156123 107 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_011.v common 9.31 vpr 62.32 MiB 0.04 6500 -1 -1 12 0.17 -1 -1 32884 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63816 30 32 217 249 1 159 78 17 17 289 -1 unnamed_device 23.7 MiB 1.24 838 6386 1352 4871 163 62.3 MiB 0.06 0.00 7.31171 -145.298 -7.31171 7.31171 0.68 0.00069572 0.00064341 0.0295579 0.0273943 34 2565 49 6.79088e+06 215552 618332. 2139.56 5.22 0.304536 0.262905 25102 150614 -1 1980 17 926 2436 129158 30342 5.99697 5.99697 -135.497 -5.99697 0 0 787024. 2723.27 0.31 0.06 0.16 -1 -1 0.31 0.0251119 0.0226037 93 129 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_012.v common 10.60 vpr 62.42 MiB 0.04 6532 -1 -1 12 0.17 -1 -1 32912 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63916 32 32 227 259 1 170 78 17 17 289 -1 unnamed_device 23.8 MiB 1.68 1055 4560 1014 3240 306 62.4 MiB 0.05 0.00 6.46989 -155.558 -6.46989 6.46989 0.68 0.000723278 0.000669953 0.0223884 0.0207361 36 2744 30 6.79088e+06 188608 648988. 2245.63 6.10 0.268799 0.231732 25390 158009 -1 2375 15 993 2484 161648 35634 5.6029 5.6029 -148.273 -5.6029 0 0 828058. 2865.25 0.26 0.09 0.14 -1 -1 0.26 0.0292415 0.0259264 94 133 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_013.v common 8.03 vpr 63.12 MiB 0.02 6672 -1 -1 13 0.27 -1 -1 33052 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 306 338 1 226 85 17 17 289 -1 unnamed_device 24.4 MiB 1.34 1239 11431 3102 6258 2071 63.1 MiB 0.11 0.00 7.91359 -165.523 -7.91359 7.91359 0.67 0.000756161 0.000692483 0.0593415 0.0547464 38 3155 18 6.79088e+06 282912 678818. 2348.85 3.62 0.286663 0.249946 25966 169698 -1 2592 15 1252 3527 167980 38723 6.72081 6.72081 -153.475 -6.72081 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.034793 0.0309218 148 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_014.v common 6.80 vpr 63.38 MiB 0.03 6852 -1 -1 14 0.33 -1 -1 33272 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64900 32 32 302 334 1 227 85 17 17 289 -1 unnamed_device 24.7 MiB 1.56 1366 11245 3016 6173 2056 63.4 MiB 0.12 0.00 9.12295 -182.881 -9.12295 9.12295 0.68 0.000969989 0.000896753 0.0626202 0.0579006 38 3580 36 6.79088e+06 282912 678818. 2348.85 2.19 0.25653 0.224642 25966 169698 -1 2916 24 1689 4697 266370 58893 7.96616 7.96616 -174.478 -7.96616 0 0 902133. 3121.57 0.23 0.12 0.14 -1 -1 0.23 0.0477119 0.0418452 149 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_015.v common 9.76 vpr 62.41 MiB 0.03 6516 -1 -1 11 0.20 -1 -1 32624 -1 -1 20 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 29 32 238 270 1 181 81 17 17 289 -1 unnamed_device 24.0 MiB 1.34 857 12681 3929 6469 2283 62.4 MiB 0.11 0.00 6.92892 -133.02 -6.92892 6.92892 0.67 0.000743571 0.000687942 0.0570049 0.0527718 36 3153 38 6.79088e+06 269440 648988. 2245.63 5.51 0.3242 0.281136 25390 158009 -1 2170 17 1147 2722 157196 37055 5.95428 5.95428 -127.504 -5.95428 0 0 828058. 2865.25 0.22 0.08 0.14 -1 -1 0.22 0.0290584 0.0256524 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_016.v common 7.78 vpr 63.37 MiB 0.02 6864 -1 -1 12 0.27 -1 -1 33160 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 306 338 1 232 84 17 17 289 -1 unnamed_device 24.6 MiB 2.23 1420 13992 4103 7703 2186 63.4 MiB 0.15 0.00 7.6046 -160.271 -7.6046 7.6046 0.68 0.000810864 0.000752563 0.0791475 0.0730679 44 4067 29 6.79088e+06 269440 787024. 2723.27 2.40 0.262368 0.231053 27118 194962 -1 3348 19 1618 5154 301792 65864 6.71301 6.71301 -159.196 -6.71301 0 0 997811. 3452.63 0.27 0.12 0.16 -1 -1 0.27 0.0423273 0.0374503 146 212 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_017.v common 8.13 vpr 63.29 MiB 0.02 6752 -1 -1 13 0.29 -1 -1 32988 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64808 32 32 311 343 1 226 85 17 17 289 -1 unnamed_device 24.6 MiB 1.48 1236 10687 3174 5565 1948 63.3 MiB 0.12 0.00 8.28661 -168.45 -8.28661 8.28661 0.68 0.000980371 0.000905356 0.0608476 0.0562699 36 3932 50 6.79088e+06 282912 648988. 2245.63 3.37 0.272833 0.238268 25390 158009 -1 2979 46 1547 4645 590291 255028 7.17085 7.17085 -164.576 -7.17085 0 0 828058. 2865.25 0.34 0.26 0.16 -1 -1 0.34 0.0863698 0.0752786 144 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_018.v common 6.65 vpr 62.31 MiB 0.02 6524 -1 -1 12 0.20 -1 -1 32720 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63808 32 32 230 262 1 172 80 17 17 289 -1 unnamed_device 23.7 MiB 2.38 945 7992 1779 4650 1563 62.3 MiB 0.08 0.00 6.70943 -154.61 -6.70943 6.70943 0.68 0.000746973 0.000690368 0.0379009 0.0350711 34 2604 21 6.79088e+06 215552 618332. 2139.56 1.44 0.16617 0.145448 25102 150614 -1 2227 16 899 2429 142821 32235 6.11873 6.11873 -152.118 -6.11873 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0274857 0.0243535 104 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_019.v common 9.72 vpr 61.90 MiB 0.02 6336 -1 -1 10 0.13 -1 -1 32300 -1 -1 12 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63384 30 32 176 208 1 138 74 17 17 289 -1 unnamed_device 23.3 MiB 2.54 878 7049 1926 4350 773 61.9 MiB 0.06 0.00 5.18321 -124.627 -5.18321 5.18321 0.72 0.000572407 0.000531452 0.0282783 0.0262682 34 2142 23 6.79088e+06 161664 618332. 2139.56 4.45 0.215041 0.18496 25102 150614 -1 1850 15 735 1693 107433 23936 4.71101 4.71101 -126.488 -4.71101 0 0 787024. 2723.27 0.29 0.05 0.15 -1 -1 0.29 0.0183086 0.016445 67 88 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_020.v common 10.64 vpr 62.37 MiB 0.02 6556 -1 -1 13 0.16 -1 -1 32888 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 31 32 226 258 1 173 79 17 17 289 -1 unnamed_device 23.7 MiB 1.76 974 6332 1469 4570 293 62.4 MiB 0.07 0.00 7.59608 -163.359 -7.59608 7.59608 0.69 0.000702724 0.000647737 0.0308677 0.0285022 34 2843 46 6.79088e+06 215552 618332. 2139.56 6.09 0.303423 0.261948 25102 150614 -1 2207 16 927 2152 124178 28370 6.53742 6.53742 -151.987 -6.53742 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0269691 0.0238166 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_021.v common 7.10 vpr 62.97 MiB 0.02 6680 -1 -1 13 0.37 -1 -1 33060 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 302 334 1 222 86 17 17 289 -1 unnamed_device 24.5 MiB 1.11 1254 12371 3408 7445 1518 63.0 MiB 0.13 0.00 7.46133 -157.73 -7.46133 7.46133 0.69 0.00095955 0.00088707 0.0675787 0.062529 36 3694 37 6.79088e+06 296384 648988. 2245.63 2.56 0.298159 0.260778 25390 158009 -1 2973 29 1521 4256 442451 172145 6.74533 6.74533 -154.081 -6.74533 0 0 828058. 2865.25 0.22 0.18 0.13 -1 -1 0.22 0.0560894 0.0492192 143 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_022.v common 7.06 vpr 63.07 MiB 0.02 6896 -1 -1 13 0.28 -1 -1 33420 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 299 331 1 221 83 17 17 289 -1 unnamed_device 24.6 MiB 1.76 1425 10883 2960 6054 1869 63.1 MiB 0.12 0.00 8.13867 -171.504 -8.13867 8.13867 0.69 0.00097331 0.000900916 0.0616424 0.0570683 38 3735 25 6.79088e+06 255968 678818. 2348.85 2.24 0.221949 0.195251 25966 169698 -1 3074 17 1443 3937 224870 49189 7.06211 7.06211 -165.107 -7.06211 0 0 902133. 3121.57 0.23 0.10 0.16 -1 -1 0.23 0.0382188 0.0338724 141 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_023.v common 7.14 vpr 61.95 MiB 0.04 6456 -1 -1 9 0.09 -1 -1 32380 -1 -1 16 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63432 26 32 149 181 1 119 74 17 17 289 -1 unnamed_device 23.4 MiB 1.44 588 10149 2859 5591 1699 61.9 MiB 0.07 0.00 4.97273 -93.6629 -4.97273 4.97273 0.68 0.000500618 0.000465551 0.0345144 0.0321148 28 2168 26 6.79088e+06 215552 531479. 1839.03 3.06 0.162221 0.140328 23950 126010 -1 1584 19 646 1503 101735 23308 4.27123 4.27123 -96.5396 -4.27123 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0198481 0.0173281 64 73 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_024.v common 9.31 vpr 63.07 MiB 0.04 6704 -1 -1 13 0.35 -1 -1 33040 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 304 336 1 222 86 17 17 289 -1 unnamed_device 24.4 MiB 1.98 1289 7268 1575 5261 432 63.1 MiB 0.09 0.00 8.3813 -168.316 -8.3813 8.3813 0.68 0.000964206 0.000892251 0.0410092 0.0379596 48 3012 26 6.79088e+06 296384 865456. 2994.66 4.17 0.407412 0.351773 27694 206865 -1 2677 17 1308 3679 198747 44865 7.33967 7.33967 -158.795 -7.33967 0 0 1.05005e+06 3633.38 0.30 0.09 0.17 -1 -1 0.30 0.0371651 0.033301 137 210 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_025.v common 6.47 vpr 61.83 MiB 0.02 6420 -1 -1 8 0.11 -1 -1 31472 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63316 32 32 155 187 1 128 81 17 17 289 -1 unnamed_device 23.3 MiB 2.72 737 11631 4246 5219 2166 61.8 MiB 0.07 0.00 4.77835 -104.906 -4.77835 4.77835 0.85 0.000388058 0.000355649 0.0281136 0.025825 30 1930 29 6.79088e+06 229024 556674. 1926.21 1.08 0.0977753 0.0853638 24526 138013 -1 1556 18 651 1433 81377 18685 4.0956 4.0956 -102.965 -4.0956 0 0 706193. 2443.58 0.19 0.05 0.12 -1 -1 0.19 0.0194742 0.0170631 64 61 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_026.v common 8.84 vpr 62.90 MiB 0.03 6728 -1 -1 15 0.24 -1 -1 33380 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64408 32 32 253 285 1 192 81 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1155 10581 3115 6097 1369 62.9 MiB 0.11 0.00 8.86251 -178.17 -8.86251 8.86251 0.68 0.000844444 0.000781812 0.0535042 0.0496378 48 2652 18 6.79088e+06 229024 865456. 2994.66 4.07 0.26013 0.226733 27694 206865 -1 2352 14 979 2595 145382 32789 7.79833 7.79833 -165.486 -7.79833 0 0 1.05005e+06 3633.38 0.28 0.07 0.17 -1 -1 0.28 0.027915 0.0248317 118 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_027.v common 8.68 vpr 63.34 MiB 0.02 6684 -1 -1 12 0.32 -1 -1 33004 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 309 341 1 218 86 17 17 289 -1 unnamed_device 24.6 MiB 1.61 1241 4433 817 3477 139 63.3 MiB 0.06 0.00 7.21583 -155.808 -7.21583 7.21583 0.67 0.000989898 0.000915543 0.0269871 0.0250354 48 3005 18 6.79088e+06 296384 865456. 2994.66 3.99 0.329876 0.285262 27694 206865 -1 2728 20 1281 4015 211635 48059 6.08302 6.08302 -143.627 -6.08302 0 0 1.05005e+06 3633.38 0.27 0.10 0.18 -1 -1 0.27 0.0421581 0.0371739 145 215 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_028.v common 7.09 vpr 63.21 MiB 0.04 6836 -1 -1 13 0.27 -1 -1 32900 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 289 321 1 212 84 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1284 4659 748 3690 221 63.2 MiB 0.06 0.00 8.13835 -165.274 -8.13835 8.13835 0.68 0.000921291 0.000852377 0.028291 0.0262294 38 3186 46 6.79088e+06 269440 678818. 2348.85 2.81 0.263433 0.22832 25966 169698 -1 2675 18 1339 3722 195352 44319 6.88526 6.88526 -154.561 -6.88526 0 0 902133. 3121.57 0.23 0.09 0.15 -1 -1 0.23 0.0364708 0.0321819 136 195 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_029.v common 6.89 vpr 62.55 MiB 0.02 6652 -1 -1 12 0.21 -1 -1 32636 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 32 32 239 271 1 179 83 17 17 289 -1 unnamed_device 24.1 MiB 2.50 1045 5303 1002 3952 349 62.6 MiB 0.06 0.00 6.60115 -147.873 -6.60115 6.60115 0.67 0.000755826 0.000699628 0.0250608 0.0231962 36 2779 19 6.79088e+06 255968 648988. 2245.63 1.48 0.138203 0.120331 25390 158009 -1 2396 16 998 2629 160419 35538 5.90389 5.90389 -141.782 -5.90389 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0280445 0.0248699 106 145 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_030.v common 8.88 vpr 62.40 MiB 0.02 6644 -1 -1 11 0.15 -1 -1 32844 -1 -1 20 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63896 30 32 213 245 1 166 82 17 17 289 -1 unnamed_device 23.8 MiB 1.83 954 11652 3379 7115 1158 62.4 MiB 0.10 0.00 6.23714 -130.615 -6.23714 6.23714 0.69 0.000684677 0.000633643 0.0475264 0.0439889 40 2212 46 6.79088e+06 269440 706193. 2443.58 4.11 0.292401 0.253549 26254 175826 -1 2116 16 936 2402 154095 33802 5.44954 5.44954 -127.032 -5.44954 0 0 926341. 3205.33 0.36 0.07 0.17 -1 -1 0.36 0.0248368 0.0224818 97 125 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_031.v common 5.69 vpr 62.57 MiB 0.02 6660 -1 -1 11 0.21 -1 -1 32776 -1 -1 19 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64068 28 32 221 253 1 179 79 17 17 289 -1 unnamed_device 24.1 MiB 1.21 1013 7346 1810 4929 607 62.6 MiB 0.07 0.00 6.76313 -133.919 -6.76313 6.76313 0.69 0.000720741 0.000667223 0.0345227 0.0319435 34 2957 34 6.79088e+06 255968 618332. 2139.56 1.64 0.181282 0.157471 25102 150614 -1 2507 18 1175 3030 210910 49288 5.81768 5.81768 -130.623 -5.81768 0 0 787024. 2723.27 0.29 0.08 0.15 -1 -1 0.29 0.0264341 0.0237377 107 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_032.v common 15.00 vpr 62.73 MiB 0.02 6604 -1 -1 12 0.18 -1 -1 32632 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64240 32 32 273 305 1 207 83 17 17 289 -1 unnamed_device 24.2 MiB 2.57 1274 9443 2812 5690 941 62.7 MiB 0.10 0.00 6.88424 -161.28 -6.88424 6.88424 0.68 0.000854639 0.000791743 0.0491691 0.0455342 34 3731 37 6.79088e+06 255968 618332. 2139.56 9.39 0.369805 0.320465 25102 150614 -1 3093 17 1568 3809 252434 56344 6.28749 6.28749 -162.403 -6.28749 0 0 787024. 2723.27 0.29 0.13 0.13 -1 -1 0.29 0.0436134 0.0389409 119 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_033.v common 6.27 vpr 62.53 MiB 0.02 6588 -1 -1 11 0.21 -1 -1 32760 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 238 270 1 181 80 17 17 289 -1 unnamed_device 24.1 MiB 1.43 908 10056 3226 4794 2036 62.5 MiB 0.10 0.00 6.39517 -140.882 -6.39517 6.39517 0.68 0.000769033 0.000711965 0.0482023 0.0446126 34 3348 36 6.79088e+06 229024 618332. 2139.56 1.95 0.198377 0.1738 25102 150614 -1 2463 24 1514 4219 363945 120843 5.90384 5.90384 -145.342 -5.90384 0 0 787024. 2723.27 0.21 0.13 0.13 -1 -1 0.21 0.0379402 0.0332565 107 147 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_034.v common 8.17 vpr 62.23 MiB 0.02 6596 -1 -1 10 0.18 -1 -1 32880 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63720 29 32 221 253 1 160 79 17 17 289 -1 unnamed_device 23.6 MiB 1.78 870 8022 2297 4713 1012 62.2 MiB 0.07 0.00 6.19022 -129.37 -6.19022 6.19022 0.68 0.000717597 0.000664131 0.0369174 0.0341795 38 2089 14 6.79088e+06 242496 678818. 2348.85 3.41 0.248508 0.215366 25966 169698 -1 1842 16 750 2123 104843 24662 5.36682 5.36682 -122.286 -5.36682 0 0 902133. 3121.57 0.34 0.07 0.17 -1 -1 0.34 0.0336363 0.0297909 103 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_035.v common 8.15 vpr 63.40 MiB 0.05 6992 -1 -1 13 0.43 -1 -1 33468 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 333 365 1 236 86 17 17 289 -1 unnamed_device 24.6 MiB 1.44 1352 10103 2504 6636 963 63.4 MiB 0.12 0.00 7.85531 -169.709 -7.85531 7.85531 0.68 0.00103749 0.000956823 0.0601396 0.0555551 38 3904 44 6.79088e+06 296384 678818. 2348.85 3.35 0.326359 0.284489 25966 169698 -1 3084 20 1441 4689 253476 55219 6.88531 6.88531 -159.581 -6.88531 0 0 902133. 3121.57 0.24 0.11 0.14 -1 -1 0.24 0.0457972 0.0404086 162 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_036.v common 8.59 vpr 63.22 MiB 0.03 6748 -1 -1 13 0.31 -1 -1 33296 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 297 329 1 231 85 17 17 289 -1 unnamed_device 24.5 MiB 1.69 1274 13849 4315 6877 2657 63.2 MiB 0.13 0.00 7.85526 -169.716 -7.85526 7.85526 0.86 0.000741921 0.00067742 0.0601292 0.0548054 36 4186 33 6.79088e+06 282912 648988. 2245.63 3.64 0.272314 0.238273 25390 158009 -1 3181 22 1963 5732 362772 78665 6.79916 6.79916 -163.894 -6.79916 0 0 828058. 2865.25 0.22 0.13 0.13 -1 -1 0.22 0.0454881 0.0399664 152 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_037.v common 8.43 vpr 62.45 MiB 0.02 6676 -1 -1 12 0.19 -1 -1 32992 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63952 31 32 234 266 1 169 81 17 17 289 -1 unnamed_device 23.8 MiB 1.54 851 11631 4796 6628 207 62.5 MiB 0.11 0.00 7.11438 -152.359 -7.11438 7.11438 0.76 0.000744141 0.000687041 0.0524142 0.0483951 38 2691 21 6.79088e+06 242496 678818. 2348.85 3.64 0.264818 0.230207 25966 169698 -1 2034 16 1013 2676 148394 33797 6.29098 6.29098 -142.82 -6.29098 0 0 902133. 3121.57 0.33 0.06 0.16 -1 -1 0.33 0.0245291 0.02207 102 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_038.v common 6.75 vpr 63.37 MiB 0.03 6764 -1 -1 12 0.33 -1 -1 33444 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 310 342 1 217 86 17 17 289 -1 unnamed_device 24.6 MiB 1.20 1154 12749 3915 6368 2466 63.4 MiB 0.13 0.00 7.84323 -159.621 -7.84323 7.84323 0.69 0.000976799 0.000902957 0.0694798 0.064153 40 3413 28 6.79088e+06 309856 706193. 2443.58 2.46 0.287922 0.252003 26254 175826 -1 2794 21 1523 4801 241287 59098 6.99588 6.99588 -154.753 -6.99588 0 0 926341. 3205.33 0.24 0.11 0.16 -1 -1 0.24 0.0436257 0.0384061 148 219 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_039.v common 8.79 vpr 62.98 MiB 0.03 6764 -1 -1 14 0.44 -1 -1 33336 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 284 316 1 219 84 17 17 289 -1 unnamed_device 24.5 MiB 1.40 1375 11247 2864 6672 1711 63.0 MiB 0.12 0.00 8.18012 -172.817 -8.18012 8.18012 0.68 0.000942355 0.00087256 0.0609067 0.0563973 40 3259 24 6.79088e+06 282912 706193. 2443.58 4.15 0.392992 0.341613 26254 175826 -1 2973 17 1398 3899 220415 49657 7.30047 7.30047 -164.86 -7.30047 0 0 926341. 3205.33 0.27 0.10 0.15 -1 -1 0.27 0.0363891 0.0322545 146 193 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_040.v common 7.49 vpr 62.90 MiB 0.03 6732 -1 -1 13 0.28 -1 -1 33040 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64412 31 32 271 303 1 211 84 17 17 289 -1 unnamed_device 24.2 MiB 2.20 1310 10149 2655 5632 1862 62.9 MiB 0.10 0.00 7.78561 -164.423 -7.78561 7.78561 0.69 0.000875238 0.000807923 0.0518681 0.0480147 40 3171 33 6.79088e+06 282912 706193. 2443.58 2.25 0.263005 0.229175 26254 175826 -1 2849 18 1395 3572 212420 47539 6.87069 6.87069 -157.483 -6.87069 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0367467 0.0323716 126 180 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_041.v common 6.43 vpr 62.84 MiB 0.02 6800 -1 -1 12 0.25 -1 -1 33116 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64344 31 32 280 312 1 206 86 17 17 289 -1 unnamed_device 24.2 MiB 0.88 1267 10859 2857 6722 1280 62.8 MiB 0.11 0.00 7.65156 -158.395 -7.65156 7.65156 0.68 0.000904559 0.000837774 0.055658 0.0515161 38 3526 46 6.79088e+06 309856 678818. 2348.85 2.47 0.248856 0.217959 25966 169698 -1 2791 20 1223 3588 205684 44477 6.65918 6.65918 -151.554 -6.65918 0 0 902133. 3121.57 0.33 0.09 0.16 -1 -1 0.33 0.0350004 0.0313584 135 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_042.v common 7.92 vpr 62.62 MiB 0.04 6816 -1 -1 12 0.21 -1 -1 32956 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 32 32 264 296 1 188 81 17 17 289 -1 unnamed_device 24.2 MiB 1.04 1093 11106 3659 5731 1716 62.6 MiB 0.11 0.00 7.11863 -144.901 -7.11863 7.11863 0.68 0.000832565 0.000770258 0.0563725 0.0521938 38 2948 38 6.79088e+06 229024 678818. 2348.85 3.99 0.326959 0.283318 25966 169698 -1 2382 18 1112 2851 156193 35646 6.32592 6.32592 -143.981 -6.32592 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0328145 0.028887 113 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_043.v common 9.89 vpr 63.41 MiB 0.03 7028 -1 -1 14 0.50 -1 -1 32792 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64928 32 32 339 371 1 247 89 17 17 289 -1 unnamed_device 24.6 MiB 1.71 1406 13355 3498 8147 1710 63.4 MiB 0.14 0.00 8.18038 -175.8 -8.18038 8.18038 0.68 0.00108032 0.000986989 0.0629325 0.0577075 40 3734 39 6.79088e+06 336800 706193. 2443.58 4.66 0.425747 0.369532 26254 175826 -1 3356 21 1616 5114 311554 67794 7.40798 7.40798 -170.332 -7.40798 0 0 926341. 3205.33 0.33 0.12 0.17 -1 -1 0.33 0.0443492 0.0398608 169 245 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_044.v common 6.93 vpr 62.80 MiB 0.02 6524 -1 -1 11 0.24 -1 -1 32756 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64308 31 32 246 278 1 185 81 17 17 289 -1 unnamed_device 24.3 MiB 1.68 1088 9006 2212 5478 1316 62.8 MiB 0.09 0.00 6.58747 -141.672 -6.58747 6.58747 0.68 0.000808041 0.000748531 0.0452607 0.0419236 34 3675 46 6.79088e+06 242496 618332. 2139.56 2.43 0.24895 0.216298 25102 150614 -1 2733 18 1234 3209 196646 44195 5.86807 5.86807 -140.489 -5.86807 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0320957 0.0282832 113 155 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_045.v common 8.49 vpr 63.00 MiB 0.05 6936 -1 -1 13 0.27 -1 -1 33028 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 268 300 1 191 82 17 17 289 -1 unnamed_device 24.4 MiB 1.43 1133 5422 1123 3954 345 63.0 MiB 0.07 0.00 7.76692 -152.212 -7.76692 7.76692 0.68 0.000881561 0.000815905 0.0305659 0.028347 38 2941 41 6.79088e+06 255968 678818. 2348.85 4.01 0.31829 0.274433 25966 169698 -1 2423 15 1050 3276 168675 37879 6.59546 6.59546 -145.656 -6.59546 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0313055 0.0277448 132 177 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_046.v common 8.98 vpr 63.38 MiB 0.04 6708 -1 -1 12 0.35 -1 -1 33100 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64896 32 32 318 350 1 227 85 17 17 289 -1 unnamed_device 24.5 MiB 1.39 1437 6967 1505 4666 796 63.4 MiB 0.09 0.00 7.30746 -159.645 -7.30746 7.30746 0.68 0.00100859 0.000932294 0.0422004 0.0390664 44 3587 21 6.79088e+06 282912 787024. 2723.27 4.43 0.376447 0.325244 27118 194962 -1 2989 16 1373 4187 250216 54006 6.50582 6.50582 -151.747 -6.50582 0 0 997811. 3452.63 0.26 0.10 0.16 -1 -1 0.26 0.0375501 0.0332951 153 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_047.v common 6.92 vpr 63.06 MiB 0.04 6776 -1 -1 13 0.31 -1 -1 32896 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64572 32 32 273 305 1 198 83 17 17 289 -1 unnamed_device 24.4 MiB 1.21 1157 7823 1835 4914 1074 63.1 MiB 0.09 0.00 7.47708 -158.746 -7.47708 7.47708 0.68 0.000893073 0.000827407 0.0423831 0.0392809 34 3491 49 6.79088e+06 255968 618332. 2139.56 2.65 0.224498 0.197278 25102 150614 -1 2939 28 1516 4404 349011 111453 6.58427 6.58427 -152.428 -6.58427 0 0 787024. 2723.27 0.29 0.14 0.15 -1 -1 0.29 0.0434955 0.0386069 131 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_048.v common 8.22 vpr 62.68 MiB 0.03 6852 -1 -1 13 0.22 -1 -1 32960 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64188 32 32 269 301 1 198 81 17 17 289 -1 unnamed_device 24.1 MiB 1.78 1097 11106 3753 5771 1582 62.7 MiB 0.11 0.00 7.69072 -162.222 -7.69072 7.69072 0.69 0.000863504 0.000798942 0.0581465 0.0537822 36 3192 29 6.79088e+06 229024 648988. 2245.63 3.56 0.317483 0.275327 25390 158009 -1 2333 17 1061 2854 154607 36682 6.50592 6.50592 -150.836 -6.50592 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0335513 0.0296513 118 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_049.v common 17.16 vpr 62.98 MiB 0.02 6780 -1 -1 12 0.34 -1 -1 33200 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 298 330 1 217 87 17 17 289 -1 unnamed_device 24.5 MiB 2.47 1359 8151 1869 5680 602 63.0 MiB 0.09 0.00 7.62073 -165.231 -7.62073 7.62073 0.73 0.000958308 0.000885624 0.0453063 0.0419439 32 4062 36 6.79088e+06 309856 586450. 2029.24 11.50 0.449695 0.389029 24814 144142 -1 3214 30 1443 4581 509799 206999 7.12467 7.12467 -169.17 -7.12467 0 0 744469. 2576.02 0.20 0.20 0.12 -1 -1 0.20 0.0582159 0.0509449 150 204 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_050.v common 7.05 vpr 62.98 MiB 0.02 6828 -1 -1 13 0.32 -1 -1 32976 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 299 331 1 229 84 17 17 289 -1 unnamed_device 24.3 MiB 1.87 1315 9051 2036 5908 1107 63.0 MiB 0.10 0.00 7.55776 -165.084 -7.55776 7.55776 0.69 0.00097744 0.000905199 0.0513392 0.047482 40 3325 24 6.79088e+06 269440 706193. 2443.58 2.08 0.25533 0.222785 26254 175826 -1 2871 16 1368 3781 215571 48163 6.95247 6.95247 -159.158 -6.95247 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0356752 0.0316655 143 205 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_051.v common 7.18 vpr 62.61 MiB 0.02 6672 -1 -1 14 0.27 -1 -1 33212 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64116 32 32 259 291 1 195 82 17 17 289 -1 unnamed_device 24.1 MiB 1.96 1139 8270 1889 5806 575 62.6 MiB 0.08 0.00 8.36252 -172.285 -8.36252 8.36252 0.79 0.000654765 0.000599595 0.0342456 0.0314821 38 3305 46 6.79088e+06 242496 678818. 2348.85 2.10 0.184222 0.161899 25966 169698 -1 2612 17 1220 3571 199644 44722 7.46496 7.46496 -168.009 -7.46496 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0330263 0.0292417 123 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_052.v common 7.92 vpr 63.14 MiB 0.03 6712 -1 -1 13 0.30 -1 -1 33028 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 293 325 1 216 84 17 17 289 -1 unnamed_device 24.2 MiB 2.90 1159 8868 1881 6136 851 63.1 MiB 0.10 0.00 8.02321 -165.348 -8.02321 8.02321 0.75 0.000840844 0.000770385 0.0482931 0.0447092 34 3496 28 6.79088e+06 269440 618332. 2139.56 1.96 0.229388 0.200465 25102 150614 -1 3060 20 1604 4282 255111 57928 6.96787 6.96787 -160.296 -6.96787 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0401463 0.0353262 134 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_053.v common 6.75 vpr 63.20 MiB 0.03 6796 -1 -1 13 0.29 -1 -1 33192 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64720 31 32 311 343 1 236 86 17 17 289 -1 unnamed_device 24.5 MiB 1.13 1323 8591 2185 5991 415 63.2 MiB 0.10 0.00 8.19403 -174.315 -8.19403 8.19403 0.68 0.000991738 0.000917017 0.0493444 0.0456427 40 3394 20 6.79088e+06 309856 706193. 2443.58 2.50 0.264023 0.230684 26254 175826 -1 3051 18 1526 4487 321834 75444 7.17168 7.17168 -165.263 -7.17168 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0407838 0.0360859 154 220 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_054.v common 6.83 vpr 63.21 MiB 0.02 6780 -1 -1 12 0.39 -1 -1 32912 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 324 356 1 230 88 17 17 289 -1 unnamed_device 24.4 MiB 1.19 1325 11983 3288 6841 1854 63.2 MiB 0.13 0.00 7.62163 -166.383 -7.62163 7.62163 0.69 0.00100926 0.000932486 0.0667698 0.0616709 42 3840 48 6.79088e+06 323328 744469. 2576.02 2.39 0.304345 0.265958 26542 182613 -1 2893 20 1663 4711 259824 60424 6.45204 6.45204 -155.666 -6.45204 0 0 949917. 3286.91 0.25 0.11 0.15 -1 -1 0.25 0.0432002 0.0380804 157 230 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_055.v common 5.75 vpr 62.32 MiB 0.04 6576 -1 -1 11 0.13 -1 -1 32628 -1 -1 13 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63820 32 32 216 248 1 162 77 17 17 289 -1 unnamed_device 23.8 MiB 1.29 956 7249 1855 4884 510 62.3 MiB 0.07 0.00 6.10061 -138.097 -6.10061 6.10061 0.67 0.000687096 0.000634781 0.0330026 0.0305427 40 2274 24 6.79088e+06 175136 706193. 2443.58 1.76 0.174308 0.151406 26254 175826 -1 2045 15 859 2130 137784 31003 5.5245 5.5245 -135.257 -5.5245 0 0 926341. 3205.33 0.24 0.06 0.15 -1 -1 0.24 0.0242246 0.02151 90 122 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_056.v common 7.42 vpr 62.64 MiB 0.02 6688 -1 -1 13 0.24 -1 -1 32908 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 245 277 1 192 81 17 17 289 -1 unnamed_device 24.1 MiB 2.43 1073 11631 3861 5991 1779 62.6 MiB 0.11 0.00 7.81611 -170.556 -7.81611 7.81611 0.67 0.000807456 0.000746955 0.0570134 0.0528031 38 2914 41 6.79088e+06 229024 678818. 2348.85 2.14 0.250006 0.218216 25966 169698 -1 2314 16 1060 2726 147569 33312 6.70962 6.70962 -158.286 -6.70962 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0299383 0.0265183 113 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_057.v common 8.12 vpr 63.53 MiB 0.05 6844 -1 -1 14 0.44 -1 -1 33220 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65056 32 32 361 393 1 262 88 17 17 289 -1 unnamed_device 24.6 MiB 1.07 1399 15493 4561 8338 2594 63.5 MiB 0.17 0.00 8.67312 -179.019 -8.67312 8.67312 0.67 0.00122783 0.00113534 0.0948327 0.0875467 40 4316 49 6.79088e+06 323328 706193. 2443.58 3.61 0.394906 0.346984 26254 175826 -1 3766 23 2481 7779 477713 106356 7.53633 7.53633 -177.512 -7.53633 0 0 926341. 3205.33 0.24 0.18 0.15 -1 -1 0.24 0.0578305 0.0512031 180 267 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_058.v common 7.59 vpr 63.25 MiB 0.02 6684 -1 -1 13 0.33 -1 -1 33008 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 318 350 1 242 85 17 17 289 -1 unnamed_device 24.5 MiB 2.18 1244 13849 3731 7364 2754 63.2 MiB 0.15 0.00 8.43396 -178.911 -8.43396 8.43396 0.70 0.00101122 0.000932031 0.0805755 0.0744671 38 3583 36 6.79088e+06 282912 678818. 2348.85 2.44 0.338698 0.297504 25966 169698 -1 2755 16 1418 3990 204815 47150 7.34737 7.34737 -164.785 -7.34737 0 0 902133. 3121.57 0.21 0.06 0.10 -1 -1 0.21 0.0238397 0.0217391 154 224 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_059.v common 5.84 vpr 62.48 MiB 0.02 6684 -1 -1 11 0.17 -1 -1 32944 -1 -1 17 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63984 30 32 223 255 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 0.88 899 5994 1459 3795 740 62.5 MiB 0.06 0.00 6.69493 -140.456 -6.69493 6.69493 0.69 0.00071775 0.000663915 0.0282758 0.0261319 30 2669 49 6.79088e+06 229024 556674. 1926.21 2.23 0.147067 0.12835 24526 138013 -1 2044 17 941 2630 130731 31260 5.90384 5.90384 -134.218 -5.90384 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0276284 0.0244141 99 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_060.v common 9.45 vpr 63.36 MiB 0.04 7132 -1 -1 15 0.52 -1 -1 33168 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 335 367 1 254 88 17 17 289 -1 unnamed_device 24.7 MiB 1.20 1572 8083 1890 5078 1115 63.4 MiB 0.10 0.00 9.61575 -193.644 -9.61575 9.61575 0.67 0.00108459 0.000994521 0.049318 0.0454628 46 3965 42 6.79088e+06 323328 828058. 2865.25 4.83 0.4187 0.362375 27406 200422 -1 3252 18 1670 5085 267620 59053 8.1454 8.1454 -177.191 -8.1454 0 0 1.01997e+06 3529.29 0.36 0.10 0.20 -1 -1 0.36 0.0408876 0.0370398 172 241 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_061.v common 6.37 vpr 62.99 MiB 0.04 6620 -1 -1 13 0.32 -1 -1 33456 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64500 32 32 301 333 1 229 86 17 17 289 -1 unnamed_device 24.5 MiB 1.36 1447 9914 2954 6315 645 63.0 MiB 0.11 0.00 8.38843 -181.197 -8.38843 8.38843 0.67 0.000967346 0.000894233 0.0547795 0.0506567 36 3871 24 6.79088e+06 296384 648988. 2245.63 1.97 0.22043 0.193937 25390 158009 -1 3136 19 1414 3889 227613 50244 7.081 7.081 -170.655 -7.081 0 0 828058. 2865.25 0.31 0.08 0.13 -1 -1 0.31 0.0293748 0.0267981 149 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_062.v common 5.91 vpr 62.44 MiB 0.02 6572 -1 -1 11 0.17 -1 -1 32892 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 32 32 238 270 1 173 80 17 17 289 -1 unnamed_device 23.8 MiB 1.92 1043 11604 3704 5973 1927 62.4 MiB 0.10 0.00 6.83225 -151.19 -6.83225 6.83225 0.68 0.000625009 0.000570113 0.0515814 0.0477124 30 2701 43 6.79088e+06 215552 556674. 1926.21 1.26 0.1694 0.149016 24526 138013 -1 2242 18 991 2518 138088 31398 6.20139 6.20139 -146.884 -6.20139 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0281755 0.0248118 97 144 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_063.v common 6.95 vpr 63.43 MiB 0.03 6836 -1 -1 12 0.30 -1 -1 33032 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64952 32 32 308 340 1 226 85 17 17 289 -1 unnamed_device 24.7 MiB 1.42 1321 11989 3057 7272 1660 63.4 MiB 0.13 0.00 7.80487 -167.158 -7.80487 7.80487 0.68 0.000984617 0.000902693 0.0667004 0.0615171 38 3581 48 6.79088e+06 282912 678818. 2348.85 2.38 0.281555 0.2461 25966 169698 -1 2895 17 1449 4416 225403 50819 6.74877 6.74877 -154.339 -6.74877 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0381363 0.033804 152 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_064.v common 8.79 vpr 62.76 MiB 0.03 6624 -1 -1 12 0.20 -1 -1 32628 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 253 285 1 190 80 17 17 289 -1 unnamed_device 24.2 MiB 1.56 1076 11776 3996 5804 1976 62.8 MiB 0.11 0.00 7.20737 -155.525 -7.20737 7.20737 0.68 0.000834183 0.000771534 0.0598882 0.0554481 40 2836 24 6.79088e+06 215552 706193. 2443.58 4.30 0.334167 0.290449 26254 175826 -1 2583 22 1216 3267 272470 87618 6.20488 6.20488 -147.676 -6.20488 0 0 926341. 3205.33 0.24 0.12 0.15 -1 -1 0.24 0.0388824 0.0341874 115 159 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_065.v common 6.01 vpr 62.39 MiB 0.04 6656 -1 -1 12 0.23 -1 -1 32952 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 30 32 227 259 1 163 81 17 17 289 -1 unnamed_device 23.7 MiB 1.57 861 12331 3461 6927 1943 62.4 MiB 0.09 0.00 7.68992 -150.206 -7.68992 7.68992 0.89 0.000737278 0.000681807 0.0375159 0.0345428 30 2423 23 6.79088e+06 255968 556674. 1926.21 1.25 0.135386 0.119042 24526 138013 -1 1934 14 767 2134 98458 23749 6.47016 6.47016 -138.444 -6.47016 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0249663 0.0221632 105 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_066.v common 6.94 vpr 63.02 MiB 0.03 6884 -1 -1 12 0.29 -1 -1 33020 -1 -1 24 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 29 32 292 324 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 1.30 1109 13105 4321 6403 2381 63.0 MiB 0.14 0.00 7.73882 -148.46 -7.73882 7.73882 0.68 0.000944772 0.000872899 0.0731948 0.0676405 36 3117 40 6.79088e+06 323328 648988. 2245.63 2.67 0.302668 0.264039 25390 158009 -1 2602 16 1232 3812 222408 50764 6.80802 6.80802 -139.264 -6.80802 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0355644 0.0314976 144 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_067.v common 20.40 vpr 63.07 MiB 0.02 6748 -1 -1 14 0.38 -1 -1 33168 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64584 32 32 316 348 1 248 86 17 17 289 -1 unnamed_device 24.5 MiB 2.18 1442 8024 2021 5399 604 63.1 MiB 0.10 0.00 8.63126 -174.325 -8.63126 8.63126 0.68 0.00101499 0.000938503 0.0494202 0.0456848 40 3693 33 6.79088e+06 296384 706193. 2443.58 15.03 0.476898 0.412453 26254 175826 -1 3241 18 1707 4366 264202 58849 7.51525 7.51525 -168.165 -7.51525 0 0 926341. 3205.33 0.26 0.11 0.15 -1 -1 0.26 0.0417163 0.0368568 155 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_068.v common 7.21 vpr 62.93 MiB 0.03 6776 -1 -1 12 0.30 -1 -1 32968 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64436 32 32 286 318 1 212 83 17 17 289 -1 unnamed_device 24.5 MiB 1.28 1323 12503 3954 6429 2120 62.9 MiB 0.13 0.00 7.68002 -164.527 -7.68002 7.68002 0.68 0.000930444 0.000860577 0.0683484 0.0631651 36 3848 46 6.79088e+06 255968 648988. 2245.63 2.91 0.291258 0.254781 25390 158009 -1 3141 17 1407 4055 259974 56031 6.75652 6.75652 -158.393 -6.75652 0 0 828058. 2865.25 0.22 0.10 0.13 -1 -1 0.22 0.0360927 0.031923 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_069.v common 6.02 vpr 62.37 MiB 0.03 6588 -1 -1 12 0.14 -1 -1 32852 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 32 32 221 253 1 164 79 17 17 289 -1 unnamed_device 23.8 MiB 1.43 883 6839 1546 5160 133 62.4 MiB 0.07 0.00 7.22527 -147.319 -7.22527 7.22527 0.73 0.000712681 0.000651339 0.0323608 0.0298658 34 2422 18 6.79088e+06 202080 618332. 2139.56 1.63 0.174252 0.151241 25102 150614 -1 2115 16 905 2418 145500 32858 6.16917 6.16917 -140.481 -6.16917 0 0 787024. 2723.27 0.31 0.07 0.15 -1 -1 0.31 0.0249001 0.022525 95 127 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_070.v common 15.17 vpr 62.80 MiB 0.02 6708 -1 -1 12 0.27 -1 -1 32532 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64304 31 32 261 293 1 187 81 17 17 289 -1 unnamed_device 24.3 MiB 1.96 1016 11806 3829 5905 2072 62.8 MiB 0.11 0.00 7.21239 -153.602 -7.21239 7.21239 0.72 0.000833002 0.000771234 0.0598462 0.055456 38 2734 37 6.79088e+06 242496 678818. 2348.85 10.23 0.408197 0.352604 25966 169698 -1 2223 16 1114 3059 163836 37171 6.38057 6.38057 -145.436 -6.38057 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0305849 0.0270388 114 170 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_071.v common 15.31 vpr 62.84 MiB 0.02 6676 -1 -1 11 0.24 -1 -1 33196 -1 -1 22 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64348 30 32 277 309 1 200 84 17 17 289 -1 unnamed_device 24.2 MiB 2.92 1192 7587 1799 4901 887 62.8 MiB 0.08 0.00 6.65573 -139.172 -6.65573 6.65573 0.74 0.000873409 0.000808209 0.0399381 0.0369759 34 3810 42 6.79088e+06 296384 618332. 2139.56 9.45 0.365482 0.315387 25102 150614 -1 2909 18 1283 4015 235390 51983 5.73164 5.73164 -139.19 -5.73164 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0354654 0.0312859 129 189 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_072.v common 6.77 vpr 62.87 MiB 0.04 6872 -1 -1 11 0.26 -1 -1 32980 -1 -1 21 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64380 28 32 251 283 1 191 81 17 17 289 -1 unnamed_device 24.3 MiB 1.22 990 12156 4943 6412 801 62.9 MiB 0.12 0.00 6.59863 -125.892 -6.59863 6.59863 0.68 0.000830224 0.000769394 0.0608679 0.0562913 38 3295 38 6.79088e+06 282912 678818. 2348.85 2.58 0.244689 0.213576 25966 169698 -1 2373 22 1425 3994 204991 48075 6.40504 6.40504 -124.541 -6.40504 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0384676 0.0336791 125 169 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_073.v common 6.71 vpr 62.37 MiB 0.02 6688 -1 -1 13 0.24 -1 -1 32900 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63868 30 32 223 255 1 173 78 17 17 289 -1 unnamed_device 23.7 MiB 2.60 1023 6220 1452 4481 287 62.4 MiB 0.06 0.00 7.37394 -146.255 -7.37394 7.37394 0.69 0.000718288 0.000663522 0.0299935 0.0277252 34 2889 27 6.79088e+06 215552 618332. 2139.56 1.36 0.144436 0.125795 25102 150614 -1 2323 14 969 2474 138265 32219 6.50592 6.50592 -143.376 -6.50592 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0244332 0.0217486 104 135 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_074.v common 6.38 vpr 62.82 MiB 0.02 6556 -1 -1 12 0.22 -1 -1 32668 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 269 301 1 197 84 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1239 4476 858 3235 383 62.8 MiB 0.06 0.00 7.13568 -159.479 -7.13568 7.13568 0.70 0.000882005 0.000813289 0.0260439 0.02417 36 3009 22 6.79088e+06 269440 648988. 2245.63 1.68 0.207227 0.179374 25390 158009 -1 2514 14 1052 2715 155420 35152 6.45548 6.45548 -153.956 -6.45548 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0296484 0.0263153 125 175 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_075.v common 6.20 vpr 62.78 MiB 0.02 6692 -1 -1 13 0.28 -1 -1 33108 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 31 32 283 315 1 193 83 17 17 289 -1 unnamed_device 24.3 MiB 1.67 1176 7283 1697 4959 627 62.8 MiB 0.08 0.00 7.98183 -162.706 -7.98183 7.98183 0.68 0.000922344 0.000853635 0.0410507 0.0379939 36 2863 21 6.79088e+06 269440 648988. 2245.63 1.73 0.21951 0.19145 25390 158009 -1 2635 18 1180 3633 201915 46976 6.93221 6.93221 -152.342 -6.93221 0 0 828058. 2865.25 0.21 0.06 0.09 -1 -1 0.21 0.0220096 0.0199474 137 192 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_076.v common 6.50 vpr 63.31 MiB 0.03 6704 -1 -1 14 0.28 -1 -1 32944 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64828 32 32 308 340 1 224 85 17 17 289 -1 unnamed_device 24.6 MiB 1.42 1408 9013 2325 5592 1096 63.3 MiB 0.10 0.00 8.8032 -181.521 -8.8032 8.8032 0.70 0.00098768 0.000912556 0.0523897 0.0484645 34 3745 23 6.79088e+06 282912 618332. 2139.56 1.94 0.218488 0.191777 25102 150614 -1 3171 17 1424 3828 228919 51393 7.85554 7.85554 -176.897 -7.85554 0 0 787024. 2723.27 0.26 0.10 0.14 -1 -1 0.26 0.0387425 0.034366 149 214 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_077.v common 8.52 vpr 62.72 MiB 0.02 6808 -1 -1 14 0.26 -1 -1 33124 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 32 32 277 309 1 209 84 17 17 289 -1 unnamed_device 24.0 MiB 2.28 1168 12528 4001 6466 2061 62.7 MiB 0.13 0.00 8.11366 -160.164 -8.11366 8.11366 0.68 0.000926129 0.000857749 0.067055 0.0618924 38 3381 49 6.79088e+06 269440 678818. 2348.85 3.13 0.313559 0.274993 25966 169698 -1 2636 20 1464 4364 221739 50683 7.34388 7.34388 -154.812 -7.34388 0 0 902133. 3121.57 0.31 0.09 0.17 -1 -1 0.31 0.0362962 0.0325406 136 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_078.v common 7.43 vpr 62.87 MiB 0.03 6736 -1 -1 13 0.42 -1 -1 33420 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 288 320 1 210 83 17 17 289 -1 unnamed_device 24.5 MiB 1.89 1266 7823 1896 4973 954 62.9 MiB 0.09 0.00 7.98865 -167.696 -7.98865 7.98865 0.67 0.000942482 0.000873088 0.0449585 0.0416243 44 3088 28 6.79088e+06 255968 787024. 2723.27 2.16 0.255228 0.222497 27118 194962 -1 2658 15 1200 3606 202773 45304 6.74882 6.74882 -155.558 -6.74882 0 0 997811. 3452.63 0.31 0.12 0.18 -1 -1 0.31 0.04623 0.0419615 139 194 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_079.v common 6.39 vpr 62.41 MiB 0.02 6476 -1 -1 13 0.18 -1 -1 32892 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63912 30 32 230 262 1 176 78 17 17 289 -1 unnamed_device 24.0 MiB 1.67 955 5888 1275 4387 226 62.4 MiB 0.06 0.00 7.30909 -151.711 -7.30909 7.30909 0.68 0.000740218 0.000685318 0.0293599 0.027176 38 2630 29 6.79088e+06 215552 678818. 2348.85 1.87 0.172108 0.149944 25966 169698 -1 2087 14 946 2263 128403 29158 6.20837 6.20837 -140.222 -6.20837 0 0 902133. 3121.57 0.33 0.06 0.15 -1 -1 0.33 0.0233627 0.0211394 106 142 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_080.v common 7.12 vpr 63.23 MiB 0.02 6692 -1 -1 13 0.53 -1 -1 32920 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64748 30 32 294 326 1 222 85 17 17 289 -1 unnamed_device 24.5 MiB 1.31 1281 12175 3045 7735 1395 63.2 MiB 0.13 0.00 8.2401 -167.978 -8.2401 8.2401 0.68 0.000968 0.000896738 0.0682313 0.0631825 34 3836 36 6.79088e+06 309856 618332. 2139.56 2.45 0.270765 0.237189 25102 150614 -1 2970 17 1456 3626 209422 47183 7.30041 7.30041 -163.806 -7.30041 0 0 787024. 2723.27 0.31 0.09 0.13 -1 -1 0.31 0.0357517 0.0323915 144 206 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_081.v common 18.11 vpr 62.82 MiB 0.03 6808 -1 -1 14 0.31 -1 -1 31676 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64332 32 32 276 308 1 206 84 17 17 289 -1 unnamed_device 24.2 MiB 1.48 1252 6306 1410 4478 418 62.8 MiB 0.08 0.00 8.1933 -176.786 -8.1933 8.1933 0.68 0.000907812 0.000838779 0.0348809 0.0322852 40 3124 19 6.79088e+06 269440 706193. 2443.58 13.58 0.374911 0.323516 26254 175826 -1 2723 19 1216 3545 202781 45006 7.68406 7.68406 -174.777 -7.68406 0 0 926341. 3205.33 0.25 0.10 0.15 -1 -1 0.25 0.0399495 0.0354535 133 182 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_082.v common 7.52 vpr 62.99 MiB 0.05 6704 -1 -1 12 0.26 -1 -1 33108 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64504 31 32 293 325 1 212 84 17 17 289 -1 unnamed_device 24.3 MiB 2.08 1214 6855 1626 4139 1090 63.0 MiB 0.08 0.00 7.87232 -159.238 -7.87232 7.87232 0.68 0.00079758 0.000733707 0.0391418 0.0362411 36 3319 45 6.79088e+06 282912 648988. 2245.63 2.20 0.258202 0.22488 25390 158009 -1 2789 15 1297 3715 209281 47292 6.75996 6.75996 -153.12 -6.75996 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.033558 0.0297814 143 202 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_083.v common 7.36 vpr 63.00 MiB 0.04 6896 -1 -1 13 0.24 -1 -1 32924 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 30 32 273 305 1 208 83 17 17 289 -1 unnamed_device 24.4 MiB 1.82 1166 13583 4513 7114 1956 63.0 MiB 0.13 0.00 8.05477 -151.514 -8.05477 8.05477 0.68 0.00085998 0.000792285 0.0693624 0.0641465 36 3544 39 6.79088e+06 282912 648988. 2245.63 2.61 0.251969 0.222208 25390 158009 -1 2921 18 1389 3842 238131 51959 7.08558 7.08558 -148.68 -7.08558 0 0 828058. 2865.25 0.22 0.10 0.11 -1 -1 0.22 0.0350305 0.0309257 126 185 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_084.v common 7.35 vpr 62.95 MiB 0.04 6696 -1 -1 14 0.40 -1 -1 33124 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 310 342 1 235 85 17 17 289 -1 unnamed_device 24.4 MiB 1.54 1356 6595 1328 4700 567 62.9 MiB 0.09 0.00 8.2637 -174.994 -8.2637 8.2637 0.68 0.00100899 0.000933471 0.0404722 0.0375856 36 4099 27 6.79088e+06 282912 648988. 2245.63 2.53 0.239534 0.209104 25390 158009 -1 3519 34 2066 6265 530025 174175 7.26127 7.26127 -169.537 -7.26127 0 0 828058. 2865.25 0.30 0.20 0.15 -1 -1 0.30 0.0585075 0.0519264 154 216 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_085.v common 7.05 vpr 62.70 MiB 0.04 6744 -1 -1 11 0.28 -1 -1 33088 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 29 32 259 291 1 194 83 17 17 289 -1 unnamed_device 24.1 MiB 1.38 1061 13403 4351 6899 2153 62.7 MiB 0.11 0.00 6.99502 -136.053 -6.99502 6.99502 0.78 0.000395666 0.00036368 0.0524236 0.0482038 30 3783 49 6.79088e+06 296384 556674. 1926.21 2.53 0.207247 0.181637 24526 138013 -1 2675 25 1322 3998 313633 101063 5.87926 5.87926 -131.148 -5.87926 0 0 706193. 2443.58 0.20 0.13 0.12 -1 -1 0.20 0.0441037 0.0386042 130 174 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_086.v common 8.56 vpr 62.50 MiB 0.02 6476 -1 -1 13 0.20 -1 -1 32940 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63996 32 32 225 257 1 182 78 17 17 289 -1 unnamed_device 23.9 MiB 3.63 995 4062 701 3272 89 62.5 MiB 0.05 0.00 6.9771 -161.617 -6.9771 6.9771 0.68 0.000736839 0.000683147 0.0208579 0.0193758 36 2970 41 6.79088e+06 188608 648988. 2245.63 2.13 0.200624 0.174205 25390 158009 -1 2431 23 1137 2713 175236 38476 6.61654 6.61654 -161.765 -6.61654 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0344127 0.0300683 99 131 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_087.v common 6.63 vpr 62.79 MiB 0.02 6728 -1 -1 14 0.23 -1 -1 32952 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64296 32 32 273 305 1 212 83 17 17 289 -1 unnamed_device 24.2 MiB 1.66 1302 5483 1117 4002 364 62.8 MiB 0.07 0.00 8.68565 -176.783 -8.68565 8.68565 0.74 0.000682145 0.000625793 0.0251837 0.0232285 34 3563 24 6.79088e+06 255968 618332. 2139.56 2.02 0.194585 0.16868 25102 150614 -1 2899 17 1256 3329 202972 44342 7.59375 7.59375 -170.903 -7.59375 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0341556 0.0302141 129 179 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_088.v common 7.47 vpr 63.45 MiB 0.02 6676 -1 -1 15 0.36 -1 -1 33364 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 322 354 1 240 86 17 17 289 -1 unnamed_device 24.7 MiB 1.81 1292 9914 2574 6184 1156 63.4 MiB 0.12 0.00 9.1052 -186.475 -9.1052 9.1052 0.71 0.00103375 0.000956099 0.0600146 0.0555536 40 3560 37 6.79088e+06 296384 706193. 2443.58 2.40 0.325954 0.286377 26254 175826 -1 2827 16 1575 4198 234206 54997 7.6911 7.6911 -170.852 -7.6911 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0386702 0.0343362 153 228 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_089.v common 6.65 vpr 62.34 MiB 0.02 6480 -1 -1 11 0.20 -1 -1 32696 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63832 32 32 218 250 1 160 78 17 17 289 -1 unnamed_device 23.8 MiB 1.98 829 6054 1305 4663 86 62.3 MiB 0.06 0.00 6.63906 -133.693 -6.63906 6.63906 0.68 0.000689827 0.000638445 0.0279375 0.025842 34 2489 33 6.79088e+06 188608 618332. 2139.56 1.94 0.190727 0.165558 25102 150614 -1 2085 17 1036 2627 155027 37156 5.70014 5.70014 -136.147 -5.70014 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0299497 0.0269281 91 124 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_090.v common 6.11 vpr 62.53 MiB 0.04 6516 -1 -1 12 0.19 -1 -1 32904 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 31 32 244 276 1 185 79 17 17 289 -1 unnamed_device 24.0 MiB 1.49 1045 8360 2472 4444 1444 62.5 MiB 0.09 0.00 7.09988 -155.106 -7.09988 7.09988 0.68 0.000793098 0.000733854 0.0433251 0.0401927 34 3042 22 6.79088e+06 215552 618332. 2139.56 1.58 0.171551 0.150536 25102 150614 -1 2649 17 1294 3393 191756 44744 6.11529 6.11529 -150.857 -6.11529 0 0 787024. 2723.27 0.29 0.09 0.15 -1 -1 0.29 0.0325591 0.0288963 111 153 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_091.v common 7.98 vpr 63.21 MiB 0.04 6792 -1 -1 12 0.35 -1 -1 33144 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 301 333 1 214 84 17 17 289 -1 unnamed_device 24.8 MiB 1.26 1231 6306 1337 4274 695 63.2 MiB 0.08 0.00 7.48442 -156.804 -7.48442 7.48442 0.68 0.000980997 0.000900351 0.0377518 0.0349457 38 3347 26 6.79088e+06 269440 678818. 2348.85 3.69 0.314098 0.272175 25966 169698 -1 2698 17 1298 3608 186428 42752 6.71301 6.71301 -154.668 -6.71301 0 0 902133. 3121.57 0.23 0.09 0.14 -1 -1 0.23 0.0380957 0.0337517 145 207 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_092.v common 8.24 vpr 62.87 MiB 0.02 6816 -1 -1 12 0.28 -1 -1 33024 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64376 32 32 278 310 1 207 83 17 17 289 -1 unnamed_device 24.3 MiB 1.54 1313 9443 2521 5826 1096 62.9 MiB 0.10 0.00 7.56551 -160.745 -7.56551 7.56551 0.68 0.000888029 0.000821601 0.0505831 0.0468054 38 3328 21 6.79088e+06 255968 678818. 2348.85 3.75 0.32036 0.278917 25966 169698 -1 2652 21 1309 3831 188088 42951 7.01061 7.01061 -156.621 -7.01061 0 0 902133. 3121.57 0.23 0.10 0.14 -1 -1 0.23 0.0404738 0.0355898 133 184 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_093.v common 8.08 vpr 63.55 MiB 0.02 6976 -1 -1 14 0.51 -1 -1 33456 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65080 32 32 333 365 1 242 87 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1284 5079 907 4069 103 63.6 MiB 0.07 0.00 8.77515 -179.37 -8.77515 8.77515 0.68 0.00107167 0.000986342 0.0338498 0.0312763 38 4098 34 6.79088e+06 309856 678818. 2348.85 3.15 0.286643 0.250014 25966 169698 -1 3224 19 1704 5050 265728 61838 7.75826 7.75826 -171.928 -7.75826 0 0 902133. 3121.57 0.23 0.12 0.14 -1 -1 0.23 0.0456677 0.0404584 170 239 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_094.v common 14.83 vpr 62.66 MiB 0.03 6700 -1 -1 11 0.23 -1 -1 32784 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64160 30 32 261 293 1 195 83 17 17 289 -1 unnamed_device 24.1 MiB 1.77 1159 11963 3648 6429 1886 62.7 MiB 0.12 0.00 7.06667 -142.983 -7.06667 7.06667 0.68 0.000857735 0.00079327 0.0605334 0.0560097 34 3393 39 6.79088e+06 282912 618332. 2139.56 10.05 0.374288 0.32427 25102 150614 -1 3013 20 1312 3758 238865 52395 6.29442 6.29442 -140.856 -6.29442 0 0 787024. 2723.27 0.30 0.09 0.15 -1 -1 0.30 0.0344544 0.0308722 128 173 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_095.v common 7.77 vpr 62.38 MiB 0.03 6604 -1 -1 11 0.22 -1 -1 32624 -1 -1 19 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63880 27 32 217 249 1 154 78 17 17 289 -1 unnamed_device 23.8 MiB 1.30 770 7714 1883 5409 422 62.4 MiB 0.07 0.00 6.64923 -122.654 -6.64923 6.64923 0.68 0.000703789 0.000651354 0.0357624 0.0331032 40 1947 21 6.79088e+06 255968 706193. 2443.58 3.54 0.223913 0.193738 26254 175826 -1 1787 16 799 2170 119457 28165 5.81779 5.81779 -119.073 -5.81779 0 0 926341. 3205.33 0.35 0.06 0.17 -1 -1 0.35 0.0260073 0.0235994 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_096.v common 9.06 vpr 63.80 MiB 0.03 6884 -1 -1 13 0.42 -1 -1 33024 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65336 32 32 373 405 1 276 93 17 17 289 -1 unnamed_device 25.1 MiB 1.59 1654 14793 4090 8037 2666 63.8 MiB 0.17 0.00 8.15219 -167.23 -8.15219 8.15219 0.68 0.0011908 0.00108998 0.0891508 0.0820939 40 4464 26 6.79088e+06 390688 706193. 2443.58 4.07 0.350541 0.307122 26254 175826 -1 4107 24 2106 6220 403323 87138 7.51176 7.51176 -164.723 -7.51176 0 0 926341. 3205.33 0.24 0.16 0.15 -1 -1 0.24 0.0600735 0.0529379 191 279 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_097.v common 6.20 vpr 62.72 MiB 0.05 6872 -1 -1 14 0.27 -1 -1 33496 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64228 31 32 269 301 1 201 83 17 17 289 -1 unnamed_device 24.1 MiB 1.22 1216 6923 1704 4584 635 62.7 MiB 0.08 0.00 8.60637 -173.25 -8.60637 8.60637 0.68 0.000874279 0.000809758 0.0374363 0.0346866 30 3569 30 6.79088e+06 269440 556674. 1926.21 1.99 0.16554 0.145173 24526 138013 -1 2784 18 1329 3487 180050 42102 7.39006 7.39006 -168.706 -7.39006 0 0 706193. 2443.58 0.26 0.08 0.13 -1 -1 0.26 0.032325 0.0290663 128 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_098.v common 6.60 vpr 62.63 MiB 0.03 6596 -1 -1 12 0.16 -1 -1 32548 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 228 260 1 188 83 17 17 289 -1 unnamed_device 24.2 MiB 2.19 1144 8723 2365 5890 468 62.6 MiB 0.09 0.00 7.40683 -169.316 -7.40683 7.40683 0.69 0.000748189 0.000691658 0.0390353 0.0360354 42 2896 17 6.79088e+06 255968 744469. 2576.02 1.59 0.148749 0.130558 26542 182613 -1 2514 14 1061 2598 157688 34827 6.54507 6.54507 -161.033 -6.54507 0 0 949917. 3286.91 0.25 0.07 0.15 -1 -1 0.25 0.025111 0.0223328 109 134 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_099.v common 10.17 vpr 62.99 MiB 0.02 6720 -1 -1 13 0.35 -1 -1 32944 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64504 32 32 265 297 1 195 82 17 17 289 -1 unnamed_device 24.2 MiB 3.14 1115 5066 1001 3852 213 63.0 MiB 0.06 0.00 8.33866 -169.136 -8.33866 8.33866 0.69 0.000862294 0.000796199 0.0283652 0.0263041 40 2863 18 6.79088e+06 242496 706193. 2443.58 4.03 0.320604 0.276713 26254 175826 -1 2713 22 1229 3481 211731 47214 7.30047 7.30047 -159.157 -7.30047 0 0 926341. 3205.33 0.25 0.10 0.15 -1 -1 0.25 0.0400891 0.0352155 125 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_100.v common 8.76 vpr 63.09 MiB 0.02 6852 -1 -1 13 0.39 -1 -1 33636 -1 -1 25 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 31 32 325 357 1 249 88 17 17 289 -1 unnamed_device 24.5 MiB 2.07 1490 8083 1681 5214 1188 63.1 MiB 0.10 0.00 7.4732 -162.473 -7.4732 7.4732 0.72 0.00103913 0.000961469 0.0477524 0.0442245 38 4307 48 6.79088e+06 336800 678818. 2348.85 3.40 0.316321 0.27555 25966 169698 -1 3280 31 2001 6065 538299 199400 6.59197 6.59197 -155.291 -6.59197 0 0 902133. 3121.57 0.23 0.23 0.14 -1 -1 0.23 0.0687743 0.060596 159 234 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_101.v common 8.30 vpr 62.77 MiB 0.05 6888 -1 -1 11 0.23 -1 -1 32964 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64272 30 32 287 319 1 197 85 17 17 289 -1 unnamed_device 24.1 MiB 1.43 1209 11059 2877 6113 2069 62.8 MiB 0.12 0.00 7.11391 -144.84 -7.11391 7.11391 0.68 0.000920699 0.000850462 0.0592772 0.0548967 38 3464 27 6.79088e+06 309856 678818. 2348.85 3.38 0.265599 0.231767 25966 169698 -1 2802 19 1231 4028 222812 48680 6.29442 6.29442 -138.469 -6.29442 0 0 902133. 3121.57 0.32 0.11 0.17 -1 -1 0.32 0.0443496 0.0401583 140 199 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_102.v common 6.51 vpr 63.02 MiB 0.04 6716 -1 -1 15 0.32 -1 -1 33040 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 297 329 1 220 83 17 17 289 -1 unnamed_device 24.5 MiB 1.39 1211 12503 3460 7559 1484 63.0 MiB 0.13 0.00 9.11536 -184.558 -9.11536 9.11536 0.69 0.000962538 0.000889668 0.0694754 0.0641627 40 2992 23 6.79088e+06 255968 706193. 2443.58 1.93 0.276053 0.24221 26254 175826 -1 2721 18 1317 3613 208266 48014 7.59386 7.59386 -166.238 -7.59386 0 0 926341. 3205.33 0.24 0.10 0.15 -1 -1 0.24 0.0386429 0.0341974 142 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_103.v common 8.85 vpr 63.45 MiB 0.03 6788 -1 -1 13 0.31 -1 -1 33216 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 311 343 1 230 87 17 17 289 -1 unnamed_device 24.7 MiB 2.55 1357 5463 1001 4200 262 63.4 MiB 0.07 0.00 8.32676 -176.58 -8.32676 8.32676 0.68 0.00101639 0.000931662 0.03307 0.030485 34 4176 48 6.79088e+06 309856 618332. 2139.56 3.14 0.258488 0.225021 25102 150614 -1 3198 15 1399 4157 244302 54826 7.3039 7.3039 -170.216 -7.3039 0 0 787024. 2723.27 0.31 0.10 0.15 -1 -1 0.31 0.0393562 0.035976 154 217 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_104.v common 6.56 vpr 62.53 MiB 0.02 6504 -1 -1 12 0.25 -1 -1 32604 -1 -1 18 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 29 32 236 268 1 182 79 17 17 289 -1 unnamed_device 24.1 MiB 2.03 941 10557 3755 4946 1856 62.5 MiB 0.10 0.00 7.68137 -155.362 -7.68137 7.68137 0.68 0.000751638 0.000696104 0.0498437 0.0461269 34 2908 40 6.79088e+06 242496 618332. 2139.56 1.62 0.195799 0.171463 25102 150614 -1 2089 17 1067 2442 130909 32009 6.42326 6.42326 -144.248 -6.42326 0 0 787024. 2723.27 0.30 0.05 0.14 -1 -1 0.30 0.0224629 0.0202004 109 151 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_105.v common 16.59 vpr 62.31 MiB 0.04 6664 -1 -1 11 0.16 -1 -1 32572 -1 -1 14 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63804 32 32 231 263 1 184 78 17 17 289 -1 unnamed_device 23.6 MiB 1.41 1148 5224 1190 3763 271 62.3 MiB 0.06 0.00 6.84847 -147.97 -6.84847 6.84847 0.67 0.000733473 0.000678706 0.0257422 0.0238369 40 2791 19 6.79088e+06 188608 706193. 2443.58 12.24 0.289369 0.249713 26254 175826 -1 2569 18 1165 2970 177376 39043 6.07953 6.07953 -145.628 -6.07953 0 0 926341. 3205.33 0.35 0.08 0.17 -1 -1 0.35 0.0290376 0.0261271 98 137 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_106.v common 7.05 vpr 62.95 MiB 0.04 6768 -1 -1 13 0.30 -1 -1 33028 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64464 31 32 294 326 1 214 85 17 17 289 -1 unnamed_device 24.5 MiB 1.05 1115 8455 2194 4906 1355 63.0 MiB 0.09 0.00 7.89179 -153.02 -7.89179 7.89179 0.68 0.000766513 0.000701618 0.0468082 0.043271 36 3655 42 6.79088e+06 296384 648988. 2245.63 2.93 0.218996 0.192424 25390 158009 -1 2920 19 1596 4604 294346 65601 7.04622 7.04622 -151.546 -7.04622 0 0 828058. 2865.25 0.30 0.11 0.15 -1 -1 0.30 0.0367836 0.0330301 144 203 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_107.v common 5.94 vpr 62.35 MiB 0.04 6700 -1 -1 10 0.17 -1 -1 33048 -1 -1 17 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63848 29 32 221 253 1 164 78 17 17 289 -1 unnamed_device 23.7 MiB 1.54 851 10204 2504 7246 454 62.4 MiB 0.09 0.00 6.11518 -125.484 -6.11518 6.11518 0.69 0.000704338 0.000651169 0.0462424 0.0428001 36 2714 23 6.79088e+06 229024 648988. 2245.63 1.62 0.16719 0.146481 25390 158009 -1 2032 21 1049 2812 162613 39243 5.57478 5.57478 -126.98 -5.57478 0 0 828058. 2865.25 0.20 0.05 0.09 -1 -1 0.20 0.0184859 0.0166067 98 136 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_108.v common 9.94 vpr 62.29 MiB 0.02 6500 -1 -1 14 0.24 -1 -1 32824 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63784 32 32 240 272 1 188 82 17 17 289 -1 unnamed_device 23.8 MiB 3.33 1049 6312 1330 4556 426 62.3 MiB 0.07 0.00 7.76918 -161.081 -7.76918 7.76918 0.73 0.000765786 0.000707971 0.0304995 0.0282671 44 2858 27 6.79088e+06 242496 787024. 2723.27 3.59 0.267845 0.231893 27118 194962 -1 2366 15 995 2637 158097 35239 6.62358 6.62358 -150.916 -6.62358 0 0 997811. 3452.63 0.26 0.07 0.16 -1 -1 0.26 0.0271704 0.0241434 110 146 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_109.v common 6.80 vpr 62.72 MiB 0.02 6692 -1 -1 12 0.34 -1 -1 33116 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 31 32 292 324 1 210 85 17 17 289 -1 unnamed_device 24.3 MiB 1.06 1262 12919 3620 7000 2299 62.7 MiB 0.13 0.00 7.60154 -161.988 -7.60154 7.60154 0.67 0.000940121 0.000870391 0.0694882 0.0642162 36 3513 28 6.79088e+06 296384 648988. 2245.63 2.71 0.286996 0.251677 25390 158009 -1 2810 17 1271 3901 229532 50454 6.37631 6.37631 -151.22 -6.37631 0 0 828058. 2865.25 0.22 0.10 0.13 -1 -1 0.22 0.0369627 0.0327264 143 201 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_110.v common 7.16 vpr 62.39 MiB 0.02 6620 -1 -1 12 0.20 -1 -1 32416 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63888 31 32 229 261 1 179 79 17 17 289 -1 unnamed_device 23.8 MiB 1.94 992 10726 2823 7181 722 62.4 MiB 0.10 0.00 6.58069 -144.507 -6.58069 6.58069 0.67 0.000719581 0.000665233 0.0489817 0.0453599 30 2929 43 6.79088e+06 215552 556674. 1926.21 2.47 0.167838 0.147489 24526 138013 -1 2473 14 1119 2569 158771 34817 5.98999 5.98999 -142.769 -5.98999 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0243792 0.0216694 101 138 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_111.v common 6.94 vpr 63.02 MiB 0.02 6712 -1 -1 12 0.19 -1 -1 32976 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64528 32 32 282 314 1 202 82 17 17 289 -1 unnamed_device 24.2 MiB 1.63 1163 7736 1889 5402 445 63.0 MiB 0.09 0.00 7.51176 -154.757 -7.51176 7.51176 0.74 0.000879906 0.000813973 0.0421486 0.038984 38 3229 24 6.79088e+06 242496 678818. 2348.85 2.29 0.23566 0.204698 25966 169698 -1 2515 17 1225 3565 177970 39879 6.38406 6.38406 -145.925 -6.38406 0 0 902133. 3121.57 0.32 0.08 0.15 -1 -1 0.32 0.0314721 0.0283007 123 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_112.v common 6.98 vpr 62.85 MiB 0.04 6748 -1 -1 13 0.35 -1 -1 33236 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 31 32 269 301 1 204 82 17 17 289 -1 unnamed_device 24.2 MiB 1.57 1250 11296 2557 6849 1890 62.8 MiB 0.12 0.00 7.49717 -162.624 -7.49717 7.49717 0.76 0.000846367 0.000778637 0.060264 0.0557385 38 3291 49 6.79088e+06 255968 678818. 2348.85 2.25 0.247979 0.217322 25966 169698 -1 2774 24 1359 3798 303946 108427 6.58427 6.58427 -149.958 -6.58427 0 0 902133. 3121.57 0.23 0.13 0.14 -1 -1 0.23 0.0444818 0.0389596 134 178 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_113.v common 16.79 vpr 62.56 MiB 0.02 6516 -1 -1 11 0.20 -1 -1 32660 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 32 32 237 269 1 188 79 17 17 289 -1 unnamed_device 24.1 MiB 1.20 937 7515 1724 5667 124 62.6 MiB 0.08 0.00 7.16165 -142.405 -7.16165 7.16165 0.68 0.000757994 0.000701035 0.0372465 0.0345153 38 3242 38 6.79088e+06 202080 678818. 2348.85 12.73 0.336674 0.290357 25966 169698 -1 2370 30 1244 3179 280584 99215 6.16912 6.16912 -138.983 -6.16912 0 0 902133. 3121.57 0.23 0.13 0.14 -1 -1 0.23 0.0439863 0.0384111 105 143 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_114.v common 6.87 vpr 62.64 MiB 0.02 6684 -1 -1 13 0.23 -1 -1 32680 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 32 32 259 291 1 191 81 17 17 289 -1 unnamed_device 24.1 MiB 1.88 1005 13381 4639 6392 2350 62.6 MiB 0.13 0.00 7.38301 -157.601 -7.38301 7.38301 0.68 0.000845592 0.000783256 0.0681207 0.0631104 36 3298 32 6.79088e+06 229024 648988. 2245.63 2.14 0.260692 0.228129 25390 158009 -1 2446 16 1228 3278 203961 48369 6.33367 6.33367 -146.63 -6.33367 0 0 828058. 2865.25 0.22 0.09 0.13 -1 -1 0.22 0.0310479 0.0274444 116 165 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_115.v common 20.45 vpr 62.79 MiB 0.04 6728 -1 -1 13 0.25 -1 -1 33068 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64292 32 32 277 309 1 213 82 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1327 8092 2018 5457 617 62.8 MiB 0.09 0.00 7.14878 -159.209 -7.14878 7.14878 0.69 0.000895859 0.000829446 0.0450002 0.0416978 36 3783 43 6.79088e+06 242496 648988. 2245.63 15.90 0.456088 0.39474 25390 158009 -1 3172 23 2047 5912 408304 88370 6.61998 6.61998 -156.321 -6.61998 0 0 828058. 2865.25 0.22 0.14 0.13 -1 -1 0.22 0.0435508 0.0381285 130 183 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_116.v common 8.08 vpr 62.61 MiB 0.03 6812 -1 -1 11 0.24 -1 -1 33032 -1 -1 22 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64112 29 32 245 277 1 176 83 17 17 289 -1 unnamed_device 24.1 MiB 1.55 925 13403 4743 6446 2214 62.6 MiB 0.12 0.00 6.69836 -125.024 -6.69836 6.69836 0.68 0.000791729 0.000731972 0.0592086 0.0545942 38 2475 29 6.79088e+06 296384 678818. 2348.85 3.60 0.272786 0.237206 25966 169698 -1 1981 18 1019 2929 140777 33140 5.69593 5.69593 -119.908 -5.69593 0 0 902133. 3121.57 0.23 0.08 0.18 -1 -1 0.23 0.0328447 0.0290456 115 160 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_117.v common 6.92 vpr 63.32 MiB 0.03 6920 -1 -1 14 0.31 -1 -1 33684 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 316 348 1 232 86 17 17 289 -1 unnamed_device 24.6 MiB 1.35 1410 8213 2036 5597 580 63.3 MiB 0.10 0.00 9.10514 -189.548 -9.10514 9.10514 0.68 0.00102393 0.000945782 0.0484507 0.0447547 44 3234 18 6.79088e+06 296384 787024. 2723.27 2.33 0.257205 0.225222 27118 194962 -1 2817 16 1348 3858 204778 46419 7.69105 7.69105 -173.51 -7.69105 0 0 997811. 3452.63 0.39 0.09 0.19 -1 -1 0.39 0.040068 0.036543 160 222 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_118.v common 9.16 vpr 62.65 MiB 0.02 6544 -1 -1 12 0.16 -1 -1 32768 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64156 31 32 230 262 1 188 81 17 17 289 -1 unnamed_device 24.2 MiB 2.64 1093 11281 2937 6811 1533 62.7 MiB 0.10 0.00 6.61653 -142.296 -6.61653 6.61653 0.68 0.000675345 0.000618596 0.0503993 0.0466162 38 2692 18 6.79088e+06 242496 678818. 2348.85 3.73 0.292141 0.253751 25966 169698 -1 2363 14 1024 2534 149076 32586 5.57833 5.57833 -133.159 -5.57833 0 0 902133. 3121.57 0.23 0.07 0.13 -1 -1 0.23 0.0251835 0.0223995 108 139 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_119.v common 6.67 vpr 62.95 MiB 0.04 6788 -1 -1 13 0.28 -1 -1 33148 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 32 32 282 314 1 208 83 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1323 14123 4442 7710 1971 62.9 MiB 0.14 0.00 7.64293 -157.325 -7.64293 7.64293 0.68 0.000912533 0.000844017 0.0749759 0.0694183 42 3319 21 6.79088e+06 255968 744469. 2576.02 1.83 0.232604 0.205163 26542 182613 -1 2843 17 1457 4203 239715 53357 6.49817 6.49817 -149.29 -6.49817 0 0 949917. 3286.91 0.25 0.10 0.15 -1 -1 0.25 0.0355696 0.031477 132 188 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_120.v common 6.72 vpr 62.55 MiB 0.02 6644 -1 -1 13 0.18 -1 -1 32960 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 32 32 235 267 1 182 80 17 17 289 -1 unnamed_device 23.9 MiB 2.46 1020 12120 3554 6383 2183 62.6 MiB 0.11 0.00 7.35402 -164.423 -7.35402 7.35402 0.71 0.000746715 0.000690499 0.0560991 0.0519489 34 2977 25 6.79088e+06 215552 618332. 2139.56 1.31 0.139567 0.124692 25102 150614 -1 2485 17 1086 2576 153521 35886 6.53393 6.53393 -160.331 -6.53393 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0286532 0.0253697 104 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_121.v common 8.82 vpr 63.10 MiB 0.04 6720 -1 -1 12 0.22 -1 -1 32888 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 265 297 1 189 83 17 17 289 -1 unnamed_device 24.3 MiB 1.80 1030 11783 4465 6036 1282 63.1 MiB 0.12 0.00 7.13827 -153.033 -7.13827 7.13827 0.68 0.000865726 0.000800895 0.0604866 0.0559593 46 2819 30 6.79088e+06 255968 828058. 2865.25 4.08 0.32045 0.278042 27406 200422 -1 2114 17 1085 3425 167059 39927 6.16912 6.16912 -140.967 -6.16912 0 0 1.01997e+06 3529.29 0.26 0.08 0.16 -1 -1 0.26 0.0331347 0.0292711 121 171 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_122.v common 25.11 vpr 63.70 MiB 0.03 6924 -1 -1 15 0.54 -1 -1 33064 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 344 376 1 260 88 17 17 289 -1 unnamed_device 25.1 MiB 1.84 1457 12373 3076 6798 2499 63.7 MiB 0.14 0.00 9.48621 -188.88 -9.48621 9.48621 0.68 0.00111902 0.00103355 0.0754697 0.0696997 42 3896 29 6.79088e+06 323328 744469. 2576.02 19.79 0.56531 0.490107 26542 182613 -1 3389 18 1915 5852 361462 79452 8.26726 8.26726 -177.097 -8.26726 0 0 949917. 3286.91 0.25 0.14 0.19 -1 -1 0.25 0.0491959 0.0437804 176 250 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_123.v common 5.55 vpr 61.97 MiB 0.02 6424 -1 -1 10 0.12 -1 -1 32260 -1 -1 11 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63456 30 32 173 205 1 129 73 17 17 289 -1 unnamed_device 23.4 MiB 1.79 678 9345 2965 4615 1765 62.0 MiB 0.07 0.00 5.03415 -115.492 -5.03415 5.03415 0.69 0.000554815 0.000514944 0.0361368 0.0335527 34 1740 15 6.79088e+06 148192 618332. 2139.56 1.17 0.111237 0.0975945 25102 150614 -1 1541 14 645 1488 85327 20530 4.47925 4.47925 -111.52 -4.47925 0 0 787024. 2723.27 0.21 0.05 0.13 -1 -1 0.21 0.0181337 0.0160049 63 85 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_124.v common 7.91 vpr 62.51 MiB 0.02 6644 -1 -1 13 0.20 -1 -1 32940 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64008 30 32 229 261 1 179 81 17 17 289 -1 unnamed_device 24.1 MiB 1.59 930 9881 2975 5177 1729 62.5 MiB 0.09 0.00 7.15369 -149.901 -7.15369 7.15369 0.68 0.000750315 0.000695129 0.045234 0.0418958 38 2651 26 6.79088e+06 255968 678818. 2348.85 3.51 0.287012 0.248329 25966 169698 -1 2018 14 992 2401 124316 29970 6.58089 6.58089 -148.046 -6.58089 0 0 902133. 3121.57 0.23 0.06 0.15 -1 -1 0.23 0.0249921 0.0222195 105 141 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_125.v common 8.46 vpr 62.78 MiB 0.04 6572 -1 -1 12 0.19 -1 -1 32740 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 32 32 261 293 1 204 81 17 17 289 -1 unnamed_device 24.3 MiB 1.76 1026 12331 4984 6774 573 62.8 MiB 0.12 0.00 7.35057 -161.147 -7.35057 7.35057 0.68 0.000819311 0.000756643 0.0617238 0.057104 40 2931 23 6.79088e+06 229024 706193. 2443.58 3.76 0.308102 0.267535 26254 175826 -1 2497 19 1366 3376 200884 46674 6.66688 6.66688 -156.814 -6.66688 0 0 926341. 3205.33 0.24 0.09 0.15 -1 -1 0.24 0.0345812 0.0304752 115 167 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_126.v common 4.76 vpr 62.27 MiB 0.04 6588 -1 -1 9 0.13 -1 -1 32608 -1 -1 20 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63760 25 32 184 216 1 138 77 17 17 289 -1 unnamed_device 23.8 MiB 1.00 772 8553 2593 4994 966 62.3 MiB 0.07 0.00 5.4216 -101.246 -5.4216 5.4216 0.76 0.000606625 0.000562669 0.0344045 0.0319376 32 1876 28 6.79088e+06 269440 586450. 2029.24 1.02 0.120277 0.105663 24814 144142 -1 1737 17 727 1962 108269 25063 4.91784 4.91784 -100.745 -4.91784 0 0 744469. 2576.02 0.21 0.06 0.13 -1 -1 0.21 0.0231628 0.0203824 86 111 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_127.v common 10.33 vpr 62.98 MiB 0.04 6700 -1 -1 12 0.34 -1 -1 32948 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 32 32 302 334 1 236 87 17 17 289 -1 unnamed_device 24.5 MiB 2.51 1475 10263 2607 5842 1814 63.0 MiB 0.11 0.00 7.81518 -176.908 -7.81518 7.81518 0.68 0.000950248 0.000878784 0.0548364 0.0507207 40 3526 29 6.79088e+06 309856 706193. 2443.58 4.63 0.369077 0.320413 26254 175826 -1 3197 34 1531 4198 540828 241713 6.63128 6.63128 -164.876 -6.63128 0 0 926341. 3205.33 0.24 0.22 0.15 -1 -1 0.24 0.0629758 0.0549403 146 208 -1 -1 -1 -1 +fixed_k6_frac_N8_22nm.xml mult_128.v common 8.58 vpr 63.21 MiB 0.04 6832 -1 -1 14 0.41 -1 -1 33100 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 31 32 295 327 1 217 85 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1195 12733 3723 6434 2576 63.2 MiB 0.13 0.00 9.14434 -182.838 -9.14434 9.14434 0.75 0.000954802 0.000882061 0.0696694 0.064298 40 3125 28 6.79088e+06 296384 706193. 2443.58 4.04 0.362081 0.315315 26254 175826 -1 2799 16 1284 3748 210937 48597 7.60495 7.60495 -163.925 -7.60495 0 0 926341. 3205.33 0.33 0.09 0.17 -1 -1 0.33 0.0344226 0.0311514 151 204 -1 -1 -1 -1 +fixed_k6_frac_ripple_N8_22nm.xml mult_001.v common 5.18 vpr 63.59 MiB 0.02 7084 -1 -1 1 0.04 -1 -1 31096 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 438 350 1 202 101 17 17 289 -1 unnamed_device 24.9 MiB 1.15 895 12321 3076 8292 953 63.6 MiB 0.13 0.00 4.3249 -144.349 -4.3249 4.3249 0.69 0.000807787 0.000750197 0.0451008 0.0418253 30 2780 27 6.87369e+06 517032 556674. 1926.21 1.29 0.15337 0.13507 25186 138497 -1 1954 20 1593 2579 127329 33406 3.6718 3.6718 -141.768 -3.6718 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0308369 0.0268817 155 96 32 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_002.v common 6.80 vpr 63.59 MiB 0.03 7184 -1 -1 1 0.04 -1 -1 30796 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65120 30 32 409 330 1 192 85 17 17 289 -1 unnamed_device 24.8 MiB 3.13 889 13477 4603 6656 2218 63.6 MiB 0.14 0.00 4.22285 -135.326 -4.22285 4.22285 0.68 0.000752974 0.000698818 0.0575802 0.0534503 32 2696 22 6.87369e+06 321398 586450. 2029.24 0.99 0.153284 0.135641 25474 144626 -1 1977 21 1610 2721 173144 42111 3.8814 3.8814 -139.498 -3.8814 0 0 744469. 2576.02 0.20 0.08 0.12 -1 -1 0.20 0.0305755 0.0265543 141 91 30 30 89 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_003.v common 5.48 vpr 63.37 MiB 0.02 7164 -1 -1 1 0.04 -1 -1 30660 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 32 32 387 309 1 191 100 17 17 289 -1 unnamed_device 24.6 MiB 1.69 953 18428 5979 9684 2765 63.4 MiB 0.16 0.00 3.74716 -129.333 -3.74716 3.74716 0.68 0.000746873 0.00069214 0.0621554 0.0575247 30 2530 23 6.87369e+06 503058 556674. 1926.21 1.00 0.155121 0.137414 25186 138497 -1 1991 22 1373 2248 151771 33644 3.4165 3.4165 -128.179 -3.4165 0 0 706193. 2443.58 0.28 0.07 0.13 -1 -1 0.28 0.0263286 0.0231134 145 65 54 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_004.v common 5.48 vpr 62.91 MiB 0.02 7124 -1 -1 1 0.04 -1 -1 30716 -1 -1 23 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64420 29 32 343 267 1 184 84 17 17 289 -1 unnamed_device 24.4 MiB 1.18 922 15090 5352 7218 2520 62.9 MiB 0.15 0.00 4.1666 -130.205 -4.1666 4.1666 0.69 0.000684733 0.000635698 0.0586872 0.0545079 34 2367 24 6.87369e+06 321398 618332. 2139.56 1.45 0.197581 0.173166 25762 151098 -1 1944 21 1570 2772 190856 46366 4.0243 4.0243 -133.212 -4.0243 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.019163 0.0170144 136 34 87 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_005.v common 6.65 vpr 63.25 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30444 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 376 288 1 202 85 17 17 289 -1 unnamed_device 24.4 MiB 2.09 1047 14965 5078 8038 1849 63.2 MiB 0.16 0.00 4.2175 -149.421 -4.2175 4.2175 0.68 0.000820035 0.000754229 0.0561197 0.0516961 34 2756 23 6.87369e+06 293451 618332. 2139.56 1.77 0.201461 0.177202 25762 151098 -1 2318 23 2082 3874 286282 65458 3.7001 3.7001 -149.79 -3.7001 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0328503 0.0286172 147 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_006.v common 4.77 vpr 63.47 MiB 0.03 7044 -1 -1 1 0.04 -1 -1 30540 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64996 32 32 402 316 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 1.08 1041 20588 6432 11323 2833 63.5 MiB 0.18 0.00 3.55395 -124.862 -3.55395 3.55395 0.70 0.000772362 0.000714467 0.0681086 0.0630412 32 2559 23 6.87369e+06 544980 586450. 2029.24 0.93 0.162195 0.143638 25474 144626 -1 2068 21 1443 2333 154701 35442 2.83066 2.83066 -117.828 -2.83066 0 0 744469. 2576.02 0.20 0.08 0.12 -1 -1 0.20 0.0307462 0.0267722 154 64 63 32 63 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_007.v common 5.51 vpr 62.47 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30696 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63968 27 32 269 226 1 146 79 17 17 289 -1 unnamed_device 23.9 MiB 1.96 640 10388 2730 6621 1037 62.5 MiB 0.09 0.00 3.6994 -105.15 -3.6994 3.6994 0.76 0.000426321 0.000391374 0.0290203 0.0267055 28 1877 30 6.87369e+06 279477 531479. 1839.03 0.96 0.104902 0.091275 24610 126494 -1 1493 22 1261 2080 137796 32049 2.84601 2.84601 -103.278 -2.84601 0 0 648988. 2245.63 0.18 0.07 0.11 -1 -1 0.18 0.0239891 0.0207577 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_008.v common 4.48 vpr 63.26 MiB 0.04 7020 -1 -1 1 0.03 -1 -1 30320 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64780 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.5 MiB 0.84 969 14273 4212 7662 2399 63.3 MiB 0.12 0.00 3.61131 -114.549 -3.61131 3.61131 0.70 0.000663111 0.000615638 0.0439259 0.0407574 30 2496 28 6.87369e+06 489084 556674. 1926.21 0.97 0.130911 0.115231 25186 138497 -1 1952 21 1179 2018 122816 28697 2.78496 2.78496 -110.852 -2.78496 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0269261 0.0234405 141 4 115 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_009.v common 6.07 vpr 63.14 MiB 0.02 6932 -1 -1 1 0.03 -1 -1 30356 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 31 32 338 292 1 153 79 17 17 289 -1 unnamed_device 24.3 MiB 2.74 735 9712 2823 5738 1151 63.1 MiB 0.09 0.00 3.24697 -108.666 -3.24697 3.24697 0.72 0.000656632 0.000609475 0.0398665 0.0370109 28 1894 17 6.87369e+06 223581 531479. 1839.03 0.78 0.113221 0.0996731 24610 126494 -1 1634 24 956 1514 114881 27039 2.91631 2.91631 -112.281 -2.91631 0 0 648988. 2245.63 0.18 0.04 0.12 -1 -1 0.18 0.0157985 0.0138569 103 85 0 0 84 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_010.v common 8.87 vpr 62.98 MiB 0.05 6916 -1 -1 1 0.03 -1 -1 30540 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64488 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 4.60 706 12808 2978 8428 1402 63.0 MiB 0.11 0.00 3.8076 -131.302 -3.8076 3.8076 0.69 0.000651293 0.000603556 0.0501359 0.0465841 34 2344 26 6.87369e+06 223581 618332. 2139.56 1.53 0.17222 0.15115 25762 151098 -1 1623 18 1183 1901 120853 30279 3.01521 3.01521 -125.738 -3.01521 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.0212477 0.0188361 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_011.v common 7.25 vpr 62.88 MiB 0.02 6972 -1 -1 1 0.04 -1 -1 30372 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64392 30 32 325 273 1 160 80 17 17 289 -1 unnamed_device 24.2 MiB 3.74 860 11776 3165 7564 1047 62.9 MiB 0.11 0.00 3.7375 -122.128 -3.7375 3.7375 0.68 0.000646736 0.000599677 0.0460895 0.0427974 32 1939 21 6.87369e+06 251529 586450. 2029.24 0.88 0.123812 0.109339 25474 144626 -1 1706 21 1232 1816 112771 28185 3.02731 3.02731 -121.298 -3.02731 0 0 744469. 2576.02 0.20 0.07 0.12 -1 -1 0.20 0.0264868 0.023 109 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_012.v common 5.96 vpr 63.17 MiB 0.05 6876 -1 -1 1 0.04 -1 -1 30676 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64688 32 32 331 280 1 161 96 17 17 289 -1 unnamed_device 24.3 MiB 1.74 881 15207 4108 9975 1124 63.2 MiB 0.13 0.00 3.45001 -118.108 -3.45001 3.45001 0.69 0.000664726 0.000611106 0.0477227 0.0441708 34 2087 21 6.87369e+06 447163 618332. 2139.56 1.36 0.174921 0.152355 25762 151098 -1 1795 21 1205 2123 162234 36077 2.74266 2.74266 -111.58 -2.74266 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0230025 0.0201647 116 65 25 25 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_013.v common 8.55 vpr 63.45 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 30584 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 386 305 1 195 99 17 17 289 -1 unnamed_device 24.9 MiB 4.14 958 19935 5624 11872 2439 63.5 MiB 0.18 0.00 3.64005 -125.972 -3.64005 3.64005 0.71 0.000747202 0.000692015 0.0672508 0.0621892 34 2469 23 6.87369e+06 489084 618332. 2139.56 1.49 0.218166 0.190721 25762 151098 -1 2026 21 1604 2802 172134 42201 2.97896 2.97896 -121.418 -2.97896 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0300696 0.0261237 147 58 64 32 57 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_014.v common 6.08 vpr 63.56 MiB 0.03 7020 -1 -1 1 0.04 -1 -1 30808 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65084 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.7 MiB 2.19 1059 21016 6637 11817 2562 63.6 MiB 0.21 0.00 4.34584 -150.842 -4.34584 4.34584 0.69 0.000772796 0.000716747 0.0697805 0.0642112 30 2683 24 6.87369e+06 517032 556674. 1926.21 1.12 0.173211 0.153679 25186 138497 -1 2163 23 1814 2997 177827 41708 3.8954 3.8954 -147.648 -3.8954 0 0 706193. 2443.58 0.20 0.09 0.12 -1 -1 0.20 0.0337612 0.0293901 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_015.v common 4.86 vpr 62.71 MiB 0.03 6920 -1 -1 1 0.03 -1 -1 30712 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 29 32 272 228 1 148 80 17 17 289 -1 unnamed_device 24.2 MiB 1.63 791 11776 3380 6895 1501 62.7 MiB 0.06 0.00 3.6364 -112.843 -3.6364 3.6364 0.70 0.00031203 0.000287019 0.0213645 0.0197443 32 1848 19 6.87369e+06 265503 586450. 2029.24 0.63 0.0546882 0.0482072 25474 144626 -1 1625 19 924 1522 100542 23611 2.84601 2.84601 -107.478 -2.84601 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.0216684 0.0187985 102 29 58 29 24 24 +fixed_k6_frac_ripple_N8_22nm.xml mult_016.v common 6.95 vpr 63.42 MiB 0.04 7088 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 401 315 1 200 85 17 17 289 -1 unnamed_device 24.7 MiB 2.58 930 14221 5969 7807 445 63.4 MiB 0.15 0.00 3.52575 -124.171 -3.52575 3.52575 0.69 0.000770134 0.000714332 0.0612051 0.0567759 36 2508 26 6.87369e+06 293451 648988. 2245.63 1.57 0.218987 0.19154 26050 158493 -1 2115 23 2046 3477 263277 63340 3.31886 3.31886 -128.441 -3.31886 0 0 828058. 2865.25 0.22 0.11 0.13 -1 -1 0.22 0.0343635 0.0299041 145 63 64 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_017.v common 7.69 vpr 63.27 MiB 0.02 7096 -1 -1 1 0.03 -1 -1 30456 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64792 32 32 383 303 1 193 102 17 17 289 -1 unnamed_device 24.6 MiB 4.12 1056 17238 4537 10962 1739 63.3 MiB 0.15 0.00 3.55695 -127.024 -3.55695 3.55695 0.68 0.000740768 0.000687438 0.0562329 0.0520905 28 2492 21 6.87369e+06 531006 531479. 1839.03 0.87 0.144421 0.127761 24610 126494 -1 2191 21 1564 2360 174918 38255 2.72066 2.72066 -120.112 -2.72066 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0299959 0.0260642 148 57 64 32 56 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_018.v common 6.01 vpr 63.12 MiB 0.02 6908 -1 -1 1 0.03 -1 -1 30324 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64632 32 32 339 284 1 165 93 17 17 289 -1 unnamed_device 24.2 MiB 2.26 836 17103 4501 10697 1905 63.1 MiB 0.15 0.00 3.09156 -112.02 -3.09156 3.09156 0.68 0.000660798 0.000611777 0.0562588 0.0521332 26 2103 22 6.87369e+06 405241 503264. 1741.40 1.11 0.14149 0.125198 24322 120374 -1 1914 16 1054 1595 120004 28520 2.43847 2.43847 -108.563 -2.43847 0 0 618332. 2139.56 0.18 0.07 0.10 -1 -1 0.18 0.0222127 0.0194266 117 65 29 29 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_019.v common 4.31 vpr 62.34 MiB 0.02 6664 -1 -1 1 0.03 -1 -1 30424 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63836 30 32 226 208 1 119 76 17 17 289 -1 unnamed_device 23.8 MiB 0.49 560 9036 3714 4978 344 62.3 MiB 0.06 0.00 2.94056 -94.1681 -2.94056 2.94056 0.90 0.000372865 0.0003425 0.0228215 0.0209811 28 1595 33 6.87369e+06 195634 531479. 1839.03 1.03 0.0844405 0.0732571 24610 126494 -1 1335 20 745 1089 87677 20610 2.24442 2.24442 -90.2779 -2.24442 0 0 648988. 2245.63 0.26 0.05 0.12 -1 -1 0.26 0.0167706 0.0146645 73 34 24 24 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_020.v common 4.64 vpr 63.02 MiB 0.05 6972 -1 -1 1 0.03 -1 -1 30548 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64532 31 32 335 280 1 165 80 17 17 289 -1 unnamed_device 24.2 MiB 1.04 944 12636 3568 7641 1427 63.0 MiB 0.12 0.00 4.39847 -135.821 -4.39847 4.39847 0.72 0.000665553 0.000617946 0.0511615 0.0474848 32 2182 19 6.87369e+06 237555 586450. 2029.24 0.88 0.127593 0.112917 25474 144626 -1 1755 18 932 1412 106114 23560 3.26126 3.26126 -124.525 -3.26126 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.0239782 0.0209023 113 64 31 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_021.v common 5.10 vpr 63.32 MiB 0.03 7000 -1 -1 1 0.03 -1 -1 30492 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64844 32 32 366 283 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.84 894 19124 5624 10425 3075 63.3 MiB 0.17 0.00 4.20059 -139.885 -4.20059 4.20059 0.69 0.000725496 0.00067422 0.0623202 0.0577438 34 2400 23 6.87369e+06 503058 618332. 2139.56 1.41 0.207009 0.181314 25762 151098 -1 1914 21 1484 2211 151911 35662 3.6371 3.6371 -132.784 -3.6371 0 0 787024. 2723.27 0.23 0.08 0.13 -1 -1 0.23 0.0296964 0.0258516 150 34 91 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_022.v common 6.77 vpr 63.71 MiB 0.05 7280 -1 -1 1 0.04 -1 -1 30616 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65236 32 32 460 375 1 199 104 17 17 289 -1 unnamed_device 24.9 MiB 2.93 951 19380 5821 10599 2960 63.7 MiB 0.18 0.00 3.81248 -128.436 -3.81248 3.81248 0.70 0.000843158 0.000780026 0.068748 0.0634561 30 2850 21 6.87369e+06 558954 556674. 1926.21 1.10 0.172493 0.152458 25186 138497 -1 2061 21 1429 2276 150987 35757 3.6544 3.6544 -128.383 -3.6544 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0330185 0.0286128 154 124 0 0 125 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_023.v common 5.10 vpr 62.39 MiB 0.04 6776 -1 -1 1 0.03 -1 -1 30720 -1 -1 16 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63884 26 32 198 186 1 109 74 17 17 289 -1 unnamed_device 23.9 MiB 1.80 600 9219 3759 4898 562 62.4 MiB 0.07 0.00 2.91856 -82.7442 -2.91856 2.91856 0.69 0.000439734 0.000408496 0.0275426 0.0255885 28 1374 19 6.87369e+06 223581 531479. 1839.03 0.81 0.0789602 0.0694713 24610 126494 -1 1256 22 668 1033 83234 19162 2.15912 2.15912 -80.8217 -2.15912 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0182104 0.0157985 69 30 26 26 22 22 +fixed_k6_frac_ripple_N8_22nm.xml mult_024.v common 7.38 vpr 63.27 MiB 0.02 6956 -1 -1 1 0.03 -1 -1 30368 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.5 MiB 1.19 1038 9757 2635 6591 531 63.3 MiB 0.11 0.00 4.1666 -141.416 -4.1666 4.1666 0.69 0.000689986 0.000641469 0.0383657 0.0356513 38 2237 21 6.87369e+06 293451 678818. 2348.85 3.44 0.244409 0.211287 26626 170182 -1 1934 21 1568 2688 141718 35852 3.7204 3.7204 -138.237 -3.7204 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0281986 0.0245705 141 3 122 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_025.v common 4.96 vpr 62.27 MiB 0.02 6608 -1 -1 1 0.03 -1 -1 30556 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63764 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.8 MiB 0.56 506 9516 2238 6770 508 62.3 MiB 0.07 0.00 2.55523 -88.1124 -2.55523 2.55523 0.95 0.000358385 0.000329153 0.022786 0.0209221 34 1393 23 6.87369e+06 167686 618332. 2139.56 1.25 0.115339 0.100003 25762 151098 -1 1098 18 546 672 42763 11200 2.05517 2.05517 -84.189 -2.05517 0 0 787024. 2723.27 0.29 0.04 0.15 -1 -1 0.29 0.0146963 0.0129686 71 3 53 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_026.v common 5.29 vpr 63.45 MiB 0.03 6976 -1 -1 1 0.03 -1 -1 30800 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 376 288 1 202 100 17 17 289 -1 unnamed_device 24.6 MiB 0.81 1092 17964 4627 11625 1712 63.4 MiB 0.16 0.00 4.26205 -149.131 -4.26205 4.26205 0.95 0.00060371 0.000541834 0.0467001 0.0428355 32 2870 23 6.87369e+06 503058 586450. 2029.24 1.15 0.1464 0.1292 25474 144626 -1 2396 21 1878 2831 209396 48945 3.8033 3.8033 -147.971 -3.8033 0 0 744469. 2576.02 0.20 0.09 0.12 -1 -1 0.20 0.0303179 0.0264498 155 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_027.v common 4.33 vpr 63.39 MiB 0.02 7024 -1 -1 1 0.03 -1 -1 30452 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64916 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.6 MiB 0.77 964 9612 2267 6482 863 63.4 MiB 0.10 0.00 3.55269 -121.215 -3.55269 3.55269 0.69 0.000695051 0.000644171 0.031011 0.0287197 32 2547 22 6.87369e+06 503058 586450. 2029.24 0.88 0.113036 0.0989616 25474 144626 -1 1920 21 1393 2330 133725 32671 2.84266 2.84266 -117.687 -2.84266 0 0 744469. 2576.02 0.20 0.08 0.12 -1 -1 0.20 0.0281989 0.0245942 151 3 124 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_028.v common 5.18 vpr 63.57 MiB 0.03 6960 -1 -1 1 0.04 -1 -1 30704 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65100 32 32 407 319 1 202 103 17 17 289 -1 unnamed_device 24.6 MiB 0.89 1088 13358 3512 8899 947 63.6 MiB 0.13 0.00 4.2809 -148.724 -4.2809 4.2809 0.68 0.00077943 0.000722199 0.0458141 0.042377 26 3279 34 6.87369e+06 544980 503264. 1741.40 1.46 0.157634 0.138563 24322 120374 -1 2591 23 2004 3658 288541 64209 4.0287 4.0287 -156.738 -4.0287 0 0 618332. 2139.56 0.25 0.12 0.11 -1 -1 0.25 0.0353305 0.0308664 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_029.v common 4.81 vpr 62.63 MiB 0.04 6792 -1 -1 1 0.03 -1 -1 30360 -1 -1 15 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64136 32 32 294 246 1 157 79 17 17 289 -1 unnamed_device 24.1 MiB 0.91 734 6839 1724 4743 372 62.6 MiB 0.07 0.00 3.07332 -108.035 -3.07332 3.07332 0.68 0.000617496 0.000573294 0.0268449 0.0249567 34 1999 30 6.87369e+06 209608 618332. 2139.56 1.31 0.154653 0.133634 25762 151098 -1 1656 17 973 1549 103699 25097 3.02156 3.02156 -114.722 -3.02156 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.021465 0.0187563 104 34 54 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_030.v common 4.51 vpr 62.75 MiB 0.05 7004 -1 -1 1 0.03 -1 -1 30288 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 296 244 1 160 80 17 17 289 -1 unnamed_device 24.1 MiB 0.97 856 11260 3834 5392 2034 62.8 MiB 0.10 0.00 3.7936 -125.971 -3.7936 3.7936 0.69 0.000611166 0.000567423 0.0419467 0.0389215 32 2088 22 6.87369e+06 251529 586450. 2029.24 0.89 0.116543 0.102624 25474 144626 -1 1654 17 1040 1506 97048 23072 3.10131 3.10131 -123.326 -3.10131 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.021393 0.0186367 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_031.v common 4.60 vpr 62.72 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30448 -1 -1 19 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64224 28 32 278 232 1 150 79 17 17 289 -1 unnamed_device 24.2 MiB 0.98 743 13092 5209 6121 1762 62.7 MiB 0.12 0.00 3.48175 -108.034 -3.48175 3.48175 0.71 0.000589575 0.000548551 0.0472895 0.0439587 28 2197 23 6.87369e+06 265503 531479. 1839.03 0.97 0.123149 0.108847 24610 126494 -1 1885 23 1488 2506 199818 45743 3.18256 3.18256 -118.903 -3.18256 0 0 648988. 2245.63 0.18 0.08 0.12 -1 -1 0.18 0.0257239 0.0222513 104 34 56 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_032.v common 5.33 vpr 62.69 MiB 0.03 6900 -1 -1 1 0.03 -1 -1 30660 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.12 861 14700 5460 6955 2285 62.7 MiB 0.12 0.00 3.58201 -129.205 -3.58201 3.58201 0.70 0.000442567 0.000406714 0.0424501 0.0390181 34 2209 21 6.87369e+06 223581 618332. 2139.56 1.50 0.152291 0.133089 25762 151098 -1 1911 19 1276 2175 158479 35904 3.02626 3.02626 -125.985 -3.02626 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0227719 0.0199392 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_033.v common 4.28 vpr 63.11 MiB 0.04 6788 -1 -1 1 0.03 -1 -1 30444 -1 -1 32 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64628 31 32 303 249 1 163 95 17 17 289 -1 unnamed_device 24.7 MiB 0.75 924 11975 3064 7554 1357 63.1 MiB 0.11 0.00 3.50375 -121.402 -3.50375 3.50375 0.69 0.000626955 0.00058248 0.03708 0.0344444 32 2162 23 6.87369e+06 447163 586450. 2029.24 0.88 0.112888 0.0991581 25474 144626 -1 1869 19 1143 1895 125544 29958 2.84266 2.84266 -118.673 -2.84266 0 0 744469. 2576.02 0.21 0.07 0.14 -1 -1 0.21 0.0236577 0.0205907 119 34 61 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_034.v common 6.74 vpr 63.12 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30360 -1 -1 32 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64640 29 32 312 264 1 155 93 17 17 289 -1 unnamed_device 24.4 MiB 2.53 824 15003 4455 7859 2689 63.1 MiB 0.12 0.00 2.90021 -94.838 -2.90021 2.90021 0.77 0.000485982 0.000445408 0.0440638 0.040638 34 1676 21 6.87369e+06 447163 618332. 2139.56 1.37 0.166312 0.144642 25762 151098 -1 1416 17 961 1575 91564 22293 1.92152 1.92152 -83.9556 -1.92152 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0215659 0.0187716 113 61 29 29 57 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_035.v common 8.16 vpr 63.84 MiB 0.03 7164 -1 -1 1 0.04 -1 -1 30628 -1 -1 44 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65376 32 32 423 310 1 231 108 17 17 289 -1 unnamed_device 24.9 MiB 3.66 1315 20411 5511 12546 2354 63.8 MiB 0.21 0.00 4.25391 -147.758 -4.25391 4.25391 0.82 0.000827281 0.000765915 0.0689581 0.0637254 28 3589 32 6.87369e+06 614849 531479. 1839.03 1.59 0.196082 0.173785 24610 126494 -1 2967 23 2269 3939 317429 71035 4.0177 4.0177 -155.735 -4.0177 0 0 648988. 2245.63 0.18 0.12 0.11 -1 -1 0.18 0.037243 0.0323296 184 29 128 32 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_036.v common 6.46 vpr 63.37 MiB 0.04 7072 -1 -1 1 0.04 -1 -1 30600 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 403 317 1 200 103 17 17 289 -1 unnamed_device 24.6 MiB 2.64 1049 18419 4848 10881 2690 63.4 MiB 0.16 0.00 3.66825 -130.624 -3.66825 3.66825 0.68 0.000772448 0.000717385 0.0611971 0.0566988 32 2448 24 6.87369e+06 544980 586450. 2029.24 0.92 0.155726 0.137672 25474 144626 -1 1971 20 1661 2422 148524 34160 2.78656 2.78656 -120.179 -2.78656 0 0 744469. 2576.02 0.30 0.09 0.14 -1 -1 0.30 0.038001 0.0333537 154 65 62 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_037.v common 7.20 vpr 63.04 MiB 0.02 7052 -1 -1 1 0.04 -1 -1 30656 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64548 31 32 353 302 1 160 94 17 17 289 -1 unnamed_device 24.1 MiB 3.15 881 17134 5393 9307 2434 63.0 MiB 0.15 0.00 3.56305 -119.83 -3.56305 3.56305 0.68 0.000678223 0.000628714 0.0569499 0.0527229 34 1894 18 6.87369e+06 433189 618332. 2139.56 1.30 0.186152 0.162745 25762 151098 -1 1684 20 1038 1771 111342 25772 2.74901 2.74901 -109.413 -2.74901 0 0 787024. 2723.27 0.25 0.07 0.15 -1 -1 0.25 0.0261463 0.0226843 116 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_038.v common 6.64 vpr 63.37 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 30664 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 31 32 391 309 1 195 85 17 17 289 -1 unnamed_device 24.6 MiB 2.33 1019 8641 2131 5612 898 63.4 MiB 0.10 0.00 3.59121 -120.774 -3.59121 3.59121 0.68 0.000748076 0.00069418 0.0370112 0.0343666 34 2540 22 6.87369e+06 307425 618332. 2139.56 1.43 0.184485 0.160235 25762 151098 -1 2161 22 1586 2666 178348 41441 2.95396 2.95396 -120.345 -2.95396 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.032391 0.028299 141 64 60 30 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_039.v common 9.39 vpr 63.60 MiB 0.05 7228 -1 -1 1 0.03 -1 -1 30784 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65124 31 32 455 371 1 198 85 17 17 289 -1 unnamed_device 24.7 MiB 4.93 1071 16825 7101 8757 967 63.6 MiB 0.18 0.00 4.97069 -151.888 -4.97069 4.97069 0.68 0.000825308 0.000766393 0.0773207 0.0717201 34 2561 21 6.87369e+06 307425 618332. 2139.56 1.70 0.24212 0.212769 25762 151098 -1 2206 19 1340 2206 171312 37505 4.11665 4.11665 -144.409 -4.11665 0 0 787024. 2723.27 0.21 0.08 0.11 -1 -1 0.21 0.0314098 0.0273624 145 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_040.v common 5.91 vpr 63.34 MiB 0.04 7092 -1 -1 1 0.03 -1 -1 30500 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 31 32 413 333 1 195 85 17 17 289 -1 unnamed_device 24.5 MiB 1.66 980 12175 3299 8119 757 63.3 MiB 0.13 0.00 4.75154 -140.36 -4.75154 4.75154 0.68 0.000778259 0.000722413 0.052915 0.0491039 34 2416 21 6.87369e+06 307425 618332. 2139.56 1.43 0.204042 0.178151 25762 151098 -1 2021 22 1397 2319 167608 39108 3.81895 3.81895 -138.508 -3.81895 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0327489 0.028467 141 90 31 31 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_041.v common 6.56 vpr 63.63 MiB 0.03 7072 -1 -1 1 0.04 -1 -1 30488 -1 -1 36 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65160 31 32 391 309 1 195 99 17 17 289 -1 unnamed_device 24.7 MiB 2.33 1053 19023 5653 10954 2416 63.6 MiB 0.17 0.00 3.64005 -125.414 -3.64005 3.64005 0.69 0.000756633 0.000702017 0.0657015 0.0608405 34 2270 23 6.87369e+06 503058 618332. 2139.56 1.45 0.216905 0.19006 25762 151098 -1 1917 20 1592 2781 177356 42279 2.88196 2.88196 -116.445 -2.88196 0 0 787024. 2723.27 0.26 0.08 0.13 -1 -1 0.26 0.0292723 0.0254932 148 64 60 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_042.v common 8.72 vpr 63.45 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 31084 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.6 MiB 1.61 1150 19618 5466 12522 1630 63.4 MiB 0.19 0.00 4.1996 -145.707 -4.1996 4.1996 0.87 0.00077038 0.000714317 0.06682 0.0619177 28 3424 26 6.87369e+06 531006 531479. 1839.03 4.12 0.262155 0.229014 24610 126494 -1 2655 22 2024 3378 357942 74134 4.038 4.038 -153.731 -4.038 0 0 648988. 2245.63 0.18 0.12 0.11 -1 -1 0.18 0.0330736 0.0287209 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_043.v common 8.96 vpr 63.44 MiB 0.05 7232 -1 -1 1 0.03 -1 -1 30892 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 496 380 1 234 106 17 17 289 -1 unnamed_device 24.9 MiB 3.14 1303 13356 3327 8820 1209 63.4 MiB 0.16 0.00 4.31511 -149.42 -4.31511 4.31511 0.69 0.000919614 0.00084625 0.0527711 0.0487817 30 3099 25 6.87369e+06 586901 556674. 1926.21 3.04 0.305046 0.264332 25186 138497 -1 2480 20 1889 3106 166993 40221 3.6418 3.6418 -143.43 -3.6418 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0362188 0.0314965 186 96 62 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_044.v common 5.74 vpr 62.67 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30744 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64172 31 32 305 250 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 1.73 908 12636 4255 7048 1333 62.7 MiB 0.12 0.00 3.7654 -130.371 -3.7654 3.7654 0.70 0.000628331 0.000583589 0.0481099 0.044688 32 2265 30 6.87369e+06 237555 586450. 2029.24 1.34 0.161473 0.141347 25474 144626 -1 1834 21 1382 2224 160131 35528 2.92301 2.92301 -124.197 -2.92301 0 0 744469. 2576.02 0.20 0.08 0.12 -1 -1 0.20 0.0261109 0.0227182 112 34 62 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_045.v common 6.11 vpr 63.38 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30576 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64904 31 32 395 311 1 198 100 17 17 289 -1 unnamed_device 24.7 MiB 2.38 1036 19820 6398 10981 2441 63.4 MiB 0.18 0.00 4.25889 -142.345 -4.25889 4.25889 0.68 0.000754335 0.000700157 0.0673123 0.0623794 32 2711 22 6.87369e+06 517032 586450. 2029.24 0.95 0.15908 0.141097 25474 144626 -1 2220 21 1592 2496 184684 42206 3.7781 3.7781 -144.798 -3.7781 0 0 744469. 2576.02 0.22 0.09 0.12 -1 -1 0.22 0.0324898 0.0284732 152 64 62 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_046.v common 6.87 vpr 63.40 MiB 0.03 7004 -1 -1 1 0.03 -1 -1 30724 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 397 313 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 2.40 1118 16515 4839 10227 1449 63.4 MiB 0.15 0.00 3.56001 -125.702 -3.56001 3.56001 0.90 0.000588121 0.000540389 0.0448718 0.0412566 28 2985 26 6.87369e+06 489084 531479. 1839.03 1.31 0.127804 0.112871 24610 126494 -1 2505 23 1865 3227 256562 57550 3.31716 3.31716 -126.354 -3.31716 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.033423 0.0290153 150 63 62 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_047.v common 5.70 vpr 63.43 MiB 0.05 6952 -1 -1 1 0.04 -1 -1 30572 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64956 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 1.34 942 16081 4088 11306 687 63.4 MiB 0.16 0.00 4.1996 -144.758 -4.1996 4.1996 0.68 0.000844965 0.000782176 0.0631863 0.058681 32 3098 26 6.87369e+06 293451 586450. 2029.24 1.56 0.186626 0.164555 25474 144626 -1 2267 22 1981 3439 219962 55236 4.39361 4.39361 -162.887 -4.39361 0 0 744469. 2576.02 0.21 0.09 0.12 -1 -1 0.21 0.0309793 0.0270397 147 3 128 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_048.v common 7.74 vpr 63.56 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30552 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 424 343 1 195 100 17 17 289 -1 unnamed_device 24.6 MiB 3.53 1066 20980 7180 11264 2536 63.6 MiB 0.19 0.00 3.54349 -125.696 -3.54349 3.54349 0.68 0.000784091 0.000726468 0.073834 0.0682231 34 2369 19 6.87369e+06 503058 618332. 2139.56 1.44 0.2173 0.191255 25762 151098 -1 2001 23 1574 2488 157902 37370 2.74896 2.74896 -117.806 -2.74896 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0340499 0.0295841 148 96 25 25 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_049.v common 10.16 vpr 63.38 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30608 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64904 32 32 395 311 1 198 103 17 17 289 -1 unnamed_device 24.5 MiB 3.34 1032 19142 4987 12020 2135 63.4 MiB 0.17 0.00 3.61805 -127.505 -3.61805 3.61805 0.59 0.000759369 0.000703502 0.0631617 0.0585434 26 2821 43 6.87369e+06 544980 503264. 1741.40 4.07 0.28229 0.246125 24322 120374 -1 2279 19 1302 2417 174962 42706 2.98556 2.98556 -126.792 -2.98556 0 0 618332. 2139.56 0.26 0.09 0.12 -1 -1 0.26 0.0299917 0.0262593 152 61 64 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_050.v common 6.58 vpr 63.43 MiB 0.04 7124 -1 -1 1 0.04 -1 -1 30576 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64948 32 32 405 318 1 201 104 17 17 289 -1 unnamed_device 24.8 MiB 2.69 1111 18648 5184 11229 2235 63.4 MiB 0.17 0.00 3.58025 -126.995 -3.58025 3.58025 0.69 0.000773281 0.000717177 0.0619049 0.0572488 32 2720 40 6.87369e+06 558954 586450. 2029.24 1.00 0.17533 0.154147 25474 144626 -1 2141 17 1523 2388 147872 34597 2.90716 2.90716 -122.243 -2.90716 0 0 744469. 2576.02 0.30 0.08 0.14 -1 -1 0.30 0.0277886 0.0243868 156 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_051.v common 5.23 vpr 63.33 MiB 0.03 7024 -1 -1 1 0.04 -1 -1 30764 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 376 288 1 202 103 17 17 289 -1 unnamed_device 24.5 MiB 1.04 973 12876 3455 7707 1714 63.3 MiB 0.11 0.00 4.3249 -147.802 -4.3249 4.3249 0.71 0.000736165 0.000682724 0.0419373 0.0388462 32 3135 26 6.87369e+06 544980 586450. 2029.24 1.47 0.16304 0.142516 25474 144626 -1 2174 25 1899 3018 203675 49941 3.8484 3.8484 -146.92 -3.8484 0 0 744469. 2576.02 0.21 0.10 0.12 -1 -1 0.21 0.0344378 0.0299183 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_052.v common 7.32 vpr 63.39 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 31012 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 407 319 1 202 105 17 17 289 -1 unnamed_device 24.5 MiB 2.60 1087 15172 3966 9854 1352 63.4 MiB 0.14 0.00 4.1996 -143.047 -4.1996 4.1996 0.90 0.000609584 0.000559867 0.0391239 0.0358288 32 2746 26 6.87369e+06 572927 586450. 2029.24 1.51 0.163709 0.142524 25474 144626 -1 2388 24 2148 3550 287097 65171 4.0367 4.0367 -156.709 -4.0367 0 0 744469. 2576.02 0.20 0.11 0.12 -1 -1 0.20 0.0347523 0.0301451 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_053.v common 7.69 vpr 63.57 MiB 0.05 7164 -1 -1 1 0.03 -1 -1 30636 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65096 31 32 449 367 1 195 100 17 17 289 -1 unnamed_device 24.8 MiB 3.82 988 19356 5396 10906 3054 63.6 MiB 0.19 0.00 4.16785 -135.645 -4.16785 4.16785 0.68 0.000817432 0.000757337 0.0713927 0.0660913 30 2632 23 6.87369e+06 517032 556674. 1926.21 1.06 0.17375 0.153544 25186 138497 -1 2033 22 1505 2618 168069 38438 3.4725 3.4725 -128.631 -3.4725 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0338407 0.0292976 150 122 0 0 122 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_054.v common 7.08 vpr 63.45 MiB 0.03 7156 -1 -1 1 0.04 -1 -1 30568 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.8 MiB 2.64 1079 15709 4633 9421 1655 63.4 MiB 0.17 0.00 4.13359 -143.515 -4.13359 4.13359 0.77 0.000807144 0.000749351 0.0708438 0.0657161 34 2803 22 6.87369e+06 293451 618332. 2139.56 1.51 0.229911 0.201158 25762 151098 -1 2405 20 1668 3099 215706 50106 3.9207 3.9207 -150.015 -3.9207 0 0 787024. 2723.27 0.23 0.09 0.13 -1 -1 0.23 0.0314753 0.0274126 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_055.v common 5.08 vpr 63.07 MiB 0.02 6784 -1 -1 1 0.03 -1 -1 30696 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 312 255 1 167 96 17 17 289 -1 unnamed_device 24.1 MiB 1.10 919 15426 4260 9754 1412 63.1 MiB 0.11 0.00 3.51475 -125.544 -3.51475 3.51475 0.91 0.000524672 0.000481666 0.0336579 0.0306537 32 2160 21 6.87369e+06 447163 586450. 2029.24 0.87 0.108501 0.0946835 25474 144626 -1 1836 21 1304 2063 146173 33484 2.82066 2.82066 -119.908 -2.82066 0 0 744469. 2576.02 0.21 0.07 0.11 -1 -1 0.21 0.0255362 0.0222198 121 34 63 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_056.v common 6.83 vpr 63.26 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 30544 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64780 32 32 370 314 1 166 80 17 17 289 -1 unnamed_device 24.6 MiB 3.08 953 12980 4579 7047 1354 63.3 MiB 0.13 0.00 3.6884 -132.193 -3.6884 3.6884 0.73 0.000711655 0.00065903 0.0557948 0.0517067 32 2517 20 6.87369e+06 223581 586450. 2029.24 0.94 0.142549 0.125963 25474 144626 -1 1966 19 1263 1982 140158 31844 2.81766 2.81766 -119.946 -2.81766 0 0 744469. 2576.02 0.20 0.07 0.13 -1 -1 0.20 0.026426 0.023003 112 94 0 0 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_057.v common 6.69 vpr 63.46 MiB 0.03 7280 -1 -1 1 0.04 -1 -1 30924 -1 -1 44 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 469 351 1 236 108 17 17 289 -1 unnamed_device 25.1 MiB 1.97 1419 16556 4403 10830 1323 63.5 MiB 0.17 0.00 4.99284 -170.715 -4.99284 4.99284 0.68 0.000878417 0.000814078 0.0597715 0.0554098 28 3893 43 6.87369e+06 614849 531479. 1839.03 1.91 0.204452 0.180109 24610 126494 -1 3202 22 2678 4590 409009 87451 4.65055 4.65055 -174.034 -4.65055 0 0 648988. 2245.63 0.18 0.14 0.11 -1 -1 0.18 0.0382029 0.0333177 189 65 96 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_058.v common 6.37 vpr 63.39 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30544 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 368 284 1 198 99 17 17 289 -1 unnamed_device 24.6 MiB 2.68 1069 15831 4027 10006 1798 63.4 MiB 0.15 0.00 3.59121 -127.943 -3.59121 3.59121 0.67 0.00072569 0.000671998 0.0528672 0.0489053 26 2633 23 6.87369e+06 489084 503264. 1741.40 0.99 0.145136 0.128155 24322 120374 -1 2360 31 2078 3218 226866 51950 3.24856 3.24856 -130.386 -3.24856 0 0 618332. 2139.56 0.21 0.14 0.10 -1 -1 0.21 0.051231 0.0444996 150 34 92 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_059.v common 4.21 vpr 62.64 MiB 0.02 7012 -1 -1 1 0.03 -1 -1 30424 -1 -1 31 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64140 30 32 296 244 1 160 93 17 17 289 -1 unnamed_device 24.0 MiB 0.63 823 15633 5297 7776 2560 62.6 MiB 0.13 0.00 3.51601 -116.196 -3.51601 3.51601 0.68 0.000622979 0.000571861 0.0478537 0.0443319 28 2094 23 6.87369e+06 433189 531479. 1839.03 0.96 0.124621 0.109939 24610 126494 -1 1736 22 1367 2126 157679 36773 3.12156 3.12156 -115.569 -3.12156 0 0 648988. 2245.63 0.18 0.08 0.11 -1 -1 0.18 0.0258227 0.0223438 116 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_060.v common 9.32 vpr 63.69 MiB 0.03 7428 -1 -1 1 0.04 -1 -1 31108 -1 -1 47 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65220 32 32 531 413 1 236 111 17 17 289 -1 unnamed_device 25.1 MiB 5.18 1193 22455 6528 13018 2909 63.7 MiB 0.22 0.00 4.91264 -167.151 -4.91264 4.91264 0.71 0.000948695 0.000880687 0.0837889 0.0776745 32 3142 22 6.87369e+06 656770 586450. 2029.24 1.05 0.198833 0.176367 25474 144626 -1 2557 23 2523 4113 323151 70687 4.69455 4.69455 -166.092 -4.69455 0 0 744469. 2576.02 0.21 0.12 0.12 -1 -1 0.21 0.0414435 0.0359749 190 127 32 32 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_061.v common 6.47 vpr 63.32 MiB 0.03 7052 -1 -1 1 0.03 -1 -1 30656 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64840 32 32 376 288 1 202 104 17 17 289 -1 unnamed_device 24.5 MiB 2.77 975 19868 5843 10688 3337 63.3 MiB 0.16 0.00 4.28153 -144.516 -4.28153 4.28153 0.68 0.000719824 0.000665662 0.0621689 0.0576106 32 2502 33 6.87369e+06 558954 586450. 2029.24 0.99 0.163176 0.144201 25474 144626 -1 1905 17 1563 2370 153347 36002 3.578 3.578 -139.704 -3.578 0 0 744469. 2576.02 0.21 0.07 0.12 -1 -1 0.21 0.0259247 0.0227104 156 34 96 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_062.v common 4.11 vpr 62.65 MiB 0.03 6908 -1 -1 1 0.03 -1 -1 30416 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64152 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.2 MiB 0.58 857 11197 2857 7409 931 62.6 MiB 0.10 0.00 3.64005 -128.736 -3.64005 3.64005 0.68 0.000609012 0.000566967 0.0325722 0.0302516 30 2290 23 6.87369e+06 461137 556674. 1926.21 0.95 0.107136 0.0940924 25186 138497 -1 1821 20 1230 1962 126723 29562 2.83966 2.83966 -120.97 -2.83966 0 0 706193. 2443.58 0.22 0.07 0.12 -1 -1 0.22 0.0239673 0.020881 123 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_063.v common 6.71 vpr 63.66 MiB 0.03 7192 -1 -1 1 0.04 -1 -1 30984 -1 -1 45 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65188 32 32 438 320 1 236 109 17 17 289 -1 unnamed_device 24.9 MiB 2.46 1249 21169 5887 12519 2763 63.7 MiB 0.20 0.00 4.9297 -168.732 -4.9297 4.9297 0.70 0.000848292 0.000787116 0.0719658 0.066769 28 3573 23 6.87369e+06 628823 531479. 1839.03 1.34 0.181378 0.16098 24610 126494 -1 2952 22 2598 4466 391617 86922 5.05645 5.05645 -184.03 -5.05645 0 0 648988. 2245.63 0.18 0.13 0.11 -1 -1 0.18 0.036852 0.0321481 189 34 128 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_064.v common 5.88 vpr 62.69 MiB 0.02 6824 -1 -1 1 0.03 -1 -1 30556 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64196 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 1.16 806 12292 2857 8871 564 62.7 MiB 0.10 0.00 3.7764 -134.344 -3.7764 3.7764 0.91 0.000470158 0.000432292 0.0355953 0.0327868 34 2103 23 6.87369e+06 223581 618332. 2139.56 1.58 0.145543 0.126926 25762 151098 -1 1743 22 1334 2283 169568 38908 3.04926 3.04926 -126.724 -3.04926 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0259831 0.0225782 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_065.v common 5.61 vpr 62.73 MiB 0.02 6852 -1 -1 1 0.03 -1 -1 30276 -1 -1 33 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64232 30 32 296 244 1 162 95 17 17 289 -1 unnamed_device 24.3 MiB 2.08 719 10463 2628 6946 889 62.7 MiB 0.10 0.00 3.56001 -114.458 -3.56001 3.56001 0.69 0.000608354 0.000565243 0.0315035 0.0291896 28 2100 21 6.87369e+06 461137 531479. 1839.03 0.91 0.105609 0.0925105 24610 126494 -1 1838 23 1546 2602 192346 45819 2.96796 2.96796 -117.166 -2.96796 0 0 648988. 2245.63 0.18 0.08 0.13 -1 -1 0.18 0.0265752 0.0229143 118 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_066.v common 7.28 vpr 63.62 MiB 0.03 7132 -1 -1 1 0.04 -1 -1 30540 -1 -1 35 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65148 29 32 393 319 1 186 96 17 17 289 -1 unnamed_device 24.8 MiB 3.03 1008 14550 3923 8443 2184 63.6 MiB 0.14 0.00 3.54707 -114.227 -3.54707 3.54707 0.71 0.000741938 0.000686604 0.0520015 0.0481836 34 2294 22 6.87369e+06 489084 618332. 2139.56 1.46 0.20477 0.178858 25762 151098 -1 1914 22 1409 2397 155935 37406 2.92296 2.92296 -112.003 -2.92296 0 0 787024. 2723.27 0.22 0.08 0.14 -1 -1 0.22 0.0309017 0.0268628 141 88 29 29 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_067.v common 6.37 vpr 63.36 MiB 0.03 6952 -1 -1 1 0.04 -1 -1 30828 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.5 MiB 2.10 854 12175 2685 7576 1914 63.4 MiB 0.11 0.00 4.2388 -146.065 -4.2388 4.2388 0.68 0.000766557 0.000710312 0.0521618 0.0483697 34 2546 27 6.87369e+06 293451 618332. 2139.56 1.60 0.212906 0.185976 25762 151098 -1 2046 20 1815 2797 188724 46322 4.0772 4.0772 -154.675 -4.0772 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.030251 0.026398 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_068.v common 7.38 vpr 63.45 MiB 0.05 7068 -1 -1 1 0.05 -1 -1 30904 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 3.54 1100 18901 5336 11603 1962 63.4 MiB 0.17 0.00 4.27679 -150.534 -4.27679 4.27679 0.68 0.000780249 0.000715523 0.0648011 0.0599983 30 2779 22 6.87369e+06 517032 556674. 1926.21 1.08 0.161536 0.143106 25186 138497 -1 2296 23 1941 3228 203722 46819 3.6781 3.6781 -148.543 -3.6781 0 0 706193. 2443.58 0.19 0.09 0.12 -1 -1 0.19 0.0324197 0.0281773 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_069.v common 7.06 vpr 63.11 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30784 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 345 287 1 168 97 17 17 289 -1 unnamed_device 24.3 MiB 2.83 825 17191 6233 8742 2216 63.1 MiB 0.14 0.00 3.60705 -126.657 -3.60705 3.60705 0.68 0.000693643 0.000637519 0.055234 0.0511661 36 2000 24 6.87369e+06 461137 648988. 2245.63 1.44 0.190375 0.166211 26050 158493 -1 1755 20 1350 2087 158212 38418 2.98526 2.98526 -120.211 -2.98526 0 0 828058. 2865.25 0.22 0.08 0.13 -1 -1 0.22 0.0263728 0.0228995 123 65 32 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_070.v common 7.60 vpr 63.07 MiB 0.02 7120 -1 -1 1 0.03 -1 -1 30620 -1 -1 18 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 31 32 353 302 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 3.58 738 4456 873 3135 448 63.1 MiB 0.06 0.00 3.6994 -119.902 -3.6994 3.6994 0.68 0.000677958 0.00062493 0.019207 0.0178433 34 2033 23 6.87369e+06 251529 618332. 2139.56 1.41 0.152586 0.131106 25762 151098 -1 1772 20 1163 2079 145676 35059 3.41421 3.41421 -126.224 -3.41421 0 0 787024. 2723.27 0.21 0.07 0.14 -1 -1 0.21 0.026487 0.023039 108 90 0 0 89 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_071.v common 6.82 vpr 63.23 MiB 0.04 7084 -1 -1 1 0.03 -1 -1 30616 -1 -1 34 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 30 32 374 297 1 189 96 17 17 289 -1 unnamed_device 24.4 MiB 2.65 914 16740 4391 9932 2417 63.2 MiB 0.15 0.00 3.59605 -116.379 -3.59605 3.59605 0.70 0.000718681 0.000666419 0.0572819 0.0531534 34 1984 19 6.87369e+06 475111 618332. 2139.56 1.29 0.196592 0.17203 25762 151098 -1 1680 22 1188 1971 103270 27458 2.82066 2.82066 -107.879 -2.82066 0 0 787024. 2723.27 0.31 0.06 0.15 -1 -1 0.31 0.02703 0.0238782 143 60 60 30 57 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_072.v common 5.39 vpr 63.39 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30596 -1 -1 35 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64908 28 32 332 260 1 180 95 17 17 289 -1 unnamed_device 24.7 MiB 1.73 905 12191 3346 7959 886 63.4 MiB 0.12 0.00 4.19891 -125.962 -4.19891 4.19891 0.69 0.000677796 0.000631262 0.0411665 0.0382489 26 2522 24 6.87369e+06 489084 503264. 1741.40 0.98 0.129002 0.113883 24322 120374 -1 2076 19 1378 2208 167975 37568 3.9657 3.9657 -136.59 -3.9657 0 0 618332. 2139.56 0.21 0.09 0.10 -1 -1 0.21 0.0304044 0.0269219 139 34 84 28 28 28 +fixed_k6_frac_ripple_N8_22nm.xml mult_073.v common 6.03 vpr 63.04 MiB 0.02 7048 -1 -1 1 0.03 -1 -1 30360 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64556 30 32 325 273 1 161 80 17 17 289 -1 unnamed_device 24.2 MiB 2.50 882 11432 3518 6484 1430 63.0 MiB 0.11 0.00 3.7324 -126.153 -3.7324 3.7324 0.71 0.000647611 0.000601524 0.0447729 0.0415773 30 2191 20 6.87369e+06 251529 556674. 1926.21 1.01 0.118548 0.104806 25186 138497 -1 1853 21 1294 2164 150246 32740 2.82871 2.82871 -116.084 -2.82871 0 0 706193. 2443.58 0.18 0.06 0.08 -1 -1 0.18 0.0253639 0.0220296 110 63 30 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_074.v common 7.06 vpr 63.30 MiB 0.04 7056 -1 -1 1 0.03 -1 -1 30512 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64820 32 32 361 308 1 163 81 17 17 289 -1 unnamed_device 24.4 MiB 2.90 904 14256 4718 7453 2085 63.3 MiB 0.14 0.00 3.6144 -123.374 -3.6144 3.6144 0.69 0.000753444 0.00069265 0.0523354 0.0481626 34 2207 18 6.87369e+06 237555 618332. 2139.56 1.41 0.182934 0.159285 25762 151098 -1 1817 20 963 1626 116668 26336 2.85226 2.85226 -114.959 -2.85226 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0270378 0.0235044 110 91 0 0 91 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_075.v common 5.03 vpr 62.98 MiB 0.03 7080 -1 -1 1 0.03 -1 -1 30412 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.5 MiB 0.76 962 16804 5215 8614 2975 63.0 MiB 0.15 0.00 4.24789 -140.354 -4.24789 4.24789 0.73 0.00052226 0.000480717 0.0403963 0.0370886 28 3318 25 6.87369e+06 517032 531479. 1839.03 1.54 0.127515 0.112122 24610 126494 -1 2385 22 1975 3193 256725 59863 3.8987 3.8987 -143.921 -3.8987 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0293041 0.0255091 151 4 124 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_076.v common 8.40 vpr 63.44 MiB 0.04 7064 -1 -1 1 0.04 -1 -1 30772 -1 -1 38 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64960 32 32 407 319 1 202 102 17 17 289 -1 unnamed_device 24.9 MiB 4.11 1093 19380 5712 11198 2470 63.4 MiB 0.17 0.00 4.29189 -149.386 -4.29189 4.29189 0.73 0.000757687 0.000701715 0.0632594 0.0584966 28 3028 24 6.87369e+06 531006 531479. 1839.03 1.24 0.16457 0.145897 24610 126494 -1 2650 22 2107 3687 317429 70816 4.024 4.024 -156.289 -4.024 0 0 648988. 2245.63 0.21 0.12 0.11 -1 -1 0.21 0.0330979 0.0288027 156 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_077.v common 7.31 vpr 63.70 MiB 0.02 7040 -1 -1 1 0.04 -1 -1 30544 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65232 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.8 MiB 3.35 1146 17256 4889 10338 2029 63.7 MiB 0.16 0.00 4.30289 -150.744 -4.30289 4.30289 0.77 0.000771788 0.000715771 0.0593383 0.0549034 30 3045 23 6.87369e+06 517032 556674. 1926.21 1.08 0.154787 0.136682 25186 138497 -1 2268 21 1665 2813 150264 36836 3.7671 3.7671 -149.208 -3.7671 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0310595 0.0270166 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_078.v common 7.53 vpr 63.32 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30736 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 399 315 1 198 103 17 17 289 -1 unnamed_device 24.6 MiB 3.36 1114 16491 4519 10066 1906 63.3 MiB 0.15 0.00 4.16249 -142.489 -4.16249 4.16249 0.69 0.000761409 0.000706963 0.0548444 0.05077 28 3094 25 6.87369e+06 544980 531479. 1839.03 1.32 0.155785 0.137667 24610 126494 -1 2563 21 1718 2916 225703 52151 4.1043 4.1043 -148.057 -4.1043 0 0 648988. 2245.63 0.27 0.11 0.12 -1 -1 0.27 0.036506 0.0318273 152 65 60 30 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_079.v common 6.19 vpr 62.75 MiB 0.02 6796 -1 -1 1 0.03 -1 -1 30564 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64256 30 32 296 244 1 160 81 17 17 289 -1 unnamed_device 24.2 MiB 2.56 746 10406 2932 6420 1054 62.8 MiB 0.10 0.00 3.7324 -121.378 -3.7324 3.7324 0.70 0.000616478 0.000573794 0.038942 0.0362378 32 2084 21 6.87369e+06 265503 586450. 2029.24 0.88 0.111757 0.0984141 25474 144626 -1 1762 21 1174 1944 133238 31070 2.96796 2.96796 -118.559 -2.96796 0 0 744469. 2576.02 0.20 0.07 0.12 -1 -1 0.20 0.0250814 0.0217463 110 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_080.v common 6.84 vpr 63.42 MiB 0.03 7172 -1 -1 1 0.04 -1 -1 30500 -1 -1 23 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 30 32 383 303 1 192 85 17 17 289 -1 unnamed_device 24.7 MiB 3.21 980 15709 4819 8970 1920 63.4 MiB 0.15 0.00 4.23999 -140.261 -4.23999 4.23999 0.68 0.000739083 0.000684945 0.064119 0.0594517 30 2357 25 6.87369e+06 321398 556674. 1926.21 0.97 0.156703 0.138808 25186 138497 -1 1983 20 1484 2354 155562 33827 3.7184 3.7184 -141.349 -3.7184 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0290167 0.0252548 140 63 60 30 60 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_081.v common 8.91 vpr 63.60 MiB 0.03 7232 -1 -1 1 0.04 -1 -1 31088 -1 -1 43 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65124 32 32 469 381 1 202 107 17 17 289 -1 unnamed_device 24.9 MiB 5.06 1155 15540 3963 10188 1389 63.6 MiB 0.15 0.00 4.23385 -146.284 -4.23385 4.23385 0.68 0.00085593 0.000792352 0.0554166 0.0513062 32 2812 26 6.87369e+06 600875 586450. 2029.24 1.03 0.164559 0.144569 25474 144626 -1 2384 23 1999 3363 277575 61644 3.7781 3.7781 -147.347 -3.7781 0 0 744469. 2576.02 0.26 0.11 0.14 -1 -1 0.26 0.0368771 0.0319481 158 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_082.v common 5.08 vpr 63.45 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 30652 -1 -1 33 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 425 341 1 197 96 17 17 289 -1 unnamed_device 24.6 MiB 1.10 1029 18273 5989 9373 2911 63.5 MiB 0.17 0.00 4.26989 -143.564 -4.26989 4.26989 0.77 0.000782112 0.000725848 0.0674569 0.0624386 28 2764 21 6.87369e+06 461137 531479. 1839.03 1.10 0.164993 0.146287 24610 126494 -1 2213 23 1934 3293 226470 52920 3.9767 3.9767 -144.816 -3.9767 0 0 648988. 2245.63 0.19 0.10 0.11 -1 -1 0.19 0.0341055 0.029642 149 94 31 31 93 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_083.v common 6.01 vpr 63.46 MiB 0.04 7296 -1 -1 1 0.03 -1 -1 30680 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64988 30 32 404 328 1 188 94 17 17 289 -1 unnamed_device 24.7 MiB 2.25 942 16921 5030 8706 3185 63.5 MiB 0.20 0.00 3.63595 -118.056 -3.63595 3.63595 0.69 0.000766002 0.000702834 0.0705016 0.065023 30 2456 23 6.87369e+06 447163 556674. 1926.21 0.99 0.166579 0.147552 25186 138497 -1 1779 22 1419 2439 131400 32524 2.92396 2.92396 -111.704 -2.92396 0 0 706193. 2443.58 0.20 0.08 0.12 -1 -1 0.20 0.0315472 0.0274177 141 92 26 26 90 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_084.v common 8.36 vpr 63.45 MiB 0.02 6964 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.6 MiB 4.00 1087 14593 4252 9147 1194 63.5 MiB 0.15 0.00 4.1996 -148.308 -4.1996 4.1996 0.68 0.000769252 0.000712999 0.062788 0.0582476 34 2965 25 6.87369e+06 293451 618332. 2139.56 1.57 0.222179 0.194413 25762 151098 -1 2644 21 1859 3219 249586 55798 3.8924 3.8924 -154.847 -3.8924 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0318744 0.0277502 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_085.v common 6.12 vpr 63.36 MiB 0.02 7196 -1 -1 1 0.04 -1 -1 30492 -1 -1 36 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64880 29 32 387 316 1 181 97 17 17 289 -1 unnamed_device 24.5 MiB 2.58 943 12751 3363 8405 983 63.4 MiB 0.12 0.00 3.54105 -112.818 -3.54105 3.54105 0.68 0.000731526 0.000676127 0.0448948 0.0415183 26 2462 19 6.87369e+06 503058 503264. 1741.40 0.87 0.130141 0.114688 24322 120374 -1 2100 17 1399 2307 162324 38633 3.04926 3.04926 -114.706 -3.04926 0 0 618332. 2139.56 0.21 0.09 0.10 -1 -1 0.21 0.0282093 0.0249948 138 88 26 26 85 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_086.v common 4.74 vpr 62.66 MiB 0.02 6776 -1 -1 1 0.03 -1 -1 30468 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64168 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.1 MiB 0.57 862 12292 3174 7904 1214 62.7 MiB 0.11 0.00 3.7104 -131.958 -3.7104 3.7104 0.69 0.000615302 0.000572368 0.045404 0.0422205 34 2228 22 6.87369e+06 223581 618332. 2139.56 1.37 0.165577 0.144668 25762 151098 -1 1903 19 1299 1998 143510 33603 2.94596 2.94596 -125.088 -2.94596 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0230994 0.0201357 114 3 96 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_087.v common 8.93 vpr 63.49 MiB 0.02 7056 -1 -1 1 0.04 -1 -1 30632 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 407 319 1 202 101 17 17 289 -1 unnamed_device 24.6 MiB 4.61 1088 19841 5443 12522 1876 63.5 MiB 0.18 0.00 4.3249 -149.309 -4.3249 4.3249 0.87 0.000587173 0.000538126 0.0523948 0.0479998 32 2664 27 6.87369e+06 517032 586450. 2029.24 1.12 0.13294 0.117233 25474 144626 -1 2254 22 1922 2942 212052 49934 3.6558 3.6558 -145.505 -3.6558 0 0 744469. 2576.02 0.29 0.09 0.14 -1 -1 0.29 0.0326354 0.0287828 155 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_088.v common 8.03 vpr 63.60 MiB 0.02 7012 -1 -1 1 0.04 -1 -1 30556 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 407 319 1 202 85 17 17 289 -1 unnamed_device 24.7 MiB 3.74 1071 15151 5130 8107 1914 63.6 MiB 0.15 0.00 4.2388 -148.068 -4.2388 4.2388 0.68 0.000771841 0.000715153 0.0655485 0.0607986 36 2494 20 6.87369e+06 293451 648988. 2245.63 1.52 0.222376 0.195221 26050 158493 -1 2182 24 2211 3623 241580 59351 4.0177 4.0177 -150.591 -4.0177 0 0 828058. 2865.25 0.22 0.11 0.13 -1 -1 0.22 0.0355242 0.0308852 147 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_089.v common 7.27 vpr 63.21 MiB 0.04 6916 -1 -1 1 0.03 -1 -1 30632 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 315 267 1 158 94 17 17 289 -1 unnamed_device 24.6 MiB 3.23 885 16708 4981 9424 2303 63.2 MiB 0.14 0.00 3.50501 -121.209 -3.50501 3.50501 0.68 0.00064598 0.000599347 0.0525203 0.0486312 34 2045 23 6.87369e+06 419215 618332. 2139.56 1.32 0.177569 0.154928 25762 151098 -1 1729 18 886 1544 107404 24938 2.71266 2.71266 -112.209 -2.71266 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0227734 0.0198137 112 55 32 32 54 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_090.v common 4.42 vpr 62.60 MiB 0.05 6864 -1 -1 1 0.03 -1 -1 30484 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.0 MiB 0.80 723 6960 1528 4773 659 62.6 MiB 0.08 0.00 3.7434 -125.643 -3.7434 3.7434 0.68 0.00059992 0.000557689 0.0260054 0.0241862 32 2142 21 6.87369e+06 237555 586450. 2029.24 0.88 0.0971549 0.0851177 25474 144626 -1 1732 23 1352 2166 138301 31877 3.24691 3.24691 -124.294 -3.24691 0 0 744469. 2576.02 0.23 0.07 0.14 -1 -1 0.23 0.0260627 0.0225633 112 4 93 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_091.v common 6.40 vpr 63.34 MiB 0.03 7136 -1 -1 1 0.03 -1 -1 30388 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 381 303 1 194 99 17 17 289 -1 unnamed_device 24.5 MiB 2.59 1023 18795 5447 10788 2560 63.3 MiB 0.17 0.00 4.30799 -144.78 -4.30799 4.30799 0.68 0.000742304 0.000688351 0.0631921 0.058539 28 2609 24 6.87369e+06 489084 531479. 1839.03 1.07 0.148536 0.131871 24610 126494 -1 2318 21 1667 2520 192925 43752 3.8596 3.8596 -144.742 -3.8596 0 0 648988. 2245.63 0.25 0.08 0.12 -1 -1 0.25 0.0261128 0.0229535 144 59 60 32 58 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_092.v common 5.13 vpr 63.48 MiB 0.03 7044 -1 -1 1 0.03 -1 -1 30476 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65004 32 32 406 330 1 191 97 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1094 18745 5603 10775 2367 63.5 MiB 0.18 0.00 4.21185 -141.009 -4.21185 4.21185 0.69 0.000763954 0.000706172 0.0673615 0.0623939 28 2766 30 6.87369e+06 461137 531479. 1839.03 1.03 0.1712 0.151361 24610 126494 -1 2297 21 1615 2558 191931 44148 3.97726 3.97726 -145.148 -3.97726 0 0 648988. 2245.63 0.18 0.11 0.11 -1 -1 0.18 0.0370335 0.0321503 142 88 28 28 88 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_093.v common 6.34 vpr 63.59 MiB 0.03 7116 -1 -1 1 0.03 -1 -1 30648 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65116 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.9 MiB 0.87 1329 17642 5677 9392 2573 63.6 MiB 0.19 0.00 4.98719 -165.596 -4.98719 4.98719 0.96 0.000641856 0.000590992 0.0481623 0.0443065 34 3642 23 6.87369e+06 572927 618332. 2139.56 2.36 0.203378 0.178242 25762 151098 -1 2668 22 2110 3539 321053 67894 4.50725 4.50725 -166.589 -4.50725 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.0340334 0.0296631 183 3 156 32 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_094.v common 6.79 vpr 63.26 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30684 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 371 295 1 188 94 17 17 289 -1 unnamed_device 24.5 MiB 2.68 1005 13300 3782 8501 1017 63.3 MiB 0.13 0.00 3.59605 -120.715 -3.59605 3.59605 0.68 0.000715352 0.000662418 0.0494475 0.0457579 34 2108 21 6.87369e+06 447163 618332. 2139.56 1.40 0.188602 0.164748 25762 151098 -1 1859 21 1518 2488 150482 36332 2.80966 2.80966 -114.397 -2.80966 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0286213 0.024975 141 59 60 30 56 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_095.v common 4.67 vpr 62.53 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30772 -1 -1 20 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64028 27 32 269 226 1 145 79 17 17 289 -1 unnamed_device 24.0 MiB 0.91 735 12247 4571 5926 1750 62.5 MiB 0.10 0.00 3.6866 -109.378 -3.6866 3.6866 0.81 0.000562039 0.000521493 0.0427474 0.0397543 32 1657 20 6.87369e+06 279477 586450. 2029.24 0.83 0.107982 0.0953279 25474 144626 -1 1396 21 1040 1531 110151 24552 2.75666 2.75666 -101.174 -2.75666 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.0230263 0.0199041 102 34 54 27 27 27 +fixed_k6_frac_ripple_N8_22nm.xml mult_096.v common 11.37 vpr 63.75 MiB 0.03 7360 -1 -1 1 0.03 -1 -1 30892 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65280 32 32 493 378 1 233 106 17 17 289 -1 unnamed_device 25.1 MiB 2.65 1290 11856 2585 8478 793 63.8 MiB 0.14 0.00 4.1886 -144.868 -4.1886 4.1886 0.69 0.000908181 0.000840183 0.0469974 0.0434905 28 4240 42 6.87369e+06 586901 531479. 1839.03 5.96 0.300927 0.260564 24610 126494 -1 3184 23 2541 4412 395099 85221 3.8364 3.8364 -151.805 -3.8364 0 0 648988. 2245.63 0.18 0.14 0.10 -1 -1 0.18 0.0412624 0.0358262 184 95 62 31 95 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_097.v common 8.11 vpr 63.41 MiB 0.03 7148 -1 -1 1 0.04 -1 -1 30648 -1 -1 23 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64936 31 32 455 371 1 199 86 17 17 289 -1 unnamed_device 24.5 MiB 3.07 874 9914 2276 6234 1404 63.4 MiB 0.10 0.00 4.91157 -150.663 -4.91157 4.91157 0.95 0.000647243 0.000596475 0.0367088 0.0338409 32 2828 44 6.87369e+06 321398 586450. 2029.24 1.86 0.190242 0.165969 25474 144626 -1 1985 18 1274 1904 128350 32047 3.94615 3.94615 -144.397 -3.94615 0 0 744469. 2576.02 0.23 0.07 0.12 -1 -1 0.23 0.0295542 0.025762 144 124 0 0 124 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_098.v common 7.30 vpr 63.02 MiB 0.02 6980 -1 -1 1 0.03 -1 -1 30664 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64536 32 32 355 304 1 162 80 17 17 289 -1 unnamed_device 24.3 MiB 3.08 802 14356 5267 6628 2461 63.0 MiB 0.13 0.00 4.598 -126.496 -4.598 4.598 0.98 0.000685018 0.000635731 0.0596953 0.0554278 34 2001 21 6.87369e+06 223581 618332. 2139.56 1.21 0.164486 0.144637 25762 151098 -1 1663 12 705 1042 76953 17717 3.20325 3.20325 -117.474 -3.20325 0 0 787024. 2723.27 0.31 0.04 0.15 -1 -1 0.31 0.0172977 0.0155252 107 89 0 0 89 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_099.v common 4.79 vpr 63.19 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30640 -1 -1 34 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64704 32 32 364 282 1 196 98 17 17 289 -1 unnamed_device 24.4 MiB 0.88 1114 14723 4652 8968 1103 63.2 MiB 0.14 0.00 4.1955 -143.003 -4.1955 4.1955 0.68 0.000718586 0.000667465 0.0495648 0.0458893 28 2899 46 6.87369e+06 475111 531479. 1839.03 1.21 0.166956 0.146671 24610 126494 -1 2608 21 1760 2548 225275 50545 4.0097 4.0097 -153.609 -4.0097 0 0 648988. 2245.63 0.18 0.10 0.11 -1 -1 0.18 0.0298073 0.0259334 147 34 90 30 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_100.v common 6.23 vpr 63.67 MiB 0.03 7232 -1 -1 1 0.03 -1 -1 30844 -1 -1 40 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65196 31 32 443 336 1 224 103 17 17 289 -1 unnamed_device 24.8 MiB 1.79 1006 19865 6118 9930 3817 63.7 MiB 0.19 0.00 4.28153 -140.004 -4.28153 4.28153 0.73 0.000849313 0.000781101 0.0724101 0.0670056 34 2780 29 6.87369e+06 558954 618332. 2139.56 1.62 0.249927 0.218229 25762 151098 -1 2103 19 1729 2696 150207 39295 4.0207 4.0207 -143.177 -4.0207 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0317414 0.0276221 176 64 87 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_101.v common 6.19 vpr 63.62 MiB 0.03 7096 -1 -1 1 0.04 -1 -1 30548 -1 -1 36 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65152 30 32 373 297 1 188 98 17 17 289 -1 unnamed_device 24.9 MiB 1.88 1085 17873 5357 10009 2507 63.6 MiB 0.16 0.00 3.50639 -115.998 -3.50639 3.50639 0.70 0.000713043 0.000661185 0.0588728 0.0544731 34 2462 21 6.87369e+06 503058 618332. 2139.56 1.39 0.201709 0.176376 25762 151098 -1 2166 19 1350 2403 160107 38495 2.92096 2.92096 -113.381 -2.92096 0 0 787024. 2723.27 0.25 0.07 0.13 -1 -1 0.25 0.0243626 0.0214963 144 61 58 30 58 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_102.v common 9.18 vpr 63.72 MiB 0.03 6964 -1 -1 1 0.04 -1 -1 30612 -1 -1 46 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65252 32 32 407 319 1 202 110 17 17 289 -1 unnamed_device 24.8 MiB 2.48 1127 20887 5685 13197 2005 63.7 MiB 0.19 0.00 4.26133 -148.826 -4.26133 4.26133 1.00 0.00077805 0.000721003 0.0638132 0.0590382 26 3149 23 6.87369e+06 642796 503264. 1741.40 3.42 0.272462 0.238323 24322 120374 -1 2524 21 1988 3314 264605 58610 4.0097 4.0097 -156.039 -4.0097 0 0 618332. 2139.56 0.19 0.10 0.12 -1 -1 0.19 0.0315964 0.0275043 160 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_103.v common 7.45 vpr 63.57 MiB 0.03 7092 -1 -1 1 0.04 -1 -1 30712 -1 -1 42 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65096 32 32 405 318 1 201 106 17 17 289 -1 unnamed_device 24.6 MiB 3.51 1115 19606 5308 11826 2472 63.6 MiB 0.17 0.00 3.52575 -126.542 -3.52575 3.52575 0.80 0.000767943 0.000712097 0.0639118 0.0591631 26 2746 41 6.87369e+06 586901 503264. 1741.40 1.15 0.185009 0.163345 24322 120374 -1 2470 20 1636 2628 216477 46444 3.31086 3.31086 -134.175 -3.31086 0 0 618332. 2139.56 0.17 0.09 0.10 -1 -1 0.17 0.0299636 0.0261039 157 65 63 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_104.v common 5.54 vpr 62.64 MiB 0.05 6844 -1 -1 1 0.03 -1 -1 30692 -1 -1 19 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 29 32 287 238 1 155 80 17 17 289 -1 unnamed_device 24.1 MiB 1.54 669 12808 5105 6141 1562 62.6 MiB 0.11 0.00 3.73366 -117.212 -3.73366 3.73366 0.68 0.000595996 0.000553381 0.0463648 0.0430892 34 1754 25 6.87369e+06 265503 618332. 2139.56 1.28 0.166191 0.144866 25762 151098 -1 1455 18 1175 1687 112596 25869 2.89901 2.89901 -110.493 -2.89901 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0218209 0.0189984 107 34 58 29 29 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_105.v common 6.15 vpr 63.10 MiB 0.02 7036 -1 -1 1 0.03 -1 -1 30244 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64612 32 32 334 290 1 156 81 17 17 289 -1 unnamed_device 24.3 MiB 2.18 808 7256 1653 5365 238 63.1 MiB 0.08 0.00 4.2805 -117.484 -4.2805 4.2805 0.67 0.000664032 0.000616145 0.0290896 0.026989 34 1923 25 6.87369e+06 237555 618332. 2139.56 1.35 0.158451 0.136918 25762 151098 -1 1662 14 721 1042 77085 17966 2.95265 2.95265 -113.052 -2.95265 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0292795 0.0253775 102 82 0 0 82 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_106.v common 7.47 vpr 63.43 MiB 0.03 7124 -1 -1 1 0.03 -1 -1 30568 -1 -1 39 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64948 31 32 365 281 1 197 102 17 17 289 -1 unnamed_device 24.6 MiB 1.59 1136 19618 6151 11073 2394 63.4 MiB 0.18 0.00 4.1886 -141.394 -4.1886 4.1886 0.68 0.00071329 0.000661131 0.0612709 0.0567046 30 2699 23 6.87369e+06 544980 556674. 1926.21 3.03 0.259973 0.226215 25186 138497 -1 2193 20 1660 2874 195616 42268 3.6781 3.6781 -141.726 -3.6781 0 0 706193. 2443.58 0.28 0.08 0.13 -1 -1 0.28 0.0268777 0.0238643 152 34 93 31 31 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_107.v common 6.40 vpr 62.91 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30596 -1 -1 32 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64416 29 32 297 254 1 148 93 17 17 289 -1 unnamed_device 24.3 MiB 2.93 794 17103 5256 9538 2309 62.9 MiB 0.13 0.00 3.45975 -106.144 -3.45975 3.45975 0.68 0.000607363 0.000563615 0.0504777 0.0468142 24 2180 22 6.87369e+06 447163 470940. 1629.55 0.93 0.124395 0.109944 24034 113901 -1 1822 23 1296 2150 165627 37347 3.04626 3.04626 -111.465 -3.04626 0 0 586450. 2029.24 0.17 0.08 0.09 -1 -1 0.17 0.026463 0.022792 108 56 29 29 52 26 +fixed_k6_frac_ripple_N8_22nm.xml mult_108.v common 6.96 vpr 62.76 MiB 0.02 6952 -1 -1 1 0.03 -1 -1 30528 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64264 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 2.94 809 12464 3077 8852 535 62.8 MiB 0.12 0.00 3.7104 -131.395 -3.7104 3.7104 0.70 0.00064619 0.000600322 0.0491605 0.0456985 34 2177 26 6.87369e+06 223581 618332. 2139.56 1.40 0.180515 0.157706 25762 151098 -1 1743 22 1266 2010 137010 33558 3.09326 3.09326 -129.877 -3.09326 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0272785 0.0236778 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_109.v common 7.45 vpr 63.39 MiB 0.03 7124 -1 -1 1 0.04 -1 -1 30544 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 387 307 1 193 98 17 17 289 -1 unnamed_device 24.6 MiB 3.16 1003 13598 3664 8482 1452 63.4 MiB 0.13 0.00 3.61625 -124.489 -3.61625 3.61625 0.70 0.000765932 0.000703788 0.0486294 0.0450162 34 2145 19 6.87369e+06 489084 618332. 2139.56 1.39 0.180607 0.157927 25762 151098 -1 1846 19 1502 2363 143190 34029 3.06356 3.06356 -119.357 -3.06356 0 0 787024. 2723.27 0.31 0.08 0.15 -1 -1 0.31 0.0280379 0.025009 146 64 58 31 62 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_110.v common 6.10 vpr 62.71 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30572 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 31 32 308 262 1 154 79 17 17 289 -1 unnamed_device 24.2 MiB 2.64 698 11402 3727 5924 1751 62.7 MiB 0.11 0.00 3.33623 -109.833 -3.33623 3.33623 0.69 0.000488855 0.000450049 0.0432308 0.039934 26 2163 24 6.87369e+06 223581 503264. 1741.40 0.86 0.120668 0.106082 24322 120374 -1 1790 19 1139 1838 132439 32330 2.94931 2.94931 -117.256 -2.94931 0 0 618332. 2139.56 0.17 0.07 0.10 -1 -1 0.17 0.0241201 0.0209994 103 55 31 31 53 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_111.v common 6.37 vpr 63.44 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30656 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64964 32 32 383 307 1 190 101 17 17 289 -1 unnamed_device 24.6 MiB 2.72 1019 17256 4700 9815 2741 63.4 MiB 0.15 0.00 3.59195 -122.625 -3.59195 3.59195 0.68 0.000732112 0.00067947 0.0559864 0.0519196 32 2433 23 6.87369e+06 517032 586450. 2029.24 0.90 0.146388 0.129426 25474 144626 -1 2006 19 1318 2174 136594 32574 2.81296 2.81296 -115.38 -2.81296 0 0 744469. 2576.02 0.28 0.07 0.12 -1 -1 0.28 0.0233012 0.020492 143 65 52 26 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_112.v common 6.66 vpr 63.45 MiB 0.02 7184 -1 -1 1 0.03 -1 -1 30660 -1 -1 39 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 31 32 422 339 1 196 102 17 17 289 -1 unnamed_device 24.5 MiB 3.06 929 10336 2368 6764 1204 63.5 MiB 0.11 0.00 3.59605 -120.102 -3.59605 3.59605 0.68 0.000784592 0.000726093 0.0366402 0.0339179 32 2253 20 6.87369e+06 544980 586450. 2029.24 0.89 0.129227 0.113314 25474 144626 -1 1822 19 1482 2238 124715 31023 2.93496 2.93496 -116.799 -2.93496 0 0 744469. 2576.02 0.20 0.07 0.12 -1 -1 0.20 0.0291161 0.0253234 151 93 31 31 92 31 +fixed_k6_frac_ripple_N8_22nm.xml mult_113.v common 6.50 vpr 63.08 MiB 0.02 6964 -1 -1 1 0.04 -1 -1 30436 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 333 279 1 164 81 17 17 289 -1 unnamed_device 24.2 MiB 2.52 812 13206 3975 7418 1813 63.1 MiB 0.12 0.00 3.26897 -114.681 -3.26897 3.26897 0.68 0.000658474 0.000611421 0.0515997 0.0478979 34 2029 26 6.87369e+06 237555 618332. 2139.56 1.34 0.183192 0.160146 25762 151098 -1 1758 21 1238 2009 153259 34343 2.82101 2.82101 -115.405 -2.82101 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0269475 0.0234282 110 61 32 32 60 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_114.v common 6.48 vpr 63.22 MiB 0.02 6988 -1 -1 1 0.03 -1 -1 30224 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64736 32 32 339 283 1 166 80 17 17 289 -1 unnamed_device 24.4 MiB 2.96 923 10056 2840 6443 773 63.2 MiB 0.10 0.00 3.6884 -128.712 -3.6884 3.6884 0.68 0.000674015 0.000624495 0.0412775 0.0383128 32 2357 21 6.87369e+06 223581 586450. 2029.24 0.93 0.120737 0.106328 25474 144626 -1 1980 20 1235 1990 142672 32817 2.84266 2.84266 -121.59 -2.84266 0 0 744469. 2576.02 0.20 0.07 0.12 -1 -1 0.20 0.025946 0.022537 112 63 32 32 62 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_115.v common 6.68 vpr 63.40 MiB 0.03 7068 -1 -1 1 0.04 -1 -1 30888 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64924 32 32 407 319 1 202 104 17 17 289 -1 unnamed_device 24.6 MiB 2.57 1032 14988 3846 9829 1313 63.4 MiB 0.14 0.00 4.29009 -147.998 -4.29009 4.29009 0.67 0.000767222 0.000711414 0.0496892 0.046004 32 2755 22 6.87369e+06 558954 586450. 2029.24 1.39 0.176461 0.154823 25474 144626 -1 2267 22 2090 3393 218686 51502 3.703 3.703 -148.642 -3.703 0 0 744469. 2576.02 0.20 0.10 0.12 -1 -1 0.20 0.0328706 0.0286444 157 65 64 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_116.v common 6.11 vpr 63.21 MiB 0.03 7072 -1 -1 1 0.03 -1 -1 30696 -1 -1 34 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 29 32 367 293 1 185 95 17 17 289 -1 unnamed_device 24.5 MiB 2.23 880 11759 2826 8215 718 63.2 MiB 0.11 0.00 3.59605 -112.745 -3.59605 3.59605 0.67 0.000571496 0.000522319 0.0341272 0.0312647 26 2623 35 6.87369e+06 475111 503264. 1741.40 1.32 0.138803 0.12121 24322 120374 -1 2129 20 1285 2062 150740 35685 3.08726 3.08726 -121.061 -3.08726 0 0 618332. 2139.56 0.17 0.08 0.10 -1 -1 0.17 0.0277776 0.0241751 140 62 56 29 58 29 +fixed_k6_frac_ripple_N8_22nm.xml mult_117.v common 9.35 vpr 63.61 MiB 0.03 7152 -1 -1 1 0.04 -1 -1 30740 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65140 32 32 469 381 1 202 104 17 17 289 -1 unnamed_device 25.0 MiB 5.05 930 19136 5654 10352 3130 63.6 MiB 0.18 0.00 4.25669 -144.754 -4.25669 4.25669 0.67 0.000860943 0.000791627 0.0702192 0.0649759 32 2944 28 6.87369e+06 558954 586450. 2029.24 1.45 0.212818 0.186497 25474 144626 -1 2312 21 1847 3037 222662 51321 3.9677 3.9677 -150.344 -3.9677 0 0 744469. 2576.02 0.22 0.13 0.12 -1 -1 0.22 0.0453089 0.0398134 157 127 0 0 128 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_118.v common 4.08 vpr 62.62 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30488 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64128 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 24.1 MiB 0.64 801 6501 1452 4525 524 62.6 MiB 0.07 0.00 3.09052 -106.923 -3.09052 3.09052 0.67 0.000578194 0.000538756 0.0238421 0.0222224 32 2026 24 6.87369e+06 223581 586450. 2029.24 0.85 0.093995 0.0821532 25474 144626 -1 1610 22 1100 1764 117858 27719 2.85696 2.85696 -112.533 -2.85696 0 0 744469. 2576.02 0.20 0.06 0.12 -1 -1 0.20 0.0244854 0.021282 104 4 85 31 0 0 +fixed_k6_frac_ripple_N8_22nm.xml mult_119.v common 6.62 vpr 63.51 MiB 0.03 7212 -1 -1 1 0.04 -1 -1 30668 -1 -1 37 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65032 32 32 418 338 1 194 101 17 17 289 -1 unnamed_device 24.6 MiB 1.99 977 17961 5555 9821 2585 63.5 MiB 0.16 0.00 4.24789 -140.827 -4.24789 4.24789 0.77 0.000773721 0.000717675 0.0619928 0.0574013 34 2242 21 6.87369e+06 517032 618332. 2139.56 1.47 0.193896 0.170305 25762 151098 -1 1921 21 1405 2113 133129 31408 3.7251 3.7251 -139.126 -3.7251 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0275189 0.0242057 147 92 28 28 92 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_120.v common 8.59 vpr 63.08 MiB 0.02 7004 -1 -1 1 0.04 -1 -1 30300 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64596 32 32 376 318 1 168 80 17 17 289 -1 unnamed_device 24.5 MiB 4.21 961 12808 4157 6979 1672 63.1 MiB 0.12 0.00 3.7416 -135.274 -3.7416 3.7416 0.81 0.000725729 0.000673278 0.0563573 0.0523741 34 2112 21 6.87369e+06 223581 618332. 2139.56 1.36 0.198637 0.174145 25762 151098 -1 1885 17 1204 1722 116370 26804 3.09651 3.09651 -132.435 -3.09651 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0264144 0.0231227 114 96 0 0 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_121.v common 6.54 vpr 63.54 MiB 0.02 6976 -1 -1 1 0.03 -1 -1 30492 -1 -1 39 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65064 32 32 401 316 1 199 103 17 17 289 -1 unnamed_device 24.7 MiB 2.68 1013 13117 3136 9263 718 63.5 MiB 0.13 0.00 3.62407 -127.528 -3.62407 3.62407 0.69 0.00076633 0.000708956 0.0441487 0.040865 28 2500 27 6.87369e+06 544980 531479. 1839.03 1.10 0.129036 0.11395 24610 126494 -1 2262 19 1455 2201 148578 35127 3.12956 3.12956 -127.058 -3.12956 0 0 648988. 2245.63 0.26 0.08 0.13 -1 -1 0.26 0.0271988 0.0239979 153 65 61 32 64 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_122.v common 8.24 vpr 63.58 MiB 0.03 7284 -1 -1 1 0.04 -1 -1 31100 -1 -1 47 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 500 382 1 236 111 17 17 289 -1 unnamed_device 25.2 MiB 4.35 1138 14475 3597 10051 827 63.6 MiB 0.15 0.00 4.97494 -166.026 -4.97494 4.97494 0.68 0.000911567 0.000846218 0.0529214 0.0489431 32 3253 22 6.87369e+06 656770 586450. 2029.24 1.08 0.166917 0.146832 25474 144626 -1 2461 22 2329 3685 265741 60641 4.37395 4.37395 -164.479 -4.37395 0 0 744469. 2576.02 0.21 0.11 0.13 -1 -1 0.21 0.0388312 0.0337589 190 96 64 32 96 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_123.v common 5.30 vpr 62.47 MiB 0.02 6848 -1 -1 1 0.03 -1 -1 30344 -1 -1 14 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63968 30 32 246 229 1 118 76 17 17 289 -1 unnamed_device 23.8 MiB 1.84 613 9036 2242 6211 583 62.5 MiB 0.07 0.00 2.94746 -92.2629 -2.94746 2.94746 0.69 0.000524725 0.000487736 0.0315498 0.0293232 32 1419 20 6.87369e+06 195634 586450. 2029.24 0.80 0.0923444 0.0810667 25474 144626 -1 1277 15 561 777 64376 15099 2.08882 2.08882 -90.0276 -2.08882 0 0 744469. 2576.02 0.29 0.04 0.14 -1 -1 0.29 0.0166322 0.014476 72 56 0 0 53 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_124.v common 4.41 vpr 62.59 MiB 0.02 6916 -1 -1 1 0.03 -1 -1 30540 -1 -1 18 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 30 32 296 244 1 158 80 17 17 289 -1 unnamed_device 24.0 MiB 0.89 764 12120 4745 5717 1658 62.6 MiB 0.11 0.00 3.7196 -120.247 -3.7196 3.7196 0.68 0.000610203 0.000566959 0.04507 0.0418975 32 1925 22 6.87369e+06 251529 586450. 2029.24 0.87 0.11907 0.105259 25474 144626 -1 1591 20 1247 1772 118413 27640 3.18556 3.18556 -122.51 -3.18556 0 0 744469. 2576.02 0.21 0.07 0.13 -1 -1 0.21 0.0241025 0.0209587 109 34 60 30 30 30 +fixed_k6_frac_ripple_N8_22nm.xml mult_125.v common 5.36 vpr 63.11 MiB 0.02 6840 -1 -1 1 0.03 -1 -1 30256 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 32 32 314 256 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 1.15 884 12464 4265 6183 2016 63.1 MiB 0.12 0.00 3.52575 -127.584 -3.52575 3.52575 0.69 0.000638359 0.0005924 0.0483686 0.0448626 34 2460 20 6.87369e+06 223581 618332. 2139.56 1.40 0.173657 0.151731 25762 151098 -1 2114 18 1361 2455 180211 42064 2.99326 2.99326 -126.401 -2.99326 0 0 787024. 2723.27 0.30 0.07 0.15 -1 -1 0.30 0.0204911 0.0180837 114 34 64 32 32 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_126.v common 4.00 vpr 62.57 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30480 -1 -1 37 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64072 25 32 251 214 1 139 94 17 17 289 -1 unnamed_device 24.1 MiB 0.67 742 15004 4316 8330 2358 62.6 MiB 0.11 0.00 3.44875 -93.4127 -3.44875 3.44875 0.68 0.000472018 0.000444333 0.038599 0.035825 30 1638 20 6.87369e+06 517032 556674. 1926.21 0.80 0.100535 0.088487 25186 138497 -1 1402 22 950 1565 87054 21069 2.67036 2.67036 -92.3339 -2.67036 0 0 706193. 2443.58 0.19 0.06 0.12 -1 -1 0.19 0.0222914 0.0192605 105 34 50 25 25 25 +fixed_k6_frac_ripple_N8_22nm.xml mult_127.v common 7.18 vpr 63.39 MiB 0.04 7028 -1 -1 1 0.03 -1 -1 30712 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 32 32 432 346 1 200 85 17 17 289 -1 unnamed_device 24.6 MiB 2.87 1035 11989 3061 8035 893 63.4 MiB 0.13 0.00 4.14459 -143.245 -4.14459 4.14459 0.68 0.000787788 0.000729305 0.0539462 0.0500163 34 2668 24 6.87369e+06 293451 618332. 2139.56 1.47 0.21643 0.188892 25762 151098 -1 2166 22 1795 3346 221585 52444 3.6711 3.6711 -138.977 -3.6711 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0338671 0.0294566 145 94 32 32 94 32 +fixed_k6_frac_ripple_N8_22nm.xml mult_128.v common 6.67 vpr 63.63 MiB 0.03 7184 -1 -1 1 0.03 -1 -1 30532 -1 -1 40 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65160 31 32 421 339 1 195 103 17 17 289 -1 unnamed_device 24.7 MiB 2.46 969 12394 3038 8536 820 63.6 MiB 0.12 0.00 3.62425 -121.977 -3.62425 3.62425 0.68 0.000776489 0.000718303 0.0434606 0.0401466 34 2184 20 6.87369e+06 558954 618332. 2139.56 1.40 0.200229 0.174102 25762 151098 -1 1929 21 1609 2477 150179 36567 2.85366 2.85366 -118.527 -2.85366 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0272689 0.0239776 151 94 29 29 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_001.v common 5.84 vpr 63.51 MiB 0.02 7092 -1 -1 1 0.03 -1 -1 30920 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65036 32 32 438 350 1 295 93 17 17 289 -1 unnamed_device 24.8 MiB 1.47 1383 18363 6134 9531 2698 63.5 MiB 0.18 0.00 5.11247 -173.262 -5.11247 5.11247 0.68 0.000807464 0.00074768 0.0731075 0.0677676 36 3365 28 6.89349e+06 408721 648988. 2245.63 1.58 0.241522 0.21143 26050 158493 -1 2745 21 2136 2678 193109 43669 4.73885 4.73885 -171.775 -4.73885 0 0 828058. 2865.25 0.24 0.10 0.13 -1 -1 0.24 0.0374431 0.0336686 192 96 32 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_002.v common 7.82 vpr 63.32 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30732 -1 -1 29 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64836 30 32 409 330 1 262 91 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1338 16411 5641 8181 2589 63.3 MiB 0.16 0.00 5.22297 -160.634 -5.22297 5.22297 0.68 0.000647262 0.000594958 0.0639061 0.0592489 38 2833 27 6.89349e+06 408721 678818. 2348.85 3.58 0.278971 0.243053 26626 170182 -1 2519 20 1791 2478 169443 37267 4.26218 4.26218 -147.328 -4.26218 0 0 902133. 3121.57 0.24 0.08 0.16 -1 -1 0.24 0.0295669 0.025753 177 91 30 30 89 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_003.v common 6.60 vpr 63.23 MiB 0.05 7140 -1 -1 1 0.03 -1 -1 30516 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64752 32 32 387 309 1 253 89 17 17 289 -1 unnamed_device 24.5 MiB 2.04 1277 15533 4267 9018 2248 63.2 MiB 0.16 0.00 4.0146 -140.879 -4.0146 4.0146 0.69 0.000743129 0.000689319 0.0610509 0.0566212 34 3149 26 6.89349e+06 352346 618332. 2139.56 1.65 0.216648 0.18953 25762 151098 -1 2551 17 1473 1830 150030 31493 3.7634 3.7634 -142.429 -3.7634 0 0 787024. 2723.27 0.29 0.07 0.15 -1 -1 0.29 0.0238312 0.0211569 167 65 54 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_004.v common 6.28 vpr 62.74 MiB 0.03 7112 -1 -1 1 0.03 -1 -1 30644 -1 -1 25 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64244 29 32 343 267 1 209 86 17 17 289 -1 unnamed_device 24.3 MiB 1.77 1071 16718 5447 9404 1867 62.7 MiB 0.16 0.00 4.53305 -141.516 -4.53305 4.53305 0.89 0.000689407 0.000641569 0.0628322 0.0583778 34 2461 20 6.89349e+06 352346 618332. 2139.56 1.43 0.181531 0.159975 25762 151098 -1 1971 23 1663 2590 145705 35546 3.68426 3.68426 -135.459 -3.68426 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0309339 0.026865 148 34 87 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_005.v common 6.31 vpr 63.34 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30484 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.5 MiB 1.73 1361 14518 4265 8140 2113 63.3 MiB 0.19 0.00 5.03124 -172.909 -5.03124 5.03124 0.76 0.000741 0.000688873 0.0650014 0.0597471 34 3365 25 6.89349e+06 338252 618332. 2139.56 1.56 0.185769 0.16315 25762 151098 -1 2770 21 2166 3726 244214 55671 4.31015 4.31015 -163.98 -4.31015 0 0 787024. 2723.27 0.29 0.12 0.13 -1 -1 0.29 0.0385587 0.0340561 163 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_006.v common 6.07 vpr 63.45 MiB 0.02 7040 -1 -1 1 0.03 -1 -1 30636 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64972 32 32 402 316 1 257 105 17 17 289 -1 unnamed_device 24.6 MiB 1.67 1499 20359 6047 11800 2512 63.4 MiB 0.19 0.00 4.44565 -148.532 -4.44565 4.44565 0.68 0.000774847 0.000719428 0.0657949 0.0608707 34 3390 19 6.89349e+06 577847 618332. 2139.56 1.64 0.211954 0.186648 25762 151098 -1 2763 19 1683 2681 169182 38061 3.4527 3.4527 -136.16 -3.4527 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0287917 0.0251148 179 64 63 32 63 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_007.v common 5.03 vpr 62.57 MiB 0.04 6848 -1 -1 1 0.03 -1 -1 30760 -1 -1 21 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64072 27 32 269 226 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 1.55 730 14528 4147 9388 993 62.6 MiB 0.13 0.00 3.83226 -109.129 -3.83226 3.83226 0.68 0.000570323 0.0005304 0.0515481 0.0479903 30 2039 26 6.89349e+06 295971 556674. 1926.21 0.88 0.124347 0.109942 25186 138497 -1 1610 19 1077 1556 98401 24134 3.16615 3.16615 -109.066 -3.16615 0 0 706193. 2443.58 0.19 0.07 0.12 -1 -1 0.19 0.0200835 0.0175966 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_008.v common 4.78 vpr 62.95 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30392 -1 -1 35 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64456 31 32 317 242 1 187 98 17 17 289 -1 unnamed_device 24.1 MiB 0.69 921 14273 4335 7347 2591 62.9 MiB 0.12 0.00 3.53335 -112.01 -3.53335 3.53335 0.68 0.000672173 0.000621968 0.0442252 0.0410034 34 2399 21 6.89349e+06 493284 618332. 2139.56 1.41 0.175312 0.152961 25762 151098 -1 1808 21 1119 1957 119541 27900 2.63951 2.63951 -102.46 -2.63951 0 0 787024. 2723.27 0.21 0.07 0.15 -1 -1 0.21 0.0277768 0.0242005 141 4 115 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_009.v common 6.05 vpr 62.66 MiB 0.02 7084 -1 -1 1 0.03 -1 -1 30348 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64164 31 32 338 292 1 225 84 17 17 289 -1 unnamed_device 24.2 MiB 1.82 1141 14358 3961 8348 2049 62.7 MiB 0.14 0.00 3.63141 -123.531 -3.63141 3.63141 0.69 0.00065924 0.000612315 0.054351 0.0505196 34 2778 28 6.89349e+06 295971 618332. 2139.56 1.42 0.190075 0.165872 25762 151098 -1 2210 21 1584 1952 125436 29565 3.04161 3.04161 -119.318 -3.04161 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0253841 0.0224473 140 85 0 0 84 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_010.v common 5.60 vpr 62.61 MiB 0.02 6836 -1 -1 1 0.03 -1 -1 30648 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64108 32 32 314 256 1 193 83 17 17 289 -1 unnamed_device 24.0 MiB 1.47 873 6923 1573 5100 250 62.6 MiB 0.08 0.00 3.71245 -131.003 -3.71245 3.71245 0.69 0.000645947 0.000600653 0.0270393 0.0251403 34 2262 23 6.89349e+06 267783 618332. 2139.56 1.50 0.14847 0.129383 25762 151098 -1 1861 21 1490 1950 133825 31104 3.11861 3.11861 -127.418 -3.11861 0 0 787024. 2723.27 0.23 0.07 0.15 -1 -1 0.23 0.0261286 0.0227251 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_011.v common 5.93 vpr 62.60 MiB 0.02 7108 -1 -1 1 0.03 -1 -1 30284 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64104 30 32 325 273 1 203 83 17 17 289 -1 unnamed_device 24.0 MiB 1.89 942 6923 1677 4944 302 62.6 MiB 0.08 0.00 4.3965 -138.695 -4.3965 4.3965 0.77 0.00064551 0.000600139 0.0269795 0.0250781 34 2366 24 6.89349e+06 295971 618332. 2139.56 1.38 0.156167 0.134969 25762 151098 -1 1953 18 1405 1868 120082 27813 3.70525 3.70525 -138.321 -3.70525 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0235921 0.0205502 135 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_012.v common 6.23 vpr 63.12 MiB 0.02 6860 -1 -1 1 0.03 -1 -1 30628 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64636 32 32 331 280 1 215 84 17 17 289 -1 unnamed_device 24.2 MiB 1.90 883 15822 6326 7340 2156 63.1 MiB 0.14 0.00 3.8129 -121.35 -3.8129 3.8129 0.73 0.000664742 0.000617687 0.0590062 0.0548057 36 2272 34 6.89349e+06 281877 648988. 2245.63 1.57 0.202706 0.177549 26050 158493 -1 1760 20 1123 1259 89738 21985 2.91821 2.91821 -111.83 -2.91821 0 0 828058. 2865.25 0.26 0.06 0.13 -1 -1 0.26 0.0255922 0.0222636 135 65 25 25 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_013.v common 7.42 vpr 63.14 MiB 0.02 7068 -1 -1 1 0.04 -1 -1 30492 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 386 305 1 239 89 17 17 289 -1 unnamed_device 24.4 MiB 1.21 987 17513 5731 7853 3929 63.1 MiB 0.16 0.00 4.23419 -140.25 -4.23419 4.23419 0.77 0.000747394 0.000691726 0.0697815 0.0646839 38 2960 48 6.89349e+06 352346 678818. 2348.85 3.20 0.25853 0.226315 26626 170182 -1 2047 21 1870 2551 179023 42643 3.158 3.158 -120.917 -3.158 0 0 902133. 3121.57 0.34 0.09 0.17 -1 -1 0.34 0.0299338 0.0264471 161 58 64 32 57 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_014.v common 5.76 vpr 63.31 MiB 0.04 6952 -1 -1 1 0.03 -1 -1 30752 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64832 32 32 407 319 1 264 92 17 17 289 -1 unnamed_device 24.4 MiB 1.29 1162 11063 2970 6995 1098 63.3 MiB 0.12 0.00 5.02024 -166.562 -5.02024 5.02024 0.70 0.000772266 0.000715788 0.0438674 0.0406561 34 3241 39 6.89349e+06 394628 618332. 2139.56 1.66 0.185435 0.162363 25762 151098 -1 2483 29 2527 3411 221570 51585 4.53695 4.53695 -163.988 -4.53695 0 0 787024. 2723.27 0.29 0.11 0.13 -1 -1 0.29 0.0389357 0.0343899 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_015.v common 5.13 vpr 62.32 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30788 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63812 29 32 272 228 1 171 82 17 17 289 -1 unnamed_device 23.8 MiB 1.29 754 11296 2879 7697 720 62.3 MiB 0.09 0.00 3.61645 -112 -3.61645 3.61645 0.68 0.000571184 0.000531199 0.0382852 0.0355595 34 1902 19 6.89349e+06 295971 618332. 2139.56 1.29 0.148744 0.12943 25762 151098 -1 1541 19 953 1313 92527 22585 2.72266 2.72266 -103.726 -2.72266 0 0 787024. 2723.27 0.24 0.03 0.13 -1 -1 0.24 0.012029 0.0106244 112 29 58 29 24 24 +fixed_k6_frac_uripple_N8_22nm.xml mult_016.v common 6.72 vpr 63.21 MiB 0.05 7176 -1 -1 1 0.04 -1 -1 30588 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64732 32 32 401 315 1 256 89 17 17 289 -1 unnamed_device 24.5 MiB 2.21 1259 17315 5682 9212 2421 63.2 MiB 0.18 0.00 4.31019 -146.5 -4.31019 4.31019 0.68 0.000772027 0.000717149 0.0661742 0.0610766 34 3604 27 6.89349e+06 352346 618332. 2139.56 1.69 0.22778 0.199051 25762 151098 -1 2904 24 2567 4113 300266 66861 3.66135 3.66135 -143.468 -3.66135 0 0 787024. 2723.27 0.26 0.07 0.15 -1 -1 0.26 0.0191213 0.0168839 174 63 64 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_017.v common 5.34 vpr 63.46 MiB 0.04 7068 -1 -1 1 0.03 -1 -1 30488 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64980 32 32 383 303 1 236 89 17 17 289 -1 unnamed_device 24.7 MiB 1.04 1183 12365 3291 7811 1263 63.5 MiB 0.13 0.00 3.69045 -130.871 -3.69045 3.69045 0.60 0.000738633 0.000685657 0.048535 0.0450426 34 2802 22 6.89349e+06 352346 618332. 2139.56 1.49 0.196325 0.17149 25762 151098 -1 2265 22 1654 2054 139102 31626 2.98231 2.98231 -120.304 -2.98231 0 0 787024. 2723.27 0.24 0.10 0.15 -1 -1 0.24 0.0342084 0.0296905 160 57 64 32 56 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_018.v common 6.04 vpr 63.03 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30212 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64540 32 32 339 284 1 224 86 17 17 289 -1 unnamed_device 24.4 MiB 1.62 1015 15395 4903 8010 2482 63.0 MiB 0.15 0.00 3.61051 -123.557 -3.61051 3.61051 0.79 0.000588287 0.000544371 0.0557054 0.0515402 36 2680 40 6.89349e+06 310065 648988. 2245.63 1.54 0.192697 0.168281 26050 158493 -1 2120 18 1572 2063 145665 33864 2.81696 2.81696 -115.354 -2.81696 0 0 828058. 2865.25 0.26 0.07 0.13 -1 -1 0.26 0.0227743 0.0201363 139 65 29 29 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_019.v common 4.69 vpr 62.35 MiB 0.04 6760 -1 -1 1 0.03 -1 -1 30412 -1 -1 15 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63844 30 32 226 208 1 142 77 17 17 289 -1 unnamed_device 23.8 MiB 0.96 569 8227 1998 5670 559 62.3 MiB 0.06 0.00 3.06366 -95.1937 -3.06366 3.06366 0.68 0.000512838 0.000466239 0.0270462 0.0251657 34 1456 18 6.89349e+06 211408 618332. 2139.56 1.19 0.122812 0.106386 25762 151098 -1 1192 20 714 846 62532 15349 2.15017 2.15017 -84.7796 -2.15017 0 0 787024. 2723.27 0.22 0.05 0.10 -1 -1 0.22 0.0190829 0.0166761 85 34 24 24 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_020.v common 5.42 vpr 62.84 MiB 0.02 7060 -1 -1 1 0.03 -1 -1 30588 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64352 31 32 335 280 1 217 85 17 17 289 -1 unnamed_device 24.0 MiB 1.35 1101 13663 4048 7780 1835 62.8 MiB 0.13 0.00 4.32835 -147.32 -4.32835 4.32835 0.68 0.000652558 0.000605581 0.0503566 0.0467225 34 2520 21 6.89349e+06 310065 618332. 2139.56 1.39 0.179521 0.156616 25762 151098 -1 2119 18 1271 1720 119914 27608 3.42145 3.42145 -136.007 -3.42145 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0241562 0.021086 141 64 31 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_021.v common 5.13 vpr 63.13 MiB 0.02 7008 -1 -1 1 0.04 -1 -1 30468 -1 -1 40 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 366 283 1 228 104 17 17 289 -1 unnamed_device 24.3 MiB 0.91 1052 20112 6009 11047 3056 63.1 MiB 0.18 0.00 4.67003 -155.404 -4.67003 4.67003 0.68 0.000726665 0.000674248 0.0630465 0.0584963 34 2526 19 6.89349e+06 563754 618332. 2139.56 1.45 0.207043 0.181869 25762 151098 -1 2147 22 1976 2782 188972 42704 3.91394 3.91394 -144.164 -3.91394 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0308042 0.0268023 166 34 91 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_022.v common 5.51 vpr 63.52 MiB 0.03 7280 -1 -1 1 0.04 -1 -1 30812 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65040 32 32 460 375 1 309 95 17 17 289 -1 unnamed_device 24.7 MiB 1.25 1507 16511 4972 9774 1765 63.5 MiB 0.17 0.00 4.34661 -147.62 -4.34661 4.34661 0.68 0.000833838 0.00077399 0.0667271 0.061855 34 3715 34 6.89349e+06 436909 618332. 2139.56 1.50 0.216583 0.189646 25762 151098 -1 2889 23 2279 2616 186250 43018 3.7586 3.7586 -142.56 -3.7586 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0369553 0.0320819 201 124 0 0 125 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_023.v common 5.38 vpr 62.17 MiB 0.02 6872 -1 -1 1 0.03 -1 -1 30700 -1 -1 18 26 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63660 26 32 198 186 1 129 76 17 17 289 -1 unnamed_device 23.7 MiB 1.17 692 10476 3888 5359 1229 62.2 MiB 0.08 0.00 2.84541 -81.5212 -2.84541 2.84541 0.71 0.000443444 0.000411435 0.0303636 0.0281397 28 1555 23 6.89349e+06 253689 531479. 1839.03 1.64 0.139685 0.120771 24610 126494 -1 1302 15 554 711 50324 11354 2.20032 2.20032 -80.4836 -2.20032 0 0 648988. 2245.63 0.23 0.04 0.11 -1 -1 0.23 0.0147014 0.0129745 77 30 26 26 22 22 +fixed_k6_frac_uripple_N8_22nm.xml mult_024.v common 5.06 vpr 62.71 MiB 0.02 6948 -1 -1 1 0.04 -1 -1 30372 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64212 32 32 333 251 1 196 85 17 17 289 -1 unnamed_device 24.1 MiB 1.07 1016 9571 2543 6414 614 62.7 MiB 0.10 0.00 4.12784 -139.243 -4.12784 4.12784 0.71 0.000659282 0.000617139 0.037485 0.0348193 30 2786 37 6.89349e+06 295971 556674. 1926.21 1.37 0.140768 0.123719 25186 138497 -1 2116 24 1422 2615 150282 36059 3.85235 3.85235 -144.388 -3.85235 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0306813 0.0266308 141 3 122 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_025.v common 3.53 vpr 62.00 MiB 0.02 6656 -1 -1 1 0.03 -1 -1 30600 -1 -1 12 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63484 32 32 199 182 1 122 76 17 17 289 -1 unnamed_device 23.6 MiB 0.28 514 9356 2285 6456 615 62.0 MiB 0.07 0.00 2.43188 -86.7872 -2.43188 2.43188 0.68 0.000474229 0.000440251 0.029004 0.026907 28 1515 24 6.89349e+06 169126 531479. 1839.03 0.84 0.0865091 0.0761306 24610 126494 -1 1332 22 798 1138 82530 21699 1.90776 1.90776 -88.6265 -1.90776 0 0 648988. 2245.63 0.18 0.05 0.11 -1 -1 0.18 0.0198497 0.0172884 71 3 53 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_026.v common 4.85 vpr 63.05 MiB 0.02 7004 -1 -1 1 0.03 -1 -1 30680 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64560 32 32 376 288 1 233 89 17 17 289 -1 unnamed_device 24.3 MiB 1.20 1097 15929 4551 10101 1277 63.0 MiB 0.16 0.00 4.62958 -159.64 -4.62958 4.62958 0.67 0.000732898 0.000680696 0.0613129 0.0569864 30 2755 25 6.89349e+06 352346 556674. 1926.21 0.93 0.153121 0.135731 25186 138497 -1 2149 18 1484 2021 120282 29101 3.99286 3.99286 -151.639 -3.99286 0 0 706193. 2443.58 0.20 0.07 0.12 -1 -1 0.20 0.0267714 0.023427 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_027.v common 4.22 vpr 63.10 MiB 0.02 6892 -1 -1 1 0.04 -1 -1 30264 -1 -1 36 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64616 32 32 337 253 1 198 100 17 17 289 -1 unnamed_device 24.2 MiB 0.72 885 10772 2583 7345 844 63.1 MiB 0.11 0.00 3.4709 -116.935 -3.4709 3.4709 0.68 0.000706324 0.000655183 0.0346194 0.0320763 32 2475 21 6.89349e+06 507378 586450. 2029.24 0.87 0.115806 0.101744 25474 144626 -1 1994 20 1296 2036 110969 28676 2.98711 2.98711 -117.86 -2.98711 0 0 744469. 2576.02 0.20 0.07 0.12 -1 -1 0.20 0.0267859 0.023334 151 3 124 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_028.v common 6.04 vpr 63.36 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30712 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1365 8130 1863 5269 998 63.4 MiB 0.10 0.00 4.69935 -162.091 -4.69935 4.69935 0.68 0.000780765 0.000725376 0.033735 0.0313469 34 3376 45 6.89349e+06 366440 618332. 2139.56 1.82 0.191632 0.166725 25762 151098 -1 2893 22 2242 3295 242909 53080 4.08516 4.08516 -157.285 -4.08516 0 0 787024. 2723.27 0.21 0.10 0.09 -1 -1 0.21 0.0337556 0.0295134 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_029.v common 5.98 vpr 62.73 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30304 -1 -1 17 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64236 32 32 294 246 1 188 81 17 17 289 -1 unnamed_device 24.1 MiB 1.70 863 14256 5690 7135 1431 62.7 MiB 0.12 0.00 3.57625 -122.952 -3.57625 3.57625 0.68 0.000613982 0.000570438 0.0519023 0.0482342 34 2597 38 6.89349e+06 239595 618332. 2139.56 1.60 0.163177 0.143086 25762 151098 -1 2019 23 1608 2268 180940 41227 2.99826 2.99826 -124.153 -2.99826 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0269841 0.0233892 118 34 54 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_030.v common 5.69 vpr 62.55 MiB 0.04 6800 -1 -1 1 0.03 -1 -1 30356 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64056 30 32 296 244 1 182 81 17 17 289 -1 unnamed_device 24.0 MiB 1.57 1065 12331 4460 6746 1125 62.6 MiB 0.12 0.00 4.27029 -139.911 -4.27029 4.27029 0.68 0.000619121 0.000574796 0.0458059 0.0425893 34 2559 23 6.89349e+06 267783 618332. 2139.56 1.43 0.168303 0.146806 25762 151098 -1 2119 19 1459 2292 180141 38151 3.5768 3.5768 -140.089 -3.5768 0 0 787024. 2723.27 0.23 0.08 0.14 -1 -1 0.23 0.023414 0.0203839 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_031.v common 7.67 vpr 62.47 MiB 0.02 6924 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63968 28 32 278 232 1 173 81 17 17 289 -1 unnamed_device 23.9 MiB 2.12 839 10231 2827 6777 627 62.5 MiB 0.10 0.00 4.26535 -126.926 -4.26535 4.26535 0.71 0.000583195 0.000542827 0.0360034 0.0334937 28 2602 31 6.89349e+06 295971 531479. 1839.03 2.91 0.190132 0.164844 24610 126494 -1 2060 21 1337 2130 159706 39039 3.80655 3.80655 -135.005 -3.80655 0 0 648988. 2245.63 0.23 0.07 0.12 -1 -1 0.23 0.0238213 0.0206123 115 34 56 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_032.v common 7.21 vpr 62.77 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30488 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64280 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.3 MiB 0.93 860 14700 5342 7547 1811 62.8 MiB 0.13 0.00 3.60535 -129.612 -3.60535 3.60535 0.87 0.0006132 0.000568906 0.0542374 0.0504013 36 2058 20 6.89349e+06 225501 648988. 2245.63 3.37 0.222846 0.193927 26050 158493 -1 1916 20 1310 2220 183223 38868 2.91816 2.91816 -123.556 -2.91816 0 0 828058. 2865.25 0.23 0.08 0.13 -1 -1 0.23 0.0258293 0.0228416 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_033.v common 4.81 vpr 62.55 MiB 0.04 6924 -1 -1 1 0.03 -1 -1 30500 -1 -1 19 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64052 31 32 303 249 1 191 82 17 17 289 -1 unnamed_device 23.9 MiB 1.22 985 14322 4727 7440 2155 62.6 MiB 0.13 0.00 3.69435 -127.028 -3.69435 3.69435 0.68 0.000622296 0.00057861 0.0523481 0.0486334 30 2355 32 6.89349e+06 267783 556674. 1926.21 0.98 0.138062 0.12178 25186 138497 -1 1904 18 1088 1540 90311 21257 2.89006 2.89006 -117.579 -2.89006 0 0 706193. 2443.58 0.20 0.06 0.12 -1 -1 0.20 0.0228831 0.0199745 121 34 61 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_034.v common 5.35 vpr 62.85 MiB 0.02 7080 -1 -1 1 0.03 -1 -1 30332 -1 -1 23 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 29 32 312 264 1 201 84 17 17 289 -1 unnamed_device 24.2 MiB 1.45 1052 14724 4760 7779 2185 62.8 MiB 0.13 0.00 3.57215 -115.596 -3.57215 3.57215 0.67 0.000624093 0.00057967 0.0527548 0.0490466 34 2290 23 6.89349e+06 324158 618332. 2139.56 1.30 0.177827 0.155559 25762 151098 -1 2016 17 1203 1572 104493 23877 2.65056 2.65056 -107.481 -2.65056 0 0 787024. 2723.27 0.21 0.06 0.12 -1 -1 0.21 0.0220756 0.0193026 130 61 29 29 57 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_035.v common 6.90 vpr 63.47 MiB 0.03 7212 -1 -1 1 0.03 -1 -1 30596 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 423 310 1 254 91 17 17 289 -1 unnamed_device 24.6 MiB 1.89 1199 18247 5521 9891 2835 63.5 MiB 0.19 0.00 4.73855 -160.484 -4.73855 4.73855 0.77 0.000630153 0.000579314 0.0607598 0.0559609 34 3215 26 6.89349e+06 380534 618332. 2139.56 2.00 0.232059 0.202754 25762 151098 -1 2667 22 2008 3441 250707 55740 3.83456 3.83456 -150.712 -3.83456 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0336352 0.0296156 184 29 128 32 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_036.v common 6.12 vpr 63.34 MiB 0.03 7084 -1 -1 1 0.04 -1 -1 30676 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 32 32 403 317 1 260 89 17 17 289 -1 unnamed_device 24.4 MiB 1.59 1143 14147 4354 7296 2497 63.3 MiB 0.15 0.00 4.17974 -143.168 -4.17974 4.17974 0.69 0.00077249 0.000716553 0.0573447 0.0531865 34 3279 36 6.89349e+06 352346 618332. 2139.56 1.73 0.230474 0.201276 25762 151098 -1 2630 23 2608 3598 257328 59404 3.8711 3.8711 -146.267 -3.8711 0 0 787024. 2723.27 0.27 0.10 0.13 -1 -1 0.27 0.0296082 0.0260713 173 65 62 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_037.v common 4.94 vpr 63.00 MiB 0.05 6924 -1 -1 1 0.03 -1 -1 30728 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 31 32 353 302 1 229 85 17 17 289 -1 unnamed_device 24.4 MiB 0.90 1094 14965 4562 8063 2340 63.0 MiB 0.14 0.00 3.67235 -123.222 -3.67235 3.67235 0.71 0.000674311 0.000626127 0.0573398 0.053238 34 2554 27 6.89349e+06 310065 618332. 2139.56 1.33 0.193775 0.169232 25762 151098 -1 2066 19 1251 1294 94342 21619 3.02026 3.02026 -117.586 -3.02026 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0253579 0.0220677 143 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_038.v common 6.34 vpr 63.30 MiB 0.03 7184 -1 -1 1 0.04 -1 -1 30524 -1 -1 26 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64820 31 32 391 309 1 246 89 17 17 289 -1 unnamed_device 24.4 MiB 2.02 1244 16523 4277 10843 1403 63.3 MiB 0.17 0.00 4.45875 -146.616 -4.45875 4.45875 0.70 0.000743848 0.000688899 0.0641487 0.0594874 34 3055 38 6.89349e+06 366440 618332. 2139.56 1.53 0.230729 0.201361 25762 151098 -1 2446 23 1753 2565 172181 39799 3.8256 3.8256 -145.045 -3.8256 0 0 787024. 2723.27 0.26 0.08 0.15 -1 -1 0.26 0.0275993 0.0241672 170 64 60 30 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_039.v common 6.04 vpr 63.60 MiB 0.03 7272 -1 -1 1 0.04 -1 -1 30696 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65128 31 32 455 371 1 307 94 17 17 289 -1 unnamed_device 24.8 MiB 1.69 1489 17560 4957 10293 2310 63.6 MiB 0.20 0.00 5.02254 -165.43 -5.02254 5.02254 0.68 0.000834005 0.000774439 0.0691971 0.0641256 34 3550 42 6.89349e+06 436909 618332. 2139.56 1.57 0.232465 0.202966 25762 151098 -1 2775 23 2094 2382 151154 36379 4.39925 4.39925 -160.491 -4.39925 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0376326 0.0326877 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_040.v common 6.56 vpr 63.39 MiB 0.03 7188 -1 -1 1 0.04 -1 -1 30484 -1 -1 28 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64912 31 32 413 333 1 269 91 17 17 289 -1 unnamed_device 24.5 MiB 2.18 1401 11923 3470 7236 1217 63.4 MiB 0.14 0.00 5.49816 -175.294 -5.49816 5.49816 0.68 0.000773384 0.000716938 0.0476377 0.0441977 34 3361 39 6.89349e+06 394628 618332. 2139.56 1.69 0.228045 0.198345 25762 151098 -1 2703 20 2184 2924 190474 45725 4.90874 4.90874 -173.505 -4.90874 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0306448 0.0267506 181 90 31 31 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_041.v common 5.93 vpr 63.27 MiB 0.02 7172 -1 -1 1 0.03 -1 -1 30464 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 31 32 391 309 1 249 90 17 17 289 -1 unnamed_device 24.5 MiB 1.46 1340 14763 4284 8311 2168 63.3 MiB 0.16 0.00 3.76655 -130.012 -3.76655 3.76655 0.73 0.000744995 0.000691284 0.0575005 0.0533206 34 3062 33 6.89349e+06 380534 618332. 2139.56 1.58 0.204944 0.179542 25762 151098 -1 2529 21 1989 2768 191891 44443 3.09846 3.09846 -126.104 -3.09846 0 0 787024. 2723.27 0.31 0.09 0.16 -1 -1 0.31 0.0309007 0.0269534 168 64 60 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_042.v common 6.27 vpr 63.24 MiB 0.03 7132 -1 -1 1 0.03 -1 -1 30616 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64760 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.4 MiB 1.65 1284 16207 4365 9844 1998 63.2 MiB 0.17 0.00 4.62085 -160.706 -4.62085 4.62085 0.88 0.000762945 0.000708264 0.06387 0.0592806 34 3271 41 6.89349e+06 380534 618332. 2139.56 1.68 0.244789 0.21419 25762 151098 -1 2633 22 2092 2842 208099 46652 4.06496 4.06496 -159.304 -4.06496 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0254833 0.0222919 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_043.v common 9.28 vpr 63.48 MiB 0.03 7312 -1 -1 1 0.04 -1 -1 30932 -1 -1 31 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65008 32 32 496 380 1 321 95 17 17 289 -1 unnamed_device 25.0 MiB 2.39 1764 15215 4236 8627 2352 63.5 MiB 0.18 0.00 5.15348 -175.341 -5.15348 5.15348 0.69 0.000858303 0.000780373 0.0660154 0.0612083 36 4411 23 6.89349e+06 436909 648988. 2245.63 4.02 0.351054 0.305194 26050 158493 -1 3673 22 3033 4368 384139 78544 4.91329 4.91329 -176.358 -4.91329 0 0 828058. 2865.25 0.22 0.14 0.13 -1 -1 0.22 0.0404307 0.0352641 220 96 62 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_044.v common 5.32 vpr 62.52 MiB 0.02 6800 -1 -1 1 0.03 -1 -1 30716 -1 -1 20 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64024 31 32 305 250 1 192 83 17 17 289 -1 unnamed_device 23.9 MiB 1.46 822 6743 1455 4759 529 62.5 MiB 0.08 0.00 3.853 -129.297 -3.853 3.853 0.68 0.000632951 0.00058774 0.0255298 0.0237354 34 2080 21 6.89349e+06 281877 618332. 2139.56 1.27 0.146659 0.126964 25762 151098 -1 1655 20 1220 1651 104421 24730 2.92101 2.92101 -119.414 -2.92101 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0245129 0.0213375 127 34 62 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_045.v common 6.26 vpr 63.45 MiB 0.03 7124 -1 -1 1 0.04 -1 -1 30548 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 31 32 395 311 1 251 90 17 17 289 -1 unnamed_device 24.7 MiB 1.62 1294 17376 6419 8627 2330 63.4 MiB 0.18 0.00 5.00234 -161.335 -5.00234 5.00234 0.68 0.000754216 0.000697845 0.068018 0.0630517 34 3207 37 6.89349e+06 380534 618332. 2139.56 1.89 0.254453 0.223727 25762 151098 -1 2421 20 1629 1989 144201 32890 3.97305 3.97305 -146.464 -3.97305 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.02996 0.0262185 168 64 62 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_046.v common 6.53 vpr 63.42 MiB 0.03 6952 -1 -1 1 0.03 -1 -1 30684 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64940 32 32 397 313 1 254 91 17 17 289 -1 unnamed_device 24.6 MiB 1.78 1356 15391 5368 7626 2397 63.4 MiB 0.18 0.00 4.39449 -148.549 -4.39449 4.39449 0.74 0.000760777 0.000705951 0.0672348 0.0623152 34 3355 28 6.89349e+06 380534 618332. 2139.56 1.78 0.212411 0.187918 25762 151098 -1 2762 22 1809 2835 201931 45867 3.575 3.575 -142.597 -3.575 0 0 787024. 2723.27 0.25 0.09 0.15 -1 -1 0.25 0.0324487 0.0283112 172 63 62 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_047.v common 6.03 vpr 62.71 MiB 0.05 7024 -1 -1 1 0.04 -1 -1 30468 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 32 32 345 257 1 202 85 17 17 289 -1 unnamed_device 24.1 MiB 1.51 953 14407 3720 10033 654 62.7 MiB 0.15 0.00 4.3344 -147.594 -4.3344 4.3344 0.68 0.000711951 0.00065907 0.0571312 0.0529379 34 2881 24 6.89349e+06 295971 618332. 2139.56 1.67 0.202426 0.176748 25762 151098 -1 2100 21 1664 2944 180706 43884 4.0679 4.0679 -151.461 -4.0679 0 0 787024. 2723.27 0.24 0.08 0.15 -1 -1 0.24 0.0289186 0.0251526 147 3 128 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_048.v common 5.75 vpr 63.45 MiB 0.02 7212 -1 -1 1 0.04 -1 -1 30556 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64968 32 32 424 343 1 281 92 17 17 289 -1 unnamed_device 24.7 MiB 1.45 1279 18101 5797 9598 2706 63.4 MiB 0.18 0.00 4.41459 -148.068 -4.41459 4.41459 0.70 0.000795741 0.000738813 0.0713123 0.0661627 34 3215 19 6.89349e+06 394628 618332. 2139.56 1.53 0.224586 0.196991 25762 151098 -1 2413 21 1693 1967 136307 32366 3.4245 3.4245 -131.947 -3.4245 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0335541 0.0293314 184 96 25 25 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_049.v common 7.31 vpr 63.32 MiB 0.03 7068 -1 -1 1 0.03 -1 -1 30588 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 395 311 1 255 91 17 17 289 -1 unnamed_device 24.5 MiB 1.92 1221 17635 5673 8836 3126 63.3 MiB 0.16 0.00 4.28929 -146.442 -4.28929 4.28929 0.95 0.000574069 0.00052657 0.0526027 0.0483231 34 3664 32 6.89349e+06 380534 618332. 2139.56 2.16 0.22423 0.195618 25762 151098 -1 2420 21 1869 2814 211782 56749 3.95395 3.95395 -145.679 -3.95395 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0316158 0.027539 169 61 64 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_050.v common 5.72 vpr 63.49 MiB 0.05 7064 -1 -1 1 0.03 -1 -1 30592 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.6 MiB 1.49 1303 7027 1560 5110 357 63.5 MiB 0.09 0.00 3.72045 -130.455 -3.72045 3.72045 0.68 0.00077777 0.000722279 0.0291329 0.0270494 34 3264 23 6.89349e+06 380534 618332. 2139.56 1.50 0.187337 0.162519 25762 151098 -1 2554 18 1949 2659 169718 39611 3.31721 3.31721 -134.607 -3.31721 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283534 0.0248077 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_051.v common 6.03 vpr 63.07 MiB 0.03 7016 -1 -1 1 0.04 -1 -1 30672 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64580 32 32 376 288 1 233 88 17 17 289 -1 unnamed_device 24.3 MiB 1.39 1190 14518 4171 8562 1785 63.1 MiB 0.15 0.00 4.63815 -161.109 -4.63815 4.63815 0.95 0.000652795 0.000600979 0.0538416 0.0498453 34 2624 23 6.89349e+06 338252 618332. 2139.56 1.53 0.202654 0.177206 25762 151098 -1 2209 20 1653 2497 158685 36226 3.88476 3.88476 -153.315 -3.88476 0 0 787024. 2723.27 0.33 0.08 0.16 -1 -1 0.33 0.0289441 0.0258565 161 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_052.v common 5.68 vpr 63.36 MiB 0.03 7064 -1 -1 1 0.04 -1 -1 30768 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64876 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.5 MiB 1.22 1201 13351 3240 8446 1665 63.4 MiB 0.14 0.00 4.60525 -158.398 -4.60525 4.60525 0.70 0.000768107 0.000713343 0.0533607 0.0495543 34 3256 27 6.89349e+06 380534 618332. 2139.56 1.56 0.182589 0.160326 25762 151098 -1 2517 21 1910 2417 164444 38772 4.27456 4.27456 -158.106 -4.27456 0 0 787024. 2723.27 0.30 0.11 0.14 -1 -1 0.30 0.0426329 0.0375033 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_053.v common 5.74 vpr 63.63 MiB 0.03 7332 -1 -1 1 0.04 -1 -1 30704 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65156 31 32 449 367 1 300 94 17 17 289 -1 unnamed_device 24.8 MiB 1.17 1470 18625 5270 10765 2590 63.6 MiB 0.19 0.00 5.00359 -155.604 -5.00359 5.00359 0.72 0.000822037 0.000762485 0.0744639 0.0690646 34 3304 47 6.89349e+06 436909 618332. 2139.56 1.59 0.28034 0.24523 25762 151098 -1 2639 18 1716 2063 137408 32342 4.06255 4.06255 -144.57 -4.06255 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0272952 0.0242065 195 122 0 0 122 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_054.v common 9.00 vpr 63.60 MiB 0.05 7140 -1 -1 1 0.04 -1 -1 30584 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65128 32 32 432 346 1 287 91 17 17 289 -1 unnamed_device 24.8 MiB 2.27 1648 15391 4130 9133 2128 63.6 MiB 0.17 0.00 4.77885 -161.828 -4.77885 4.77885 0.68 0.000806063 0.000748799 0.0636069 0.0590099 38 3331 22 6.89349e+06 380534 678818. 2348.85 3.73 0.299808 0.261559 26626 170182 -1 2761 21 2332 3307 192742 44427 3.85486 3.85486 -149.588 -3.85486 0 0 902133. 3121.57 0.31 0.09 0.17 -1 -1 0.31 0.0335278 0.029192 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_055.v common 5.45 vpr 62.97 MiB 0.03 6848 -1 -1 1 0.03 -1 -1 30752 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64480 32 32 312 255 1 198 85 17 17 289 -1 unnamed_device 24.4 MiB 1.38 1067 16081 5068 9178 1835 63.0 MiB 0.16 0.00 3.68745 -131.866 -3.68745 3.68745 0.68 0.000617375 0.00057243 0.0599214 0.0556357 34 2262 19 6.89349e+06 295971 618332. 2139.56 1.30 0.179181 0.157368 25762 151098 -1 2005 19 1096 1570 104564 24112 2.76476 2.76476 -120.342 -2.76476 0 0 787024. 2723.27 0.30 0.06 0.13 -1 -1 0.30 0.021237 0.0188469 127 34 63 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_056.v common 5.71 vpr 63.29 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30680 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 370 314 1 250 85 17 17 289 -1 unnamed_device 24.5 MiB 1.41 1122 7711 1541 6020 150 63.3 MiB 0.10 0.00 4.29439 -143.523 -4.29439 4.29439 0.69 0.000703462 0.000652664 0.0341937 0.0317493 34 3065 27 6.89349e+06 295971 618332. 2139.56 1.63 0.186667 0.162416 25762 151098 -1 2394 21 1840 2130 159074 36259 3.8679 3.8679 -145.311 -3.8679 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0287798 0.0250045 154 94 0 0 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_057.v common 6.22 vpr 63.42 MiB 0.02 7288 -1 -1 1 0.04 -1 -1 30972 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64944 32 32 469 351 1 298 94 17 17 289 -1 unnamed_device 24.7 MiB 1.60 1537 17347 5978 9037 2332 63.4 MiB 0.21 0.00 5.35709 -181.872 -5.35709 5.35709 0.69 0.000882705 0.000818445 0.0748326 0.0694474 38 3674 24 6.89349e+06 422815 678818. 2348.85 1.67 0.254452 0.222946 26626 170182 -1 3131 21 2573 3590 244368 53394 5.0127 5.0127 -182.62 -5.0127 0 0 902133. 3121.57 0.27 0.11 0.13 -1 -1 0.27 0.0378323 0.0334521 209 65 96 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_058.v common 6.18 vpr 63.32 MiB 0.03 6892 -1 -1 1 0.04 -1 -1 30472 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64836 32 32 368 284 1 225 87 17 17 289 -1 unnamed_device 24.6 MiB 1.70 1176 14295 4272 7910 2113 63.3 MiB 0.15 0.00 3.7808 -134.415 -3.7808 3.7808 0.69 0.000734589 0.000681994 0.0571076 0.0530098 34 2751 31 6.89349e+06 324158 618332. 2139.56 1.61 0.214326 0.187481 25762 151098 -1 2387 21 1807 2602 203640 44824 3.08901 3.08901 -130.497 -3.08901 0 0 787024. 2723.27 0.32 0.09 0.15 -1 -1 0.32 0.0298067 0.0265183 156 34 92 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_059.v common 5.04 vpr 62.78 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30512 -1 -1 32 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64284 30 32 296 244 1 183 94 17 17 289 -1 unnamed_device 24.2 MiB 1.05 932 11809 3108 7963 738 62.8 MiB 0.11 0.00 4.33203 -134.423 -4.33203 4.33203 0.73 0.000606458 0.000562532 0.0359633 0.033304 34 1936 21 6.89349e+06 451003 618332. 2139.56 1.32 0.163469 0.142062 25762 151098 -1 1669 16 975 1559 91859 22517 3.24125 3.24125 -120.413 -3.24125 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0205614 0.0179532 129 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_060.v common 8.35 vpr 63.53 MiB 0.03 7304 -1 -1 1 0.04 -1 -1 31088 -1 -1 35 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65052 32 32 531 413 1 356 99 17 17 289 -1 unnamed_device 25.2 MiB 1.60 1787 18111 5206 10704 2201 63.5 MiB 0.22 0.00 5.73258 -193.193 -5.73258 5.73258 0.69 0.000957079 0.000887179 0.0785554 0.0728507 38 3818 21 6.89349e+06 493284 678818. 2348.85 3.66 0.36802 0.32092 26626 170182 -1 3260 17 2425 3012 196209 43936 5.54249 5.54249 -192.646 -5.54249 0 0 902133. 3121.57 0.23 0.09 0.13 -1 -1 0.23 0.0334121 0.0292369 239 127 32 32 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_061.v common 5.66 vpr 63.13 MiB 0.03 7012 -1 -1 1 0.04 -1 -1 30588 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64648 32 32 376 288 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.36 1091 13143 3864 7923 1356 63.1 MiB 0.14 0.00 4.41749 -154.465 -4.41749 4.41749 0.68 0.000753685 0.000700365 0.0545826 0.0507138 34 2710 20 6.89349e+06 324158 618332. 2139.56 1.55 0.200174 0.175176 25762 151098 -1 2309 22 2061 2861 207390 45836 3.9054 3.9054 -152.636 -3.9054 0 0 787024. 2723.27 0.28 0.05 0.15 -1 -1 0.28 0.0171572 0.0151503 159 34 96 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_062.v common 4.16 vpr 62.59 MiB 0.02 6912 -1 -1 1 0.03 -1 -1 30508 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64096 32 32 283 225 1 168 97 17 17 289 -1 unnamed_device 24.0 MiB 0.55 849 10087 2557 6780 750 62.6 MiB 0.10 0.00 3.73565 -131.011 -3.73565 3.73565 0.69 0.00062874 0.000585324 0.0304471 0.028358 30 2269 22 6.89349e+06 465097 556674. 1926.21 0.92 0.106523 0.0936071 25186 138497 -1 1801 19 1159 1980 121392 27199 2.88986 2.88986 -122.13 -2.88986 0 0 706193. 2443.58 0.24 0.04 0.13 -1 -1 0.24 0.012502 0.0110083 123 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_063.v common 7.53 vpr 63.49 MiB 0.03 7228 -1 -1 1 0.04 -1 -1 31012 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65016 32 32 438 320 1 267 93 17 17 289 -1 unnamed_device 24.8 MiB 2.22 1275 12273 3390 7733 1150 63.5 MiB 0.15 0.00 5.39711 -179.414 -5.39711 5.39711 0.73 0.000853158 0.000792732 0.0530727 0.0493436 34 3504 27 6.89349e+06 408721 618332. 2139.56 2.18 0.239661 0.209144 25762 151098 -1 2819 21 2281 3548 263283 57341 4.9734 4.9734 -180.883 -4.9734 0 0 787024. 2723.27 0.22 0.11 0.15 -1 -1 0.22 0.0353885 0.0308916 194 34 128 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_064.v common 4.87 vpr 62.64 MiB 0.02 6876 -1 -1 1 0.03 -1 -1 30512 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64148 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 24.2 MiB 0.77 787 10056 2193 7590 273 62.6 MiB 0.10 0.00 3.8468 -135.678 -3.8468 3.8468 0.67 0.000610122 0.000567379 0.0385025 0.0358346 34 2098 21 6.89349e+06 225501 618332. 2139.56 1.39 0.159943 0.139389 25762 151098 -1 1789 22 1401 2307 168810 37678 3.04166 3.04166 -124.571 -3.04166 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0257018 0.0222529 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_065.v common 5.19 vpr 62.70 MiB 0.02 6904 -1 -1 1 0.03 -1 -1 30568 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64200 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.1 MiB 1.12 801 8131 1824 5536 771 62.7 MiB 0.08 0.00 3.71635 -120.03 -3.71635 3.71635 0.68 0.000606702 0.000562664 0.0307141 0.0285783 34 2279 21 6.89349e+06 267783 618332. 2139.56 1.48 0.130346 0.113778 25762 151098 -1 1842 20 1127 1540 107694 26385 3.33186 3.33186 -126.044 -3.33186 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0243307 0.021197 121 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_066.v common 5.44 vpr 63.37 MiB 0.02 7300 -1 -1 1 0.04 -1 -1 30480 -1 -1 31 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64888 29 32 393 319 1 253 92 17 17 289 -1 unnamed_device 24.5 MiB 1.28 1254 15203 3953 9019 2231 63.4 MiB 0.15 0.00 4.1318 -129.307 -4.1318 4.1318 0.69 0.000737226 0.000683264 0.0565628 0.052412 34 2656 21 6.89349e+06 436909 618332. 2139.56 1.42 0.204524 0.178821 25762 151098 -1 2277 20 1577 2098 135468 31495 3.4278 3.4278 -125.4 -3.4278 0 0 787024. 2723.27 0.21 0.08 0.14 -1 -1 0.21 0.0294533 0.0258261 171 88 29 29 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_067.v common 6.16 vpr 63.50 MiB 0.02 6952 -1 -1 1 0.04 -1 -1 30804 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65024 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 1.70 1381 16974 4929 9664 2381 63.5 MiB 0.15 0.00 5.29596 -177.687 -5.29596 5.29596 0.71 0.000771736 0.00071666 0.0679073 0.063022 34 3612 34 6.89349e+06 366440 618332. 2139.56 1.56 0.21583 0.189678 25762 151098 -1 2899 20 2185 3150 227415 51884 4.59485 4.59485 -171.393 -4.59485 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.030315 0.0269797 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_068.v common 6.30 vpr 63.47 MiB 0.04 7136 -1 -1 1 0.04 -1 -1 30800 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64992 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.6 MiB 1.88 1376 18180 6112 9250 2818 63.5 MiB 0.11 0.00 5.13064 -174.448 -5.13064 5.13064 0.80 0.000347113 0.000319956 0.0336026 0.0309242 34 3348 22 6.89349e+06 366440 618332. 2139.56 1.58 0.191538 0.167323 25762 151098 -1 2774 23 2092 3023 231600 50430 4.67805 4.67805 -171.542 -4.67805 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0344475 0.0300244 175 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_069.v common 5.58 vpr 63.00 MiB 0.05 6876 -1 -1 1 0.03 -1 -1 30748 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64512 32 32 345 287 1 218 85 17 17 289 -1 unnamed_device 24.3 MiB 1.25 1013 14221 3579 9597 1045 63.0 MiB 0.13 0.00 4.30029 -147.314 -4.30029 4.30029 0.69 0.000676189 0.000628169 0.0539127 0.0500886 34 2459 26 6.89349e+06 295971 618332. 2139.56 1.44 0.189803 0.165885 25762 151098 -1 2020 17 1212 1367 86393 20700 3.5688 3.5688 -136.232 -3.5688 0 0 787024. 2723.27 0.21 0.06 0.16 -1 -1 0.21 0.0233453 0.0204235 141 65 32 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_070.v common 7.51 vpr 63.12 MiB 0.03 7060 -1 -1 1 0.04 -1 -1 30620 -1 -1 22 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64640 31 32 353 302 1 231 85 17 17 289 -1 unnamed_device 24.3 MiB 1.44 1168 10501 2617 6825 1059 63.1 MiB 0.11 0.00 4.23729 -139.76 -4.23729 4.23729 0.74 0.000613223 0.000565581 0.0385696 0.0356873 38 2554 19 6.89349e+06 310065 678818. 2348.85 3.33 0.248161 0.213776 26626 170182 -1 2169 18 1229 1522 109686 23574 3.3778 3.3778 -128.02 -3.3778 0 0 902133. 3121.57 0.23 0.06 0.14 -1 -1 0.23 0.0245549 0.0214237 146 90 0 0 89 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_071.v common 6.59 vpr 63.33 MiB 0.03 6964 -1 -1 1 0.03 -1 -1 30628 -1 -1 29 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64848 30 32 374 297 1 236 91 17 17 289 -1 unnamed_device 24.6 MiB 2.34 1158 18043 5948 9235 2860 63.3 MiB 0.21 0.00 3.9471 -130.183 -3.9471 3.9471 0.73 0.000728432 0.00067753 0.0804846 0.0746047 34 2790 21 6.89349e+06 408721 618332. 2139.56 1.38 0.192665 0.170581 25762 151098 -1 2404 22 1582 2288 155874 35063 3.30501 3.30501 -129.889 -3.30501 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0314351 0.0274151 164 60 60 30 57 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_072.v common 4.90 vpr 62.68 MiB 0.03 7060 -1 -1 1 0.03 -1 -1 30528 -1 -1 27 28 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64184 28 32 332 260 1 203 87 17 17 289 -1 unnamed_device 24.0 MiB 1.12 970 11031 2869 6600 1562 62.7 MiB 0.11 0.00 4.51585 -132.654 -4.51585 4.51585 0.78 0.000667102 0.000619315 0.0406828 0.0377993 30 2598 22 6.89349e+06 380534 556674. 1926.21 1.08 0.128503 0.113485 25186 138497 -1 2048 21 1376 2097 140015 34156 3.80466 3.80466 -129.854 -3.80466 0 0 706193. 2443.58 0.19 0.08 0.12 -1 -1 0.19 0.0273153 0.0237396 145 34 84 28 28 28 +fixed_k6_frac_uripple_N8_22nm.xml mult_073.v common 5.79 vpr 63.04 MiB 0.03 6940 -1 -1 1 0.03 -1 -1 30264 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64552 30 32 325 273 1 208 83 17 17 289 -1 unnamed_device 24.2 MiB 1.71 1087 9083 2557 5800 726 63.0 MiB 0.10 0.00 4.36859 -139.508 -4.36859 4.36859 0.65 0.000653284 0.000607512 0.0368694 0.0342702 34 2629 22 6.89349e+06 295971 618332. 2139.56 1.36 0.137425 0.119903 25762 151098 -1 2157 20 1538 2174 141487 32777 3.80594 3.80594 -139.071 -3.80594 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0285621 0.0254986 136 63 30 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_074.v common 5.85 vpr 63.27 MiB 0.02 7008 -1 -1 1 0.03 -1 -1 30448 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64784 32 32 361 308 1 245 85 17 17 289 -1 unnamed_device 24.5 MiB 1.47 1180 8827 2269 5871 687 63.3 MiB 0.10 0.00 3.8008 -130.21 -3.8008 3.8008 0.79 0.000695201 0.000645233 0.0354362 0.0328968 34 2734 25 6.89349e+06 295971 618332. 2139.56 1.51 0.178206 0.154341 25762 151098 -1 2256 18 1531 1793 119848 28402 3.33016 3.33016 -124.844 -3.33016 0 0 787024. 2723.27 0.22 0.07 0.13 -1 -1 0.22 0.0250428 0.021859 150 91 0 0 91 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_075.v common 5.03 vpr 63.00 MiB 0.02 7072 -1 -1 1 0.03 -1 -1 30340 -1 -1 37 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64508 31 32 335 251 1 197 100 17 17 289 -1 unnamed_device 24.3 MiB 0.84 1032 15180 4497 8229 2454 63.0 MiB 0.15 0.00 4.35445 -144.691 -4.35445 4.35445 0.78 0.000714005 0.000665545 0.0447558 0.0413688 28 3144 26 6.89349e+06 521472 531479. 1839.03 1.37 0.137634 0.121224 24610 126494 -1 2405 21 1664 2727 232425 49757 3.9034 3.9034 -144.541 -3.9034 0 0 648988. 2245.63 0.18 0.09 0.11 -1 -1 0.18 0.0283326 0.0246847 151 4 124 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_076.v common 8.08 vpr 63.37 MiB 0.02 7092 -1 -1 1 0.04 -1 -1 30748 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64892 32 32 407 319 1 257 90 17 17 289 -1 unnamed_device 24.5 MiB 1.16 1263 12351 3110 8140 1101 63.4 MiB 0.13 0.00 4.78058 -162.367 -4.78058 4.78058 0.94 0.000591565 0.000547169 0.0386028 0.0354681 36 3079 22 6.89349e+06 366440 648988. 2245.63 3.57 0.215988 0.18691 26050 158493 -1 2532 20 1629 2193 149868 35576 4.02665 4.02665 -156.325 -4.02665 0 0 828058. 2865.25 0.22 0.08 0.17 -1 -1 0.22 0.0308458 0.0269892 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_077.v common 6.22 vpr 63.24 MiB 0.05 7088 -1 -1 1 0.03 -1 -1 30596 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64756 32 32 407 319 1 256 90 17 17 289 -1 unnamed_device 24.3 MiB 1.57 1405 10743 3107 6650 986 63.2 MiB 0.12 0.00 4.9601 -169.723 -4.9601 4.9601 0.69 0.000777884 0.000722838 0.0443128 0.0411608 34 3335 50 6.89349e+06 366440 618332. 2139.56 1.83 0.213382 0.186802 25762 151098 -1 2844 24 2600 3658 257098 57107 4.48419 4.48419 -171.654 -4.48419 0 0 787024. 2723.27 0.26 0.11 0.13 -1 -1 0.26 0.0361077 0.03168 171 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_078.v common 6.29 vpr 63.45 MiB 0.03 7040 -1 -1 1 0.04 -1 -1 30644 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64976 32 32 399 315 1 257 91 17 17 289 -1 unnamed_device 24.6 MiB 1.60 1306 10087 2279 7315 493 63.5 MiB 0.12 0.00 4.3224 -145.723 -4.3224 4.3224 0.69 0.000767555 0.000713073 0.0402618 0.0373801 34 3816 47 6.89349e+06 380534 618332. 2139.56 1.96 0.228454 0.198309 25762 151098 -1 2879 21 2032 3001 239169 51604 3.93665 3.93665 -144.041 -3.93665 0 0 787024. 2723.27 0.21 0.10 0.14 -1 -1 0.21 0.0315976 0.0275806 172 65 60 30 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_079.v common 5.48 vpr 62.56 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30700 -1 -1 19 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64064 30 32 296 244 1 185 81 17 17 289 -1 unnamed_device 24.0 MiB 1.46 814 9181 2458 5686 1037 62.6 MiB 0.09 0.00 3.809 -121.257 -3.809 3.809 0.70 0.00061744 0.000571807 0.0343857 0.0319245 34 2314 22 6.89349e+06 267783 618332. 2139.56 1.37 0.156787 0.136118 25762 151098 -1 1886 19 1222 1745 119762 27242 3.24201 3.24201 -119.902 -3.24201 0 0 787024. 2723.27 0.21 0.06 0.12 -1 -1 0.21 0.0233274 0.0203067 122 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_080.v common 6.94 vpr 63.34 MiB 0.04 7112 -1 -1 1 0.03 -1 -1 30588 -1 -1 26 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64860 30 32 383 303 1 241 88 17 17 289 -1 unnamed_device 24.5 MiB 2.64 1287 12568 3293 7724 1551 63.3 MiB 0.13 0.00 5.05854 -160.711 -5.05854 5.05854 0.69 0.000734763 0.000681483 0.0495024 0.0459087 34 3093 48 6.89349e+06 366440 618332. 2139.56 1.66 0.226414 0.196757 25762 151098 -1 2583 19 1885 2609 195021 42349 4.46839 4.46839 -163.813 -4.46839 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.016306 0.01446 165 63 60 30 60 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_081.v common 5.44 vpr 63.56 MiB 0.02 7280 -1 -1 1 0.04 -1 -1 31168 -1 -1 30 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65088 32 32 469 381 1 316 94 17 17 289 -1 unnamed_device 24.7 MiB 1.13 1479 11383 3062 7492 829 63.6 MiB 0.13 0.00 4.57601 -155.587 -4.57601 4.57601 0.69 0.00086383 0.000802806 0.048591 0.0451145 34 3830 46 6.89349e+06 422815 618332. 2139.56 1.60 0.220861 0.192155 25762 151098 -1 2969 21 1936 1998 144723 33545 4.01235 4.01235 -157.401 -4.01235 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0355002 0.0309914 204 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_082.v common 5.69 vpr 63.21 MiB 0.03 7196 -1 -1 1 0.04 -1 -1 30620 -1 -1 29 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64728 31 32 425 341 1 280 92 17 17 289 -1 unnamed_device 24.6 MiB 1.38 1301 16445 5093 9336 2016 63.2 MiB 0.17 0.00 5.17904 -171.173 -5.17904 5.17904 0.83 0.000635585 0.000586205 0.0518713 0.0477485 34 3254 25 6.89349e+06 408721 618332. 2139.56 1.42 0.182279 0.159352 25762 151098 -1 2616 26 2231 2869 188345 43133 4.69815 4.69815 -167.091 -4.69815 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0379325 0.0329169 186 94 31 31 93 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_083.v common 6.16 vpr 63.30 MiB 0.03 7136 -1 -1 1 0.04 -1 -1 30664 -1 -1 28 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64820 30 32 404 328 1 261 90 17 17 289 -1 unnamed_device 24.4 MiB 1.77 1252 12351 3368 8179 804 63.3 MiB 0.14 0.00 4.25135 -136.296 -4.25135 4.25135 0.72 0.000761691 0.000706099 0.0490824 0.0455242 34 3119 25 6.89349e+06 394628 618332. 2139.56 1.59 0.204309 0.179255 25762 151098 -1 2588 25 2326 3304 236998 55418 4.10815 4.10815 -150.123 -4.10815 0 0 787024. 2723.27 0.23 0.11 0.13 -1 -1 0.23 0.0356016 0.0308737 175 92 26 26 90 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_084.v common 6.17 vpr 63.40 MiB 0.04 7172 -1 -1 1 0.04 -1 -1 30808 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64920 32 32 407 319 1 264 90 17 17 289 -1 unnamed_device 24.5 MiB 1.59 1349 14160 4180 8412 1568 63.4 MiB 0.15 0.00 5.11687 -171.214 -5.11687 5.11687 0.69 0.000781023 0.000725766 0.0576665 0.0535525 34 3475 30 6.89349e+06 366440 618332. 2139.56 1.82 0.227956 0.19974 25762 151098 -1 2739 21 2289 3241 234933 51407 4.41935 4.41935 -165.552 -4.41935 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0321955 0.0281177 177 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_085.v common 5.92 vpr 63.35 MiB 0.03 7160 -1 -1 1 0.04 -1 -1 30548 -1 -1 30 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64872 29 32 387 316 1 251 91 17 17 289 -1 unnamed_device 24.5 MiB 1.74 1337 17431 5595 9274 2562 63.4 MiB 0.17 0.00 4.49555 -136.793 -4.49555 4.49555 0.69 0.000711042 0.000657066 0.0640525 0.0593433 34 2979 25 6.89349e+06 422815 618332. 2139.56 1.45 0.212843 0.186235 25762 151098 -1 2437 19 1427 2003 136949 30749 3.37956 3.37956 -121.856 -3.37956 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0279052 0.0243055 170 88 26 26 85 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_086.v common 4.64 vpr 62.35 MiB 0.03 6804 -1 -1 1 0.03 -1 -1 30424 -1 -1 16 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63848 32 32 283 225 1 168 80 17 17 289 -1 unnamed_device 23.9 MiB 0.46 851 10744 3065 7267 412 62.4 MiB 0.11 0.00 3.7888 -133.854 -3.7888 3.7888 0.70 0.000610547 0.000567768 0.040515 0.0377064 34 2200 22 6.89349e+06 225501 618332. 2139.56 1.39 0.161416 0.140663 25762 151098 -1 1899 21 1250 2067 156015 34775 3.08851 3.08851 -131.722 -3.08851 0 0 787024. 2723.27 0.32 0.07 0.15 -1 -1 0.32 0.0246893 0.0214587 114 3 96 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_087.v common 6.02 vpr 63.52 MiB 0.03 7088 -1 -1 1 0.05 -1 -1 30700 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65044 32 32 407 319 1 259 91 17 17 289 -1 unnamed_device 24.6 MiB 1.48 1266 16411 5685 8276 2450 63.5 MiB 0.17 0.00 5.17997 -174.972 -5.17997 5.17997 0.68 0.000783757 0.000727777 0.0653424 0.0606173 34 3504 24 6.89349e+06 380534 618332. 2139.56 1.76 0.231059 0.202878 25762 151098 -1 2793 23 2229 3049 260887 55741 4.44125 4.44125 -165.632 -4.44125 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0346971 0.0302546 174 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_088.v common 6.75 vpr 63.30 MiB 0.04 6956 -1 -1 1 0.03 -1 -1 30676 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 407 319 1 263 89 17 17 289 -1 unnamed_device 24.4 MiB 2.24 1294 9791 2343 6863 585 63.3 MiB 0.12 0.00 5.01095 -168.663 -5.01095 5.01095 0.68 0.000777799 0.000721101 0.0411537 0.0381922 34 3708 24 6.89349e+06 352346 618332. 2139.56 1.80 0.201092 0.175589 25762 151098 -1 3005 23 2396 3348 315093 64924 4.88945 4.88945 -176.336 -4.88945 0 0 787024. 2723.27 0.21 0.12 0.13 -1 -1 0.21 0.035098 0.030624 176 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_089.v common 5.64 vpr 62.85 MiB 0.02 6984 -1 -1 1 0.04 -1 -1 30580 -1 -1 19 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64356 32 32 315 267 1 204 83 17 17 289 -1 unnamed_device 24.2 MiB 1.58 971 13043 4021 6975 2047 62.8 MiB 0.12 0.00 3.51612 -116.281 -3.51612 3.51612 0.68 0.000642936 0.000597445 0.0468342 0.0434658 34 2294 22 6.89349e+06 267783 618332. 2139.56 1.36 0.171997 0.149973 25762 151098 -1 1896 17 1001 1214 90054 20578 2.9678 2.9678 -111.545 -2.9678 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0219055 0.0190995 128 55 32 32 54 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_090.v common 4.29 vpr 62.51 MiB 0.02 6936 -1 -1 1 0.03 -1 -1 30588 -1 -1 17 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64008 31 32 275 220 1 164 80 17 17 289 -1 unnamed_device 24.1 MiB 0.69 734 11604 2641 7381 1582 62.5 MiB 0.11 0.00 3.8218 -128.161 -3.8218 3.8218 0.69 0.000600211 0.00055739 0.0421757 0.0392064 32 2153 21 6.89349e+06 239595 586450. 2029.24 0.99 0.10678 0.0944277 25474 144626 -1 1701 19 1143 1819 122244 28228 2.99621 2.99621 -121.115 -2.99621 0 0 744469. 2576.02 0.21 0.07 0.12 -1 -1 0.21 0.0223276 0.0194364 112 4 93 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_091.v common 5.62 vpr 63.21 MiB 0.02 7172 -1 -1 1 0.04 -1 -1 30508 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 381 303 1 240 89 17 17 289 -1 unnamed_device 24.4 MiB 1.23 1234 14147 4178 8444 1525 63.2 MiB 0.14 0.00 4.31849 -141.833 -4.31849 4.31849 0.68 0.00073592 0.00068309 0.0548231 0.0508617 34 2838 42 6.89349e+06 352346 618332. 2139.56 1.58 0.227594 0.198719 25762 151098 -1 2252 21 1476 1850 122873 28580 3.7536 3.7536 -135.039 -3.7536 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0299988 0.0261256 158 59 60 32 58 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_092.v common 5.76 vpr 63.63 MiB 0.02 7088 -1 -1 1 0.04 -1 -1 30444 -1 -1 26 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65156 32 32 406 330 1 261 90 17 17 289 -1 unnamed_device 24.8 MiB 1.46 1314 10341 2747 6842 752 63.6 MiB 0.13 0.00 5.10864 -160.907 -5.10864 5.10864 0.69 0.000773103 0.000717729 0.0390943 0.0360589 34 3184 27 6.89349e+06 366440 618332. 2139.56 1.58 0.199998 0.173784 25762 151098 -1 2645 21 1814 2196 158864 36718 4.46855 4.46855 -154.867 -4.46855 0 0 787024. 2723.27 0.21 0.08 0.13 -1 -1 0.21 0.0283706 0.0248496 170 88 28 28 88 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_093.v common 5.01 vpr 63.36 MiB 0.03 7088 -1 -1 1 0.03 -1 -1 30648 -1 -1 41 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64884 32 32 399 285 1 232 105 17 17 289 -1 unnamed_device 24.5 MiB 0.72 1292 15419 3797 10101 1521 63.4 MiB 0.15 0.00 4.85078 -164.688 -4.85078 4.85078 0.69 0.000815906 0.000757122 0.0521488 0.0482905 34 3178 23 6.89349e+06 577847 618332. 2139.56 1.55 0.213779 0.187125 25762 151098 -1 2662 19 1841 3143 192421 44383 4.18749 4.18749 -159.314 -4.18749 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0315018 0.0277291 183 3 156 32 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_094.v common 5.81 vpr 63.26 MiB 0.03 7200 -1 -1 1 0.04 -1 -1 30660 -1 -1 27 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64776 30 32 371 295 1 235 89 17 17 289 -1 unnamed_device 24.5 MiB 1.56 1124 9395 2323 6078 994 63.3 MiB 0.11 0.00 3.8961 -125.22 -3.8961 3.8961 0.68 0.000724592 0.000672634 0.0367897 0.0341706 34 2530 23 6.89349e+06 380534 618332. 2139.56 1.51 0.180301 0.15689 25762 151098 -1 2093 20 1631 2315 142657 33560 3.05261 3.05261 -118.092 -3.05261 0 0 787024. 2723.27 0.25 0.07 0.14 -1 -1 0.25 0.0281526 0.0244902 160 59 60 30 56 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_095.v common 5.21 vpr 62.49 MiB 0.04 6908 -1 -1 1 0.03 -1 -1 30848 -1 -1 22 27 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63992 27 32 269 226 1 168 81 17 17 289 -1 unnamed_device 23.9 MiB 1.18 915 13031 5095 6351 1585 62.5 MiB 0.12 0.00 4.34539 -126.288 -4.34539 4.34539 0.67 0.000566459 0.000526572 0.0444446 0.0413516 34 2020 26 6.89349e+06 310065 618332. 2139.56 1.44 0.152144 0.132947 25762 151098 -1 1758 19 1155 1689 131106 28504 3.523 3.523 -121.724 -3.523 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0215443 0.0187434 112 34 54 27 27 27 +fixed_k6_frac_uripple_N8_22nm.xml mult_096.v common 6.38 vpr 63.33 MiB 0.03 7308 -1 -1 1 0.04 -1 -1 30740 -1 -1 32 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64852 32 32 493 378 1 322 96 17 17 289 -1 unnamed_device 24.8 MiB 1.53 1748 16302 4126 10044 2132 63.3 MiB 0.20 0.00 5.09354 -170.611 -5.09354 5.09354 0.73 0.000911781 0.000846307 0.0706874 0.0656341 34 4257 33 6.89349e+06 451003 618332. 2139.56 1.91 0.278016 0.243403 25762 151098 -1 3257 22 2382 3408 227205 52093 4.71205 4.71205 -166.732 -4.71205 0 0 787024. 2723.27 0.21 0.11 0.13 -1 -1 0.21 0.0383369 0.0333515 219 95 62 31 95 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_097.v common 8.37 vpr 63.55 MiB 0.02 7208 -1 -1 1 0.04 -1 -1 30652 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65080 31 32 455 371 1 306 94 17 17 289 -1 unnamed_device 24.7 MiB 1.96 1467 12661 2948 8528 1185 63.6 MiB 0.15 0.00 5.14784 -166.315 -5.14784 5.14784 0.69 0.000842719 0.000783294 0.0521031 0.048408 38 3138 25 6.89349e+06 436909 678818. 2348.85 3.62 0.293645 0.254237 26626 170182 -1 2674 20 2032 2400 153623 35357 4.28305 4.28305 -159.198 -4.28305 0 0 902133. 3121.57 0.23 0.08 0.14 -1 -1 0.23 0.0327377 0.0284772 201 124 0 0 124 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_098.v common 7.78 vpr 63.21 MiB 0.04 7004 -1 -1 1 0.03 -1 -1 30580 -1 -1 22 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64724 32 32 355 304 1 245 86 17 17 289 -1 unnamed_device 24.5 MiB 1.79 1133 9914 2313 7132 469 63.2 MiB 0.11 0.00 4.28535 -139.234 -4.28535 4.28535 0.60 0.000696883 0.000647188 0.0387804 0.0360116 36 2796 47 6.89349e+06 310065 648988. 2245.63 3.30 0.250697 0.216469 26050 158493 -1 2274 19 1386 1605 135896 29769 3.528 3.528 -135.119 -3.528 0 0 828058. 2865.25 0.22 0.07 0.13 -1 -1 0.22 0.0264742 0.0230807 150 89 0 0 89 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_099.v common 5.81 vpr 63.14 MiB 0.03 7096 -1 -1 1 0.03 -1 -1 30584 -1 -1 23 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 32 32 364 282 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.52 1114 12951 3612 7720 1619 63.1 MiB 0.14 0.00 4.53785 -150.754 -4.53785 4.53785 0.70 0.000721955 0.000670904 0.051538 0.0478858 34 2639 21 6.89349e+06 324158 618332. 2139.56 1.40 0.195702 0.171219 25762 151098 -1 2176 21 1480 2144 135303 33887 3.73916 3.73916 -140.192 -3.73916 0 0 787024. 2723.27 0.30 0.08 0.15 -1 -1 0.30 0.0293319 0.0255607 151 34 90 30 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_100.v common 5.99 vpr 63.50 MiB 0.04 7096 -1 -1 1 0.04 -1 -1 31012 -1 -1 30 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65028 31 32 443 336 1 280 93 17 17 289 -1 unnamed_device 24.9 MiB 1.40 1475 19413 5609 11709 2095 63.5 MiB 0.23 0.00 4.64537 -154.979 -4.64537 4.64537 0.85 0.000845393 0.00077776 0.079431 0.0733222 34 3264 21 6.89349e+06 422815 618332. 2139.56 1.51 0.245841 0.214978 25762 151098 -1 2712 21 1971 2814 184333 42327 3.82656 3.82656 -151.445 -3.82656 0 0 787024. 2723.27 0.29 0.09 0.13 -1 -1 0.29 0.0329574 0.0293134 193 64 87 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_101.v common 5.90 vpr 63.32 MiB 0.03 7140 -1 -1 1 0.04 -1 -1 30560 -1 -1 28 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64844 30 32 373 297 1 235 90 17 17 289 -1 unnamed_device 24.6 MiB 1.65 1223 16773 5429 8542 2802 63.3 MiB 0.16 0.00 4.28025 -135.791 -4.28025 4.28025 0.68 0.000709823 0.00065737 0.0622983 0.057777 34 3009 46 6.89349e+06 394628 618332. 2139.56 1.43 0.195886 0.171729 25762 151098 -1 2424 21 1490 2324 157879 35496 3.6673 3.6673 -134.687 -3.6673 0 0 787024. 2723.27 0.29 0.08 0.12 -1 -1 0.29 0.0267029 0.0235771 162 61 58 30 58 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_102.v common 5.92 vpr 63.39 MiB 0.02 6952 -1 -1 1 0.04 -1 -1 30636 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64908 32 32 407 319 1 260 92 17 17 289 -1 unnamed_device 24.6 MiB 1.37 1373 17066 5393 8866 2807 63.4 MiB 0.18 0.00 5.03124 -168.563 -5.03124 5.03124 0.69 0.000772857 0.000716842 0.0666491 0.0618478 34 3386 33 6.89349e+06 394628 618332. 2139.56 1.82 0.23996 0.210133 25762 151098 -1 2613 22 2023 2758 201420 44304 4.32235 4.32235 -159.305 -4.32235 0 0 787024. 2723.27 0.22 0.09 0.13 -1 -1 0.22 0.0326615 0.0283759 173 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_103.v common 5.94 vpr 63.33 MiB 0.04 7024 -1 -1 1 0.03 -1 -1 30640 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64848 32 32 405 318 1 260 91 17 17 289 -1 unnamed_device 24.5 MiB 1.66 1418 13147 3928 7969 1250 63.3 MiB 0.14 0.00 3.78872 -134.171 -3.78872 3.78872 0.69 0.000775883 0.000718316 0.0518328 0.0480571 34 3161 21 6.89349e+06 380534 618332. 2139.56 1.56 0.200795 0.175533 25762 151098 -1 2754 22 2029 2814 195934 44307 3.26111 3.26111 -133.142 -3.26111 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0331544 0.029077 175 65 63 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_104.v common 5.58 vpr 62.59 MiB 0.02 6972 -1 -1 1 0.03 -1 -1 30604 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64088 29 32 287 238 1 178 82 17 17 289 -1 unnamed_device 24.1 MiB 1.55 802 14322 5252 6511 2559 62.6 MiB 0.14 0.00 3.809 -119.785 -3.809 3.809 0.70 0.000610682 0.000566524 0.0501112 0.0463878 34 1845 20 6.89349e+06 295971 618332. 2139.56 1.29 0.164625 0.143422 25762 151098 -1 1695 17 1209 1599 113229 25665 3.31091 3.31091 -118.825 -3.31091 0 0 787024. 2723.27 0.26 0.06 0.15 -1 -1 0.26 0.0207454 0.0180738 118 34 58 29 29 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_105.v common 5.13 vpr 63.07 MiB 0.02 6948 -1 -1 1 0.03 -1 -1 30240 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64588 32 32 334 290 1 223 84 17 17 289 -1 unnamed_device 24.3 MiB 1.02 1059 7038 1561 5080 397 63.1 MiB 0.08 0.00 4.31213 -129.707 -4.31213 4.31213 0.69 0.000669603 0.000621723 0.0274997 0.0255362 34 2539 34 6.89349e+06 281877 618332. 2139.56 1.40 0.169433 0.146382 25762 151098 -1 2212 20 1308 1593 104990 25708 3.6364 3.6364 -125.347 -3.6364 0 0 787024. 2723.27 0.28 0.07 0.15 -1 -1 0.28 0.0255667 0.0222261 136 82 0 0 82 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_106.v common 6.61 vpr 63.11 MiB 0.03 6940 -1 -1 1 0.04 -1 -1 30648 -1 -1 24 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64620 31 32 365 281 1 225 87 17 17 289 -1 unnamed_device 24.4 MiB 1.32 1144 15255 6301 7544 1410 63.1 MiB 0.14 0.00 4.60015 -151.135 -4.60015 4.60015 0.92 0.000550723 0.00050667 0.0471214 0.0434412 34 3033 33 6.89349e+06 338252 618332. 2139.56 2.03 0.179065 0.157415 25762 151098 -1 2191 23 1918 2838 200190 45840 3.92866 3.92866 -146.681 -3.92866 0 0 787024. 2723.27 0.21 0.09 0.15 -1 -1 0.21 0.0319398 0.0278242 154 34 93 31 31 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_107.v common 5.43 vpr 62.71 MiB 0.02 7000 -1 -1 1 0.03 -1 -1 30572 -1 -1 21 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64216 29 32 297 254 1 193 82 17 17 289 -1 unnamed_device 24.0 MiB 1.44 955 13610 4945 6467 2198 62.7 MiB 0.12 0.00 3.4839 -106.878 -3.4839 3.4839 0.69 0.0006112 0.000568778 0.0475789 0.0441976 34 2243 24 6.89349e+06 295971 618332. 2139.56 1.30 0.168024 0.14645 25762 151098 -1 1885 24 1238 1478 111168 24783 3.03756 3.03756 -104.985 -3.03756 0 0 787024. 2723.27 0.22 0.08 0.13 -1 -1 0.22 0.0328062 0.0285669 123 56 29 29 52 26 +fixed_k6_frac_uripple_N8_22nm.xml mult_108.v common 5.75 vpr 62.77 MiB 0.02 6920 -1 -1 1 0.03 -1 -1 30456 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64276 32 32 314 256 1 194 82 17 17 289 -1 unnamed_device 24.2 MiB 1.74 1000 12186 3922 6390 1874 62.8 MiB 0.12 0.00 3.839 -135.657 -3.839 3.839 0.68 0.000644112 0.000598073 0.0460007 0.0427404 34 2559 24 6.89349e+06 253689 618332. 2139.56 1.47 0.173561 0.15166 25762 151098 -1 2146 20 1588 2258 193493 39821 3.22491 3.22491 -130.888 -3.22491 0 0 787024. 2723.27 0.20 0.05 0.09 -1 -1 0.20 0.0138527 0.0122399 127 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_109.v common 6.04 vpr 63.14 MiB 0.03 7180 -1 -1 1 0.04 -1 -1 30520 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64656 31 32 387 307 1 242 90 17 17 289 -1 unnamed_device 24.3 MiB 1.74 1201 16773 5048 9300 2425 63.1 MiB 0.16 0.00 4.20938 -143.511 -4.20938 4.20938 0.76 0.000742226 0.000687459 0.0642665 0.0595882 34 2798 23 6.89349e+06 380534 618332. 2139.56 1.47 0.190914 0.168118 25762 151098 -1 2371 23 2155 3036 232759 51212 3.71335 3.71335 -143.48 -3.71335 0 0 787024. 2723.27 0.21 0.10 0.13 -1 -1 0.21 0.0330922 0.0288569 164 64 58 31 62 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_110.v common 5.64 vpr 62.71 MiB 0.05 6976 -1 -1 1 0.03 -1 -1 30596 -1 -1 21 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64220 31 32 308 262 1 196 84 17 17 289 -1 unnamed_device 24.0 MiB 1.49 877 7953 1966 5579 408 62.7 MiB 0.08 0.00 3.31212 -108.619 -3.31212 3.31212 0.66 0.000508323 0.000467819 0.0254789 0.0235415 34 2266 20 6.89349e+06 295971 618332. 2139.56 1.30 0.136988 0.118753 25762 151098 -1 1856 23 1301 1620 111352 26092 2.89826 2.89826 -105.467 -2.89826 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0272581 0.0236156 125 55 31 31 53 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_111.v common 6.48 vpr 63.30 MiB 0.02 7028 -1 -1 1 0.04 -1 -1 30632 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64816 32 32 383 307 1 242 89 17 17 289 -1 unnamed_device 24.5 MiB 1.82 1287 17711 6388 9306 2017 63.3 MiB 0.21 0.00 4.20729 -140.905 -4.20729 4.20729 0.94 0.000693862 0.000638517 0.0671862 0.061883 34 2960 20 6.89349e+06 352346 618332. 2139.56 1.50 0.208181 0.183353 25762 151098 -1 2496 18 1426 2032 177358 36667 3.6283 3.6283 -136.416 -3.6283 0 0 787024. 2723.27 0.25 0.08 0.13 -1 -1 0.25 0.0267842 0.023379 162 65 52 26 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_112.v common 6.16 vpr 63.53 MiB 0.03 7244 -1 -1 1 0.03 -1 -1 30416 -1 -1 31 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65056 31 32 422 339 1 277 94 17 17 289 -1 unnamed_device 24.8 MiB 1.58 1441 16921 4862 9627 2432 63.5 MiB 0.18 0.00 5.00842 -163.951 -5.00842 5.00842 0.76 0.000782506 0.00072452 0.065309 0.060469 34 3526 25 6.89349e+06 436909 618332. 2139.56 1.58 0.195693 0.17222 25762 151098 -1 2874 20 2237 3131 223935 49064 4.33743 4.33743 -162.306 -4.33743 0 0 787024. 2723.27 0.29 0.12 0.15 -1 -1 0.29 0.0400065 0.0355073 185 93 31 31 92 31 +fixed_k6_frac_uripple_N8_22nm.xml mult_113.v common 6.72 vpr 62.83 MiB 0.02 6892 -1 -1 1 0.03 -1 -1 30492 -1 -1 21 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64340 32 32 333 279 1 216 85 17 17 289 -1 unnamed_device 24.1 MiB 2.44 1150 11245 3095 6987 1163 62.8 MiB 0.11 0.00 3.53115 -123.245 -3.53115 3.53115 0.68 0.000694011 0.000642805 0.042145 0.0391188 34 2721 22 6.89349e+06 295971 618332. 2139.56 1.56 0.172068 0.149846 25762 151098 -1 2369 20 1612 2240 151907 33759 3.22686 3.22686 -127.418 -3.22686 0 0 787024. 2723.27 0.21 0.08 0.16 -1 -1 0.21 0.0263472 0.0229528 137 61 32 32 60 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_114.v common 5.44 vpr 63.09 MiB 0.04 6916 -1 -1 1 0.04 -1 -1 30284 -1 -1 20 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64604 32 32 339 283 1 218 84 17 17 289 -1 unnamed_device 24.4 MiB 1.15 1121 13443 3684 8167 1592 63.1 MiB 0.13 0.00 3.817 -131.483 -3.817 3.817 0.68 0.000677708 0.000628407 0.0517199 0.0480384 34 2667 19 6.89349e+06 281877 618332. 2139.56 1.44 0.187011 0.16481 25762 151098 -1 2338 20 1432 1683 134962 29533 3.15601 3.15601 -126.592 -3.15601 0 0 787024. 2723.27 0.21 0.07 0.13 -1 -1 0.21 0.0267622 0.0233787 139 63 32 32 62 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_115.v common 5.63 vpr 63.46 MiB 0.04 6952 -1 -1 1 0.04 -1 -1 30964 -1 -1 27 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64984 32 32 407 319 1 264 91 17 17 289 -1 unnamed_device 24.6 MiB 1.32 1272 13147 3375 7731 2041 63.5 MiB 0.13 0.00 4.61515 -160.202 -4.61515 4.61515 0.68 0.000771405 0.000715501 0.0518761 0.0481423 34 3126 44 6.89349e+06 380534 618332. 2139.56 1.51 0.198371 0.173502 25762 151098 -1 2666 20 2073 2537 174620 39464 4.10426 4.10426 -157.046 -4.10426 0 0 787024. 2723.27 0.28 0.09 0.15 -1 -1 0.28 0.0302166 0.026339 178 65 64 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_116.v common 5.38 vpr 63.25 MiB 0.02 7176 -1 -1 1 0.03 -1 -1 30660 -1 -1 26 29 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64768 29 32 367 293 1 231 87 17 17 289 -1 unnamed_device 24.5 MiB 1.72 1161 15639 4794 8641 2204 63.2 MiB 0.16 0.00 3.67945 -117.378 -3.67945 3.67945 0.69 0.000647244 0.000595069 0.0599269 0.0555961 30 2520 23 6.89349e+06 366440 556674. 1926.21 0.89 0.146817 0.129852 25186 138497 -1 1989 19 1450 1920 111005 25802 2.84786 2.84786 -111.673 -2.84786 0 0 706193. 2443.58 0.23 0.07 0.14 -1 -1 0.23 0.0274253 0.0239455 157 62 56 29 58 29 +fixed_k6_frac_uripple_N8_22nm.xml mult_117.v common 5.96 vpr 63.68 MiB 0.04 7280 -1 -1 1 0.04 -1 -1 30888 -1 -1 29 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65212 32 32 469 381 1 315 93 17 17 289 -1 unnamed_device 24.8 MiB 1.27 1517 16893 4857 9388 2648 63.7 MiB 0.18 0.00 4.97404 -168.093 -4.97404 4.97404 0.69 0.000853706 0.000792445 0.0719243 0.0667474 34 3765 40 6.89349e+06 408721 618332. 2139.56 1.68 0.238345 0.209121 25762 151098 -1 3099 20 2525 2895 229694 49913 4.51339 4.51339 -166.316 -4.51339 0 0 787024. 2723.27 0.24 0.10 0.15 -1 -1 0.24 0.0341256 0.0297768 203 127 0 0 128 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_118.v common 4.58 vpr 62.33 MiB 0.03 6768 -1 -1 1 0.03 -1 -1 30520 -1 -1 16 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63828 31 32 259 212 1 155 79 17 17 289 -1 unnamed_device 23.7 MiB 0.53 803 5149 1186 3599 364 62.3 MiB 0.05 0.00 2.99217 -104.791 -2.99217 2.99217 0.94 0.000467258 0.000430893 0.0161803 0.0149476 30 2012 19 6.89349e+06 225501 556674. 1926.21 0.99 0.0827498 0.0720466 25186 138497 -1 1603 22 963 1634 103346 23619 2.56431 2.56431 -108.433 -2.56431 0 0 706193. 2443.58 0.19 0.06 0.15 -1 -1 0.19 0.0242439 0.0210231 104 4 85 31 0 0 +fixed_k6_frac_uripple_N8_22nm.xml mult_119.v common 6.24 vpr 63.25 MiB 0.05 7084 -1 -1 1 0.16 -1 -1 30244 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64764 32 32 418 338 1 273 92 17 17 289 -1 unnamed_device 24.3 MiB 1.41 1396 18101 5815 9868 2418 63.2 MiB 0.19 0.00 5.41163 -177.078 -5.41163 5.41163 0.72 0.000786329 0.000729362 0.0716528 0.0665042 34 3384 28 6.89349e+06 394628 618332. 2139.56 1.62 0.240698 0.211253 25762 151098 -1 2824 21 2062 2612 190251 41773 5.11534 5.11534 -179.423 -5.11534 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0316738 0.0276533 179 92 28 28 92 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_120.v common 6.75 vpr 63.29 MiB 0.05 6948 -1 -1 1 0.15 -1 -1 30272 -1 -1 24 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64812 32 32 376 318 1 259 88 17 17 289 -1 unnamed_device 24.5 MiB 1.96 1193 17248 5142 9796 2310 63.3 MiB 0.17 0.00 4.89074 -162.672 -4.89074 4.89074 0.68 0.000706324 0.000655264 0.0646664 0.0598409 34 3496 38 6.89349e+06 338252 618332. 2139.56 1.76 0.2019 0.17745 25762 151098 -1 2718 23 2478 3193 259119 56631 4.41049 4.41049 -159.753 -4.41049 0 0 787024. 2723.27 0.25 0.11 0.11 -1 -1 0.25 0.0318295 0.0276612 161 96 0 0 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_121.v common 5.94 vpr 63.35 MiB 0.06 7172 -1 -1 1 0.17 -1 -1 30360 -1 -1 25 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64868 32 32 401 316 1 253 89 17 17 289 -1 unnamed_device 24.4 MiB 1.46 1163 10187 2742 6187 1258 63.3 MiB 0.11 0.00 3.75965 -128.904 -3.75965 3.75965 0.68 0.000765791 0.000710346 0.041834 0.0388418 34 2863 21 6.89349e+06 352346 618332. 2139.56 1.46 0.195235 0.170265 25762 151098 -1 2439 19 1508 2064 162191 35705 3.2257 3.2257 -125.915 -3.2257 0 0 787024. 2723.27 0.21 0.08 0.16 -1 -1 0.21 0.0294915 0.0258171 170 65 61 32 64 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_122.v common 6.35 vpr 63.50 MiB 0.05 7156 -1 -1 1 0.16 -1 -1 30876 -1 -1 33 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65028 32 32 500 382 1 323 97 17 17 289 -1 unnamed_device 25.0 MiB 1.42 1578 21409 7235 11132 3042 63.5 MiB 0.24 0.00 5.18464 -176.869 -5.18464 5.18464 0.68 0.000909058 0.00084415 0.0918357 0.0853054 36 3669 23 6.89349e+06 465097 648988. 2245.63 1.73 0.281444 0.247929 26050 158493 -1 3166 21 2767 3289 268017 58376 4.68855 4.68855 -175.491 -4.68855 0 0 828058. 2865.25 0.22 0.11 0.13 -1 -1 0.22 0.0381082 0.033223 224 96 64 32 96 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_123.v common 5.15 vpr 62.20 MiB 0.04 6788 -1 -1 1 0.16 -1 -1 30320 -1 -1 16 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63692 30 32 246 229 1 160 78 17 17 289 -1 unnamed_device 23.6 MiB 0.95 774 12860 4018 7384 1458 62.2 MiB 0.10 0.00 3.08706 -94.2237 -3.08706 3.08706 0.72 0.000535036 0.000497123 0.0434684 0.0404531 34 1791 26 6.89349e+06 225501 618332. 2139.56 1.20 0.149725 0.130391 25762 151098 -1 1521 14 671 688 50306 11916 2.32206 2.32206 -91.5321 -2.32206 0 0 787024. 2723.27 0.26 0.04 0.13 -1 -1 0.26 0.0165198 0.0144914 93 56 0 0 53 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_124.v common 5.33 vpr 62.59 MiB 0.04 6852 -1 -1 1 0.15 -1 -1 30208 -1 -1 21 30 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64092 30 32 296 244 1 181 83 17 17 289 -1 unnamed_device 24.0 MiB 0.98 936 13763 4663 7110 1990 62.6 MiB 0.12 0.00 4.23979 -138.497 -4.23979 4.23979 0.69 0.000618006 0.000574323 0.0492157 0.0457163 34 2073 18 6.89349e+06 295971 618332. 2139.56 1.37 0.172636 0.151027 25762 151098 -1 1712 19 1325 1993 135384 30980 3.52475 3.52475 -134.549 -3.52475 0 0 787024. 2723.27 0.22 0.07 0.15 -1 -1 0.22 0.0231913 0.0201529 124 34 60 30 30 30 +fixed_k6_frac_uripple_N8_22nm.xml mult_125.v common 6.32 vpr 62.78 MiB 0.06 6824 -1 -1 1 0.15 -1 -1 30160 -1 -1 18 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64288 32 32 314 256 1 199 82 17 17 289 -1 unnamed_device 24.2 MiB 1.78 1009 8448 2021 6048 379 62.8 MiB 0.10 0.00 4.33609 -148.866 -4.33609 4.33609 0.68 0.000647884 0.00060184 0.0328212 0.0304848 34 2921 40 6.89349e+06 253689 618332. 2139.56 1.59 0.153653 0.133754 25762 151098 -1 2327 21 1718 2957 211893 47155 3.6531 3.6531 -145.175 -3.6531 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0263601 0.0229254 129 34 64 32 32 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_126.v common 5.28 vpr 62.38 MiB 0.06 6876 -1 -1 1 0.16 -1 -1 30424 -1 -1 24 25 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63876 25 32 251 214 1 162 81 17 17 289 -1 unnamed_device 23.9 MiB 1.17 636 10231 2621 6138 1472 62.4 MiB 0.09 0.00 3.787 -96.2626 -3.787 3.787 0.68 0.000523676 0.000487454 0.0320974 0.0298024 34 1698 17 6.89349e+06 338252 618332. 2139.56 1.25 0.132278 0.114635 25762 151098 -1 1410 21 965 1336 84970 20070 3.03831 3.03831 -94.9133 -3.03831 0 0 787024. 2723.27 0.21 0.06 0.13 -1 -1 0.21 0.0223803 0.0193395 107 34 50 25 25 25 +fixed_k6_frac_uripple_N8_22nm.xml mult_127.v common 11.54 vpr 63.58 MiB 0.06 7124 -1 -1 1 0.17 -1 -1 30556 -1 -1 28 32 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65104 32 32 432 346 1 288 92 17 17 289 -1 unnamed_device 24.8 MiB 2.29 1453 17273 5845 8574 2854 63.6 MiB 0.19 0.00 4.55715 -154.068 -4.55715 4.55715 0.68 0.000797482 0.000739656 0.0692691 0.0642449 34 4118 30 6.89349e+06 394628 618332. 2139.56 6.01 0.348191 0.306632 25762 151098 -1 3057 25 2875 4249 305388 66464 3.92506 3.92506 -150.855 -3.92506 0 0 787024. 2723.27 0.29 0.11 0.15 -1 -1 0.29 0.0334232 0.0293392 190 94 32 32 94 32 +fixed_k6_frac_uripple_N8_22nm.xml mult_128.v common 6.33 vpr 63.50 MiB 0.05 7176 -1 -1 1 0.16 -1 -1 30464 -1 -1 27 31 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65020 31 32 421 339 1 274 90 17 17 289 -1 unnamed_device 24.8 MiB 1.63 1285 13758 3623 8223 1912 63.5 MiB 0.15 0.00 4.84654 -156.987 -4.84654 4.84654 0.69 0.00078122 0.000724489 0.0561447 0.0520771 34 3320 26 6.89349e+06 380534 618332. 2139.56 1.62 0.228276 0.199871 25762 151098 -1 2904 18 2149 2929 224577 49620 4.64999 4.64999 -162.754 -4.64999 0 0 787024. 2723.27 0.21 0.09 0.13 -1 -1 0.21 0.0291745 0.0255619 183 94 29 29 93 31 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_arch_list/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_arch_list/config/golden_results.txt index 5b02c7d71d6..e6f4fe4b2ed 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_arch_list/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/power_extended_arch_list/config/golden_results.txt @@ -1,31 +1,31 @@ - arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.97 vpr 66.31 MiB 0.05 9720 -1 -1 3 0.32 -1 -1 39772 -1 -1 68 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67900 99 130 363 493 1 258 298 12 12 144 clb auto 27.9 MiB 0.09 881 67958 19838 36520 11600 66.3 MiB 0.21 0.00 2.15962 -219.645 -2.15962 2.15962 0.36 0.000825364 0.000762861 0.0621517 0.0575337 44 1759 9 5.66058e+06 4.21279e+06 360780. 2505.42 2.13 0.336491 0.304797 13094 71552 -1 1573 8 494 612 41095 12758 2.38113 2.38113 -229.824 -2.38113 0 0 470765. 3269.20 0.16 0.04 0.08 -1 -1 0.16 0.0228607 0.0213648 0.0086 0.2587 0.07722 0.6641 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.55 vpr 70.12 MiB 0.04 9856 -1 -1 15 0.42 -1 -1 38036 -1 -1 40 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71800 162 96 999 932 1 694 303 16 16 256 mult_36 auto 31.7 MiB 0.30 5243 89799 29304 53416 7079 70.1 MiB 0.63 0.01 21.0348 -1861.88 -21.0348 21.0348 0.74 0.00319122 0.00295303 0.28324 0.264251 48 12126 31 1.21132e+07 4.13576e+06 756778. 2956.16 4.22 0.917193 0.852708 25228 149258 -1 9744 16 3036 5878 1596805 399959 22.9019 22.9019 -1963.89 -22.9019 0 0 968034. 3781.38 0.35 0.49 0.15 -1 -1 0.35 0.134523 0.12671 0.007538 0.3603 0.01704 0.6226 - k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1140.98 vpr 563.40 MiB 21.19 219312 -1 -1 127 357.84 -1 -1 95956 -1 -1 2029 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 576924 114 102 29627 29353 1 15978 2297 55 55 3025 clb auto 267.5 MiB 29.50 228839 1623240 590481 1011315 21444 561.8 MiB 59.34 0.50 79.0527 -58523.6 -79.0527 79.0527 38.51 0.0954067 0.0842072 11.2186 9.49577 100 341130 35 1.75831e+08 1.36634e+08 1.97786e+07 6538.36 479.06 41.0236 33.9296 423192 4219482 -1 311351 21 62328 245221 44046169 9569846 80.0276 80.0276 -70390.2 -80.0276 -16.7338 -0.175894 2.49494e+07 8247.73 13.35 19.88 5.13 -1 -1 13.35 5.63925 4.82316 0.1069 0.4268 0.01043 0.5628 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.99 vpr 66.35 MiB 0.05 9680 -1 -1 3 0.33 -1 -1 40256 -1 -1 68 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67944 99 130 363 493 1 258 298 12 12 144 clb auto 27.9 MiB 0.09 881 67958 19838 36520 11600 66.4 MiB 0.20 0.00 2.15962 -219.645 -2.15962 2.15962 0.36 0.000902263 0.000829658 0.0616197 0.0568304 44 1774 8 5.66058e+06 4.21279e+06 360780. 2505.42 2.13 0.328482 0.296458 13094 71552 -1 1642 10 511 633 48209 14922 2.34502 2.34502 -237.345 -2.34502 0 0 470765. 3269.20 0.15 0.05 0.08 -1 -1 0.15 0.0253309 0.0234449 0.009787 0.2278 0.06888 0.7033 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 11.11 vpr 70.45 MiB 0.04 9580 -1 -1 15 0.44 -1 -1 37852 -1 -1 40 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72140 162 96 999 932 1 694 303 16 16 256 mult_36 auto 32.2 MiB 0.31 5243 89799 29304 53416 7079 70.4 MiB 0.65 0.01 21.0348 -1861.88 -21.0348 21.0348 0.78 0.00313183 0.00295021 0.293052 0.273582 48 12504 37 1.21132e+07 4.13576e+06 756778. 2956.16 4.47 1.01942 0.946951 25228 149258 -1 9741 16 3083 6033 1629138 410198 22.9074 22.9074 -1987.73 -22.9074 0 0 968034. 3781.38 0.36 0.50 0.16 -1 -1 0.36 0.137832 0.12984 0.007825 0.3465 0.01641 0.6371 - k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1014.80 vpr 553.88 MiB 20.13 219232 -1 -1 127 341.39 -1 -1 95820 -1 -1 1944 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 567172 114 102 29627 29353 1 15597 2212 54 54 2916 clb auto 268.3 MiB 51.09 220189 1543654 553034 972931 17689 540.7 MiB 49.27 0.39 77.8174 -58247.8 -77.8174 77.8174 34.54 0.0772471 0.0675362 9.84444 8.16233 102 323569 27 1.70873e+08 1.32054e+08 1.93878e+07 6648.75 375.83 37.2017 30.6923 411192 4120304 -1 298546 20 59942 238169 42596836 9262413 79.1402 79.1402 -68453.7 -79.1402 -21.8702 -0.295467 2.43088e+07 8336.34 12.29 17.82 5.29 -1 -1 12.29 5.11104 4.38944 0.1067 0.4152 0.01044 0.5744 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.89 vpr 66.51 MiB 0.05 9576 -1 -1 3 0.33 -1 -1 40112 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68108 99 130 363 493 1 257 297 12 12 144 clb auto 28.1 MiB 0.09 671 70587 23703 35393 11491 66.5 MiB 0.21 0.00 2.16753 -221.485 -2.16753 2.16753 0.39 0.000867625 0.00079592 0.0666356 0.0615325 34 1794 22 5.66058e+06 4.1589e+06 307677. 2136.65 0.97 0.252583 0.228729 12584 59343 -1 1547 12 592 790 56649 19737 2.6803 2.6803 -247.184 -2.6803 0 0 377431. 2621.05 0.13 0.05 0.07 -1 -1 0.13 0.0279774 0.0258591 0.007511 0.2261 0.07038 0.7035 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 13.96 vpr 70.33 MiB 0.04 9688 -1 -1 15 0.44 -1 -1 38220 -1 -1 39 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72020 162 96 999 932 1 695 302 16 16 256 mult_36 auto 32.2 MiB 0.32 5433 92394 30638 54947 6809 70.3 MiB 0.70 0.01 21.3536 -1755.1 -21.3536 21.3536 0.82 0.00320745 0.00299174 0.310611 0.289873 46 13436 46 1.21132e+07 4.08187e+06 761464. 2974.47 7.08 1.02592 0.95157 25952 154797 -1 10186 18 3027 6292 2017553 509046 22.8431 22.8431 -1926.37 -22.8431 0 0 979054. 3824.43 0.37 0.61 0.16 -1 -1 0.37 0.146549 0.137531 0.00785 0.3501 0.01622 0.6337 - k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1349.78 vpr 633.35 MiB 20.61 219452 -1 -1 127 352.60 -1 -1 95888 -1 -1 1859 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 648552 114 102 29627 29353 1 15973 2127 53 53 2809 clb auto 263.6 MiB 336.35 224062 1478811 537877 919757 21177 591.5 MiB 60.67 0.48 78.1394 -58088.1 -78.1394 78.1394 36.22 0.0995874 0.0812285 12.3249 10.2525 102 330320 48 1.63647e+08 1.27472e+08 1.94476e+07 6923.33 398.18 59.1647 49.0077 408308 4233793 -1 299115 19 57309 228836 41959184 9411969 78.6148 78.6148 -69400.8 -78.6148 -27.0285 -0.196402 2.43065e+07 8653.08 10.45 18.24 5.22 -1 -1 10.45 5.03445 4.36189 0.1094 0.4042 0.01016 0.5857 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.74 vpr 66.70 MiB 0.05 9588 -1 -1 3 0.33 -1 -1 40324 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68296 99 130 363 493 1 257 297 12 12 144 clb auto 28.3 MiB 0.09 671 70587 23703 35393 11491 66.7 MiB 0.21 0.00 2.16753 -221.485 -2.16753 2.16753 0.39 0.000780427 0.000724808 0.0655052 0.0605696 38 1742 11 5.66058e+06 4.1589e+06 334530. 2323.13 0.79 0.216297 0.196287 13012 66834 -1 1532 8 547 722 70195 23581 2.70266 2.70266 -242.37 -2.70266 0 0 424691. 2949.24 0.14 0.04 0.08 -1 -1 0.14 0.0215065 0.0199263 0.008494 0.2067 0.06458 0.7288 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 15.73 vpr 70.24 MiB 0.04 9644 -1 -1 15 0.44 -1 -1 37720 -1 -1 39 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71924 162 96 999 932 1 695 302 16 16 256 mult_36 auto 32.1 MiB 0.32 5433 92394 30631 54957 6806 70.2 MiB 0.69 0.01 21.3536 -1754.99 -21.3536 21.3536 0.82 0.00301663 0.0027756 0.306085 0.285463 52 11073 33 1.21132e+07 4.08187e+06 843768. 3295.97 8.98 1.43396 1.32901 26972 173637 -1 9750 19 2941 6169 2004810 509430 22.9144 22.9144 -1851.24 -22.9144 0 0 1.11026e+06 4336.95 0.37 0.56 0.15 -1 -1 0.37 0.134817 0.127089 0.008314 0.3516 0.01627 0.6322 - k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1248.73 vpr 548.30 MiB 19.54 219352 -1 -1 127 354.21 -1 -1 95764 -1 -1 1787 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 561460 114 102 29627 29353 1 15296 2055 51 51 2601 clb auto 265.6 MiB 372.39 215382 1412427 514372 877154 20901 541.5 MiB 57.48 0.44 79.0408 -54859.7 -79.0408 79.0408 33.38 0.090429 0.0807595 11.9273 10.1092 100 313102 23 1.52527e+08 1.23592e+08 1.77677e+07 6831.11 265.89 38.1865 31.9732 377770 3888742 -1 284887 19 56646 227462 44576447 10225178 79.0435 79.0435 -63939.8 -79.0435 -31.459 -0.293253 2.23379e+07 8588.19 10.53 21.12 4.61 -1 -1 10.53 5.85325 5.06429 0.1064 0.3852 0.009711 0.6051 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.89 vpr 66.84 MiB 0.05 9576 -1 -1 3 0.33 -1 -1 39944 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68440 99 130 363 493 1 263 297 12 12 144 clb auto 28.5 MiB 0.09 642 74547 24785 37442 12320 66.8 MiB 0.23 0.00 2.30416 -223.329 -2.30416 2.30416 0.40 0.000858666 0.000794274 0.0702812 0.06519 38 1477 15 5.66058e+06 4.1589e+06 347689. 2414.51 1.88 0.354625 0.321976 13432 70334 -1 1334 8 545 713 50022 16797 2.75116 2.75116 -231.253 -2.75116 0 0 440062. 3055.98 0.15 0.04 0.07 -1 -1 0.15 0.0241737 0.0225997 0.007249 0.2114 0.07495 0.7136 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 20.22 vpr 70.61 MiB 0.04 9656 -1 -1 15 0.44 -1 -1 37848 -1 -1 36 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72300 162 96 999 932 1 700 299 16 16 256 mult_36 auto 32.3 MiB 0.34 5528 84215 28144 48090 7981 70.6 MiB 0.61 0.01 21.0199 -1913.05 -21.0199 21.0199 0.86 0.00311605 0.00289467 0.276097 0.257457 52 13910 49 1.21132e+07 3.92018e+06 875283. 3419.07 13.08 1.37911 1.27963 27812 183157 -1 10181 23 3630 7509 2262073 607352 21.8096 21.8096 -2059.37 -21.8096 0 0 1.15281e+06 4503.17 0.44 0.72 0.19 -1 -1 0.44 0.189432 0.177755 0.008328 0.3605 0.01718 0.6224 - k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1487.20 vpr 591.24 MiB 19.88 219184 -1 -1 127 354.95 -1 -1 95976 -1 -1 1812 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 605428 114 102 29627 29353 1 15860 2080 51 51 2601 clb auto 262.0 MiB 466.06 228577 1435456 507477 901487 26492 591.2 MiB 65.20 0.50 77.3966 -58119.8 -77.3966 77.3966 38.44 0.100895 0.0908569 12.7789 10.6997 102 327672 50 1.52527e+08 1.24939e+08 1.87472e+07 7207.70 396.36 41.2311 34.3513 391248 4169020 -1 297431 22 53944 214474 47288510 11027664 78.3194 78.3194 -68690.5 -78.3194 -17.5218 -0.197508 2.33621e+07 8981.95 10.70 22.14 4.46 -1 -1 10.70 5.96586 5.17922 0.1117 0.3846 0.009792 0.6056 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.32 vpr 66.72 MiB 0.05 9596 -1 -1 3 0.34 -1 -1 40072 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68324 99 130 363 493 1 263 297 12 12 144 clb auto 28.3 MiB 0.09 642 74547 24785 37442 12320 66.7 MiB 0.22 0.00 2.30416 -223.329 -2.30416 2.30416 0.40 0.000837197 0.000767425 0.0657756 0.0605795 44 1437 10 5.66058e+06 4.1589e+06 391831. 2721.05 2.26 0.383778 0.345667 14004 80442 -1 1310 9 527 696 53995 17885 2.63614 2.63614 -234.722 -2.63614 0 0 509951. 3541.33 0.17 0.04 0.09 -1 -1 0.17 0.0236531 0.0219779 0.008689 0.1996 0.07052 0.7298 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 12.94 vpr 70.32 MiB 0.04 9612 -1 -1 15 0.44 -1 -1 37756 -1 -1 37 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72004 162 96 999 932 1 698 300 16 16 256 mult_36 auto 32.1 MiB 0.33 5387 84552 26153 51104 7295 70.3 MiB 0.62 0.01 21.1179 -1902.21 -21.1179 21.1179 0.83 0.00270332 0.00250378 0.266241 0.248343 46 12560 26 1.21132e+07 3.97408e+06 791147. 3090.42 6.13 0.969796 0.901818 26792 163197 -1 10067 17 3308 6407 1869512 469463 22.2721 22.2721 -1996.48 -22.2721 0 0 1.01637e+06 3970.19 0.38 0.59 0.16 -1 -1 0.38 0.153754 0.144868 0.008366 0.3378 0.01569 0.6465 - k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1430.57 vpr 576.79 MiB 20.95 219128 -1 -1 127 353.95 -1 -1 96012 -1 -1 1718 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 590632 114 102 29627 29353 1 14984 1986 50 50 2500 clb memory auto 263.5 MiB 527.15 210923 1337132 473755 839107 24270 576.8 MiB 59.83 0.50 77.8971 -54367.7 -77.8971 77.8971 36.41 0.10463 0.0937673 12.5012 10.5485 98 312500 38 1.47946e+08 1.19873e+08 1.74237e+07 6969.48 289.86 41.7798 34.8613 371232 3885440 -1 277694 18 50893 208670 37617921 8593130 76.785 76.785 -65153.1 -76.785 -31.6225 -0.291039 2.19566e+07 8782.65 10.10 16.53 4.65 -1 -1 10.10 4.90325 4.25987 0.1101 0.3668 0.009901 0.6233 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.82 vpr 66.38 MiB 0.05 9580 -1 -1 3 0.33 -1 -1 40236 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67972 99 130 363 493 1 257 297 12 12 144 clb auto 28.0 MiB 0.08 671 70587 23703 35393 11491 66.4 MiB 0.20 0.00 2.16753 -221.485 -2.16753 2.16753 0.31 0.000702487 0.000650458 0.0552792 0.05117 48 1541 10 5.66058e+06 4.1589e+06 394078. 2736.65 1.99 0.203561 0.184692 13382 75762 -1 1442 9 565 758 69948 23235 2.66849 2.66849 -240.709 -2.66849 0 0 503207. 3494.49 0.15 0.05 0.09 -1 -1 0.15 0.0223394 0.0206607 0.007767 0.2462 0.07964 0.6742 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 17.01 vpr 70.30 MiB 0.03 9556 -1 -1 15 0.44 -1 -1 38164 -1 -1 38 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 71988 162 96 999 932 1 695 301 16 16 256 mult_36 auto 31.9 MiB 0.31 5431 82957 23970 52043 6944 70.3 MiB 0.62 0.01 21.033 -1808.39 -21.033 21.033 0.76 0.0029267 0.00270756 0.270974 0.252652 46 13820 47 1.21132e+07 4.02797e+06 727248. 2840.81 10.37 1.3129 1.21752 24972 144857 -1 10428 19 3473 7002 2197069 574769 22.3366 22.3366 -1939.4 -22.3366 0 0 934704. 3651.19 0.33 0.66 0.15 -1 -1 0.33 0.158595 0.148838 0.007806 0.3552 0.01658 0.6282 - k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1246.77 vpr 632.12 MiB 20.33 219172 -1 -1 127 355.90 -1 -1 96060 -1 -1 1957 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 647288 114 102 29627 29353 1 16248 2225 54 54 2916 clb auto 264.8 MiB 199.94 227085 1584796 583553 981142 20101 530.5 MiB 57.82 0.43 77.4139 -58337.2 -77.4139 77.4139 34.42 0.0837811 0.0735698 10.7115 8.95663 104 331344 33 1.70873e+08 1.32754e+08 1.97479e+07 6772.27 422.33 55.3866 45.7098 417024 4241048 -1 309236 20 62134 238752 57957684 14175741 77.4501 77.4501 -69212.6 -77.4501 -30.4123 -0.295467 2.50445e+07 8588.64 10.80 24.79 5.44 -1 -1 10.80 5.05065 4.35584 0.1085 0.4252 0.01098 0.5638 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.11 vpr 66.67 MiB 0.05 9612 -1 -1 3 0.33 -1 -1 39820 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68268 99 130 363 493 1 257 297 12 12 144 clb auto 28.2 MiB 0.09 671 70587 23703 35393 11491 66.7 MiB 0.21 0.00 2.16753 -221.485 -2.16753 2.16753 0.37 0.000862284 0.000795779 0.0640446 0.059195 48 1604 12 5.66058e+06 4.1589e+06 394078. 2736.65 2.17 0.240407 0.217889 13382 75762 -1 1496 9 554 722 69733 21746 2.66849 2.66849 -241.806 -2.66849 0 0 503207. 3494.49 0.16 0.05 0.09 -1 -1 0.16 0.023147 0.0214737 0.008746 0.2207 0.07073 0.7086 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 12.08 vpr 70.46 MiB 0.04 9596 -1 -1 15 0.45 -1 -1 37912 -1 -1 38 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72156 162 96 999 932 1 695 301 16 16 256 mult_36 auto 32.3 MiB 0.32 5431 82957 23969 52043 6945 70.5 MiB 0.64 0.01 21.033 -1808.36 -21.033 21.033 0.78 0.00338757 0.00318347 0.288135 0.269563 48 13090 34 1.21132e+07 4.02797e+06 756778. 2956.16 5.26 1.00133 0.930888 25228 149258 -1 10175 17 3315 6812 2334772 611115 22.3621 22.3621 -1928.95 -22.3621 0 0 968034. 3781.38 0.35 0.67 0.16 -1 -1 0.35 0.143812 0.13529 0.008107 0.343 0.01619 0.6408 - k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1293.69 vpr 550.58 MiB 16.32 219372 -1 -1 127 356.17 -1 -1 95952 -1 -1 1877 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 563796 114 102 29627 29353 1 15577 2145 53 53 2809 clb auto 266.5 MiB 245.17 221433 1481741 539150 924775 17816 525.3 MiB 52.89 0.41 79.4582 -58003 -79.4582 79.4582 33.39 0.0798086 0.0699407 9.95664 8.28677 100 329163 31 1.63647e+08 1.28443e+08 1.82848e+07 6509.36 441.95 37.5975 31.1977 391934 3893229 -1 299365 21 61256 240031 44440393 9809476 80.0361 80.0361 -68695.4 -80.0361 -24.6973 -0.202746 2.30694e+07 8212.69 12.15 20.50 4.83 -1 -1 12.15 6.14504 5.29585 0.1056 0.4054 0.01012 0.5845 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.94 vpr 66.60 MiB 0.05 9592 -1 -1 3 0.33 -1 -1 40324 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68200 99 130 363 493 1 263 297 12 12 144 clb auto 28.2 MiB 0.08 698 74547 23438 39124 11985 66.6 MiB 0.22 0.00 2.30306 -225.061 -2.30306 2.30306 0.36 0.00082102 0.000761475 0.0648014 0.059994 46 1552 16 5.66058e+06 4.1589e+06 378970. 2631.74 2.06 0.240427 0.218355 13238 73581 -1 1409 9 522 665 43736 14621 2.52801 2.52801 -234.894 -2.52801 0 0 486261. 3376.82 0.14 0.04 0.09 -1 -1 0.14 0.022798 0.0210561 0.008182 0.2442 0.07854 0.6772 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 15.46 vpr 70.41 MiB 0.04 9820 -1 -1 15 0.44 -1 -1 38036 -1 -1 37 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72100 162 96 999 932 1 693 300 16 16 256 mult_36 auto 32.0 MiB 0.32 5247 90570 31522 52140 6908 70.4 MiB 0.59 0.01 21.2724 -1941.96 -21.2724 21.2724 0.68 0.00253521 0.00236226 0.249186 0.232352 58 11936 50 1.21132e+07 3.97408e+06 904549. 3533.39 9.03 1.03733 0.96084 27012 180273 -1 9673 16 3229 6461 2008603 531403 22.1467 22.1467 -2069.83 -22.1467 0 0 1.15318e+06 4504.63 0.37 0.50 0.21 -1 -1 0.37 0.12041 0.112869 0.008199 0.3686 0.01778 0.6136 - k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1361.95 vpr 555.21 MiB 16.80 219184 -1 -1 127 357.35 -1 -1 96052 -1 -1 1941 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 568532 114 102 29627 29353 1 16180 2209 54 54 2916 clb auto 264.3 MiB 253.36 226556 1584009 579114 978250 26645 537.7 MiB 55.98 0.47 77.0936 -57948.4 -77.0936 77.0936 35.17 0.0897292 0.0794673 10.4115 8.62291 104 332879 42 1.70873e+08 1.31892e+08 1.97479e+07 6772.27 491.40 44.1904 36.7857 417024 4241048 -1 308264 19 62407 242043 50245754 12321272 77.6917 77.6917 -69434.9 -77.6917 -23.9722 -0.29436 2.50445e+07 8588.64 11.32 23.31 5.27 -1 -1 11.32 5.7546 4.96844 0.1097 0.4203 0.01105 0.5687 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.85 vpr 66.61 MiB 0.05 9772 -1 -1 3 0.33 -1 -1 39756 -1 -1 67 99 1 0 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68204 99 130 363 493 1 263 297 12 12 144 clb auto 28.2 MiB 0.09 698 74547 23438 39124 11985 66.6 MiB 0.22 0.00 2.30306 -225.061 -2.30306 2.30306 0.36 0.000824304 0.000760152 0.0649308 0.0599966 46 1575 10 5.66058e+06 4.1589e+06 378970. 2631.74 0.91 0.223743 0.202443 13238 73581 -1 1389 9 524 675 52109 17583 2.53113 2.53113 -236.37 -2.53113 0 0 486261. 3376.82 0.14 0.04 0.08 -1 -1 0.14 0.0227789 0.02118 0.00914 0.2142 0.07022 0.7156 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 12.33 vpr 70.50 MiB 0.03 9512 -1 -1 15 0.41 -1 -1 38236 -1 -1 36 162 0 5 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 72188 162 96 999 932 1 694 299 16 16 256 mult_36 auto 32.3 MiB 0.30 5627 80219 24417 49116 6686 70.5 MiB 0.62 0.01 21.2631 -2026.34 -21.2631 21.2631 0.76 0.00324016 0.00300465 0.272024 0.253485 50 12873 30 1.21132e+07 3.92018e+06 780512. 3048.87 5.67 0.970022 0.900898 25484 153448 -1 10552 19 3367 7018 2086800 517118 22.2242 22.2242 -2159.57 -22.2242 0 0 1.00276e+06 3917.05 0.39 0.62 0.18 -1 -1 0.39 0.151628 0.142774 0.008344 0.3469 0.01555 0.6376 - k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1138.44 vpr 537.62 MiB 18.36 219232 -1 -1 127 346.62 -1 -1 95796 -1 -1 1861 114 44 8 success 6bddfe3-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-06-19T14:09:32 gh-actions-runner-vtr-auto-spawned20 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 550524 114 102 29627 29353 1 15405 2129 53 53 2809 clb auto 264.4 MiB 276.15 208018 1508029 549048 934119 24862 523.4 MiB 56.16 0.44 79.0387 -56726.9 -79.0387 79.0387 33.43 0.0937698 0.0830974 11.0575 9.21957 96 326342 46 1.63647e+08 1.2758e+08 1.77316e+07 6312.43 270.68 53.044 44.0686 383510 3718515 -1 289712 23 60204 239220 40118281 8967321 78.2874 78.2874 -65275.8 -78.2874 -20.8876 -0.29436 2.21760e+07 7894.63 9.54 18.50 4.13 -1 -1 9.54 6.34075 5.40402 0.1055 0.391 0.01044 0.5985 +arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time total_power routing_power_perc clock_power_perc tile_power_perc +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 5.04 vpr 64.16 MiB 0.05 9320 -1 -1 3 0.33 -1 -1 34648 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65704 99 130 363 493 1 258 298 12 12 144 clb auto 25.8 MiB 0.10 800 67958 20411 35448 12099 64.2 MiB 0.19 0.00 2.31302 -219.278 -2.31302 2.31302 0.34 0.00084992 0.000792867 0.0612405 0.0571746 46 1629 31 5.66058e+06 4.21279e+06 378970. 2631.74 2.04 0.27902 0.252831 13238 73581 -1 1582 13 487 598 42848 12734 2.49871 2.49871 -237.316 -2.49871 0 0 486261. 3376.82 0.14 0.06 0.08 -1 -1 0.14 0.0354035 0.0328399 0.008279 0.2612 0.0782 0.6606 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml diffeq1.v common 10.63 vpr 68.05 MiB 0.04 9384 -1 -1 15 0.45 -1 -1 34976 -1 -1 40 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69684 162 96 999 932 1 694 303 16 16 256 mult_36 auto 29.7 MiB 0.31 5277 89799 28825 54736 6238 68.1 MiB 0.62 0.01 20.9342 -1844.99 -20.9342 20.9342 0.74 0.00285514 0.00266541 0.26942 0.251473 46 12596 32 1.21132e+07 4.13576e+06 727248. 2840.81 4.04 0.933577 0.865035 24972 144857 -1 10125 19 3418 6888 1141187 279004 22.6058 22.6058 -1995.42 -22.6058 0 0 934704. 3651.19 0.29 0.43 0.14 -1 -1 0.29 0.170217 0.158742 0.007582 0.3585 0.01681 0.6246 +k6_N10_I40_Fi6_L4_frac1_ff1_45nm.xml LU8PEEng.v common 952.15 vpr 564.33 MiB 12.60 218984 -1 -1 127 274.51 -1 -1 94232 -1 -1 2029 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 577876 114 102 29627 29353 1 15978 2297 55 55 3025 clb auto 264.9 MiB 27.78 228839 1623240 590481 1011315 21444 550.5 MiB 65.26 0.77 79.0527 -58523.6 -79.0527 79.0527 32.79 0.17614 0.148472 14.6745 12.2231 98 341439 36 1.75831e+08 1.36634e+08 1.94707e+07 6436.60 400.78 43.5835 36.0609 420168 4159412 -1 308606 19 60862 240441 13954327 2347493 80.0849 80.0849 -71879.2 -80.0849 -16.5757 -0.172573 2.46873e+07 8161.10 8.86 9.25 4.02 -1 -1 8.86 5.16632 4.44756 0.1064 0.4243 0.01044 0.5653 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 3.76 vpr 64.18 MiB 0.06 9532 -1 -1 3 0.33 -1 -1 34748 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65724 99 130 363 493 1 258 298 12 12 144 clb auto 25.8 MiB 0.09 800 67958 20411 35448 12099 64.2 MiB 0.19 0.00 2.31302 -219.278 -2.31302 2.31302 0.34 0.000844037 0.000783199 0.0612057 0.0571711 44 1678 10 5.66058e+06 4.21279e+06 360780. 2505.42 0.86 0.224923 0.203615 13094 71552 -1 1508 8 448 542 34932 10231 2.5584 2.5584 -236.015 -2.5584 0 0 470765. 3269.20 0.10 0.05 0.06 -1 -1 0.10 0.0280569 0.0259853 0.009028 0.2273 0.06823 0.7044 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml diffeq1.v common 10.89 vpr 68.11 MiB 0.04 9312 -1 -1 15 0.49 -1 -1 34712 -1 -1 40 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69748 162 96 999 932 1 694 303 16 16 256 mult_36 auto 29.7 MiB 0.32 5277 89799 28825 54736 6238 68.1 MiB 0.65 0.01 20.9342 -1844.99 -20.9342 20.9342 0.74 0.00339163 0.00319188 0.302601 0.282683 46 12644 42 1.21132e+07 4.13576e+06 727248. 2840.81 4.18 1.0971 1.0145 24972 144857 -1 10088 18 3376 6691 1083596 270289 22.5936 22.5936 -1992.43 -22.5936 0 0 934704. 3651.19 0.29 0.36 0.16 -1 -1 0.29 0.131002 0.122925 0.007875 0.3446 0.01619 0.6392 +k6_N10_I40_Fi6_L4_frac1_ff2_45nm.xml LU8PEEng.v common 888.97 vpr 559.72 MiB 13.27 218916 -1 -1 127 289.33 -1 -1 94208 -1 -1 1944 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 573152 114 102 29627 29353 1 15597 2212 54 54 2916 clb auto 266.1 MiB 56.39 220189 1543654 553034 972931 17689 538.2 MiB 47.52 0.34 77.8174 -58247.8 -77.8174 77.8174 37.45 0.0909761 0.0804158 11.56 9.57118 98 331273 46 1.70873e+08 1.32054e+08 1.87532e+07 6431.13 295.99 38.839 32.2246 405364 4004376 -1 295668 19 58647 234877 13015287 2203819 79.3123 79.3123 -67728.5 -79.3123 -22.233 -0.295467 2.37782e+07 8154.37 10.06 8.98 5.24 -1 -1 10.06 4.96968 4.27003 0.1058 0.4104 0.01045 0.5792 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.73 vpr 64.32 MiB 0.05 9316 -1 -1 3 0.34 -1 -1 34724 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65864 99 130 363 493 1 257 297 12 12 144 clb auto 25.9 MiB 0.09 675 70587 23786 34494 12307 64.3 MiB 0.24 0.00 2.06097 -216.904 -2.06097 2.06097 0.29 0.00128765 0.00121802 0.0956292 0.0904547 38 1752 19 5.66058e+06 4.1589e+06 334530. 2323.13 1.85 0.475389 0.435454 13012 66834 -1 1539 9 557 734 56577 18338 2.38753 2.38753 -235.06 -2.38753 0 0 424691. 2949.24 0.11 0.05 0.07 -1 -1 0.11 0.029718 0.0275262 0.008267 0.219 0.07531 0.7057 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 12.16 vpr 68.34 MiB 0.04 9432 -1 -1 15 0.36 -1 -1 34728 -1 -1 39 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69984 162 96 999 932 1 695 302 16 16 256 mult_36 auto 30.0 MiB 0.30 5360 92394 30675 54472 7247 68.3 MiB 0.60 0.01 21.385 -1775.97 -21.385 21.385 0.73 0.0027036 0.00252397 0.260869 0.243638 46 12518 37 1.21132e+07 4.08187e+06 761464. 2974.47 5.56 1.02463 0.949148 25952 154797 -1 10180 20 3284 6711 1150232 297309 22.6609 22.6609 -1917.68 -22.6609 0 0 979054. 3824.43 0.30 0.43 0.14 -1 -1 0.30 0.168768 0.158321 0.007876 0.3488 0.01628 0.6349 +k6_N10_I47_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1095.63 vpr 589.45 MiB 18.58 218976 -1 -1 127 260.98 -1 -1 94236 -1 -1 1859 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 603600 114 102 29627 29353 1 15973 2127 53 53 2809 clb auto 261.4 MiB 277.66 224062 1478811 537877 919757 21177 589.5 MiB 49.01 0.39 78.1394 -58088.1 -78.1394 78.1394 28.80 0.103502 0.0853631 11.8244 9.90606 102 324853 31 1.63647e+08 1.27472e+08 1.94476e+07 6923.33 320.76 41.4739 34.6667 408308 4233793 -1 298207 17 57491 229709 13611674 2346949 78.5321 78.5321 -69442.1 -78.5321 -27.7951 -0.218703 2.43065e+07 8653.08 8.22 8.79 4.04 -1 -1 8.22 4.8508 4.21541 0.1094 0.4041 0.01018 0.5857 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.03 vpr 64.59 MiB 0.05 9268 -1 -1 3 0.32 -1 -1 34860 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66144 99 130 363 493 1 257 297 12 12 144 clb auto 26.2 MiB 0.09 675 70587 23786 34494 12307 64.6 MiB 0.20 0.00 2.06097 -216.904 -2.06097 2.06097 0.36 0.000844084 0.000786093 0.0642793 0.0599554 40 1587 17 5.66058e+06 4.1589e+06 349084. 2424.19 2.03 0.288754 0.26139 13156 69019 -1 1453 11 606 822 60428 20374 2.40792 2.40792 -239.325 -2.40792 0 0 438335. 3043.99 0.10 0.06 0.07 -1 -1 0.10 0.0315117 0.0291268 0.009292 0.1946 0.06809 0.7373 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 10.16 vpr 68.27 MiB 0.03 9352 -1 -1 15 0.54 -1 -1 34832 -1 -1 39 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69904 162 96 999 932 1 695 302 16 16 256 mult_36 auto 29.8 MiB 0.32 5360 92394 30672 54474 7248 68.3 MiB 0.69 0.01 21.385 -1766.26 -21.385 21.385 0.57 0.00357204 0.00336086 0.351412 0.330753 50 11680 38 1.21132e+07 4.08187e+06 817349. 3192.77 3.61 1.11769 1.03713 26464 163948 -1 9689 18 3019 6230 993144 259255 22.3904 22.3904 -1863.42 -22.3904 0 0 1.05038e+06 4103.04 0.24 0.39 0.15 -1 -1 0.24 0.156354 0.145836 0.008281 0.3408 0.01563 0.6435 +k6_N10_I47_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1076.36 vpr 560.18 MiB 20.18 218856 -1 -1 127 304.97 -1 -1 94092 -1 -1 1787 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 573620 114 102 29627 29353 1 15296 2055 51 51 2601 clb auto 263.4 MiB 298.31 214708 1412427 512401 880313 19713 539.5 MiB 63.88 0.53 77.9026 -56702.8 -77.9026 77.9026 30.47 0.111874 0.0988033 13.6909 11.1544 100 304591 19 1.52527e+08 1.23592e+08 1.77677e+07 6831.11 223.65 43.3793 35.6286 377770 3888742 -1 284222 18 54280 218935 12264447 2144655 78.3289 78.3289 -69271.2 -78.3289 -36.6728 -0.293253 2.23379e+07 8588.19 7.45 8.51 3.67 -1 -1 7.45 4.77185 4.12414 0.1065 0.3849 0.009775 0.6053 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 3.79 vpr 64.60 MiB 0.06 9340 -1 -1 3 0.27 -1 -1 34836 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66148 99 130 363 493 1 263 297 12 12 144 clb auto 26.2 MiB 0.09 753 74547 26209 36886 11452 64.6 MiB 0.21 0.00 2.18081 -218.933 -2.18081 2.18081 0.37 0.000858283 0.000799416 0.0679769 0.063351 36 1748 9 5.66058e+06 4.1589e+06 333113. 2313.29 0.78 0.17887 0.162905 13148 65652 -1 1584 8 501 624 45234 13713 2.67156 2.67156 -237.303 -2.67156 0 0 410918. 2853.60 0.13 0.04 0.07 -1 -1 0.13 0.0220008 0.020444 0.007667 0.237 0.07061 0.6924 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 15.86 vpr 68.46 MiB 0.04 9432 -1 -1 15 0.47 -1 -1 34688 -1 -1 36 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 70104 162 96 999 932 1 700 299 16 16 256 mult_36 auto 30.2 MiB 0.34 5528 84215 28144 48090 7981 68.5 MiB 0.64 0.01 21.0199 -1913.05 -21.0199 21.0199 0.59 0.00376938 0.00355186 0.333401 0.314217 54 12237 41 1.21132e+07 3.92018e+06 907659. 3545.54 8.83 1.57484 1.45883 28068 188990 -1 9572 23 3365 6936 1060479 312002 22.0245 22.0245 -2055.99 -22.0245 0 0 1.17889e+06 4605.05 0.42 0.46 0.20 -1 -1 0.42 0.193123 0.179976 0.008245 0.3578 0.01731 0.6248 +k6_N10_I53_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1143.34 vpr 597.89 MiB 13.53 218980 -1 -1 127 297.15 -1 -1 94192 -1 -1 1812 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 612244 114 102 29627 29353 1 15860 2080 51 51 2601 clb auto 259.6 MiB 335.27 225673 1422184 502979 896473 22732 597.9 MiB 50.26 0.37 78.0286 -61576.4 -78.0286 78.0286 31.13 0.0966087 0.0859946 11.6978 9.90354 102 317314 26 1.52527e+08 1.24939e+08 1.87472e+07 7207.70 269.85 40.5784 34.0203 391248 4169020 -1 292945 17 52934 211394 12641687 2214327 78.6805 78.6805 -74739.1 -78.6805 -25.0814 -0.217304 2.33621e+07 8981.95 7.93 8.41 3.83 -1 -1 7.93 4.57539 3.983 0.1116 0.3842 0.009778 0.606 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 5.08 vpr 64.61 MiB 0.05 9352 -1 -1 3 0.33 -1 -1 34668 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66156 99 130 363 493 1 263 297 12 12 144 clb auto 26.3 MiB 0.09 753 74547 26209 36886 11452 64.6 MiB 0.21 0.00 2.18081 -218.933 -2.18081 2.18081 0.38 0.000865832 0.000804553 0.0683989 0.0637157 32 1868 16 5.66058e+06 4.1589e+06 307825. 2137.67 2.01 0.316946 0.285511 12860 59602 -1 1634 11 497 621 45791 14080 2.6008 2.6008 -240.86 -2.6008 0 0 375846. 2610.04 0.13 0.05 0.06 -1 -1 0.13 0.0279518 0.0258151 0.008725 0.2043 0.06071 0.735 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 12.23 vpr 68.49 MiB 0.04 9300 -1 -1 15 0.46 -1 -1 34760 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 70136 162 96 999 932 1 698 300 16 16 256 mult_36 auto 30.2 MiB 0.32 5387 84552 26153 51104 7295 68.5 MiB 0.58 0.01 21.1179 -1902.21 -21.1179 21.1179 0.78 0.00287104 0.00268168 0.257431 0.240687 46 11955 23 1.21132e+07 3.97408e+06 791147. 3090.42 5.47 0.9558 0.884019 26792 163197 -1 9883 19 2946 5881 924029 235743 22.1098 22.1098 -2003.62 -22.1098 0 0 1.01637e+06 3970.19 0.33 0.36 0.16 -1 -1 0.33 0.144145 0.13522 0.008373 0.3352 0.01572 0.649 +k6_N10_I53_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1126.24 vpr 607.00 MiB 13.71 219088 -1 -1 127 291.99 -1 -1 94252 -1 -1 1718 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 621572 114 102 29627 29353 1 14984 1986 50 50 2500 clb memory auto 261.4 MiB 378.70 218563 1324654 461383 839792 23479 583.5 MiB 44.98 0.36 77.7661 -55766 -77.7661 77.7661 29.62 0.100689 0.082984 11.5367 9.67621 100 317716 39 1.47946e+08 1.19873e+08 1.76909e+07 7076.35 231.33 51.6297 42.9301 373728 3941812 -1 285478 18 52782 215559 13339459 2342041 77.6938 77.6938 -69078.1 -77.6938 -18.74 -0.29436 2.21802e+07 8872.08 7.55 8.79 3.62 -1 -1 7.55 4.8129 4.14932 0.1104 0.3704 0.009876 0.6197 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.02 vpr 64.63 MiB 0.05 9344 -1 -1 3 0.33 -1 -1 34768 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66184 99 130 363 493 1 257 297 12 12 144 clb auto 26.0 MiB 0.09 661 70587 23573 34704 12310 64.6 MiB 0.25 0.00 2.10537 -219.095 -2.10537 2.10537 0.36 0.0012969 0.0012263 0.0991258 0.0938175 48 1536 12 5.66058e+06 4.1589e+06 394078. 2736.65 0.90 0.352846 0.324569 13382 75762 -1 1386 10 529 744 43922 13727 2.39085 2.39085 -235.703 -2.39085 0 0 503207. 3494.49 0.16 0.05 0.09 -1 -1 0.16 0.0285357 0.026575 0.008404 0.2321 0.08139 0.6865 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml diffeq1.v common 17.11 vpr 68.23 MiB 0.04 9520 -1 -1 15 0.47 -1 -1 34752 -1 -1 38 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69872 162 96 999 932 1 695 301 16 16 256 mult_36 auto 30.0 MiB 0.31 5198 85981 28299 50132 7550 68.2 MiB 0.65 0.01 21.1363 -1809.27 -21.1363 21.1363 0.71 0.00367813 0.00346155 0.329734 0.310379 52 13400 46 1.21132e+07 4.02797e+06 805949. 3148.24 10.35 1.56959 1.45233 25992 162577 -1 9762 20 3526 7432 1138955 313948 22.4357 22.4357 -1903.83 -22.4357 0 0 1.06067e+06 4143.25 0.33 0.40 0.18 -1 -1 0.33 0.146341 0.137041 0.007873 0.3612 0.01723 0.6216 +k6_N10_I40_Fi7_L4_frac1_ff1_45nm.xml LU8PEEng.v common 994.60 vpr 552.60 MiB 21.46 218864 -1 -1 127 302.27 -1 -1 94472 -1 -1 1957 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 565860 114 102 29627 29353 1 16248 2225 54 54 2916 clb auto 262.7 MiB 177.44 227085 1584796 583553 981142 20101 526.2 MiB 52.04 0.53 77.4139 -58337.2 -77.4139 77.4139 29.31 0.113763 0.0977618 11.6625 9.75874 102 330620 34 1.70873e+08 1.32754e+08 1.93878e+07 6648.75 281.74 38.0285 31.6038 411192 4120304 -1 308031 21 63747 244839 14237630 2402822 77.4335 77.4335 -69242.9 -77.4335 -37.8173 -0.295467 2.43088e+07 8336.34 8.74 9.82 5.00 -1 -1 8.74 5.38844 4.62528 0.1072 0.4185 0.01071 0.5708 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.30 vpr 64.38 MiB 0.09 9300 -1 -1 3 0.26 -1 -1 34796 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65928 99 130 363 493 1 257 297 12 12 144 clb auto 26.0 MiB 0.09 661 70587 23573 34704 12310 64.4 MiB 0.21 0.00 2.10537 -219.095 -2.10537 2.10537 0.36 0.000894742 0.000835961 0.0668517 0.0625211 48 1548 14 5.66058e+06 4.1589e+06 394078. 2736.65 0.96 0.316871 0.289425 13382 75762 -1 1403 11 537 740 43070 12598 2.45154 2.45154 -234.304 -2.45154 0 0 503207. 3494.49 0.15 0.05 0.09 -1 -1 0.15 0.0286746 0.0266363 0.009265 0.2065 0.07202 0.7215 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml diffeq1.v common 17.81 vpr 68.12 MiB 0.06 9300 -1 -1 15 0.35 -1 -1 34816 -1 -1 38 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69756 162 96 999 932 1 695 301 16 16 256 mult_36 auto 29.8 MiB 0.20 5198 85981 28299 50132 7550 68.1 MiB 0.67 0.01 21.1363 -1809.27 -21.1363 21.1363 0.57 0.0037053 0.00348736 0.30405 0.284808 54 12832 37 1.21132e+07 4.02797e+06 835850. 3265.04 11.38 1.62079 1.49843 26248 167850 -1 9602 20 3473 7258 1376008 379273 22.7989 22.7989 -1896.97 -22.7989 0 0 1.08614e+06 4242.72 0.35 0.48 0.19 -1 -1 0.35 0.153659 0.144374 0.008127 0.3521 0.01675 0.6311 +k6_N10_I40_Fi7_L4_frac1_ff2_45nm.xml LU8PEEng.v common 1009.44 vpr 547.81 MiB 18.22 218940 -1 -1 127 254.29 -1 -1 94304 -1 -1 1877 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 560956 114 102 29627 29353 1 15577 2145 53 53 2809 clb auto 263.6 MiB 195.19 221433 1481741 539150 924775 17816 522.2 MiB 48.42 0.36 79.4582 -58003 -79.4582 79.4582 24.97 0.093659 0.0830851 11.6469 9.71877 100 327119 29 1.63647e+08 1.28443e+08 1.82848e+07 6509.36 321.27 42.5474 35.2552 391934 3893229 -1 297260 21 59319 233974 13222267 2234497 80.088 80.088 -67945.9 -80.088 -23.8136 -0.198467 2.30694e+07 8212.69 11.56 9.73 5.13 -1 -1 11.56 5.56787 4.77112 0.1055 0.4052 0.01012 0.5846 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml ch_intrinsics.v common 4.33 vpr 64.42 MiB 0.10 9512 -1 -1 3 0.32 -1 -1 34592 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65968 99 130 363 493 1 263 297 12 12 144 clb auto 26.1 MiB 0.10 693 74547 23657 38501 12389 64.4 MiB 0.22 0.00 2.31302 -223.119 -2.31302 2.31302 0.36 0.000848465 0.000789958 0.0703241 0.0657712 46 1584 12 5.66058e+06 4.1589e+06 378970. 2631.74 0.91 0.255854 0.232543 13238 73581 -1 1450 10 515 663 41197 12558 2.60662 2.60662 -232.509 -2.60662 0 0 486261. 3376.82 0.14 0.05 0.08 -1 -1 0.14 0.0275493 0.0256237 0.007921 0.2401 0.07839 0.6815 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml diffeq1.v common 13.28 vpr 68.06 MiB 0.07 9288 -1 -1 15 0.45 -1 -1 34904 -1 -1 37 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69696 162 96 999 932 1 693 300 16 16 256 mult_36 auto 29.8 MiB 0.32 5322 90570 31108 51820 7642 68.1 MiB 0.65 0.01 21.3042 -1920.21 -21.3042 21.3042 0.76 0.00298462 0.00279186 0.286636 0.268288 56 12332 41 1.21132e+07 3.97408e+06 870502. 3400.40 6.43 1.38378 1.2821 26504 172068 -1 9620 20 3038 6315 952947 270636 21.8984 21.8984 -2032.36 -21.8984 0 0 1.11200e+06 4343.75 0.38 0.43 0.16 -1 -1 0.38 0.176494 0.162514 0.008136 0.3604 0.01701 0.6225 +k6_N10_I40_Fi8_L4_frac1_ff1_45nm.xml LU8PEEng.v common 1053.14 vpr 557.15 MiB 15.72 218948 -1 -1 127 304.67 -1 -1 94156 -1 -1 1941 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 570520 114 102 29627 29353 1 16180 2209 54 54 2916 clb auto 261.0 MiB 194.45 226556 1584009 579114 978250 26645 542.6 MiB 55.77 0.49 77.0936 -57948.4 -77.0936 77.0936 34.63 0.0983849 0.0878283 12.6755 10.4295 102 333172 33 1.70873e+08 1.31892e+08 1.93878e+07 6648.75 315.01 41.1515 34.0655 411192 4120304 -1 306661 20 64502 247936 14859337 2510178 77.8901 77.8901 -70044.2 -77.8901 -22.9528 -0.296573 2.43088e+07 8336.34 8.94 11.06 4.05 -1 -1 8.94 5.69864 4.85944 0.1084 0.4135 0.01078 0.5757 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml ch_intrinsics.v common 4.06 vpr 64.46 MiB 0.08 9368 -1 -1 3 0.29 -1 -1 34896 -1 -1 67 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66008 99 130 363 493 1 263 297 12 12 144 clb auto 26.2 MiB 0.09 693 74547 23657 38501 12389 64.5 MiB 0.22 0.00 2.31302 -223.119 -2.31302 2.31302 0.35 0.000863444 0.000806491 0.0692541 0.064721 46 1664 16 5.66058e+06 4.1589e+06 378970. 2631.74 0.82 0.309964 0.283557 13238 73581 -1 1436 8 497 650 35277 10955 2.52499 2.52499 -230.813 -2.52499 0 0 486261. 3376.82 0.10 0.03 0.05 -1 -1 0.10 0.0159032 0.0149096 0.009169 0.2153 0.06988 0.7148 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml diffeq1.v common 10.86 vpr 68.12 MiB 0.06 9268 -1 -1 15 0.43 -1 -1 34708 -1 -1 36 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 69760 162 96 999 932 1 694 299 16 16 256 mult_36 auto 29.8 MiB 0.26 5641 84215 27484 50211 6520 68.1 MiB 0.65 0.01 21.2271 -2029 -21.2271 21.2271 0.64 0.00366556 0.00345131 0.300665 0.282605 50 12357 39 1.21132e+07 3.92018e+06 780512. 3048.87 4.42 1.25983 1.16709 25484 153448 -1 10200 19 3359 6893 1100214 278333 22.1044 22.1044 -2121.72 -22.1044 0 0 1.00276e+06 3917.05 0.32 0.44 0.16 -1 -1 0.32 0.178204 0.166437 0.008337 0.3443 0.01557 0.6401 +k6_N10_I40_Fi8_L4_frac1_ff2_45nm.xml LU8PEEng.v common 942.85 vpr 531.20 MiB 15.85 218908 -1 -1 127 293.94 -1 -1 94092 -1 -1 1861 114 44 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 543944 114 102 29627 29353 1 15405 2129 53 53 2809 clb auto 263.1 MiB 209.11 208018 1508029 549048 934119 24862 522.1 MiB 43.47 0.34 79.0387 -56726.9 -79.0387 79.0387 25.55 0.0932268 0.0826546 11.6056 9.76887 96 310871 28 1.63647e+08 1.2758e+08 1.77316e+07 6312.43 214.23 42.071 35.1763 383510 3718515 -1 283996 21 57788 230143 13204655 2271009 78.2446 78.2446 -65711.2 -78.2446 -20.7642 -0.29436 2.21760e+07 7894.63 10.89 9.52 4.84 -1 -1 10.89 5.45775 4.71855 0.1054 0.3896 0.01047 0.6 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt index 7d481319553..bda5821888f 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test1_odin/vpr_reg_mcnc_equiv/config/golden_results.txt @@ -1,20 +1,20 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_N10_40nm.xml alu4.pre-vpr.blif common 9.29 vpr 65.08 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66644 14 8 926 934 0 478 118 12 12 144 clb auto 27.6 MiB 0.41 4805 7921 1196 6264 461 65.1 MiB 0.18 0.01 4.7509 -33.2503 -4.7509 nan 0.36 0.00245534 0.00218398 0.0861248 0.0762105 74 6597 21 5.3894e+06 5.17382e+06 608941. 4228.75 6.03 1.1052 0.963163 14184 119952 -1 6717 44 4137 20437 842824 113986 4.58526 nan -32.9374 -4.58526 0 0 758555. 5267.75 0.22 0.28 0.12 -1 -1 0.22 0.124145 0.110592 -k6_N10_40nm.xml apex2.pre-vpr.blif common 8.94 vpr 67.36 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68972 39 3 1113 1117 0 655 156 13 13 169 clb auto 29.7 MiB 0.53 7970 14402 2695 10284 1423 67.4 MiB 0.30 0.01 5.67046 -16.7656 -5.67046 nan 0.44 0.00249151 0.00212297 0.115197 0.101904 74 12212 25 6.52117e+06 6.14392e+06 728195. 4308.85 5.41 0.941858 0.815146 16710 144151 -1 12100 18 6056 29564 1238130 177195 5.46327 nan -16.0252 -5.46327 0 0 906856. 5366.01 0.19 0.29 0.08 -1 -1 0.19 0.0956231 0.0877335 -k6_N10_40nm.xml apex4.pre-vpr.blif common 7.93 vpr 65.52 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67096 9 19 897 916 0 536 123 12 12 144 clb auto 27.8 MiB 0.45 6343 9578 1685 7369 524 65.5 MiB 0.23 0.01 4.76124 -79.5577 -4.76124 nan 0.36 0.00226599 0.00196452 0.0943993 0.0837185 62 10552 34 5.3894e+06 5.11993e+06 523024. 3632.11 4.35 0.89265 0.774996 13040 101000 -1 9514 34 6114 31519 1235789 184059 5.08979 nan -80.98 -5.08979 0 0 643745. 4470.45 0.21 0.57 0.10 -1 -1 0.21 0.212584 0.188789 -k6_N10_40nm.xml bigkey.pre-vpr.blif common 8.57 vpr 66.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68196 263 197 1372 1603 1 490 554 17 17 289 io auto 28.6 MiB 0.32 4429 175652 50348 113731 11573 66.6 MiB 0.78 0.02 2.82334 -708.457 -2.82334 2.82334 0.89 0.00309848 0.00277799 0.251899 0.224174 34 7778 18 1.21262e+07 5.06604e+06 661981. 2290.59 3.59 0.946112 0.847675 21366 128092 -1 7371 18 2453 11694 676065 127375 3.03973 3.03973 -763.206 -3.03973 0 0 811075. 2806.49 0.31 0.31 0.12 -1 -1 0.31 0.133578 0.12208 -k6_N10_40nm.xml clma.pre-vpr.blif common 42.14 vpr 100.22 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 102628 383 82 3674 4077 1 2327 845 22 22 484 clb auto 53.9 MiB 1.73 30495 408131 149393 204426 54312 91.1 MiB 4.72 0.05 8.38463 -355.215 -8.38463 8.38463 1.71 0.0104313 0.00935194 1.25162 1.04414 86 48680 35 2.15576e+07 2.04797e+07 2.58188e+06 5334.46 24.07 5.1352 4.28764 52488 536144 -1 43642 27 20275 90858 4018144 545419 8.17711 8.17711 -353.933 -8.17711 0 0 3.23937e+06 6692.90 0.85 1.18 0.33 -1 -1 0.85 0.436135 0.383384 -k6_N10_40nm.xml des.pre-vpr.blif common 7.63 vpr 64.74 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66292 256 245 954 1199 0 610 600 18 18 324 io auto 26.8 MiB 0.25 4908 149811 41746 100723 7342 64.7 MiB 0.59 0.01 3.98472 -745.824 -3.98472 nan 1.02 0.00279852 0.00260384 0.181571 0.168921 32 8452 46 1.37969e+07 5.33551e+06 718733. 2218.31 2.72 0.697381 0.647433 23676 138656 -1 7309 16 2635 6179 382431 81452 4.25723 nan -787.373 -4.25723 0 0 879796. 2715.42 0.35 0.22 0.12 -1 -1 0.35 0.11147 0.104644 -k6_N10_40nm.xml diffeq.pre-vpr.blif common 5.96 vpr 65.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67564 64 39 1371 1410 1 553 200 12 12 144 clb auto 28.1 MiB 0.33 3782 22392 4498 16716 1178 66.0 MiB 0.28 0.01 5.76255 -1080.02 -5.76255 5.76255 0.39 0.00268109 0.00242071 0.122136 0.108269 46 5161 24 5.3894e+06 5.22772e+06 394751. 2741.33 1.80 0.696206 0.60919 11608 77537 -1 5089 24 3148 10672 380947 63653 5.40496 5.40496 -1070.98 -5.40496 0 0 505417. 3509.84 0.17 0.25 0.08 -1 -1 0.17 0.143015 0.128603 -k6_N10_40nm.xml dsip.pre-vpr.blif common 9.46 vpr 66.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 68068 229 197 1370 1567 1 535 521 16 16 256 io auto 28.5 MiB 0.33 4249 145076 42098 96002 6976 66.5 MiB 0.71 0.01 2.82038 -687.741 -2.82038 2.82038 0.74 0.00305502 0.00278554 0.230386 0.204932 34 7820 28 1.05632e+07 5.11993e+06 580208. 2266.44 4.88 1.03291 0.925929 18880 112045 -1 7420 18 2762 9849 588259 120916 2.94626 2.94626 -745.332 -2.94626 0 0 710900. 2776.95 0.30 0.34 0.10 -1 -1 0.30 0.158768 0.144045 -k6_N10_40nm.xml elliptic.pre-vpr.blif common 26.78 vpr 78.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80328 131 114 3421 3535 1 1217 475 18 18 324 clb auto 41.3 MiB 0.99 11435 128263 36626 85751 5886 78.4 MiB 1.41 0.02 7.47596 -4443.09 -7.47596 7.47596 1.05 0.00689155 0.00617445 0.553306 0.477884 50 20115 48 1.37969e+07 1.23956e+07 1.02665e+06 3168.68 13.47 3.20144 2.75548 27232 203968 -1 16697 23 7740 32519 1480622 220162 7.27428 7.27428 -4524.79 -7.27428 0 0 1.31637e+06 4062.87 0.50 0.75 0.18 -1 -1 0.50 0.386104 0.344498 -k6_N10_40nm.xml ex1010.pre-vpr.blif common 46.88 vpr 85.48 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 87536 10 10 2659 2669 0 1417 322 20 20 400 clb auto 45.6 MiB 1.55 26735 58781 15782 41072 1927 82.1 MiB 1.51 0.03 6.79311 -65.8142 -6.79311 nan 1.35 0.0085124 0.00699839 0.554051 0.464812 98 46081 40 1.74617e+07 1.6276e+07 2.35420e+06 5885.50 33.93 5.65722 4.78731 46488 495728 -1 40094 26 13124 79778 4200582 472080 6.72249 nan -64.7071 -6.72249 0 0 2.96690e+06 7417.26 1.14 1.68 0.56 -1 -1 1.14 0.520613 0.459683 -k6_N10_40nm.xml ex5p.pre-vpr.blif common 8.38 vpr 63.84 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 65376 8 63 761 824 0 443 149 11 11 121 clb auto 26.0 MiB 0.34 4420 9999 1667 7706 626 63.8 MiB 0.17 0.01 4.13681 -180.38 -4.13681 nan 0.29 0.00211285 0.00182583 0.0720785 0.0644836 68 6844 29 4.36541e+06 4.20373e+06 471571. 3897.28 5.57 1.06761 0.928764 11382 90811 -1 6299 27 3950 17583 680545 104378 4.04861 nan -185.982 -4.04861 0 0 579861. 4792.24 0.19 0.34 0.09 -1 -1 0.19 0.141177 0.126817 -k6_N10_40nm.xml frisc.pre-vpr.blif common 30.81 vpr 78.66 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 80548 20 116 3175 3291 1 1254 376 18 18 324 clb auto 41.3 MiB 1.01 14937 83092 21035 56910 5147 78.7 MiB 1.24 0.02 9.37137 -4836.23 -9.37137 9.37137 1.06 0.00697286 0.00631498 0.487542 0.424923 66 23239 30 1.37969e+07 1.29346e+07 1.36437e+06 4211.00 15.48 4.05596 3.47527 30784 270180 -1 20879 24 8723 36885 1817074 266114 9.12568 9.12568 -4847.74 -9.12568 0 0 1.68162e+06 5190.19 0.68 0.96 0.27 -1 -1 0.68 0.464555 0.409006 -k6_N10_40nm.xml misex3.pre-vpr.blif common 8.14 vpr 64.57 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 66124 14 14 828 842 0 488 115 12 12 144 clb auto 26.8 MiB 0.37 4941 5695 788 4522 385 64.6 MiB 0.13 0.01 4.69826 -60.2129 -4.69826 nan 0.36 0.00194998 0.00170438 0.0577851 0.0517467 54 8009 47 5.3894e+06 4.68878e+06 451357. 3134.42 4.78 1.0707 0.928432 12324 89954 -1 7171 21 4179 17710 662276 104535 4.54449 nan -60.4911 -4.54449 0 0 586610. 4073.68 0.20 0.33 0.09 -1 -1 0.20 0.137883 0.125264 -k6_N10_40nm.xml pdc.pre-vpr.blif common 32.65 vpr 82.86 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 84852 16 40 2839 2879 0 1501 363 20 20 400 clb auto 46.3 MiB 1.35 24796 68945 17552 48401 2992 82.9 MiB 1.52 0.02 7.00232 -251.23 -7.00232 nan 1.36 0.00825615 0.00726621 0.537715 0.450301 80 44574 39 1.74617e+07 1.65455e+07 1.96642e+06 4916.06 17.86 3.70284 3.07411 41700 405380 -1 36503 18 12436 74071 3266555 428458 6.7432 nan -249.933 -6.7432 0 0 2.46811e+06 6170.27 1.06 1.45 0.44 -1 -1 1.06 0.492521 0.439734 -k6_N10_40nm.xml s298.pre-vpr.blif common 5.16 vpr 63.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 64812 4 6 726 732 1 378 87 11 11 121 clb auto 25.6 MiB 0.33 3693 3735 430 3194 111 63.3 MiB 0.12 0.00 6.30858 -51.7143 -6.30858 6.30858 0.29 0.00206524 0.0018247 0.0575937 0.0523635 44 6200 32 4.36541e+06 4.14984e+06 309216. 2555.51 1.92 0.492503 0.432481 9582 61621 -1 5457 22 3588 18601 711043 111359 6.51519 6.51519 -54.7562 -6.51519 0 0 401578. 3318.83 0.13 0.30 0.06 -1 -1 0.13 0.11595 0.105363 -k6_N10_40nm.xml s38584.1.pre-vpr.blif common 37.82 vpr 87.45 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 89548 39 304 4677 4982 1 2229 711 22 22 484 clb auto 50.6 MiB 1.27 15892 248127 72238 162853 13036 87.4 MiB 2.76 0.04 5.02641 -3215.78 -5.02641 5.02641 1.86 0.00946056 0.0084162 0.850041 0.726935 44 24233 33 2.15576e+07 1.9833e+07 1.41060e+06 2914.46 9.06 3.67401 3.14581 39444 288878 -1 21443 23 12112 33710 1370500 248738 5.15976 5.15976 -3289.71 -5.15976 0 0 1.82601e+06 3772.76 0.88 1.06 0.28 -1 -1 0.88 0.611244 0.534232 -k6_N10_40nm.xml seq.pre-vpr.blif common 8.06 vpr 65.75 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67332 41 35 1006 1041 0 588 179 13 13 169 clb auto 28.2 MiB 0.48 6846 17819 3270 12655 1894 65.8 MiB 0.31 0.01 4.96104 -139.99 -4.96104 nan 0.44 0.00266866 0.00225678 0.118497 0.104761 56 12202 44 6.52117e+06 5.55108e+06 559864. 3312.80 4.05 0.848326 0.735081 14694 110679 -1 10652 23 5478 25529 1041333 159644 4.77402 nan -140.731 -4.77402 0 0 714795. 4229.55 0.23 0.47 0.11 -1 -1 0.23 0.169854 0.153167 -k6_N10_40nm.xml spla.pre-vpr.blif common 32.64 vpr 77.38 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 79240 16 46 2232 2278 0 1154 307 18 18 324 clb auto 40.0 MiB 1.04 17066 52057 12539 36561 2957 77.4 MiB 1.10 0.02 6.1923 -216.925 -6.1923 nan 1.04 0.00646966 0.00573086 0.413673 0.351269 70 29237 30 1.37969e+07 1.3204e+07 1.42834e+06 4408.47 21.13 4.16608 3.52139 31752 286880 -1 25273 21 9773 55725 2341275 316396 6.1326 nan -216.962 -6.1326 0 0 1.78317e+06 5503.60 0.72 1.16 0.29 -1 -1 0.72 0.428936 0.383431 -k6_N10_40nm.xml tseng.pre-vpr.blif common 7.00 vpr 65.94 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success 8f82416-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.5.0 on Linux-5.10.35-v8 x86_64 2024-07-02T00:48:13 gh-actions-runner-vtr-auto-spawned84 /root/vtr-verilog-to-routing/vtr-verilog-to-routing 67524 52 122 1461 1583 1 509 284 13 13 169 clb auto 28.1 MiB 0.30 3129 40403 8633 29315 2455 65.9 MiB 0.32 0.01 5.00636 -1311.79 -5.00636 5.00636 0.44 0.00242755 0.00214846 0.127974 0.114495 32 5107 32 6.52117e+06 5.92834e+06 352895. 2088.14 3.01 0.951342 0.834771 12174 67024 -1 4717 29 2763 8262 352580 70758 4.58906 4.58906 -1300.62 -4.58906 0 0 431135. 2551.09 0.16 0.27 0.06 -1 -1 0.16 0.167609 0.149371 +k6_N10_40nm.xml alu4.pre-vpr.blif common 7.76 vpr 62.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 96 14 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64324 14 8 926 934 0 478 118 12 12 144 clb auto 25.2 MiB 0.38 4861 7632 1203 5895 534 62.8 MiB 0.17 0.01 4.81129 -34.1057 -4.81129 nan 0.27 0.00268016 0.00239437 0.0921622 0.0840249 46 7231 38 5.3894e+06 5.17382e+06 394751. 2741.33 4.43 1.14519 0.975669 11608 77537 -1 6595 28 4058 16664 540701 92262 4.80486 nan -34.1889 -4.80486 0 0 505417. 3509.84 0.11 0.35 0.06 -1 -1 0.11 0.169653 0.149572 +k6_N10_40nm.xml apex2.pre-vpr.blif common 10.80 vpr 64.82 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 114 38 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66372 39 3 1113 1117 0 655 156 13 13 169 clb auto 27.0 MiB 0.44 7848 14402 2649 10506 1247 64.8 MiB 0.30 0.01 5.87593 -17.0535 -5.87593 nan 0.33 0.0033768 0.00301197 0.140538 0.125808 62 12749 40 6.52117e+06 6.14392e+06 625464. 3700.97 6.66 1.49383 1.27657 15366 121367 -1 11821 23 6604 31705 1246490 182417 5.81821 nan -16.7076 -5.81821 0 0 769731. 4554.62 0.17 0.53 0.10 -1 -1 0.17 0.187098 0.166632 +k6_N10_40nm.xml apex4.pre-vpr.blif common 9.26 vpr 62.98 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 9 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64492 9 19 897 916 0 536 123 12 12 144 clb auto 25.1 MiB 0.38 6367 10188 1820 7797 571 63.0 MiB 0.23 0.01 4.88521 -80.8415 -4.88521 nan 0.27 0.00264516 0.00235526 0.109306 0.0990424 66 10539 41 5.3894e+06 5.11993e+06 560347. 3891.30 5.97 1.30892 1.1184 13468 108906 -1 9283 23 5485 27663 1064675 156764 4.65429 nan -79.0523 -4.65429 0 0 691600. 4802.78 0.15 0.44 0.09 -1 -1 0.15 0.155233 0.137431 +k6_N10_40nm.xml bigkey.pre-vpr.blif common 8.38 vpr 64.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 94 229 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66020 263 197 1372 1603 1 490 554 17 17 289 io auto 26.7 MiB 0.28 4178 159734 45914 103901 9919 64.5 MiB 0.79 0.02 2.70925 -671.72 -2.70925 2.70925 0.64 0.00445182 0.00413965 0.330107 0.306858 34 7557 39 1.21262e+07 5.06604e+06 661981. 2290.59 3.90 1.48466 1.36037 21366 128092 -1 7059 18 2466 10935 583644 114043 2.85657 2.85657 -752.661 -2.85657 0 0 811075. 2806.49 0.21 0.34 0.10 -1 -1 0.21 0.179564 0.165338 +k6_N10_40nm.xml clma.pre-vpr.blif common 45.43 vpr 98.55 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 380 62 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 100916 383 82 3674 4077 1 2327 845 22 22 484 clb auto 51.4 MiB 1.35 30536 404138 145984 204912 53242 88.7 MiB 3.96 0.04 8.28648 -342.814 -8.28648 8.28648 1.22 0.0109283 0.00975566 1.26568 1.08435 92 45121 29 2.15576e+07 2.04797e+07 2.73869e+06 5658.45 26.05 6.48752 5.51559 54420 571420 -1 43376 29 19558 86867 3860017 513016 7.95314 7.95314 -345.544 -7.95314 0 0 3.45136e+06 7130.90 0.94 1.92 0.51 -1 -1 0.94 0.778866 0.688202 +k6_N10_40nm.xml des.pre-vpr.blif common 9.35 vpr 62.44 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 99 256 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 63940 256 245 954 1199 0 610 600 18 18 324 io auto 24.4 MiB 0.22 5201 152340 42475 102399 7466 62.4 MiB 0.70 0.01 4.01708 -735.869 -4.01708 nan 0.74 0.00432095 0.00411661 0.279359 0.265563 34 8241 27 1.37969e+07 5.33551e+06 748928. 2311.50 4.88 1.4811 1.39285 24000 145208 -1 7511 17 2653 6680 385709 78794 4.12548 nan -759.699 -4.12548 0 0 917842. 2832.85 0.25 0.28 0.13 -1 -1 0.25 0.165146 0.155923 +k6_N10_40nm.xml diffeq.pre-vpr.blif common 6.83 vpr 63.47 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 97 64 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64996 64 39 1371 1410 1 553 200 12 12 144 clb auto 25.7 MiB 0.33 3676 26480 5493 19478 1509 63.5 MiB 0.32 0.01 5.67908 -1077.43 -5.67908 5.67908 0.28 0.00307186 0.00277633 0.154828 0.139713 38 5312 30 5.3894e+06 5.22772e+06 334593. 2323.56 3.02 1.23812 1.07716 10892 65896 -1 4681 24 3118 10062 332682 58566 5.25636 5.25636 -1066.77 -5.25636 0 0 421775. 2928.99 0.10 0.28 0.05 -1 -1 0.10 0.162332 0.143707 +k6_N10_40nm.xml dsip.pre-vpr.blif common 10.41 vpr 64.28 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 95 229 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 65820 229 197 1370 1567 1 535 521 16 16 256 io auto 26.5 MiB 0.28 4350 153456 43659 102077 7720 64.3 MiB 0.82 0.01 2.80678 -681.737 -2.80678 2.80678 0.56 0.00447106 0.0041367 0.343081 0.318161 38 7633 19 1.05632e+07 5.11993e+06 632420. 2470.39 5.98 1.97197 1.80552 19644 126006 -1 7305 17 2918 10969 578645 115697 2.91527 2.91527 -741.719 -2.91527 0 0 795593. 3107.78 0.20 0.34 0.09 -1 -1 0.20 0.177752 0.163877 +k6_N10_40nm.xml elliptic.pre-vpr.blif common 19.56 vpr 75.93 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 230 131 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 77756 131 114 3421 3535 1 1217 475 18 18 324 clb auto 38.7 MiB 0.77 11347 120855 33486 81237 6132 75.9 MiB 1.28 0.02 7.13553 -4320.98 -7.13553 7.13553 0.73 0.00818749 0.00705374 0.580626 0.506894 48 19982 50 1.37969e+07 1.23956e+07 993200. 3065.43 6.72 2.71097 2.35561 26908 198320 -1 16973 26 8483 39234 1744343 258077 7.66136 7.66136 -4653.26 -7.66136 0 0 1.27511e+06 3935.53 0.32 0.96 0.16 -1 -1 0.32 0.474548 0.417741 +k6_N10_40nm.xml ex1010.pre-vpr.blif common 27.08 vpr 78.90 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 302 10 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 80796 10 10 2659 2669 0 1417 322 20 20 400 clb auto 42.2 MiB 1.39 26765 54369 14249 38293 1827 78.9 MiB 1.27 0.02 6.86168 -66.9094 -6.86168 nan 0.99 0.00852817 0.00710596 0.521554 0.440077 94 46016 47 1.74617e+07 1.6276e+07 2.27873e+06 5696.83 15.18 3.48664 2.94301 45288 471832 -1 39438 22 11954 73222 3569257 422550 6.88723 nan -65.8735 -6.88723 0 0 2.85166e+06 7129.14 0.77 1.51 0.42 -1 -1 0.77 0.480523 0.428257 +k6_N10_40nm.xml ex5p.pre-vpr.blif common 7.46 vpr 60.69 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 78 8 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62144 8 63 761 824 0 443 149 11 11 121 clb auto 23.0 MiB 0.29 4365 10393 1634 8064 695 60.7 MiB 0.16 0.00 3.97055 -176.997 -3.97055 nan 0.22 0.00229947 0.00206045 0.0778241 0.0709551 48 7082 46 4.36541e+06 4.20373e+06 335787. 2775.10 4.25 1.03324 0.89222 9822 65237 -1 6729 28 4991 22770 866459 146568 4.58986 nan -193.081 -4.58986 0 0 429749. 3551.64 0.09 0.39 0.05 -1 -1 0.09 0.148085 0.130394 +k6_N10_40nm.xml frisc.pre-vpr.blif common 20.89 vpr 74.92 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 240 20 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 76716 20 116 3175 3291 1 1254 376 18 18 324 clb auto 37.9 MiB 0.82 14685 80380 20907 54421 5052 74.9 MiB 1.13 0.02 9.24379 -4776.02 -9.24379 9.24379 0.76 0.00762563 0.0068663 0.519043 0.459572 62 23090 37 1.37969e+07 1.29346e+07 1.27511e+06 3935.53 7.95 2.92597 2.53599 29816 251192 -1 20677 21 8763 36307 1741171 258132 9.01491 9.01491 -4759.53 -9.01491 0 0 1.56830e+06 4840.43 0.39 0.88 0.22 -1 -1 0.39 0.405453 0.36066 +k6_N10_40nm.xml misex3.pre-vpr.blif common 6.31 vpr 61.11 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 87 14 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 62580 14 14 828 842 0 488 115 12 12 144 clb auto 23.2 MiB 0.37 4935 5695 744 4551 400 61.1 MiB 0.16 0.01 4.79249 -61.804 -4.79249 nan 0.37 0.00246508 0.00220742 0.0889532 0.0828023 54 7604 31 5.3894e+06 4.68878e+06 451357. 3134.42 2.19 0.695334 0.602673 12324 89954 -1 6845 22 4062 16390 568848 90964 4.68218 nan -60.5547 -4.68218 0 0 586610. 4073.68 0.13 0.30 0.07 -1 -1 0.13 0.134293 0.119441 +k6_N10_40nm.xml pdc.pre-vpr.blif common 38.17 vpr 81.76 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 307 16 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 83720 16 40 2839 2879 0 1501 363 20 20 400 clb auto 43.3 MiB 1.16 25014 66357 17421 46037 2899 79.8 MiB 1.31 0.02 6.83699 -247.117 -6.83699 nan 0.95 0.00845483 0.00741979 0.518059 0.441436 82 42830 39 1.74617e+07 1.65455e+07 2.00877e+06 5021.92 24.88 4.70002 3.94787 42096 413520 -1 38130 22 13860 81299 3800886 488665 6.71184 nan -247.972 -6.71184 0 0 2.51236e+06 6280.89 0.64 1.59 0.35 -1 -1 0.64 0.499731 0.438829 +k6_N10_40nm.xml s298.pre-vpr.blif common 5.77 vpr 60.29 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 77 4 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 61740 4 6 726 732 1 378 87 11 11 121 clb auto 22.4 MiB 0.33 3710 3735 467 3148 120 60.3 MiB 0.11 0.00 6.30076 -51.2059 -6.30076 6.30076 0.19 0.00220818 0.00198831 0.060016 0.0551442 42 5925 39 4.36541e+06 4.14984e+06 295967. 2446.01 1.90 0.593966 0.518346 9342 57501 -1 5240 20 3648 17740 624970 99961 6.23714 6.23714 -51.9411 -6.23714 0 0 370932. 3065.56 0.08 0.28 0.05 -1 -1 0.08 0.115253 0.103184 +k6_N10_40nm.xml s38584.1.pre-vpr.blif common 36.74 vpr 84.09 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 368 38 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 86104 39 304 4677 4982 1 2229 711 22 22 484 clb auto 47.3 MiB 1.21 16114 235439 69717 153572 12150 84.1 MiB 2.23 0.03 5.15754 -3222.7 -5.15754 5.15754 1.20 0.0102317 0.0091935 0.859663 0.755323 46 23557 28 2.15576e+07 1.9833e+07 1.47372e+06 3044.87 14.43 5.3141 4.59517 39928 297508 -1 21848 20 12048 33140 1389867 248384 5.26639 5.26639 -3309.97 -5.26639 0 0 1.89173e+06 3908.53 0.52 0.92 0.24 -1 -1 0.52 0.532739 0.4751 +k6_N10_40nm.xml seq.pre-vpr.blif common 9.17 vpr 62.60 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 103 41 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64100 41 35 1006 1041 0 588 179 13 13 169 clb auto 25.1 MiB 0.41 6757 18323 3346 13019 1958 62.6 MiB 0.30 0.01 4.73381 -138.546 -4.73381 nan 0.37 0.00316456 0.00281561 0.136506 0.123772 54 11881 46 6.52117e+06 5.55108e+06 539739. 3193.72 4.56 1.20287 1.03582 14526 108005 -1 10157 29 6206 29234 1118957 171309 4.75759 nan -139.997 -4.75759 0 0 701340. 4149.94 0.17 0.59 0.09 -1 -1 0.17 0.236187 0.21014 +k6_N10_40nm.xml spla.pre-vpr.blif common 20.89 vpr 74.42 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 245 16 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 76208 16 46 2232 2278 0 1154 307 18 18 324 clb auto 37.1 MiB 1.07 16779 48952 11697 35209 2046 74.4 MiB 0.92 0.02 6.08527 -208.77 -6.08527 nan 0.73 0.00695066 0.00586298 0.383034 0.330852 66 27990 40 1.37969e+07 1.3204e+07 1.36437e+06 4211.00 9.64 2.61453 2.23378 30784 270180 -1 24982 26 10258 57102 2418263 320767 6.07089 nan -212.873 -6.07089 0 0 1.68162e+06 5190.19 0.43 1.35 0.24 -1 -1 0.43 0.490628 0.43132 +k6_N10_40nm.xml tseng.pre-vpr.blif common 6.78 vpr 63.00 MiB -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 110 52 -1 -1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 64516 52 122 1461 1583 1 509 284 13 13 169 clb auto 25.2 MiB 0.26 3113 40403 8942 28841 2620 63.0 MiB 0.35 0.01 5.05358 -1317.46 -5.05358 5.05358 0.33 0.00358824 0.00324337 0.167202 0.152449 30 4903 26 6.52117e+06 5.92834e+06 338182. 2001.08 2.60 1.03872 0.913532 12006 64407 -1 4475 24 2689 8005 295215 59880 5.2333 5.2333 -1302.14 -5.2333 0 0 415024. 2455.76 0.10 0.26 0.05 -1 -1 0.10 0.161208 0.143346 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt index 8af30fb0763..fe2531a4c18 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_nightly_test3/vtr_reg_qor_chain_predictor_off/config/golden_results.txt @@ -1,20 +1,20 @@ arch circuit script_params vtr_flow_elapsed_time vtr_max_mem_stage vtr_max_mem error odin_synth_time max_odin_mem parmys_synth_time max_parmys_mem abc_depth abc_synth_time abc_cec_time abc_sec_time max_abc_mem ace_time max_ace_mem num_clb num_io num_memories num_mult vpr_status vpr_revision vpr_build_info vpr_compiler vpr_compiled hostname rundir max_vpr_mem num_primary_inputs num_primary_outputs num_pre_packed_nets num_pre_packed_blocks num_netlist_clocks num_post_packed_nets num_post_packed_blocks device_width device_height device_grid_tiles device_limiting_resources device_name pack_mem pack_time placed_wirelength_est total_swap accepted_swap rejected_swap aborted_swap place_mem place_time place_quench_time placed_CPD_est placed_setup_TNS_est placed_setup_WNS_est placed_geomean_nonvirtual_intradomain_critical_path_delay_est place_delay_matrix_lookup_time place_quench_timing_analysis_time place_quench_sta_time place_total_timing_analysis_time place_total_sta_time min_chan_width routed_wirelength min_chan_width_route_success_iteration logic_block_area_total logic_block_area_used min_chan_width_routing_area_total min_chan_width_routing_area_per_tile min_chan_width_route_time min_chan_width_total_timing_analysis_time min_chan_width_total_sta_time crit_path_num_rr_graph_nodes crit_path_num_rr_graph_edges crit_path_collapsed_nodes crit_path_routed_wirelength crit_path_route_success_iteration crit_path_total_nets_routed crit_path_total_connections_routed crit_path_total_heap_pushes crit_path_total_heap_pops critical_path_delay geomean_nonvirtual_intradomain_critical_path_delay setup_TNS setup_WNS hold_TNS hold_WNS crit_path_routing_area_total crit_path_routing_area_per_tile router_lookahead_computation_time crit_path_route_time crit_path_create_rr_graph_time crit_path_create_intra_cluster_rr_graph_time crit_path_tile_lookahead_computation_time crit_path_router_lookahead_computation_time crit_path_total_timing_analysis_time crit_path_total_sta_time -k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 441.81 vpr 246.12 MiB -1 -1 60.18 124640 20 103.60 -1 -1 72624 -1 -1 845 133 25 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 252032 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 151.9 MiB 66.79 118924 594647 194976 378111 21560 183.7 MiB 18.70 0.21 22.9084 -204192 -22.9084 22.9084 6.52 0.040446 0.0376686 3.26268 2.75196 110 178335 36 7.21828e+07 5.92414e+07 8.93497e+06 6894.27 152.90 13.2287 11.3737 190984 1913024 -1 161823 15 30054 117753 9419873 1670055 24.2109 24.2109 -215085 -24.2109 0 0 1.14064e+07 8801.20 4.45 3.92 1.78 -1 -1 4.45 1.78942 1.66279 -k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 655.75 vpr 675.60 MiB -1 -1 113.25 637280 14 140.05 -1 -1 123864 -1 -1 2709 257 0 11 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 691816 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 374.5 MiB 112.62 245016 2196123 784924 1379682 31517 675.6 MiB 60.56 0.52 20.3938 -25436.9 -20.3938 20.3938 49.43 0.0480246 0.0421418 5.98976 5.15123 76 385516 49 2.36641e+08 1.50357e+08 2.05973e+07 5189.55 98.90 23.8416 20.8749 506266 4280222 -1 367033 20 91970 420346 18607055 2752931 20.356 20.356 -25872.9 -20.356 0 0 2.57532e+07 6488.59 9.66 8.10 3.29 -1 -1 9.66 4.27224 4.00002 -k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 214.47 parmys 258.88 MiB -1 -1 34.49 265092 5 13.42 -1 -1 58832 -1 -1 495 36 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 143784 36 100 10178 7632 1 2757 631 29 29 841 clb auto 105.1 MiB 41.66 41815 227851 66553 146878 14420 138.9 MiB 8.22 0.09 15.4276 -2482.62 -15.4276 15.4276 5.75 0.00883094 0.00764747 2.03704 1.76139 70 70652 35 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 80.82 8.06895 6.99536 101140 791177 -1 61302 14 12424 63518 2535193 364441 15.7375 15.7375 -2759.66 -15.7375 0 0 4.87732e+06 5799.43 3.57 2.37 1.19 -1 -1 3.57 1.51455 1.47325 -k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 61.09 vpr 71.91 MiB -1 -1 38.53 48640 3 2.36 -1 -1 39372 -1 -1 45 196 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 73640 196 193 1201 1346 1 603 435 15 15 225 io auto 34.0 MiB 2.13 2906 143724 39989 91049 12686 71.9 MiB 1.66 0.01 2.23678 -1083.88 -2.23678 2.23678 1.70 0.00181406 0.00164697 0.544581 0.53014 36 6414 25 1.03862e+07 2.97323e+06 520410. 2312.93 6.26 1.96779 1.8761 21110 102306 -1 5630 14 1931 2862 228911 59108 2.77547 2.77547 -1223.72 -2.77547 0 0 643451. 2859.78 0.94 0.37 0.20 -1 -1 0.94 0.232963 0.229076 -k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 11.33 vpr 66.88 MiB -1 -1 1.25 21888 3 0.20 -1 -1 37068 -1 -1 68 99 1 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 68480 99 130 344 474 1 227 298 12 12 144 clb auto 28.5 MiB 0.74 552 74923 20922 40083 13918 66.9 MiB 0.65 0.00 1.839 -120.424 -1.839 1.839 0.94 0.000434168 0.000386242 0.305889 0.0259251 40 1366 19 5.66058e+06 4.21279e+06 333335. 2314.82 2.41 0.731611 0.443883 12946 64812 -1 1197 11 406 615 31856 9598 1.98484 1.98484 -138.688 -1.98484 0 0 419432. 2912.72 0.36 0.08 0.15 -1 -1 0.36 0.0688819 0.0679694 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 31.34 vpr 69.97 MiB -1 -1 1.36 25080 5 0.50 -1 -1 38040 -1 -1 32 162 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 71648 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 32.1 MiB 1.35 5055 92509 33442 52071 6996 70.0 MiB 1.54 0.08 15.9193 -1240.37 -15.9193 15.9193 2.20 0.00115195 0.00103926 0.511273 0.499883 52 11221 44 1.21132e+07 3.70461e+06 805949. 3148.24 15.34 1.52513 1.488 26552 162987 -1 9285 21 2899 4869 996144 262436 17.1487 17.1487 -1335.43 -17.1487 0 0 1.06067e+06 4143.25 1.05 0.72 0.31 -1 -1 1.05 0.251949 0.24803 -k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 33.55 vpr 68.45 MiB -1 -1 0.92 24624 5 0.36 -1 -1 37504 -1 -1 22 66 0 5 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 70092 66 96 778 595 1 467 189 16 16 256 mult_36 auto 30.3 MiB 1.18 3573 45175 14938 25152 5085 68.4 MiB 0.59 0.00 12.2285 -757.263 -12.2285 12.2285 2.64 0.000829089 0.000741288 0.296001 0.207582 50 8196 32 1.21132e+07 3.16567e+06 780532. 3048.95 17.54 0.91882 0.801916 26044 153858 -1 7038 20 2831 5567 1083476 276961 12.8517 12.8517 -827.298 -12.8517 0 0 1.00276e+06 3917.05 1.20 1.24 0.26 -1 -1 1.20 0.55112 0.547864 -k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 634.49 vpr 583.27 MiB -1 -1 134.94 457728 97 140.08 -1 -1 116436 -1 -1 2135 114 45 8 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 597272 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 346.8 MiB 94.88 223999 1805268 668923 1105538 30807 556.0 MiB 52.78 0.42 74.8526 -53067.9 -74.8526 74.8526 37.99 0.0426053 0.036302 6.15283 5.16283 98 328098 28 1.8697e+08 1.42894e+08 2.01848e+07 6436.49 102.99 24.6827 21.1736 445422 4317135 -1 306424 22 66707 259251 13340453 2269989 73.9663 73.9663 -62346.4 -73.9663 0 0 2.55970e+07 8162.30 11.96 6.08 3.50 -1 -1 11.96 3.57722 3.28859 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 214.25 vpr 316.48 MiB -1 -1 35.79 122444 5 12.90 -1 -1 48632 -1 -1 476 506 44 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 324076 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 59.4 MiB 12.14 15208 1187218 574336 423866 189016 316.5 MiB 10.41 0.15 7.88836 -2144.82 -7.88836 7.88836 62.81 0.0598338 0.0589533 4.17334 3.8936 38 23209 14 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 34.36 10.6284 10.0642 258216 1426232 -1 22350 14 3839 5032 1037208 241380 8.26327 8.26327 -2426.39 -8.26327 0 0 8.69102e+06 3476.41 8.30 1.38 2.20 -1 -1 8.30 1.08952 1.03144 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 48.99 vpr 72.51 MiB -1 -1 3.14 28880 2 0.61 -1 -1 38076 -1 -1 30 311 15 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 74248 311 156 1015 1158 1 965 512 28 28 784 memory auto 34.6 MiB 1.99 8123 209306 77878 121727 9701 72.5 MiB 2.04 0.01 4.24034 -4312.49 -4.24034 4.24034 7.44 0.00230164 0.00200065 0.537309 0.377233 46 13506 14 4.25198e+07 9.83682e+06 2.40571e+06 3068.51 16.14 2.52678 2.31141 81794 492802 -1 13124 16 2811 3175 701350 185699 4.25987 4.25987 -4818.17 -4.25987 0 0 3.09729e+06 3950.62 3.48 0.92 0.82 -1 -1 3.48 0.640298 0.493211 -k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 69.07 vpr 83.67 MiB -1 -1 16.30 55624 5 6.10 -1 -1 43028 -1 -1 167 193 5 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 85676 193 205 2718 2652 1 1363 570 20 20 400 memory auto 46.2 MiB 8.35 10499 243856 86287 132432 25137 83.7 MiB 4.30 0.09 5.50153 -2864.86 -5.50153 5.50153 3.29 0.00291676 0.00248969 1.43876 1.31624 52 18796 27 2.07112e+07 1.17403e+07 1.31074e+06 3276.84 16.23 4.38953 4.10974 42580 268535 -1 16714 13 4494 11079 636879 128985 5.67199 5.67199 -3033.25 -5.67199 -0.00271738 -0.00135869 1.72518e+06 4312.96 1.59 0.82 0.50 -1 -1 1.59 0.60969 0.60135 -k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 379.24 vpr 105.15 MiB -1 -1 15.57 66120 8 11.75 -1 -1 44468 -1 -1 246 385 2 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 107676 385 362 4415 4299 1 2357 996 26 26 676 io auto 61.4 MiB 19.78 28726 547916 210036 314446 23434 98.4 MiB 10.73 0.07 9.08512 -9570.09 -9.08512 9.08512 5.96 0.00329531 0.00296933 2.17123 2.02972 102 41255 49 3.69863e+07 1.47499e+07 4.28034e+06 6331.86 297.81 8.74784 8.27578 95788 898762 -1 39972 16 9447 31588 1763573 297369 9.08065 9.08065 -9902.11 -9.08065 0 0 5.37165e+06 7946.23 2.37 0.94 0.92 -1 -1 2.37 0.548402 0.527779 -k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 77.40 vpr 84.96 MiB -1 -1 10.65 44824 3 1.95 -1 -1 40840 -1 -1 122 236 1 6 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 87004 236 305 3199 3011 1 1513 670 19 19 361 io auto 48.0 MiB 7.01 12400 264370 86759 164165 13446 85.0 MiB 4.47 0.02 4.73305 -2853.54 -4.73305 4.73305 2.93 0.00348242 0.0031267 0.749665 0.713428 62 26338 47 1.72706e+07 9.49907e+06 1.42198e+06 3939.00 36.48 4.8707 4.51469 40483 281719 -1 21312 17 7193 19188 2027773 455475 4.85695 4.85695 -3063.38 -4.85695 0 0 1.76637e+06 4892.99 1.34 1.46 0.49 -1 -1 1.34 0.600206 0.587981 -k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 41.21 vpr 82.93 MiB -1 -1 6.27 47796 3 4.75 -1 -1 43312 -1 -1 139 38 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 84924 38 36 2739 2488 1 1037 213 16 16 256 clb auto 45.7 MiB 5.08 9128 40218 10132 27089 2997 82.9 MiB 2.28 0.01 10.3799 -2787.19 -10.3799 10.3799 1.52 0.00206601 0.0016792 0.648359 0.576821 70 13785 27 1.21132e+07 7.49127e+06 1.08607e+06 4242.47 8.72 3.33834 2.93252 29612 216119 -1 12472 19 3746 8710 316144 53238 10.4324 10.4324 -3279.89 -10.4324 0 0 1.36713e+06 5340.37 1.37 0.74 0.32 -1 -1 1.37 0.718388 0.469764 -k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 40.32 vpr 73.88 MiB -1 -1 7.81 35564 16 1.73 -1 -1 38720 -1 -1 60 45 3 1 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 75656 45 32 1192 1151 1 782 141 14 14 196 memory auto 36.2 MiB 6.89 6359 25029 7172 15872 1985 73.9 MiB 0.88 0.01 10.5514 -6933.99 -10.5514 10.5514 1.76 0.00147002 0.00119631 0.424451 0.316307 70 12362 27 9.20055e+06 5.27364e+06 825316. 4210.80 12.19 2.10407 1.84446 22820 164109 -1 10157 16 3115 8010 611716 149589 10.6548 10.6548 -7166.09 -10.6548 0 0 1.03831e+06 5297.50 0.97 0.75 0.46 -1 -1 0.97 0.188719 0.181711 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 181.05 vpr 229.26 MiB -1 -1 27.74 102924 5 20.21 -1 -1 69852 -1 -1 707 169 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 234760 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 174.7 MiB 25.95 40507 561155 178846 355353 26956 208.5 MiB 13.25 0.12 3.5747 -13857.8 -3.5747 3.5747 8.08 0.0148748 0.0122654 4.09005 3.48051 56 60901 39 6.0475e+07 3.81032e+07 4.09277e+06 3758.28 39.60 16.1655 14.0507 121655 832457 -1 55874 14 16410 25120 1046349 197808 4.09433 4.09433 -15090.6 -4.09433 0 0 5.21984e+06 4793.24 4.23 3.32 1.26 -1 -1 4.23 3.36427 3.04225 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 372.31 vpr 255.63 MiB -1 -1 25.80 124968 3 27.12 -1 -1 78048 -1 -1 679 115 0 40 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 261768 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 171.8 MiB 23.53 84166 520892 166892 327998 26002 206.7 MiB 16.90 0.17 5.43112 -22815.3 -5.43112 5.43112 11.32 0.0623107 0.0599798 4.35297 3.45995 86 139376 46 9.16046e+07 5.24347e+07 8.98461e+06 5615.38 223.57 16.813 14.4233 212028 1885476 -1 121351 16 33519 51273 8827849 1814939 5.65594 5.65594 -25361.9 -5.65594 0 0 1.13675e+07 7104.67 6.10 3.89 2.27 -1 -1 6.10 1.83823 1.72266 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 624.84 vpr 932.79 MiB -1 -1 32.45 197976 3 16.94 -1 -1 155956 -1 -1 1503 149 0 179 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 955172 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 355.5 MiB 48.89 286321 1679073 589581 1030407 59085 932.8 MiB 55.20 0.46 13.8384 -50424.9 -13.8384 13.8384 134.07 0.0681612 0.0631521 9.11899 7.87535 94 399646 42 3.90281e+08 1.51886e+08 4.03658e+07 6307.16 212.00 27.7631 24.2749 895480 8566334 -1 382155 20 103319 121546 18426157 3595010 14.2574 14.2574 -56221.1 -14.2574 0 0 5.08546e+07 7946.02 20.15 6.70 7.09 -1 -1 20.15 3.34157 3.08291 -k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 8.75 vpr 66.19 MiB -1 -1 1.74 26448 4 0.60 -1 -1 36452 -1 -1 15 11 0 0 success v8.0.0-11112-g5768d9d8a-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 11.4.0 on Linux-6.5.0-44-generic x86_64 2024-08-21T13:24:05 amir-virtual-machine /home/amir/Projects/vtr-yosys42/vtr-verilog-to-routing/vtr_flow/scripts 67776 11 2 303 283 2 80 28 7 7 49 clb auto 27.9 MiB 0.65 257 1330 280 924 126 66.2 MiB 0.02 0.00 2.03512 -164.27 -2.03512 1.89824 0.16 0.000217992 0.000162024 0.0106359 0.00877054 26 382 19 1.07788e+06 808410 68696.0 1401.96 0.57 0.204554 0.196831 3516 12294 -1 333 13 168 291 4761 1638 2.05049 1.95817 -175.115 -2.05049 0 0 84249.8 1719.38 0.13 0.11 0.01 -1 -1 0.13 0.0172823 0.0159874 +k6_frac_N10_frac_chain_mem32K_40nm.xml arm_core.v common 298.64 vpr 261.56 MiB -1 -1 31.44 123536 20 58.18 -1 -1 68188 -1 -1 845 133 25 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 267840 133 179 14228 14085 1 7103 1182 36 36 1296 clb memory auto 150.5 MiB 42.33 117428 607141 197337 386353 23451 183.6 MiB 16.71 0.17 22.9159 -202756 -22.9159 22.9159 4.73 0.0486964 0.0439621 5.29497 4.4508 108 179498 37 7.21828e+07 5.92414e+07 8.76758e+06 6765.11 115.34 23.4405 19.2203 188392 1861769 -1 160248 14 29269 113444 9020266 1620135 24.7641 24.7641 -211329 -24.7641 0 0 1.10751e+07 8545.59 5.17 4.49 2.45 -1 -1 5.17 2.08433 1.84345 +k6_frac_N10_frac_chain_mem32K_40nm.xml bgm.v common 611.34 vpr 754.47 MiB -1 -1 66.49 641984 14 87.17 -1 -1 121804 -1 -1 2709 257 0 11 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 772580 257 32 36080 33722 1 19523 3009 63 63 3969 clb auto 373.8 MiB 92.03 245016 2196123 784924 1379682 31517 754.5 MiB 85.94 0.62 20.3938 -25436.9 -20.3938 20.3938 46.77 0.0786016 0.0709616 13.2984 10.9927 74 382720 38 2.36641e+08 1.50357e+08 2.02178e+07 5093.92 145.35 48.5985 40.5278 502298 4195434 -1 358520 21 91721 419065 17549511 2598571 20.3649 20.3649 -25810.6 -20.3649 0 0 2.53694e+07 6391.88 10.51 12.60 3.91 -1 -1 10.51 6.55705 5.72537 +k6_frac_N10_frac_chain_mem32K_40nm.xml blob_merge.v common 107.39 parmys 258.90 MiB -1 -1 15.66 265112 5 5.11 -1 -1 54952 -1 -1 495 36 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 150572 36 100 10178 7632 1 2757 631 29 29 841 clb auto 103.9 MiB 21.73 41591 219736 64376 141432 13928 137.4 MiB 5.55 0.06 15.3217 -2433.65 -15.3217 15.3217 3.35 0.021731 0.0197711 2.29729 1.965 70 67075 17 4.4999e+07 2.66775e+07 3.87716e+06 4610.18 38.44 9.06498 7.56354 101140 791177 -1 61859 16 12362 63522 2544369 363748 16.2089 16.2089 -2621.03 -16.2089 0 0 4.87732e+06 5799.43 2.20 2.20 0.97 -1 -1 2.20 1.46959 1.28048 +k6_frac_N10_frac_chain_mem32K_40nm.xml boundtop.v common 28.36 vpr 70.17 MiB -1 -1 17.97 46188 3 0.85 -1 -1 35500 -1 -1 45 196 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 71852 196 193 1201 1346 1 603 435 15 15 225 io auto 32.4 MiB 0.76 2967 150312 45339 92360 12613 70.2 MiB 0.72 0.01 2.21331 -1098.49 -2.21331 2.21331 0.62 0.00378728 0.00353235 0.3257 0.302663 38 6447 27 1.03862e+07 2.97323e+06 544116. 2418.30 4.78 1.57999 1.4606 21558 109668 -1 5560 12 1810 2723 185964 47050 2.64124 2.64124 -1222.52 -2.64124 0 0 690508. 3068.92 0.21 0.16 0.10 -1 -1 0.21 0.11581 0.109806 +k6_frac_N10_frac_chain_mem32K_40nm.xml ch_intrinsics.v common 3.67 vpr 65.47 MiB -1 -1 0.41 18852 3 0.10 -1 -1 33236 -1 -1 68 99 1 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 67044 99 130 344 474 1 227 298 12 12 144 clb auto 27.1 MiB 0.26 592 75918 21243 41232 13443 65.5 MiB 0.22 0.00 1.84564 -122.904 -1.84564 1.84564 0.35 0.000854521 0.000796035 0.0768302 0.0721931 40 1387 14 5.66058e+06 4.21279e+06 333335. 2314.82 0.92 0.274828 0.25135 12946 64812 -1 1280 9 397 635 32603 9452 1.9839 1.9839 -142.87 -1.9839 0 0 419432. 2912.72 0.13 0.04 0.07 -1 -1 0.13 0.0285591 0.0267045 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq1.v common 11.48 vpr 68.71 MiB -1 -1 0.50 22312 5 0.17 -1 -1 34248 -1 -1 32 162 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 70356 162 96 1075 892 1 666 295 16 16 256 mult_36 auto 30.8 MiB 0.44 5055 92509 33442 52071 6996 68.7 MiB 0.70 0.01 15.9193 -1240.37 -15.9193 15.9193 0.80 0.00321767 0.0030229 0.313862 0.294446 52 11013 42 1.21132e+07 3.70461e+06 805949. 3148.24 5.94 1.21469 1.12835 26552 162987 -1 9154 22 3280 5519 946890 252896 17.2145 17.2145 -1363.82 -17.2145 0 0 1.06067e+06 4143.25 0.35 0.41 0.18 -1 -1 0.35 0.171957 0.160922 +k6_frac_N10_frac_chain_mem32K_40nm.xml diffeq2.v common 10.81 vpr 67.20 MiB -1 -1 0.35 21420 5 0.15 -1 -1 33244 -1 -1 22 66 0 5 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 68816 66 96 778 595 1 467 189 16 16 256 mult_36 auto 29.0 MiB 0.55 3573 45175 14938 25152 5085 67.2 MiB 0.40 0.01 12.2285 -757.263 -12.2285 12.2285 0.77 0.0020518 0.00192936 0.187433 0.175865 50 8061 25 1.21132e+07 3.16567e+06 780532. 3048.95 5.98 0.766032 0.710929 26044 153858 -1 7031 18 3100 6196 1213702 304827 12.9401 12.9401 -841.314 -12.9401 0 0 1.00276e+06 3917.05 0.30 0.34 0.17 -1 -1 0.30 0.0912225 0.0855967 +k6_frac_N10_frac_chain_mem32K_40nm.xml LU8PEEng.v common 1855.96 vpr 626.02 MiB -1 -1 76.84 463216 97 93.74 -1 -1 112636 -1 -1 2135 114 45 8 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 641040 114 102 35834 31925 1 17063 2404 56 56 3136 clb auto 345.4 MiB 78.27 223999 1805268 668923 1105538 30807 618.0 MiB 63.25 0.41 74.8526 -53067.9 -74.8526 74.8526 29.42 0.0954605 0.0846315 13.6025 11.1759 90 335535 40 1.8697e+08 1.42894e+08 1.87445e+07 5977.21 1447.19 65.321 53.9855 426610 3924124 -1 308736 21 67535 264198 14624183 2507774 73.961 73.961 -64062.5 -73.961 0 0 2.34582e+07 7480.28 7.83 10.10 3.75 -1 -1 7.83 5.8076 5.02027 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkDelayWorker32B.v common 104.39 vpr 348.93 MiB -1 -1 17.54 119692 5 4.37 -1 -1 44660 -1 -1 476 506 44 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 357300 506 553 3236 3734 1 2873 1579 50 50 2500 memory auto 57.2 MiB 6.27 15208 1187218 574336 423866 189016 348.9 MiB 5.82 0.06 7.88836 -2144.82 -7.88836 7.88836 28.23 0.0234175 0.0211425 3.13696 2.81497 38 23167 15 1.47946e+08 4.97661e+07 6.86579e+06 2746.32 19.04 8.7452 7.95359 258216 1426232 -1 22326 12 3939 5003 1123172 260444 8.33744 8.33744 -2510.41 -8.33744 0 0 8.69102e+06 3476.41 4.04 0.94 1.57 -1 -1 4.04 0.725741 0.688155 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkPktMerge.v common 19.43 vpr 73.55 MiB -1 -1 1.55 25932 2 0.14 -1 -1 34192 -1 -1 30 311 15 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 75312 311 156 1015 1158 1 965 512 28 28 784 memory auto 33.1 MiB 0.75 8123 209306 77878 121727 9701 73.5 MiB 1.23 0.02 4.24034 -4312.49 -4.24034 4.24034 2.84 0.00492556 0.00437208 0.554831 0.494461 46 13488 13 4.25198e+07 9.83682e+06 2.40571e+06 3068.51 6.50 1.83281 1.63766 81794 492802 -1 13209 14 2694 3031 693799 183307 4.25987 4.25987 -4830.75 -4.25987 0 0 3.09729e+06 3950.62 1.17 0.34 0.54 -1 -1 1.17 0.179767 0.165586 +k6_frac_N10_frac_chain_mem32K_40nm.xml mkSMAdapter4B.v common 28.75 vpr 82.43 MiB -1 -1 8.63 52964 5 1.70 -1 -1 39452 -1 -1 167 193 5 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 84404 193 205 2718 2652 1 1363 570 20 20 400 memory auto 44.9 MiB 3.13 10546 243856 87086 131689 25081 82.4 MiB 1.97 0.02 5.53746 -2853.12 -5.53746 5.53746 1.25 0.00684255 0.00623293 0.801089 0.721542 50 18445 26 2.07112e+07 1.17403e+07 1.26946e+06 3173.65 6.46 2.23596 2.02985 41784 253636 -1 16576 15 4698 11629 631135 128786 5.79025 5.79025 -3097.34 -5.79025 0 0 1.63222e+06 4080.54 0.64 0.51 0.27 -1 -1 0.64 0.343231 0.319486 +k6_frac_N10_frac_chain_mem32K_40nm.xml or1200.v common 243.55 vpr 106.32 MiB -1 -1 6.24 63356 8 4.10 -1 -1 40888 -1 -1 246 385 2 1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 108872 385 362 4415 4299 1 2357 996 26 26 676 io auto 59.9 MiB 8.06 29128 547916 204771 319432 23713 96.8 MiB 5.27 0.06 8.94481 -9637.96 -8.94481 8.94481 2.12 0.0164265 0.0152858 1.94558 1.79318 90 43923 25 3.69863e+07 1.47499e+07 3.84682e+06 5690.57 205.89 10.0877 9.07656 90388 794118 -1 41270 20 10077 33767 1899708 325952 9.16324 9.16324 -10205.6 -9.16324 0 0 4.81243e+06 7118.99 1.96 1.81 1.02 -1 -1 1.96 1.04097 0.947726 +k6_frac_N10_frac_chain_mem32K_40nm.xml raygentop.v common 33.51 vpr 83.96 MiB -1 -1 4.30 42648 3 0.86 -1 -1 37152 -1 -1 122 236 1 6 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 85980 236 305 3199 3011 1 1513 670 19 19 361 io auto 46.8 MiB 2.88 12527 270230 89252 167221 13757 84.0 MiB 2.40 0.04 4.64973 -2846.89 -4.64973 4.64973 1.28 0.0131938 0.0123986 1.06738 0.970996 64 25137 48 1.72706e+07 9.49907e+06 1.47376e+06 4082.44 16.11 4.46497 4.04331 41203 295207 -1 21255 21 6639 18234 1956063 425609 5.13058 5.13058 -3216.9 -5.13058 0 0 1.84179e+06 5101.91 0.62 0.84 0.34 -1 -1 0.62 0.408831 0.381381 +k6_frac_N10_frac_chain_mem32K_40nm.xml sha.v common 23.30 vpr 81.78 MiB -1 -1 3.05 44752 3 1.57 -1 -1 39836 -1 -1 139 38 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 83744 38 36 2739 2488 1 1037 213 16 16 256 clb auto 44.6 MiB 1.79 9128 40218 10132 27089 2997 81.8 MiB 0.91 0.01 10.3799 -2787.19 -10.3799 10.3799 0.69 0.00545113 0.00489866 0.431653 0.38187 64 14335 40 1.21132e+07 7.49127e+06 1.00276e+06 3917.05 11.10 3.47309 3.03993 28592 198411 -1 12449 20 3726 8584 301199 51478 10.5657 10.5657 -3026.24 -10.5657 0 0 1.25521e+06 4903.16 0.39 0.50 0.21 -1 -1 0.39 0.405339 0.372733 +k6_frac_N10_frac_chain_mem32K_40nm.xml spree.v common 17.98 vpr 72.00 MiB -1 -1 3.96 32636 16 0.49 -1 -1 34920 -1 -1 60 45 3 1 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 73728 45 32 1192 1151 1 782 141 14 14 196 memory auto 34.8 MiB 2.43 6359 25029 7172 15872 1985 72.0 MiB 0.57 0.01 10.5514 -6933.99 -10.5514 10.5514 0.42 0.00359509 0.00318095 0.276873 0.246513 66 13564 44 9.20055e+06 5.27364e+06 787562. 4018.17 7.16 1.71213 1.54567 22236 154735 -1 10409 13 3357 8718 766858 182393 10.6676 10.6676 -7231.75 -10.6676 0 0 978561. 4992.66 0.31 0.37 0.18 -1 -1 0.31 0.187407 0.175159 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision0.v common 99.51 vpr 229.69 MiB -1 -1 13.23 100152 5 8.94 -1 -1 66168 -1 -1 707 169 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 235200 169 197 23225 21365 1 6482 1073 33 33 1089 clb auto 173.8 MiB 10.87 39172 572137 179571 365867 26699 207.2 MiB 9.15 0.10 3.57011 -13924.5 -3.57011 3.57011 4.39 0.0364143 0.0323614 3.89335 3.31092 56 57882 44 6.0475e+07 3.81032e+07 4.09277e+06 3758.28 30.02 14.6193 12.3293 121655 832457 -1 53668 13 14957 23736 854812 166653 4.24314 4.24314 -14873.4 -4.24314 0 0 5.21984e+06 4793.24 2.08 2.10 0.92 -1 -1 2.08 1.9824 1.77265 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision1.v common 172.73 vpr 274.20 MiB -1 -1 12.31 122312 3 14.56 -1 -1 74104 -1 -1 679 115 0 40 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 280784 115 145 22864 19301 1 9652 979 40 40 1600 mult_36 auto 170.2 MiB 10.51 82042 506315 163709 319619 22987 215.1 MiB 10.23 0.12 5.47895 -22844.5 -5.47895 5.47895 5.43 0.0341658 0.0305039 3.97184 3.4389 82 135641 49 9.16046e+07 5.24347e+07 8.58295e+06 5364.35 89.61 19.0309 16.3015 207228 1787768 -1 118088 15 33016 50219 7639158 1586997 5.70953 5.70953 -25154.5 -5.70953 0 0 1.07702e+07 6731.38 3.36 4.72 1.85 -1 -1 3.36 2.49235 2.21823 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision2.v common 671.70 vpr 1.03 GiB -1 -1 16.53 195248 3 7.24 -1 -1 152016 -1 -1 1503 149 0 179 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 1080032 149 182 55415 37074 1 28618 2013 80 80 6400 mult_36 auto 357.2 MiB 21.75 286321 1679073 589581 1030407 59085 1053.2 MiB 66.07 0.54 13.8384 -50424.9 -13.8384 13.8384 89.80 0.102975 0.0933313 13.8314 11.8758 98 388670 33 3.90281e+08 1.51886e+08 4.18005e+07 6531.32 373.54 59.3411 50.4051 914680 8979364 -1 373102 20 96097 113533 14718559 2955732 14.45 14.45 -55469.4 -14.45 0 0 5.30091e+07 8282.68 21.68 9.01 7.28 -1 -1 21.68 5.00595 4.43477 +k6_frac_N10_frac_chain_mem32K_40nm.xml stereovision3.v common 2.57 vpr 64.68 MiB -1 -1 0.81 23076 4 0.13 -1 -1 32768 -1 -1 15 11 0 0 success v8.0.0-11152-g757bc615d-dirty release IPO VTR_ASSERT_LEVEL=2 GNU 9.4.0 on Linux-4.15.0-213-generic x86_64 2024-08-27T10:21:09 betzgrp-wintermute.eecg.utoronto.ca /home/mahmo494/Desktop/inc_dec_wires/vtr-verilog-to-routing/vtr_flow/tasks 66236 11 2 303 283 2 80 28 7 7 49 clb auto 26.1 MiB 0.22 257 1204 232 864 108 64.7 MiB 0.04 0.00 2.0391 -164.432 -2.0391 1.90116 0.07 0.000623385 0.000559305 0.0231718 0.0211805 26 392 19 1.07788e+06 808410 68696.0 1401.96 0.19 0.109777 0.0954881 3516 12294 -1 332 11 176 298 4639 1620 2.04924 1.95807 -171.52 -2.04924 0 0 84249.8 1719.38 0.02 0.03 0.01 -1 -1 0.02 0.0267896 0.0246633 diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt index ade62ec3351..28a1bb52736 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong/strong_clock_buf/config/golden_results.txt @@ -1,2 +1,2 @@ - 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_clk_buf.xml multiclock_buf.blif common 1.6965 0.545 -1 -1 -1 0.545 -1 -1 -1 -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.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -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_clk_buf.xml multiclock_buf.blif common 1.48876 0.545 -1 -1 -1 0.545 -1 -1 -1 -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.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 From 85fd2d041f3e4503a38de31c0699bd39136a8343 Mon Sep 17 00:00:00 2001 From: saaramahmoudi Date: Thu, 29 Aug 2024 15:16:09 -0400 Subject: [PATCH 6/7] update odin strong test --- .../strong_clock_buf/config/golden_results.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt index ade62ec3351..28a1bb52736 100644 --- a/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt +++ b/vtr_flow/tasks/regression_tests/vtr_reg_strong_odin/strong_clock_buf/config/golden_results.txt @@ -1,2 +1,2 @@ - 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_clk_buf.xml multiclock_buf.blif common 1.6965 0.545 -1 -1 -1 0.545 -1 -1 -1 -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.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -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_clk_buf.xml multiclock_buf.blif common 1.48876 0.545 -1 -1 -1 0.545 -1 -1 -1 -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.293 -1 -1 -1 0.293 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 From 3ea63b6585501a80c96968b3de17625223961c11 Mon Sep 17 00:00:00 2001 From: sara_mahmoudi Date: Mon, 7 Oct 2024 08:50:27 -0700 Subject: [PATCH 7/7] code refactoring, applied VB comment suggestions --- vpr/src/route/rr_graph.cpp | 155 +++++++++++++++++++------------------ 1 file changed, 78 insertions(+), 77 deletions(-) diff --git a/vpr/src/route/rr_graph.cpp b/vpr/src/route/rr_graph.cpp index 67a82a5c685..dc678d20913 100644 --- a/vpr/src/route/rr_graph.cpp +++ b/vpr/src/route/rr_graph.cpp @@ -98,45 +98,46 @@ std::set get_layers_connected_to_pin(const t_physical_tile_type_ptr type, i bool channel_widths_unchanged(const t_chan_width& current, const t_chan_width& proposed); /** - * @brief This routine calculate pin connections to tracks for a specific type on the Fc value defined for each pin in the architecture file. - * For each type, it will loop through all segments and calculate how many connections should be made, returns the connections for all pins of that type. + * @brief This routine calculates pin connections to tracks for either all input or all output pins based on the Fc value defined in the architecture file. + * For the requested pin type (input or output), it will loop through all segments and calculate how many connections should be made, + * returns the connections to be made for that type of pin in a matrix. * * @param pin_type Specifies whether the routine should connect tracks to *INPUT* pins or connect *OUTPUT* pins to tracks. - * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). - * @param Type Physical type information, such as total number of pins, block width, block height, and etc. - * @param type_layer Layer indicies on which the physical type located. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments_types-1]). + * @param tile_type Physical type information, such as total number of pins, block width, block height, and etc. + * @param type_layer Layer indicies on which the physical tile type is located. * @param perturb_switch_pattern Specifies whether connections should be distributed unevenly across the channel or not. - * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* - * @param seg_inf Segments informations, such as length, frequency, and etc. - * @param sets_per_seg_type Number of available sets within the channel_width of each segment type + * @param directionality Segment directionality: should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* + * @param seg_inf Segments type information, such as length, frequency, and etc. + * @param sets_per_seg_type Number of available sets within the channel_width of each segment type. * * @return an 5D matrix which keeps the track indicies connected to each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1]). * */ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const e_pin_type pin_type, const vtr::Matrix& Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const std::vector& perturb_switch_pattern, const e_directionality directionality, const std::vector& seg_inf, const int* sets_per_seg_type); /** - * @brief This routine calculate pin connections to tracks for a specific type and a specific segment based on the Fc value + * @brief This routine calculates pin connections to tracks for a specific type and a specific segment based on the Fc value * defined for each pin in the architecture file. This routine is called twice for each combination of block type and segment * type: 1) connecting tracks to input pins 2) connecting output pins to tracks. * * @param pin_type Specifies whether the routine should connect tracks to *INPUT* pins or connect *OUTPUT* pins to tracks. - * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). - * @param seg_type_tracks Number of tracks that is avaliable for the specific segment. - * @param seg_index The segment index that the function is trying to connect to pins. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments_types-1]). + * @param seg_type_tracks Number of tracks that is avaliable for the specific segment type. + * @param seg_index The index of the segment type to which the function tries to connect pins. * @param max_Fc Used to allocate max possible space for simplicity. - * @param Type Physical type information, such as total number of pins, block width, block height, and etc. + * @param tile_type Physical type information, such as total number of pins, block width, block height, and etc. * @param type_layer Layer indicies on which the physical type located. * @param perturb_switch_pattern Specifies whether connections should be distributed unevenly across the channel or not. * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* * - * @return an 6D matrix which keeps the track indicies connected to each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc-1]). + * @return an 6D matrix which keeps the track indicies connected to each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc_to_curr_seg_type-1]). * */ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin_type, @@ -144,16 +145,16 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin const int seg_type_tracks, const int seg_index, const int max_Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const bool perturb_switch_pattern, const e_directionality directionality); -static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width_offset, int& height_offset, e_side& side); +static void advance_to_next_block_side(t_physical_tile_type_ptr tile_type, int& width_offset, int& height_offset, e_side& side); static vtr::NdMatrix, 5> alloc_and_load_track_to_pin_lookup(vtr::NdMatrix, 5> pin_to_track_map, const vtr::Matrix& Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const int width, const int height, @@ -341,7 +342,7 @@ static float pattern_fmod(float a, float b); * @param tracks_connected_to_pin The funtion loads up this data structure with a track index for each pin ([0..num_pins-1][0..width-1][0..height-1][0..layer-1][0..sides-1][0..Fc-1]]). * @param pin_locations Physical pin informations, such as pin_index in the physical type, side, and etc. * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). - * @param seg_index The segment index that the function is trying to connect to pins. + * @param seg_index The index of the segment type to which the function tries to connect pins. * @param x_chan_width Number of tracks in x-axis. * @param y_chan_width Number of tracks in y-axis. * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* @@ -362,8 +363,8 @@ static void load_uniform_connection_block_pattern(vtr::NdMatrix& tracks_ * @param pin_locations Physical pin informations, such as pin_index in the physical type, side, and etc. * @param x_chan_width Number of tracks in x-axis. * @param y_chan_width Number of tracks in y-axis. - * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segments-1]). - * @param seg_index The segment index that the function is trying to connect to pins. + * @param Fc Actual Fc value described in the architecture file for all pins of the specific phyiscal type ([0..number_of_pins-1][0..number_of_segment_types-1]). + * @param seg_index The index of the segment type to which the function tries to connect pins. * @param directionality Segment directionality, should be either *UNI-DIRECTIONAL* or *BI-DIRECTIONAL* * */ @@ -3443,7 +3444,7 @@ void alloc_and_load_edges(RRGraphBuilder& rr_graph_builder, const t_rr_edge_info * vector */ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const e_pin_type pin_type, const vtr::Matrix& Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const std::vector& perturb_switch_pattern, const e_directionality directionality, @@ -3453,9 +3454,9 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const * used to index into the correct entries when loading up 'result' */ auto& grid = g_vpr_ctx.device().grid; auto result = vtr::NdMatrix, 5>({ - size_t(Type->num_pins), //[0..num_pins-1] - size_t(Type->width), //[0..width-1] - size_t(Type->height), //[0..height-1] + size_t(tile_type->num_pins), //[0..num_pins-1] + size_t(tile_type->width), //[0..width-1] + size_t(tile_type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] 4, //[0..sides-1] }); @@ -3474,27 +3475,27 @@ static vtr::NdMatrix, 5> alloc_and_load_pin_to_track_map(const /* determine the maximum Fc to this segment type across all pins */ int max_Fc = 0; - for (int pin_index = 0; pin_index < Type->num_pins; ++pin_index) { - int pin_class = Type->pin_class[pin_index]; - if (Fc[pin_index][seg_inf[iseg].seg_index] > max_Fc && Type->class_inf[pin_class].type == pin_type) { + for (int pin_index = 0; pin_index < tile_type->num_pins; ++pin_index) { + int pin_class = tile_type->pin_class[pin_index]; + if (Fc[pin_index][seg_inf[iseg].seg_index] > max_Fc && tile_type->class_inf[pin_class].type == pin_type) { max_Fc = Fc[pin_index][seg_inf[iseg].seg_index]; } } /* get pin connections to tracks of the current segment type */ - auto pin_to_seg_type_map = alloc_and_load_pin_to_seg_type(pin_type, Fc, num_seg_type_tracks, seg_inf[iseg].seg_index, max_Fc, Type, type_layer, perturb_switch_pattern[seg_inf[iseg].seg_index], directionality); + auto pin_to_seg_type_map = alloc_and_load_pin_to_seg_type(pin_type, Fc, num_seg_type_tracks, seg_inf[iseg].seg_index, max_Fc, tile_type, type_layer, perturb_switch_pattern[seg_inf[iseg].seg_index], directionality); /* connections in pin_to_seg_type_map are within that seg type -- i.e. in the [0,num_seg_type_tracks-1] range. * now load up 'result' array with these connections, but offset them so they are relative to the channel * as a whole */ for (auto type_layer_index : type_layer) { - for (int ipin = 0; ipin < Type->num_pins; ipin++) { + for (int ipin = 0; ipin < tile_type->num_pins; ipin++) { int cur_Fc = Fc[ipin][seg_inf[iseg].seg_index]; - for (int iwidth = 0; iwidth < Type->width; iwidth++) { - for (int iheight = 0; iheight < Type->height; iheight++) { + for (int iwidth = 0; iwidth < tile_type->width; iwidth++) { + for (int iheight = 0; iheight < tile_type->height; iheight++) { for (int iside = 0; iside < 4; iside++) { for (int iconn = 0; iconn < cur_Fc; iconn++) { - for (auto connected_layer : get_layers_pin_is_connected_to(Type, type_layer_index, ipin)) { + for (auto connected_layer : get_layers_pin_is_connected_to(tile_type, type_layer_index, ipin)) { int relative_track_ind = pin_to_seg_type_map[ipin][iwidth][iheight][connected_layer][iside][iconn]; if (relative_track_ind != OPEN) { VTR_ASSERT(relative_track_ind <= num_seg_type_tracks); @@ -3524,7 +3525,7 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin const int num_seg_type_tracks, const int seg_index, const int max_Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const bool perturb_switch_pattern, const e_directionality directionality) { @@ -3540,14 +3541,14 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin auto& grid = g_vpr_ctx.device().grid; - if (Type->num_pins < 1) { + if (tile_type->num_pins < 1) { return vtr::NdMatrix(); } auto tracks_connected_to_pin = vtr::NdMatrix({ - size_t(Type->num_pins), //[0..num_pins-1] - size_t(Type->width), //[0..width-1] - size_t(Type->height), //[0..height-1] + size_t(tile_type->num_pins), //[0..num_pins-1] + size_t(tile_type->width), //[0..width-1] + size_t(tile_type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] NUM_2D_SIDES, //[0..NUM_2D_SIDES-1] size_t(max_Fc) //[0..Fc-1] @@ -3559,8 +3560,8 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin //Type->num_pins) if a logical pin has multiple specified physical //pinlocations (i.e. appears on multiple sides of the block) auto num_dir = vtr::NdMatrix({ - size_t(Type->width), //[0..width-1] - size_t(Type->height), //[0..height-1] + size_t(tile_type->width), //[0..width-1] + size_t(tile_type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] NUM_2D_SIDES //[0..NUM_2D_SIDES-1] }, @@ -3572,39 +3573,39 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin // //Max possible space alloced for simplicity auto dir_list = vtr::NdMatrix({ - size_t(Type->width), //[0..width-1] - size_t(Type->height), //[0..height-1] + size_t(tile_type->width), //[0..width-1] + size_t(tile_type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] NUM_2D_SIDES, //[0..NUM_2D_SIDES-1] - size_t(Type->num_pins) * size_t(grid.get_num_layers()) //[0..num_pins * num_layers-1] + size_t(tile_type->num_pins) * size_t(grid.get_num_layers()) //[0..num_pins * num_layers-1] }, -1); //Defensive coding: Initialize to invalid //Number of currently assigned physical pins auto num_done_per_dir = vtr::NdMatrix({ - size_t(Type->width), //[0..width-1] - size_t(Type->height), //[0..height-1] + size_t(tile_type->width), //[0..width-1] + size_t(tile_type->height), //[0..height-1] size_t(grid.get_num_layers()), //[0..layer-1] NUM_2D_SIDES //[0..NUM_2D_SIDES-1] }, 0); //Record the physical pin locations and counts per side/offsets combination - for (int pin = 0; pin < Type->num_pins; ++pin) { - auto curr_pin_type = get_pin_type_from_pin_physical_num(Type, pin); + for (int pin = 0; pin < tile_type->num_pins; ++pin) { + auto curr_pin_type = get_pin_type_from_pin_physical_num(tile_type, pin); if (curr_pin_type != pin_type) /* Doing either ipins OR opins */ continue; /* Pins connecting only to global resources get no switches -> keeps area model accurate. */ - if (Type->is_ignored_pin[pin]) + if (tile_type->is_ignored_pin[pin]) continue; for (auto type_layer_index : type_layer) { - for (int width = 0; width < Type->width; ++width) { - for (int height = 0; height < Type->height; ++height) { + for (int width = 0; width < tile_type->width; ++width) { + for (int height = 0; height < tile_type->height; ++height) { for (e_side side : TOTAL_2D_SIDES) { - if (Type->pinloc[width][height][side][pin] == 1) { - for (auto i = 0; i < (int)get_layers_connected_to_pin(Type, type_layer_index, pin).size(); i++) { + if (tile_type->pinloc[width][height][side][pin] == 1) { + for (auto i = 0; i < (int)get_layers_connected_to_pin(tile_type, type_layer_index, pin).size(); i++) { dir_list[width][height][type_layer_index][side][num_dir[width][height][type_layer_index][side]] = pin; num_dir[width][height][type_layer_index][side]++; } @@ -3619,8 +3620,8 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin std::vector num_phys_pins_per_layer; for (int layer = 0; layer < grid.get_num_layers(); layer++) { int num_phys_pins = 0; - for (int width = 0; width < Type->width; ++width) { - for (int height = 0; height < Type->height; ++height) { + for (int width = 0; width < tile_type->width; ++width) { + for (int height = 0; height < tile_type->height; ++height) { for (e_side side : TOTAL_2D_SIDES) { num_phys_pins += num_dir[width][height][layer][side]; /* Num. physical pins per type */ } @@ -3659,7 +3660,7 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin pin_index++; } - advance_to_next_block_side(Type, width, height, side); + advance_to_next_block_side(tile_type, width, height, side); VTR_ASSERT_MSG(pin_index < num_phys_pins_per_layer[layer_index], "Physical block pins bound number of logical block pins"); @@ -3669,7 +3670,7 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin int pin_num = dir_list[width][height][layer_index][side][pin_index]; VTR_ASSERT(pin_num >= 0); - VTR_ASSERT(Type->pinloc[width][height][side][pin_num]); + VTR_ASSERT(tile_type->pinloc[width][height][side][pin_num]); t_pin_loc pin_loc; pin_loc.pin_index = pin_num; @@ -3698,14 +3699,14 @@ static vtr::NdMatrix alloc_and_load_pin_to_seg_type(const e_pin_type pin } #ifdef ENABLE_CHECK_ALL_TRACKS - check_all_tracks_reach_pins(Type, tracks_connected_to_pin, num_seg_type_tracks, + check_all_tracks_reach_pins(tile_type, tracks_connected_to_pin, num_seg_type_tracks, Fc, pin_type); #endif return tracks_connected_to_pin; } -static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width_offset, int& height_offset, e_side& side) { +static void advance_to_next_block_side(t_physical_tile_type_ptr tile_type, int& width_offset, int& height_offset, e_side& side) { //State-machine transitions for advancing around all sides of a block //This state-machine transitions in the following order: @@ -3745,19 +3746,19 @@ static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width // //Validate current state - VTR_ASSERT(width_offset >= 0 && width_offset < Type->width); - VTR_ASSERT(height_offset >= 0 && height_offset < Type->height); + VTR_ASSERT(width_offset >= 0 && width_offset < tile_type->width); + VTR_ASSERT(height_offset >= 0 && height_offset < tile_type->height); VTR_ASSERT(side == LEFT || side == RIGHT || side == BOTTOM || side == TOP); if (side == LEFT) { - if (height_offset == Type->height - 1 && width_offset == Type->width - 1) { + if (height_offset == tile_type->height - 1 && width_offset == tile_type->width - 1) { //Finished the last left edge column side = TOP; //Turn clockwise width_offset = 0; - height_offset = Type->height - 1; - } else if (height_offset == Type->height - 1) { + height_offset = tile_type->height - 1; + } else if (height_offset == tile_type->height - 1) { //Finished the current left edge column - VTR_ASSERT(width_offset != Type->width - 1); + VTR_ASSERT(width_offset != tile_type->width - 1); //Move right to the next left edge column width_offset++; @@ -3766,12 +3767,12 @@ static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width height_offset++; //Advance up current left edge column } } else if (side == TOP) { - if (height_offset == 0 && width_offset == Type->width - 1) { + if (height_offset == 0 && width_offset == tile_type->width - 1) { //Finished the last top edge row side = RIGHT; //Turn clockwise - width_offset = Type->width - 1; - height_offset = Type->height - 1; - } else if (width_offset == Type->width - 1) { + width_offset = tile_type->width - 1; + height_offset = tile_type->height - 1; + } else if (width_offset == tile_type->width - 1) { //Finished the current top edge row VTR_ASSERT(height_offset != 0); @@ -3785,7 +3786,7 @@ static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width if (height_offset == 0 && width_offset == 0) { //Finished the last right edge column side = BOTTOM; //Turn clockwise - width_offset = Type->width - 1; + width_offset = tile_type->width - 1; height_offset = 0; } else if (height_offset == 0) { //Finished the current right edge column @@ -3793,32 +3794,32 @@ static void advance_to_next_block_side(t_physical_tile_type_ptr Type, int& width //Move left to the next right edge column width_offset--; - height_offset = Type->height - 1; + height_offset = tile_type->height - 1; } else { height_offset--; //Advance down current right edge column } } else { VTR_ASSERT(side == BOTTOM); - if (height_offset == Type->height - 1 && width_offset == 0) { + if (height_offset == tile_type->height - 1 && width_offset == 0) { //Finished the last bottom edge row side = LEFT; //Turn clockwise width_offset = 0; height_offset = 0; } else if (width_offset == 0) { //Finished the current bottom edge row - VTR_ASSERT(height_offset != Type->height - 1); + VTR_ASSERT(height_offset != tile_type->height - 1); //Move up to the next bottom edge row height_offset++; - width_offset = Type->width - 1; + width_offset = tile_type->width - 1; } else { width_offset--; //Advance left along current bottom edge row } } //Validate next state - VTR_ASSERT(width_offset >= 0 && width_offset < Type->width); - VTR_ASSERT(height_offset >= 0 && height_offset < Type->height); + VTR_ASSERT(width_offset >= 0 && width_offset < tile_type->width); + VTR_ASSERT(height_offset >= 0 && height_offset < tile_type->height); VTR_ASSERT(side == LEFT || side == RIGHT || side == BOTTOM || side == TOP); } @@ -4154,7 +4155,7 @@ static void check_all_tracks_reach_pins(t_logical_block_type_ptr type, static vtr::NdMatrix, 5> alloc_and_load_track_to_pin_lookup(vtr::NdMatrix, 5> pin_to_track_map, const vtr::Matrix& Fc, - const t_physical_tile_type_ptr Type, + const t_physical_tile_type_ptr tile_type, const std::set type_layer, const int type_width, const int type_height, @@ -4193,7 +4194,7 @@ static vtr::NdMatrix, 5> alloc_and_load_track_to_pin_lookup(vtr for (int iseg = 0; iseg < num_seg_types; iseg++) { num_tracks += Fc[pin][seg_inf[iseg].seg_index]; // AA: Fc_in and Fc_out matrices are unified for all segments so need to map index. } - for (auto connected_layer : get_layers_pin_is_connected_to(Type, type_layer_index, pin)) { + for (auto connected_layer : get_layers_pin_is_connected_to(tile_type, type_layer_index, pin)) { if (!pin_to_track_map[pin][width][height][connected_layer][side].empty()) { num_tracks = std::min(num_tracks, (int)pin_to_track_map[pin][width][height][connected_layer][side].size());